gitextract_kmzlkky9/ ├── .gitignore ├── Docs/ │ ├── .eslintrc.json │ ├── .gitignore │ ├── README.md │ ├── components/ │ │ ├── AvailableNow.tsx │ │ ├── DownloadButton.tsx │ │ ├── Faq.tsx │ │ ├── Features.tsx │ │ ├── Footer.tsx │ │ ├── GitHubButton.tsx │ │ ├── Head.tsx │ │ ├── Hero.tsx │ │ ├── HowToGetMyCookie.tsx │ │ ├── PaimonCan.tsx │ │ ├── PaimonCookie.tsx │ │ ├── PaimonUses.tsx │ │ ├── ReleaseInfo.tsx │ │ └── Screenshot3D.tsx │ ├── next-env.d.ts │ ├── next.config.js │ ├── package.json │ ├── pages/ │ │ ├── _app.tsx │ │ ├── api/ │ │ │ └── hello.ts │ │ ├── index.tsx │ │ └── types.d.ts │ ├── postcss.config.js │ ├── public/ │ │ └── site.webmanifest │ ├── styles/ │ │ └── globals.css │ ├── tailwind.config.js │ └── tsconfig.json ├── LICENSE ├── PaimonMenuBar/ │ ├── AppDelegate.swift │ ├── Assets.xcassets/ │ │ ├── AccentColor.colorset/ │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset/ │ │ │ └── Contents.json │ │ ├── Commision.imageset/ │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── Domain.imageset/ │ │ │ └── Contents.json │ │ ├── Expedition.imageset/ │ │ │ └── Contents.json │ │ ├── FragileResin.imageset/ │ │ │ └── Contents.json │ │ ├── JarOfRiches.imageset/ │ │ │ └── Contents.json │ │ ├── KokomiSad.imageset/ │ │ │ └── Contents.json │ │ └── ParametricTransformer.imageset/ │ │ └── Contents.json │ ├── Bundle.swift │ ├── Compatibility.swift │ ├── DataModels.swift │ ├── Defaults+Workaround.swift │ ├── Defaults.swift │ ├── GameRecordUpdater.swift │ ├── Info.plist │ ├── MenuExtrasView.swift │ ├── Networking.swift │ ├── PaimonMenuBar.entitlements │ ├── PaimonMenuBarApp.swift │ ├── Preview Content/ │ │ └── Preview Assets.xcassets/ │ │ └── Contents.json │ ├── SettingsView.swift │ ├── UpdaterViewModel.swift │ ├── en.lproj/ │ │ └── Localizable.strings │ └── zh-Hans.lproj/ │ └── Localizable.strings ├── PaimonMenuBar.xcodeproj/ │ ├── project.pbxproj │ ├── project.xcworkspace/ │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata/ │ │ ├── IDEWorkspaceChecks.plist │ │ ├── WorkspaceSettings.xcsettings │ │ └── swiftpm/ │ │ └── Package.resolved │ └── xcshareddata/ │ └── xcschemes/ │ └── PaimonMenuBar.xcscheme ├── README.md └── appcast.xml