├── .gitignore ├── CHANGELOG.md ├── DereGuide.xcodeproj ├── project.pbxproj └── xcshareddata │ └── xcschemes │ └── DereGuide.xcscheme ├── DereGuide.xcworkspace └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── DereGuide ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon-20.png │ │ ├── Icon-60.png │ │ ├── Icon-60@2x.png │ │ ├── Icon-60@3x.png │ │ ├── Icon-76.png │ │ ├── Icon-76@2x.png │ │ ├── Icon-Small.png │ │ ├── Icon-Small@2x-1.png │ │ ├── Icon-Small@2x.png │ │ ├── Icon-Small@3x.png │ │ ├── Icon-Spotlight-40.png │ │ ├── Icon-Spotlight-40@2x-1.png │ │ ├── Icon-Spotlight-40@2x.png │ │ ├── Icon-Spotlight-40@3x.png │ │ ├── Icon-Spotlight-41.png │ │ ├── Icon-Spotlight-42.png │ │ ├── Icon-iPadPro@2x.png │ │ └── iOS-Marketing.png │ ├── Contents.json │ ├── Loading │ │ ├── Contents.json │ │ └── loading.imageset │ │ │ ├── Contents.json │ │ │ ├── loading.png │ │ │ ├── loading@2x.png │ │ │ └── loading@3x.png │ ├── Other │ │ ├── 433-x.imageset │ │ │ ├── 433-x.png │ │ │ ├── 433-x@2x.png │ │ │ ├── 433-x@3x.png │ │ │ └── Contents.json │ │ ├── 436-plus.imageset │ │ │ ├── 436-plus.png │ │ │ ├── 436-plus@2x.png │ │ │ ├── 436-plus@3x.png │ │ │ └── Contents.json │ │ ├── 511-copy-documents.imageset │ │ │ ├── 511-copy-documents.png │ │ │ ├── 511-copy-documents@2x.png │ │ │ ├── 511-copy-documents@3x.png │ │ │ └── Contents.json │ │ ├── 703-download.imageset │ │ │ ├── 703-download.png │ │ │ ├── 703-download@2x.png │ │ │ ├── 703-download@3x.png │ │ │ └── Contents.json │ │ ├── 748-heart-toolbar-selected.imageset │ │ │ ├── 748-heart-toolbar-selected.png │ │ │ ├── 748-heart-toolbar-selected@2x.png │ │ │ ├── 748-heart-toolbar-selected@3x.png │ │ │ └── Contents.json │ │ ├── 748-heart-toolbar.imageset │ │ │ ├── 748-heart-toolbar.png │ │ │ ├── 748-heart-toolbar@2x.png │ │ │ ├── 748-heart-toolbar@3x.png │ │ │ └── Contents.json │ │ ├── 759-refresh-2-toolbar.imageset │ │ │ ├── 759-refresh-2-toolbar.png │ │ │ ├── 759-refresh-2-toolbar@2x.png │ │ │ ├── 759-refresh-2-toolbar@3x.png │ │ │ └── Contents.json │ │ ├── 763-arrow-up-toolbar-selected.imageset │ │ │ ├── 763-arrow-up-toolbar-selected.png │ │ │ ├── 763-arrow-up-toolbar-selected@2x.png │ │ │ ├── 763-arrow-up-toolbar-selected@3x.png │ │ │ └── Contents.json │ │ ├── 764-arrow-down-toolbar-selected.imageset │ │ │ ├── 764-arrow-down-toolbar-selected.png │ │ │ ├── 764-arrow-down-toolbar-selected@2x.png │ │ │ ├── 764-arrow-down-toolbar-selected@3x.png │ │ │ └── Contents.json │ │ ├── 765-arrow-left-toolbar.imageset │ │ │ ├── 765-arrow-left-toolbar.png │ │ │ ├── 765-arrow-left-toolbar@2x.png │ │ │ ├── 765-arrow-left-toolbar@3x.png │ │ │ └── Contents.json │ │ ├── 766-arrow-right-toolbar-selected.imageset │ │ │ ├── 766-arrow-right-toolbar-selected.png │ │ │ ├── 766-arrow-right-toolbar-selected@2x.png │ │ │ ├── 766-arrow-right-toolbar-selected@3x.png │ │ │ └── Contents.json │ │ ├── 798-filter-toolbar.imageset │ │ │ ├── 798-filter-toolbar.png │ │ │ ├── 798-filter-toolbar@2x.png │ │ │ ├── 798-filter-toolbar@3x.png │ │ │ └── Contents.json │ │ ├── 888-checkmark-toolbar-selected.imageset │ │ │ ├── 888-checkmark-toolbar-selected.png │ │ │ ├── 888-checkmark-toolbar-selected@2x.png │ │ │ ├── 888-checkmark-toolbar-selected@3x.png │ │ │ └── Contents.json │ │ ├── 888-checkmark-toolbar.imageset │ │ │ ├── 888-checkmark-toolbar.png │ │ │ ├── 888-checkmark-toolbar@2x.png │ │ │ ├── 888-checkmark-toolbar@3x.png │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── arrow-downward.imageset │ │ │ ├── Contents.json │ │ │ ├── arrow-downward.png │ │ │ ├── arrow-downward@2x.png │ │ │ └── arrow-downward@3x.png │ │ ├── arrow-rightward.imageset │ │ │ ├── Contents.json │ │ │ ├── arrow-rightward.png │ │ │ ├── arrow-rightward@2x.png │ │ │ └── arrow-rightward@3x.png │ │ ├── cool-placeholder.imageset │ │ │ ├── Contents.json │ │ │ ├── cool-placeholder.png │ │ │ ├── cool-placeholder@2x.png │ │ │ └── cool-placeholder@3x.png │ │ ├── cute-placeholder.imageset │ │ │ ├── Contents.json │ │ │ ├── cute-placeholder.png │ │ │ ├── cute-placeholder@2x.png │ │ │ └── cute-placeholder@3x.png │ │ ├── passtion-placeholder.imageset │ │ │ ├── Contents.json │ │ │ ├── passtion-placeholder.png │ │ │ ├── passtion-placeholder@2x.png │ │ │ └── passtion-placeholder@3x.png │ │ └── star.imageset │ │ │ ├── Contents.json │ │ │ ├── star.png │ │ │ └── star@2x.png │ ├── Skill │ │ ├── Contents.json │ │ ├── all-round.imageset │ │ │ ├── Contents.json │ │ │ ├── all_round.png │ │ │ ├── all_round@2x.png │ │ │ └── all_round@3x.png │ │ ├── combo-bonus.imageset │ │ │ ├── Contents.json │ │ │ ├── combo_bonus.png │ │ │ ├── combo_bonus@2x.png │ │ │ └── combo_bonus@3x.png │ │ ├── combo-continue.imageset │ │ │ ├── Contents.json │ │ │ ├── combo_continue.png │ │ │ ├── combo_continue@2x.png │ │ │ └── combo_continue@3x.png │ │ ├── consentation.imageset │ │ │ ├── Contents.json │ │ │ ├── consentation.png │ │ │ ├── consentation@2x.png │ │ │ └── consentation@3x.png │ │ ├── cute-focus.imageset │ │ │ ├── Contents.json │ │ │ ├── cute_focus.png │ │ │ ├── cute_focus@2x.png │ │ │ └── cute_focus@3x.png │ │ ├── damage-guard.imageset │ │ │ ├── Contents.json │ │ │ ├── damage_guide.png │ │ │ ├── damage_guide@2x.png │ │ │ └── damage_guide@3x.png │ │ ├── heal.imageset │ │ │ ├── Contents.json │ │ │ ├── heal.png │ │ │ ├── heal@2x.png │ │ │ └── heal@3x.png │ │ ├── mimic.imageset │ │ │ ├── Contents.json │ │ │ ├── mimic.png │ │ │ ├── mimic@2x.png │ │ │ └── mimic@3x.png │ │ ├── overload.imageset │ │ │ ├── Contents.json │ │ │ ├── overload.png │ │ │ ├── overload@2x.png │ │ │ └── overload@3x.png │ │ ├── passtion-focus.imageset │ │ │ ├── Contents.json │ │ │ ├── passtion_focus.png │ │ │ ├── passtion_focus@2x.png │ │ │ └── passtion_focus@3x.png │ │ ├── perfect-lock.imageset │ │ │ ├── Contents.json │ │ │ ├── perfect_lock.png │ │ │ ├── perfect_lock@2x.png │ │ │ └── perfect_lock@3x.png │ │ ├── score-bonus.imageset │ │ │ ├── Contents.json │ │ │ ├── score_bonus.png │ │ │ ├── score_bonus@2x.png │ │ │ └── score_bonus@3x.png │ │ └── skill-boost.imageset │ │ │ ├── Contents.json │ │ │ ├── skill_boost.png │ │ │ ├── skill_boost@2x.png │ │ │ └── skill_boost@3x.png │ ├── Song │ │ ├── Contents.json │ │ ├── song-all.imageset │ │ │ ├── Contents.json │ │ │ ├── song-all.png │ │ │ ├── song-all@2x.png │ │ │ └── song-all@3x.png │ │ ├── song-cool.imageset │ │ │ ├── Contents.json │ │ │ ├── song-cool.png │ │ │ ├── song-cool@2x.png │ │ │ └── song-cool@3x.png │ │ ├── song-cute.imageset │ │ │ ├── Contents.json │ │ │ ├── song-cute.png │ │ │ ├── song-cute@2x.png │ │ │ └── song-cute@3x.png │ │ └── song-passion.imageset │ │ │ ├── Contents.json │ │ │ ├── song-passion.png │ │ │ ├── song-passion@2x.png │ │ │ └── song-passion@3x.png │ ├── Tabbar │ │ ├── 726-star-selected.imageset │ │ │ ├── 726-star-selected.png │ │ │ ├── 726-star-selected@2x.png │ │ │ ├── 726-star-selected@3x.png │ │ │ └── Contents.json │ │ ├── 726-star.imageset │ │ │ ├── 726-star.png │ │ │ ├── 726-star@2x.png │ │ │ ├── 726-star@3x.png │ │ │ └── Contents.json │ │ ├── 740-gear-selected.imageset │ │ │ ├── 740-gear-selected.png │ │ │ ├── 740-gear-selected@2x.png │ │ │ ├── 740-gear-selected@3x.png │ │ │ └── Contents.json │ │ ├── 740-gear.imageset │ │ │ ├── 740-gear.png │ │ │ ├── 740-gear@2x.png │ │ │ ├── 740-gear@3x.png │ │ │ └── Contents.json │ │ ├── 779-users-selected.imageset │ │ │ ├── 779-users-selected.png │ │ │ ├── 779-users-selected@2x.png │ │ │ ├── 779-users-selected@3x.png │ │ │ └── Contents.json │ │ ├── 779-users.imageset │ │ │ ├── 779-users.png │ │ │ ├── 779-users@2x.png │ │ │ ├── 779-users@3x.png │ │ │ └── Contents.json │ │ ├── 833-diamond.imageset │ │ │ ├── 833-diamond.png │ │ │ ├── 833-diamond@2x.png │ │ │ ├── 833-diamond@3x.png │ │ │ └── Contents.json │ │ ├── 851-calendar.imageset │ │ │ ├── 851-calendar.png │ │ │ ├── 851-calendar@2x.png │ │ │ ├── 851-calendar@3x.png │ │ │ └── Contents.json │ │ ├── 898-music-note-selected.imageset │ │ │ ├── 898-music-note-selected.png │ │ │ ├── 898-music-note-selected@2x.png │ │ │ ├── 898-music-note-selected@3x.png │ │ │ └── Contents.json │ │ ├── 898-music-note.imageset │ │ │ ├── 898-music-note.png │ │ │ ├── 898-music-note@2x.png │ │ │ ├── 898-music-note@3x.png │ │ │ └── Contents.json │ │ ├── 921-toolbox-selected.imageset │ │ │ ├── 921-toolbox-selected.png │ │ │ ├── 921-toolbox-selected@2x.png │ │ │ ├── 921-toolbox-selected@3x.png │ │ │ └── Contents.json │ │ ├── 921-toolbox.imageset │ │ │ ├── 921-toolbox.png │ │ │ ├── 921-toolbox@2x.png │ │ │ ├── 921-toolbox@3x.png │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── musical_notes.imageset │ │ │ ├── Contents.json │ │ │ ├── musical_notes.png │ │ │ ├── musical_notes@2x.png │ │ │ └── musical_notes@3x.png │ │ ├── people.imageset │ │ │ ├── Contents.json │ │ │ ├── people.png │ │ │ ├── people@2x.png │ │ │ └── people@3x.png │ │ ├── product.imageset │ │ │ ├── Contents.json │ │ │ ├── product.png │ │ │ ├── product@2x.png │ │ │ └── product@3x.png │ │ ├── settings.imageset │ │ │ ├── Contents.json │ │ │ ├── settings.png │ │ │ ├── settings@2x.png │ │ │ └── settings@3x.png │ │ └── stack_of_photos.imageset │ │ │ ├── Contents.json │ │ │ ├── stack_of_photos.png │ │ │ ├── stack_of_photos@2x.png │ │ │ └── stack_of_photos@3x.png │ └── Toolbar │ │ ├── 1110-rotate-toolbar-selected.imageset │ │ ├── 1110-rotate-toolbar-selected.png │ │ ├── 1110-rotate-toolbar-selected@2x.png │ │ ├── 1110-rotate-toolbar-selected@3x.png │ │ └── Contents.json │ │ ├── 1110-rotate-toolbar.imageset │ │ ├── 1110-rotate-toolbar.png │ │ ├── 1110-rotate-toolbar@2x.png │ │ ├── 1110-rotate-toolbar@3x.png │ │ └── Contents.json │ │ ├── 1241-play-toolbar.imageset │ │ ├── 1241-play-toolbar.png │ │ ├── 1241-play-toolbar@2x.png │ │ ├── 1241-play-toolbar@3x.png │ │ └── Contents.json │ │ ├── 1242-pause-toolbar.imageset │ │ ├── 1242-pause-toolbar.png │ │ ├── 1242-pause-toolbar@2x.png │ │ ├── 1242-pause-toolbar@3x.png │ │ └── Contents.json │ │ ├── 702-share-toolbar.imageset │ │ ├── 702-share-toolbar.png │ │ ├── 702-share-toolbar@2x.png │ │ ├── 702-share-toolbar@3x.png │ │ └── Contents.json │ │ ├── 750-home-toolbar.imageset │ │ ├── 750-home-toolbar.png │ │ ├── 750-home-toolbar@2x.png │ │ ├── 750-home-toolbar@3x.png │ │ └── Contents.json │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Bridge-Header.h ├── Card │ ├── Controller │ │ ├── BaseCardCollectionViewController.swift │ │ ├── BaseCardTableViewController.swift │ │ ├── CardFilterSortController.swift │ │ ├── CardImageController.swift │ │ ├── CardTableViewController.swift │ │ ├── SignImageController.swift │ │ ├── SpreadImageViewAnimator.swift │ │ └── SpreadImageViewController.swift │ ├── Detail │ │ ├── Controller │ │ │ ├── CDCharaViewController.swift │ │ │ ├── CDImageViewController.swift │ │ │ ├── CDTabController.swift │ │ │ ├── CardDetailViewController.swift │ │ │ └── GalleryImageItemBaseController.swift │ │ └── View │ │ │ ├── CDImageTableViewCell.swift │ │ │ ├── CDImageView.swift │ │ │ ├── CardDetailAppealCell.swift │ │ │ ├── CardDetailBasicCell.swift │ │ │ ├── CardDetailEvolutionCell.swift │ │ │ ├── CardDetailLeaderSkillCell.swift │ │ │ ├── CardDetailMVCell.swift │ │ │ ├── CardDetailMVPositionCell.swift │ │ │ ├── CardDetailRelatedCardsCell.swift │ │ │ ├── CardDetailRelativeStrengthCell.swift │ │ │ ├── CardDetailSkillCell.swift │ │ │ └── CardDetailSourceCell.swift │ └── View │ │ ├── CGSSCardIconView.swift │ │ ├── CGSSCharaIconView.swift │ │ ├── CGSSIconView.swift │ │ ├── CardAppealView.swift │ │ ├── CardCollectionViewCell.swift │ │ ├── CardRankingView.swift │ │ ├── CardTableViewCell.swift │ │ ├── CardView.swift │ │ └── SpreadImageView.swift ├── Common │ ├── APIClient.swift │ ├── BaseRequest.swift │ ├── BaseSession.swift │ ├── BeatmapHashManager.swift │ ├── CGSSCacheManager.swift │ ├── CGSSCardFilter.swift │ ├── CGSSCharFilter.swift │ ├── CGSSClient.swift │ ├── CGSSFavoriteManager.swift │ ├── CGSSFilter.swift │ ├── CGSSGlobal.swift │ ├── CGSSLiveFilter.swift │ ├── CGSSNotification.swift │ ├── CGSSSorter.swift │ ├── CGSSSorterFilterManager.swift │ ├── CGSSTypes.swift │ ├── CGSSUpdater.swift │ ├── CGSSVersionManager.swift │ ├── CloudKitSync │ │ ├── ApplicationActiveStateObserver.swift │ │ ├── ChangeProcessor.swift │ │ ├── CloudKit+Extensions.swift │ │ ├── CloudKitMergePolicy.swift │ │ ├── CoreData+Sync.swift │ │ ├── EntityAndPredicate.swift │ │ ├── FavoriteCardDownloader.swift │ │ ├── FavoriteCardRemover.swift │ │ ├── FavoriteCardUploader.swift │ │ ├── FavoriteCardsRemote.swift │ │ ├── FavoriteCharaDownloader.swift │ │ ├── FavoriteCharaRemover.swift │ │ ├── FavoriteCharaUploader.swift │ │ ├── FavoriteCharasRemote.swift │ │ ├── FavoriteSongDownloader.swift │ │ ├── FavoriteSongRemover.swift │ │ ├── FavoriteSongUploader.swift │ │ ├── FavoriteSongsRemote.swift │ │ ├── InProgressTracker.swift │ │ ├── MemberDownloader.swift │ │ ├── MemberModifier.swift │ │ ├── MemberUploader.swift │ │ ├── MembersRemote.swift │ │ ├── ProfileRemote.swift │ │ ├── Remote.swift │ │ ├── SyncContextOwner.swift │ │ ├── SyncCoordinator.swift │ │ ├── UnitDownloader.swift │ │ ├── UnitModifier.swift │ │ ├── UnitRemover.swift │ │ ├── UnitUploader.swift │ │ └── UnitsRemote.swift │ ├── CoreDataStack.swift │ ├── Debouncer.swift │ ├── DeviceInformationManager.swift │ ├── FavoriteCardsManager.swift │ ├── FavoriteCharasManager.swift │ ├── FavoriteManager.swift │ ├── FavoriteSongsManager.swift │ ├── LZ4Decompressor.swift │ ├── LiveSimulationAdvanceOptionsManager.swift │ ├── Protocols.swift │ ├── UnitEditingAdvanceOptionsManager.swift │ ├── UserNotificationHandler.swift │ └── Version.swift ├── Controller │ ├── BaseFilterSortController.swift │ ├── BaseModelCollectionViewController.swift │ ├── BaseModelTableViewController.swift │ ├── BaseNavigationController.swift │ ├── BaseTableViewController.swift │ ├── BaseViewController.swift │ ├── RefreshableTableViewController.swift │ ├── TransitionAnimatorController.swift │ ├── TransitionableNavigationController.swift │ └── UITableViewController+NSFetchedResultsControllerDelegate.swift ├── DereGuide.entitlements ├── DereGuide.xcdatamodeld │ ├── .xccurrentversion │ ├── DereGuide 2.xcdatamodel │ │ └── contents │ ├── DereGuide 3.xcdatamodel │ │ └── contents │ ├── DereGuide 4.xcdatamodel │ │ └── contents │ ├── DereGuide 5.xcdatamodel │ │ └── contents │ └── DereGuide.xcdatamodel │ │ └── contents ├── Extension │ ├── Array+SafeIndex.swift │ ├── DateExtension.swift │ ├── DispatchSemaphore+Sync.swift │ ├── IntExtenstion.swift │ ├── NSAtributedStringExtension.swift │ ├── NSUserDefaultsExtension.swift │ ├── StringExtension.swift │ ├── TimeZoneExtension.swift │ ├── UIActivityViewControllerExtension.swift │ ├── UIAlertExtension.swift │ ├── UIColorExtension.swift │ ├── UIFontExtension.swift │ ├── UITextFieldExtension.swift │ ├── UIViewControllerExtension.swift │ └── UIViewExtension.swift ├── Info.plist ├── Live │ ├── Controller │ │ ├── BaseLiveTableViewController.swift │ │ ├── BeatmapAdvanceOptionsViewController.swift │ │ ├── BeatmapViewController.swift │ │ ├── LiveDetailViewController.swift │ │ ├── LiveFilterSortController.swift │ │ └── LiveTableViewController.swift │ ├── Model │ │ ├── BpmShift.plist │ │ ├── CGSSBeatmap.swift │ │ ├── CGSSBeatmapNote.swift │ │ ├── CGSSBeatmapPlayer.swift │ │ └── CGSSBeatmapShiftingInfo.swift │ └── View │ │ ├── BeatmapColorThemeTableViewCell.swift │ │ ├── BeatmapView.swift │ │ ├── LiveDetailView.swift │ │ ├── LiveDifficultyView.swift │ │ └── LiveTableViewCell.swift ├── LiveSimulator │ ├── LFDistribution.swift │ ├── LFSamplePoint.swift │ ├── LSGame.swift │ ├── LSLog.swift │ ├── LSNote.swift │ ├── LSOptions.swift │ ├── LSRange.swift │ ├── LSResult.swift │ ├── LSScoreBonusGroup.swift │ ├── LSSkill.swift │ ├── LiveCoordinator.swift │ ├── LiveFormulator.swift │ └── LiveSimulator.swift ├── Model │ ├── ApiInfo.swift │ ├── CGSSAppeal.swift │ ├── CGSSBaseModel.swift │ ├── CGSSCard.swift │ ├── CGSSCardRarity.swift │ ├── CGSSChar.swift │ ├── CGSSDAO.swift │ ├── CGSSGameResource.swift │ ├── CGSSLearderSkill.swift │ ├── CGSSLive.swift │ ├── CGSSLiveDetail.swift │ ├── CGSSLiveScene.swift │ ├── CGSSRankedSkill.swift │ ├── CGSSSkill.swift │ ├── CoreDataHelper │ │ ├── Collection+CoreDataExtensions.swift │ │ ├── CoreDataErrors.swift │ │ ├── LICENSE.md │ │ ├── Managed.swift │ │ ├── ManagedObjectObserver.swift │ │ ├── Migration.swift │ │ ├── ModelBuilder.swift │ │ ├── ModelVersion.swift │ │ ├── NSManagedObject+Extensions.swift │ │ ├── NSManagedObjectContext+Extensions.swift │ │ ├── NSManagedObjectContext+Observers.swift │ │ ├── NSPersistentStoreCoordinator+Extensions.swift │ │ ├── README.md │ │ ├── Utilities.swift │ │ └── ValueTransformer.swift │ ├── DataVersionPayload.swift │ ├── Favorite │ │ ├── FavoriteCard.swift │ │ ├── FavoriteChara.swift │ │ ├── FavoriteSong.swift │ │ ├── RemoteFavoriteCard.swift │ │ ├── RemoteFavoriteChara.swift │ │ └── RemoteFavoriteSong.swift │ ├── Potential.swift │ ├── Profile │ │ ├── Profile.swift │ │ └── RemoteProfile.swift │ ├── Protocol │ │ ├── DelayedDeletable.swift │ │ ├── IDSearchable.swift │ │ ├── LocalizedStringConvertible.swift │ │ ├── RemoteDeletable.swift │ │ ├── RemoteRefreshable.swift │ │ ├── RemoteUpdatable.swift │ │ ├── RemoteUploadable.swift │ │ ├── Syncable.swift │ │ ├── UpdateTimestampable.swift │ │ └── UserOwnable.swift │ └── Unit │ │ ├── Member.swift │ │ ├── RemoteMember.swift │ │ ├── RemoteUnit.swift │ │ ├── Unit.swift │ │ ├── UnitTemplate.plist │ │ └── UnitTemplate.swift ├── Pods-DereGuide-acknowledgements.plist ├── Settings │ ├── Controller │ │ ├── DonationViewController.swift │ │ ├── DownloadImageViewController.swift │ │ ├── LicenseViewController.swift │ │ ├── PrivacyPolicyViewController.swift │ │ ├── SettingsTableViewController.swift │ │ └── WipeTableViewController.swift │ ├── PrivacyPolicy.md │ └── View │ │ ├── DonationCell.swift │ │ ├── DonationQAView.swift │ │ ├── LicenseTableViewCell.swift │ │ └── WipeTableViewCell.swift ├── Toolbox │ ├── BannerViewAnimator.swift │ ├── BirthdayNotification │ │ ├── BirthdayCenter.swift │ │ ├── BirthdayNotificationTableViewCell.swift │ │ └── BirthdayNotificationViewController.swift │ ├── CharaInfo │ │ ├── Controller │ │ │ ├── CharFilterSortController.swift │ │ │ ├── CharaDetailViewController.swift │ │ │ └── CharaTableViewController.swift │ │ └── View │ │ │ ├── CharProfileView.swift │ │ │ ├── CharaDetailMVTableViewCell.swift │ │ │ ├── CharaDetailProfileTableViewCell.swift │ │ │ ├── CharaDetailRelatedCardsTableViewCell.swift │ │ │ ├── CharaProfileContentLabel.swift │ │ │ ├── CharaProfileItemView.swift │ │ │ ├── CharaProfileTitleLabel.swift │ │ │ ├── CharaProfileTitleView.swift │ │ │ ├── CharaTableViewCell.swift │ │ │ └── CharaView.swift │ ├── Colleague │ │ ├── Composing │ │ │ ├── Controller │ │ │ │ ├── CenterWantedEditingViewController.swift │ │ │ │ ├── ColleagueComposeViewController.swift │ │ │ │ └── MyCenterEditingViewController.swift │ │ │ └── View │ │ │ │ ├── CenterWantedCardView.swift │ │ │ │ ├── CenterWantedEditingView.swift │ │ │ │ ├── CenterWantedGroupView.swift │ │ │ │ ├── CenterWantedItemView.swift │ │ │ │ ├── ColleagueBaseCell.swift │ │ │ │ ├── ColleagueButtonsCell.swift │ │ │ │ ├── ColleagueCentersWantedCell.swift │ │ │ │ ├── ColleagueInputCell.swift │ │ │ │ ├── ColleagueMessageCell.swift │ │ │ │ ├── ColleagueMyCentersCell.swift │ │ │ │ ├── ColleagueMyFreeCardsCell.swift │ │ │ │ ├── FreeCardGroupView.swift │ │ │ │ ├── FreeCardItemView.swift │ │ │ │ ├── MyCenterCardView.swift │ │ │ │ ├── MyCenterEditingView.swift │ │ │ │ ├── MyCenterGroupView.swift │ │ │ │ └── MyCenterItemView.swift │ │ ├── Controller │ │ │ └── ColleagueViewController.swift │ │ ├── DMComposing │ │ │ ├── Controller │ │ │ │ ├── DMComposingStepOneController.swift │ │ │ │ └── DMComposingStepTwoController.swift │ │ │ └── View │ │ │ │ └── ColleagueDescriptionCell.swift │ │ ├── Filter │ │ │ ├── Controller │ │ │ │ └── ColleagueFilterController.swift │ │ │ └── View │ │ │ │ ├── ColleagueFilterCardCell.swift │ │ │ │ └── ColleagueFilterTypeCell.swift │ │ ├── Model │ │ │ ├── DMCleared.swift │ │ │ ├── DMLeaderCard.swift │ │ │ ├── DMPotential.swift │ │ │ ├── DMProfile.swift │ │ │ ├── DMSupportCard.swift │ │ │ └── GameProfile.swift │ │ └── View │ │ │ └── ColleagueTableViewCell.swift │ ├── EventInfo │ │ ├── Controller │ │ │ ├── EventChartController.swift │ │ │ ├── EventDetailController.swift │ │ │ ├── EventFilterSortController.swift │ │ │ ├── EventTrendViewController.swift │ │ │ └── EventViewController.swift │ │ ├── Model │ │ │ ├── CGSSEvent.swift │ │ │ ├── CGSSEventFilter.swift │ │ │ ├── EventLogItem.swift │ │ │ ├── EventRanking.swift │ │ │ ├── EventRankingSpeed.swift │ │ │ ├── EventTrend.swift │ │ │ ├── RankingItem.swift │ │ │ └── RankingPage.swift │ │ └── View │ │ │ ├── EventCardView.swift │ │ │ ├── EventDetailView.swift │ │ │ ├── EventPtView.swift │ │ │ ├── EventScoreView.swift │ │ │ ├── EventTableViewCell.swift │ │ │ └── EventTrendCell.swift │ ├── Gacha │ │ ├── Controller │ │ │ ├── GachaCardFilterSortController.swift │ │ │ ├── GachaCardTableViewController.swift │ │ │ ├── GachaFilterSortController.swift │ │ │ └── GachaViewController.swift │ │ ├── Detail │ │ │ ├── Controller │ │ │ │ └── GachaDetailController.swift │ │ │ └── View │ │ │ │ ├── GachaCardView.swift │ │ │ │ ├── GachaDetailBannerCell.swift │ │ │ │ ├── GachaDetailBasicCell.swift │ │ │ │ ├── GachaDetailGuaranteesCell.swift │ │ │ │ ├── GachaDetailLoadingCell.swift │ │ │ │ ├── GachaDetailNewCardsCell.swift │ │ │ │ ├── GachaDetailSimulatorCell.swift │ │ │ │ ├── GachaResultCardView.swift │ │ │ │ └── GachaSimulatorView.swift │ │ ├── Model │ │ │ ├── CGSSGacha.swift │ │ │ ├── CGSSGachaFilter.swift │ │ │ ├── CardWithOdds.swift │ │ │ ├── GachaOdds.swift │ │ │ └── GachaSimulationResult.swift │ │ └── View │ │ │ ├── GachaCardTableViewCell.swift │ │ │ ├── GachaCardWithOddsListView.swift │ │ │ └── GachaTableViewCell.swift │ ├── MusicInfo │ │ ├── Controller │ │ │ ├── SongFilterSortController.swift │ │ │ └── SongViewController.swift │ │ ├── Detail │ │ │ ├── Controller │ │ │ │ └── SongDetailController.swift │ │ │ └── View │ │ │ │ ├── SongDetailCoverFlowCell.swift │ │ │ │ ├── SongDetailDescriptionCell.swift │ │ │ │ ├── SongDetailHeaderCell.swift │ │ │ │ ├── SongDetailLiveCell.swift │ │ │ │ ├── SongDetailLiveDifficultyView.swift │ │ │ │ ├── SongDetailPositionCell.swift │ │ │ │ ├── SongDetailPositionCharaItemView.swift │ │ │ │ └── SongJacketCollectionViewCell.swift │ │ ├── Model │ │ │ ├── CGSSSong.swift │ │ │ └── CGSSSongFilter.swift │ │ └── View │ │ │ └── SongCollectionViewCell.swift │ ├── ToolboxTableViewCell.swift │ ├── ToolboxTableViewController.swift │ └── VersionLog │ │ ├── Model │ │ └── VersionLog.swift │ │ ├── View │ │ ├── VLNoScheduleTableViewCell.swift │ │ ├── VLTableViewCell.swift │ │ └── VLTableViewHeaderFooterView.swift │ │ └── ViewController │ │ └── VLTableViewController.swift ├── Unit │ ├── Controller │ │ ├── UDTabViewController.swift │ │ └── UnitTableViewController.swift │ ├── Editing │ │ ├── Controller │ │ │ ├── MemberEditingViewController.swift │ │ │ ├── UnitCardSelectTableViewController.swift │ │ │ ├── UnitCardSelectionAdvanceOptionsController.swift │ │ │ ├── UnitEditingController.swift │ │ │ └── UnitTemplateController.swift │ │ └── View │ │ │ ├── MemberEditingView.swift │ │ │ ├── MemberGroupView.swift │ │ │ ├── RecentUsedMemberCell.swift │ │ │ └── UnitTemplateCell.swift │ ├── Information │ │ ├── Controller │ │ │ └── UnitInformationController.swift │ │ └── View │ │ │ ├── UnitInformationAppealCell.swift │ │ │ ├── UnitInformationLeaderSkillCell.swift │ │ │ ├── UnitInformationSkillListCell.swift │ │ │ ├── UnitInformationUnitCell.swift │ │ │ └── UnitLeaderSkillView.swift │ ├── Simulation │ │ ├── Controller │ │ │ ├── LiveSimulatorModeSelectionViewController.swift │ │ │ ├── LiveSimulatorViewController.swift │ │ │ ├── ScoreDashboardController.swift │ │ │ ├── SupportDashboardController.swift │ │ │ ├── UnitAdvanceCalculationController.swift │ │ │ ├── UnitAdvanceOptionsController.swift │ │ │ ├── UnitSimulationController.swift │ │ │ ├── UnitSimulationScoreDistributionController.swift │ │ │ └── UnitSongSelectViewController.swift │ │ └── View │ │ │ ├── DashboardSettingTableViewCell.swift │ │ │ ├── NoteScoreTableViewCell.swift │ │ │ ├── NoteScoreTableViewSectionFooter.swift │ │ │ ├── NoteScoreTableViewSectionHeader.swift │ │ │ ├── NoteSupportTableViewCell.swift │ │ │ ├── NoteSupportTableViewHeader.swift │ │ │ ├── UnitAdvanceCalculationCell.swift │ │ │ ├── UnitAdvanceCalculationResultView.swift │ │ │ ├── UnitAdvanceDescriptionCell.swift │ │ │ ├── UnitAdvanceOptionsTableViewCell.swift │ │ │ ├── UnitSimulationAppealEditingCell.swift │ │ │ ├── UnitSimulationCommonCell.swift │ │ │ ├── UnitSimulationDescriptionCell.swift │ │ │ ├── UnitSimulationLiveSelectCell.swift │ │ │ ├── UnitSimulationMainBodyCell.swift │ │ │ ├── UnitSimulationModeSelectionCell.swift │ │ │ └── UnitSimulationUnitCell.swift │ └── View │ │ └── UnitTableViewCell.swift ├── View │ ├── BalloonMarker.swift │ ├── BannerView.swift │ ├── CGSSLoadingHUD.swift │ ├── CGSSRefreshFooter.swift │ ├── CGSSRefreshHeader.swift │ ├── CGSSSearchBar.swift │ ├── CGSSUpdatingHUDManager.swift │ ├── CheckBox.swift │ ├── FilterItemView.swift │ ├── FilterTableViewCell.swift │ ├── GridLabel.swift │ ├── GridView.swift │ ├── IndicatorScrollView.swift │ ├── IndicatorTableView.swift │ ├── LineView.swift │ ├── LoadingView.swift │ ├── NavigationTitleLabel.swift │ ├── Option │ │ ├── SegmentedOption.swift │ │ ├── SliderOption.swift │ │ ├── StepperOption.swift │ │ ├── SwitchOption.swift │ │ └── TextFieldOption.swift │ ├── PotentialValueStepper.swift │ ├── ReadableWidthTableViewCell.swift │ ├── ScrollViewIndicator.swift │ ├── SortTableViewCell.swift │ ├── StatusIndicator.swift │ ├── TimeStatusIndicator.swift │ ├── TipView.swift │ ├── UpdatingStatusView.swift │ ├── ValueStepper.swift │ ├── WideButton.swift │ └── WideLoadingButton.swift ├── en.lproj │ ├── InfoPlist.strings │ ├── LaunchScreen.strings │ ├── Localizable.strings │ ├── Main.strings │ └── ToolboxList.plist ├── ja.lproj │ ├── InfoPlist.strings │ ├── LaunchScreen.strings │ ├── Localizable.strings │ ├── Main.strings │ └── ToolboxList.plist ├── zh-Hans.lproj │ ├── InfoPlist.strings │ ├── Localizable.strings │ └── ToolboxList.plist ├── zh-Hant-TW.lproj │ ├── InfoPlist.strings │ ├── LaunchScreen.strings │ ├── Localizable.strings │ ├── Main.strings │ └── ToolboxList.plist └── zh-Hant.lproj │ ├── InfoPlist.strings │ ├── LaunchScreen.strings │ ├── Localizable.strings │ ├── Main.strings │ └── ToolboxList.plist ├── DereGuideTests ├── CGSSPotentialTests.swift ├── Info.plist ├── LSRangeTests.swift ├── en.lproj │ └── InfoPlist.strings ├── ja.lproj │ └── InfoPlist.strings ├── zh-Hant-TW.lproj │ └── InfoPlist.strings └── zh-Hant.lproj │ └── InfoPlist.strings ├── Gemfile ├── LICENSE ├── Localizations ├── DereGuide │ ├── en.xcloc │ │ ├── Localized Contents │ │ │ ├── DereGuide │ │ │ │ └── en.lproj │ │ │ │ │ └── ToolboxList.plist │ │ │ └── en.xliff │ │ ├── Source Contents │ │ │ ├── DereGuide │ │ │ │ ├── Base.lproj │ │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ │ └── Main.storyboard │ │ │ │ └── zh-Hans.lproj │ │ │ │ │ ├── InfoPlist.strings │ │ │ │ │ ├── Localizable.strings │ │ │ │ │ └── ToolboxList.plist │ │ │ └── NotificationContent │ │ │ │ ├── Base.lproj │ │ │ │ └── MainInterface.storyboard │ │ │ │ └── zh-Hans.lproj │ │ │ │ └── InfoPlist.strings │ │ └── contents.json │ ├── ja.xcloc │ │ ├── Localized Contents │ │ │ ├── DereGuide │ │ │ │ └── ja.lproj │ │ │ │ │ └── ToolboxList.plist │ │ │ └── ja.xliff │ │ ├── Source Contents │ │ │ ├── DereGuide │ │ │ │ ├── Base.lproj │ │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ │ └── Main.storyboard │ │ │ │ └── zh-Hans.lproj │ │ │ │ │ ├── InfoPlist.strings │ │ │ │ │ ├── Localizable.strings │ │ │ │ │ └── ToolboxList.plist │ │ │ └── NotificationContent │ │ │ │ ├── Base.lproj │ │ │ │ └── MainInterface.storyboard │ │ │ │ └── zh-Hans.lproj │ │ │ │ └── InfoPlist.strings │ │ └── contents.json │ ├── zh-Hant-TW.xcloc │ │ ├── Localized Contents │ │ │ ├── DereGuide │ │ │ │ └── zh-Hant-TW.lproj │ │ │ │ │ └── ToolboxList.plist │ │ │ └── zh-Hant-TW.xliff │ │ ├── Source Contents │ │ │ ├── DereGuide │ │ │ │ ├── Base.lproj │ │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ │ └── Main.storyboard │ │ │ │ └── zh-Hans.lproj │ │ │ │ │ ├── InfoPlist.strings │ │ │ │ │ ├── Localizable.strings │ │ │ │ │ └── ToolboxList.plist │ │ │ └── NotificationContent │ │ │ │ ├── Base.lproj │ │ │ │ └── MainInterface.storyboard │ │ │ │ └── zh-Hans.lproj │ │ │ │ └── InfoPlist.strings │ │ └── contents.json │ └── zh-Hant.xcloc │ │ ├── Localized Contents │ │ ├── DereGuide │ │ │ └── zh-Hant.lproj │ │ │ │ └── ToolboxList.plist │ │ └── zh-Hant.xliff │ │ ├── Source Contents │ │ ├── DereGuide │ │ │ ├── Base.lproj │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ │ └── zh-Hans.lproj │ │ │ │ ├── InfoPlist.strings │ │ │ │ ├── Localizable.strings │ │ │ │ └── ToolboxList.plist │ │ └── NotificationContent │ │ │ ├── Base.lproj │ │ │ └── MainInterface.storyboard │ │ │ └── zh-Hans.lproj │ │ │ └── InfoPlist.strings │ │ └── contents.json ├── README.md ├── config.sh ├── export.sh ├── import.sh └── update.sh ├── NotificationContent ├── BannerView.swift ├── Base.lproj │ └── MainInterface.storyboard ├── Info.plist ├── NotificationViewController.swift ├── en.lproj │ └── InfoPlist.strings ├── ja.lproj │ └── InfoPlist.strings ├── zh-Hant-TW.lproj │ └── InfoPlist.strings └── zh-Hant.lproj │ └── InfoPlist.strings ├── Podfile ├── Podfile.lock ├── README.md ├── fastlane ├── Appfile ├── Fastfile └── README.md └── force_update.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /DereGuide.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /DereGuide.xcodeproj/xcshareddata/xcschemes/DereGuide.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide.xcodeproj/xcshareddata/xcschemes/DereGuide.xcscheme -------------------------------------------------------------------------------- /DereGuide.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /DereGuide/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/AppDelegate.swift -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/AppIcon.appiconset/Icon-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/AppIcon.appiconset/Icon-20.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/AppIcon.appiconset/Icon-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/AppIcon.appiconset/Icon-60.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/AppIcon.appiconset/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/AppIcon.appiconset/Icon-60@2x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/AppIcon.appiconset/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/AppIcon.appiconset/Icon-60@3x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/AppIcon.appiconset/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/AppIcon.appiconset/Icon-76.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/AppIcon.appiconset/Icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/AppIcon.appiconset/Icon-76@2x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/AppIcon.appiconset/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/AppIcon.appiconset/Icon-Small.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/AppIcon.appiconset/Icon-Small@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/AppIcon.appiconset/Icon-Small@2x-1.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/AppIcon.appiconset/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/AppIcon.appiconset/Icon-Small@2x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/AppIcon.appiconset/Icon-Small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/AppIcon.appiconset/Icon-Small@3x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/AppIcon.appiconset/Icon-Spotlight-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/AppIcon.appiconset/Icon-Spotlight-40.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/AppIcon.appiconset/Icon-Spotlight-40@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/AppIcon.appiconset/Icon-Spotlight-40@2x-1.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/AppIcon.appiconset/Icon-Spotlight-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/AppIcon.appiconset/Icon-Spotlight-40@2x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/AppIcon.appiconset/Icon-Spotlight-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/AppIcon.appiconset/Icon-Spotlight-40@3x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/AppIcon.appiconset/Icon-Spotlight-41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/AppIcon.appiconset/Icon-Spotlight-41.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/AppIcon.appiconset/Icon-Spotlight-42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/AppIcon.appiconset/Icon-Spotlight-42.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/AppIcon.appiconset/Icon-iPadPro@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/AppIcon.appiconset/Icon-iPadPro@2x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/AppIcon.appiconset/iOS-Marketing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/AppIcon.appiconset/iOS-Marketing.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Loading/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Loading/Contents.json -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Loading/loading.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Loading/loading.imageset/Contents.json -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Loading/loading.imageset/loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Loading/loading.imageset/loading.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Loading/loading.imageset/loading@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Loading/loading.imageset/loading@2x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Loading/loading.imageset/loading@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Loading/loading.imageset/loading@3x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Other/433-x.imageset/433-x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Other/433-x.imageset/433-x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Other/433-x.imageset/433-x@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Other/433-x.imageset/433-x@2x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Other/433-x.imageset/433-x@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Other/433-x.imageset/433-x@3x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Other/433-x.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Other/433-x.imageset/Contents.json -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Other/436-plus.imageset/436-plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Other/436-plus.imageset/436-plus.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Other/436-plus.imageset/436-plus@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Other/436-plus.imageset/436-plus@2x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Other/436-plus.imageset/436-plus@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Other/436-plus.imageset/436-plus@3x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Other/436-plus.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Other/436-plus.imageset/Contents.json -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Other/511-copy-documents.imageset/511-copy-documents.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Other/511-copy-documents.imageset/511-copy-documents.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Other/511-copy-documents.imageset/511-copy-documents@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Other/511-copy-documents.imageset/511-copy-documents@2x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Other/511-copy-documents.imageset/511-copy-documents@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Other/511-copy-documents.imageset/511-copy-documents@3x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Other/511-copy-documents.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Other/511-copy-documents.imageset/Contents.json -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Other/703-download.imageset/703-download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Other/703-download.imageset/703-download.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Other/703-download.imageset/703-download@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Other/703-download.imageset/703-download@2x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Other/703-download.imageset/703-download@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Other/703-download.imageset/703-download@3x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Other/703-download.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Other/703-download.imageset/Contents.json -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Other/748-heart-toolbar-selected.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Other/748-heart-toolbar-selected.imageset/Contents.json -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Other/748-heart-toolbar.imageset/748-heart-toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Other/748-heart-toolbar.imageset/748-heart-toolbar.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Other/748-heart-toolbar.imageset/748-heart-toolbar@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Other/748-heart-toolbar.imageset/748-heart-toolbar@2x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Other/748-heart-toolbar.imageset/748-heart-toolbar@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Other/748-heart-toolbar.imageset/748-heart-toolbar@3x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Other/748-heart-toolbar.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Other/748-heart-toolbar.imageset/Contents.json -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Other/759-refresh-2-toolbar.imageset/759-refresh-2-toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Other/759-refresh-2-toolbar.imageset/759-refresh-2-toolbar.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Other/759-refresh-2-toolbar.imageset/759-refresh-2-toolbar@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Other/759-refresh-2-toolbar.imageset/759-refresh-2-toolbar@2x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Other/759-refresh-2-toolbar.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Other/759-refresh-2-toolbar.imageset/Contents.json -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Other/763-arrow-up-toolbar-selected.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Other/763-arrow-up-toolbar-selected.imageset/Contents.json -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Other/764-arrow-down-toolbar-selected.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Other/764-arrow-down-toolbar-selected.imageset/Contents.json -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Other/765-arrow-left-toolbar.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Other/765-arrow-left-toolbar.imageset/Contents.json -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Other/766-arrow-right-toolbar-selected.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Other/766-arrow-right-toolbar-selected.imageset/Contents.json -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Other/798-filter-toolbar.imageset/798-filter-toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Other/798-filter-toolbar.imageset/798-filter-toolbar.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Other/798-filter-toolbar.imageset/798-filter-toolbar@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Other/798-filter-toolbar.imageset/798-filter-toolbar@2x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Other/798-filter-toolbar.imageset/798-filter-toolbar@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Other/798-filter-toolbar.imageset/798-filter-toolbar@3x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Other/798-filter-toolbar.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Other/798-filter-toolbar.imageset/Contents.json -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Other/888-checkmark-toolbar-selected.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Other/888-checkmark-toolbar-selected.imageset/Contents.json -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Other/888-checkmark-toolbar.imageset/888-checkmark-toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Other/888-checkmark-toolbar.imageset/888-checkmark-toolbar.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Other/888-checkmark-toolbar.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Other/888-checkmark-toolbar.imageset/Contents.json -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Other/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Other/Contents.json -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Other/arrow-downward.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Other/arrow-downward.imageset/Contents.json -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Other/arrow-downward.imageset/arrow-downward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Other/arrow-downward.imageset/arrow-downward.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Other/arrow-downward.imageset/arrow-downward@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Other/arrow-downward.imageset/arrow-downward@2x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Other/arrow-downward.imageset/arrow-downward@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Other/arrow-downward.imageset/arrow-downward@3x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Other/arrow-rightward.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Other/arrow-rightward.imageset/Contents.json -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Other/arrow-rightward.imageset/arrow-rightward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Other/arrow-rightward.imageset/arrow-rightward.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Other/arrow-rightward.imageset/arrow-rightward@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Other/arrow-rightward.imageset/arrow-rightward@2x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Other/arrow-rightward.imageset/arrow-rightward@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Other/arrow-rightward.imageset/arrow-rightward@3x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Other/cool-placeholder.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Other/cool-placeholder.imageset/Contents.json -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Other/cool-placeholder.imageset/cool-placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Other/cool-placeholder.imageset/cool-placeholder.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Other/cool-placeholder.imageset/cool-placeholder@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Other/cool-placeholder.imageset/cool-placeholder@2x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Other/cool-placeholder.imageset/cool-placeholder@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Other/cool-placeholder.imageset/cool-placeholder@3x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Other/cute-placeholder.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Other/cute-placeholder.imageset/Contents.json -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Other/cute-placeholder.imageset/cute-placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Other/cute-placeholder.imageset/cute-placeholder.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Other/cute-placeholder.imageset/cute-placeholder@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Other/cute-placeholder.imageset/cute-placeholder@2x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Other/cute-placeholder.imageset/cute-placeholder@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Other/cute-placeholder.imageset/cute-placeholder@3x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Other/passtion-placeholder.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Other/passtion-placeholder.imageset/Contents.json -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Other/passtion-placeholder.imageset/passtion-placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Other/passtion-placeholder.imageset/passtion-placeholder.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Other/passtion-placeholder.imageset/passtion-placeholder@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Other/passtion-placeholder.imageset/passtion-placeholder@2x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Other/passtion-placeholder.imageset/passtion-placeholder@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Other/passtion-placeholder.imageset/passtion-placeholder@3x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Other/star.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Other/star.imageset/Contents.json -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Other/star.imageset/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Other/star.imageset/star.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Other/star.imageset/star@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Other/star.imageset/star@2x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Skill/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Skill/Contents.json -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Skill/all-round.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Skill/all-round.imageset/Contents.json -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Skill/all-round.imageset/all_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Skill/all-round.imageset/all_round.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Skill/all-round.imageset/all_round@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Skill/all-round.imageset/all_round@2x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Skill/all-round.imageset/all_round@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Skill/all-round.imageset/all_round@3x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Skill/combo-bonus.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Skill/combo-bonus.imageset/Contents.json -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Skill/combo-bonus.imageset/combo_bonus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Skill/combo-bonus.imageset/combo_bonus.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Skill/combo-bonus.imageset/combo_bonus@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Skill/combo-bonus.imageset/combo_bonus@2x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Skill/combo-bonus.imageset/combo_bonus@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Skill/combo-bonus.imageset/combo_bonus@3x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Skill/combo-continue.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Skill/combo-continue.imageset/Contents.json -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Skill/combo-continue.imageset/combo_continue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Skill/combo-continue.imageset/combo_continue.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Skill/combo-continue.imageset/combo_continue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Skill/combo-continue.imageset/combo_continue@2x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Skill/combo-continue.imageset/combo_continue@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Skill/combo-continue.imageset/combo_continue@3x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Skill/consentation.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Skill/consentation.imageset/Contents.json -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Skill/consentation.imageset/consentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Skill/consentation.imageset/consentation.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Skill/consentation.imageset/consentation@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Skill/consentation.imageset/consentation@2x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Skill/consentation.imageset/consentation@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Skill/consentation.imageset/consentation@3x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Skill/cute-focus.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Skill/cute-focus.imageset/Contents.json -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Skill/cute-focus.imageset/cute_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Skill/cute-focus.imageset/cute_focus.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Skill/cute-focus.imageset/cute_focus@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Skill/cute-focus.imageset/cute_focus@2x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Skill/cute-focus.imageset/cute_focus@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Skill/cute-focus.imageset/cute_focus@3x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Skill/damage-guard.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Skill/damage-guard.imageset/Contents.json -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Skill/damage-guard.imageset/damage_guide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Skill/damage-guard.imageset/damage_guide.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Skill/damage-guard.imageset/damage_guide@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Skill/damage-guard.imageset/damage_guide@2x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Skill/damage-guard.imageset/damage_guide@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Skill/damage-guard.imageset/damage_guide@3x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Skill/heal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Skill/heal.imageset/Contents.json -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Skill/heal.imageset/heal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Skill/heal.imageset/heal.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Skill/heal.imageset/heal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Skill/heal.imageset/heal@2x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Skill/heal.imageset/heal@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Skill/heal.imageset/heal@3x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Skill/mimic.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Skill/mimic.imageset/Contents.json -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Skill/mimic.imageset/mimic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Skill/mimic.imageset/mimic.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Skill/mimic.imageset/mimic@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Skill/mimic.imageset/mimic@2x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Skill/mimic.imageset/mimic@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Skill/mimic.imageset/mimic@3x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Skill/overload.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Skill/overload.imageset/Contents.json -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Skill/overload.imageset/overload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Skill/overload.imageset/overload.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Skill/overload.imageset/overload@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Skill/overload.imageset/overload@2x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Skill/overload.imageset/overload@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Skill/overload.imageset/overload@3x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Skill/passtion-focus.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Skill/passtion-focus.imageset/Contents.json -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Skill/passtion-focus.imageset/passtion_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Skill/passtion-focus.imageset/passtion_focus.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Skill/passtion-focus.imageset/passtion_focus@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Skill/passtion-focus.imageset/passtion_focus@2x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Skill/passtion-focus.imageset/passtion_focus@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Skill/passtion-focus.imageset/passtion_focus@3x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Skill/perfect-lock.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Skill/perfect-lock.imageset/Contents.json -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Skill/perfect-lock.imageset/perfect_lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Skill/perfect-lock.imageset/perfect_lock.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Skill/perfect-lock.imageset/perfect_lock@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Skill/perfect-lock.imageset/perfect_lock@2x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Skill/perfect-lock.imageset/perfect_lock@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Skill/perfect-lock.imageset/perfect_lock@3x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Skill/score-bonus.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Skill/score-bonus.imageset/Contents.json -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Skill/score-bonus.imageset/score_bonus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Skill/score-bonus.imageset/score_bonus.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Skill/score-bonus.imageset/score_bonus@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Skill/score-bonus.imageset/score_bonus@2x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Skill/score-bonus.imageset/score_bonus@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Skill/score-bonus.imageset/score_bonus@3x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Skill/skill-boost.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Skill/skill-boost.imageset/Contents.json -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Skill/skill-boost.imageset/skill_boost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Skill/skill-boost.imageset/skill_boost.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Skill/skill-boost.imageset/skill_boost@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Skill/skill-boost.imageset/skill_boost@2x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Skill/skill-boost.imageset/skill_boost@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Skill/skill-boost.imageset/skill_boost@3x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Song/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Song/Contents.json -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Song/song-all.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Song/song-all.imageset/Contents.json -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Song/song-all.imageset/song-all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Song/song-all.imageset/song-all.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Song/song-all.imageset/song-all@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Song/song-all.imageset/song-all@2x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Song/song-all.imageset/song-all@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Song/song-all.imageset/song-all@3x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Song/song-cool.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Song/song-cool.imageset/Contents.json -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Song/song-cool.imageset/song-cool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Song/song-cool.imageset/song-cool.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Song/song-cool.imageset/song-cool@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Song/song-cool.imageset/song-cool@2x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Song/song-cool.imageset/song-cool@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Song/song-cool.imageset/song-cool@3x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Song/song-cute.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Song/song-cute.imageset/Contents.json -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Song/song-cute.imageset/song-cute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Song/song-cute.imageset/song-cute.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Song/song-cute.imageset/song-cute@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Song/song-cute.imageset/song-cute@2x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Song/song-cute.imageset/song-cute@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Song/song-cute.imageset/song-cute@3x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Song/song-passion.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Song/song-passion.imageset/Contents.json -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Song/song-passion.imageset/song-passion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Song/song-passion.imageset/song-passion.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Song/song-passion.imageset/song-passion@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Song/song-passion.imageset/song-passion@2x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Song/song-passion.imageset/song-passion@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Song/song-passion.imageset/song-passion@3x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Tabbar/726-star-selected.imageset/726-star-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Tabbar/726-star-selected.imageset/726-star-selected.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Tabbar/726-star-selected.imageset/726-star-selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Tabbar/726-star-selected.imageset/726-star-selected@2x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Tabbar/726-star-selected.imageset/726-star-selected@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Tabbar/726-star-selected.imageset/726-star-selected@3x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Tabbar/726-star-selected.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Tabbar/726-star-selected.imageset/Contents.json -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Tabbar/726-star.imageset/726-star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Tabbar/726-star.imageset/726-star.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Tabbar/726-star.imageset/726-star@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Tabbar/726-star.imageset/726-star@2x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Tabbar/726-star.imageset/726-star@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Tabbar/726-star.imageset/726-star@3x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Tabbar/726-star.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Tabbar/726-star.imageset/Contents.json -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Tabbar/740-gear-selected.imageset/740-gear-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Tabbar/740-gear-selected.imageset/740-gear-selected.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Tabbar/740-gear-selected.imageset/740-gear-selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Tabbar/740-gear-selected.imageset/740-gear-selected@2x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Tabbar/740-gear-selected.imageset/740-gear-selected@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Tabbar/740-gear-selected.imageset/740-gear-selected@3x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Tabbar/740-gear-selected.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Tabbar/740-gear-selected.imageset/Contents.json -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Tabbar/740-gear.imageset/740-gear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Tabbar/740-gear.imageset/740-gear.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Tabbar/740-gear.imageset/740-gear@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Tabbar/740-gear.imageset/740-gear@2x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Tabbar/740-gear.imageset/740-gear@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Tabbar/740-gear.imageset/740-gear@3x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Tabbar/740-gear.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Tabbar/740-gear.imageset/Contents.json -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Tabbar/779-users-selected.imageset/779-users-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Tabbar/779-users-selected.imageset/779-users-selected.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Tabbar/779-users-selected.imageset/779-users-selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Tabbar/779-users-selected.imageset/779-users-selected@2x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Tabbar/779-users-selected.imageset/779-users-selected@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Tabbar/779-users-selected.imageset/779-users-selected@3x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Tabbar/779-users-selected.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Tabbar/779-users-selected.imageset/Contents.json -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Tabbar/779-users.imageset/779-users.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Tabbar/779-users.imageset/779-users.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Tabbar/779-users.imageset/779-users@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Tabbar/779-users.imageset/779-users@2x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Tabbar/779-users.imageset/779-users@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Tabbar/779-users.imageset/779-users@3x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Tabbar/779-users.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Tabbar/779-users.imageset/Contents.json -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Tabbar/833-diamond.imageset/833-diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Tabbar/833-diamond.imageset/833-diamond.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Tabbar/833-diamond.imageset/833-diamond@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Tabbar/833-diamond.imageset/833-diamond@2x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Tabbar/833-diamond.imageset/833-diamond@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Tabbar/833-diamond.imageset/833-diamond@3x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Tabbar/833-diamond.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Tabbar/833-diamond.imageset/Contents.json -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Tabbar/851-calendar.imageset/851-calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Tabbar/851-calendar.imageset/851-calendar.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Tabbar/851-calendar.imageset/851-calendar@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Tabbar/851-calendar.imageset/851-calendar@2x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Tabbar/851-calendar.imageset/851-calendar@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Tabbar/851-calendar.imageset/851-calendar@3x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Tabbar/851-calendar.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Tabbar/851-calendar.imageset/Contents.json -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Tabbar/898-music-note-selected.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Tabbar/898-music-note-selected.imageset/Contents.json -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Tabbar/898-music-note.imageset/898-music-note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Tabbar/898-music-note.imageset/898-music-note.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Tabbar/898-music-note.imageset/898-music-note@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Tabbar/898-music-note.imageset/898-music-note@2x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Tabbar/898-music-note.imageset/898-music-note@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Tabbar/898-music-note.imageset/898-music-note@3x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Tabbar/898-music-note.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Tabbar/898-music-note.imageset/Contents.json -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Tabbar/921-toolbox-selected.imageset/921-toolbox-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Tabbar/921-toolbox-selected.imageset/921-toolbox-selected.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Tabbar/921-toolbox-selected.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Tabbar/921-toolbox-selected.imageset/Contents.json -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Tabbar/921-toolbox.imageset/921-toolbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Tabbar/921-toolbox.imageset/921-toolbox.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Tabbar/921-toolbox.imageset/921-toolbox@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Tabbar/921-toolbox.imageset/921-toolbox@2x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Tabbar/921-toolbox.imageset/921-toolbox@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Tabbar/921-toolbox.imageset/921-toolbox@3x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Tabbar/921-toolbox.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Tabbar/921-toolbox.imageset/Contents.json -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Tabbar/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Tabbar/Contents.json -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Tabbar/musical_notes.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Tabbar/musical_notes.imageset/Contents.json -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Tabbar/musical_notes.imageset/musical_notes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Tabbar/musical_notes.imageset/musical_notes.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Tabbar/musical_notes.imageset/musical_notes@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Tabbar/musical_notes.imageset/musical_notes@2x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Tabbar/musical_notes.imageset/musical_notes@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Tabbar/musical_notes.imageset/musical_notes@3x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Tabbar/people.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Tabbar/people.imageset/Contents.json -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Tabbar/people.imageset/people.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Tabbar/people.imageset/people.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Tabbar/people.imageset/people@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Tabbar/people.imageset/people@2x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Tabbar/people.imageset/people@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Tabbar/people.imageset/people@3x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Tabbar/product.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Tabbar/product.imageset/Contents.json -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Tabbar/product.imageset/product.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Tabbar/product.imageset/product.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Tabbar/product.imageset/product@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Tabbar/product.imageset/product@2x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Tabbar/product.imageset/product@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Tabbar/product.imageset/product@3x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Tabbar/settings.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Tabbar/settings.imageset/Contents.json -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Tabbar/settings.imageset/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Tabbar/settings.imageset/settings.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Tabbar/settings.imageset/settings@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Tabbar/settings.imageset/settings@2x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Tabbar/settings.imageset/settings@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Tabbar/settings.imageset/settings@3x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Tabbar/stack_of_photos.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Tabbar/stack_of_photos.imageset/Contents.json -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Tabbar/stack_of_photos.imageset/stack_of_photos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Tabbar/stack_of_photos.imageset/stack_of_photos.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Tabbar/stack_of_photos.imageset/stack_of_photos@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Tabbar/stack_of_photos.imageset/stack_of_photos@2x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Tabbar/stack_of_photos.imageset/stack_of_photos@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Tabbar/stack_of_photos.imageset/stack_of_photos@3x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Toolbar/1110-rotate-toolbar-selected.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Toolbar/1110-rotate-toolbar-selected.imageset/Contents.json -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Toolbar/1110-rotate-toolbar.imageset/1110-rotate-toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Toolbar/1110-rotate-toolbar.imageset/1110-rotate-toolbar.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Toolbar/1110-rotate-toolbar.imageset/1110-rotate-toolbar@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Toolbar/1110-rotate-toolbar.imageset/1110-rotate-toolbar@2x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Toolbar/1110-rotate-toolbar.imageset/1110-rotate-toolbar@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Toolbar/1110-rotate-toolbar.imageset/1110-rotate-toolbar@3x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Toolbar/1110-rotate-toolbar.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Toolbar/1110-rotate-toolbar.imageset/Contents.json -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Toolbar/1241-play-toolbar.imageset/1241-play-toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Toolbar/1241-play-toolbar.imageset/1241-play-toolbar.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Toolbar/1241-play-toolbar.imageset/1241-play-toolbar@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Toolbar/1241-play-toolbar.imageset/1241-play-toolbar@2x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Toolbar/1241-play-toolbar.imageset/1241-play-toolbar@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Toolbar/1241-play-toolbar.imageset/1241-play-toolbar@3x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Toolbar/1241-play-toolbar.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Toolbar/1241-play-toolbar.imageset/Contents.json -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Toolbar/1242-pause-toolbar.imageset/1242-pause-toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Toolbar/1242-pause-toolbar.imageset/1242-pause-toolbar.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Toolbar/1242-pause-toolbar.imageset/1242-pause-toolbar@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Toolbar/1242-pause-toolbar.imageset/1242-pause-toolbar@2x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Toolbar/1242-pause-toolbar.imageset/1242-pause-toolbar@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Toolbar/1242-pause-toolbar.imageset/1242-pause-toolbar@3x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Toolbar/1242-pause-toolbar.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Toolbar/1242-pause-toolbar.imageset/Contents.json -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Toolbar/702-share-toolbar.imageset/702-share-toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Toolbar/702-share-toolbar.imageset/702-share-toolbar.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Toolbar/702-share-toolbar.imageset/702-share-toolbar@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Toolbar/702-share-toolbar.imageset/702-share-toolbar@2x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Toolbar/702-share-toolbar.imageset/702-share-toolbar@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Toolbar/702-share-toolbar.imageset/702-share-toolbar@3x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Toolbar/702-share-toolbar.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Toolbar/702-share-toolbar.imageset/Contents.json -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Toolbar/750-home-toolbar.imageset/750-home-toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Toolbar/750-home-toolbar.imageset/750-home-toolbar.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Toolbar/750-home-toolbar.imageset/750-home-toolbar@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Toolbar/750-home-toolbar.imageset/750-home-toolbar@2x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Toolbar/750-home-toolbar.imageset/750-home-toolbar@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Toolbar/750-home-toolbar.imageset/750-home-toolbar@3x.png -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Toolbar/750-home-toolbar.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Toolbar/750-home-toolbar.imageset/Contents.json -------------------------------------------------------------------------------- /DereGuide/Assets.xcassets/Toolbar/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Assets.xcassets/Toolbar/Contents.json -------------------------------------------------------------------------------- /DereGuide/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /DereGuide/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /DereGuide/Bridge-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Bridge-Header.h -------------------------------------------------------------------------------- /DereGuide/Card/Controller/BaseCardCollectionViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Card/Controller/BaseCardCollectionViewController.swift -------------------------------------------------------------------------------- /DereGuide/Card/Controller/BaseCardTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Card/Controller/BaseCardTableViewController.swift -------------------------------------------------------------------------------- /DereGuide/Card/Controller/CardFilterSortController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Card/Controller/CardFilterSortController.swift -------------------------------------------------------------------------------- /DereGuide/Card/Controller/CardImageController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Card/Controller/CardImageController.swift -------------------------------------------------------------------------------- /DereGuide/Card/Controller/CardTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Card/Controller/CardTableViewController.swift -------------------------------------------------------------------------------- /DereGuide/Card/Controller/SignImageController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Card/Controller/SignImageController.swift -------------------------------------------------------------------------------- /DereGuide/Card/Controller/SpreadImageViewAnimator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Card/Controller/SpreadImageViewAnimator.swift -------------------------------------------------------------------------------- /DereGuide/Card/Controller/SpreadImageViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Card/Controller/SpreadImageViewController.swift -------------------------------------------------------------------------------- /DereGuide/Card/Detail/Controller/CDCharaViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Card/Detail/Controller/CDCharaViewController.swift -------------------------------------------------------------------------------- /DereGuide/Card/Detail/Controller/CDImageViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Card/Detail/Controller/CDImageViewController.swift -------------------------------------------------------------------------------- /DereGuide/Card/Detail/Controller/CDTabController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Card/Detail/Controller/CDTabController.swift -------------------------------------------------------------------------------- /DereGuide/Card/Detail/Controller/CardDetailViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Card/Detail/Controller/CardDetailViewController.swift -------------------------------------------------------------------------------- /DereGuide/Card/Detail/Controller/GalleryImageItemBaseController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Card/Detail/Controller/GalleryImageItemBaseController.swift -------------------------------------------------------------------------------- /DereGuide/Card/Detail/View/CDImageTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Card/Detail/View/CDImageTableViewCell.swift -------------------------------------------------------------------------------- /DereGuide/Card/Detail/View/CDImageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Card/Detail/View/CDImageView.swift -------------------------------------------------------------------------------- /DereGuide/Card/Detail/View/CardDetailAppealCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Card/Detail/View/CardDetailAppealCell.swift -------------------------------------------------------------------------------- /DereGuide/Card/Detail/View/CardDetailBasicCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Card/Detail/View/CardDetailBasicCell.swift -------------------------------------------------------------------------------- /DereGuide/Card/Detail/View/CardDetailEvolutionCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Card/Detail/View/CardDetailEvolutionCell.swift -------------------------------------------------------------------------------- /DereGuide/Card/Detail/View/CardDetailLeaderSkillCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Card/Detail/View/CardDetailLeaderSkillCell.swift -------------------------------------------------------------------------------- /DereGuide/Card/Detail/View/CardDetailMVCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Card/Detail/View/CardDetailMVCell.swift -------------------------------------------------------------------------------- /DereGuide/Card/Detail/View/CardDetailMVPositionCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Card/Detail/View/CardDetailMVPositionCell.swift -------------------------------------------------------------------------------- /DereGuide/Card/Detail/View/CardDetailRelatedCardsCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Card/Detail/View/CardDetailRelatedCardsCell.swift -------------------------------------------------------------------------------- /DereGuide/Card/Detail/View/CardDetailRelativeStrengthCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Card/Detail/View/CardDetailRelativeStrengthCell.swift -------------------------------------------------------------------------------- /DereGuide/Card/Detail/View/CardDetailSkillCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Card/Detail/View/CardDetailSkillCell.swift -------------------------------------------------------------------------------- /DereGuide/Card/Detail/View/CardDetailSourceCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Card/Detail/View/CardDetailSourceCell.swift -------------------------------------------------------------------------------- /DereGuide/Card/View/CGSSCardIconView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Card/View/CGSSCardIconView.swift -------------------------------------------------------------------------------- /DereGuide/Card/View/CGSSCharaIconView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Card/View/CGSSCharaIconView.swift -------------------------------------------------------------------------------- /DereGuide/Card/View/CGSSIconView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Card/View/CGSSIconView.swift -------------------------------------------------------------------------------- /DereGuide/Card/View/CardAppealView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Card/View/CardAppealView.swift -------------------------------------------------------------------------------- /DereGuide/Card/View/CardCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Card/View/CardCollectionViewCell.swift -------------------------------------------------------------------------------- /DereGuide/Card/View/CardRankingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Card/View/CardRankingView.swift -------------------------------------------------------------------------------- /DereGuide/Card/View/CardTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Card/View/CardTableViewCell.swift -------------------------------------------------------------------------------- /DereGuide/Card/View/CardView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Card/View/CardView.swift -------------------------------------------------------------------------------- /DereGuide/Card/View/SpreadImageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Card/View/SpreadImageView.swift -------------------------------------------------------------------------------- /DereGuide/Common/APIClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Common/APIClient.swift -------------------------------------------------------------------------------- /DereGuide/Common/BaseRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Common/BaseRequest.swift -------------------------------------------------------------------------------- /DereGuide/Common/BaseSession.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Common/BaseSession.swift -------------------------------------------------------------------------------- /DereGuide/Common/BeatmapHashManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Common/BeatmapHashManager.swift -------------------------------------------------------------------------------- /DereGuide/Common/CGSSCacheManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Common/CGSSCacheManager.swift -------------------------------------------------------------------------------- /DereGuide/Common/CGSSCardFilter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Common/CGSSCardFilter.swift -------------------------------------------------------------------------------- /DereGuide/Common/CGSSCharFilter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Common/CGSSCharFilter.swift -------------------------------------------------------------------------------- /DereGuide/Common/CGSSClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Common/CGSSClient.swift -------------------------------------------------------------------------------- /DereGuide/Common/CGSSFavoriteManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Common/CGSSFavoriteManager.swift -------------------------------------------------------------------------------- /DereGuide/Common/CGSSFilter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Common/CGSSFilter.swift -------------------------------------------------------------------------------- /DereGuide/Common/CGSSGlobal.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Common/CGSSGlobal.swift -------------------------------------------------------------------------------- /DereGuide/Common/CGSSLiveFilter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Common/CGSSLiveFilter.swift -------------------------------------------------------------------------------- /DereGuide/Common/CGSSNotification.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Common/CGSSNotification.swift -------------------------------------------------------------------------------- /DereGuide/Common/CGSSSorter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Common/CGSSSorter.swift -------------------------------------------------------------------------------- /DereGuide/Common/CGSSSorterFilterManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Common/CGSSSorterFilterManager.swift -------------------------------------------------------------------------------- /DereGuide/Common/CGSSTypes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Common/CGSSTypes.swift -------------------------------------------------------------------------------- /DereGuide/Common/CGSSUpdater.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Common/CGSSUpdater.swift -------------------------------------------------------------------------------- /DereGuide/Common/CGSSVersionManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Common/CGSSVersionManager.swift -------------------------------------------------------------------------------- /DereGuide/Common/CloudKitSync/ApplicationActiveStateObserver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Common/CloudKitSync/ApplicationActiveStateObserver.swift -------------------------------------------------------------------------------- /DereGuide/Common/CloudKitSync/ChangeProcessor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Common/CloudKitSync/ChangeProcessor.swift -------------------------------------------------------------------------------- /DereGuide/Common/CloudKitSync/CloudKit+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Common/CloudKitSync/CloudKit+Extensions.swift -------------------------------------------------------------------------------- /DereGuide/Common/CloudKitSync/CloudKitMergePolicy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Common/CloudKitSync/CloudKitMergePolicy.swift -------------------------------------------------------------------------------- /DereGuide/Common/CloudKitSync/CoreData+Sync.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Common/CloudKitSync/CoreData+Sync.swift -------------------------------------------------------------------------------- /DereGuide/Common/CloudKitSync/EntityAndPredicate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Common/CloudKitSync/EntityAndPredicate.swift -------------------------------------------------------------------------------- /DereGuide/Common/CloudKitSync/FavoriteCardDownloader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Common/CloudKitSync/FavoriteCardDownloader.swift -------------------------------------------------------------------------------- /DereGuide/Common/CloudKitSync/FavoriteCardRemover.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Common/CloudKitSync/FavoriteCardRemover.swift -------------------------------------------------------------------------------- /DereGuide/Common/CloudKitSync/FavoriteCardUploader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Common/CloudKitSync/FavoriteCardUploader.swift -------------------------------------------------------------------------------- /DereGuide/Common/CloudKitSync/FavoriteCardsRemote.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Common/CloudKitSync/FavoriteCardsRemote.swift -------------------------------------------------------------------------------- /DereGuide/Common/CloudKitSync/FavoriteCharaDownloader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Common/CloudKitSync/FavoriteCharaDownloader.swift -------------------------------------------------------------------------------- /DereGuide/Common/CloudKitSync/FavoriteCharaRemover.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Common/CloudKitSync/FavoriteCharaRemover.swift -------------------------------------------------------------------------------- /DereGuide/Common/CloudKitSync/FavoriteCharaUploader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Common/CloudKitSync/FavoriteCharaUploader.swift -------------------------------------------------------------------------------- /DereGuide/Common/CloudKitSync/FavoriteCharasRemote.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Common/CloudKitSync/FavoriteCharasRemote.swift -------------------------------------------------------------------------------- /DereGuide/Common/CloudKitSync/FavoriteSongDownloader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Common/CloudKitSync/FavoriteSongDownloader.swift -------------------------------------------------------------------------------- /DereGuide/Common/CloudKitSync/FavoriteSongRemover.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Common/CloudKitSync/FavoriteSongRemover.swift -------------------------------------------------------------------------------- /DereGuide/Common/CloudKitSync/FavoriteSongUploader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Common/CloudKitSync/FavoriteSongUploader.swift -------------------------------------------------------------------------------- /DereGuide/Common/CloudKitSync/FavoriteSongsRemote.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Common/CloudKitSync/FavoriteSongsRemote.swift -------------------------------------------------------------------------------- /DereGuide/Common/CloudKitSync/InProgressTracker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Common/CloudKitSync/InProgressTracker.swift -------------------------------------------------------------------------------- /DereGuide/Common/CloudKitSync/MemberDownloader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Common/CloudKitSync/MemberDownloader.swift -------------------------------------------------------------------------------- /DereGuide/Common/CloudKitSync/MemberModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Common/CloudKitSync/MemberModifier.swift -------------------------------------------------------------------------------- /DereGuide/Common/CloudKitSync/MemberUploader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Common/CloudKitSync/MemberUploader.swift -------------------------------------------------------------------------------- /DereGuide/Common/CloudKitSync/MembersRemote.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Common/CloudKitSync/MembersRemote.swift -------------------------------------------------------------------------------- /DereGuide/Common/CloudKitSync/ProfileRemote.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Common/CloudKitSync/ProfileRemote.swift -------------------------------------------------------------------------------- /DereGuide/Common/CloudKitSync/Remote.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Common/CloudKitSync/Remote.swift -------------------------------------------------------------------------------- /DereGuide/Common/CloudKitSync/SyncContextOwner.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Common/CloudKitSync/SyncContextOwner.swift -------------------------------------------------------------------------------- /DereGuide/Common/CloudKitSync/SyncCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Common/CloudKitSync/SyncCoordinator.swift -------------------------------------------------------------------------------- /DereGuide/Common/CloudKitSync/UnitDownloader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Common/CloudKitSync/UnitDownloader.swift -------------------------------------------------------------------------------- /DereGuide/Common/CloudKitSync/UnitModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Common/CloudKitSync/UnitModifier.swift -------------------------------------------------------------------------------- /DereGuide/Common/CloudKitSync/UnitRemover.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Common/CloudKitSync/UnitRemover.swift -------------------------------------------------------------------------------- /DereGuide/Common/CloudKitSync/UnitUploader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Common/CloudKitSync/UnitUploader.swift -------------------------------------------------------------------------------- /DereGuide/Common/CloudKitSync/UnitsRemote.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Common/CloudKitSync/UnitsRemote.swift -------------------------------------------------------------------------------- /DereGuide/Common/CoreDataStack.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Common/CoreDataStack.swift -------------------------------------------------------------------------------- /DereGuide/Common/Debouncer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Common/Debouncer.swift -------------------------------------------------------------------------------- /DereGuide/Common/DeviceInformationManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Common/DeviceInformationManager.swift -------------------------------------------------------------------------------- /DereGuide/Common/FavoriteCardsManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Common/FavoriteCardsManager.swift -------------------------------------------------------------------------------- /DereGuide/Common/FavoriteCharasManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Common/FavoriteCharasManager.swift -------------------------------------------------------------------------------- /DereGuide/Common/FavoriteManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Common/FavoriteManager.swift -------------------------------------------------------------------------------- /DereGuide/Common/FavoriteSongsManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Common/FavoriteSongsManager.swift -------------------------------------------------------------------------------- /DereGuide/Common/LZ4Decompressor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Common/LZ4Decompressor.swift -------------------------------------------------------------------------------- /DereGuide/Common/LiveSimulationAdvanceOptionsManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Common/LiveSimulationAdvanceOptionsManager.swift -------------------------------------------------------------------------------- /DereGuide/Common/Protocols.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Common/Protocols.swift -------------------------------------------------------------------------------- /DereGuide/Common/UnitEditingAdvanceOptionsManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Common/UnitEditingAdvanceOptionsManager.swift -------------------------------------------------------------------------------- /DereGuide/Common/UserNotificationHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Common/UserNotificationHandler.swift -------------------------------------------------------------------------------- /DereGuide/Common/Version.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Common/Version.swift -------------------------------------------------------------------------------- /DereGuide/Controller/BaseFilterSortController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Controller/BaseFilterSortController.swift -------------------------------------------------------------------------------- /DereGuide/Controller/BaseModelCollectionViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Controller/BaseModelCollectionViewController.swift -------------------------------------------------------------------------------- /DereGuide/Controller/BaseModelTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Controller/BaseModelTableViewController.swift -------------------------------------------------------------------------------- /DereGuide/Controller/BaseNavigationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Controller/BaseNavigationController.swift -------------------------------------------------------------------------------- /DereGuide/Controller/BaseTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Controller/BaseTableViewController.swift -------------------------------------------------------------------------------- /DereGuide/Controller/BaseViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Controller/BaseViewController.swift -------------------------------------------------------------------------------- /DereGuide/Controller/RefreshableTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Controller/RefreshableTableViewController.swift -------------------------------------------------------------------------------- /DereGuide/Controller/TransitionAnimatorController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Controller/TransitionAnimatorController.swift -------------------------------------------------------------------------------- /DereGuide/Controller/TransitionableNavigationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Controller/TransitionableNavigationController.swift -------------------------------------------------------------------------------- /DereGuide/Controller/UITableViewController+NSFetchedResultsControllerDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Controller/UITableViewController+NSFetchedResultsControllerDelegate.swift -------------------------------------------------------------------------------- /DereGuide/DereGuide.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/DereGuide.entitlements -------------------------------------------------------------------------------- /DereGuide/DereGuide.xcdatamodeld/.xccurrentversion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/DereGuide.xcdatamodeld/.xccurrentversion -------------------------------------------------------------------------------- /DereGuide/DereGuide.xcdatamodeld/DereGuide 2.xcdatamodel/contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/DereGuide.xcdatamodeld/DereGuide 2.xcdatamodel/contents -------------------------------------------------------------------------------- /DereGuide/DereGuide.xcdatamodeld/DereGuide 3.xcdatamodel/contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/DereGuide.xcdatamodeld/DereGuide 3.xcdatamodel/contents -------------------------------------------------------------------------------- /DereGuide/DereGuide.xcdatamodeld/DereGuide 4.xcdatamodel/contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/DereGuide.xcdatamodeld/DereGuide 4.xcdatamodel/contents -------------------------------------------------------------------------------- /DereGuide/DereGuide.xcdatamodeld/DereGuide 5.xcdatamodel/contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/DereGuide.xcdatamodeld/DereGuide 5.xcdatamodel/contents -------------------------------------------------------------------------------- /DereGuide/DereGuide.xcdatamodeld/DereGuide.xcdatamodel/contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/DereGuide.xcdatamodeld/DereGuide.xcdatamodel/contents -------------------------------------------------------------------------------- /DereGuide/Extension/Array+SafeIndex.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Extension/Array+SafeIndex.swift -------------------------------------------------------------------------------- /DereGuide/Extension/DateExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Extension/DateExtension.swift -------------------------------------------------------------------------------- /DereGuide/Extension/DispatchSemaphore+Sync.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Extension/DispatchSemaphore+Sync.swift -------------------------------------------------------------------------------- /DereGuide/Extension/IntExtenstion.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Extension/IntExtenstion.swift -------------------------------------------------------------------------------- /DereGuide/Extension/NSAtributedStringExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Extension/NSAtributedStringExtension.swift -------------------------------------------------------------------------------- /DereGuide/Extension/NSUserDefaultsExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Extension/NSUserDefaultsExtension.swift -------------------------------------------------------------------------------- /DereGuide/Extension/StringExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Extension/StringExtension.swift -------------------------------------------------------------------------------- /DereGuide/Extension/TimeZoneExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Extension/TimeZoneExtension.swift -------------------------------------------------------------------------------- /DereGuide/Extension/UIActivityViewControllerExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Extension/UIActivityViewControllerExtension.swift -------------------------------------------------------------------------------- /DereGuide/Extension/UIAlertExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Extension/UIAlertExtension.swift -------------------------------------------------------------------------------- /DereGuide/Extension/UIColorExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Extension/UIColorExtension.swift -------------------------------------------------------------------------------- /DereGuide/Extension/UIFontExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Extension/UIFontExtension.swift -------------------------------------------------------------------------------- /DereGuide/Extension/UITextFieldExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Extension/UITextFieldExtension.swift -------------------------------------------------------------------------------- /DereGuide/Extension/UIViewControllerExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Extension/UIViewControllerExtension.swift -------------------------------------------------------------------------------- /DereGuide/Extension/UIViewExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Extension/UIViewExtension.swift -------------------------------------------------------------------------------- /DereGuide/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Info.plist -------------------------------------------------------------------------------- /DereGuide/Live/Controller/BaseLiveTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Live/Controller/BaseLiveTableViewController.swift -------------------------------------------------------------------------------- /DereGuide/Live/Controller/BeatmapAdvanceOptionsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Live/Controller/BeatmapAdvanceOptionsViewController.swift -------------------------------------------------------------------------------- /DereGuide/Live/Controller/BeatmapViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Live/Controller/BeatmapViewController.swift -------------------------------------------------------------------------------- /DereGuide/Live/Controller/LiveDetailViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Live/Controller/LiveDetailViewController.swift -------------------------------------------------------------------------------- /DereGuide/Live/Controller/LiveFilterSortController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Live/Controller/LiveFilterSortController.swift -------------------------------------------------------------------------------- /DereGuide/Live/Controller/LiveTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Live/Controller/LiveTableViewController.swift -------------------------------------------------------------------------------- /DereGuide/Live/Model/BpmShift.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Live/Model/BpmShift.plist -------------------------------------------------------------------------------- /DereGuide/Live/Model/CGSSBeatmap.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Live/Model/CGSSBeatmap.swift -------------------------------------------------------------------------------- /DereGuide/Live/Model/CGSSBeatmapNote.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Live/Model/CGSSBeatmapNote.swift -------------------------------------------------------------------------------- /DereGuide/Live/Model/CGSSBeatmapPlayer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Live/Model/CGSSBeatmapPlayer.swift -------------------------------------------------------------------------------- /DereGuide/Live/Model/CGSSBeatmapShiftingInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Live/Model/CGSSBeatmapShiftingInfo.swift -------------------------------------------------------------------------------- /DereGuide/Live/View/BeatmapColorThemeTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Live/View/BeatmapColorThemeTableViewCell.swift -------------------------------------------------------------------------------- /DereGuide/Live/View/BeatmapView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Live/View/BeatmapView.swift -------------------------------------------------------------------------------- /DereGuide/Live/View/LiveDetailView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Live/View/LiveDetailView.swift -------------------------------------------------------------------------------- /DereGuide/Live/View/LiveDifficultyView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Live/View/LiveDifficultyView.swift -------------------------------------------------------------------------------- /DereGuide/Live/View/LiveTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Live/View/LiveTableViewCell.swift -------------------------------------------------------------------------------- /DereGuide/LiveSimulator/LFDistribution.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/LiveSimulator/LFDistribution.swift -------------------------------------------------------------------------------- /DereGuide/LiveSimulator/LFSamplePoint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/LiveSimulator/LFSamplePoint.swift -------------------------------------------------------------------------------- /DereGuide/LiveSimulator/LSGame.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/LiveSimulator/LSGame.swift -------------------------------------------------------------------------------- /DereGuide/LiveSimulator/LSLog.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/LiveSimulator/LSLog.swift -------------------------------------------------------------------------------- /DereGuide/LiveSimulator/LSNote.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/LiveSimulator/LSNote.swift -------------------------------------------------------------------------------- /DereGuide/LiveSimulator/LSOptions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/LiveSimulator/LSOptions.swift -------------------------------------------------------------------------------- /DereGuide/LiveSimulator/LSRange.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/LiveSimulator/LSRange.swift -------------------------------------------------------------------------------- /DereGuide/LiveSimulator/LSResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/LiveSimulator/LSResult.swift -------------------------------------------------------------------------------- /DereGuide/LiveSimulator/LSScoreBonusGroup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/LiveSimulator/LSScoreBonusGroup.swift -------------------------------------------------------------------------------- /DereGuide/LiveSimulator/LSSkill.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/LiveSimulator/LSSkill.swift -------------------------------------------------------------------------------- /DereGuide/LiveSimulator/LiveCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/LiveSimulator/LiveCoordinator.swift -------------------------------------------------------------------------------- /DereGuide/LiveSimulator/LiveFormulator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/LiveSimulator/LiveFormulator.swift -------------------------------------------------------------------------------- /DereGuide/LiveSimulator/LiveSimulator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/LiveSimulator/LiveSimulator.swift -------------------------------------------------------------------------------- /DereGuide/Model/ApiInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Model/ApiInfo.swift -------------------------------------------------------------------------------- /DereGuide/Model/CGSSAppeal.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Model/CGSSAppeal.swift -------------------------------------------------------------------------------- /DereGuide/Model/CGSSBaseModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Model/CGSSBaseModel.swift -------------------------------------------------------------------------------- /DereGuide/Model/CGSSCard.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Model/CGSSCard.swift -------------------------------------------------------------------------------- /DereGuide/Model/CGSSCardRarity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Model/CGSSCardRarity.swift -------------------------------------------------------------------------------- /DereGuide/Model/CGSSChar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Model/CGSSChar.swift -------------------------------------------------------------------------------- /DereGuide/Model/CGSSDAO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Model/CGSSDAO.swift -------------------------------------------------------------------------------- /DereGuide/Model/CGSSGameResource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Model/CGSSGameResource.swift -------------------------------------------------------------------------------- /DereGuide/Model/CGSSLearderSkill.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Model/CGSSLearderSkill.swift -------------------------------------------------------------------------------- /DereGuide/Model/CGSSLive.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Model/CGSSLive.swift -------------------------------------------------------------------------------- /DereGuide/Model/CGSSLiveDetail.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Model/CGSSLiveDetail.swift -------------------------------------------------------------------------------- /DereGuide/Model/CGSSLiveScene.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Model/CGSSLiveScene.swift -------------------------------------------------------------------------------- /DereGuide/Model/CGSSRankedSkill.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Model/CGSSRankedSkill.swift -------------------------------------------------------------------------------- /DereGuide/Model/CGSSSkill.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Model/CGSSSkill.swift -------------------------------------------------------------------------------- /DereGuide/Model/CoreDataHelper/Collection+CoreDataExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Model/CoreDataHelper/Collection+CoreDataExtensions.swift -------------------------------------------------------------------------------- /DereGuide/Model/CoreDataHelper/CoreDataErrors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Model/CoreDataHelper/CoreDataErrors.swift -------------------------------------------------------------------------------- /DereGuide/Model/CoreDataHelper/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Model/CoreDataHelper/LICENSE.md -------------------------------------------------------------------------------- /DereGuide/Model/CoreDataHelper/Managed.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Model/CoreDataHelper/Managed.swift -------------------------------------------------------------------------------- /DereGuide/Model/CoreDataHelper/ManagedObjectObserver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Model/CoreDataHelper/ManagedObjectObserver.swift -------------------------------------------------------------------------------- /DereGuide/Model/CoreDataHelper/Migration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Model/CoreDataHelper/Migration.swift -------------------------------------------------------------------------------- /DereGuide/Model/CoreDataHelper/ModelBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Model/CoreDataHelper/ModelBuilder.swift -------------------------------------------------------------------------------- /DereGuide/Model/CoreDataHelper/ModelVersion.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Model/CoreDataHelper/ModelVersion.swift -------------------------------------------------------------------------------- /DereGuide/Model/CoreDataHelper/NSManagedObject+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Model/CoreDataHelper/NSManagedObject+Extensions.swift -------------------------------------------------------------------------------- /DereGuide/Model/CoreDataHelper/NSManagedObjectContext+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Model/CoreDataHelper/NSManagedObjectContext+Extensions.swift -------------------------------------------------------------------------------- /DereGuide/Model/CoreDataHelper/NSManagedObjectContext+Observers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Model/CoreDataHelper/NSManagedObjectContext+Observers.swift -------------------------------------------------------------------------------- /DereGuide/Model/CoreDataHelper/NSPersistentStoreCoordinator+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Model/CoreDataHelper/NSPersistentStoreCoordinator+Extensions.swift -------------------------------------------------------------------------------- /DereGuide/Model/CoreDataHelper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Model/CoreDataHelper/README.md -------------------------------------------------------------------------------- /DereGuide/Model/CoreDataHelper/Utilities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Model/CoreDataHelper/Utilities.swift -------------------------------------------------------------------------------- /DereGuide/Model/CoreDataHelper/ValueTransformer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Model/CoreDataHelper/ValueTransformer.swift -------------------------------------------------------------------------------- /DereGuide/Model/DataVersionPayload.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Model/DataVersionPayload.swift -------------------------------------------------------------------------------- /DereGuide/Model/Favorite/FavoriteCard.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Model/Favorite/FavoriteCard.swift -------------------------------------------------------------------------------- /DereGuide/Model/Favorite/FavoriteChara.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Model/Favorite/FavoriteChara.swift -------------------------------------------------------------------------------- /DereGuide/Model/Favorite/FavoriteSong.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Model/Favorite/FavoriteSong.swift -------------------------------------------------------------------------------- /DereGuide/Model/Favorite/RemoteFavoriteCard.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Model/Favorite/RemoteFavoriteCard.swift -------------------------------------------------------------------------------- /DereGuide/Model/Favorite/RemoteFavoriteChara.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Model/Favorite/RemoteFavoriteChara.swift -------------------------------------------------------------------------------- /DereGuide/Model/Favorite/RemoteFavoriteSong.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Model/Favorite/RemoteFavoriteSong.swift -------------------------------------------------------------------------------- /DereGuide/Model/Potential.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Model/Potential.swift -------------------------------------------------------------------------------- /DereGuide/Model/Profile/Profile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Model/Profile/Profile.swift -------------------------------------------------------------------------------- /DereGuide/Model/Profile/RemoteProfile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Model/Profile/RemoteProfile.swift -------------------------------------------------------------------------------- /DereGuide/Model/Protocol/DelayedDeletable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Model/Protocol/DelayedDeletable.swift -------------------------------------------------------------------------------- /DereGuide/Model/Protocol/IDSearchable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Model/Protocol/IDSearchable.swift -------------------------------------------------------------------------------- /DereGuide/Model/Protocol/LocalizedStringConvertible.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Model/Protocol/LocalizedStringConvertible.swift -------------------------------------------------------------------------------- /DereGuide/Model/Protocol/RemoteDeletable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Model/Protocol/RemoteDeletable.swift -------------------------------------------------------------------------------- /DereGuide/Model/Protocol/RemoteRefreshable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Model/Protocol/RemoteRefreshable.swift -------------------------------------------------------------------------------- /DereGuide/Model/Protocol/RemoteUpdatable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Model/Protocol/RemoteUpdatable.swift -------------------------------------------------------------------------------- /DereGuide/Model/Protocol/RemoteUploadable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Model/Protocol/RemoteUploadable.swift -------------------------------------------------------------------------------- /DereGuide/Model/Protocol/Syncable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Model/Protocol/Syncable.swift -------------------------------------------------------------------------------- /DereGuide/Model/Protocol/UpdateTimestampable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Model/Protocol/UpdateTimestampable.swift -------------------------------------------------------------------------------- /DereGuide/Model/Protocol/UserOwnable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Model/Protocol/UserOwnable.swift -------------------------------------------------------------------------------- /DereGuide/Model/Unit/Member.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Model/Unit/Member.swift -------------------------------------------------------------------------------- /DereGuide/Model/Unit/RemoteMember.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Model/Unit/RemoteMember.swift -------------------------------------------------------------------------------- /DereGuide/Model/Unit/RemoteUnit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Model/Unit/RemoteUnit.swift -------------------------------------------------------------------------------- /DereGuide/Model/Unit/Unit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Model/Unit/Unit.swift -------------------------------------------------------------------------------- /DereGuide/Model/Unit/UnitTemplate.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Model/Unit/UnitTemplate.plist -------------------------------------------------------------------------------- /DereGuide/Model/Unit/UnitTemplate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Model/Unit/UnitTemplate.swift -------------------------------------------------------------------------------- /DereGuide/Pods-DereGuide-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Pods-DereGuide-acknowledgements.plist -------------------------------------------------------------------------------- /DereGuide/Settings/Controller/DonationViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Settings/Controller/DonationViewController.swift -------------------------------------------------------------------------------- /DereGuide/Settings/Controller/DownloadImageViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Settings/Controller/DownloadImageViewController.swift -------------------------------------------------------------------------------- /DereGuide/Settings/Controller/LicenseViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Settings/Controller/LicenseViewController.swift -------------------------------------------------------------------------------- /DereGuide/Settings/Controller/PrivacyPolicyViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Settings/Controller/PrivacyPolicyViewController.swift -------------------------------------------------------------------------------- /DereGuide/Settings/Controller/SettingsTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Settings/Controller/SettingsTableViewController.swift -------------------------------------------------------------------------------- /DereGuide/Settings/Controller/WipeTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Settings/Controller/WipeTableViewController.swift -------------------------------------------------------------------------------- /DereGuide/Settings/PrivacyPolicy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Settings/PrivacyPolicy.md -------------------------------------------------------------------------------- /DereGuide/Settings/View/DonationCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Settings/View/DonationCell.swift -------------------------------------------------------------------------------- /DereGuide/Settings/View/DonationQAView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Settings/View/DonationQAView.swift -------------------------------------------------------------------------------- /DereGuide/Settings/View/LicenseTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Settings/View/LicenseTableViewCell.swift -------------------------------------------------------------------------------- /DereGuide/Settings/View/WipeTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Settings/View/WipeTableViewCell.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/BannerViewAnimator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/BannerViewAnimator.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/BirthdayNotification/BirthdayCenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/BirthdayNotification/BirthdayCenter.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/BirthdayNotification/BirthdayNotificationTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/BirthdayNotification/BirthdayNotificationTableViewCell.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/BirthdayNotification/BirthdayNotificationViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/BirthdayNotification/BirthdayNotificationViewController.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/CharaInfo/Controller/CharFilterSortController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/CharaInfo/Controller/CharFilterSortController.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/CharaInfo/Controller/CharaDetailViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/CharaInfo/Controller/CharaDetailViewController.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/CharaInfo/Controller/CharaTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/CharaInfo/Controller/CharaTableViewController.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/CharaInfo/View/CharProfileView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/CharaInfo/View/CharProfileView.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/CharaInfo/View/CharaDetailMVTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/CharaInfo/View/CharaDetailMVTableViewCell.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/CharaInfo/View/CharaDetailProfileTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/CharaInfo/View/CharaDetailProfileTableViewCell.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/CharaInfo/View/CharaDetailRelatedCardsTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/CharaInfo/View/CharaDetailRelatedCardsTableViewCell.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/CharaInfo/View/CharaProfileContentLabel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/CharaInfo/View/CharaProfileContentLabel.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/CharaInfo/View/CharaProfileItemView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/CharaInfo/View/CharaProfileItemView.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/CharaInfo/View/CharaProfileTitleLabel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/CharaInfo/View/CharaProfileTitleLabel.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/CharaInfo/View/CharaProfileTitleView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/CharaInfo/View/CharaProfileTitleView.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/CharaInfo/View/CharaTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/CharaInfo/View/CharaTableViewCell.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/CharaInfo/View/CharaView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/CharaInfo/View/CharaView.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/Colleague/Composing/Controller/CenterWantedEditingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/Colleague/Composing/Controller/CenterWantedEditingViewController.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/Colleague/Composing/Controller/ColleagueComposeViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/Colleague/Composing/Controller/ColleagueComposeViewController.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/Colleague/Composing/Controller/MyCenterEditingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/Colleague/Composing/Controller/MyCenterEditingViewController.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/Colleague/Composing/View/CenterWantedCardView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/Colleague/Composing/View/CenterWantedCardView.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/Colleague/Composing/View/CenterWantedEditingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/Colleague/Composing/View/CenterWantedEditingView.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/Colleague/Composing/View/CenterWantedGroupView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/Colleague/Composing/View/CenterWantedGroupView.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/Colleague/Composing/View/CenterWantedItemView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/Colleague/Composing/View/CenterWantedItemView.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/Colleague/Composing/View/ColleagueBaseCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/Colleague/Composing/View/ColleagueBaseCell.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/Colleague/Composing/View/ColleagueButtonsCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/Colleague/Composing/View/ColleagueButtonsCell.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/Colleague/Composing/View/ColleagueCentersWantedCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/Colleague/Composing/View/ColleagueCentersWantedCell.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/Colleague/Composing/View/ColleagueInputCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/Colleague/Composing/View/ColleagueInputCell.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/Colleague/Composing/View/ColleagueMessageCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/Colleague/Composing/View/ColleagueMessageCell.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/Colleague/Composing/View/ColleagueMyCentersCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/Colleague/Composing/View/ColleagueMyCentersCell.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/Colleague/Composing/View/ColleagueMyFreeCardsCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/Colleague/Composing/View/ColleagueMyFreeCardsCell.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/Colleague/Composing/View/FreeCardGroupView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/Colleague/Composing/View/FreeCardGroupView.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/Colleague/Composing/View/FreeCardItemView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/Colleague/Composing/View/FreeCardItemView.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/Colleague/Composing/View/MyCenterCardView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/Colleague/Composing/View/MyCenterCardView.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/Colleague/Composing/View/MyCenterEditingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/Colleague/Composing/View/MyCenterEditingView.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/Colleague/Composing/View/MyCenterGroupView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/Colleague/Composing/View/MyCenterGroupView.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/Colleague/Composing/View/MyCenterItemView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/Colleague/Composing/View/MyCenterItemView.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/Colleague/Controller/ColleagueViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/Colleague/Controller/ColleagueViewController.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/Colleague/DMComposing/Controller/DMComposingStepOneController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/Colleague/DMComposing/Controller/DMComposingStepOneController.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/Colleague/DMComposing/Controller/DMComposingStepTwoController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/Colleague/DMComposing/Controller/DMComposingStepTwoController.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/Colleague/DMComposing/View/ColleagueDescriptionCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/Colleague/DMComposing/View/ColleagueDescriptionCell.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/Colleague/Filter/Controller/ColleagueFilterController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/Colleague/Filter/Controller/ColleagueFilterController.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/Colleague/Filter/View/ColleagueFilterCardCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/Colleague/Filter/View/ColleagueFilterCardCell.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/Colleague/Filter/View/ColleagueFilterTypeCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/Colleague/Filter/View/ColleagueFilterTypeCell.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/Colleague/Model/DMCleared.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/Colleague/Model/DMCleared.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/Colleague/Model/DMLeaderCard.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/Colleague/Model/DMLeaderCard.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/Colleague/Model/DMPotential.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/Colleague/Model/DMPotential.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/Colleague/Model/DMProfile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/Colleague/Model/DMProfile.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/Colleague/Model/DMSupportCard.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/Colleague/Model/DMSupportCard.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/Colleague/Model/GameProfile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/Colleague/Model/GameProfile.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/Colleague/View/ColleagueTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/Colleague/View/ColleagueTableViewCell.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/EventInfo/Controller/EventChartController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/EventInfo/Controller/EventChartController.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/EventInfo/Controller/EventDetailController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/EventInfo/Controller/EventDetailController.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/EventInfo/Controller/EventFilterSortController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/EventInfo/Controller/EventFilterSortController.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/EventInfo/Controller/EventTrendViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/EventInfo/Controller/EventTrendViewController.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/EventInfo/Controller/EventViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/EventInfo/Controller/EventViewController.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/EventInfo/Model/CGSSEvent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/EventInfo/Model/CGSSEvent.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/EventInfo/Model/CGSSEventFilter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/EventInfo/Model/CGSSEventFilter.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/EventInfo/Model/EventLogItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/EventInfo/Model/EventLogItem.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/EventInfo/Model/EventRanking.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/EventInfo/Model/EventRanking.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/EventInfo/Model/EventRankingSpeed.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/EventInfo/Model/EventRankingSpeed.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/EventInfo/Model/EventTrend.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/EventInfo/Model/EventTrend.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/EventInfo/Model/RankingItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/EventInfo/Model/RankingItem.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/EventInfo/Model/RankingPage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/EventInfo/Model/RankingPage.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/EventInfo/View/EventCardView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/EventInfo/View/EventCardView.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/EventInfo/View/EventDetailView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/EventInfo/View/EventDetailView.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/EventInfo/View/EventPtView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/EventInfo/View/EventPtView.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/EventInfo/View/EventScoreView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/EventInfo/View/EventScoreView.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/EventInfo/View/EventTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/EventInfo/View/EventTableViewCell.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/EventInfo/View/EventTrendCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/EventInfo/View/EventTrendCell.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/Gacha/Controller/GachaCardFilterSortController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/Gacha/Controller/GachaCardFilterSortController.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/Gacha/Controller/GachaCardTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/Gacha/Controller/GachaCardTableViewController.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/Gacha/Controller/GachaFilterSortController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/Gacha/Controller/GachaFilterSortController.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/Gacha/Controller/GachaViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/Gacha/Controller/GachaViewController.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/Gacha/Detail/Controller/GachaDetailController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/Gacha/Detail/Controller/GachaDetailController.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/Gacha/Detail/View/GachaCardView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/Gacha/Detail/View/GachaCardView.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/Gacha/Detail/View/GachaDetailBannerCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/Gacha/Detail/View/GachaDetailBannerCell.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/Gacha/Detail/View/GachaDetailBasicCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/Gacha/Detail/View/GachaDetailBasicCell.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/Gacha/Detail/View/GachaDetailGuaranteesCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/Gacha/Detail/View/GachaDetailGuaranteesCell.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/Gacha/Detail/View/GachaDetailLoadingCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/Gacha/Detail/View/GachaDetailLoadingCell.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/Gacha/Detail/View/GachaDetailNewCardsCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/Gacha/Detail/View/GachaDetailNewCardsCell.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/Gacha/Detail/View/GachaDetailSimulatorCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/Gacha/Detail/View/GachaDetailSimulatorCell.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/Gacha/Detail/View/GachaResultCardView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/Gacha/Detail/View/GachaResultCardView.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/Gacha/Detail/View/GachaSimulatorView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/Gacha/Detail/View/GachaSimulatorView.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/Gacha/Model/CGSSGacha.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/Gacha/Model/CGSSGacha.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/Gacha/Model/CGSSGachaFilter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/Gacha/Model/CGSSGachaFilter.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/Gacha/Model/CardWithOdds.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/Gacha/Model/CardWithOdds.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/Gacha/Model/GachaOdds.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/Gacha/Model/GachaOdds.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/Gacha/Model/GachaSimulationResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/Gacha/Model/GachaSimulationResult.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/Gacha/View/GachaCardTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/Gacha/View/GachaCardTableViewCell.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/Gacha/View/GachaCardWithOddsListView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/Gacha/View/GachaCardWithOddsListView.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/Gacha/View/GachaTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/Gacha/View/GachaTableViewCell.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/MusicInfo/Controller/SongFilterSortController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/MusicInfo/Controller/SongFilterSortController.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/MusicInfo/Controller/SongViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/MusicInfo/Controller/SongViewController.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/MusicInfo/Detail/Controller/SongDetailController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/MusicInfo/Detail/Controller/SongDetailController.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/MusicInfo/Detail/View/SongDetailCoverFlowCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/MusicInfo/Detail/View/SongDetailCoverFlowCell.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/MusicInfo/Detail/View/SongDetailDescriptionCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/MusicInfo/Detail/View/SongDetailDescriptionCell.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/MusicInfo/Detail/View/SongDetailHeaderCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/MusicInfo/Detail/View/SongDetailHeaderCell.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/MusicInfo/Detail/View/SongDetailLiveCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/MusicInfo/Detail/View/SongDetailLiveCell.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/MusicInfo/Detail/View/SongDetailLiveDifficultyView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/MusicInfo/Detail/View/SongDetailLiveDifficultyView.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/MusicInfo/Detail/View/SongDetailPositionCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/MusicInfo/Detail/View/SongDetailPositionCell.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/MusicInfo/Detail/View/SongDetailPositionCharaItemView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/MusicInfo/Detail/View/SongDetailPositionCharaItemView.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/MusicInfo/Detail/View/SongJacketCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/MusicInfo/Detail/View/SongJacketCollectionViewCell.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/MusicInfo/Model/CGSSSong.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/MusicInfo/Model/CGSSSong.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/MusicInfo/Model/CGSSSongFilter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/MusicInfo/Model/CGSSSongFilter.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/MusicInfo/View/SongCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/MusicInfo/View/SongCollectionViewCell.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/ToolboxTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/ToolboxTableViewCell.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/ToolboxTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/ToolboxTableViewController.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/VersionLog/Model/VersionLog.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/VersionLog/Model/VersionLog.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/VersionLog/View/VLNoScheduleTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/VersionLog/View/VLNoScheduleTableViewCell.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/VersionLog/View/VLTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/VersionLog/View/VLTableViewCell.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/VersionLog/View/VLTableViewHeaderFooterView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/VersionLog/View/VLTableViewHeaderFooterView.swift -------------------------------------------------------------------------------- /DereGuide/Toolbox/VersionLog/ViewController/VLTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Toolbox/VersionLog/ViewController/VLTableViewController.swift -------------------------------------------------------------------------------- /DereGuide/Unit/Controller/UDTabViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Unit/Controller/UDTabViewController.swift -------------------------------------------------------------------------------- /DereGuide/Unit/Controller/UnitTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Unit/Controller/UnitTableViewController.swift -------------------------------------------------------------------------------- /DereGuide/Unit/Editing/Controller/MemberEditingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Unit/Editing/Controller/MemberEditingViewController.swift -------------------------------------------------------------------------------- /DereGuide/Unit/Editing/Controller/UnitCardSelectTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Unit/Editing/Controller/UnitCardSelectTableViewController.swift -------------------------------------------------------------------------------- /DereGuide/Unit/Editing/Controller/UnitCardSelectionAdvanceOptionsController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Unit/Editing/Controller/UnitCardSelectionAdvanceOptionsController.swift -------------------------------------------------------------------------------- /DereGuide/Unit/Editing/Controller/UnitEditingController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Unit/Editing/Controller/UnitEditingController.swift -------------------------------------------------------------------------------- /DereGuide/Unit/Editing/Controller/UnitTemplateController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Unit/Editing/Controller/UnitTemplateController.swift -------------------------------------------------------------------------------- /DereGuide/Unit/Editing/View/MemberEditingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Unit/Editing/View/MemberEditingView.swift -------------------------------------------------------------------------------- /DereGuide/Unit/Editing/View/MemberGroupView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Unit/Editing/View/MemberGroupView.swift -------------------------------------------------------------------------------- /DereGuide/Unit/Editing/View/RecentUsedMemberCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Unit/Editing/View/RecentUsedMemberCell.swift -------------------------------------------------------------------------------- /DereGuide/Unit/Editing/View/UnitTemplateCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Unit/Editing/View/UnitTemplateCell.swift -------------------------------------------------------------------------------- /DereGuide/Unit/Information/Controller/UnitInformationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Unit/Information/Controller/UnitInformationController.swift -------------------------------------------------------------------------------- /DereGuide/Unit/Information/View/UnitInformationAppealCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Unit/Information/View/UnitInformationAppealCell.swift -------------------------------------------------------------------------------- /DereGuide/Unit/Information/View/UnitInformationLeaderSkillCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Unit/Information/View/UnitInformationLeaderSkillCell.swift -------------------------------------------------------------------------------- /DereGuide/Unit/Information/View/UnitInformationSkillListCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Unit/Information/View/UnitInformationSkillListCell.swift -------------------------------------------------------------------------------- /DereGuide/Unit/Information/View/UnitInformationUnitCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Unit/Information/View/UnitInformationUnitCell.swift -------------------------------------------------------------------------------- /DereGuide/Unit/Information/View/UnitLeaderSkillView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Unit/Information/View/UnitLeaderSkillView.swift -------------------------------------------------------------------------------- /DereGuide/Unit/Simulation/Controller/LiveSimulatorModeSelectionViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Unit/Simulation/Controller/LiveSimulatorModeSelectionViewController.swift -------------------------------------------------------------------------------- /DereGuide/Unit/Simulation/Controller/LiveSimulatorViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Unit/Simulation/Controller/LiveSimulatorViewController.swift -------------------------------------------------------------------------------- /DereGuide/Unit/Simulation/Controller/ScoreDashboardController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Unit/Simulation/Controller/ScoreDashboardController.swift -------------------------------------------------------------------------------- /DereGuide/Unit/Simulation/Controller/SupportDashboardController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Unit/Simulation/Controller/SupportDashboardController.swift -------------------------------------------------------------------------------- /DereGuide/Unit/Simulation/Controller/UnitAdvanceCalculationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Unit/Simulation/Controller/UnitAdvanceCalculationController.swift -------------------------------------------------------------------------------- /DereGuide/Unit/Simulation/Controller/UnitAdvanceOptionsController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Unit/Simulation/Controller/UnitAdvanceOptionsController.swift -------------------------------------------------------------------------------- /DereGuide/Unit/Simulation/Controller/UnitSimulationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Unit/Simulation/Controller/UnitSimulationController.swift -------------------------------------------------------------------------------- /DereGuide/Unit/Simulation/Controller/UnitSimulationScoreDistributionController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Unit/Simulation/Controller/UnitSimulationScoreDistributionController.swift -------------------------------------------------------------------------------- /DereGuide/Unit/Simulation/Controller/UnitSongSelectViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Unit/Simulation/Controller/UnitSongSelectViewController.swift -------------------------------------------------------------------------------- /DereGuide/Unit/Simulation/View/DashboardSettingTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Unit/Simulation/View/DashboardSettingTableViewCell.swift -------------------------------------------------------------------------------- /DereGuide/Unit/Simulation/View/NoteScoreTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Unit/Simulation/View/NoteScoreTableViewCell.swift -------------------------------------------------------------------------------- /DereGuide/Unit/Simulation/View/NoteScoreTableViewSectionFooter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Unit/Simulation/View/NoteScoreTableViewSectionFooter.swift -------------------------------------------------------------------------------- /DereGuide/Unit/Simulation/View/NoteScoreTableViewSectionHeader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Unit/Simulation/View/NoteScoreTableViewSectionHeader.swift -------------------------------------------------------------------------------- /DereGuide/Unit/Simulation/View/NoteSupportTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Unit/Simulation/View/NoteSupportTableViewCell.swift -------------------------------------------------------------------------------- /DereGuide/Unit/Simulation/View/NoteSupportTableViewHeader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Unit/Simulation/View/NoteSupportTableViewHeader.swift -------------------------------------------------------------------------------- /DereGuide/Unit/Simulation/View/UnitAdvanceCalculationCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Unit/Simulation/View/UnitAdvanceCalculationCell.swift -------------------------------------------------------------------------------- /DereGuide/Unit/Simulation/View/UnitAdvanceCalculationResultView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Unit/Simulation/View/UnitAdvanceCalculationResultView.swift -------------------------------------------------------------------------------- /DereGuide/Unit/Simulation/View/UnitAdvanceDescriptionCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Unit/Simulation/View/UnitAdvanceDescriptionCell.swift -------------------------------------------------------------------------------- /DereGuide/Unit/Simulation/View/UnitAdvanceOptionsTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Unit/Simulation/View/UnitAdvanceOptionsTableViewCell.swift -------------------------------------------------------------------------------- /DereGuide/Unit/Simulation/View/UnitSimulationAppealEditingCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Unit/Simulation/View/UnitSimulationAppealEditingCell.swift -------------------------------------------------------------------------------- /DereGuide/Unit/Simulation/View/UnitSimulationCommonCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Unit/Simulation/View/UnitSimulationCommonCell.swift -------------------------------------------------------------------------------- /DereGuide/Unit/Simulation/View/UnitSimulationDescriptionCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Unit/Simulation/View/UnitSimulationDescriptionCell.swift -------------------------------------------------------------------------------- /DereGuide/Unit/Simulation/View/UnitSimulationLiveSelectCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Unit/Simulation/View/UnitSimulationLiveSelectCell.swift -------------------------------------------------------------------------------- /DereGuide/Unit/Simulation/View/UnitSimulationMainBodyCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Unit/Simulation/View/UnitSimulationMainBodyCell.swift -------------------------------------------------------------------------------- /DereGuide/Unit/Simulation/View/UnitSimulationModeSelectionCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Unit/Simulation/View/UnitSimulationModeSelectionCell.swift -------------------------------------------------------------------------------- /DereGuide/Unit/Simulation/View/UnitSimulationUnitCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Unit/Simulation/View/UnitSimulationUnitCell.swift -------------------------------------------------------------------------------- /DereGuide/Unit/View/UnitTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/Unit/View/UnitTableViewCell.swift -------------------------------------------------------------------------------- /DereGuide/View/BalloonMarker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/View/BalloonMarker.swift -------------------------------------------------------------------------------- /DereGuide/View/BannerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/View/BannerView.swift -------------------------------------------------------------------------------- /DereGuide/View/CGSSLoadingHUD.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/View/CGSSLoadingHUD.swift -------------------------------------------------------------------------------- /DereGuide/View/CGSSRefreshFooter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/View/CGSSRefreshFooter.swift -------------------------------------------------------------------------------- /DereGuide/View/CGSSRefreshHeader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/View/CGSSRefreshHeader.swift -------------------------------------------------------------------------------- /DereGuide/View/CGSSSearchBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/View/CGSSSearchBar.swift -------------------------------------------------------------------------------- /DereGuide/View/CGSSUpdatingHUDManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/View/CGSSUpdatingHUDManager.swift -------------------------------------------------------------------------------- /DereGuide/View/CheckBox.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/View/CheckBox.swift -------------------------------------------------------------------------------- /DereGuide/View/FilterItemView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/View/FilterItemView.swift -------------------------------------------------------------------------------- /DereGuide/View/FilterTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/View/FilterTableViewCell.swift -------------------------------------------------------------------------------- /DereGuide/View/GridLabel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/View/GridLabel.swift -------------------------------------------------------------------------------- /DereGuide/View/GridView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/View/GridView.swift -------------------------------------------------------------------------------- /DereGuide/View/IndicatorScrollView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/View/IndicatorScrollView.swift -------------------------------------------------------------------------------- /DereGuide/View/IndicatorTableView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/View/IndicatorTableView.swift -------------------------------------------------------------------------------- /DereGuide/View/LineView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/View/LineView.swift -------------------------------------------------------------------------------- /DereGuide/View/LoadingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/View/LoadingView.swift -------------------------------------------------------------------------------- /DereGuide/View/NavigationTitleLabel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/View/NavigationTitleLabel.swift -------------------------------------------------------------------------------- /DereGuide/View/Option/SegmentedOption.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/View/Option/SegmentedOption.swift -------------------------------------------------------------------------------- /DereGuide/View/Option/SliderOption.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/View/Option/SliderOption.swift -------------------------------------------------------------------------------- /DereGuide/View/Option/StepperOption.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/View/Option/StepperOption.swift -------------------------------------------------------------------------------- /DereGuide/View/Option/SwitchOption.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/View/Option/SwitchOption.swift -------------------------------------------------------------------------------- /DereGuide/View/Option/TextFieldOption.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/View/Option/TextFieldOption.swift -------------------------------------------------------------------------------- /DereGuide/View/PotentialValueStepper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/View/PotentialValueStepper.swift -------------------------------------------------------------------------------- /DereGuide/View/ReadableWidthTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/View/ReadableWidthTableViewCell.swift -------------------------------------------------------------------------------- /DereGuide/View/ScrollViewIndicator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/View/ScrollViewIndicator.swift -------------------------------------------------------------------------------- /DereGuide/View/SortTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/View/SortTableViewCell.swift -------------------------------------------------------------------------------- /DereGuide/View/StatusIndicator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/View/StatusIndicator.swift -------------------------------------------------------------------------------- /DereGuide/View/TimeStatusIndicator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/View/TimeStatusIndicator.swift -------------------------------------------------------------------------------- /DereGuide/View/TipView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/View/TipView.swift -------------------------------------------------------------------------------- /DereGuide/View/UpdatingStatusView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/View/UpdatingStatusView.swift -------------------------------------------------------------------------------- /DereGuide/View/ValueStepper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/View/ValueStepper.swift -------------------------------------------------------------------------------- /DereGuide/View/WideButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/View/WideButton.swift -------------------------------------------------------------------------------- /DereGuide/View/WideLoadingButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/View/WideLoadingButton.swift -------------------------------------------------------------------------------- /DereGuide/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /DereGuide/en.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /DereGuide/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /DereGuide/en.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/en.lproj/Main.strings -------------------------------------------------------------------------------- /DereGuide/en.lproj/ToolboxList.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/en.lproj/ToolboxList.plist -------------------------------------------------------------------------------- /DereGuide/ja.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/ja.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /DereGuide/ja.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /DereGuide/ja.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/ja.lproj/Localizable.strings -------------------------------------------------------------------------------- /DereGuide/ja.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/ja.lproj/Main.strings -------------------------------------------------------------------------------- /DereGuide/ja.lproj/ToolboxList.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/ja.lproj/ToolboxList.plist -------------------------------------------------------------------------------- /DereGuide/zh-Hans.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/zh-Hans.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /DereGuide/zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/zh-Hans.lproj/Localizable.strings -------------------------------------------------------------------------------- /DereGuide/zh-Hans.lproj/ToolboxList.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/zh-Hans.lproj/ToolboxList.plist -------------------------------------------------------------------------------- /DereGuide/zh-Hant-TW.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/zh-Hant-TW.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /DereGuide/zh-Hant-TW.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /DereGuide/zh-Hant-TW.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/zh-Hant-TW.lproj/Localizable.strings -------------------------------------------------------------------------------- /DereGuide/zh-Hant-TW.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/zh-Hant-TW.lproj/Main.strings -------------------------------------------------------------------------------- /DereGuide/zh-Hant-TW.lproj/ToolboxList.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/zh-Hant-TW.lproj/ToolboxList.plist -------------------------------------------------------------------------------- /DereGuide/zh-Hant.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/zh-Hant.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /DereGuide/zh-Hant.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /DereGuide/zh-Hant.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/zh-Hant.lproj/Localizable.strings -------------------------------------------------------------------------------- /DereGuide/zh-Hant.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/zh-Hant.lproj/Main.strings -------------------------------------------------------------------------------- /DereGuide/zh-Hant.lproj/ToolboxList.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuide/zh-Hant.lproj/ToolboxList.plist -------------------------------------------------------------------------------- /DereGuideTests/CGSSPotentialTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuideTests/CGSSPotentialTests.swift -------------------------------------------------------------------------------- /DereGuideTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuideTests/Info.plist -------------------------------------------------------------------------------- /DereGuideTests/LSRangeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuideTests/LSRangeTests.swift -------------------------------------------------------------------------------- /DereGuideTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuideTests/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /DereGuideTests/ja.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuideTests/ja.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /DereGuideTests/zh-Hant-TW.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuideTests/zh-Hant-TW.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /DereGuideTests/zh-Hant.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/DereGuideTests/zh-Hant.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gem "fastlane" 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/LICENSE -------------------------------------------------------------------------------- /Localizations/DereGuide/en.xcloc/Localized Contents/DereGuide/en.lproj/ToolboxList.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/Localizations/DereGuide/en.xcloc/Localized Contents/DereGuide/en.lproj/ToolboxList.plist -------------------------------------------------------------------------------- /Localizations/DereGuide/en.xcloc/Localized Contents/en.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/Localizations/DereGuide/en.xcloc/Localized Contents/en.xliff -------------------------------------------------------------------------------- /Localizations/DereGuide/en.xcloc/Source Contents/DereGuide/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/Localizations/DereGuide/en.xcloc/Source Contents/DereGuide/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Localizations/DereGuide/en.xcloc/contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/Localizations/DereGuide/en.xcloc/contents.json -------------------------------------------------------------------------------- /Localizations/DereGuide/ja.xcloc/Localized Contents/DereGuide/ja.lproj/ToolboxList.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/Localizations/DereGuide/ja.xcloc/Localized Contents/DereGuide/ja.lproj/ToolboxList.plist -------------------------------------------------------------------------------- /Localizations/DereGuide/ja.xcloc/Localized Contents/ja.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/Localizations/DereGuide/ja.xcloc/Localized Contents/ja.xliff -------------------------------------------------------------------------------- /Localizations/DereGuide/ja.xcloc/Source Contents/DereGuide/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/Localizations/DereGuide/ja.xcloc/Source Contents/DereGuide/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Localizations/DereGuide/ja.xcloc/contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/Localizations/DereGuide/ja.xcloc/contents.json -------------------------------------------------------------------------------- /Localizations/DereGuide/zh-Hant-TW.xcloc/Localized Contents/zh-Hant-TW.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/Localizations/DereGuide/zh-Hant-TW.xcloc/Localized Contents/zh-Hant-TW.xliff -------------------------------------------------------------------------------- /Localizations/DereGuide/zh-Hant-TW.xcloc/contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/Localizations/DereGuide/zh-Hant-TW.xcloc/contents.json -------------------------------------------------------------------------------- /Localizations/DereGuide/zh-Hant.xcloc/Localized Contents/zh-Hant.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/Localizations/DereGuide/zh-Hant.xcloc/Localized Contents/zh-Hant.xliff -------------------------------------------------------------------------------- /Localizations/DereGuide/zh-Hant.xcloc/contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/Localizations/DereGuide/zh-Hant.xcloc/contents.json -------------------------------------------------------------------------------- /Localizations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/Localizations/README.md -------------------------------------------------------------------------------- /Localizations/config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/Localizations/config.sh -------------------------------------------------------------------------------- /Localizations/export.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/Localizations/export.sh -------------------------------------------------------------------------------- /Localizations/import.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/Localizations/import.sh -------------------------------------------------------------------------------- /Localizations/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/Localizations/update.sh -------------------------------------------------------------------------------- /NotificationContent/BannerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/NotificationContent/BannerView.swift -------------------------------------------------------------------------------- /NotificationContent/Base.lproj/MainInterface.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/NotificationContent/Base.lproj/MainInterface.storyboard -------------------------------------------------------------------------------- /NotificationContent/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/NotificationContent/Info.plist -------------------------------------------------------------------------------- /NotificationContent/NotificationViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/NotificationContent/NotificationViewController.swift -------------------------------------------------------------------------------- /NotificationContent/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/NotificationContent/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /NotificationContent/ja.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/NotificationContent/ja.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /NotificationContent/zh-Hant-TW.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/NotificationContent/zh-Hant-TW.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /NotificationContent/zh-Hant.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/NotificationContent/zh-Hant.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/Podfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/README.md -------------------------------------------------------------------------------- /fastlane/Appfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/fastlane/Appfile -------------------------------------------------------------------------------- /fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/fastlane/Fastfile -------------------------------------------------------------------------------- /fastlane/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/fastlane/README.md -------------------------------------------------------------------------------- /force_update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superk589/DereGuide/HEAD/force_update.json --------------------------------------------------------------------------------