├── .gitignore ├── .swiftlint.autocorrect.yml ├── .swiftlint.yml ├── LICENSE ├── README.md ├── Widgets ├── Apps Widget │ ├── AppsWidget.swift │ └── Components │ │ ├── AppGridView.swift │ │ ├── AppListView.swift │ │ ├── AppsWidgetHeader.swift │ │ ├── GridStack.swift │ │ ├── RemoteImage.swift │ │ └── RoundedBadge.swift ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── BackgroundColor.colorset │ │ └── Contents.json │ ├── BackgroundColorHeader.colorset │ │ └── Contents.json │ ├── Contents.json │ ├── WidgetBackground.colorset │ │ └── Contents.json │ └── appdb.imageset │ │ ├── Contents.json │ │ ├── appdb-1.jpg │ │ ├── appdb-2.jpg │ │ └── appdb.jpg ├── Base.lproj │ └── Widgets.intentdefinition ├── Extensions │ └── Extensions.swift ├── Info.plist ├── Models │ ├── APIResponseError.swift │ ├── Content.swift │ └── News.swift ├── Network │ ├── AppdbRepository.swift │ └── Repository.swift ├── News Widget │ ├── Components │ │ └── NewsWidgetHeader.swift │ └── NewsWidget.swift ├── Widgets.swift └── en.lproj │ └── Widgets.intentdefinition ├── appdb.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── xcshareddata │ └── xcschemes │ │ └── appdb.xcscheme └── xcuserdata │ └── ned.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist └── appdb ├── API ├── API+AltStoreRepos.swift ├── API+CheckAppUpdate.swift ├── API+Configuration.swift ├── API+DeviceLink.swift ├── API+DeviceStatus.swift ├── API+Dylibs.swift ├── API+Genres.swift ├── API+IPACache.swift ├── API+Install.swift ├── API+Links.swift ├── API+MyAppstore.swift ├── API+News.swift ├── API+Plus.swift ├── API+Promotions.swift ├── API+Search.swift ├── API+SystemStatus.swift ├── API+UDID.swift ├── API+Updates.swift ├── API+Voucher.swift ├── API+Wishes.swift └── API.swift ├── EmbeddedFrameworks └── UnityAds.xcframework │ ├── Info.plist │ ├── ios-arm64_armv7 │ └── UnityAds.framework │ │ ├── Headers │ │ ├── UADSBanner.h │ │ ├── UADSBannerAdRefreshViewDelegate.h │ │ ├── UADSBannerError.h │ │ ├── UADSBannerView.h │ │ ├── UADSBannerViewDelegate.h │ │ ├── UADSBaseOptions.h │ │ ├── UADSDeviceInfoProvider.h │ │ ├── UADSDictionaryConvertible.h │ │ ├── UADSInstallationId.h │ │ ├── UADSLoadOptions.h │ │ ├── UADSMediationMetaData.h │ │ ├── UADSMetaData.h │ │ ├── UADSPlayerMetaData.h │ │ ├── UADSSessionId.h │ │ ├── UADSShowOptions.h │ │ ├── UANAApiAnalytics.h │ │ ├── USRVInitializeStateFactory.h │ │ ├── USRVInitializeStateType.h │ │ ├── USRVJsonStorage.h │ │ ├── UnityAds-Swift.h │ │ ├── UnityAds.h │ │ ├── UnityAdsBannerDelegate.h │ │ ├── UnityAdsInitializationDelegate.h │ │ ├── UnityAdsInitializationError.h │ │ ├── UnityAdsLoadDelegate.h │ │ ├── UnityAdsLoadError.h │ │ ├── UnityAdsShowCompletionState.h │ │ ├── UnityAdsShowDelegate.h │ │ ├── UnityAdsShowError.h │ │ ├── UnityAdvertisement.h │ │ ├── UnityAnalytics.h │ │ ├── UnityAnalyticsAcquisitionType.h │ │ └── UnityServices.h │ │ ├── Info.plist │ │ ├── Modules │ │ ├── UnityAds.swiftmodule │ │ │ ├── arm64-apple-ios.swiftdoc │ │ │ ├── arm64-apple-ios.swiftinterface │ │ │ ├── armv7-apple-ios.swiftdoc │ │ │ └── armv7-apple-ios.swiftinterface │ │ └── module.modulemap │ │ ├── MuteSwitchDetection.aiff │ │ └── UnityAds │ └── ios-arm64_i386_x86_64-simulator │ └── UnityAds.framework │ ├── Headers │ ├── UADSBanner.h │ ├── UADSBannerAdRefreshViewDelegate.h │ ├── UADSBannerError.h │ ├── UADSBannerView.h │ ├── UADSBannerViewDelegate.h │ ├── UADSBaseOptions.h │ ├── UADSDeviceInfoProvider.h │ ├── UADSDictionaryConvertible.h │ ├── UADSInstallationId.h │ ├── UADSLoadOptions.h │ ├── UADSMediationMetaData.h │ ├── UADSMetaData.h │ ├── UADSPlayerMetaData.h │ ├── UADSSessionId.h │ ├── UADSShowOptions.h │ ├── UANAApiAnalytics.h │ ├── USRVInitializeStateFactory.h │ ├── USRVInitializeStateType.h │ ├── USRVJsonStorage.h │ ├── UnityAds-Swift.h │ ├── UnityAds.h │ ├── UnityAdsBannerDelegate.h │ ├── UnityAdsInitializationDelegate.h │ ├── UnityAdsInitializationError.h │ ├── UnityAdsLoadDelegate.h │ ├── UnityAdsLoadError.h │ ├── UnityAdsShowCompletionState.h │ ├── UnityAdsShowDelegate.h │ ├── UnityAdsShowError.h │ ├── UnityAdvertisement.h │ ├── UnityAnalytics.h │ ├── UnityAnalyticsAcquisitionType.h │ └── UnityServices.h │ ├── Info.plist │ ├── Modules │ ├── UnityAds.swiftmodule │ │ ├── arm64-apple-ios-simulator.swiftdoc │ │ ├── arm64-apple-ios-simulator.swiftinterface │ │ ├── i386-apple-ios-simulator.swiftdoc │ │ ├── i386-apple-ios-simulator.swiftinterface │ │ ├── x86_64-apple-ios-simulator.swiftdoc │ │ └── x86_64-apple-ios-simulator.swiftinterface │ └── module.modulemap │ ├── MuteSwitchDetection.aiff │ ├── UnityAds │ └── _CodeSignature │ ├── CodeDirectory │ ├── CodeRequirements │ ├── CodeRequirements-1 │ ├── CodeResources │ └── CodeSignature ├── Models ├── AltStoreApp.swift ├── AltStoreRepo.swift ├── AltStoreRepoContents.swift ├── App.swift ├── Book.swift ├── CachedIPA.swift ├── CydiaApp.swift ├── DeviceStatusItem.swift ├── EnterpriseCertificate.swift ├── IPACacheStatus.swift ├── IgnoredApp.swift ├── InstallationOptions.swift ├── Item+Properties.swift ├── Items.swift ├── Link.swift ├── LinkedDevice.swift ├── MyAppstoreApp.swift ├── PlusPurchaseOption.swift ├── Promotion.swift ├── RequestedApp.swift ├── ServiceStatus.swift ├── SingleNews.swift ├── UpdateableApp.swift └── WishApp.swift ├── Other ├── Acknowledgements.plist ├── Base.lproj │ └── LaunchScreen.storyboard ├── Icons │ ├── Aqua.png │ ├── Aqua@2x.png │ ├── Aqua@3x.png │ ├── Black.png │ ├── Black@2x.png │ ├── Black@3x.png │ ├── Dark.png │ ├── Dark@2x.png │ ├── Dark@3x.png │ ├── Green.png │ ├── Green@2x.png │ ├── Green@3x.png │ ├── Pink.png │ ├── Pink@2x.png │ ├── Pink@3x.png │ ├── Purple.png │ ├── Purple@2x.png │ ├── Purple@3x.png │ ├── Red.png │ ├── Red@2x.png │ ├── Red@3x.png │ ├── Yellow.png │ ├── Yellow@2x.png │ └── Yellow@3x.png ├── Images.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon-40.png │ │ ├── Icon-40@2x.png │ │ ├── Icon-40@3x.png │ │ ├── Icon-60@2x.png │ │ ├── Icon-60@3x.png │ │ ├── Icon-72.png │ │ ├── Icon-72@2x.png │ │ ├── Icon-76.png │ │ ├── Icon-76@2x.png │ │ ├── Icon-83.5@2x.png │ │ ├── Icon-Small-50.png │ │ ├── Icon-Small-50@2x.png │ │ ├── Icon-Small.png │ │ ├── Icon-Small@2x.png │ │ ├── Icon-Small@3x.png │ │ ├── Icon.png │ │ ├── Icon@2x.png │ │ ├── NotificationIcon@2x.png │ │ ├── NotificationIcon@3x.png │ │ ├── NotificationIcon~ipad.png │ │ ├── NotificationIcon~ipad@2x.png │ │ └── ios-marketing.png │ ├── Banners │ │ ├── Contents.json │ │ ├── delta_banner.imageset │ │ │ ├── Contents.json │ │ │ ├── banner4-min.png │ │ │ ├── banner4@1x-min.png │ │ │ └── banner4@2x-min.png │ │ ├── main_banner.imageset │ │ │ ├── Contents.json │ │ │ ├── banner.png │ │ │ ├── banner@1x.png │ │ │ └── banner@2x.png │ │ ├── tweaked_apps_banner.imageset │ │ │ ├── Contents.json │ │ │ ├── appdb_banner-min.png │ │ │ ├── appdb_banner@1x-min.png │ │ │ └── appdb_banner@2x-min.png │ │ └── unc0ver_banner.imageset │ │ │ ├── Contents.json │ │ │ ├── banner@1x-min.png │ │ │ ├── banner@2x-min.png │ │ │ └── banner@3x-min.png │ ├── Contents.json │ ├── Credits │ │ ├── Am1nCmd.imageset │ │ │ ├── Am1nCmd-1.jpeg │ │ │ ├── Am1nCmd-2.jpeg │ │ │ ├── Am1nCmd.jpeg │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── DzMoha_31.imageset │ │ │ ├── Contents.json │ │ │ ├── photo_2019-10-27 12.46.48-1.jpeg │ │ │ ├── photo_2019-10-27 12.46.48-2.jpeg │ │ │ └── photo_2019-10-27 12.46.48.jpeg │ │ ├── EskaseptianTeam.imageset │ │ │ ├── Contents.json │ │ │ ├── photo_2019-10-28 18.24.05-1.jpeg │ │ │ ├── photo_2019-10-28 18.24.05-2.jpeg │ │ │ └── photo_2019-10-28 18.24.05.jpeg │ │ ├── aesign.imageset │ │ │ ├── Contents.json │ │ │ ├── aesign-1.jpg │ │ │ ├── aesign-2.jpg │ │ │ └── aesign-3.jpg │ │ ├── appdb.imageset │ │ │ ├── Contents.json │ │ │ ├── appdb-1.jpg │ │ │ ├── appdb-2.jpg │ │ │ └── appdb.jpg │ │ ├── bmac.imageset │ │ │ ├── Contents.json │ │ │ ├── bmac-1.png │ │ │ ├── bmac-2.png │ │ │ └── bmac.png │ │ ├── cryllical.imageset │ │ │ ├── Contents.json │ │ │ ├── cryllical-1.jpeg │ │ │ ├── cryllical-2.jpeg │ │ │ └── cryllical.jpeg │ │ ├── github.imageset │ │ │ ├── Contents.json │ │ │ ├── github-1.jpg │ │ │ ├── github-2.jpg │ │ │ └── github.jpg │ │ ├── ned.imageset │ │ │ ├── Contents.json │ │ │ ├── ned-1.jpg │ │ │ ├── ned-2.jpg │ │ │ └── ned-3.jpg │ │ ├── stev3fvcks.imageset │ │ │ ├── Contents.json │ │ │ ├── stev3fvcks-1.png │ │ │ ├── stev3fvcks-2.png │ │ │ └── stev3fvcks.png │ │ ├── tnt.imageset │ │ │ ├── Contents.json │ │ │ ├── tnt-1.jpg │ │ │ ├── tnt-2.jpg │ │ │ └── tnt.jpg │ │ └── zond.imageset │ │ │ ├── Contents.json │ │ │ ├── zond-1.jpeg │ │ │ ├── zond-2.jpeg │ │ │ └── zond-3.jpeg │ ├── Device Link Tutorial │ │ ├── Contents.json │ │ ├── completed.imageset │ │ │ ├── Contents.json │ │ │ ├── IntroCompletion.png │ │ │ ├── IntroCompletion@2x.png │ │ │ └── IntroCompletion@3x.png │ │ ├── error.imageset │ │ │ ├── Contents.json │ │ │ ├── aca9e1d412191c1614a3d4bc112dbfba copy 2.png │ │ │ ├── aca9e1d412191c1614a3d4bc112dbfba copy 3.png │ │ │ └── aca9e1d412191c1614a3d4bc112dbfba copy.png │ │ └── mdm_installed.imageset │ │ │ ├── Contents.json │ │ │ ├── r-1.png │ │ │ ├── r-2.png │ │ │ └── r.png │ ├── Icons Preview │ │ ├── Contents.json │ │ ├── icon-aqua.imageset │ │ │ ├── Aqua@3x-1.png │ │ │ ├── Aqua@3x-2.png │ │ │ ├── Aqua@3x.png │ │ │ └── Contents.json │ │ ├── icon-black.imageset │ │ │ ├── Black@3x-1.png │ │ │ ├── Black@3x-2.png │ │ │ ├── Black@3x.png │ │ │ └── Contents.json │ │ ├── icon-dark.imageset │ │ │ ├── Contents.json │ │ │ ├── dark-icon@3x-1.png │ │ │ ├── dark-icon@3x-2.png │ │ │ └── dark-icon@3x.png │ │ ├── icon-green.imageset │ │ │ ├── Contents.json │ │ │ ├── Green@3x-1.png │ │ │ ├── Green@3x-2.png │ │ │ └── Green@3x.png │ │ ├── icon-pink.imageset │ │ │ ├── Contents.json │ │ │ ├── Pink@3x-1.png │ │ │ ├── Pink@3x-2.png │ │ │ └── Pink@3x.png │ │ ├── icon-purple.imageset │ │ │ ├── Contents.json │ │ │ ├── Purple@3x-1.png │ │ │ ├── Purple@3x-2.png │ │ │ └── Purple@3x.png │ │ ├── icon-red.imageset │ │ │ ├── Contents.json │ │ │ ├── Red@3x-1.png │ │ │ ├── Red@3x-2.png │ │ │ └── Red@3x.png │ │ ├── icon-yellow.imageset │ │ │ ├── Contents.json │ │ │ ├── Yellow@3x-1.png │ │ │ ├── Yellow@3x-2.png │ │ │ └── Yellow@3x.png │ │ └── icon.imageset │ │ │ ├── Contents.json │ │ │ ├── icon@3x-1.png │ │ │ ├── icon@3x-2.png │ │ │ └── icon@3x.png │ ├── Info.imageset │ │ ├── Contents.json │ │ ├── Info 1.png │ │ ├── Info 2.png │ │ └── Info.png │ ├── Placeholders │ │ ├── Contents.json │ │ ├── placeholderBanner.imageset │ │ │ ├── Contents.json │ │ │ ├── Rectangle@1x.png │ │ │ ├── Rectangle@2x.png │ │ │ └── Rectangle@3x.png │ │ ├── placeholderCover.imageset │ │ │ ├── Background.png │ │ │ ├── Background@2x.png │ │ │ ├── Background@3x.png │ │ │ └── Contents.json │ │ └── placeholderIcon.imageset │ │ │ ├── Contents.json │ │ │ ├── Untitled.png │ │ │ ├── Untitled@2x.png │ │ │ └── Untitled@3x.png │ ├── Tab Bar Icons │ │ ├── Contents.json │ │ ├── downloads.imageset │ │ │ ├── Contents.json │ │ │ ├── downloads@1x.png │ │ │ ├── downloads@2x.png │ │ │ └── downloads@3x.png │ │ ├── featured.imageset │ │ │ ├── Contents.json │ │ │ ├── featured@1x.png │ │ │ ├── featured@2x.png │ │ │ └── featured@3x.png │ │ ├── search.imageset │ │ │ ├── Contents.json │ │ │ ├── search@1x.png │ │ │ ├── search@2x.png │ │ │ └── search@3x.png │ │ ├── settings.imageset │ │ │ ├── Contents.json │ │ │ ├── settings@1x.png │ │ │ ├── settings@2x.png │ │ │ └── settings@3x.png │ │ └── updates.imageset │ │ │ ├── Contents.json │ │ │ ├── updates@1x.png │ │ │ ├── updates@2x.png │ │ │ └── updates@3x.png │ ├── blank_icon.imageset │ │ ├── Contents.json │ │ ├── Empty_app_icon_512 copy 2.png │ │ ├── Empty_app_icon_512 copy 3.png │ │ └── Empty_app_icon_512 copy.png │ ├── bolt_dark.imageset │ │ ├── Contents.json │ │ ├── ios7-bolt copy 2.png │ │ ├── ios7-bolt copy 3.png │ │ └── ios7-bolt copy.png │ ├── bolt_light.imageset │ │ ├── Contents.json │ │ ├── ios7-bolt-outline copy 2.png │ │ ├── ios7-bolt-outline copy 3.png │ │ └── ios7-bolt-outline copy.png │ ├── card-icon.imageset │ │ ├── Contents.json │ │ └── card-icon.png │ ├── filter.imageset │ │ ├── Contents.json │ │ ├── icons8-filter-100-2.png │ │ ├── icons8-filter-100-3.png │ │ └── icons8-filter-100-4.png │ ├── icon_safari.imageset │ │ ├── Contents.json │ │ └── icon_safari.pdf │ ├── more.imageset │ │ ├── Contents.json │ │ ├── Menu 2-96.png │ │ ├── Menu 2-97.png │ │ └── Menu 2-98.png │ ├── offline.imageset │ │ ├── Contents.json │ │ ├── Rectangle 1.png │ │ ├── Rectangle 1@2x.png │ │ └── Rectangle 1@3x.png │ ├── online.imageset │ │ ├── Contents.json │ │ ├── Rectangle 1.png │ │ ├── Rectangle 1@2x.png │ │ └── Rectangle 1@3x.png │ ├── question.imageset │ │ ├── Contents.json │ │ ├── icons8-help-100 copy 2.png │ │ ├── icons8-help-100 copy 3.png │ │ └── icons8-help-100 copy.png │ ├── remove.imageset │ │ ├── Contents.json │ │ ├── Delete-500 copy 2.png │ │ ├── Delete-500 copy 3.png │ │ └── Delete-500 copy.png │ ├── rightArrow.imageset │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ └── Contents.json │ ├── trash.imageset │ │ ├── Contents.json │ │ ├── Navigation_Trash_2x@3x 14.55.52.png │ │ ├── Navigation_Trash_2x@3x 14.55.52@2x.png │ │ └── Navigation_Trash_2x@3x 14.55.52@3x.png │ └── wishes.imageset │ │ ├── Contents.json │ │ ├── Untitled.png │ │ ├── Untitled@2x.png │ │ └── Untitled@3x.png ├── Info.plist └── appdb.entitlements ├── Resources ├── AlamofireObjectMapper │ └── AlamofireObjectMapper.swift ├── Atributika │ ├── AttributedLabel.swift │ ├── AttributedText.swift │ ├── NSAttributedString+Utils.swift │ ├── NSScanner+Swift.swift │ ├── String+Detection.swift │ └── Style.swift ├── Cartography │ ├── Align.swift │ ├── AutoresizingMaskLayoutProxy.swift │ ├── CartographyExtensions.swift │ ├── Coefficients.swift │ ├── Compound.swift │ ├── Constrain.swift │ ├── Constraint.swift │ ├── ConstraintGroup.swift │ ├── Context.swift │ ├── Dimension.swift │ ├── Distribute.swift │ ├── Edge.swift │ ├── Edges.swift │ ├── Expression.swift │ ├── LayoutGuide.swift │ ├── LayoutGuideProxy.swift │ ├── LayoutItem.swift │ ├── LayoutProxy+TypeErasure.swift │ ├── LayoutProxy.swift │ ├── LayoutSupport.swift │ ├── LayoutSupportProxy.swift │ ├── Point.swift │ ├── Priority.swift │ ├── Property.swift │ ├── Size.swift │ ├── View.swift │ └── ViewProxy.swift ├── DynamicFontSizeHelper │ └── DynamicFontSizeHelper.swift ├── Ferrara │ ├── Diff.swift │ ├── Identifiable.swift │ └── Match.swift ├── ILTranslucentView │ └── ILTranslucentView.swift ├── LNZSnapToCenterCollectionViewLayout │ ├── LNZInfiniteCollectionViewLayout.swift │ └── LNZSnapToCenterCollectionViewLayout.swift ├── SHA1 │ └── SHA1.swift ├── Static │ ├── ButtonCell.swift │ ├── Cell.swift │ ├── DataSource.swift │ ├── StaticRow.swift │ ├── StaticSection.swift │ ├── SubtitleCell.swift │ ├── SwitchAccessory.swift │ ├── TableViewController.swift │ ├── Value1Cell.swift │ └── Value2Cell.swift ├── Storage │ ├── Defaults │ │ ├── Defaults.swift │ │ └── Observation.swift │ └── Keychain │ │ ├── KeychainItemAccessibility.swift │ │ └── KeychainWrapper.swift ├── SwiftPullToRefresh │ ├── IndicatorView.swift │ ├── RefreshView.swift │ └── UIScrollView+Extensions.swift ├── SwiftTheme │ ├── NSAttributedString+Merge.swift │ ├── NSObject+Theme.swift │ ├── ThemeActivityIndicatorViewStylePicker.swift │ ├── ThemeBarStylePicker.swift │ ├── ThemeCGColorPicker.swift │ ├── ThemeCGFloatPicker.swift │ ├── ThemeColorPicker.swift │ ├── ThemeDictionaryPicker.swift │ ├── ThemeFontPicker.swift │ ├── ThemeImagePicker.swift │ ├── ThemeKeyboardAppearancePicker.swift │ ├── ThemeManager+Index.swift │ ├── ThemeManager+OC.swift │ ├── ThemeManager+Plist.swift │ ├── ThemeManager.swift │ ├── ThemePicker.swift │ ├── ThemeScrollViewIndicatorStylePicker.swift │ ├── ThemeStatePicker.swift │ ├── ThemeStatusBarStylePicker.swift │ ├── ThemeStringAttributesPicker.swift │ ├── ThemeVisualEffectPicker.swift │ ├── UIColorExtension.swift │ ├── UIKit+Theme.swift │ ├── UILabel+TextAttributes.swift │ ├── UIRefreshControl+TitleAttributes.swift │ └── UITextField+PlaceholderAttributes.swift ├── TagView │ ├── TagButton.swift │ └── TagListView.swift ├── UIDeviceExtension │ └── UIDeviceExtension.swift ├── WaterfallLayout │ └── ETCollectionViewWaterFallLayout.swift ├── • AdaptiveUIAlertController │ └── AdaptiveUIAlertController.swift ├── • AdditionalInstallOptionsView │ ├── AdditionalInstallOptionsViewController.swift │ └── InstallOptionsDylibSelectViewController.swift ├── • AskBundleBeforeUploadView │ └── AskBundleBeforeUploadViewController.swift ├── • BackgroundTaskUtil │ └── BackgroundTaskUtil.swift ├── • ButtonFactory │ ├── ButtonFactory.swift │ └── RoundedButton.swift ├── • DimmableView │ └── DimmableView.swift ├── • Dismissable Modal Nav Controller │ └── DismissableModalNavController.swift ├── • ElasticLabel │ ├── ElasticLabel.swift │ └── String+Truncation.swift ├── • LineSpacingLabel │ └── UILabel+LineSpacing.swift ├── • LoadingTableView │ ├── LoadingCollectionView.swift │ └── LoadingTableView.swift ├── • LocalIPAUtils │ ├── LocalIPADownloadUtil.swift │ └── LocalIPAUploadUtil.swift ├── • MessagesFactory │ └── MessagesFactory.swift ├── • PaddingLabel │ └── PaddingLabel.swift ├── • SafariActivity │ └── SafariActivity.swift └── • SnappableFlowLayout │ └── SnappableFlowLayout.swift ├── Startup ├── AppDelegate.swift ├── BadgeManager.swift ├── Colors.swift ├── Extensions.swift ├── Global.swift ├── KnownLandscapeScreenshots.swift ├── Preferences.swift ├── TabBarController.swift └── Themes.swift ├── Tabs ├── Downloads │ ├── Downloading │ │ ├── AdBlocker.swift │ │ ├── Cells │ │ │ └── DownloadingCell.swift │ │ ├── Downloading.swift │ │ ├── IPAWebViewController.swift │ │ └── ObserveDownloadingApps.swift │ ├── Downloads.swift │ ├── Library │ │ ├── Cells │ │ │ ├── LibrarySectionFooterView.swift │ │ │ ├── LibrarySectionHeaderView.swift │ │ │ ├── LocalIPACell.swift │ │ │ └── MyAppstoreCell.swift │ │ ├── IPAFileManager.swift │ │ ├── Library+Extension.swift │ │ └── Library.swift │ └── Queued Apps │ │ ├── Cells │ │ └── QueuedDownloadsCell.swift │ │ ├── ObserveQueuedApps.swift │ │ └── QueuedApps.swift ├── Featured │ ├── Categories │ │ ├── Categories.swift │ │ └── CategoryCell.swift │ ├── Details │ │ ├── Cells │ │ │ ├── Details │ │ │ │ ├── Changelog │ │ │ │ │ └── Details+Changelog.swift │ │ │ │ ├── Description │ │ │ │ │ └── Details+Description.swift │ │ │ │ ├── Download Stats │ │ │ │ │ └── Details+Download Stats.swift │ │ │ │ ├── ExternalLink │ │ │ │ │ └── Details+ExternalLink.swift │ │ │ │ ├── Information │ │ │ │ │ └── Details+Information.swift │ │ │ │ ├── Publisher │ │ │ │ │ └── Details+Publisher.swift │ │ │ │ ├── Related │ │ │ │ │ └── Details+Related.swift │ │ │ │ ├── Screenshots │ │ │ │ │ ├── Full Screenshots │ │ │ │ │ │ ├── Details+FullScreenshots.swift │ │ │ │ │ │ └── Details+FullScreenshotsCell.swift │ │ │ │ │ └── Screenshots │ │ │ │ │ │ ├── Details+Screenshots.swift │ │ │ │ │ │ └── Details+ScreenshotsCell.swift │ │ │ │ └── Tweaked Notice │ │ │ │ │ └── Details+TweakedNotice.swift │ │ │ ├── Download │ │ │ │ ├── Details+DownloadCell.swift │ │ │ │ ├── Details+DownloadEmptyCell.swift │ │ │ │ └── Details+VersionHeader.swift │ │ │ ├── Header │ │ │ │ ├── Details+Header.swift │ │ │ │ └── Details+SegmentControl.swift │ │ │ └── Reviews │ │ │ │ └── Details+Review.swift │ │ ├── Details+Extension.swift │ │ └── Details.swift │ ├── Featured │ │ ├── Banner │ │ │ ├── Banner.swift │ │ │ └── BannerImage.swift │ │ ├── Cells │ │ │ ├── CollectionView Cells │ │ │ │ ├── FeaturedApp.swift │ │ │ │ └── FeaturedBook.swift │ │ │ ├── Copyright.swift │ │ │ ├── Dummy.swift │ │ │ └── ItemCollection.swift │ │ ├── Featured+Extension.swift │ │ └── Featured.swift │ ├── See All │ │ ├── SeeAll.swift │ │ ├── SeeAllCell+WithStars.swift │ │ └── SeeAllCell.swift │ ├── Update Prompt │ │ ├── AppUpdateController.swift │ │ └── AppUpdateHeader.swift │ └── Wishes │ │ ├── Cells │ │ └── WishAppCell.swift │ │ ├── Fulfilled │ │ └── FulfilledWishes.swift │ │ ├── New │ │ └── NewWishes.swift │ │ └── Wishes.swift ├── Search │ ├── Search Cells │ │ ├── LandscapeScreenshotSearchCell+Stars.swift │ │ ├── LandscapeScreenshotSearchCell.swift │ │ ├── MixedScreenshotsSearchCell_L->P+Stars.swift │ │ ├── MixedScreenshotsSearchCell_L->P.swift │ │ ├── MixedScreenshotsSearchCell_P->L+Stars.swift │ │ ├── MixedScreenshotsSearchCell_P->L.swift │ │ ├── NoScreenshotsSearchCell.swift │ │ ├── NoScreenshotsSearchCell~Book+Stars.swift │ │ ├── NoScreenshotsSearchCell~Book.swift │ │ ├── PortraitScreenshotSearchCell+Stars.swift │ │ ├── PortraitScreenshotSearchCell.swift │ │ ├── SearchCell.swift │ │ ├── ThreePortraitScreenshotsSearchCell+Stars.swift │ │ ├── ThreePortraitScreenshotsSearchCell.swift │ │ ├── TwoPortraitScreenshotsSearchCell+Stars.swift │ │ ├── TwoPortraitScreenshotsSearchCell.swift │ │ ├── iPad │ │ │ └── SearchCells~iPad.swift │ │ └── iPhone │ │ │ └── SearchCells~iPhone.swift │ ├── Search+Extension.swift │ ├── Search.swift │ ├── SuggestionsWhileTyping.swift │ └── Trending View │ │ └── TrendingCollectionViewCell.swift ├── Settings │ ├── Acknowledgements │ │ └── Acknowledgements.swift │ ├── Advanced Options │ │ ├── AdvancedOptions.swift │ │ └── ListAppsManagedByAppdb.swift │ ├── AltStoreRepos │ │ ├── AltStoreRepoCell.swift │ │ ├── AltStoreRepos+Extension.swift │ │ ├── AltStoreRepos.swift │ │ └── Apps │ │ │ ├── AltStoreAppDetails+Extension.swift │ │ │ ├── AltStoreAppDetails.swift │ │ │ ├── AltStoreRepoAppCell.swift │ │ │ └── AltStoreRepoApps.swift │ ├── Credits │ │ ├── Credits+Views.swift │ │ └── Credits.swift │ ├── Device Chooser │ │ └── DeviceChooser.swift │ ├── Device Link │ │ ├── BulletinDataSource.swift │ │ └── Bulletins │ │ │ ├── EnterLinkCodeBulletinPage.swift │ │ │ └── SelectorBulletinPage.swift │ ├── Device Status │ │ ├── DeviceStatus.swift │ │ └── DeviceStatusCell.swift │ ├── Enterprise Cert Chooser │ │ └── EnterpriseCertChooser.swift │ ├── IPA Cache │ │ ├── CachedIPAs+Extension.swift │ │ ├── CachedIPAs.swift │ │ └── IPACache.swift │ ├── Icon Chooser │ │ ├── IconChooser.swift │ │ └── IconChooserCell.swift │ ├── Language Chooser │ │ └── LanguageChooser.swift │ ├── My Dylibs │ │ ├── MyDylibs+Extension.swift │ │ └── MyDylibs.swift │ ├── News │ │ ├── News+Detail+HTMLCell.swift │ │ ├── News+Detail+TitleDateCell.swift │ │ ├── News+Detail.swift │ │ └── News.swift │ ├── Plus │ │ ├── PlusPurchase.swift │ │ ├── PlusPurchaseCell.swift │ │ ├── PlusPurchaseWeb.swift │ │ └── SigningCerts.swift │ ├── Settings+Sections.swift │ ├── Settings+StaticCells.swift │ ├── Settings.swift │ ├── Signing Type Chooser │ │ └── SigningTypeChooser.swift │ ├── System Status │ │ └── SystemStatus.swift │ └── Theme Chooser │ │ └── ThemeChooser.swift └── Updates │ ├── Cells │ ├── IgnoredCell.swift │ ├── UpdateCell.swift │ └── UpdatesSectionHeaderView.swift │ ├── Ignored.swift │ ├── Updates+Extension.swift │ └── Updates.swift ├── appdb.entitlements ├── ar.lproj └── Localizable.strings ├── de.lproj └── Localizable.strings ├── en.lproj └── Localizable.strings ├── es.lproj └── Localizable.strings ├── fr.lproj └── Localizable.strings ├── id.lproj └── Localizable.strings ├── it.lproj └── Localizable.strings ├── jv-ID.lproj └── Localizable.strings └── ru.lproj └── Localizable.strings /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftlint.autocorrect.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/.swiftlint.autocorrect.yml -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/README.md -------------------------------------------------------------------------------- /Widgets/Apps Widget/AppsWidget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/Widgets/Apps Widget/AppsWidget.swift -------------------------------------------------------------------------------- /Widgets/Apps Widget/Components/AppGridView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/Widgets/Apps Widget/Components/AppGridView.swift -------------------------------------------------------------------------------- /Widgets/Apps Widget/Components/AppListView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/Widgets/Apps Widget/Components/AppListView.swift -------------------------------------------------------------------------------- /Widgets/Apps Widget/Components/AppsWidgetHeader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/Widgets/Apps Widget/Components/AppsWidgetHeader.swift -------------------------------------------------------------------------------- /Widgets/Apps Widget/Components/GridStack.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/Widgets/Apps Widget/Components/GridStack.swift -------------------------------------------------------------------------------- /Widgets/Apps Widget/Components/RemoteImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/Widgets/Apps Widget/Components/RemoteImage.swift -------------------------------------------------------------------------------- /Widgets/Apps Widget/Components/RoundedBadge.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/Widgets/Apps Widget/Components/RoundedBadge.swift -------------------------------------------------------------------------------- /Widgets/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/Widgets/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Widgets/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/Widgets/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Widgets/Assets.xcassets/BackgroundColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/Widgets/Assets.xcassets/BackgroundColor.colorset/Contents.json -------------------------------------------------------------------------------- /Widgets/Assets.xcassets/BackgroundColorHeader.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/Widgets/Assets.xcassets/BackgroundColorHeader.colorset/Contents.json -------------------------------------------------------------------------------- /Widgets/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/Widgets/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Widgets/Assets.xcassets/WidgetBackground.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/Widgets/Assets.xcassets/WidgetBackground.colorset/Contents.json -------------------------------------------------------------------------------- /Widgets/Assets.xcassets/appdb.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/Widgets/Assets.xcassets/appdb.imageset/Contents.json -------------------------------------------------------------------------------- /Widgets/Assets.xcassets/appdb.imageset/appdb-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/Widgets/Assets.xcassets/appdb.imageset/appdb-1.jpg -------------------------------------------------------------------------------- /Widgets/Assets.xcassets/appdb.imageset/appdb-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/Widgets/Assets.xcassets/appdb.imageset/appdb-2.jpg -------------------------------------------------------------------------------- /Widgets/Assets.xcassets/appdb.imageset/appdb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/Widgets/Assets.xcassets/appdb.imageset/appdb.jpg -------------------------------------------------------------------------------- /Widgets/Base.lproj/Widgets.intentdefinition: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/Widgets/Base.lproj/Widgets.intentdefinition -------------------------------------------------------------------------------- /Widgets/Extensions/Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/Widgets/Extensions/Extensions.swift -------------------------------------------------------------------------------- /Widgets/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/Widgets/Info.plist -------------------------------------------------------------------------------- /Widgets/Models/APIResponseError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/Widgets/Models/APIResponseError.swift -------------------------------------------------------------------------------- /Widgets/Models/Content.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/Widgets/Models/Content.swift -------------------------------------------------------------------------------- /Widgets/Models/News.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/Widgets/Models/News.swift -------------------------------------------------------------------------------- /Widgets/Network/AppdbRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/Widgets/Network/AppdbRepository.swift -------------------------------------------------------------------------------- /Widgets/Network/Repository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/Widgets/Network/Repository.swift -------------------------------------------------------------------------------- /Widgets/News Widget/Components/NewsWidgetHeader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/Widgets/News Widget/Components/NewsWidgetHeader.swift -------------------------------------------------------------------------------- /Widgets/News Widget/NewsWidget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/Widgets/News Widget/NewsWidget.swift -------------------------------------------------------------------------------- /Widgets/Widgets.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/Widgets/Widgets.swift -------------------------------------------------------------------------------- /Widgets/en.lproj/Widgets.intentdefinition: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/Widgets/en.lproj/Widgets.intentdefinition -------------------------------------------------------------------------------- /appdb.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /appdb.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /appdb.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /appdb.xcodeproj/xcshareddata/xcschemes/appdb.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb.xcodeproj/xcshareddata/xcschemes/appdb.xcscheme -------------------------------------------------------------------------------- /appdb.xcodeproj/xcuserdata/ned.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb.xcodeproj/xcuserdata/ned.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /appdb/API/API+AltStoreRepos.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/API/API+AltStoreRepos.swift -------------------------------------------------------------------------------- /appdb/API/API+CheckAppUpdate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/API/API+CheckAppUpdate.swift -------------------------------------------------------------------------------- /appdb/API/API+Configuration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/API/API+Configuration.swift -------------------------------------------------------------------------------- /appdb/API/API+DeviceLink.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/API/API+DeviceLink.swift -------------------------------------------------------------------------------- /appdb/API/API+DeviceStatus.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/API/API+DeviceStatus.swift -------------------------------------------------------------------------------- /appdb/API/API+Dylibs.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/API/API+Dylibs.swift -------------------------------------------------------------------------------- /appdb/API/API+Genres.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/API/API+Genres.swift -------------------------------------------------------------------------------- /appdb/API/API+IPACache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/API/API+IPACache.swift -------------------------------------------------------------------------------- /appdb/API/API+Install.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/API/API+Install.swift -------------------------------------------------------------------------------- /appdb/API/API+Links.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/API/API+Links.swift -------------------------------------------------------------------------------- /appdb/API/API+MyAppstore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/API/API+MyAppstore.swift -------------------------------------------------------------------------------- /appdb/API/API+News.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/API/API+News.swift -------------------------------------------------------------------------------- /appdb/API/API+Plus.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/API/API+Plus.swift -------------------------------------------------------------------------------- /appdb/API/API+Promotions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/API/API+Promotions.swift -------------------------------------------------------------------------------- /appdb/API/API+Search.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/API/API+Search.swift -------------------------------------------------------------------------------- /appdb/API/API+SystemStatus.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/API/API+SystemStatus.swift -------------------------------------------------------------------------------- /appdb/API/API+UDID.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/API/API+UDID.swift -------------------------------------------------------------------------------- /appdb/API/API+Updates.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/API/API+Updates.swift -------------------------------------------------------------------------------- /appdb/API/API+Voucher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/API/API+Voucher.swift -------------------------------------------------------------------------------- /appdb/API/API+Wishes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/API/API+Wishes.swift -------------------------------------------------------------------------------- /appdb/API/API.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/API/API.swift -------------------------------------------------------------------------------- /appdb/EmbeddedFrameworks/UnityAds.xcframework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/EmbeddedFrameworks/UnityAds.xcframework/Info.plist -------------------------------------------------------------------------------- /appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_armv7/UnityAds.framework/Headers/UADSBanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_armv7/UnityAds.framework/Headers/UADSBanner.h -------------------------------------------------------------------------------- /appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_armv7/UnityAds.framework/Headers/UADSBannerAdRefreshViewDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_armv7/UnityAds.framework/Headers/UADSBannerAdRefreshViewDelegate.h -------------------------------------------------------------------------------- /appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_armv7/UnityAds.framework/Headers/UADSBannerError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_armv7/UnityAds.framework/Headers/UADSBannerError.h -------------------------------------------------------------------------------- /appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_armv7/UnityAds.framework/Headers/UADSBannerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_armv7/UnityAds.framework/Headers/UADSBannerView.h -------------------------------------------------------------------------------- /appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_armv7/UnityAds.framework/Headers/UADSBannerViewDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_armv7/UnityAds.framework/Headers/UADSBannerViewDelegate.h -------------------------------------------------------------------------------- /appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_armv7/UnityAds.framework/Headers/UADSBaseOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_armv7/UnityAds.framework/Headers/UADSBaseOptions.h -------------------------------------------------------------------------------- /appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_armv7/UnityAds.framework/Headers/UADSDeviceInfoProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_armv7/UnityAds.framework/Headers/UADSDeviceInfoProvider.h -------------------------------------------------------------------------------- /appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_armv7/UnityAds.framework/Headers/UADSDictionaryConvertible.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_armv7/UnityAds.framework/Headers/UADSDictionaryConvertible.h -------------------------------------------------------------------------------- /appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_armv7/UnityAds.framework/Headers/UADSInstallationId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_armv7/UnityAds.framework/Headers/UADSInstallationId.h -------------------------------------------------------------------------------- /appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_armv7/UnityAds.framework/Headers/UADSLoadOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_armv7/UnityAds.framework/Headers/UADSLoadOptions.h -------------------------------------------------------------------------------- /appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_armv7/UnityAds.framework/Headers/UADSMediationMetaData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_armv7/UnityAds.framework/Headers/UADSMediationMetaData.h -------------------------------------------------------------------------------- /appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_armv7/UnityAds.framework/Headers/UADSMetaData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_armv7/UnityAds.framework/Headers/UADSMetaData.h -------------------------------------------------------------------------------- /appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_armv7/UnityAds.framework/Headers/UADSPlayerMetaData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_armv7/UnityAds.framework/Headers/UADSPlayerMetaData.h -------------------------------------------------------------------------------- /appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_armv7/UnityAds.framework/Headers/UADSSessionId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_armv7/UnityAds.framework/Headers/UADSSessionId.h -------------------------------------------------------------------------------- /appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_armv7/UnityAds.framework/Headers/UADSShowOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_armv7/UnityAds.framework/Headers/UADSShowOptions.h -------------------------------------------------------------------------------- /appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_armv7/UnityAds.framework/Headers/UANAApiAnalytics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_armv7/UnityAds.framework/Headers/UANAApiAnalytics.h -------------------------------------------------------------------------------- /appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_armv7/UnityAds.framework/Headers/USRVInitializeStateFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_armv7/UnityAds.framework/Headers/USRVInitializeStateFactory.h -------------------------------------------------------------------------------- /appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_armv7/UnityAds.framework/Headers/USRVInitializeStateType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_armv7/UnityAds.framework/Headers/USRVInitializeStateType.h -------------------------------------------------------------------------------- /appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_armv7/UnityAds.framework/Headers/USRVJsonStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_armv7/UnityAds.framework/Headers/USRVJsonStorage.h -------------------------------------------------------------------------------- /appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_armv7/UnityAds.framework/Headers/UnityAds-Swift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_armv7/UnityAds.framework/Headers/UnityAds-Swift.h -------------------------------------------------------------------------------- /appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_armv7/UnityAds.framework/Headers/UnityAds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_armv7/UnityAds.framework/Headers/UnityAds.h -------------------------------------------------------------------------------- /appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_armv7/UnityAds.framework/Headers/UnityAdsBannerDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_armv7/UnityAds.framework/Headers/UnityAdsBannerDelegate.h -------------------------------------------------------------------------------- /appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_armv7/UnityAds.framework/Headers/UnityAdsInitializationDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_armv7/UnityAds.framework/Headers/UnityAdsInitializationDelegate.h -------------------------------------------------------------------------------- /appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_armv7/UnityAds.framework/Headers/UnityAdsInitializationError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_armv7/UnityAds.framework/Headers/UnityAdsInitializationError.h -------------------------------------------------------------------------------- /appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_armv7/UnityAds.framework/Headers/UnityAdsLoadDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_armv7/UnityAds.framework/Headers/UnityAdsLoadDelegate.h -------------------------------------------------------------------------------- /appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_armv7/UnityAds.framework/Headers/UnityAdsLoadError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_armv7/UnityAds.framework/Headers/UnityAdsLoadError.h -------------------------------------------------------------------------------- /appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_armv7/UnityAds.framework/Headers/UnityAdsShowCompletionState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_armv7/UnityAds.framework/Headers/UnityAdsShowCompletionState.h -------------------------------------------------------------------------------- /appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_armv7/UnityAds.framework/Headers/UnityAdsShowDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_armv7/UnityAds.framework/Headers/UnityAdsShowDelegate.h -------------------------------------------------------------------------------- /appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_armv7/UnityAds.framework/Headers/UnityAdsShowError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_armv7/UnityAds.framework/Headers/UnityAdsShowError.h -------------------------------------------------------------------------------- /appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_armv7/UnityAds.framework/Headers/UnityAdvertisement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_armv7/UnityAds.framework/Headers/UnityAdvertisement.h -------------------------------------------------------------------------------- /appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_armv7/UnityAds.framework/Headers/UnityAnalytics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_armv7/UnityAds.framework/Headers/UnityAnalytics.h -------------------------------------------------------------------------------- /appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_armv7/UnityAds.framework/Headers/UnityAnalyticsAcquisitionType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_armv7/UnityAds.framework/Headers/UnityAnalyticsAcquisitionType.h -------------------------------------------------------------------------------- /appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_armv7/UnityAds.framework/Headers/UnityServices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_armv7/UnityAds.framework/Headers/UnityServices.h -------------------------------------------------------------------------------- /appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_armv7/UnityAds.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_armv7/UnityAds.framework/Info.plist -------------------------------------------------------------------------------- /appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_armv7/UnityAds.framework/Modules/UnityAds.swiftmodule/arm64-apple-ios.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_armv7/UnityAds.framework/Modules/UnityAds.swiftmodule/arm64-apple-ios.swiftdoc -------------------------------------------------------------------------------- /appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_armv7/UnityAds.framework/Modules/UnityAds.swiftmodule/arm64-apple-ios.swiftinterface: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_armv7/UnityAds.framework/Modules/UnityAds.swiftmodule/arm64-apple-ios.swiftinterface -------------------------------------------------------------------------------- /appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_armv7/UnityAds.framework/Modules/UnityAds.swiftmodule/armv7-apple-ios.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_armv7/UnityAds.framework/Modules/UnityAds.swiftmodule/armv7-apple-ios.swiftdoc -------------------------------------------------------------------------------- /appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_armv7/UnityAds.framework/Modules/UnityAds.swiftmodule/armv7-apple-ios.swiftinterface: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_armv7/UnityAds.framework/Modules/UnityAds.swiftmodule/armv7-apple-ios.swiftinterface -------------------------------------------------------------------------------- /appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_armv7/UnityAds.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_armv7/UnityAds.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_armv7/UnityAds.framework/MuteSwitchDetection.aiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_armv7/UnityAds.framework/MuteSwitchDetection.aiff -------------------------------------------------------------------------------- /appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_armv7/UnityAds.framework/UnityAds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_armv7/UnityAds.framework/UnityAds -------------------------------------------------------------------------------- /appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/Headers/UADSBanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/Headers/UADSBanner.h -------------------------------------------------------------------------------- /appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/Headers/UADSBannerAdRefreshViewDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/Headers/UADSBannerAdRefreshViewDelegate.h -------------------------------------------------------------------------------- /appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/Headers/UADSBannerError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/Headers/UADSBannerError.h -------------------------------------------------------------------------------- /appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/Headers/UADSBannerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/Headers/UADSBannerView.h -------------------------------------------------------------------------------- /appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/Headers/UADSBannerViewDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/Headers/UADSBannerViewDelegate.h -------------------------------------------------------------------------------- /appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/Headers/UADSBaseOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/Headers/UADSBaseOptions.h -------------------------------------------------------------------------------- /appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/Headers/UADSDeviceInfoProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/Headers/UADSDeviceInfoProvider.h -------------------------------------------------------------------------------- /appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/Headers/UADSDictionaryConvertible.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/Headers/UADSDictionaryConvertible.h -------------------------------------------------------------------------------- /appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/Headers/UADSInstallationId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/Headers/UADSInstallationId.h -------------------------------------------------------------------------------- /appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/Headers/UADSLoadOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/Headers/UADSLoadOptions.h -------------------------------------------------------------------------------- /appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/Headers/UADSMediationMetaData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/Headers/UADSMediationMetaData.h -------------------------------------------------------------------------------- /appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/Headers/UADSMetaData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/Headers/UADSMetaData.h -------------------------------------------------------------------------------- /appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/Headers/UADSPlayerMetaData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/Headers/UADSPlayerMetaData.h -------------------------------------------------------------------------------- /appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/Headers/UADSSessionId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/Headers/UADSSessionId.h -------------------------------------------------------------------------------- /appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/Headers/UADSShowOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/Headers/UADSShowOptions.h -------------------------------------------------------------------------------- /appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/Headers/UANAApiAnalytics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/Headers/UANAApiAnalytics.h -------------------------------------------------------------------------------- /appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/Headers/USRVInitializeStateFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/Headers/USRVInitializeStateFactory.h -------------------------------------------------------------------------------- /appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/Headers/USRVInitializeStateType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/Headers/USRVInitializeStateType.h -------------------------------------------------------------------------------- /appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/Headers/USRVJsonStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/Headers/USRVJsonStorage.h -------------------------------------------------------------------------------- /appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/Headers/UnityAds-Swift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/Headers/UnityAds-Swift.h -------------------------------------------------------------------------------- /appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/Headers/UnityAds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/Headers/UnityAds.h -------------------------------------------------------------------------------- /appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/Headers/UnityAdsBannerDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/Headers/UnityAdsBannerDelegate.h -------------------------------------------------------------------------------- /appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/Headers/UnityAdsInitializationDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/Headers/UnityAdsInitializationDelegate.h -------------------------------------------------------------------------------- /appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/Headers/UnityAdsInitializationError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/Headers/UnityAdsInitializationError.h -------------------------------------------------------------------------------- /appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/Headers/UnityAdsLoadDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/Headers/UnityAdsLoadDelegate.h -------------------------------------------------------------------------------- /appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/Headers/UnityAdsLoadError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/Headers/UnityAdsLoadError.h -------------------------------------------------------------------------------- /appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/Headers/UnityAdsShowCompletionState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/Headers/UnityAdsShowCompletionState.h -------------------------------------------------------------------------------- /appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/Headers/UnityAdsShowDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/Headers/UnityAdsShowDelegate.h -------------------------------------------------------------------------------- /appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/Headers/UnityAdsShowError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/Headers/UnityAdsShowError.h -------------------------------------------------------------------------------- /appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/Headers/UnityAdvertisement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/Headers/UnityAdvertisement.h -------------------------------------------------------------------------------- /appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/Headers/UnityAnalytics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/Headers/UnityAnalytics.h -------------------------------------------------------------------------------- /appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/Headers/UnityAnalyticsAcquisitionType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/Headers/UnityAnalyticsAcquisitionType.h -------------------------------------------------------------------------------- /appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/Headers/UnityServices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/Headers/UnityServices.h -------------------------------------------------------------------------------- /appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/Info.plist -------------------------------------------------------------------------------- /appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/Modules/UnityAds.swiftmodule/arm64-apple-ios-simulator.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/Modules/UnityAds.swiftmodule/arm64-apple-ios-simulator.swiftdoc -------------------------------------------------------------------------------- /appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/Modules/UnityAds.swiftmodule/arm64-apple-ios-simulator.swiftinterface: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/Modules/UnityAds.swiftmodule/arm64-apple-ios-simulator.swiftinterface -------------------------------------------------------------------------------- /appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/Modules/UnityAds.swiftmodule/i386-apple-ios-simulator.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/Modules/UnityAds.swiftmodule/i386-apple-ios-simulator.swiftdoc -------------------------------------------------------------------------------- /appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/Modules/UnityAds.swiftmodule/i386-apple-ios-simulator.swiftinterface: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/Modules/UnityAds.swiftmodule/i386-apple-ios-simulator.swiftinterface -------------------------------------------------------------------------------- /appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/Modules/UnityAds.swiftmodule/x86_64-apple-ios-simulator.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/Modules/UnityAds.swiftmodule/x86_64-apple-ios-simulator.swiftdoc -------------------------------------------------------------------------------- /appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/Modules/UnityAds.swiftmodule/x86_64-apple-ios-simulator.swiftinterface: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/Modules/UnityAds.swiftmodule/x86_64-apple-ios-simulator.swiftinterface -------------------------------------------------------------------------------- /appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/MuteSwitchDetection.aiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/MuteSwitchDetection.aiff -------------------------------------------------------------------------------- /appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/UnityAds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/UnityAds -------------------------------------------------------------------------------- /appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/_CodeSignature/CodeDirectory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/_CodeSignature/CodeDirectory -------------------------------------------------------------------------------- /appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/_CodeSignature/CodeRequirements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/_CodeSignature/CodeRequirements -------------------------------------------------------------------------------- /appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/_CodeSignature/CodeRequirements-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/_CodeSignature/CodeRequirements-1 -------------------------------------------------------------------------------- /appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /appdb/EmbeddedFrameworks/UnityAds.xcframework/ios-arm64_i386_x86_64-simulator/UnityAds.framework/_CodeSignature/CodeSignature: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appdb/Models/AltStoreApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Models/AltStoreApp.swift -------------------------------------------------------------------------------- /appdb/Models/AltStoreRepo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Models/AltStoreRepo.swift -------------------------------------------------------------------------------- /appdb/Models/AltStoreRepoContents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Models/AltStoreRepoContents.swift -------------------------------------------------------------------------------- /appdb/Models/App.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Models/App.swift -------------------------------------------------------------------------------- /appdb/Models/Book.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Models/Book.swift -------------------------------------------------------------------------------- /appdb/Models/CachedIPA.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Models/CachedIPA.swift -------------------------------------------------------------------------------- /appdb/Models/CydiaApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Models/CydiaApp.swift -------------------------------------------------------------------------------- /appdb/Models/DeviceStatusItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Models/DeviceStatusItem.swift -------------------------------------------------------------------------------- /appdb/Models/EnterpriseCertificate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Models/EnterpriseCertificate.swift -------------------------------------------------------------------------------- /appdb/Models/IPACacheStatus.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Models/IPACacheStatus.swift -------------------------------------------------------------------------------- /appdb/Models/IgnoredApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Models/IgnoredApp.swift -------------------------------------------------------------------------------- /appdb/Models/InstallationOptions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Models/InstallationOptions.swift -------------------------------------------------------------------------------- /appdb/Models/Item+Properties.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Models/Item+Properties.swift -------------------------------------------------------------------------------- /appdb/Models/Items.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Models/Items.swift -------------------------------------------------------------------------------- /appdb/Models/Link.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Models/Link.swift -------------------------------------------------------------------------------- /appdb/Models/LinkedDevice.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Models/LinkedDevice.swift -------------------------------------------------------------------------------- /appdb/Models/MyAppstoreApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Models/MyAppstoreApp.swift -------------------------------------------------------------------------------- /appdb/Models/PlusPurchaseOption.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Models/PlusPurchaseOption.swift -------------------------------------------------------------------------------- /appdb/Models/Promotion.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Models/Promotion.swift -------------------------------------------------------------------------------- /appdb/Models/RequestedApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Models/RequestedApp.swift -------------------------------------------------------------------------------- /appdb/Models/ServiceStatus.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Models/ServiceStatus.swift -------------------------------------------------------------------------------- /appdb/Models/SingleNews.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Models/SingleNews.swift -------------------------------------------------------------------------------- /appdb/Models/UpdateableApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Models/UpdateableApp.swift -------------------------------------------------------------------------------- /appdb/Models/WishApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Models/WishApp.swift -------------------------------------------------------------------------------- /appdb/Other/Acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Acknowledgements.plist -------------------------------------------------------------------------------- /appdb/Other/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /appdb/Other/Icons/Aqua.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Icons/Aqua.png -------------------------------------------------------------------------------- /appdb/Other/Icons/Aqua@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Icons/Aqua@2x.png -------------------------------------------------------------------------------- /appdb/Other/Icons/Aqua@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Icons/Aqua@3x.png -------------------------------------------------------------------------------- /appdb/Other/Icons/Black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Icons/Black.png -------------------------------------------------------------------------------- /appdb/Other/Icons/Black@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Icons/Black@2x.png -------------------------------------------------------------------------------- /appdb/Other/Icons/Black@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Icons/Black@3x.png -------------------------------------------------------------------------------- /appdb/Other/Icons/Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Icons/Dark.png -------------------------------------------------------------------------------- /appdb/Other/Icons/Dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Icons/Dark@2x.png -------------------------------------------------------------------------------- /appdb/Other/Icons/Dark@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Icons/Dark@3x.png -------------------------------------------------------------------------------- /appdb/Other/Icons/Green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Icons/Green.png -------------------------------------------------------------------------------- /appdb/Other/Icons/Green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Icons/Green@2x.png -------------------------------------------------------------------------------- /appdb/Other/Icons/Green@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Icons/Green@3x.png -------------------------------------------------------------------------------- /appdb/Other/Icons/Pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Icons/Pink.png -------------------------------------------------------------------------------- /appdb/Other/Icons/Pink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Icons/Pink@2x.png -------------------------------------------------------------------------------- /appdb/Other/Icons/Pink@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Icons/Pink@3x.png -------------------------------------------------------------------------------- /appdb/Other/Icons/Purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Icons/Purple.png -------------------------------------------------------------------------------- /appdb/Other/Icons/Purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Icons/Purple@2x.png -------------------------------------------------------------------------------- /appdb/Other/Icons/Purple@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Icons/Purple@3x.png -------------------------------------------------------------------------------- /appdb/Other/Icons/Red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Icons/Red.png -------------------------------------------------------------------------------- /appdb/Other/Icons/Red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Icons/Red@2x.png -------------------------------------------------------------------------------- /appdb/Other/Icons/Red@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Icons/Red@3x.png -------------------------------------------------------------------------------- /appdb/Other/Icons/Yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Icons/Yellow.png -------------------------------------------------------------------------------- /appdb/Other/Icons/Yellow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Icons/Yellow@2x.png -------------------------------------------------------------------------------- /appdb/Other/Icons/Yellow@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Icons/Yellow@3x.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/AppIcon.appiconset/Icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/AppIcon.appiconset/Icon-40.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/AppIcon.appiconset/Icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/AppIcon.appiconset/Icon-40@2x.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/AppIcon.appiconset/Icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/AppIcon.appiconset/Icon-40@3x.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/AppIcon.appiconset/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/AppIcon.appiconset/Icon-60@2x.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/AppIcon.appiconset/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/AppIcon.appiconset/Icon-60@3x.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/AppIcon.appiconset/Icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/AppIcon.appiconset/Icon-72.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/AppIcon.appiconset/Icon-72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/AppIcon.appiconset/Icon-72@2x.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/AppIcon.appiconset/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/AppIcon.appiconset/Icon-76.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/AppIcon.appiconset/Icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/AppIcon.appiconset/Icon-76@2x.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/AppIcon.appiconset/Icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/AppIcon.appiconset/Icon-83.5@2x.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/AppIcon.appiconset/Icon-Small-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/AppIcon.appiconset/Icon-Small-50.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/AppIcon.appiconset/Icon-Small-50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/AppIcon.appiconset/Icon-Small-50@2x.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/AppIcon.appiconset/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/AppIcon.appiconset/Icon-Small.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/AppIcon.appiconset/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/AppIcon.appiconset/Icon-Small@2x.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/AppIcon.appiconset/Icon-Small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/AppIcon.appiconset/Icon-Small@3x.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/AppIcon.appiconset/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/AppIcon.appiconset/Icon.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/AppIcon.appiconset/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/AppIcon.appiconset/Icon@2x.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/AppIcon.appiconset/NotificationIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/AppIcon.appiconset/NotificationIcon@2x.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/AppIcon.appiconset/NotificationIcon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/AppIcon.appiconset/NotificationIcon@3x.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/AppIcon.appiconset/NotificationIcon~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/AppIcon.appiconset/NotificationIcon~ipad.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/AppIcon.appiconset/NotificationIcon~ipad@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/AppIcon.appiconset/NotificationIcon~ipad@2x.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/AppIcon.appiconset/ios-marketing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/AppIcon.appiconset/ios-marketing.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Banners/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Banners/Contents.json -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Banners/delta_banner.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Banners/delta_banner.imageset/Contents.json -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Banners/delta_banner.imageset/banner4-min.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Banners/delta_banner.imageset/banner4-min.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Banners/delta_banner.imageset/banner4@1x-min.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Banners/delta_banner.imageset/banner4@1x-min.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Banners/delta_banner.imageset/banner4@2x-min.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Banners/delta_banner.imageset/banner4@2x-min.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Banners/main_banner.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Banners/main_banner.imageset/Contents.json -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Banners/main_banner.imageset/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Banners/main_banner.imageset/banner.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Banners/main_banner.imageset/banner@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Banners/main_banner.imageset/banner@1x.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Banners/main_banner.imageset/banner@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Banners/main_banner.imageset/banner@2x.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Banners/tweaked_apps_banner.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Banners/tweaked_apps_banner.imageset/Contents.json -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Banners/tweaked_apps_banner.imageset/appdb_banner-min.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Banners/tweaked_apps_banner.imageset/appdb_banner-min.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Banners/tweaked_apps_banner.imageset/appdb_banner@1x-min.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Banners/tweaked_apps_banner.imageset/appdb_banner@1x-min.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Banners/tweaked_apps_banner.imageset/appdb_banner@2x-min.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Banners/tweaked_apps_banner.imageset/appdb_banner@2x-min.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Banners/unc0ver_banner.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Banners/unc0ver_banner.imageset/Contents.json -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Banners/unc0ver_banner.imageset/banner@1x-min.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Banners/unc0ver_banner.imageset/banner@1x-min.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Banners/unc0ver_banner.imageset/banner@2x-min.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Banners/unc0ver_banner.imageset/banner@2x-min.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Banners/unc0ver_banner.imageset/banner@3x-min.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Banners/unc0ver_banner.imageset/banner@3x-min.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Credits/Am1nCmd.imageset/Am1nCmd-1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Credits/Am1nCmd.imageset/Am1nCmd-1.jpeg -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Credits/Am1nCmd.imageset/Am1nCmd-2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Credits/Am1nCmd.imageset/Am1nCmd-2.jpeg -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Credits/Am1nCmd.imageset/Am1nCmd.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Credits/Am1nCmd.imageset/Am1nCmd.jpeg -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Credits/Am1nCmd.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Credits/Am1nCmd.imageset/Contents.json -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Credits/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Credits/Contents.json -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Credits/DzMoha_31.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Credits/DzMoha_31.imageset/Contents.json -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Credits/DzMoha_31.imageset/photo_2019-10-27 12.46.48-1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Credits/DzMoha_31.imageset/photo_2019-10-27 12.46.48-1.jpeg -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Credits/DzMoha_31.imageset/photo_2019-10-27 12.46.48-2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Credits/DzMoha_31.imageset/photo_2019-10-27 12.46.48-2.jpeg -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Credits/DzMoha_31.imageset/photo_2019-10-27 12.46.48.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Credits/DzMoha_31.imageset/photo_2019-10-27 12.46.48.jpeg -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Credits/EskaseptianTeam.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Credits/EskaseptianTeam.imageset/Contents.json -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Credits/EskaseptianTeam.imageset/photo_2019-10-28 18.24.05-1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Credits/EskaseptianTeam.imageset/photo_2019-10-28 18.24.05-1.jpeg -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Credits/EskaseptianTeam.imageset/photo_2019-10-28 18.24.05-2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Credits/EskaseptianTeam.imageset/photo_2019-10-28 18.24.05-2.jpeg -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Credits/EskaseptianTeam.imageset/photo_2019-10-28 18.24.05.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Credits/EskaseptianTeam.imageset/photo_2019-10-28 18.24.05.jpeg -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Credits/aesign.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Credits/aesign.imageset/Contents.json -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Credits/aesign.imageset/aesign-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Credits/aesign.imageset/aesign-1.jpg -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Credits/aesign.imageset/aesign-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Credits/aesign.imageset/aesign-2.jpg -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Credits/aesign.imageset/aesign-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Credits/aesign.imageset/aesign-3.jpg -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Credits/appdb.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Credits/appdb.imageset/Contents.json -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Credits/appdb.imageset/appdb-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Credits/appdb.imageset/appdb-1.jpg -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Credits/appdb.imageset/appdb-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Credits/appdb.imageset/appdb-2.jpg -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Credits/appdb.imageset/appdb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Credits/appdb.imageset/appdb.jpg -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Credits/bmac.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Credits/bmac.imageset/Contents.json -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Credits/bmac.imageset/bmac-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Credits/bmac.imageset/bmac-1.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Credits/bmac.imageset/bmac-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Credits/bmac.imageset/bmac-2.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Credits/bmac.imageset/bmac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Credits/bmac.imageset/bmac.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Credits/cryllical.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Credits/cryllical.imageset/Contents.json -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Credits/cryllical.imageset/cryllical-1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Credits/cryllical.imageset/cryllical-1.jpeg -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Credits/cryllical.imageset/cryllical-2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Credits/cryllical.imageset/cryllical-2.jpeg -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Credits/cryllical.imageset/cryllical.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Credits/cryllical.imageset/cryllical.jpeg -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Credits/github.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Credits/github.imageset/Contents.json -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Credits/github.imageset/github-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Credits/github.imageset/github-1.jpg -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Credits/github.imageset/github-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Credits/github.imageset/github-2.jpg -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Credits/github.imageset/github.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Credits/github.imageset/github.jpg -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Credits/ned.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Credits/ned.imageset/Contents.json -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Credits/ned.imageset/ned-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Credits/ned.imageset/ned-1.jpg -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Credits/ned.imageset/ned-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Credits/ned.imageset/ned-2.jpg -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Credits/ned.imageset/ned-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Credits/ned.imageset/ned-3.jpg -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Credits/stev3fvcks.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Credits/stev3fvcks.imageset/Contents.json -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Credits/stev3fvcks.imageset/stev3fvcks-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Credits/stev3fvcks.imageset/stev3fvcks-1.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Credits/stev3fvcks.imageset/stev3fvcks-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Credits/stev3fvcks.imageset/stev3fvcks-2.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Credits/stev3fvcks.imageset/stev3fvcks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Credits/stev3fvcks.imageset/stev3fvcks.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Credits/tnt.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Credits/tnt.imageset/Contents.json -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Credits/tnt.imageset/tnt-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Credits/tnt.imageset/tnt-1.jpg -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Credits/tnt.imageset/tnt-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Credits/tnt.imageset/tnt-2.jpg -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Credits/tnt.imageset/tnt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Credits/tnt.imageset/tnt.jpg -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Credits/zond.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Credits/zond.imageset/Contents.json -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Credits/zond.imageset/zond-1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Credits/zond.imageset/zond-1.jpeg -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Credits/zond.imageset/zond-2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Credits/zond.imageset/zond-2.jpeg -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Credits/zond.imageset/zond-3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Credits/zond.imageset/zond-3.jpeg -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Device Link Tutorial/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Device Link Tutorial/Contents.json -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Device Link Tutorial/completed.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Device Link Tutorial/completed.imageset/Contents.json -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Device Link Tutorial/completed.imageset/IntroCompletion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Device Link Tutorial/completed.imageset/IntroCompletion.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Device Link Tutorial/completed.imageset/IntroCompletion@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Device Link Tutorial/completed.imageset/IntroCompletion@2x.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Device Link Tutorial/completed.imageset/IntroCompletion@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Device Link Tutorial/completed.imageset/IntroCompletion@3x.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Device Link Tutorial/error.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Device Link Tutorial/error.imageset/Contents.json -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Device Link Tutorial/error.imageset/aca9e1d412191c1614a3d4bc112dbfba copy 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Device Link Tutorial/error.imageset/aca9e1d412191c1614a3d4bc112dbfba copy 2.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Device Link Tutorial/error.imageset/aca9e1d412191c1614a3d4bc112dbfba copy 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Device Link Tutorial/error.imageset/aca9e1d412191c1614a3d4bc112dbfba copy 3.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Device Link Tutorial/error.imageset/aca9e1d412191c1614a3d4bc112dbfba copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Device Link Tutorial/error.imageset/aca9e1d412191c1614a3d4bc112dbfba copy.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Device Link Tutorial/mdm_installed.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Device Link Tutorial/mdm_installed.imageset/Contents.json -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Device Link Tutorial/mdm_installed.imageset/r-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Device Link Tutorial/mdm_installed.imageset/r-1.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Device Link Tutorial/mdm_installed.imageset/r-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Device Link Tutorial/mdm_installed.imageset/r-2.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Device Link Tutorial/mdm_installed.imageset/r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Device Link Tutorial/mdm_installed.imageset/r.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Icons Preview/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Icons Preview/Contents.json -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Icons Preview/icon-aqua.imageset/Aqua@3x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Icons Preview/icon-aqua.imageset/Aqua@3x-1.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Icons Preview/icon-aqua.imageset/Aqua@3x-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Icons Preview/icon-aqua.imageset/Aqua@3x-2.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Icons Preview/icon-aqua.imageset/Aqua@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Icons Preview/icon-aqua.imageset/Aqua@3x.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Icons Preview/icon-aqua.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Icons Preview/icon-aqua.imageset/Contents.json -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Icons Preview/icon-black.imageset/Black@3x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Icons Preview/icon-black.imageset/Black@3x-1.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Icons Preview/icon-black.imageset/Black@3x-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Icons Preview/icon-black.imageset/Black@3x-2.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Icons Preview/icon-black.imageset/Black@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Icons Preview/icon-black.imageset/Black@3x.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Icons Preview/icon-black.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Icons Preview/icon-black.imageset/Contents.json -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Icons Preview/icon-dark.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Icons Preview/icon-dark.imageset/Contents.json -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Icons Preview/icon-dark.imageset/dark-icon@3x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Icons Preview/icon-dark.imageset/dark-icon@3x-1.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Icons Preview/icon-dark.imageset/dark-icon@3x-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Icons Preview/icon-dark.imageset/dark-icon@3x-2.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Icons Preview/icon-dark.imageset/dark-icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Icons Preview/icon-dark.imageset/dark-icon@3x.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Icons Preview/icon-green.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Icons Preview/icon-green.imageset/Contents.json -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Icons Preview/icon-green.imageset/Green@3x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Icons Preview/icon-green.imageset/Green@3x-1.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Icons Preview/icon-green.imageset/Green@3x-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Icons Preview/icon-green.imageset/Green@3x-2.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Icons Preview/icon-green.imageset/Green@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Icons Preview/icon-green.imageset/Green@3x.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Icons Preview/icon-pink.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Icons Preview/icon-pink.imageset/Contents.json -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Icons Preview/icon-pink.imageset/Pink@3x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Icons Preview/icon-pink.imageset/Pink@3x-1.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Icons Preview/icon-pink.imageset/Pink@3x-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Icons Preview/icon-pink.imageset/Pink@3x-2.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Icons Preview/icon-pink.imageset/Pink@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Icons Preview/icon-pink.imageset/Pink@3x.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Icons Preview/icon-purple.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Icons Preview/icon-purple.imageset/Contents.json -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Icons Preview/icon-purple.imageset/Purple@3x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Icons Preview/icon-purple.imageset/Purple@3x-1.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Icons Preview/icon-purple.imageset/Purple@3x-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Icons Preview/icon-purple.imageset/Purple@3x-2.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Icons Preview/icon-purple.imageset/Purple@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Icons Preview/icon-purple.imageset/Purple@3x.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Icons Preview/icon-red.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Icons Preview/icon-red.imageset/Contents.json -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Icons Preview/icon-red.imageset/Red@3x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Icons Preview/icon-red.imageset/Red@3x-1.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Icons Preview/icon-red.imageset/Red@3x-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Icons Preview/icon-red.imageset/Red@3x-2.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Icons Preview/icon-red.imageset/Red@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Icons Preview/icon-red.imageset/Red@3x.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Icons Preview/icon-yellow.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Icons Preview/icon-yellow.imageset/Contents.json -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Icons Preview/icon-yellow.imageset/Yellow@3x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Icons Preview/icon-yellow.imageset/Yellow@3x-1.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Icons Preview/icon-yellow.imageset/Yellow@3x-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Icons Preview/icon-yellow.imageset/Yellow@3x-2.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Icons Preview/icon-yellow.imageset/Yellow@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Icons Preview/icon-yellow.imageset/Yellow@3x.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Icons Preview/icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Icons Preview/icon.imageset/Contents.json -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Icons Preview/icon.imageset/icon@3x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Icons Preview/icon.imageset/icon@3x-1.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Icons Preview/icon.imageset/icon@3x-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Icons Preview/icon.imageset/icon@3x-2.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Icons Preview/icon.imageset/icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Icons Preview/icon.imageset/icon@3x.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Info.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Info.imageset/Contents.json -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Info.imageset/Info 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Info.imageset/Info 1.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Info.imageset/Info 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Info.imageset/Info 2.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Info.imageset/Info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Info.imageset/Info.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Placeholders/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Placeholders/Contents.json -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Placeholders/placeholderBanner.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Placeholders/placeholderBanner.imageset/Contents.json -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Placeholders/placeholderBanner.imageset/Rectangle@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Placeholders/placeholderBanner.imageset/Rectangle@1x.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Placeholders/placeholderBanner.imageset/Rectangle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Placeholders/placeholderBanner.imageset/Rectangle@2x.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Placeholders/placeholderBanner.imageset/Rectangle@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Placeholders/placeholderBanner.imageset/Rectangle@3x.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Placeholders/placeholderCover.imageset/Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Placeholders/placeholderCover.imageset/Background.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Placeholders/placeholderCover.imageset/Background@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Placeholders/placeholderCover.imageset/Background@2x.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Placeholders/placeholderCover.imageset/Background@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Placeholders/placeholderCover.imageset/Background@3x.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Placeholders/placeholderCover.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Placeholders/placeholderCover.imageset/Contents.json -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Placeholders/placeholderIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Placeholders/placeholderIcon.imageset/Contents.json -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Placeholders/placeholderIcon.imageset/Untitled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Placeholders/placeholderIcon.imageset/Untitled.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Placeholders/placeholderIcon.imageset/Untitled@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Placeholders/placeholderIcon.imageset/Untitled@2x.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Placeholders/placeholderIcon.imageset/Untitled@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Placeholders/placeholderIcon.imageset/Untitled@3x.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Tab Bar Icons/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Tab Bar Icons/Contents.json -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Tab Bar Icons/downloads.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Tab Bar Icons/downloads.imageset/Contents.json -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Tab Bar Icons/downloads.imageset/downloads@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Tab Bar Icons/downloads.imageset/downloads@1x.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Tab Bar Icons/downloads.imageset/downloads@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Tab Bar Icons/downloads.imageset/downloads@2x.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Tab Bar Icons/downloads.imageset/downloads@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Tab Bar Icons/downloads.imageset/downloads@3x.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Tab Bar Icons/featured.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Tab Bar Icons/featured.imageset/Contents.json -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Tab Bar Icons/featured.imageset/featured@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Tab Bar Icons/featured.imageset/featured@1x.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Tab Bar Icons/featured.imageset/featured@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Tab Bar Icons/featured.imageset/featured@2x.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Tab Bar Icons/featured.imageset/featured@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Tab Bar Icons/featured.imageset/featured@3x.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Tab Bar Icons/search.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Tab Bar Icons/search.imageset/Contents.json -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Tab Bar Icons/search.imageset/search@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Tab Bar Icons/search.imageset/search@1x.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Tab Bar Icons/search.imageset/search@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Tab Bar Icons/search.imageset/search@2x.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Tab Bar Icons/search.imageset/search@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Tab Bar Icons/search.imageset/search@3x.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Tab Bar Icons/settings.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Tab Bar Icons/settings.imageset/Contents.json -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Tab Bar Icons/settings.imageset/settings@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Tab Bar Icons/settings.imageset/settings@1x.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Tab Bar Icons/settings.imageset/settings@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Tab Bar Icons/settings.imageset/settings@2x.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Tab Bar Icons/settings.imageset/settings@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Tab Bar Icons/settings.imageset/settings@3x.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Tab Bar Icons/updates.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Tab Bar Icons/updates.imageset/Contents.json -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Tab Bar Icons/updates.imageset/updates@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Tab Bar Icons/updates.imageset/updates@1x.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Tab Bar Icons/updates.imageset/updates@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Tab Bar Icons/updates.imageset/updates@2x.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/Tab Bar Icons/updates.imageset/updates@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/Tab Bar Icons/updates.imageset/updates@3x.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/blank_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/blank_icon.imageset/Contents.json -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/blank_icon.imageset/Empty_app_icon_512 copy 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/blank_icon.imageset/Empty_app_icon_512 copy 2.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/blank_icon.imageset/Empty_app_icon_512 copy 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/blank_icon.imageset/Empty_app_icon_512 copy 3.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/blank_icon.imageset/Empty_app_icon_512 copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/blank_icon.imageset/Empty_app_icon_512 copy.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/bolt_dark.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/bolt_dark.imageset/Contents.json -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/bolt_dark.imageset/ios7-bolt copy 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/bolt_dark.imageset/ios7-bolt copy 2.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/bolt_dark.imageset/ios7-bolt copy 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/bolt_dark.imageset/ios7-bolt copy 3.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/bolt_dark.imageset/ios7-bolt copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/bolt_dark.imageset/ios7-bolt copy.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/bolt_light.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/bolt_light.imageset/Contents.json -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/bolt_light.imageset/ios7-bolt-outline copy 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/bolt_light.imageset/ios7-bolt-outline copy 2.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/bolt_light.imageset/ios7-bolt-outline copy 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/bolt_light.imageset/ios7-bolt-outline copy 3.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/bolt_light.imageset/ios7-bolt-outline copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/bolt_light.imageset/ios7-bolt-outline copy.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/card-icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/card-icon.imageset/Contents.json -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/card-icon.imageset/card-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/card-icon.imageset/card-icon.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/filter.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/filter.imageset/Contents.json -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/filter.imageset/icons8-filter-100-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/filter.imageset/icons8-filter-100-2.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/filter.imageset/icons8-filter-100-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/filter.imageset/icons8-filter-100-3.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/filter.imageset/icons8-filter-100-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/filter.imageset/icons8-filter-100-4.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/icon_safari.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/icon_safari.imageset/Contents.json -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/icon_safari.imageset/icon_safari.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/icon_safari.imageset/icon_safari.pdf -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/more.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/more.imageset/Contents.json -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/more.imageset/Menu 2-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/more.imageset/Menu 2-96.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/more.imageset/Menu 2-97.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/more.imageset/Menu 2-97.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/more.imageset/Menu 2-98.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/more.imageset/Menu 2-98.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/offline.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/offline.imageset/Contents.json -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/offline.imageset/Rectangle 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/offline.imageset/Rectangle 1.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/offline.imageset/Rectangle 1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/offline.imageset/Rectangle 1@2x.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/offline.imageset/Rectangle 1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/offline.imageset/Rectangle 1@3x.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/online.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/online.imageset/Contents.json -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/online.imageset/Rectangle 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/online.imageset/Rectangle 1.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/online.imageset/Rectangle 1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/online.imageset/Rectangle 1@2x.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/online.imageset/Rectangle 1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/online.imageset/Rectangle 1@3x.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/question.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/question.imageset/Contents.json -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/question.imageset/icons8-help-100 copy 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/question.imageset/icons8-help-100 copy 2.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/question.imageset/icons8-help-100 copy 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/question.imageset/icons8-help-100 copy 3.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/question.imageset/icons8-help-100 copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/question.imageset/icons8-help-100 copy.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/remove.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/remove.imageset/Contents.json -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/remove.imageset/Delete-500 copy 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/remove.imageset/Delete-500 copy 2.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/remove.imageset/Delete-500 copy 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/remove.imageset/Delete-500 copy 3.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/remove.imageset/Delete-500 copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/remove.imageset/Delete-500 copy.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/rightArrow.imageset/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/rightArrow.imageset/1.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/rightArrow.imageset/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/rightArrow.imageset/2.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/rightArrow.imageset/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/rightArrow.imageset/3.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/rightArrow.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/rightArrow.imageset/Contents.json -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/trash.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/trash.imageset/Contents.json -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/trash.imageset/Navigation_Trash_2x@3x 14.55.52.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/trash.imageset/Navigation_Trash_2x@3x 14.55.52.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/trash.imageset/Navigation_Trash_2x@3x 14.55.52@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/trash.imageset/Navigation_Trash_2x@3x 14.55.52@2x.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/trash.imageset/Navigation_Trash_2x@3x 14.55.52@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/trash.imageset/Navigation_Trash_2x@3x 14.55.52@3x.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/wishes.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/wishes.imageset/Contents.json -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/wishes.imageset/Untitled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/wishes.imageset/Untitled.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/wishes.imageset/Untitled@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/wishes.imageset/Untitled@2x.png -------------------------------------------------------------------------------- /appdb/Other/Images.xcassets/wishes.imageset/Untitled@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Images.xcassets/wishes.imageset/Untitled@3x.png -------------------------------------------------------------------------------- /appdb/Other/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/Info.plist -------------------------------------------------------------------------------- /appdb/Other/appdb.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Other/appdb.entitlements -------------------------------------------------------------------------------- /appdb/Resources/AlamofireObjectMapper/AlamofireObjectMapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/AlamofireObjectMapper/AlamofireObjectMapper.swift -------------------------------------------------------------------------------- /appdb/Resources/Atributika/AttributedLabel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/Atributika/AttributedLabel.swift -------------------------------------------------------------------------------- /appdb/Resources/Atributika/AttributedText.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/Atributika/AttributedText.swift -------------------------------------------------------------------------------- /appdb/Resources/Atributika/NSAttributedString+Utils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/Atributika/NSAttributedString+Utils.swift -------------------------------------------------------------------------------- /appdb/Resources/Atributika/NSScanner+Swift.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/Atributika/NSScanner+Swift.swift -------------------------------------------------------------------------------- /appdb/Resources/Atributika/String+Detection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/Atributika/String+Detection.swift -------------------------------------------------------------------------------- /appdb/Resources/Atributika/Style.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/Atributika/Style.swift -------------------------------------------------------------------------------- /appdb/Resources/Cartography/Align.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/Cartography/Align.swift -------------------------------------------------------------------------------- /appdb/Resources/Cartography/AutoresizingMaskLayoutProxy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/Cartography/AutoresizingMaskLayoutProxy.swift -------------------------------------------------------------------------------- /appdb/Resources/Cartography/CartographyExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/Cartography/CartographyExtensions.swift -------------------------------------------------------------------------------- /appdb/Resources/Cartography/Coefficients.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/Cartography/Coefficients.swift -------------------------------------------------------------------------------- /appdb/Resources/Cartography/Compound.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/Cartography/Compound.swift -------------------------------------------------------------------------------- /appdb/Resources/Cartography/Constrain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/Cartography/Constrain.swift -------------------------------------------------------------------------------- /appdb/Resources/Cartography/Constraint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/Cartography/Constraint.swift -------------------------------------------------------------------------------- /appdb/Resources/Cartography/ConstraintGroup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/Cartography/ConstraintGroup.swift -------------------------------------------------------------------------------- /appdb/Resources/Cartography/Context.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/Cartography/Context.swift -------------------------------------------------------------------------------- /appdb/Resources/Cartography/Dimension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/Cartography/Dimension.swift -------------------------------------------------------------------------------- /appdb/Resources/Cartography/Distribute.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/Cartography/Distribute.swift -------------------------------------------------------------------------------- /appdb/Resources/Cartography/Edge.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/Cartography/Edge.swift -------------------------------------------------------------------------------- /appdb/Resources/Cartography/Edges.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/Cartography/Edges.swift -------------------------------------------------------------------------------- /appdb/Resources/Cartography/Expression.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/Cartography/Expression.swift -------------------------------------------------------------------------------- /appdb/Resources/Cartography/LayoutGuide.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/Cartography/LayoutGuide.swift -------------------------------------------------------------------------------- /appdb/Resources/Cartography/LayoutGuideProxy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/Cartography/LayoutGuideProxy.swift -------------------------------------------------------------------------------- /appdb/Resources/Cartography/LayoutItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/Cartography/LayoutItem.swift -------------------------------------------------------------------------------- /appdb/Resources/Cartography/LayoutProxy+TypeErasure.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/Cartography/LayoutProxy+TypeErasure.swift -------------------------------------------------------------------------------- /appdb/Resources/Cartography/LayoutProxy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/Cartography/LayoutProxy.swift -------------------------------------------------------------------------------- /appdb/Resources/Cartography/LayoutSupport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/Cartography/LayoutSupport.swift -------------------------------------------------------------------------------- /appdb/Resources/Cartography/LayoutSupportProxy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/Cartography/LayoutSupportProxy.swift -------------------------------------------------------------------------------- /appdb/Resources/Cartography/Point.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/Cartography/Point.swift -------------------------------------------------------------------------------- /appdb/Resources/Cartography/Priority.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/Cartography/Priority.swift -------------------------------------------------------------------------------- /appdb/Resources/Cartography/Property.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/Cartography/Property.swift -------------------------------------------------------------------------------- /appdb/Resources/Cartography/Size.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/Cartography/Size.swift -------------------------------------------------------------------------------- /appdb/Resources/Cartography/View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/Cartography/View.swift -------------------------------------------------------------------------------- /appdb/Resources/Cartography/ViewProxy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/Cartography/ViewProxy.swift -------------------------------------------------------------------------------- /appdb/Resources/DynamicFontSizeHelper/DynamicFontSizeHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/DynamicFontSizeHelper/DynamicFontSizeHelper.swift -------------------------------------------------------------------------------- /appdb/Resources/Ferrara/Diff.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/Ferrara/Diff.swift -------------------------------------------------------------------------------- /appdb/Resources/Ferrara/Identifiable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/Ferrara/Identifiable.swift -------------------------------------------------------------------------------- /appdb/Resources/Ferrara/Match.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/Ferrara/Match.swift -------------------------------------------------------------------------------- /appdb/Resources/ILTranslucentView/ILTranslucentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/ILTranslucentView/ILTranslucentView.swift -------------------------------------------------------------------------------- /appdb/Resources/LNZSnapToCenterCollectionViewLayout/LNZInfiniteCollectionViewLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/LNZSnapToCenterCollectionViewLayout/LNZInfiniteCollectionViewLayout.swift -------------------------------------------------------------------------------- /appdb/Resources/LNZSnapToCenterCollectionViewLayout/LNZSnapToCenterCollectionViewLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/LNZSnapToCenterCollectionViewLayout/LNZSnapToCenterCollectionViewLayout.swift -------------------------------------------------------------------------------- /appdb/Resources/SHA1/SHA1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/SHA1/SHA1.swift -------------------------------------------------------------------------------- /appdb/Resources/Static/ButtonCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/Static/ButtonCell.swift -------------------------------------------------------------------------------- /appdb/Resources/Static/Cell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/Static/Cell.swift -------------------------------------------------------------------------------- /appdb/Resources/Static/DataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/Static/DataSource.swift -------------------------------------------------------------------------------- /appdb/Resources/Static/StaticRow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/Static/StaticRow.swift -------------------------------------------------------------------------------- /appdb/Resources/Static/StaticSection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/Static/StaticSection.swift -------------------------------------------------------------------------------- /appdb/Resources/Static/SubtitleCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/Static/SubtitleCell.swift -------------------------------------------------------------------------------- /appdb/Resources/Static/SwitchAccessory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/Static/SwitchAccessory.swift -------------------------------------------------------------------------------- /appdb/Resources/Static/TableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/Static/TableViewController.swift -------------------------------------------------------------------------------- /appdb/Resources/Static/Value1Cell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/Static/Value1Cell.swift -------------------------------------------------------------------------------- /appdb/Resources/Static/Value2Cell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/Static/Value2Cell.swift -------------------------------------------------------------------------------- /appdb/Resources/Storage/Defaults/Defaults.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/Storage/Defaults/Defaults.swift -------------------------------------------------------------------------------- /appdb/Resources/Storage/Defaults/Observation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/Storage/Defaults/Observation.swift -------------------------------------------------------------------------------- /appdb/Resources/Storage/Keychain/KeychainItemAccessibility.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/Storage/Keychain/KeychainItemAccessibility.swift -------------------------------------------------------------------------------- /appdb/Resources/Storage/Keychain/KeychainWrapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/Storage/Keychain/KeychainWrapper.swift -------------------------------------------------------------------------------- /appdb/Resources/SwiftPullToRefresh/IndicatorView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/SwiftPullToRefresh/IndicatorView.swift -------------------------------------------------------------------------------- /appdb/Resources/SwiftPullToRefresh/RefreshView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/SwiftPullToRefresh/RefreshView.swift -------------------------------------------------------------------------------- /appdb/Resources/SwiftPullToRefresh/UIScrollView+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/SwiftPullToRefresh/UIScrollView+Extensions.swift -------------------------------------------------------------------------------- /appdb/Resources/SwiftTheme/NSAttributedString+Merge.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/SwiftTheme/NSAttributedString+Merge.swift -------------------------------------------------------------------------------- /appdb/Resources/SwiftTheme/NSObject+Theme.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/SwiftTheme/NSObject+Theme.swift -------------------------------------------------------------------------------- /appdb/Resources/SwiftTheme/ThemeActivityIndicatorViewStylePicker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/SwiftTheme/ThemeActivityIndicatorViewStylePicker.swift -------------------------------------------------------------------------------- /appdb/Resources/SwiftTheme/ThemeBarStylePicker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/SwiftTheme/ThemeBarStylePicker.swift -------------------------------------------------------------------------------- /appdb/Resources/SwiftTheme/ThemeCGColorPicker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/SwiftTheme/ThemeCGColorPicker.swift -------------------------------------------------------------------------------- /appdb/Resources/SwiftTheme/ThemeCGFloatPicker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/SwiftTheme/ThemeCGFloatPicker.swift -------------------------------------------------------------------------------- /appdb/Resources/SwiftTheme/ThemeColorPicker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/SwiftTheme/ThemeColorPicker.swift -------------------------------------------------------------------------------- /appdb/Resources/SwiftTheme/ThemeDictionaryPicker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/SwiftTheme/ThemeDictionaryPicker.swift -------------------------------------------------------------------------------- /appdb/Resources/SwiftTheme/ThemeFontPicker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/SwiftTheme/ThemeFontPicker.swift -------------------------------------------------------------------------------- /appdb/Resources/SwiftTheme/ThemeImagePicker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/SwiftTheme/ThemeImagePicker.swift -------------------------------------------------------------------------------- /appdb/Resources/SwiftTheme/ThemeKeyboardAppearancePicker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/SwiftTheme/ThemeKeyboardAppearancePicker.swift -------------------------------------------------------------------------------- /appdb/Resources/SwiftTheme/ThemeManager+Index.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/SwiftTheme/ThemeManager+Index.swift -------------------------------------------------------------------------------- /appdb/Resources/SwiftTheme/ThemeManager+OC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/SwiftTheme/ThemeManager+OC.swift -------------------------------------------------------------------------------- /appdb/Resources/SwiftTheme/ThemeManager+Plist.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/SwiftTheme/ThemeManager+Plist.swift -------------------------------------------------------------------------------- /appdb/Resources/SwiftTheme/ThemeManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/SwiftTheme/ThemeManager.swift -------------------------------------------------------------------------------- /appdb/Resources/SwiftTheme/ThemePicker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/SwiftTheme/ThemePicker.swift -------------------------------------------------------------------------------- /appdb/Resources/SwiftTheme/ThemeScrollViewIndicatorStylePicker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/SwiftTheme/ThemeScrollViewIndicatorStylePicker.swift -------------------------------------------------------------------------------- /appdb/Resources/SwiftTheme/ThemeStatePicker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/SwiftTheme/ThemeStatePicker.swift -------------------------------------------------------------------------------- /appdb/Resources/SwiftTheme/ThemeStatusBarStylePicker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/SwiftTheme/ThemeStatusBarStylePicker.swift -------------------------------------------------------------------------------- /appdb/Resources/SwiftTheme/ThemeStringAttributesPicker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/SwiftTheme/ThemeStringAttributesPicker.swift -------------------------------------------------------------------------------- /appdb/Resources/SwiftTheme/ThemeVisualEffectPicker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/SwiftTheme/ThemeVisualEffectPicker.swift -------------------------------------------------------------------------------- /appdb/Resources/SwiftTheme/UIColorExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/SwiftTheme/UIColorExtension.swift -------------------------------------------------------------------------------- /appdb/Resources/SwiftTheme/UIKit+Theme.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/SwiftTheme/UIKit+Theme.swift -------------------------------------------------------------------------------- /appdb/Resources/SwiftTheme/UILabel+TextAttributes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/SwiftTheme/UILabel+TextAttributes.swift -------------------------------------------------------------------------------- /appdb/Resources/SwiftTheme/UIRefreshControl+TitleAttributes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/SwiftTheme/UIRefreshControl+TitleAttributes.swift -------------------------------------------------------------------------------- /appdb/Resources/SwiftTheme/UITextField+PlaceholderAttributes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/SwiftTheme/UITextField+PlaceholderAttributes.swift -------------------------------------------------------------------------------- /appdb/Resources/TagView/TagButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/TagView/TagButton.swift -------------------------------------------------------------------------------- /appdb/Resources/TagView/TagListView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/TagView/TagListView.swift -------------------------------------------------------------------------------- /appdb/Resources/UIDeviceExtension/UIDeviceExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/UIDeviceExtension/UIDeviceExtension.swift -------------------------------------------------------------------------------- /appdb/Resources/WaterfallLayout/ETCollectionViewWaterFallLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/WaterfallLayout/ETCollectionViewWaterFallLayout.swift -------------------------------------------------------------------------------- /appdb/Resources/• AdaptiveUIAlertController/AdaptiveUIAlertController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/• AdaptiveUIAlertController/AdaptiveUIAlertController.swift -------------------------------------------------------------------------------- /appdb/Resources/• AdditionalInstallOptionsView/AdditionalInstallOptionsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/• AdditionalInstallOptionsView/AdditionalInstallOptionsViewController.swift -------------------------------------------------------------------------------- /appdb/Resources/• AdditionalInstallOptionsView/InstallOptionsDylibSelectViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/• AdditionalInstallOptionsView/InstallOptionsDylibSelectViewController.swift -------------------------------------------------------------------------------- /appdb/Resources/• AskBundleBeforeUploadView/AskBundleBeforeUploadViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/• AskBundleBeforeUploadView/AskBundleBeforeUploadViewController.swift -------------------------------------------------------------------------------- /appdb/Resources/• BackgroundTaskUtil/BackgroundTaskUtil.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/• BackgroundTaskUtil/BackgroundTaskUtil.swift -------------------------------------------------------------------------------- /appdb/Resources/• ButtonFactory/ButtonFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/• ButtonFactory/ButtonFactory.swift -------------------------------------------------------------------------------- /appdb/Resources/• ButtonFactory/RoundedButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/• ButtonFactory/RoundedButton.swift -------------------------------------------------------------------------------- /appdb/Resources/• DimmableView/DimmableView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/• DimmableView/DimmableView.swift -------------------------------------------------------------------------------- /appdb/Resources/• Dismissable Modal Nav Controller/DismissableModalNavController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/• Dismissable Modal Nav Controller/DismissableModalNavController.swift -------------------------------------------------------------------------------- /appdb/Resources/• ElasticLabel/ElasticLabel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/• ElasticLabel/ElasticLabel.swift -------------------------------------------------------------------------------- /appdb/Resources/• ElasticLabel/String+Truncation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/• ElasticLabel/String+Truncation.swift -------------------------------------------------------------------------------- /appdb/Resources/• LineSpacingLabel/UILabel+LineSpacing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/• LineSpacingLabel/UILabel+LineSpacing.swift -------------------------------------------------------------------------------- /appdb/Resources/• LoadingTableView/LoadingCollectionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/• LoadingTableView/LoadingCollectionView.swift -------------------------------------------------------------------------------- /appdb/Resources/• LoadingTableView/LoadingTableView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/• LoadingTableView/LoadingTableView.swift -------------------------------------------------------------------------------- /appdb/Resources/• LocalIPAUtils/LocalIPADownloadUtil.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/• LocalIPAUtils/LocalIPADownloadUtil.swift -------------------------------------------------------------------------------- /appdb/Resources/• LocalIPAUtils/LocalIPAUploadUtil.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/• LocalIPAUtils/LocalIPAUploadUtil.swift -------------------------------------------------------------------------------- /appdb/Resources/• MessagesFactory/MessagesFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/• MessagesFactory/MessagesFactory.swift -------------------------------------------------------------------------------- /appdb/Resources/• PaddingLabel/PaddingLabel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/• PaddingLabel/PaddingLabel.swift -------------------------------------------------------------------------------- /appdb/Resources/• SafariActivity/SafariActivity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/• SafariActivity/SafariActivity.swift -------------------------------------------------------------------------------- /appdb/Resources/• SnappableFlowLayout/SnappableFlowLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Resources/• SnappableFlowLayout/SnappableFlowLayout.swift -------------------------------------------------------------------------------- /appdb/Startup/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Startup/AppDelegate.swift -------------------------------------------------------------------------------- /appdb/Startup/BadgeManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Startup/BadgeManager.swift -------------------------------------------------------------------------------- /appdb/Startup/Colors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Startup/Colors.swift -------------------------------------------------------------------------------- /appdb/Startup/Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Startup/Extensions.swift -------------------------------------------------------------------------------- /appdb/Startup/Global.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Startup/Global.swift -------------------------------------------------------------------------------- /appdb/Startup/KnownLandscapeScreenshots.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Startup/KnownLandscapeScreenshots.swift -------------------------------------------------------------------------------- /appdb/Startup/Preferences.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Startup/Preferences.swift -------------------------------------------------------------------------------- /appdb/Startup/TabBarController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Startup/TabBarController.swift -------------------------------------------------------------------------------- /appdb/Startup/Themes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Startup/Themes.swift -------------------------------------------------------------------------------- /appdb/Tabs/Downloads/Downloading/AdBlocker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Downloads/Downloading/AdBlocker.swift -------------------------------------------------------------------------------- /appdb/Tabs/Downloads/Downloading/Cells/DownloadingCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Downloads/Downloading/Cells/DownloadingCell.swift -------------------------------------------------------------------------------- /appdb/Tabs/Downloads/Downloading/Downloading.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Downloads/Downloading/Downloading.swift -------------------------------------------------------------------------------- /appdb/Tabs/Downloads/Downloading/IPAWebViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Downloads/Downloading/IPAWebViewController.swift -------------------------------------------------------------------------------- /appdb/Tabs/Downloads/Downloading/ObserveDownloadingApps.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Downloads/Downloading/ObserveDownloadingApps.swift -------------------------------------------------------------------------------- /appdb/Tabs/Downloads/Downloads.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Downloads/Downloads.swift -------------------------------------------------------------------------------- /appdb/Tabs/Downloads/Library/Cells/LibrarySectionFooterView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Downloads/Library/Cells/LibrarySectionFooterView.swift -------------------------------------------------------------------------------- /appdb/Tabs/Downloads/Library/Cells/LibrarySectionHeaderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Downloads/Library/Cells/LibrarySectionHeaderView.swift -------------------------------------------------------------------------------- /appdb/Tabs/Downloads/Library/Cells/LocalIPACell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Downloads/Library/Cells/LocalIPACell.swift -------------------------------------------------------------------------------- /appdb/Tabs/Downloads/Library/Cells/MyAppstoreCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Downloads/Library/Cells/MyAppstoreCell.swift -------------------------------------------------------------------------------- /appdb/Tabs/Downloads/Library/IPAFileManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Downloads/Library/IPAFileManager.swift -------------------------------------------------------------------------------- /appdb/Tabs/Downloads/Library/Library+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Downloads/Library/Library+Extension.swift -------------------------------------------------------------------------------- /appdb/Tabs/Downloads/Library/Library.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Downloads/Library/Library.swift -------------------------------------------------------------------------------- /appdb/Tabs/Downloads/Queued Apps/Cells/QueuedDownloadsCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Downloads/Queued Apps/Cells/QueuedDownloadsCell.swift -------------------------------------------------------------------------------- /appdb/Tabs/Downloads/Queued Apps/ObserveQueuedApps.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Downloads/Queued Apps/ObserveQueuedApps.swift -------------------------------------------------------------------------------- /appdb/Tabs/Downloads/Queued Apps/QueuedApps.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Downloads/Queued Apps/QueuedApps.swift -------------------------------------------------------------------------------- /appdb/Tabs/Featured/Categories/Categories.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Featured/Categories/Categories.swift -------------------------------------------------------------------------------- /appdb/Tabs/Featured/Categories/CategoryCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Featured/Categories/CategoryCell.swift -------------------------------------------------------------------------------- /appdb/Tabs/Featured/Details/Cells/Details/Changelog/Details+Changelog.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Featured/Details/Cells/Details/Changelog/Details+Changelog.swift -------------------------------------------------------------------------------- /appdb/Tabs/Featured/Details/Cells/Details/Description/Details+Description.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Featured/Details/Cells/Details/Description/Details+Description.swift -------------------------------------------------------------------------------- /appdb/Tabs/Featured/Details/Cells/Details/Download Stats/Details+Download Stats.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Featured/Details/Cells/Details/Download Stats/Details+Download Stats.swift -------------------------------------------------------------------------------- /appdb/Tabs/Featured/Details/Cells/Details/ExternalLink/Details+ExternalLink.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Featured/Details/Cells/Details/ExternalLink/Details+ExternalLink.swift -------------------------------------------------------------------------------- /appdb/Tabs/Featured/Details/Cells/Details/Information/Details+Information.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Featured/Details/Cells/Details/Information/Details+Information.swift -------------------------------------------------------------------------------- /appdb/Tabs/Featured/Details/Cells/Details/Publisher/Details+Publisher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Featured/Details/Cells/Details/Publisher/Details+Publisher.swift -------------------------------------------------------------------------------- /appdb/Tabs/Featured/Details/Cells/Details/Related/Details+Related.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Featured/Details/Cells/Details/Related/Details+Related.swift -------------------------------------------------------------------------------- /appdb/Tabs/Featured/Details/Cells/Details/Screenshots/Full Screenshots/Details+FullScreenshots.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Featured/Details/Cells/Details/Screenshots/Full Screenshots/Details+FullScreenshots.swift -------------------------------------------------------------------------------- /appdb/Tabs/Featured/Details/Cells/Details/Screenshots/Full Screenshots/Details+FullScreenshotsCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Featured/Details/Cells/Details/Screenshots/Full Screenshots/Details+FullScreenshotsCell.swift -------------------------------------------------------------------------------- /appdb/Tabs/Featured/Details/Cells/Details/Screenshots/Screenshots/Details+Screenshots.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Featured/Details/Cells/Details/Screenshots/Screenshots/Details+Screenshots.swift -------------------------------------------------------------------------------- /appdb/Tabs/Featured/Details/Cells/Details/Screenshots/Screenshots/Details+ScreenshotsCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Featured/Details/Cells/Details/Screenshots/Screenshots/Details+ScreenshotsCell.swift -------------------------------------------------------------------------------- /appdb/Tabs/Featured/Details/Cells/Details/Tweaked Notice/Details+TweakedNotice.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Featured/Details/Cells/Details/Tweaked Notice/Details+TweakedNotice.swift -------------------------------------------------------------------------------- /appdb/Tabs/Featured/Details/Cells/Download/Details+DownloadCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Featured/Details/Cells/Download/Details+DownloadCell.swift -------------------------------------------------------------------------------- /appdb/Tabs/Featured/Details/Cells/Download/Details+DownloadEmptyCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Featured/Details/Cells/Download/Details+DownloadEmptyCell.swift -------------------------------------------------------------------------------- /appdb/Tabs/Featured/Details/Cells/Download/Details+VersionHeader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Featured/Details/Cells/Download/Details+VersionHeader.swift -------------------------------------------------------------------------------- /appdb/Tabs/Featured/Details/Cells/Header/Details+Header.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Featured/Details/Cells/Header/Details+Header.swift -------------------------------------------------------------------------------- /appdb/Tabs/Featured/Details/Cells/Header/Details+SegmentControl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Featured/Details/Cells/Header/Details+SegmentControl.swift -------------------------------------------------------------------------------- /appdb/Tabs/Featured/Details/Cells/Reviews/Details+Review.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Featured/Details/Cells/Reviews/Details+Review.swift -------------------------------------------------------------------------------- /appdb/Tabs/Featured/Details/Details+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Featured/Details/Details+Extension.swift -------------------------------------------------------------------------------- /appdb/Tabs/Featured/Details/Details.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Featured/Details/Details.swift -------------------------------------------------------------------------------- /appdb/Tabs/Featured/Featured/Banner/Banner.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Featured/Featured/Banner/Banner.swift -------------------------------------------------------------------------------- /appdb/Tabs/Featured/Featured/Banner/BannerImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Featured/Featured/Banner/BannerImage.swift -------------------------------------------------------------------------------- /appdb/Tabs/Featured/Featured/Cells/CollectionView Cells/FeaturedApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Featured/Featured/Cells/CollectionView Cells/FeaturedApp.swift -------------------------------------------------------------------------------- /appdb/Tabs/Featured/Featured/Cells/CollectionView Cells/FeaturedBook.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Featured/Featured/Cells/CollectionView Cells/FeaturedBook.swift -------------------------------------------------------------------------------- /appdb/Tabs/Featured/Featured/Cells/Copyright.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Featured/Featured/Cells/Copyright.swift -------------------------------------------------------------------------------- /appdb/Tabs/Featured/Featured/Cells/Dummy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Featured/Featured/Cells/Dummy.swift -------------------------------------------------------------------------------- /appdb/Tabs/Featured/Featured/Cells/ItemCollection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Featured/Featured/Cells/ItemCollection.swift -------------------------------------------------------------------------------- /appdb/Tabs/Featured/Featured/Featured+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Featured/Featured/Featured+Extension.swift -------------------------------------------------------------------------------- /appdb/Tabs/Featured/Featured/Featured.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Featured/Featured/Featured.swift -------------------------------------------------------------------------------- /appdb/Tabs/Featured/See All/SeeAll.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Featured/See All/SeeAll.swift -------------------------------------------------------------------------------- /appdb/Tabs/Featured/See All/SeeAllCell+WithStars.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Featured/See All/SeeAllCell+WithStars.swift -------------------------------------------------------------------------------- /appdb/Tabs/Featured/See All/SeeAllCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Featured/See All/SeeAllCell.swift -------------------------------------------------------------------------------- /appdb/Tabs/Featured/Update Prompt/AppUpdateController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Featured/Update Prompt/AppUpdateController.swift -------------------------------------------------------------------------------- /appdb/Tabs/Featured/Update Prompt/AppUpdateHeader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Featured/Update Prompt/AppUpdateHeader.swift -------------------------------------------------------------------------------- /appdb/Tabs/Featured/Wishes/Cells/WishAppCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Featured/Wishes/Cells/WishAppCell.swift -------------------------------------------------------------------------------- /appdb/Tabs/Featured/Wishes/Fulfilled/FulfilledWishes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Featured/Wishes/Fulfilled/FulfilledWishes.swift -------------------------------------------------------------------------------- /appdb/Tabs/Featured/Wishes/New/NewWishes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Featured/Wishes/New/NewWishes.swift -------------------------------------------------------------------------------- /appdb/Tabs/Featured/Wishes/Wishes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Featured/Wishes/Wishes.swift -------------------------------------------------------------------------------- /appdb/Tabs/Search/Search Cells/LandscapeScreenshotSearchCell+Stars.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Search/Search Cells/LandscapeScreenshotSearchCell+Stars.swift -------------------------------------------------------------------------------- /appdb/Tabs/Search/Search Cells/LandscapeScreenshotSearchCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Search/Search Cells/LandscapeScreenshotSearchCell.swift -------------------------------------------------------------------------------- /appdb/Tabs/Search/Search Cells/MixedScreenshotsSearchCell_L->P+Stars.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Search/Search Cells/MixedScreenshotsSearchCell_L->P+Stars.swift -------------------------------------------------------------------------------- /appdb/Tabs/Search/Search Cells/MixedScreenshotsSearchCell_L->P.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Search/Search Cells/MixedScreenshotsSearchCell_L->P.swift -------------------------------------------------------------------------------- /appdb/Tabs/Search/Search Cells/MixedScreenshotsSearchCell_P->L+Stars.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Search/Search Cells/MixedScreenshotsSearchCell_P->L+Stars.swift -------------------------------------------------------------------------------- /appdb/Tabs/Search/Search Cells/MixedScreenshotsSearchCell_P->L.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Search/Search Cells/MixedScreenshotsSearchCell_P->L.swift -------------------------------------------------------------------------------- /appdb/Tabs/Search/Search Cells/NoScreenshotsSearchCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Search/Search Cells/NoScreenshotsSearchCell.swift -------------------------------------------------------------------------------- /appdb/Tabs/Search/Search Cells/NoScreenshotsSearchCell~Book+Stars.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Search/Search Cells/NoScreenshotsSearchCell~Book+Stars.swift -------------------------------------------------------------------------------- /appdb/Tabs/Search/Search Cells/NoScreenshotsSearchCell~Book.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Search/Search Cells/NoScreenshotsSearchCell~Book.swift -------------------------------------------------------------------------------- /appdb/Tabs/Search/Search Cells/PortraitScreenshotSearchCell+Stars.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Search/Search Cells/PortraitScreenshotSearchCell+Stars.swift -------------------------------------------------------------------------------- /appdb/Tabs/Search/Search Cells/PortraitScreenshotSearchCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Search/Search Cells/PortraitScreenshotSearchCell.swift -------------------------------------------------------------------------------- /appdb/Tabs/Search/Search Cells/SearchCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Search/Search Cells/SearchCell.swift -------------------------------------------------------------------------------- /appdb/Tabs/Search/Search Cells/ThreePortraitScreenshotsSearchCell+Stars.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Search/Search Cells/ThreePortraitScreenshotsSearchCell+Stars.swift -------------------------------------------------------------------------------- /appdb/Tabs/Search/Search Cells/ThreePortraitScreenshotsSearchCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Search/Search Cells/ThreePortraitScreenshotsSearchCell.swift -------------------------------------------------------------------------------- /appdb/Tabs/Search/Search Cells/TwoPortraitScreenshotsSearchCell+Stars.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Search/Search Cells/TwoPortraitScreenshotsSearchCell+Stars.swift -------------------------------------------------------------------------------- /appdb/Tabs/Search/Search Cells/TwoPortraitScreenshotsSearchCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Search/Search Cells/TwoPortraitScreenshotsSearchCell.swift -------------------------------------------------------------------------------- /appdb/Tabs/Search/Search Cells/iPad/SearchCells~iPad.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Search/Search Cells/iPad/SearchCells~iPad.swift -------------------------------------------------------------------------------- /appdb/Tabs/Search/Search Cells/iPhone/SearchCells~iPhone.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Search/Search Cells/iPhone/SearchCells~iPhone.swift -------------------------------------------------------------------------------- /appdb/Tabs/Search/Search+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Search/Search+Extension.swift -------------------------------------------------------------------------------- /appdb/Tabs/Search/Search.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Search/Search.swift -------------------------------------------------------------------------------- /appdb/Tabs/Search/SuggestionsWhileTyping.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Search/SuggestionsWhileTyping.swift -------------------------------------------------------------------------------- /appdb/Tabs/Search/Trending View/TrendingCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Search/Trending View/TrendingCollectionViewCell.swift -------------------------------------------------------------------------------- /appdb/Tabs/Settings/Acknowledgements/Acknowledgements.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Settings/Acknowledgements/Acknowledgements.swift -------------------------------------------------------------------------------- /appdb/Tabs/Settings/Advanced Options/AdvancedOptions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Settings/Advanced Options/AdvancedOptions.swift -------------------------------------------------------------------------------- /appdb/Tabs/Settings/Advanced Options/ListAppsManagedByAppdb.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Settings/Advanced Options/ListAppsManagedByAppdb.swift -------------------------------------------------------------------------------- /appdb/Tabs/Settings/AltStoreRepos/AltStoreRepoCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Settings/AltStoreRepos/AltStoreRepoCell.swift -------------------------------------------------------------------------------- /appdb/Tabs/Settings/AltStoreRepos/AltStoreRepos+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Settings/AltStoreRepos/AltStoreRepos+Extension.swift -------------------------------------------------------------------------------- /appdb/Tabs/Settings/AltStoreRepos/AltStoreRepos.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Settings/AltStoreRepos/AltStoreRepos.swift -------------------------------------------------------------------------------- /appdb/Tabs/Settings/AltStoreRepos/Apps/AltStoreAppDetails+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Settings/AltStoreRepos/Apps/AltStoreAppDetails+Extension.swift -------------------------------------------------------------------------------- /appdb/Tabs/Settings/AltStoreRepos/Apps/AltStoreAppDetails.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Settings/AltStoreRepos/Apps/AltStoreAppDetails.swift -------------------------------------------------------------------------------- /appdb/Tabs/Settings/AltStoreRepos/Apps/AltStoreRepoAppCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Settings/AltStoreRepos/Apps/AltStoreRepoAppCell.swift -------------------------------------------------------------------------------- /appdb/Tabs/Settings/AltStoreRepos/Apps/AltStoreRepoApps.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Settings/AltStoreRepos/Apps/AltStoreRepoApps.swift -------------------------------------------------------------------------------- /appdb/Tabs/Settings/Credits/Credits+Views.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Settings/Credits/Credits+Views.swift -------------------------------------------------------------------------------- /appdb/Tabs/Settings/Credits/Credits.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Settings/Credits/Credits.swift -------------------------------------------------------------------------------- /appdb/Tabs/Settings/Device Chooser/DeviceChooser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Settings/Device Chooser/DeviceChooser.swift -------------------------------------------------------------------------------- /appdb/Tabs/Settings/Device Link/BulletinDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Settings/Device Link/BulletinDataSource.swift -------------------------------------------------------------------------------- /appdb/Tabs/Settings/Device Link/Bulletins/EnterLinkCodeBulletinPage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Settings/Device Link/Bulletins/EnterLinkCodeBulletinPage.swift -------------------------------------------------------------------------------- /appdb/Tabs/Settings/Device Link/Bulletins/SelectorBulletinPage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Settings/Device Link/Bulletins/SelectorBulletinPage.swift -------------------------------------------------------------------------------- /appdb/Tabs/Settings/Device Status/DeviceStatus.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Settings/Device Status/DeviceStatus.swift -------------------------------------------------------------------------------- /appdb/Tabs/Settings/Device Status/DeviceStatusCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Settings/Device Status/DeviceStatusCell.swift -------------------------------------------------------------------------------- /appdb/Tabs/Settings/Enterprise Cert Chooser/EnterpriseCertChooser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Settings/Enterprise Cert Chooser/EnterpriseCertChooser.swift -------------------------------------------------------------------------------- /appdb/Tabs/Settings/IPA Cache/CachedIPAs+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Settings/IPA Cache/CachedIPAs+Extension.swift -------------------------------------------------------------------------------- /appdb/Tabs/Settings/IPA Cache/CachedIPAs.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Settings/IPA Cache/CachedIPAs.swift -------------------------------------------------------------------------------- /appdb/Tabs/Settings/IPA Cache/IPACache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Settings/IPA Cache/IPACache.swift -------------------------------------------------------------------------------- /appdb/Tabs/Settings/Icon Chooser/IconChooser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Settings/Icon Chooser/IconChooser.swift -------------------------------------------------------------------------------- /appdb/Tabs/Settings/Icon Chooser/IconChooserCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Settings/Icon Chooser/IconChooserCell.swift -------------------------------------------------------------------------------- /appdb/Tabs/Settings/Language Chooser/LanguageChooser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Settings/Language Chooser/LanguageChooser.swift -------------------------------------------------------------------------------- /appdb/Tabs/Settings/My Dylibs/MyDylibs+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Settings/My Dylibs/MyDylibs+Extension.swift -------------------------------------------------------------------------------- /appdb/Tabs/Settings/My Dylibs/MyDylibs.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Settings/My Dylibs/MyDylibs.swift -------------------------------------------------------------------------------- /appdb/Tabs/Settings/News/News+Detail+HTMLCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Settings/News/News+Detail+HTMLCell.swift -------------------------------------------------------------------------------- /appdb/Tabs/Settings/News/News+Detail+TitleDateCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Settings/News/News+Detail+TitleDateCell.swift -------------------------------------------------------------------------------- /appdb/Tabs/Settings/News/News+Detail.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Settings/News/News+Detail.swift -------------------------------------------------------------------------------- /appdb/Tabs/Settings/News/News.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Settings/News/News.swift -------------------------------------------------------------------------------- /appdb/Tabs/Settings/Plus/PlusPurchase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Settings/Plus/PlusPurchase.swift -------------------------------------------------------------------------------- /appdb/Tabs/Settings/Plus/PlusPurchaseCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Settings/Plus/PlusPurchaseCell.swift -------------------------------------------------------------------------------- /appdb/Tabs/Settings/Plus/PlusPurchaseWeb.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Settings/Plus/PlusPurchaseWeb.swift -------------------------------------------------------------------------------- /appdb/Tabs/Settings/Plus/SigningCerts.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Settings/Plus/SigningCerts.swift -------------------------------------------------------------------------------- /appdb/Tabs/Settings/Settings+Sections.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Settings/Settings+Sections.swift -------------------------------------------------------------------------------- /appdb/Tabs/Settings/Settings+StaticCells.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Settings/Settings+StaticCells.swift -------------------------------------------------------------------------------- /appdb/Tabs/Settings/Settings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Settings/Settings.swift -------------------------------------------------------------------------------- /appdb/Tabs/Settings/Signing Type Chooser/SigningTypeChooser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Settings/Signing Type Chooser/SigningTypeChooser.swift -------------------------------------------------------------------------------- /appdb/Tabs/Settings/System Status/SystemStatus.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Settings/System Status/SystemStatus.swift -------------------------------------------------------------------------------- /appdb/Tabs/Settings/Theme Chooser/ThemeChooser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Settings/Theme Chooser/ThemeChooser.swift -------------------------------------------------------------------------------- /appdb/Tabs/Updates/Cells/IgnoredCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Updates/Cells/IgnoredCell.swift -------------------------------------------------------------------------------- /appdb/Tabs/Updates/Cells/UpdateCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Updates/Cells/UpdateCell.swift -------------------------------------------------------------------------------- /appdb/Tabs/Updates/Cells/UpdatesSectionHeaderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Updates/Cells/UpdatesSectionHeaderView.swift -------------------------------------------------------------------------------- /appdb/Tabs/Updates/Ignored.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Updates/Ignored.swift -------------------------------------------------------------------------------- /appdb/Tabs/Updates/Updates+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Updates/Updates+Extension.swift -------------------------------------------------------------------------------- /appdb/Tabs/Updates/Updates.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/Tabs/Updates/Updates.swift -------------------------------------------------------------------------------- /appdb/appdb.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/appdb.entitlements -------------------------------------------------------------------------------- /appdb/ar.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/ar.lproj/Localizable.strings -------------------------------------------------------------------------------- /appdb/de.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/de.lproj/Localizable.strings -------------------------------------------------------------------------------- /appdb/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /appdb/es.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/es.lproj/Localizable.strings -------------------------------------------------------------------------------- /appdb/fr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/fr.lproj/Localizable.strings -------------------------------------------------------------------------------- /appdb/id.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/id.lproj/Localizable.strings -------------------------------------------------------------------------------- /appdb/it.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/it.lproj/Localizable.strings -------------------------------------------------------------------------------- /appdb/jv-ID.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/jv-ID.lproj/Localizable.strings -------------------------------------------------------------------------------- /appdb/ru.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3d1117/appdb/HEAD/appdb/ru.lproj/Localizable.strings --------------------------------------------------------------------------------