├── .claude └── settings.local.json ├── .editorconfig ├── .gitattributes ├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug-report--non-legality-.md │ ├── feature_request.md │ └── legality-parsing-report.md ├── PULL_REQUEST_TEMPLATE │ ├── pull_request_template_fix.md │ └── pull_request_template_improvement.md ├── README-de.md ├── README-es.md ├── README-fr.md ├── README-it.md ├── README-ko.md ├── README-zh-Hans.md ├── README-zh-Hant.md └── workflows │ └── plugin-release.yml ├── .gitignore ├── Directory.Build.props ├── LICENSE ├── PKHeX.Core ├── Editing │ ├── Applicators │ │ ├── BallApplicator.cs │ │ ├── CatchRateApplicator.cs │ │ ├── GenderApplicator.cs │ │ ├── HiddenPowerApplicator.cs │ │ ├── MarkingApplicator.cs │ │ ├── MemoryApplicator.cs │ │ ├── MoveApplicator.cs │ │ ├── MoveSetApplicator.cs │ │ ├── MoveShopRecordApplicator.cs │ │ ├── PersonalColorUtil.cs │ │ ├── PlusRecordApplicator.cs │ │ ├── RibbonApplicator.cs │ │ └── TechnicalRecordApplicator.cs │ ├── BattleTemplate │ │ ├── BattleTemplateConfig.cs │ │ ├── BattleTemplateDisplayStyle.cs │ │ ├── BattleTemplateExportSettings.cs │ │ ├── BattleTemplateLocalization.cs │ │ ├── BattleTemplateToken.cs │ │ ├── BattleTemplateTypeSetting.cs │ │ ├── Errors │ │ │ ├── BattleTemplateParseError.cs │ │ │ ├── BattleTemplateParseErrorLocalization.cs │ │ │ └── BattleTemplateParseErrorType.cs │ │ ├── IBattleTemplate.cs │ │ ├── MoveDisplayStyle.cs │ │ ├── Showdown │ │ │ ├── BattleTemplateTeams.cs │ │ │ ├── PokepasteTeam.cs │ │ │ ├── ShowdownParsing.cs │ │ │ ├── ShowdownSet.cs │ │ │ └── ShowdownTeam.cs │ │ ├── StatDisplayConfig.cs │ │ ├── StatDisplayStyle.cs │ │ └── StatParseResult.cs │ ├── Bulk │ │ ├── BatchEditing.cs │ │ ├── BatchEditor.cs │ │ ├── BatchFilters.cs │ │ ├── BatchInfo.cs │ │ ├── BatchMods.cs │ │ ├── ComplexSet │ │ │ ├── ComplexFilter.cs │ │ │ ├── ComplexSet.cs │ │ │ ├── IComplexFilter.cs │ │ │ ├── IComplexFilterMeta.cs │ │ │ ├── IComplexSet.cs │ │ │ └── MetaFilter.cs │ │ ├── IPropertyProvider.cs │ │ ├── ModifyResult.cs │ │ ├── StringInstruction.cs │ │ ├── StringInstructionSet.cs │ │ └── Suggestion │ │ │ ├── BatchModifications.cs │ │ │ ├── ComplexSuggestion.cs │ │ │ ├── ISuggestModification.cs │ │ │ └── TypeSuggestion.cs │ ├── CommonEdits.cs │ ├── Database │ │ └── TrainerDatabase.cs │ ├── HiddenPower.cs │ ├── IPKMView.cs │ ├── IPlugin.cs │ ├── ISaveFileProvider.cs │ ├── ISpriteBuilder.cs │ ├── LocationEdits.cs │ ├── NatureAmp.cs │ ├── PKM │ │ ├── EntitySuggestionUtil.cs │ │ ├── EntitySummary.cs │ │ ├── EntityTemplates.cs │ │ ├── ILegalMoveDisplaySource.cs │ │ ├── LegalMoveComboSource.cs │ │ ├── LegalMoveInfo.cs │ │ ├── LegalMoveSource.cs │ │ └── QR │ │ │ ├── QRMessageUtil.cs │ │ │ ├── QRPK7.cs │ │ │ └── QRPKM.cs │ ├── Pokerus.cs │ ├── PowerPotential.cs │ ├── Program │ │ ├── IProgramSettings.cs │ │ ├── IStartupSettings.cs │ │ ├── SaveFileLoadSetting.cs │ │ ├── Settings │ │ │ ├── AdvancedSettings.cs │ │ │ ├── BackupSettings.cs │ │ │ ├── EncounterDatabaseSettings.cs │ │ │ ├── EntityConverterSettings.cs │ │ │ ├── EntityDatabaseSettings.cs │ │ │ ├── EntityEditorSettings.cs │ │ │ ├── LocalResourceSettings.cs │ │ │ ├── MysteryGiftDatabaseSettings.cs │ │ │ ├── PrivacySettings.cs │ │ │ ├── ReportGridSettings.cs │ │ │ ├── SaveLanguageSettings.cs │ │ │ ├── SetImportSettings.cs │ │ │ ├── SlotWriteSettings.cs │ │ │ └── SoundSettings.cs │ │ ├── StartupArguments.cs │ │ └── StartupUtil.cs │ ├── Saves │ │ ├── BoxManip │ │ │ ├── BoxManipBase.cs │ │ │ ├── BoxManipClear.cs │ │ │ ├── BoxManipClearComplex.cs │ │ │ ├── BoxManipClearDuplicate.cs │ │ │ ├── BoxManipDefaults.cs │ │ │ ├── BoxManipModify.cs │ │ │ ├── BoxManipModifyComplex.cs │ │ │ ├── BoxManipParam.cs │ │ │ ├── BoxManipSort.cs │ │ │ ├── BoxManipSortComplex.cs │ │ │ ├── BoxManipType.cs │ │ │ ├── BoxManipUtil.cs │ │ │ ├── BoxManipulator.cs │ │ │ └── IBoxManip.cs │ │ ├── Editors │ │ │ ├── EventOld │ │ │ │ ├── EventLabelCollection.cs │ │ │ │ ├── EventLabelCollectionSystem.cs │ │ │ │ ├── EventLabelParsing.cs │ │ │ │ ├── EventWorkspace.cs │ │ │ │ ├── NamedEventType.cs │ │ │ │ ├── NamedEventValue.cs │ │ │ │ └── NamedEventWork.cs │ │ │ ├── EventUnlock │ │ │ │ ├── EventUnlocker.cs │ │ │ │ └── EventUnlocker8b.cs │ │ │ ├── EventWork │ │ │ │ ├── Diff │ │ │ │ │ ├── EventWorkDiff.cs │ │ │ │ │ ├── EventWorkDiff7b.cs │ │ │ │ │ ├── EventWorkDiff8b.cs │ │ │ │ │ ├── EventWorkDiffCompatibility.cs │ │ │ │ │ └── IEventWorkDiff.cs │ │ │ │ ├── EventFlag.cs │ │ │ │ ├── EventVar.cs │ │ │ │ ├── EventVarGroup.cs │ │ │ │ ├── EventWork.cs │ │ │ │ ├── EventWorkUtil.cs │ │ │ │ ├── EventWorkVal.cs │ │ │ │ └── SplitEventEditor.cs │ │ │ ├── FakePKMEditor.cs │ │ │ ├── FakeSaveFile.cs │ │ │ └── SaveDataEditor.cs │ │ ├── Management │ │ │ ├── INamedFolderPath.cs │ │ │ └── SavePreview.cs │ │ └── Slots │ │ │ ├── BoxEdit.cs │ │ │ ├── Exporting │ │ │ ├── BoxExport.cs │ │ │ └── BoxExportSettings.cs │ │ │ ├── Extensions.cs │ │ │ ├── ISlotViewer.cs │ │ │ ├── Info │ │ │ ├── ISlotInfo.cs │ │ │ ├── SlotCache.cs │ │ │ ├── SlotInfoBox.cs │ │ │ ├── SlotInfoFile.cs │ │ │ ├── SlotInfoLoader.cs │ │ │ ├── SlotInfoMisc.cs │ │ │ ├── SlotInfoParty.cs │ │ │ └── WriteBlockedMessage.cs │ │ │ ├── SlotChangelog.cs │ │ │ ├── SlotEditor.cs │ │ │ ├── SlotPublisher.cs │ │ │ ├── SlotTouchResult.cs │ │ │ ├── SlotTouchType.cs │ │ │ ├── SlotViewInfo.cs │ │ │ └── StorageSlotType.cs │ └── WurmpleUtil.cs ├── Game │ ├── ComboItem.cs │ ├── Enums │ │ ├── Ability.cs │ │ ├── Ball.cs │ │ ├── GCVersion.cs │ │ ├── GameVersion.cs │ │ ├── Gender.cs │ │ ├── LanguageBR.cs │ │ ├── LanguageGC.cs │ │ ├── LanguageID.cs │ │ ├── Move.cs │ │ ├── MoveType.cs │ │ ├── Nature.cs │ │ ├── Region3DSIndex.cs │ │ └── Species.cs │ ├── GameStrings │ │ ├── FilteredGameDataSource.cs │ │ ├── GameDataSource.cs │ │ ├── GameInfo.cs │ │ ├── GameLanguage.cs │ │ ├── GameStrings.cs │ │ ├── GeoLocation.cs │ │ ├── LocationSet │ │ │ ├── ILocationSet.cs │ │ │ ├── LocationSet0.cs │ │ │ ├── LocationSet4.cs │ │ │ └── LocationSet6.cs │ │ ├── MemoryStrings.cs │ │ ├── MetDataSource.cs │ │ └── ProgramLanguage.cs │ ├── GameUtil.cs │ ├── IBasicStrings.cs │ └── Locations │ │ ├── Locations.cs │ │ ├── Locations4.cs │ │ ├── Locations5.cs │ │ ├── Locations6.cs │ │ ├── Locations7.cs │ │ ├── Locations7b.cs │ │ ├── Locations8.cs │ │ ├── Locations8a.cs │ │ ├── Locations8b.cs │ │ ├── Locations9.cs │ │ ├── Locations9a.cs │ │ └── LocationsHOME.cs ├── Items │ ├── HeldItemLumpImage.cs │ ├── IItemStorage.cs │ ├── ItemStorage1.cs │ ├── ItemStorage2.cs │ ├── ItemStorage3Colo.cs │ ├── ItemStorage3E.cs │ ├── ItemStorage3FRLG.cs │ ├── ItemStorage3RS.cs │ ├── ItemStorage3XD.cs │ ├── ItemStorage4.cs │ ├── ItemStorage4DP.cs │ ├── ItemStorage4HGSS.cs │ ├── ItemStorage4Pt.cs │ ├── ItemStorage5.cs │ ├── ItemStorage5B2W2.cs │ ├── ItemStorage5BW.cs │ ├── ItemStorage6AO.cs │ ├── ItemStorage6XY.cs │ ├── ItemStorage7GG.cs │ ├── ItemStorage7SM.cs │ ├── ItemStorage7USUM.cs │ ├── ItemStorage8BDSP.cs │ ├── ItemStorage8LA.cs │ ├── ItemStorage8SWSH.cs │ ├── ItemStorage9SV.cs │ └── ItemStorage9ZA.cs ├── Legality │ ├── Assets │ │ ├── BinLinkerAccessor.cs │ │ ├── BinLinkerAccessor16.cs │ │ └── BinLinkerWriter.cs │ ├── Breeding.cs │ ├── Bulk │ │ ├── BulkAnalysis.cs │ │ ├── BulkCheckResult.cs │ │ ├── CombinedReference.cs │ │ ├── DuplicateEncryptionChecker.cs │ │ ├── DuplicateGiftChecker.cs │ │ ├── DuplicatePIDChecker.cs │ │ ├── DuplicateTrainerChecker.cs │ │ ├── ExternalBulkCheck.cs │ │ ├── HandlerChecker.cs │ │ ├── IBulkAnalyzer.cs │ │ ├── IExternalBulkChecker.cs │ │ ├── SaveFile │ │ │ ├── DuplicateFusionChecker.cs │ │ │ └── DuplicateMegaChecker.cs │ │ └── StandardCloneChecker.cs │ ├── BulkGenerator.cs │ ├── Encounters │ │ ├── Data │ │ │ ├── EncounterEvent.cs │ │ │ ├── EncounterUtil.cs │ │ │ ├── Gen1 │ │ │ │ ├── Encounters1.cs │ │ │ │ ├── Encounters1GBEra.cs │ │ │ │ └── Encounters1VC.cs │ │ │ ├── Gen2 │ │ │ │ ├── Encounters2.cs │ │ │ │ └── Encounters2GBEra.cs │ │ │ ├── Gen3 │ │ │ │ ├── Encounters3Colo.cs │ │ │ │ ├── Encounters3ColoShadow.cs │ │ │ │ ├── Encounters3ColoTeams.cs │ │ │ │ ├── Encounters3FRLG.cs │ │ │ │ ├── Encounters3RSE.cs │ │ │ │ ├── Encounters3XD.cs │ │ │ │ ├── Encounters3XDShadow.cs │ │ │ │ ├── Encounters3XDTeams.cs │ │ │ │ └── EncountersWC3.cs │ │ │ ├── Gen4 │ │ │ │ ├── Encounters4DPPt.cs │ │ │ │ └── Encounters4HGSS.cs │ │ │ ├── Gen5 │ │ │ │ ├── Encounters5B2W2.cs │ │ │ │ ├── Encounters5BW.cs │ │ │ │ └── Encounters5DR.cs │ │ │ ├── Gen6 │ │ │ │ ├── Encounters6AO.cs │ │ │ │ └── Encounters6XY.cs │ │ │ ├── Gen7 │ │ │ │ ├── Encounters7GG.cs │ │ │ │ ├── Encounters7SM.cs │ │ │ │ └── Encounters7USUM.cs │ │ │ ├── Gen8 │ │ │ │ ├── Encounters8.cs │ │ │ │ ├── Encounters8Nest.cs │ │ │ │ ├── Encounters8a.cs │ │ │ │ └── Encounters8b.cs │ │ │ ├── Gen9 │ │ │ │ ├── Encounters9.cs │ │ │ │ └── Encounters9a.cs │ │ │ └── Live │ │ │ │ ├── DistributionWindow.cs │ │ │ │ ├── EncounterServerDate.cs │ │ │ │ ├── EncounterServerDateCheck.cs │ │ │ │ ├── EncountersGO.cs │ │ │ │ └── IEncounterServerDate.cs │ │ ├── Generator │ │ │ ├── ByGeneration │ │ │ │ ├── EncounterGenerator1.cs │ │ │ │ ├── EncounterGenerator2.cs │ │ │ │ ├── EncounterGenerator3.cs │ │ │ │ ├── EncounterGenerator3GC.cs │ │ │ │ ├── EncounterGenerator4.cs │ │ │ │ ├── EncounterGenerator5.cs │ │ │ │ ├── EncounterGenerator6.cs │ │ │ │ ├── EncounterGenerator7.cs │ │ │ │ ├── EncounterGenerator7GG.cs │ │ │ │ ├── EncounterGenerator7GO.cs │ │ │ │ ├── EncounterGenerator8.cs │ │ │ │ ├── EncounterGenerator8GO.cs │ │ │ │ ├── EncounterGenerator8a.cs │ │ │ │ ├── EncounterGenerator8b.cs │ │ │ │ ├── EncounterGenerator9.cs │ │ │ │ ├── EncounterGenerator9a.cs │ │ │ │ ├── EncounterStateUtil.cs │ │ │ │ └── Lump │ │ │ │ │ ├── EncounterGenerator12.cs │ │ │ │ │ ├── EncounterGenerator7X.cs │ │ │ │ │ ├── EncounterGenerator8X.cs │ │ │ │ │ ├── EncounterGenerator9X.cs │ │ │ │ │ ├── EncounterGeneratorDummy.cs │ │ │ │ │ ├── EncounterGeneratorGO.cs │ │ │ │ │ └── IEncounterGenerator.cs │ │ │ ├── EncounterCriteria.cs │ │ │ ├── EncounterFinder.cs │ │ │ ├── EncounterGenerator.cs │ │ │ ├── EncounterMutation.cs │ │ │ ├── Moveset │ │ │ │ ├── EncounterMovesetGenerator.cs │ │ │ │ └── EncounterTypeGroup.cs │ │ │ ├── PeekEnumerator.cs │ │ │ ├── Possible │ │ │ │ ├── EncounterPossible1.cs │ │ │ │ ├── EncounterPossible2.cs │ │ │ │ ├── EncounterPossible3.cs │ │ │ │ ├── EncounterPossible3GC.cs │ │ │ │ ├── EncounterPossible4.cs │ │ │ │ ├── EncounterPossible5.cs │ │ │ │ ├── EncounterPossible6.cs │ │ │ │ ├── EncounterPossible7.cs │ │ │ │ ├── EncounterPossible7GG.cs │ │ │ │ ├── EncounterPossible7GO.cs │ │ │ │ ├── EncounterPossible8.cs │ │ │ │ ├── EncounterPossible8GO.cs │ │ │ │ ├── EncounterPossible8a.cs │ │ │ │ ├── EncounterPossible8b.cs │ │ │ │ ├── EncounterPossible9.cs │ │ │ │ └── EncounterPossible9a.cs │ │ │ └── Search │ │ │ │ ├── Dirtied │ │ │ │ ├── EncounterEnumerator8bSWSH.cs │ │ │ │ └── EncounterEnumerator9SWSH.cs │ │ │ │ ├── EncounterEnumerator1.cs │ │ │ │ ├── EncounterEnumerator2.cs │ │ │ │ ├── EncounterEnumerator3.cs │ │ │ │ ├── EncounterEnumerator3GC.cs │ │ │ │ ├── EncounterEnumerator4.cs │ │ │ │ ├── EncounterEnumerator5.cs │ │ │ │ ├── EncounterEnumerator6.cs │ │ │ │ ├── EncounterEnumerator7.cs │ │ │ │ ├── EncounterEnumerator7GG.cs │ │ │ │ ├── EncounterEnumerator7GO.cs │ │ │ │ ├── EncounterEnumerator8.cs │ │ │ │ ├── EncounterEnumerator8GO.cs │ │ │ │ ├── EncounterEnumerator8a.cs │ │ │ │ ├── EncounterEnumerator8b.cs │ │ │ │ ├── EncounterEnumerator9.cs │ │ │ │ ├── EncounterEnumerator9a.cs │ │ │ │ └── MatchedEncounter.cs │ │ ├── Information │ │ │ ├── EncounterDate.cs │ │ │ ├── EncounterLearn.cs │ │ │ ├── EncounterSuggestion.cs │ │ │ ├── EncounterSuggestionData.cs │ │ │ ├── EncounterSummary.cs │ │ │ └── EncounterText.cs │ │ ├── Templates │ │ │ ├── Enums │ │ │ │ ├── AbilityPermission.cs │ │ │ │ ├── EncounterMatchRating.cs │ │ │ │ ├── HiddenAbilityPermission.cs │ │ │ │ └── Shiny.cs │ │ │ ├── GO │ │ │ │ ├── EncounterArea7g.cs │ │ │ │ ├── EncounterArea8g.cs │ │ │ │ ├── EncounterSlot7GO.cs │ │ │ │ ├── EncounterSlot8GO.cs │ │ │ │ ├── IPogoDateRange.cs │ │ │ │ ├── IPogoSlot.cs │ │ │ │ └── PogoType.cs │ │ │ ├── Gen1 │ │ │ │ ├── EncounterArea1.cs │ │ │ │ ├── EncounterGift1.cs │ │ │ │ ├── EncounterSlot1.cs │ │ │ │ ├── EncounterStatic1.cs │ │ │ │ └── EncounterTrade1.cs │ │ │ ├── Gen2 │ │ │ │ ├── EncounterArea2.cs │ │ │ │ ├── EncounterEgg2.cs │ │ │ │ ├── EncounterGift2.cs │ │ │ │ ├── EncounterSlot2.cs │ │ │ │ ├── EncounterStatic2.cs │ │ │ │ ├── EncounterTime.cs │ │ │ │ └── EncounterTrade2.cs │ │ │ ├── Gen3 │ │ │ │ ├── Colo │ │ │ │ │ ├── EncounterGift3Colo.cs │ │ │ │ │ ├── EncounterShadow3Colo.cs │ │ │ │ │ ├── EncounterStarter3Colo.cs │ │ │ │ │ └── IShadow3.cs │ │ │ │ ├── EncounterArea3.cs │ │ │ │ ├── EncounterEgg3.cs │ │ │ │ ├── EncounterSlot3.cs │ │ │ │ ├── EncounterSlot3Swarm.cs │ │ │ │ ├── EncounterStatic3.cs │ │ │ │ ├── EncounterTrade3.cs │ │ │ │ ├── Gifts │ │ │ │ │ ├── Distribution3JPN.cs │ │ │ │ │ ├── Distribution3NY.cs │ │ │ │ │ ├── EncounterGift3.cs │ │ │ │ │ ├── EncounterGift3JPN.cs │ │ │ │ │ └── EncounterGift3NY.cs │ │ │ │ └── XD │ │ │ │ │ ├── EncounterArea3XD.cs │ │ │ │ │ ├── EncounterShadow3XD.cs │ │ │ │ │ ├── EncounterSlot3XD.cs │ │ │ │ │ ├── EncounterStatic3XD.cs │ │ │ │ │ └── EncounterTrade3XD.cs │ │ │ ├── Gen4 │ │ │ │ ├── EncounterArea4.cs │ │ │ │ ├── EncounterEgg4.cs │ │ │ │ ├── EncounterSlot4.cs │ │ │ │ ├── EncounterStatic4.cs │ │ │ │ ├── EncounterStatic4Pokewalker.cs │ │ │ │ ├── EncounterTrade4PID.cs │ │ │ │ ├── EncounterTrade4RanchGift.cs │ │ │ │ ├── GroundTileAllowed.cs │ │ │ │ ├── IGroundTypeTile.cs │ │ │ │ └── PokewalkerCourse4.cs │ │ │ ├── Gen5 │ │ │ │ ├── DreamWorldEntry.cs │ │ │ │ ├── EncounterArea5.cs │ │ │ │ ├── EncounterEgg5.cs │ │ │ │ ├── EncounterSlot5.cs │ │ │ │ ├── EncounterStatic5.cs │ │ │ │ ├── EncounterStatic5Entree.cs │ │ │ │ ├── EncounterStatic5N.cs │ │ │ │ ├── EncounterStatic5Radar.cs │ │ │ │ ├── EncounterTrade5B2W2.cs │ │ │ │ └── EncounterTrade5BW.cs │ │ │ ├── Gen6 │ │ │ │ ├── EncounterArea6AO.cs │ │ │ │ ├── EncounterArea6XY.cs │ │ │ │ ├── EncounterEgg6.cs │ │ │ │ ├── EncounterSlot6AO.cs │ │ │ │ ├── EncounterSlot6XY.cs │ │ │ │ ├── EncounterStatic6.cs │ │ │ │ └── EncounterTrade6.cs │ │ │ ├── Gen7 │ │ │ │ ├── EncounterArea7.cs │ │ │ │ ├── EncounterEgg7.cs │ │ │ │ ├── EncounterSlot7.cs │ │ │ │ ├── EncounterStatic7.cs │ │ │ │ ├── EncounterTrade7.cs │ │ │ │ └── EncounterTransfer7.cs │ │ │ ├── Gen7b │ │ │ │ ├── EncounterArea7b.cs │ │ │ │ ├── EncounterSlot7b.cs │ │ │ │ ├── EncounterStatic7b.cs │ │ │ │ └── EncounterTrade7b.cs │ │ │ ├── Gen8 │ │ │ │ ├── AreaWeather8.cs │ │ │ │ ├── Crossover8.cs │ │ │ │ ├── EncounterArea8.cs │ │ │ │ ├── EncounterEgg8.cs │ │ │ │ ├── EncounterSlot8.cs │ │ │ │ ├── EncounterStatic8.cs │ │ │ │ ├── EncounterStatic8N.cs │ │ │ │ ├── EncounterStatic8NC.cs │ │ │ │ ├── EncounterStatic8ND.cs │ │ │ │ ├── EncounterStatic8Nest.cs │ │ │ │ ├── EncounterStatic8U.cs │ │ │ │ ├── EncounterTrade8.cs │ │ │ │ ├── IOverworldCorrelation8.cs │ │ │ │ ├── ISeedCorrelation64.cs │ │ │ │ ├── OverworldCorrelation8Requirement.cs │ │ │ │ └── SlotType8.cs │ │ │ ├── Gen8a │ │ │ │ ├── EncounterArea8a.cs │ │ │ │ ├── EncounterSlot8a.cs │ │ │ │ ├── EncounterStatic8a.cs │ │ │ │ ├── EncounterStatic8aCorrelation.cs │ │ │ │ └── IMasteryInitialMoveShop8.cs │ │ │ ├── Gen8b │ │ │ │ ├── EncounterArea8b.cs │ │ │ │ ├── EncounterEgg8b.cs │ │ │ │ ├── EncounterSlot8b.cs │ │ │ │ ├── EncounterStatic8b.cs │ │ │ │ ├── EncounterTrade8b.cs │ │ │ │ ├── IStaticCorrelation8b.cs │ │ │ │ └── StaticCorrelation8bRequirement.cs │ │ │ ├── Gen9 │ │ │ │ ├── AreaWeather9.cs │ │ │ │ ├── EncounterArea9.cs │ │ │ │ ├── EncounterDist9.cs │ │ │ │ ├── EncounterEgg9.cs │ │ │ │ ├── EncounterFixed9.cs │ │ │ │ ├── EncounterMight9.cs │ │ │ │ ├── EncounterOutbreak9.cs │ │ │ │ ├── EncounterSlot9.cs │ │ │ │ ├── EncounterStatic9.cs │ │ │ │ ├── EncounterTera9.cs │ │ │ │ ├── EncounterTrade9.cs │ │ │ │ ├── IGemType.cs │ │ │ │ ├── ITeraRaid9.cs │ │ │ │ └── SizeType9.cs │ │ │ ├── Gen9a │ │ │ │ ├── EncounterArea9a.cs │ │ │ │ ├── EncounterGift9a.cs │ │ │ │ ├── EncounterSlot9a.cs │ │ │ │ ├── EncounterStatic9a.cs │ │ │ │ ├── EncounterTrade9a.cs │ │ │ │ ├── GenerateParam9a.cs │ │ │ │ ├── IEncounter9a.cs │ │ │ │ ├── LumioseCorrelation.cs │ │ │ │ ├── LumioseRNG.cs │ │ │ │ ├── LumioseSolver.cs │ │ │ │ └── SlotType9a.cs │ │ │ ├── Interfaces │ │ │ │ ├── IEncounterArea.cs │ │ │ │ ├── IEncounterConvertible.cs │ │ │ │ ├── IEncounterEgg.cs │ │ │ │ ├── IEncounterInfo.cs │ │ │ │ ├── IEncounterMatch.cs │ │ │ │ ├── IEncounterTemplate.cs │ │ │ │ ├── IEncounterable.cs │ │ │ │ ├── ILocation.cs │ │ │ │ ├── ITrashUnderlaySpecies.cs │ │ │ │ ├── Properties │ │ │ │ │ ├── IEncounterFormRandom.cs │ │ │ │ │ ├── IEncounterSlot34.cs │ │ │ │ │ ├── IFixedAbilityNumber.cs │ │ │ │ │ ├── IFixedBall.cs │ │ │ │ │ ├── IFixedGender.cs │ │ │ │ │ ├── IFixedIVSet.cs │ │ │ │ │ ├── IFixedNature.cs │ │ │ │ │ ├── IFixedNickname.cs │ │ │ │ │ ├── IFixedTrainer.cs │ │ │ │ │ ├── IFlawlessIVCount.cs │ │ │ │ │ ├── IFlawlessIVCountConditional.cs │ │ │ │ │ ├── IHatchCycle.cs │ │ │ │ │ ├── ILevelRange.cs │ │ │ │ │ ├── IMetLevel.cs │ │ │ │ │ ├── IMoveset.cs │ │ │ │ │ ├── IRandomCorrelation.cs │ │ │ │ │ ├── IRelearn.cs │ │ │ │ │ ├── IRestrictVersion.cs │ │ │ │ │ ├── IShinyPotential.cs │ │ │ │ │ └── ISingleMoveBonus.cs │ │ │ │ └── RNG │ │ │ │ │ ├── IGenerateSeed32.cs │ │ │ │ │ ├── IGenerateSeed64.cs │ │ │ │ │ ├── IMagnetStatic.cs │ │ │ │ │ └── INumberedSlot.cs │ │ │ └── Shared │ │ │ │ ├── EncounterInvalid.cs │ │ │ │ ├── IndividualValueSet.cs │ │ │ │ └── Moveset.cs │ │ └── Verifiers │ │ │ ├── EggHatchLocation3.cs │ │ │ ├── EggHatchLocation4.cs │ │ │ ├── EggHatchLocation5.cs │ │ │ ├── EggHatchLocation6.cs │ │ │ ├── EggHatchLocation7.cs │ │ │ ├── EggHatchLocation8.cs │ │ │ ├── EggHatchLocation8b.cs │ │ │ ├── EggHatchLocation9.cs │ │ │ ├── EncounterVerifier.cs │ │ │ ├── EvolutionVerifier.cs │ │ │ ├── MysteryGiftRestriction.cs │ │ │ └── MysteryGiftVerifier.cs │ ├── Evolutions │ │ ├── EncounterOrigin.cs │ │ ├── EvolutionChain.cs │ │ ├── EvolutionGroup │ │ │ ├── EvolutionGroup1.cs │ │ │ ├── EvolutionGroup2.cs │ │ │ ├── EvolutionGroup3.cs │ │ │ ├── EvolutionGroup4.cs │ │ │ ├── EvolutionGroup5.cs │ │ │ ├── EvolutionGroup6.cs │ │ │ ├── EvolutionGroup7.cs │ │ │ ├── EvolutionGroup7b.cs │ │ │ ├── EvolutionGroupHOME.cs │ │ │ ├── EvolutionGroupHOME2.cs │ │ │ ├── EvolutionGroupUtil.cs │ │ │ ├── EvolutionOrigin.cs │ │ │ ├── EvolutionUtil.cs │ │ │ └── IEvolutionGroup.cs │ │ ├── EvolutionHistory.cs │ │ ├── EvolutionRuleTweak.cs │ │ ├── EvolutionSet.cs │ │ ├── EvolutionTree.cs │ │ ├── Forward │ │ │ ├── EvolutionForwardPersonal.cs │ │ │ ├── EvolutionForwardSpecies.cs │ │ │ └── IEvolutionForward.cs │ │ ├── IEvolutionNetwork.cs │ │ ├── Methods │ │ │ ├── EvoCriteria.cs │ │ │ ├── EvolutionCheckResult.cs │ │ │ ├── EvolutionMethod.cs │ │ │ └── EvolutionType.cs │ │ └── Reversal │ │ │ ├── EvolutionLink.cs │ │ │ ├── EvolutionNode.cs │ │ │ ├── EvolutionReversal.cs │ │ │ ├── EvolutionReverseLookup.cs │ │ │ ├── EvolutionReversePersonal.cs │ │ │ ├── EvolutionReverseSpecies.cs │ │ │ ├── IEvolutionLookup.cs │ │ │ └── IEvolutionReverse.cs │ ├── Formatting │ │ ├── BaseLegalityFormatter.cs │ │ ├── ILegalityFormatter.cs │ │ └── LegalityFormatting.cs │ ├── LearnSource │ │ ├── Group │ │ │ ├── ILearnGroup.cs │ │ │ ├── LearnGroup1.cs │ │ │ ├── LearnGroup2.cs │ │ │ ├── LearnGroup3.cs │ │ │ ├── LearnGroup4.cs │ │ │ ├── LearnGroup5.cs │ │ │ ├── LearnGroup6.cs │ │ │ ├── LearnGroup7.cs │ │ │ ├── LearnGroup7b.cs │ │ │ ├── LearnGroup8.cs │ │ │ ├── LearnGroup8a.cs │ │ │ ├── LearnGroup8b.cs │ │ │ ├── LearnGroup9.cs │ │ │ ├── LearnGroup9a.cs │ │ │ ├── LearnGroupHOME.cs │ │ │ └── LearnGroupUtil.cs │ │ ├── LearnEnvironment.cs │ │ ├── LearnMethod.cs │ │ ├── MoveLearnInfo.cs │ │ ├── MoveResult.cs │ │ ├── Sources │ │ │ ├── IHomeSource.cs │ │ │ ├── LearnSource1RB.cs │ │ │ ├── LearnSource1YW.cs │ │ │ ├── LearnSource2C.cs │ │ │ ├── LearnSource2GS.cs │ │ │ ├── LearnSource2Stadium.cs │ │ │ ├── LearnSource3E.cs │ │ │ ├── LearnSource3FR.cs │ │ │ ├── LearnSource3LG.cs │ │ │ ├── LearnSource3RS.cs │ │ │ ├── LearnSource4DP.cs │ │ │ ├── LearnSource4HGSS.cs │ │ │ ├── LearnSource4Pt.cs │ │ │ ├── LearnSource5B2W2.cs │ │ │ ├── LearnSource5BW.cs │ │ │ ├── LearnSource6AO.cs │ │ │ ├── LearnSource6XY.cs │ │ │ ├── LearnSource7GG.cs │ │ │ ├── LearnSource7SM.cs │ │ │ ├── LearnSource7USUM.cs │ │ │ ├── LearnSource8BDSP.cs │ │ │ ├── LearnSource8PLA.cs │ │ │ ├── LearnSource8SWSH.cs │ │ │ ├── LearnSource9SV.cs │ │ │ ├── LearnSource9ZA.cs │ │ │ └── Shared │ │ │ │ ├── IEggSource.cs │ │ │ │ ├── ILearnSource.cs │ │ │ │ ├── IReminderSource.cs │ │ │ │ ├── LearnOption.cs │ │ │ │ ├── LearnSource3.cs │ │ │ │ ├── LearnSource4.cs │ │ │ │ ├── LearnSource5.cs │ │ │ │ └── MoveTutor.cs │ │ └── Verify │ │ │ ├── LearnPossible.cs │ │ │ ├── LearnVerifier.cs │ │ │ ├── LearnVerifierEgg.cs │ │ │ ├── LearnVerifierHistory.cs │ │ │ └── LearnVerifierRelearn.cs │ ├── Learnset │ │ ├── Learnset.cs │ │ ├── LearnsetReader.cs │ │ ├── LearnsetStadium.cs │ │ └── MoveSource.cs │ ├── Legal.cs │ ├── LegalityAnalysis.cs │ ├── LegalityAnalyzers.cs │ ├── Localization │ │ ├── EncounterDisplayLocalization.cs │ │ ├── GeneralLocalization.cs │ │ ├── LegalityCheckLocalization.cs │ │ ├── LegalityCheckResultCodeExtensions.cs │ │ ├── LegalityLocalizationContext.cs │ │ ├── LegalityLocalizationSet.cs │ │ └── MoveSourceLocalization.cs │ ├── MoveListSuggest.cs │ ├── MoveSourceType.cs │ ├── Moves │ │ ├── Breeding │ │ │ ├── BreedInfo.cs │ │ │ ├── EggSource.cs │ │ │ ├── MoveBreed.cs │ │ │ ├── MoveBreed2.cs │ │ │ ├── MoveBreed3.cs │ │ │ ├── MoveBreed4.cs │ │ │ ├── MoveBreed5.cs │ │ │ └── MoveBreed6.cs │ │ └── GameData.cs │ ├── RNG │ │ ├── Algorithms │ │ │ ├── ARNG.cs │ │ │ ├── LCRNG.cs │ │ │ ├── LCRNG64.cs │ │ │ ├── LCRNGReversal.cs │ │ │ ├── LCRNGReversalSkip.cs │ │ │ ├── XDRNG.cs │ │ │ ├── XorShift128.cs │ │ │ ├── Xoroshiro128Plus.cs │ │ │ ├── Xoroshiro128Plus8b.cs │ │ │ └── Xoroshiro128PlusReversal.cs │ │ ├── CXD │ │ │ ├── LockFinder.cs │ │ │ ├── MethodCXD.cs │ │ │ ├── MethodPokeSpot.cs │ │ │ ├── NPCLock.cs │ │ │ ├── SeedFrame.cs │ │ │ ├── TeamLock.cs │ │ │ └── TeamLockResult.cs │ │ ├── ClassicEra │ │ │ ├── ClassicEraRNG.cs │ │ │ ├── Gen3 │ │ │ │ ├── ChannelJirachi.cs │ │ │ │ ├── CommonEvent3.cs │ │ │ │ ├── CommonEvent3Checker.cs │ │ │ │ ├── Daycare3.cs │ │ │ │ ├── GenerateMethodH.cs │ │ │ │ ├── MethodH.cs │ │ │ │ ├── MethodHCondition.cs │ │ │ │ ├── MethodHWindowInfo.cs │ │ │ │ ├── MystryMew.cs │ │ │ │ ├── PCJPFifthAnniversary.cs │ │ │ │ ├── SlotMethodH.cs │ │ │ │ ├── TanobyRuins3.cs │ │ │ │ ├── WeightedTable3.cs │ │ │ │ └── Wishmkr.cs │ │ │ ├── Gen4 │ │ │ │ ├── CuteCharm4.cs │ │ │ │ ├── GenerateMethodJ.cs │ │ │ │ ├── GenerateMethodK.cs │ │ │ │ ├── InitialSeedComponents4.cs │ │ │ │ ├── MethodJ.cs │ │ │ │ ├── MethodK.cs │ │ │ │ ├── PokewalkerRNG.cs │ │ │ │ ├── RuinsOfAlph4.cs │ │ │ │ ├── SlotMethodJ.cs │ │ │ │ ├── SlotMethodK.cs │ │ │ │ └── SolaceonRuins4.cs │ │ │ ├── LeadEncounter.cs │ │ │ ├── LeadFinder.cs │ │ │ ├── LeadSeed.cs │ │ │ └── MonochromeRNG.cs │ │ ├── Frame │ │ │ ├── FrameCache.cs │ │ │ ├── FrameCheckDetails.cs │ │ │ ├── LeadRequired.cs │ │ │ └── LockInfo.cs │ │ ├── MethodFinder.cs │ │ ├── Methods │ │ │ ├── Gen8 │ │ │ │ ├── GenerateParam8.cs │ │ │ │ ├── Overworld8RNG.cs │ │ │ │ └── RaidRNG.cs │ │ │ ├── Gen8a │ │ │ │ ├── Overworld8aRNG.cs │ │ │ │ └── OverworldParam8a.cs │ │ │ ├── Gen8b │ │ │ │ ├── Roaming8bRNG.cs │ │ │ │ └── Wild8bRNG.cs │ │ │ └── Gen9 │ │ │ │ ├── Encounter9RNG.cs │ │ │ │ ├── GenerateParam9.cs │ │ │ │ └── Tera9RNG.cs │ │ ├── PIDIV.cs │ │ ├── PIDType.cs │ │ └── Util │ │ │ ├── ShinyUtil.cs │ │ │ └── ToxtricityUtil.cs │ ├── Restrictions │ │ ├── EvolutionRestrictions.cs │ │ ├── GBRestrictions.cs │ │ ├── HomeTrackerUtil.cs │ │ ├── ItemRestrictions.cs │ │ ├── Locale3DS.cs │ │ ├── Memories │ │ │ ├── Memories.cs │ │ │ ├── MemoryArgType.cs │ │ │ ├── MemoryContext.cs │ │ │ ├── MemoryContext6.cs │ │ │ ├── MemoryContext6Data.cs │ │ │ ├── MemoryContext8.cs │ │ │ ├── MemoryContext8Data.cs │ │ │ ├── MemoryPermissions.cs │ │ │ ├── MemoryRules.cs │ │ │ └── MemoryVariableSet.cs │ │ ├── Vivillon3DS.cs │ │ └── WordFilter │ │ │ ├── TextNormalizer.cs │ │ │ ├── WordFilter.cs │ │ │ ├── WordFilter3DS.cs │ │ │ ├── WordFilter5.cs │ │ │ ├── WordFilterNX.cs │ │ │ └── WordFilterType.cs │ ├── Settings │ │ ├── ExternalLegalityCheck.cs │ │ ├── IExternalLegalityChecker.cs │ │ ├── LegalitySettings.cs │ │ ├── ParseSettings.cs │ │ └── Specialized │ │ │ ├── BulkAnalysisSettings.cs │ │ │ ├── FramePatternSettings.cs │ │ │ ├── GameSpecificSettings.cs │ │ │ ├── HOMETransferSettings.cs │ │ │ ├── HandlerRestrictions.cs │ │ │ ├── NicknameRestriction.cs │ │ │ ├── TradebackSettings.cs │ │ │ └── WordFilterSettings.cs │ ├── Structures │ │ ├── CheckIdentifier.cs │ │ ├── CheckResult.cs │ │ ├── LegalInfo.cs │ │ ├── LegalityCheckResultCode.cs │ │ └── Severity.cs │ ├── Tables │ │ ├── FormChangeUtil.cs │ │ ├── FormInfo.cs │ │ ├── FormItem.cs │ │ ├── SpeciesCategory.cs │ │ └── TradeRestrictions.cs │ └── Verifiers │ │ ├── Ability │ │ ├── AbilityBreedLegality.cs │ │ ├── AbilityChangeRules.cs │ │ └── AbilityVerifier.cs │ │ ├── AwakenedValueVerifier.cs │ │ ├── Ball │ │ ├── BallContext6.cs │ │ ├── BallContext7.cs │ │ ├── BallContextHOME.cs │ │ ├── BallContextUtil.cs │ │ ├── BallInheritanceResult.cs │ │ ├── BallUseLegality.cs │ │ ├── BallVerifier.cs │ │ └── IBallContext.cs │ │ ├── CXDVerifier.cs │ │ ├── ConsoleRegionVerifier.cs │ │ ├── ContestStatVerifier.cs │ │ ├── EffortValueVerifier.cs │ │ ├── Egg │ │ └── EggStateLegality.cs │ │ ├── FormArgumentVerifier.cs │ │ ├── FormVerifier.cs │ │ ├── GenderVerifier.cs │ │ ├── GroundTileVerifier.cs │ │ ├── HistoryVerifier.cs │ │ ├── HyperTrainingVerifier.cs │ │ ├── IndividualValueVerifier.cs │ │ ├── ItemVerifier.cs │ │ ├── LanguageVerifier.cs │ │ ├── LegendsArceusVerifier.cs │ │ ├── LegendsZAVerifier.cs │ │ ├── LevelVerifier.cs │ │ ├── MarkVerifier.cs │ │ ├── MarkingVerifier.cs │ │ ├── MedalVerifier.cs │ │ ├── MemoryVerifier.cs │ │ ├── Misc │ │ ├── ContestStatGranting.cs │ │ ├── ContestStatGrantingSheen.cs │ │ └── ContestStatInfo.cs │ │ ├── MiscVerifier.cs │ │ ├── MovePPVerifier.cs │ │ ├── NicknameVerifier.cs │ │ ├── PIDVerifier.cs │ │ ├── Ribbons │ │ ├── MarkRules.cs │ │ ├── RibbonResult.cs │ │ ├── RibbonResultList.cs │ │ ├── RibbonRules.cs │ │ ├── RibbonStrings.cs │ │ ├── RibbonVerifier.cs │ │ ├── RibbonVerifierArguments.cs │ │ ├── RibbonVerifierCommon3.cs │ │ ├── RibbonVerifierCommon4.cs │ │ ├── RibbonVerifierCommon6.cs │ │ ├── RibbonVerifierCommon7.cs │ │ ├── RibbonVerifierCommon8.cs │ │ ├── RibbonVerifierCommon9.cs │ │ ├── RibbonVerifierEvent3.cs │ │ ├── RibbonVerifierEvent4.cs │ │ ├── RibbonVerifierMark9.cs │ │ ├── RibbonVerifierOnly3.cs │ │ ├── RibbonVerifierUnique3.cs │ │ └── RibbonVerifierUnique4.cs │ │ ├── SlotTypeVerifier.cs │ │ ├── TrainerIDVerifier.cs │ │ ├── TrainerNameVerifier.cs │ │ ├── TransferVerifier.cs │ │ ├── TrashByteVerifier.cs │ │ └── Verifier.cs ├── Moves │ ├── MoveInfo.cs │ ├── MoveInfo1.cs │ ├── MoveInfo2.cs │ ├── MoveInfo3.cs │ ├── MoveInfo4.cs │ ├── MoveInfo5.cs │ ├── MoveInfo6.cs │ ├── MoveInfo7.cs │ ├── MoveInfo7b.cs │ ├── MoveInfo8.cs │ ├── MoveInfo8a.cs │ ├── MoveInfo8b.cs │ ├── MoveInfo9.cs │ └── MoveInfo9a.cs ├── MysteryGifts │ ├── DataMysteryGift.cs │ ├── MysteryGift.cs │ ├── MysteryUtil.cs │ ├── PCD.cs │ ├── PGF.cs │ ├── PGT.cs │ ├── PL6.cs │ ├── ShinyType6.cs │ ├── ShinyType8.cs │ ├── WA8.cs │ ├── WA9.cs │ ├── WB7.cs │ ├── WB8.cs │ ├── WC5Full.cs │ ├── WC6.cs │ ├── WC6Full.cs │ ├── WC7.cs │ ├── WC7Full.cs │ ├── WC8.cs │ ├── WC9.cs │ └── WR7.cs ├── PKHeX.Core.csproj ├── PKM │ ├── BK4.cs │ ├── CK3.cs │ ├── Enums │ │ ├── AlcremieDecoration.cs │ │ ├── GroundTileType.cs │ │ ├── OriginMark.cs │ │ ├── PokeSize.cs │ │ ├── PokeSizeDetailed.cs │ │ ├── PokeblockFlavor.cs │ │ └── StatusCondition.cs │ ├── HOME │ │ ├── GameDataCore.cs │ │ ├── GameDataPA8.cs │ │ ├── GameDataPA9.cs │ │ ├── GameDataPB7.cs │ │ ├── GameDataPB8.cs │ │ ├── GameDataPK8.cs │ │ ├── GameDataPK9.cs │ │ ├── HomeCrypto.cs │ │ ├── HomeGameDataFormat.cs │ │ ├── HomeOptional1.cs │ │ ├── IGameDataSide.cs │ │ ├── IGameDataSplitAbility.cs │ │ ├── IHomeStorage.cs │ │ ├── IPokerusStatus.cs │ │ └── PKH.cs │ ├── Interfaces │ │ ├── IAffection.cs │ │ ├── IAlpha.cs │ │ ├── IAppliedMarkings.cs │ │ ├── IAwakened.cs │ │ ├── IBattleVersion.cs │ │ ├── ICaughtData2.cs │ │ ├── IContestStats.cs │ │ ├── IDynamaxLevel.cs │ │ ├── IFatefulEncounter.cs │ │ ├── IFavorite.cs │ │ ├── IFormArgument.cs │ │ ├── IFullnessEnjoyment.cs │ │ ├── IGCRegion.cs │ │ ├── IGanbaru.cs │ │ ├── IGeoTrack.cs │ │ ├── IGigantamax.cs │ │ ├── IGroundTile.cs │ │ ├── IHandlerLanguage.cs │ │ ├── IHandlerUpdate.cs │ │ ├── IHomeTrack.cs │ │ ├── IHyperTrain.cs │ │ ├── IMemoryHT.cs │ │ ├── IMemoryOT.cs │ │ ├── IMoveShop8.cs │ │ ├── INature.cs │ │ ├── INoble.cs │ │ ├── IObedienceLevel.cs │ │ ├── IPlusRecord.cs │ │ ├── IRegionOrigin.cs │ │ ├── ISanityChecksum.cs │ │ ├── IScaledSize.cs │ │ ├── ISeparateIVs.cs │ │ ├── IShadowCapture.cs │ │ ├── ISociability.cs │ │ ├── ISuperTrain.cs │ │ ├── ISuperTrainRegimen.cs │ │ ├── ITechRecord.cs │ │ ├── ITeraType.cs │ │ ├── ITrainerID.cs │ │ ├── ITrainerID32.cs │ │ ├── ITrainerMemories.cs │ │ ├── Metadata │ │ │ ├── IContext.cs │ │ │ ├── IGameValueLimit.cs │ │ │ ├── IGeneration.cs │ │ │ ├── ILangNick.cs │ │ │ ├── IShiny.cs │ │ │ ├── ISpeciesForm.cs │ │ │ └── IVersion.cs │ │ └── Templates │ │ │ ├── IAlphaReadOnly.cs │ │ │ ├── IContestStatsReadOnly.cs │ │ │ ├── IDynamaxLevelReadOnly.cs │ │ │ ├── IEncounterDownlevel.cs │ │ │ ├── IFatefulEncounterReadOnly.cs │ │ │ ├── IFixedOTFriendship.cs │ │ │ ├── IGigantamaxReadOnly.cs │ │ │ ├── ILangNicknamedTemplate.cs │ │ │ ├── IMemoryOTReadOnly.cs │ │ │ ├── INatureReadOnly.cs │ │ │ ├── IObedienceLevelReadOnly.cs │ │ │ └── IScaledSizeReadOnly.cs │ ├── PA8.cs │ ├── PA9.cs │ ├── PB7.cs │ ├── PB8.cs │ ├── PK1.cs │ ├── PK2.cs │ ├── PK3.cs │ ├── PK4.cs │ ├── PK5.cs │ ├── PK6.cs │ ├── PK7.cs │ ├── PK8.cs │ ├── PK9.cs │ ├── PKM.cs │ ├── RK4.cs │ ├── SK2.cs │ ├── Searching │ │ ├── CloneDetectionMethod.cs │ │ ├── EntityPresenceFilters.cs │ │ ├── SearchComparison.cs │ │ ├── SearchSettings.cs │ │ └── SearchUtil.cs │ ├── Shared │ │ ├── G3PKM.cs │ │ ├── G4PKM.cs │ │ ├── G6PKM.cs │ │ ├── G8PKM.cs │ │ ├── GBPKM.cs │ │ ├── GBPKML.cs │ │ ├── PokeList1.cs │ │ └── PokeList2.cs │ ├── Strings │ │ ├── Font │ │ │ ├── StringFont3GC.cs │ │ │ ├── StringFont5.cs │ │ │ ├── StringFont6.cs │ │ │ ├── StringFont7.cs │ │ │ ├── StringFont8.cs │ │ │ ├── StringFont8a.cs │ │ │ ├── StringFont8b.cs │ │ │ └── StringFontUtil.cs │ │ ├── IStringConverter.cs │ │ ├── StringConverter.cs │ │ ├── StringConverter1.cs │ │ ├── StringConverter12Transporter.cs │ │ ├── StringConverter2.cs │ │ ├── StringConverter2KOR.cs │ │ ├── StringConverter3.cs │ │ ├── StringConverter345.cs │ │ ├── StringConverter3GC.cs │ │ ├── StringConverter4.cs │ │ ├── StringConverter4GC.cs │ │ ├── StringConverter4Util.cs │ │ ├── StringConverter5.cs │ │ ├── StringConverter6.cs │ │ ├── StringConverter7.cs │ │ ├── StringConverter7ZH.cs │ │ ├── StringConverter8.cs │ │ ├── StringConverterOption.cs │ │ ├── Trainer │ │ │ ├── ReplaceTrainerName7.cs │ │ │ ├── ReplaceTrainerName8.cs │ │ │ ├── ReplaceTrainerName8a.cs │ │ │ ├── ReplaceTrainerName8b.cs │ │ │ ├── ReplaceTrainerName9.cs │ │ │ ├── ReplaceTrainerName9a.cs │ │ │ └── ReplaceTrainerNameHOME.cs │ │ └── Trash │ │ │ ├── ITrashIntrospection.cs │ │ │ ├── TrashBytes8.cs │ │ │ ├── TrashBytesGB.cs │ │ │ ├── TrashBytesUTF16.cs │ │ │ └── TrashMatch.cs │ ├── Util │ │ ├── Conversion │ │ │ ├── EntityCompatibilitySetting.cs │ │ │ ├── EntityConverter.cs │ │ │ ├── EntityConverterResult.cs │ │ │ ├── EntityConverterResultExtensions.cs │ │ │ ├── EntityRejuvenationSetting.cs │ │ │ ├── FormConverter.cs │ │ │ ├── IEntityRejuvenator.cs │ │ │ ├── ItemConverter.cs │ │ │ ├── SpeciesConverter.cs │ │ │ └── TransporterLogic.cs │ │ ├── EffortValues.cs │ │ ├── EntityBlank.cs │ │ ├── EntityCharacteristic.cs │ │ ├── EntityContext.cs │ │ ├── EntityDetection.cs │ │ ├── EntityFileExtension.cs │ │ ├── EntityFileNamer.cs │ │ ├── EntityFormat.cs │ │ ├── EntityGender.cs │ │ ├── EntityPID.cs │ │ ├── EntitySorting.cs │ │ ├── Experience.cs │ │ ├── GameConsole.cs │ │ ├── Language.cs │ │ ├── Latest.cs │ │ ├── PokeCrypto.cs │ │ ├── RecentTrainerCache.cs │ │ ├── SpeciesName.cs │ │ └── TrainerName.cs │ └── XK3.cs ├── PersonalInfo │ ├── Enums │ │ ├── EggGroup.cs │ │ └── PersonalColor.cs │ ├── Info │ │ ├── PersonalInfo1.cs │ │ ├── PersonalInfo2.cs │ │ ├── PersonalInfo3.cs │ │ ├── PersonalInfo4.cs │ │ ├── PersonalInfo5B2W2.cs │ │ ├── PersonalInfo5BW.cs │ │ ├── PersonalInfo6AO.cs │ │ ├── PersonalInfo6XY.cs │ │ ├── PersonalInfo7.cs │ │ ├── PersonalInfo7GG.cs │ │ ├── PersonalInfo8BDSP.cs │ │ ├── PersonalInfo8LA.cs │ │ ├── PersonalInfo8SWSH.cs │ │ ├── PersonalInfo9SV.cs │ │ └── PersonalInfo9ZA.cs │ ├── Interfaces │ │ ├── IBaseStat.cs │ │ ├── IEffortValueYield.cs │ │ ├── IGenderDetail.cs │ │ ├── IPersonalAbility.cs │ │ ├── IPersonalEgg.cs │ │ ├── IPersonalEncounter.cs │ │ ├── IPersonalFormInfo.cs │ │ ├── IPersonalInfo.cs │ │ ├── IPersonalInfoTM.cs │ │ ├── IPersonalInfoTR.cs │ │ ├── IPersonalInfoTutorType.cs │ │ ├── IPersonalMisc.cs │ │ ├── IPersonalTable.cs │ │ └── IPersonalType.cs │ ├── PersonalInfo.cs │ ├── PersonalTable.cs │ └── Table │ │ ├── PersonalTable1.cs │ │ ├── PersonalTable2.cs │ │ ├── PersonalTable3.cs │ │ ├── PersonalTable4.cs │ │ ├── PersonalTable5B2W2.cs │ │ ├── PersonalTable5BW.cs │ │ ├── PersonalTable6AO.cs │ │ ├── PersonalTable6XY.cs │ │ ├── PersonalTable7.cs │ │ ├── PersonalTable7GG.cs │ │ ├── PersonalTable8BDSP.cs │ │ ├── PersonalTable8LA.cs │ │ ├── PersonalTable8SWSH.cs │ │ ├── PersonalTable9SV.cs │ │ └── PersonalTable9ZA.cs ├── Resources │ ├── byte │ │ ├── eggmove │ │ │ ├── eggmove_ao.pkl │ │ │ ├── eggmove_bdsp.pkl │ │ │ ├── eggmove_bw.pkl │ │ │ ├── eggmove_c.pkl │ │ │ ├── eggmove_dppt.pkl │ │ │ ├── eggmove_gs.pkl │ │ │ ├── eggmove_hgss.pkl │ │ │ ├── eggmove_rs.pkl │ │ │ ├── eggmove_sm.pkl │ │ │ ├── eggmove_sv.pkl │ │ │ ├── eggmove_swsh.pkl │ │ │ ├── eggmove_uu.pkl │ │ │ └── eggmove_xy.pkl │ │ ├── evolve │ │ │ ├── evos_bs.pkl │ │ │ ├── evos_g1.pkl │ │ │ ├── evos_g2.pkl │ │ │ ├── evos_g3.pkl │ │ │ ├── evos_g4.pkl │ │ │ ├── evos_g5.pkl │ │ │ ├── evos_g6.pkl │ │ │ ├── evos_gg.pkl │ │ │ ├── evos_la.pkl │ │ │ ├── evos_ss.pkl │ │ │ ├── evos_sv.pkl │ │ │ ├── evos_uu.pkl │ │ │ └── evos_za.pkl │ │ ├── levelup │ │ │ ├── lvlmove_ao.pkl │ │ │ ├── lvlmove_b2w2.pkl │ │ │ ├── lvlmove_bdsp.pkl │ │ │ ├── lvlmove_bw.pkl │ │ │ ├── lvlmove_c.pkl │ │ │ ├── lvlmove_dp.pkl │ │ │ ├── lvlmove_e.pkl │ │ │ ├── lvlmove_fr.pkl │ │ │ ├── lvlmove_gg.pkl │ │ │ ├── lvlmove_gs.pkl │ │ │ ├── lvlmove_hgss.pkl │ │ │ ├── lvlmove_la.pkl │ │ │ ├── lvlmove_lg.pkl │ │ │ ├── lvlmove_pt.pkl │ │ │ ├── lvlmove_rb.pkl │ │ │ ├── lvlmove_rs.pkl │ │ │ ├── lvlmove_sm.pkl │ │ │ ├── lvlmove_sv.pkl │ │ │ ├── lvlmove_swsh.pkl │ │ │ ├── lvlmove_uu.pkl │ │ │ ├── lvlmove_xy.pkl │ │ │ ├── lvlmove_y.pkl │ │ │ ├── lvlmove_za.pkl │ │ │ └── reminder_stad2.pkl │ │ ├── personal │ │ │ ├── hmtm_g3.pkl │ │ │ ├── personal_ao │ │ │ ├── personal_b2w2 │ │ │ ├── personal_bdsp │ │ │ ├── personal_bw │ │ │ ├── personal_c │ │ │ ├── personal_dp │ │ │ ├── personal_e │ │ │ ├── personal_fr │ │ │ ├── personal_gg │ │ │ ├── personal_gs │ │ │ ├── personal_hgss │ │ │ ├── personal_la │ │ │ ├── personal_lg │ │ │ ├── personal_pt │ │ │ ├── personal_rb │ │ │ ├── personal_rs │ │ │ ├── personal_sm │ │ │ ├── personal_sv │ │ │ ├── personal_swsh │ │ │ ├── personal_uu │ │ │ ├── personal_xy │ │ │ ├── personal_y │ │ │ ├── personal_za │ │ │ ├── reminder_sv.pkl │ │ │ ├── reminder_za.pkl │ │ │ ├── tutors_g3.pkl │ │ │ └── tutors_g4.pkl │ │ └── zukan_research │ │ │ └── researchtask_la.pkl │ ├── legality │ │ ├── gen1 │ │ │ ├── text_traderby_de.txt │ │ │ ├── text_traderby_en.txt │ │ │ ├── text_traderby_es.txt │ │ │ ├── text_traderby_fr.txt │ │ │ ├── text_traderby_it.txt │ │ │ └── text_traderby_ja.txt │ │ ├── gen2 │ │ │ ├── text_tradegsc_de.txt │ │ │ ├── text_tradegsc_en.txt │ │ │ ├── text_tradegsc_es.txt │ │ │ ├── text_tradegsc_fr.txt │ │ │ ├── text_tradegsc_it.txt │ │ │ ├── text_tradegsc_ja.txt │ │ │ └── text_tradegsc_ko.txt │ │ ├── gen3 │ │ │ ├── text_tradefrlg_de.txt │ │ │ ├── text_tradefrlg_en.txt │ │ │ ├── text_tradefrlg_es.txt │ │ │ ├── text_tradefrlg_fr.txt │ │ │ ├── text_tradefrlg_it.txt │ │ │ ├── text_tradefrlg_ja.txt │ │ │ ├── text_traderse_de.txt │ │ │ ├── text_traderse_en.txt │ │ │ ├── text_traderse_es.txt │ │ │ ├── text_traderse_fr.txt │ │ │ ├── text_traderse_it.txt │ │ │ └── text_traderse_ja.txt │ │ ├── gen4 │ │ │ ├── text_tradedppt_de.txt │ │ │ ├── text_tradedppt_en.txt │ │ │ ├── text_tradedppt_es.txt │ │ │ ├── text_tradedppt_fr.txt │ │ │ ├── text_tradedppt_it.txt │ │ │ ├── text_tradedppt_ja.txt │ │ │ ├── text_tradedppt_ko.txt │ │ │ ├── text_tradehgss_de.txt │ │ │ ├── text_tradehgss_en.txt │ │ │ ├── text_tradehgss_es.txt │ │ │ ├── text_tradehgss_fr.txt │ │ │ ├── text_tradehgss_it.txt │ │ │ ├── text_tradehgss_ja.txt │ │ │ └── text_tradehgss_ko.txt │ │ ├── gen5 │ │ │ ├── text_tradeb2w2_de.txt │ │ │ ├── text_tradeb2w2_en.txt │ │ │ ├── text_tradeb2w2_es.txt │ │ │ ├── text_tradeb2w2_fr.txt │ │ │ ├── text_tradeb2w2_it.txt │ │ │ ├── text_tradeb2w2_ja.txt │ │ │ ├── text_tradeb2w2_ko.txt │ │ │ ├── text_tradebw_de.txt │ │ │ ├── text_tradebw_en.txt │ │ │ ├── text_tradebw_es.txt │ │ │ ├── text_tradebw_fr.txt │ │ │ ├── text_tradebw_it.txt │ │ │ ├── text_tradebw_ja.txt │ │ │ └── text_tradebw_ko.txt │ │ ├── gen6 │ │ │ ├── text_tradeao_de.txt │ │ │ ├── text_tradeao_en.txt │ │ │ ├── text_tradeao_es.txt │ │ │ ├── text_tradeao_fr.txt │ │ │ ├── text_tradeao_it.txt │ │ │ ├── text_tradeao_ja.txt │ │ │ ├── text_tradeao_ko.txt │ │ │ ├── text_tradeao_zh-Hans.txt │ │ │ ├── text_tradexy_de.txt │ │ │ ├── text_tradexy_en.txt │ │ │ ├── text_tradexy_es.txt │ │ │ ├── text_tradexy_fr.txt │ │ │ ├── text_tradexy_it.txt │ │ │ ├── text_tradexy_ja.txt │ │ │ ├── text_tradexy_ko.txt │ │ │ └── text_tradexy_zh-Hans.txt │ │ ├── gen7 │ │ │ ├── text_tradesm_de.txt │ │ │ ├── text_tradesm_en.txt │ │ │ ├── text_tradesm_es.txt │ │ │ ├── text_tradesm_fr.txt │ │ │ ├── text_tradesm_it.txt │ │ │ ├── text_tradesm_ja.txt │ │ │ ├── text_tradesm_ko.txt │ │ │ ├── text_tradesm_zh.txt │ │ │ ├── text_tradeusum_de.txt │ │ │ ├── text_tradeusum_en.txt │ │ │ ├── text_tradeusum_es.txt │ │ │ ├── text_tradeusum_fr.txt │ │ │ ├── text_tradeusum_it.txt │ │ │ ├── text_tradeusum_ja.txt │ │ │ ├── text_tradeusum_ko.txt │ │ │ └── text_tradeusum_zh.txt │ │ ├── gen8 │ │ │ ├── text_tradebdsp_de.txt │ │ │ ├── text_tradebdsp_en.txt │ │ │ ├── text_tradebdsp_es.txt │ │ │ ├── text_tradebdsp_fr.txt │ │ │ ├── text_tradebdsp_it.txt │ │ │ ├── text_tradebdsp_ja.txt │ │ │ ├── text_tradebdsp_ko.txt │ │ │ ├── text_tradebdsp_zh-Hans.txt │ │ │ ├── text_tradebdsp_zh-Hant.txt │ │ │ ├── text_tradeswsh_de.txt │ │ │ ├── text_tradeswsh_en.txt │ │ │ ├── text_tradeswsh_es.txt │ │ │ ├── text_tradeswsh_fr.txt │ │ │ ├── text_tradeswsh_it.txt │ │ │ ├── text_tradeswsh_ja.txt │ │ │ ├── text_tradeswsh_ko.txt │ │ │ ├── text_tradeswsh_zh-Hans.txt │ │ │ └── text_tradeswsh_zh-Hant.txt │ │ ├── gen9 │ │ │ ├── text_tradesv_de.txt │ │ │ ├── text_tradesv_en.txt │ │ │ ├── text_tradesv_es.txt │ │ │ ├── text_tradesv_fr.txt │ │ │ ├── text_tradesv_it.txt │ │ │ ├── text_tradesv_ja.txt │ │ │ ├── text_tradesv_ko.txt │ │ │ ├── text_tradesv_zh-Hans.txt │ │ │ └── text_tradesv_zh-Hant.txt │ │ ├── gen9a │ │ │ ├── text_tradeza_de.txt │ │ │ ├── text_tradeza_en.txt │ │ │ ├── text_tradeza_es-419.txt │ │ │ ├── text_tradeza_es.txt │ │ │ ├── text_tradeza_fr.txt │ │ │ ├── text_tradeza_it.txt │ │ │ ├── text_tradeza_ja.txt │ │ │ ├── text_tradeza_ko.txt │ │ │ ├── text_tradeza_zh-Hans.txt │ │ │ └── text_tradeza_zh-Hant.txt │ │ ├── mgdb │ │ │ ├── event1.pkl │ │ │ ├── event2.pkl │ │ │ ├── pgf.pkl │ │ │ ├── wa8.pkl │ │ │ ├── wa9.pkl │ │ │ ├── wb7full.pkl │ │ │ ├── wb8.pkl │ │ │ ├── wc4.pkl │ │ │ ├── wc6.pkl │ │ │ ├── wc6full.pkl │ │ │ ├── wc7.pkl │ │ │ ├── wc7full.pkl │ │ │ ├── wc8.pkl │ │ │ └── wc9.pkl │ │ ├── misc │ │ │ ├── mastery_la.pkl │ │ │ └── plus_za.pkl │ │ └── wild │ │ │ ├── Gen1 │ │ │ ├── encounter_blue.pkl │ │ │ ├── encounter_blue_jp.pkl │ │ │ ├── encounter_red.pkl │ │ │ └── encounter_yellow.pkl │ │ │ ├── Gen2 │ │ │ ├── encounter_crystal.pkl │ │ │ ├── encounter_gold.pkl │ │ │ └── encounter_silver.pkl │ │ │ ├── Gen3 │ │ │ ├── encounter_e.pkl │ │ │ ├── encounter_fr.pkl │ │ │ ├── encounter_lg.pkl │ │ │ ├── encounter_pcny.pkl │ │ │ ├── encounter_r.pkl │ │ │ ├── encounter_rse_swarm.pkl │ │ │ └── encounter_s.pkl │ │ │ ├── Gen4 │ │ │ ├── encounter_d.pkl │ │ │ ├── encounter_hg.pkl │ │ │ ├── encounter_p.pkl │ │ │ ├── encounter_pt.pkl │ │ │ ├── encounter_ss.pkl │ │ │ └── encounter_walker4.pkl │ │ │ ├── Gen5 │ │ │ ├── encounter_b.pkl │ │ │ ├── encounter_b2.pkl │ │ │ ├── encounter_w.pkl │ │ │ └── encounter_w2.pkl │ │ │ ├── Gen6 │ │ │ ├── encounter_as.pkl │ │ │ ├── encounter_or.pkl │ │ │ ├── encounter_x.pkl │ │ │ └── encounter_y.pkl │ │ │ ├── Gen7 │ │ │ ├── encounter_ge.pkl │ │ │ ├── encounter_gp.pkl │ │ │ ├── encounter_mn.pkl │ │ │ ├── encounter_sn.pkl │ │ │ ├── encounter_um.pkl │ │ │ └── encounter_us.pkl │ │ │ ├── Gen8 │ │ │ ├── encounter_bd.pkl │ │ │ ├── encounter_bd_underground.pkl │ │ │ ├── encounter_la.pkl │ │ │ ├── encounter_sh_dist.pkl │ │ │ ├── encounter_sh_hidden.pkl │ │ │ ├── encounter_sh_nest.pkl │ │ │ ├── encounter_sh_symbol.pkl │ │ │ ├── encounter_sp.pkl │ │ │ ├── encounter_sp_underground.pkl │ │ │ ├── encounter_sw_dist.pkl │ │ │ ├── encounter_sw_hidden.pkl │ │ │ ├── encounter_sw_nest.pkl │ │ │ ├── encounter_sw_symbol.pkl │ │ │ └── encounter_swsh_underground.pkl │ │ │ ├── Gen9 │ │ │ ├── encounter_dist_paldea.pkl │ │ │ ├── encounter_fixed_paldea.pkl │ │ │ ├── encounter_gem_blueberry.pkl │ │ │ ├── encounter_gem_kitakami.pkl │ │ │ ├── encounter_gem_paldea.pkl │ │ │ ├── encounter_might_paldea.pkl │ │ │ ├── encounter_outbreak_paldea.pkl │ │ │ ├── encounter_wild_paldea.pkl │ │ │ └── encounter_za.pkl │ │ │ ├── encounter_go_home.pkl │ │ │ └── encounter_go_lgpe.pkl │ ├── localize │ │ ├── battle │ │ │ ├── battle_de.json │ │ │ ├── battle_en.json │ │ │ ├── battle_es-419.json │ │ │ ├── battle_es.json │ │ │ ├── battle_fr.json │ │ │ ├── battle_it.json │ │ │ ├── battle_ja.json │ │ │ ├── battle_ko.json │ │ │ ├── battle_zh-hans.json │ │ │ ├── battle_zh-hant.json │ │ │ ├── setparse_de.json │ │ │ ├── setparse_en.json │ │ │ ├── setparse_es-419.json │ │ │ ├── setparse_es.json │ │ │ ├── setparse_fr.json │ │ │ ├── setparse_it.json │ │ │ ├── setparse_ja.json │ │ │ ├── setparse_ko.json │ │ │ ├── setparse_zh-hans.json │ │ │ └── setparse_zh-hant.json │ │ ├── encounter │ │ │ ├── encounter_de.json │ │ │ ├── encounter_en.json │ │ │ ├── encounter_es-419.json │ │ │ ├── encounter_es.json │ │ │ ├── encounter_fr.json │ │ │ ├── encounter_it.json │ │ │ ├── encounter_ja.json │ │ │ ├── encounter_ko.json │ │ │ ├── encounter_zh-hans.json │ │ │ └── encounter_zh-hant.json │ │ ├── general │ │ │ ├── general_de.json │ │ │ ├── general_en.json │ │ │ ├── general_es-419.json │ │ │ ├── general_es.json │ │ │ ├── general_fr.json │ │ │ ├── general_it.json │ │ │ ├── general_ja.json │ │ │ ├── general_ko.json │ │ │ ├── general_zh-hans.json │ │ │ └── general_zh-hant.json │ │ ├── legality │ │ │ ├── legality_de.json │ │ │ ├── legality_en.json │ │ │ ├── legality_es-419.json │ │ │ ├── legality_es.json │ │ │ ├── legality_fr.json │ │ │ ├── legality_it.json │ │ │ ├── legality_ja.json │ │ │ ├── legality_ko.json │ │ │ ├── legality_zh-hans.json │ │ │ └── legality_zh-hant.json │ │ └── movesource │ │ │ ├── movesource_de.json │ │ │ ├── movesource_en.json │ │ │ ├── movesource_es-419.json │ │ │ ├── movesource_es.json │ │ │ ├── movesource_fr.json │ │ │ ├── movesource_it.json │ │ │ ├── movesource_ja.json │ │ │ ├── movesource_ko.json │ │ │ ├── movesource_zh-hans.json │ │ │ └── movesource_zh-hant.json │ └── text │ │ ├── badwords │ │ ├── badwords_3ds.txt │ │ ├── badwords_gen5.txt │ │ └── badwords_switch.txt │ │ ├── game │ │ ├── battle_pass_br │ │ │ ├── text_gear_de.txt │ │ │ ├── text_gear_en.txt │ │ │ ├── text_gear_es-419.txt │ │ │ ├── text_gear_es.txt │ │ │ ├── text_gear_fr.txt │ │ │ ├── text_gear_it.txt │ │ │ ├── text_gear_ja.txt │ │ │ ├── text_pass_design_de.txt │ │ │ ├── text_pass_design_en.txt │ │ │ ├── text_pass_design_es-419.txt │ │ │ ├── text_pass_design_es.txt │ │ │ ├── text_pass_design_fr.txt │ │ │ ├── text_pass_design_it.txt │ │ │ ├── text_pass_design_ja.txt │ │ │ ├── text_trainer_title_de.txt │ │ │ ├── text_trainer_title_en.txt │ │ │ ├── text_trainer_title_es-419.txt │ │ │ ├── text_trainer_title_es.txt │ │ │ ├── text_trainer_title_fr.txt │ │ │ ├── text_trainer_title_it.txt │ │ │ ├── text_trainer_title_ja.txt │ │ │ ├── text_trainer_title_npc_de.txt │ │ │ ├── text_trainer_title_npc_en.txt │ │ │ ├── text_trainer_title_npc_es-419.txt │ │ │ ├── text_trainer_title_npc_es.txt │ │ │ ├── text_trainer_title_npc_fr.txt │ │ │ ├── text_trainer_title_npc_it.txt │ │ │ └── text_trainer_title_npc_ja.txt │ │ ├── decorations_rse │ │ │ ├── text_decoration3_de.txt │ │ │ ├── text_decoration3_en.txt │ │ │ ├── text_decoration3_es-419.txt │ │ │ ├── text_decoration3_es.txt │ │ │ ├── text_decoration3_fr.txt │ │ │ ├── text_decoration3_it.txt │ │ │ ├── text_decoration3_ja.txt │ │ │ ├── text_decoration3_ko.txt │ │ │ ├── text_decoration3_zh-Hans.txt │ │ │ └── text_decoration3_zh-Hant.txt │ │ ├── fashioncase_dppthgss │ │ │ ├── text_accessories_de.txt │ │ │ ├── text_accessories_en.txt │ │ │ ├── text_accessories_es-419.txt │ │ │ ├── text_accessories_es.txt │ │ │ ├── text_accessories_fr.txt │ │ │ ├── text_accessories_it.txt │ │ │ ├── text_accessories_ja.txt │ │ │ ├── text_accessories_ko.txt │ │ │ ├── text_accessories_zh-Hans.txt │ │ │ ├── text_accessories_zh-Hant.txt │ │ │ ├── text_backdrops_de.txt │ │ │ ├── text_backdrops_en.txt │ │ │ ├── text_backdrops_es-419.txt │ │ │ ├── text_backdrops_es.txt │ │ │ ├── text_backdrops_fr.txt │ │ │ ├── text_backdrops_it.txt │ │ │ ├── text_backdrops_ja.txt │ │ │ ├── text_backdrops_ko.txt │ │ │ ├── text_backdrops_zh-Hans.txt │ │ │ └── text_backdrops_zh-Hant.txt │ │ ├── medals_b2w2 │ │ │ ├── text_medal_types_de.txt │ │ │ ├── text_medal_types_en.txt │ │ │ ├── text_medal_types_es-419.txt │ │ │ ├── text_medal_types_es.txt │ │ │ ├── text_medal_types_fr.txt │ │ │ ├── text_medal_types_it.txt │ │ │ ├── text_medal_types_ja.txt │ │ │ ├── text_medal_types_ko.txt │ │ │ ├── text_medal_types_zh-Hans.txt │ │ │ ├── text_medal_types_zh-Hant.txt │ │ │ ├── text_medals_de.txt │ │ │ ├── text_medals_en.txt │ │ │ ├── text_medals_es-419.txt │ │ │ ├── text_medals_es.txt │ │ │ ├── text_medals_fr.txt │ │ │ ├── text_medals_it.txt │ │ │ ├── text_medals_ja.txt │ │ │ ├── text_medals_ko.txt │ │ │ ├── text_medals_zh-Hans.txt │ │ │ └── text_medals_zh-Hant.txt │ │ ├── poffins_bdsp │ │ │ ├── text_poffin8b_de.txt │ │ │ ├── text_poffin8b_en.txt │ │ │ ├── text_poffin8b_es-419.txt │ │ │ ├── text_poffin8b_es.txt │ │ │ ├── text_poffin8b_fr.txt │ │ │ ├── text_poffin8b_it.txt │ │ │ ├── text_poffin8b_ja.txt │ │ │ ├── text_poffin8b_ko.txt │ │ │ ├── text_poffin8b_zh-Hans.txt │ │ │ └── text_poffin8b_zh-Hant.txt │ │ ├── poffins_dppt │ │ │ ├── text_poffin4_de.txt │ │ │ ├── text_poffin4_en.txt │ │ │ ├── text_poffin4_es-419.txt │ │ │ ├── text_poffin4_es.txt │ │ │ ├── text_poffin4_fr.txt │ │ │ ├── text_poffin4_it.txt │ │ │ ├── text_poffin4_ja.txt │ │ │ ├── text_poffin4_ko.txt │ │ │ ├── text_poffin4_zh-Hans.txt │ │ │ └── text_poffin4_zh-Hant.txt │ │ ├── pokeblocks_rse │ │ │ ├── text_pokeblock3_de.txt │ │ │ ├── text_pokeblock3_en.txt │ │ │ ├── text_pokeblock3_es-419.txt │ │ │ ├── text_pokeblock3_es.txt │ │ │ ├── text_pokeblock3_fr.txt │ │ │ ├── text_pokeblock3_it.txt │ │ │ ├── text_pokeblock3_ja.txt │ │ │ ├── text_pokeblock3_ko.txt │ │ │ ├── text_pokeblock3_zh-Hans.txt │ │ │ └── text_pokeblock3_zh-Hant.txt │ │ ├── poketchapps_dppt │ │ │ ├── text_poketchapps_de.txt │ │ │ ├── text_poketchapps_en.txt │ │ │ ├── text_poketchapps_es-419.txt │ │ │ ├── text_poketchapps_es.txt │ │ │ ├── text_poketchapps_fr.txt │ │ │ ├── text_poketchapps_it.txt │ │ │ ├── text_poketchapps_ja.txt │ │ │ ├── text_poketchapps_ko.txt │ │ │ └── text_poketchapps_zh-Hans.txt │ │ ├── props_bwb2w2 │ │ │ ├── text_props_de.txt │ │ │ ├── text_props_en.txt │ │ │ ├── text_props_es-419.txt │ │ │ ├── text_props_es.txt │ │ │ ├── text_props_fr.txt │ │ │ ├── text_props_it.txt │ │ │ ├── text_props_ja.txt │ │ │ ├── text_props_ko.txt │ │ │ ├── text_props_zh-Hans.txt │ │ │ └── text_props_zh-Hant.txt │ │ ├── research_la │ │ │ ├── text_species_tasks8a_de.txt │ │ │ ├── text_species_tasks8a_en.txt │ │ │ ├── text_species_tasks8a_es-419.txt │ │ │ ├── text_species_tasks8a_es.txt │ │ │ ├── text_species_tasks8a_fr.txt │ │ │ ├── text_species_tasks8a_it.txt │ │ │ ├── text_species_tasks8a_ja.txt │ │ │ ├── text_species_tasks8a_ko.txt │ │ │ ├── text_species_tasks8a_zh-Hans.txt │ │ │ ├── text_species_tasks8a_zh-Hant.txt │ │ │ ├── text_tasks8a_de.txt │ │ │ ├── text_tasks8a_en.txt │ │ │ ├── text_tasks8a_es-419.txt │ │ │ ├── text_tasks8a_es.txt │ │ │ ├── text_tasks8a_fr.txt │ │ │ ├── text_tasks8a_it.txt │ │ │ ├── text_tasks8a_ja.txt │ │ │ ├── text_tasks8a_ko.txt │ │ │ ├── text_tasks8a_zh-Hans.txt │ │ │ ├── text_tasks8a_zh-Hant.txt │ │ │ ├── text_time_tasks8a_de.txt │ │ │ ├── text_time_tasks8a_en.txt │ │ │ ├── text_time_tasks8a_es-419.txt │ │ │ ├── text_time_tasks8a_es.txt │ │ │ ├── text_time_tasks8a_fr.txt │ │ │ ├── text_time_tasks8a_it.txt │ │ │ ├── text_time_tasks8a_ja.txt │ │ │ ├── text_time_tasks8a_ko.txt │ │ │ ├── text_time_tasks8a_zh-Hans.txt │ │ │ └── text_time_tasks8a_zh-Hant.txt │ │ ├── seals_bdsp │ │ │ ├── text_stickers_de.txt │ │ │ ├── text_stickers_en.txt │ │ │ ├── text_stickers_es-419.txt │ │ │ ├── text_stickers_es.txt │ │ │ ├── text_stickers_fr.txt │ │ │ ├── text_stickers_it.txt │ │ │ ├── text_stickers_ja.txt │ │ │ ├── text_stickers_ko.txt │ │ │ ├── text_stickers_zh-Hans.txt │ │ │ └── text_stickers_zh-Hant.txt │ │ ├── seals_dppthgss │ │ │ ├── text_poketchapps_zh-Hant.txt │ │ │ ├── text_seals_de.txt │ │ │ ├── text_seals_en.txt │ │ │ ├── text_seals_es-419.txt │ │ │ ├── text_seals_es.txt │ │ │ ├── text_seals_fr.txt │ │ │ ├── text_seals_it.txt │ │ │ ├── text_seals_ja.txt │ │ │ ├── text_seals_ko.txt │ │ │ ├── text_seals_zh-Hans.txt │ │ │ └── text_seals_zh-Hant.txt │ │ ├── throw_styles_sv │ │ │ ├── text_throw_styles_de.txt │ │ │ ├── text_throw_styles_en.txt │ │ │ ├── text_throw_styles_es-419.txt │ │ │ ├── text_throw_styles_es.txt │ │ │ ├── text_throw_styles_fr.txt │ │ │ ├── text_throw_styles_it.txt │ │ │ ├── text_throw_styles_ja.txt │ │ │ ├── text_throw_styles_ko.txt │ │ │ ├── text_throw_styles_zh-Hans.txt │ │ │ └── text_throw_styles_zh-Hant.txt │ │ ├── underground_bdsp │ │ │ ├── text_ug_item_de.txt │ │ │ ├── text_ug_item_en.txt │ │ │ ├── text_ug_item_es-419.txt │ │ │ ├── text_ug_item_es.txt │ │ │ ├── text_ug_item_fr.txt │ │ │ ├── text_ug_item_it.txt │ │ │ ├── text_ug_item_ja.txt │ │ │ ├── text_ug_item_ko.txt │ │ │ ├── text_ug_item_zh-Hans.txt │ │ │ └── text_ug_item_zh-Hant.txt │ │ ├── underground_dppt │ │ │ ├── text_uggoods_de.txt │ │ │ ├── text_uggoods_en.txt │ │ │ ├── text_uggoods_es-419.txt │ │ │ ├── text_uggoods_es.txt │ │ │ ├── text_uggoods_fr.txt │ │ │ ├── text_uggoods_it.txt │ │ │ ├── text_uggoods_ja.txt │ │ │ ├── text_uggoods_ko.txt │ │ │ ├── text_uggoods_zh-Hans.txt │ │ │ ├── text_uggoods_zh-Hant.txt │ │ │ ├── text_ugspheres_de.txt │ │ │ ├── text_ugspheres_en.txt │ │ │ ├── text_ugspheres_es-419.txt │ │ │ ├── text_ugspheres_es.txt │ │ │ ├── text_ugspheres_fr.txt │ │ │ ├── text_ugspheres_it.txt │ │ │ ├── text_ugspheres_ja.txt │ │ │ ├── text_ugspheres_ko.txt │ │ │ ├── text_ugspheres_zh-Hans.txt │ │ │ ├── text_ugspheres_zh-Hant.txt │ │ │ ├── text_ugtraps_de.txt │ │ │ ├── text_ugtraps_en.txt │ │ │ ├── text_ugtraps_es-419.txt │ │ │ ├── text_ugtraps_es.txt │ │ │ ├── text_ugtraps_fr.txt │ │ │ ├── text_ugtraps_it.txt │ │ │ ├── text_ugtraps_ja.txt │ │ │ ├── text_ugtraps_ko.txt │ │ │ ├── text_ugtraps_zh-Hans.txt │ │ │ ├── text_ugtraps_zh-Hant.txt │ │ │ ├── text_ugtreasures_de.txt │ │ │ ├── text_ugtreasures_en.txt │ │ │ ├── text_ugtreasures_es-419.txt │ │ │ ├── text_ugtreasures_es.txt │ │ │ ├── text_ugtreasures_fr.txt │ │ │ ├── text_ugtreasures_it.txt │ │ │ ├── text_ugtreasures_ja.txt │ │ │ ├── text_ugtreasures_ko.txt │ │ │ ├── text_ugtreasures_zh-Hans.txt │ │ │ └── text_ugtreasures_zh-Hant.txt │ │ └── walkercourses_hgss │ │ │ ├── text_walkercourses_de.txt │ │ │ ├── text_walkercourses_en.txt │ │ │ ├── text_walkercourses_es-419.txt │ │ │ ├── text_walkercourses_es.txt │ │ │ ├── text_walkercourses_fr.txt │ │ │ ├── text_walkercourses_it.txt │ │ │ ├── text_walkercourses_ja.txt │ │ │ ├── text_walkercourses_ko.txt │ │ │ ├── text_walkercourses_zh-Hans.txt │ │ │ └── text_walkercourses_zh-Hant.txt │ │ ├── items │ │ ├── gen1 │ │ │ ├── text_ItemsG1_de.txt │ │ │ ├── text_ItemsG1_en.txt │ │ │ ├── text_ItemsG1_es-419.txt │ │ │ ├── text_ItemsG1_es.txt │ │ │ ├── text_ItemsG1_fr.txt │ │ │ ├── text_ItemsG1_it.txt │ │ │ ├── text_ItemsG1_ja.txt │ │ │ ├── text_ItemsG1_ko.txt │ │ │ ├── text_ItemsG1_zh-Hans.txt │ │ │ └── text_ItemsG1_zh-Hant.txt │ │ ├── gen2 │ │ │ ├── text_ItemsG2_de.txt │ │ │ ├── text_ItemsG2_en.txt │ │ │ ├── text_ItemsG2_es-419.txt │ │ │ ├── text_ItemsG2_es.txt │ │ │ ├── text_ItemsG2_fr.txt │ │ │ ├── text_ItemsG2_it.txt │ │ │ ├── text_ItemsG2_ja.txt │ │ │ ├── text_ItemsG2_ko.txt │ │ │ ├── text_ItemsG2_zh-Hans.txt │ │ │ └── text_ItemsG2_zh-Hant.txt │ │ ├── gen3 │ │ │ ├── text_ItemsG3Colosseum_de.txt │ │ │ ├── text_ItemsG3Colosseum_en.txt │ │ │ ├── text_ItemsG3Colosseum_es-419.txt │ │ │ ├── text_ItemsG3Colosseum_es.txt │ │ │ ├── text_ItemsG3Colosseum_fr.txt │ │ │ ├── text_ItemsG3Colosseum_it.txt │ │ │ ├── text_ItemsG3Colosseum_ja.txt │ │ │ ├── text_ItemsG3Colosseum_zh-Hans.txt │ │ │ ├── text_ItemsG3Colosseum_zh-Hant.txt │ │ │ ├── text_ItemsG3XD_de.txt │ │ │ ├── text_ItemsG3XD_en.txt │ │ │ ├── text_ItemsG3XD_es-419.txt │ │ │ ├── text_ItemsG3XD_es.txt │ │ │ ├── text_ItemsG3XD_fr.txt │ │ │ ├── text_ItemsG3XD_it.txt │ │ │ ├── text_ItemsG3XD_ja.txt │ │ │ ├── text_ItemsG3XD_zh-Hans.txt │ │ │ ├── text_ItemsG3XD_zh-Hant.txt │ │ │ ├── text_ItemsG3_de.txt │ │ │ ├── text_ItemsG3_en.txt │ │ │ ├── text_ItemsG3_es-419.txt │ │ │ ├── text_ItemsG3_es.txt │ │ │ ├── text_ItemsG3_fr.txt │ │ │ ├── text_ItemsG3_it.txt │ │ │ ├── text_ItemsG3_ja.txt │ │ │ ├── text_ItemsG3_ko.txt │ │ │ ├── text_ItemsG3_zh-Hans.txt │ │ │ └── text_ItemsG3_zh-Hant.txt │ │ ├── gen4 │ │ │ ├── text_Mail4_de.txt │ │ │ ├── text_Mail4_en.txt │ │ │ ├── text_Mail4_es-419.txt │ │ │ ├── text_Mail4_es.txt │ │ │ ├── text_Mail4_fr.txt │ │ │ ├── text_Mail4_it.txt │ │ │ ├── text_Mail4_ja.txt │ │ │ ├── text_Mail4_ko.txt │ │ │ ├── text_Mail4_zh-Hans.txt │ │ │ └── text_Mail4_zh-Hant.txt │ │ ├── text_Items_de.txt │ │ ├── text_Items_en.txt │ │ ├── text_Items_es-419.txt │ │ ├── text_Items_es.txt │ │ ├── text_Items_fr.txt │ │ ├── text_Items_it.txt │ │ ├── text_Items_ja.txt │ │ ├── text_Items_ko.txt │ │ ├── text_Items_zh-Hans.txt │ │ └── text_Items_zh-Hant.txt │ │ ├── locale3DS │ │ ├── consoleregions │ │ │ ├── text_console3ds_de.txt │ │ │ ├── text_console3ds_en.txt │ │ │ ├── text_console3ds_es-419.txt │ │ │ ├── text_console3ds_es.txt │ │ │ ├── text_console3ds_fr.txt │ │ │ ├── text_console3ds_it.txt │ │ │ ├── text_console3ds_ja.txt │ │ │ ├── text_console3ds_ko.txt │ │ │ ├── text_console3ds_zh-Hans.txt │ │ │ └── text_console3ds_zh-Hant.txt │ │ ├── countries.txt │ │ └── subregions │ │ │ ├── sr_001.txt │ │ │ ├── sr_008.txt │ │ │ ├── sr_009.txt │ │ │ ├── sr_010.txt │ │ │ ├── sr_011.txt │ │ │ ├── sr_012.txt │ │ │ ├── sr_013.txt │ │ │ ├── sr_014.txt │ │ │ ├── sr_015.txt │ │ │ ├── sr_016.txt │ │ │ ├── sr_017.txt │ │ │ ├── sr_018.txt │ │ │ ├── sr_019.txt │ │ │ ├── sr_020.txt │ │ │ ├── sr_021.txt │ │ │ ├── sr_022.txt │ │ │ ├── sr_023.txt │ │ │ ├── sr_024.txt │ │ │ ├── sr_025.txt │ │ │ ├── sr_026.txt │ │ │ ├── sr_027.txt │ │ │ ├── sr_028.txt │ │ │ ├── sr_029.txt │ │ │ ├── sr_030.txt │ │ │ ├── sr_031.txt │ │ │ ├── sr_032.txt │ │ │ ├── sr_033.txt │ │ │ ├── sr_034.txt │ │ │ ├── sr_035.txt │ │ │ ├── sr_036.txt │ │ │ ├── sr_037.txt │ │ │ ├── sr_038.txt │ │ │ ├── sr_039.txt │ │ │ ├── sr_040.txt │ │ │ ├── sr_041.txt │ │ │ ├── sr_042.txt │ │ │ ├── sr_043.txt │ │ │ ├── sr_044.txt │ │ │ ├── sr_045.txt │ │ │ ├── sr_046.txt │ │ │ ├── sr_047.txt │ │ │ ├── sr_048.txt │ │ │ ├── sr_049.txt │ │ │ ├── sr_050.txt │ │ │ ├── sr_051.txt │ │ │ ├── sr_052.txt │ │ │ ├── sr_064.txt │ │ │ ├── sr_065.txt │ │ │ ├── sr_066.txt │ │ │ ├── sr_067.txt │ │ │ ├── sr_068.txt │ │ │ ├── sr_069.txt │ │ │ ├── sr_070.txt │ │ │ ├── sr_071.txt │ │ │ ├── sr_072.txt │ │ │ ├── sr_073.txt │ │ │ ├── sr_074.txt │ │ │ ├── sr_075.txt │ │ │ ├── sr_076.txt │ │ │ ├── sr_077.txt │ │ │ ├── sr_078.txt │ │ │ ├── sr_079.txt │ │ │ ├── sr_080.txt │ │ │ ├── sr_081.txt │ │ │ ├── sr_082.txt │ │ │ ├── sr_083.txt │ │ │ ├── sr_084.txt │ │ │ ├── sr_085.txt │ │ │ ├── sr_086.txt │ │ │ ├── sr_087.txt │ │ │ ├── sr_088.txt │ │ │ ├── sr_089.txt │ │ │ ├── sr_090.txt │ │ │ ├── sr_091.txt │ │ │ ├── sr_092.txt │ │ │ ├── sr_093.txt │ │ │ ├── sr_094.txt │ │ │ ├── sr_095.txt │ │ │ ├── sr_096.txt │ │ │ ├── sr_097.txt │ │ │ ├── sr_098.txt │ │ │ ├── sr_099.txt │ │ │ ├── sr_100.txt │ │ │ ├── sr_101.txt │ │ │ ├── sr_102.txt │ │ │ ├── sr_103.txt │ │ │ ├── sr_104.txt │ │ │ ├── sr_105.txt │ │ │ ├── sr_106.txt │ │ │ ├── sr_107.txt │ │ │ ├── sr_108.txt │ │ │ ├── sr_109.txt │ │ │ ├── sr_110.txt │ │ │ ├── sr_111.txt │ │ │ ├── sr_112.txt │ │ │ ├── sr_113.txt │ │ │ ├── sr_114.txt │ │ │ ├── sr_115.txt │ │ │ ├── sr_116.txt │ │ │ ├── sr_117.txt │ │ │ ├── sr_118.txt │ │ │ ├── sr_119.txt │ │ │ ├── sr_120.txt │ │ │ ├── sr_121.txt │ │ │ ├── sr_122.txt │ │ │ ├── sr_123.txt │ │ │ ├── sr_124.txt │ │ │ ├── sr_125.txt │ │ │ ├── sr_126.txt │ │ │ ├── sr_127.txt │ │ │ ├── sr_128.txt │ │ │ ├── sr_136.txt │ │ │ ├── sr_144.txt │ │ │ ├── sr_153.txt │ │ │ ├── sr_156.txt │ │ │ ├── sr_160.txt │ │ │ ├── sr_168.txt │ │ │ ├── sr_169.txt │ │ │ ├── sr_174.txt │ │ │ ├── sr_184.txt │ │ │ ├── sr_185.txt │ │ │ └── sr_186.txt │ │ ├── localeNDS │ │ ├── gen4 │ │ │ ├── gen4_countries.txt │ │ │ ├── gen4_sr_009.txt │ │ │ ├── gen4_sr_012.txt │ │ │ ├── gen4_sr_028.txt │ │ │ ├── gen4_sr_036.txt │ │ │ ├── gen4_sr_043.txt │ │ │ ├── gen4_sr_070.txt │ │ │ ├── gen4_sr_071.txt │ │ │ ├── gen4_sr_077.txt │ │ │ ├── gen4_sr_094.txt │ │ │ ├── gen4_sr_101.txt │ │ │ ├── gen4_sr_103.txt │ │ │ ├── gen4_sr_156.txt │ │ │ ├── gen4_sr_166.txt │ │ │ ├── gen4_sr_172.txt │ │ │ ├── gen4_sr_193.txt │ │ │ ├── gen4_sr_199.txt │ │ │ ├── gen4_sr_219.txt │ │ │ ├── gen4_sr_220.txt │ │ │ └── gen4_sr_default.txt │ │ └── gen5 │ │ │ ├── gen5_countries.txt │ │ │ ├── gen5_sr_009.txt │ │ │ ├── gen5_sr_012.txt │ │ │ ├── gen5_sr_028.txt │ │ │ ├── gen5_sr_036.txt │ │ │ ├── gen5_sr_043.txt │ │ │ ├── gen5_sr_072.txt │ │ │ ├── gen5_sr_073.txt │ │ │ ├── gen5_sr_079.txt │ │ │ ├── gen5_sr_095.txt │ │ │ ├── gen5_sr_102.txt │ │ │ ├── gen5_sr_105.txt │ │ │ ├── gen5_sr_155.txt │ │ │ ├── gen5_sr_166.txt │ │ │ ├── gen5_sr_174.txt │ │ │ ├── gen5_sr_195.txt │ │ │ ├── gen5_sr_200.txt │ │ │ ├── gen5_sr_218.txt │ │ │ ├── gen5_sr_220.txt │ │ │ └── gen5_sr_default.txt │ │ ├── locations │ │ ├── gen2 │ │ │ ├── text_gsc_00000_de.txt │ │ │ ├── text_gsc_00000_en.txt │ │ │ ├── text_gsc_00000_es-419.txt │ │ │ ├── text_gsc_00000_es.txt │ │ │ ├── text_gsc_00000_fr.txt │ │ │ ├── text_gsc_00000_it.txt │ │ │ ├── text_gsc_00000_ja.txt │ │ │ ├── text_gsc_00000_ko.txt │ │ │ ├── text_gsc_00000_zh-Hans.txt │ │ │ └── text_gsc_00000_zh-Hant.txt │ │ ├── gen3 │ │ │ ├── text_cxd_00000_de.txt │ │ │ ├── text_cxd_00000_en.txt │ │ │ ├── text_cxd_00000_es-419.txt │ │ │ ├── text_cxd_00000_es.txt │ │ │ ├── text_cxd_00000_fr.txt │ │ │ ├── text_cxd_00000_it.txt │ │ │ ├── text_cxd_00000_ja.txt │ │ │ ├── text_cxd_00000_zh-Hans.txt │ │ │ ├── text_cxd_00000_zh-Hant.txt │ │ │ ├── text_rsefrlg_00000_de.txt │ │ │ ├── text_rsefrlg_00000_en.txt │ │ │ ├── text_rsefrlg_00000_es-419.txt │ │ │ ├── text_rsefrlg_00000_es.txt │ │ │ ├── text_rsefrlg_00000_fr.txt │ │ │ ├── text_rsefrlg_00000_it.txt │ │ │ ├── text_rsefrlg_00000_ja.txt │ │ │ ├── text_rsefrlg_00000_ko.txt │ │ │ ├── text_rsefrlg_00000_zh-Hans.txt │ │ │ └── text_rsefrlg_00000_zh-Hant.txt │ │ ├── gen4 │ │ │ ├── text_hgss_00000_de.txt │ │ │ ├── text_hgss_00000_en.txt │ │ │ ├── text_hgss_00000_es-419.txt │ │ │ ├── text_hgss_00000_es.txt │ │ │ ├── text_hgss_00000_fr.txt │ │ │ ├── text_hgss_00000_it.txt │ │ │ ├── text_hgss_00000_ja.txt │ │ │ ├── text_hgss_00000_ko.txt │ │ │ ├── text_hgss_00000_zh-Hans.txt │ │ │ ├── text_hgss_00000_zh-Hant.txt │ │ │ ├── text_hgss_02000_de.txt │ │ │ ├── text_hgss_02000_en.txt │ │ │ ├── text_hgss_02000_es-419.txt │ │ │ ├── text_hgss_02000_es.txt │ │ │ ├── text_hgss_02000_fr.txt │ │ │ ├── text_hgss_02000_it.txt │ │ │ ├── text_hgss_02000_ja.txt │ │ │ ├── text_hgss_02000_ko.txt │ │ │ ├── text_hgss_02000_zh-Hans.txt │ │ │ ├── text_hgss_02000_zh-Hant.txt │ │ │ ├── text_hgss_03000_de.txt │ │ │ ├── text_hgss_03000_en.txt │ │ │ ├── text_hgss_03000_es-419.txt │ │ │ ├── text_hgss_03000_es.txt │ │ │ ├── text_hgss_03000_fr.txt │ │ │ ├── text_hgss_03000_it.txt │ │ │ ├── text_hgss_03000_ja.txt │ │ │ ├── text_hgss_03000_ko.txt │ │ │ ├── text_hgss_03000_zh-Hans.txt │ │ │ └── text_hgss_03000_zh-Hant.txt │ │ ├── gen5 │ │ │ ├── text_bw2_00000_de.txt │ │ │ ├── text_bw2_00000_en.txt │ │ │ ├── text_bw2_00000_es-419.txt │ │ │ ├── text_bw2_00000_es.txt │ │ │ ├── text_bw2_00000_fr.txt │ │ │ ├── text_bw2_00000_it.txt │ │ │ ├── text_bw2_00000_ja.txt │ │ │ ├── text_bw2_00000_ko.txt │ │ │ ├── text_bw2_00000_zh-Hans.txt │ │ │ ├── text_bw2_00000_zh-Hant.txt │ │ │ ├── text_bw2_30000_de.txt │ │ │ ├── text_bw2_30000_en.txt │ │ │ ├── text_bw2_30000_es-419.txt │ │ │ ├── text_bw2_30000_es.txt │ │ │ ├── text_bw2_30000_fr.txt │ │ │ ├── text_bw2_30000_it.txt │ │ │ ├── text_bw2_30000_ja.txt │ │ │ ├── text_bw2_30000_ko.txt │ │ │ ├── text_bw2_30000_zh-Hans.txt │ │ │ ├── text_bw2_30000_zh-Hant.txt │ │ │ ├── text_bw2_40000_de.txt │ │ │ ├── text_bw2_40000_en.txt │ │ │ ├── text_bw2_40000_es-419.txt │ │ │ ├── text_bw2_40000_es.txt │ │ │ ├── text_bw2_40000_fr.txt │ │ │ ├── text_bw2_40000_it.txt │ │ │ ├── text_bw2_40000_ja.txt │ │ │ ├── text_bw2_40000_ko.txt │ │ │ ├── text_bw2_40000_zh-Hans.txt │ │ │ ├── text_bw2_40000_zh-Hant.txt │ │ │ ├── text_bw2_60000_de.txt │ │ │ ├── text_bw2_60000_en.txt │ │ │ ├── text_bw2_60000_es-419.txt │ │ │ ├── text_bw2_60000_es.txt │ │ │ ├── text_bw2_60000_fr.txt │ │ │ ├── text_bw2_60000_it.txt │ │ │ ├── text_bw2_60000_ja.txt │ │ │ ├── text_bw2_60000_ko.txt │ │ │ ├── text_bw2_60000_zh-Hans.txt │ │ │ └── text_bw2_60000_zh-Hant.txt │ │ ├── gen6 │ │ │ ├── text_xy_00000_de.txt │ │ │ ├── text_xy_00000_en.txt │ │ │ ├── text_xy_00000_es-419.txt │ │ │ ├── text_xy_00000_es.txt │ │ │ ├── text_xy_00000_fr.txt │ │ │ ├── text_xy_00000_it.txt │ │ │ ├── text_xy_00000_ja.txt │ │ │ ├── text_xy_00000_ko.txt │ │ │ ├── text_xy_00000_zh-Hans.txt │ │ │ ├── text_xy_00000_zh-Hant.txt │ │ │ ├── text_xy_30000_de.txt │ │ │ ├── text_xy_30000_en.txt │ │ │ ├── text_xy_30000_es-419.txt │ │ │ ├── text_xy_30000_es.txt │ │ │ ├── text_xy_30000_fr.txt │ │ │ ├── text_xy_30000_it.txt │ │ │ ├── text_xy_30000_ja.txt │ │ │ ├── text_xy_30000_ko.txt │ │ │ ├── text_xy_30000_zh-Hans.txt │ │ │ ├── text_xy_30000_zh-Hant.txt │ │ │ ├── text_xy_40000_de.txt │ │ │ ├── text_xy_40000_en.txt │ │ │ ├── text_xy_40000_es-419.txt │ │ │ ├── text_xy_40000_es.txt │ │ │ ├── text_xy_40000_fr.txt │ │ │ ├── text_xy_40000_it.txt │ │ │ ├── text_xy_40000_ja.txt │ │ │ ├── text_xy_40000_ko.txt │ │ │ ├── text_xy_40000_zh-Hans.txt │ │ │ ├── text_xy_40000_zh-Hant.txt │ │ │ ├── text_xy_60000_de.txt │ │ │ ├── text_xy_60000_en.txt │ │ │ ├── text_xy_60000_es-419.txt │ │ │ ├── text_xy_60000_es.txt │ │ │ ├── text_xy_60000_fr.txt │ │ │ ├── text_xy_60000_it.txt │ │ │ ├── text_xy_60000_ja.txt │ │ │ ├── text_xy_60000_ko.txt │ │ │ ├── text_xy_60000_zh-Hans.txt │ │ │ └── text_xy_60000_zh-Hant.txt │ │ ├── gen7 │ │ │ ├── text_gg_00000_de.txt │ │ │ ├── text_gg_00000_en.txt │ │ │ ├── text_gg_00000_es-419.txt │ │ │ ├── text_gg_00000_es.txt │ │ │ ├── text_gg_00000_fr.txt │ │ │ ├── text_gg_00000_it.txt │ │ │ ├── text_gg_00000_ja.txt │ │ │ ├── text_gg_00000_ko.txt │ │ │ ├── text_gg_00000_zh-Hans.txt │ │ │ ├── text_gg_00000_zh-Hant.txt │ │ │ ├── text_gg_40000_de.txt │ │ │ ├── text_gg_40000_en.txt │ │ │ ├── text_gg_40000_es-419.txt │ │ │ ├── text_gg_40000_es.txt │ │ │ ├── text_gg_40000_fr.txt │ │ │ ├── text_gg_40000_it.txt │ │ │ ├── text_gg_40000_ja.txt │ │ │ ├── text_gg_40000_ko.txt │ │ │ ├── text_gg_40000_zh-Hans.txt │ │ │ ├── text_gg_40000_zh-Hant.txt │ │ │ ├── text_sm_00000_de.txt │ │ │ ├── text_sm_00000_en.txt │ │ │ ├── text_sm_00000_es-419.txt │ │ │ ├── text_sm_00000_es.txt │ │ │ ├── text_sm_00000_fr.txt │ │ │ ├── text_sm_00000_it.txt │ │ │ ├── text_sm_00000_ja.txt │ │ │ ├── text_sm_00000_ko.txt │ │ │ ├── text_sm_00000_zh-Hans.txt │ │ │ ├── text_sm_00000_zh-Hant.txt │ │ │ ├── text_sm_30000_de.txt │ │ │ ├── text_sm_30000_en.txt │ │ │ ├── text_sm_30000_es-419.txt │ │ │ ├── text_sm_30000_es.txt │ │ │ ├── text_sm_30000_fr.txt │ │ │ ├── text_sm_30000_it.txt │ │ │ ├── text_sm_30000_ja.txt │ │ │ ├── text_sm_30000_ko.txt │ │ │ ├── text_sm_30000_zh-Hans.txt │ │ │ ├── text_sm_30000_zh-Hant.txt │ │ │ ├── text_sm_40000_de.txt │ │ │ ├── text_sm_40000_en.txt │ │ │ ├── text_sm_40000_es-419.txt │ │ │ ├── text_sm_40000_es.txt │ │ │ ├── text_sm_40000_fr.txt │ │ │ ├── text_sm_40000_it.txt │ │ │ ├── text_sm_40000_ja.txt │ │ │ ├── text_sm_40000_ko.txt │ │ │ ├── text_sm_40000_zh-Hans.txt │ │ │ ├── text_sm_40000_zh-Hant.txt │ │ │ ├── text_sm_60000_de.txt │ │ │ ├── text_sm_60000_en.txt │ │ │ ├── text_sm_60000_es-419.txt │ │ │ ├── text_sm_60000_es.txt │ │ │ ├── text_sm_60000_fr.txt │ │ │ ├── text_sm_60000_it.txt │ │ │ ├── text_sm_60000_ja.txt │ │ │ ├── text_sm_60000_ko.txt │ │ │ ├── text_sm_60000_zh-Hans.txt │ │ │ └── text_sm_60000_zh-Hant.txt │ │ ├── gen8 │ │ │ ├── text_swsh_00000_de.txt │ │ │ ├── text_swsh_00000_en.txt │ │ │ ├── text_swsh_00000_es-419.txt │ │ │ ├── text_swsh_00000_es.txt │ │ │ ├── text_swsh_00000_fr.txt │ │ │ ├── text_swsh_00000_it.txt │ │ │ ├── text_swsh_00000_ja.txt │ │ │ ├── text_swsh_00000_ko.txt │ │ │ ├── text_swsh_00000_zh-Hans.txt │ │ │ ├── text_swsh_00000_zh-Hant.txt │ │ │ ├── text_swsh_30000_de.txt │ │ │ ├── text_swsh_30000_en.txt │ │ │ ├── text_swsh_30000_es-419.txt │ │ │ ├── text_swsh_30000_es.txt │ │ │ ├── text_swsh_30000_fr.txt │ │ │ ├── text_swsh_30000_it.txt │ │ │ ├── text_swsh_30000_ja.txt │ │ │ ├── text_swsh_30000_ko.txt │ │ │ ├── text_swsh_30000_zh-Hans.txt │ │ │ ├── text_swsh_30000_zh-Hant.txt │ │ │ ├── text_swsh_40000_de.txt │ │ │ ├── text_swsh_40000_en.txt │ │ │ ├── text_swsh_40000_es-419.txt │ │ │ ├── text_swsh_40000_es.txt │ │ │ ├── text_swsh_40000_fr.txt │ │ │ ├── text_swsh_40000_it.txt │ │ │ ├── text_swsh_40000_ja.txt │ │ │ ├── text_swsh_40000_ko.txt │ │ │ ├── text_swsh_40000_zh-Hans.txt │ │ │ ├── text_swsh_40000_zh-Hant.txt │ │ │ ├── text_swsh_60000_de.txt │ │ │ ├── text_swsh_60000_en.txt │ │ │ ├── text_swsh_60000_es-419.txt │ │ │ ├── text_swsh_60000_es.txt │ │ │ ├── text_swsh_60000_fr.txt │ │ │ ├── text_swsh_60000_it.txt │ │ │ ├── text_swsh_60000_ja.txt │ │ │ ├── text_swsh_60000_ko.txt │ │ │ ├── text_swsh_60000_zh-Hans.txt │ │ │ └── text_swsh_60000_zh-Hant.txt │ │ ├── gen8a │ │ │ ├── text_la_00000_de.txt │ │ │ ├── text_la_00000_en.txt │ │ │ ├── text_la_00000_es-419.txt │ │ │ ├── text_la_00000_es.txt │ │ │ ├── text_la_00000_fr.txt │ │ │ ├── text_la_00000_it.txt │ │ │ ├── text_la_00000_ja.txt │ │ │ ├── text_la_00000_ko.txt │ │ │ ├── text_la_00000_zh-Hans.txt │ │ │ ├── text_la_00000_zh-Hant.txt │ │ │ ├── text_la_30000_de.txt │ │ │ ├── text_la_30000_en.txt │ │ │ ├── text_la_30000_es-419.txt │ │ │ ├── text_la_30000_es.txt │ │ │ ├── text_la_30000_fr.txt │ │ │ ├── text_la_30000_it.txt │ │ │ ├── text_la_30000_ja.txt │ │ │ ├── text_la_30000_ko.txt │ │ │ ├── text_la_30000_zh-Hans.txt │ │ │ ├── text_la_30000_zh-Hant.txt │ │ │ ├── text_la_40000_de.txt │ │ │ ├── text_la_40000_en.txt │ │ │ ├── text_la_40000_es-419.txt │ │ │ ├── text_la_40000_es.txt │ │ │ ├── text_la_40000_fr.txt │ │ │ ├── text_la_40000_it.txt │ │ │ ├── text_la_40000_ja.txt │ │ │ ├── text_la_40000_ko.txt │ │ │ ├── text_la_40000_zh-Hans.txt │ │ │ ├── text_la_40000_zh-Hant.txt │ │ │ ├── text_la_60000_de.txt │ │ │ ├── text_la_60000_en.txt │ │ │ ├── text_la_60000_es-419.txt │ │ │ ├── text_la_60000_es.txt │ │ │ ├── text_la_60000_fr.txt │ │ │ ├── text_la_60000_it.txt │ │ │ ├── text_la_60000_ja.txt │ │ │ ├── text_la_60000_ko.txt │ │ │ ├── text_la_60000_zh-Hans.txt │ │ │ └── text_la_60000_zh-Hant.txt │ │ ├── gen8b │ │ │ ├── text_bdsp_00000_de.txt │ │ │ ├── text_bdsp_00000_en.txt │ │ │ ├── text_bdsp_00000_es-419.txt │ │ │ ├── text_bdsp_00000_es.txt │ │ │ ├── text_bdsp_00000_fr.txt │ │ │ ├── text_bdsp_00000_it.txt │ │ │ ├── text_bdsp_00000_ja.txt │ │ │ ├── text_bdsp_00000_ko.txt │ │ │ ├── text_bdsp_00000_zh-Hans.txt │ │ │ ├── text_bdsp_00000_zh-Hant.txt │ │ │ ├── text_bdsp_30000_de.txt │ │ │ ├── text_bdsp_30000_en.txt │ │ │ ├── text_bdsp_30000_es-419.txt │ │ │ ├── text_bdsp_30000_es.txt │ │ │ ├── text_bdsp_30000_fr.txt │ │ │ ├── text_bdsp_30000_it.txt │ │ │ ├── text_bdsp_30000_ja.txt │ │ │ ├── text_bdsp_30000_ko.txt │ │ │ ├── text_bdsp_30000_zh-Hans.txt │ │ │ ├── text_bdsp_30000_zh-Hant.txt │ │ │ ├── text_bdsp_40000_de.txt │ │ │ ├── text_bdsp_40000_en.txt │ │ │ ├── text_bdsp_40000_es-419.txt │ │ │ ├── text_bdsp_40000_es.txt │ │ │ ├── text_bdsp_40000_fr.txt │ │ │ ├── text_bdsp_40000_it.txt │ │ │ ├── text_bdsp_40000_ja.txt │ │ │ ├── text_bdsp_40000_ko.txt │ │ │ ├── text_bdsp_40000_zh-Hans.txt │ │ │ ├── text_bdsp_40000_zh-Hant.txt │ │ │ ├── text_bdsp_60000_de.txt │ │ │ ├── text_bdsp_60000_en.txt │ │ │ ├── text_bdsp_60000_es-419.txt │ │ │ ├── text_bdsp_60000_es.txt │ │ │ ├── text_bdsp_60000_fr.txt │ │ │ ├── text_bdsp_60000_it.txt │ │ │ ├── text_bdsp_60000_ja.txt │ │ │ ├── text_bdsp_60000_ko.txt │ │ │ ├── text_bdsp_60000_zh-Hans.txt │ │ │ └── text_bdsp_60000_zh-Hant.txt │ │ ├── gen9 │ │ │ ├── text_sv_00000_de.txt │ │ │ ├── text_sv_00000_en.txt │ │ │ ├── text_sv_00000_es-419.txt │ │ │ ├── text_sv_00000_es.txt │ │ │ ├── text_sv_00000_fr.txt │ │ │ ├── text_sv_00000_it.txt │ │ │ ├── text_sv_00000_ja.txt │ │ │ ├── text_sv_00000_ko.txt │ │ │ ├── text_sv_00000_zh-Hans.txt │ │ │ ├── text_sv_00000_zh-Hant.txt │ │ │ ├── text_sv_30000_de.txt │ │ │ ├── text_sv_30000_en.txt │ │ │ ├── text_sv_30000_es-419.txt │ │ │ ├── text_sv_30000_es.txt │ │ │ ├── text_sv_30000_fr.txt │ │ │ ├── text_sv_30000_it.txt │ │ │ ├── text_sv_30000_ja.txt │ │ │ ├── text_sv_30000_ko.txt │ │ │ ├── text_sv_30000_zh-Hans.txt │ │ │ ├── text_sv_30000_zh-Hant.txt │ │ │ ├── text_sv_40000_de.txt │ │ │ ├── text_sv_40000_en.txt │ │ │ ├── text_sv_40000_es-419.txt │ │ │ ├── text_sv_40000_es.txt │ │ │ ├── text_sv_40000_fr.txt │ │ │ ├── text_sv_40000_it.txt │ │ │ ├── text_sv_40000_ja.txt │ │ │ ├── text_sv_40000_ko.txt │ │ │ ├── text_sv_40000_zh-Hans.txt │ │ │ ├── text_sv_40000_zh-Hant.txt │ │ │ ├── text_sv_60000_de.txt │ │ │ ├── text_sv_60000_en.txt │ │ │ ├── text_sv_60000_es-419.txt │ │ │ ├── text_sv_60000_es.txt │ │ │ ├── text_sv_60000_fr.txt │ │ │ ├── text_sv_60000_it.txt │ │ │ ├── text_sv_60000_ja.txt │ │ │ ├── text_sv_60000_ko.txt │ │ │ ├── text_sv_60000_zh-Hans.txt │ │ │ └── text_sv_60000_zh-Hant.txt │ │ └── gen9a │ │ │ ├── text_za_00000_de.txt │ │ │ ├── text_za_00000_en.txt │ │ │ ├── text_za_00000_es-419.txt │ │ │ ├── text_za_00000_es.txt │ │ │ ├── text_za_00000_fr.txt │ │ │ ├── text_za_00000_it.txt │ │ │ ├── text_za_00000_ja.txt │ │ │ ├── text_za_00000_ko.txt │ │ │ ├── text_za_00000_zh-Hans.txt │ │ │ ├── text_za_00000_zh-Hant.txt │ │ │ ├── text_za_30000_de.txt │ │ │ ├── text_za_30000_en.txt │ │ │ ├── text_za_30000_es-419.txt │ │ │ ├── text_za_30000_es.txt │ │ │ ├── text_za_30000_fr.txt │ │ │ ├── text_za_30000_it.txt │ │ │ ├── text_za_30000_ja.txt │ │ │ ├── text_za_30000_ko.txt │ │ │ ├── text_za_30000_zh-Hans.txt │ │ │ ├── text_za_30000_zh-Hant.txt │ │ │ ├── text_za_40000_de.txt │ │ │ ├── text_za_40000_en.txt │ │ │ ├── text_za_40000_es-419.txt │ │ │ ├── text_za_40000_es.txt │ │ │ ├── text_za_40000_fr.txt │ │ │ ├── text_za_40000_it.txt │ │ │ ├── text_za_40000_ja.txt │ │ │ ├── text_za_40000_ko.txt │ │ │ ├── text_za_40000_zh-Hans.txt │ │ │ ├── text_za_40000_zh-Hant.txt │ │ │ ├── text_za_60000_de.txt │ │ │ ├── text_za_60000_en.txt │ │ │ ├── text_za_60000_es-419.txt │ │ │ ├── text_za_60000_es.txt │ │ │ ├── text_za_60000_fr.txt │ │ │ ├── text_za_60000_it.txt │ │ │ ├── text_za_60000_ja.txt │ │ │ ├── text_za_60000_ko.txt │ │ │ ├── text_za_60000_zh-Hans.txt │ │ │ └── text_za_60000_zh-Hant.txt │ │ ├── memories │ │ ├── feeling6 │ │ │ ├── text_Feeling6_de.txt │ │ │ ├── text_Feeling6_en.txt │ │ │ ├── text_Feeling6_es-419.txt │ │ │ ├── text_Feeling6_es.txt │ │ │ ├── text_Feeling6_fr.txt │ │ │ ├── text_Feeling6_it.txt │ │ │ ├── text_Feeling6_ja.txt │ │ │ ├── text_Feeling6_ko.txt │ │ │ ├── text_Feeling6_zh-Hans.txt │ │ │ └── text_Feeling6_zh-Hant.txt │ │ ├── text_Feeling_de.txt │ │ ├── text_Feeling_en.txt │ │ ├── text_Feeling_es-419.txt │ │ ├── text_Feeling_es.txt │ │ ├── text_Feeling_fr.txt │ │ ├── text_Feeling_it.txt │ │ ├── text_Feeling_ja.txt │ │ ├── text_Feeling_ko.txt │ │ ├── text_Feeling_zh-Hans.txt │ │ ├── text_Feeling_zh-Hant.txt │ │ ├── text_GenLoc_de.txt │ │ ├── text_GenLoc_en.txt │ │ ├── text_GenLoc_es-419.txt │ │ ├── text_GenLoc_es.txt │ │ ├── text_GenLoc_fr.txt │ │ ├── text_GenLoc_it.txt │ │ ├── text_GenLoc_ja.txt │ │ ├── text_GenLoc_ko.txt │ │ ├── text_GenLoc_zh-Hans.txt │ │ ├── text_GenLoc_zh-Hant.txt │ │ ├── text_Intensity_de.txt │ │ ├── text_Intensity_en.txt │ │ ├── text_Intensity_es-419.txt │ │ ├── text_Intensity_es.txt │ │ ├── text_Intensity_fr.txt │ │ ├── text_Intensity_it.txt │ │ ├── text_Intensity_ja.txt │ │ ├── text_Intensity_ko.txt │ │ ├── text_Intensity_zh-Hans.txt │ │ ├── text_Intensity_zh-Hant.txt │ │ ├── text_Memories_de.txt │ │ ├── text_Memories_en.txt │ │ ├── text_Memories_es-419.txt │ │ ├── text_Memories_es.txt │ │ ├── text_Memories_fr.txt │ │ ├── text_Memories_it.txt │ │ ├── text_Memories_ja.txt │ │ ├── text_Memories_ko.txt │ │ ├── text_Memories_zh-Hans.txt │ │ └── text_Memories_zh-Hant.txt │ │ ├── other │ │ ├── de │ │ │ ├── text_Abilities_de.txt │ │ │ ├── text_Character_de.txt │ │ │ ├── text_Forms_de.txt │ │ │ ├── text_Games_de.txt │ │ │ ├── text_GroundTile_de.txt │ │ │ ├── text_Language_de.txt │ │ │ ├── text_Moves_de.txt │ │ │ ├── text_Natures_de.txt │ │ │ ├── text_Pokeblock_de.txt │ │ │ ├── text_Puff_de.txt │ │ │ ├── text_Ribbons_de.txt │ │ │ ├── text_Species_de.txt │ │ │ ├── text_SuperTraining_de.txt │ │ │ ├── text_TrainingBag_de.txt │ │ │ ├── text_Types_de.txt │ │ │ └── text_Wallpaper_de.txt │ │ ├── en │ │ │ ├── text_Abilities_en.txt │ │ │ ├── text_Character_en.txt │ │ │ ├── text_Forms_en.txt │ │ │ ├── text_Games_en.txt │ │ │ ├── text_GroundTile_en.txt │ │ │ ├── text_Language_en.txt │ │ │ ├── text_Moves_en.txt │ │ │ ├── text_Natures_en.txt │ │ │ ├── text_Pokeblock_en.txt │ │ │ ├── text_Puff_en.txt │ │ │ ├── text_Ribbons_en.txt │ │ │ ├── text_Species_en.txt │ │ │ ├── text_SuperTraining_en.txt │ │ │ ├── text_TrainingBag_en.txt │ │ │ ├── text_Types_en.txt │ │ │ └── text_Wallpaper_en.txt │ │ ├── es-419 │ │ │ ├── text_Abilities_es-419.txt │ │ │ ├── text_Character_es-419.txt │ │ │ ├── text_Forms_es-419.txt │ │ │ ├── text_Games_es-419.txt │ │ │ ├── text_GroundTile_es-419.txt │ │ │ ├── text_Language_es-419.txt │ │ │ ├── text_Moves_es-419.txt │ │ │ ├── text_Natures_es-419.txt │ │ │ ├── text_Pokeblock_es-419.txt │ │ │ ├── text_Puff_es-419.txt │ │ │ ├── text_Ribbons_es-419.txt │ │ │ ├── text_Species_es-419.txt │ │ │ ├── text_SuperTraining_es-419.txt │ │ │ ├── text_TrainingBag_es-419.txt │ │ │ ├── text_Types_es-419.txt │ │ │ └── text_Wallpaper_es-419.txt │ │ ├── es │ │ │ ├── text_Abilities_es.txt │ │ │ ├── text_Character_es.txt │ │ │ ├── text_Forms_es.txt │ │ │ ├── text_Games_es.txt │ │ │ ├── text_GroundTile_es.txt │ │ │ ├── text_Language_es.txt │ │ │ ├── text_Moves_es.txt │ │ │ ├── text_Natures_es.txt │ │ │ ├── text_Pokeblock_es.txt │ │ │ ├── text_Puff_es.txt │ │ │ ├── text_Ribbons_es.txt │ │ │ ├── text_Species_es.txt │ │ │ ├── text_SuperTraining_es.txt │ │ │ ├── text_TrainingBag_es.txt │ │ │ ├── text_Types_es.txt │ │ │ └── text_Wallpaper_es.txt │ │ ├── fr │ │ │ ├── text_Abilities_fr.txt │ │ │ ├── text_Character_fr.txt │ │ │ ├── text_Forms_fr.txt │ │ │ ├── text_Games_fr.txt │ │ │ ├── text_GroundTile_fr.txt │ │ │ ├── text_Language_fr.txt │ │ │ ├── text_Moves_fr.txt │ │ │ ├── text_Natures_fr.txt │ │ │ ├── text_Pokeblock_fr.txt │ │ │ ├── text_Puff_fr.txt │ │ │ ├── text_Ribbons_fr.txt │ │ │ ├── text_Species_fr.txt │ │ │ ├── text_SuperTraining_fr.txt │ │ │ ├── text_TrainingBag_fr.txt │ │ │ ├── text_Types_fr.txt │ │ │ └── text_Wallpaper_fr.txt │ │ ├── it │ │ │ ├── text_Abilities_it.txt │ │ │ ├── text_Character_it.txt │ │ │ ├── text_Forms_it.txt │ │ │ ├── text_Games_it.txt │ │ │ ├── text_GroundTile_it.txt │ │ │ ├── text_Language_it.txt │ │ │ ├── text_Moves_it.txt │ │ │ ├── text_Natures_it.txt │ │ │ ├── text_Pokeblock_it.txt │ │ │ ├── text_Puff_it.txt │ │ │ ├── text_Ribbons_it.txt │ │ │ ├── text_Species_it.txt │ │ │ ├── text_SuperTraining_it.txt │ │ │ ├── text_TrainingBag_it.txt │ │ │ ├── text_Types_it.txt │ │ │ └── text_Wallpaper_it.txt │ │ ├── ja │ │ │ ├── text_Abilities_ja.txt │ │ │ ├── text_Character_ja.txt │ │ │ ├── text_Forms_ja.txt │ │ │ ├── text_Games_ja.txt │ │ │ ├── text_GroundTile_ja.txt │ │ │ ├── text_Language_ja.txt │ │ │ ├── text_Moves_ja.txt │ │ │ ├── text_Natures_ja.txt │ │ │ ├── text_Pokeblock_ja.txt │ │ │ ├── text_Puff_ja.txt │ │ │ ├── text_Ribbons_ja.txt │ │ │ ├── text_Species_ja.txt │ │ │ ├── text_SuperTraining_ja.txt │ │ │ ├── text_TrainingBag_ja.txt │ │ │ ├── text_Types_ja.txt │ │ │ └── text_Wallpaper_ja.txt │ │ ├── ko │ │ │ ├── text_Abilities_ko.txt │ │ │ ├── text_Character_ko.txt │ │ │ ├── text_Forms_ko.txt │ │ │ ├── text_Games_ko.txt │ │ │ ├── text_GroundTile_ko.txt │ │ │ ├── text_Language_ko.txt │ │ │ ├── text_Moves_ko.txt │ │ │ ├── text_Natures_ko.txt │ │ │ ├── text_Pokeblock_ko.txt │ │ │ ├── text_Puff_ko.txt │ │ │ ├── text_Ribbons_ko.txt │ │ │ ├── text_Species_ko.txt │ │ │ ├── text_SuperTraining_ko.txt │ │ │ ├── text_TrainingBag_ko.txt │ │ │ ├── text_Types_ko.txt │ │ │ └── text_Wallpaper_ko.txt │ │ ├── zh-Hans │ │ │ ├── text_Abilities_zh-Hans.txt │ │ │ ├── text_Character_zh-Hans.txt │ │ │ ├── text_Forms_zh-Hans.txt │ │ │ ├── text_Games_zh-Hans.txt │ │ │ ├── text_GroundTile_zh-Hans.txt │ │ │ ├── text_Language_zh-Hans.txt │ │ │ ├── text_Moves_zh-Hans.txt │ │ │ ├── text_Natures_zh-Hans.txt │ │ │ ├── text_Pokeblock_zh-Hans.txt │ │ │ ├── text_Puff_zh-Hans.txt │ │ │ ├── text_Ribbons_zh-Hans.txt │ │ │ ├── text_Species_zh-Hans.txt │ │ │ ├── text_SuperTraining_zh-Hans.txt │ │ │ ├── text_TrainingBag_zh-Hans.txt │ │ │ ├── text_Types_zh-Hans.txt │ │ │ └── text_Wallpaper_zh-Hans.txt │ │ └── zh-Hant │ │ │ ├── text_Abilities_zh-Hant.txt │ │ │ ├── text_Character_zh-Hant.txt │ │ │ ├── text_Forms_zh-Hant.txt │ │ │ ├── text_Games_zh-Hant.txt │ │ │ ├── text_GroundTile_zh-Hant.txt │ │ │ ├── text_Language_zh-Hant.txt │ │ │ ├── text_Moves_zh-Hant.txt │ │ │ ├── text_Natures_zh-Hant.txt │ │ │ ├── text_Pokeblock_zh-Hant.txt │ │ │ ├── text_Puff_zh-Hant.txt │ │ │ ├── text_Ribbons_zh-Hant.txt │ │ │ ├── text_Species_zh-Hant.txt │ │ │ ├── text_SuperTraining_zh-Hant.txt │ │ │ ├── text_TrainingBag_zh-Hant.txt │ │ │ ├── text_Types_zh-Hant.txt │ │ │ └── text_Wallpaper_zh-Hant.txt │ │ ├── program │ │ ├── MessageStrings_de.txt │ │ ├── MessageStrings_en.txt │ │ ├── MessageStrings_es-419.txt │ │ ├── MessageStrings_es.txt │ │ ├── MessageStrings_fr.txt │ │ ├── MessageStrings_it.txt │ │ ├── MessageStrings_ja.txt │ │ ├── MessageStrings_ko.txt │ │ ├── MessageStrings_zh-Hans.txt │ │ └── MessageStrings_zh-Hant.txt │ │ ├── script │ │ ├── gen2 │ │ │ ├── const_c_en.txt │ │ │ ├── const_c_es-419.txt │ │ │ ├── const_c_es.txt │ │ │ ├── const_c_fr.txt │ │ │ ├── const_c_ja.txt │ │ │ ├── const_c_zh-Hans.txt │ │ │ ├── const_c_zh-Hant.txt │ │ │ ├── const_gs_en.txt │ │ │ ├── const_gs_es-419.txt │ │ │ ├── const_gs_es.txt │ │ │ ├── const_gs_fr.txt │ │ │ ├── const_gs_ja.txt │ │ │ ├── const_gs_zh-Hans.txt │ │ │ ├── const_gs_zh-Hant.txt │ │ │ ├── flags_c_en.txt │ │ │ ├── flags_c_es-419.txt │ │ │ ├── flags_c_es.txt │ │ │ ├── flags_c_fr.txt │ │ │ ├── flags_c_ja.txt │ │ │ ├── flags_c_zh-Hans.txt │ │ │ ├── flags_c_zh-Hant.txt │ │ │ ├── flags_gs_en.txt │ │ │ ├── flags_gs_es-419.txt │ │ │ ├── flags_gs_es.txt │ │ │ ├── flags_gs_fr.txt │ │ │ ├── flags_gs_ja.txt │ │ │ ├── flags_gs_ko.txt │ │ │ ├── flags_gs_zh-Hans.txt │ │ │ └── flags_gs_zh-Hant.txt │ │ ├── gen3 │ │ │ ├── const_e_en.txt │ │ │ ├── const_e_es-419.txt │ │ │ ├── const_e_es.txt │ │ │ ├── const_e_ja.txt │ │ │ ├── const_e_zh-Hans.txt │ │ │ ├── const_frlg_en.txt │ │ │ ├── const_frlg_es-419.txt │ │ │ ├── const_frlg_es.txt │ │ │ ├── const_frlg_ja.txt │ │ │ ├── const_frlg_zh-Hans.txt │ │ │ ├── const_rs_en.txt │ │ │ ├── const_rs_es-419.txt │ │ │ ├── const_rs_es.txt │ │ │ ├── const_rs_ja.txt │ │ │ ├── const_rs_zh-Hans.txt │ │ │ ├── flags_e_en.txt │ │ │ ├── flags_e_es-419.txt │ │ │ ├── flags_e_es.txt │ │ │ ├── flags_e_ja.txt │ │ │ ├── flags_e_zh-Hans.txt │ │ │ ├── flags_e_zh-Hant.txt │ │ │ ├── flags_frlg_en.txt │ │ │ ├── flags_frlg_es-419.txt │ │ │ ├── flags_frlg_es.txt │ │ │ ├── flags_frlg_ja.txt │ │ │ ├── flags_frlg_zh-Hans.txt │ │ │ ├── flags_frlg_zh-Hant.txt │ │ │ ├── flags_rs_en.txt │ │ │ ├── flags_rs_es-419.txt │ │ │ ├── flags_rs_es.txt │ │ │ ├── flags_rs_ja.txt │ │ │ ├── flags_rs_zh-Hans.txt │ │ │ └── flags_rs_zh-Hant.txt │ │ ├── gen4 │ │ │ ├── const_dp_en.txt │ │ │ ├── const_dp_es-419.txt │ │ │ ├── const_dp_es.txt │ │ │ ├── const_dp_ja.txt │ │ │ ├── const_dp_ko.txt │ │ │ ├── const_dp_zh-Hans.txt │ │ │ ├── const_dp_zh-Hant.txt │ │ │ ├── const_hgss_en.txt │ │ │ ├── const_hgss_es-419.txt │ │ │ ├── const_hgss_es.txt │ │ │ ├── const_hgss_ja.txt │ │ │ ├── const_hgss_ko.txt │ │ │ ├── const_hgss_zh-Hans.txt │ │ │ ├── const_hgss_zh-Hant.txt │ │ │ ├── const_pt_en.txt │ │ │ ├── const_pt_es-419.txt │ │ │ ├── const_pt_es.txt │ │ │ ├── const_pt_ja.txt │ │ │ ├── const_pt_ko.txt │ │ │ ├── const_pt_zh-Hans.txt │ │ │ ├── const_pt_zh-Hant.txt │ │ │ ├── flags_dp_en.txt │ │ │ ├── flags_dp_es-419.txt │ │ │ ├── flags_dp_es.txt │ │ │ ├── flags_dp_ja.txt │ │ │ ├── flags_dp_ko.txt │ │ │ ├── flags_dp_zh-Hans.txt │ │ │ ├── flags_dp_zh-Hant.txt │ │ │ ├── flags_hgss_en.txt │ │ │ ├── flags_hgss_es-419.txt │ │ │ ├── flags_hgss_es.txt │ │ │ ├── flags_hgss_ja.txt │ │ │ ├── flags_hgss_ko.txt │ │ │ ├── flags_hgss_zh-Hans.txt │ │ │ ├── flags_hgss_zh-Hant.txt │ │ │ ├── flags_pt_en.txt │ │ │ ├── flags_pt_es-419.txt │ │ │ ├── flags_pt_es.txt │ │ │ ├── flags_pt_ja.txt │ │ │ ├── flags_pt_ko.txt │ │ │ ├── flags_pt_zh-Hans.txt │ │ │ └── flags_pt_zh-Hant.txt │ │ ├── gen5 │ │ │ ├── const_b2w2_en.txt │ │ │ ├── const_b2w2_es-419.txt │ │ │ ├── const_b2w2_es.txt │ │ │ ├── const_b2w2_fr.txt │ │ │ ├── const_b2w2_ja.txt │ │ │ ├── const_b2w2_ko.txt │ │ │ ├── const_b2w2_zh-Hans.txt │ │ │ ├── const_b2w2_zh-Hant.txt │ │ │ ├── const_bw_en.txt │ │ │ ├── const_bw_es-419.txt │ │ │ ├── const_bw_es.txt │ │ │ ├── const_bw_fr.txt │ │ │ ├── const_bw_ja.txt │ │ │ ├── const_bw_ko.txt │ │ │ ├── const_bw_zh-Hans.txt │ │ │ ├── const_bw_zh-Hant.txt │ │ │ ├── flags_b2w2_en.txt │ │ │ ├── flags_b2w2_es-419.txt │ │ │ ├── flags_b2w2_es.txt │ │ │ ├── flags_b2w2_fr.txt │ │ │ ├── flags_b2w2_ja.txt │ │ │ ├── flags_b2w2_ko.txt │ │ │ ├── flags_b2w2_zh-Hans.txt │ │ │ ├── flags_b2w2_zh-Hant.txt │ │ │ ├── flags_bw_en.txt │ │ │ ├── flags_bw_es-419.txt │ │ │ ├── flags_bw_es.txt │ │ │ ├── flags_bw_fr.txt │ │ │ ├── flags_bw_ja.txt │ │ │ ├── flags_bw_ko.txt │ │ │ ├── flags_bw_zh-Hans.txt │ │ │ └── flags_bw_zh-Hant.txt │ │ ├── gen6 │ │ │ ├── const_oras_en.txt │ │ │ ├── const_oras_es-419.txt │ │ │ ├── const_oras_es.txt │ │ │ ├── const_oras_ja.txt │ │ │ ├── const_oras_ko.txt │ │ │ ├── const_oras_zh-Hans.txt │ │ │ ├── const_oras_zh-Hant.txt │ │ │ ├── const_xy_en.txt │ │ │ ├── const_xy_es-419.txt │ │ │ ├── const_xy_es.txt │ │ │ ├── const_xy_ja.txt │ │ │ ├── const_xy_ko.txt │ │ │ ├── const_xy_zh-Hans.txt │ │ │ ├── const_xy_zh-Hant.txt │ │ │ ├── flags_oras_en.txt │ │ │ ├── flags_oras_es-419.txt │ │ │ ├── flags_oras_es.txt │ │ │ ├── flags_oras_fr.txt │ │ │ ├── flags_oras_ja.txt │ │ │ ├── flags_oras_ko.txt │ │ │ ├── flags_oras_zh-Hans.txt │ │ │ ├── flags_oras_zh-Hant.txt │ │ │ ├── flags_xy_en.txt │ │ │ ├── flags_xy_es-419.txt │ │ │ ├── flags_xy_es.txt │ │ │ ├── flags_xy_ja.txt │ │ │ ├── flags_xy_ko.txt │ │ │ ├── flags_xy_zh-Hans.txt │ │ │ └── flags_xy_zh-Hant.txt │ │ ├── gen7 │ │ │ ├── const_gg_en.txt │ │ │ ├── const_gg_es-419.txt │ │ │ ├── const_gg_es.txt │ │ │ ├── const_sm_en.txt │ │ │ ├── const_sm_es-419.txt │ │ │ ├── const_sm_es.txt │ │ │ ├── const_sm_ja.txt │ │ │ ├── const_sm_ko.txt │ │ │ ├── const_sm_zh-Hans.txt │ │ │ ├── const_sm_zh-Hant.txt │ │ │ ├── const_usum_en.txt │ │ │ ├── const_usum_es-419.txt │ │ │ ├── const_usum_es.txt │ │ │ ├── const_usum_ja.txt │ │ │ ├── const_usum_ko.txt │ │ │ ├── const_usum_zh-Hans.txt │ │ │ ├── const_usum_zh-Hant.txt │ │ │ ├── flags_gg_en.txt │ │ │ ├── flags_gg_es-419.txt │ │ │ ├── flags_gg_es.txt │ │ │ ├── flags_gg_ko.txt │ │ │ ├── flags_gg_zh-Hans.txt │ │ │ ├── flags_gg_zh-Hant.txt │ │ │ ├── flags_sm_en.txt │ │ │ ├── flags_sm_es-419.txt │ │ │ ├── flags_sm_es.txt │ │ │ ├── flags_sm_ja.txt │ │ │ ├── flags_sm_ko.txt │ │ │ ├── flags_sm_zh-Hans.txt │ │ │ ├── flags_sm_zh-Hant.txt │ │ │ ├── flags_usum_en.txt │ │ │ ├── flags_usum_es-419.txt │ │ │ ├── flags_usum_es.txt │ │ │ ├── flags_usum_ja.txt │ │ │ ├── flags_usum_ko.txt │ │ │ ├── flags_usum_zh-Hans.txt │ │ │ └── flags_usum_zh-Hant.txt │ │ └── gen8 │ │ │ ├── flag_bdsp_en.txt │ │ │ ├── flag_bdsp_es-419.txt │ │ │ ├── flag_bdsp_es.txt │ │ │ ├── flag_bdsp_zh-Hans.txt │ │ │ ├── flag_bdsp_zh-Hant.txt │ │ │ ├── system_bdsp_en.txt │ │ │ ├── work_bdsp_en.txt │ │ │ ├── work_bdsp_es-419.txt │ │ │ ├── work_bdsp_es.txt │ │ │ ├── work_bdsp_zh-Hans.txt │ │ │ └── work_bdsp_zh-Hant.txt │ │ └── wondercard │ │ ├── text_wondercard7_de.txt │ │ ├── text_wondercard7_en.txt │ │ ├── text_wondercard7_es.txt │ │ ├── text_wondercard7_fr.txt │ │ ├── text_wondercard7_it.txt │ │ ├── text_wondercard7_ja.txt │ │ ├── text_wondercard7_ko.txt │ │ ├── text_wondercard7_zh-Hans.txt │ │ ├── text_wondercard7_zh-Hant.txt │ │ ├── text_wondercard8_de.txt │ │ ├── text_wondercard8_en.txt │ │ ├── text_wondercard8_es.txt │ │ ├── text_wondercard8_fr.txt │ │ ├── text_wondercard8_it.txt │ │ ├── text_wondercard8_ja.txt │ │ ├── text_wondercard8_ko.txt │ │ ├── text_wondercard8_zh-Hans.txt │ │ ├── text_wondercard8_zh-Hant.txt │ │ ├── text_wondercard9_de.txt │ │ ├── text_wondercard9_en.txt │ │ ├── text_wondercard9_es-419.txt │ │ ├── text_wondercard9_es.txt │ │ ├── text_wondercard9_fr.txt │ │ ├── text_wondercard9_it.txt │ │ ├── text_wondercard9_ja.txt │ │ ├── text_wondercard9_ko.txt │ │ ├── text_wondercard9_zh-Hans.txt │ │ └── text_wondercard9_zh-Hant.txt ├── Ribbons │ ├── IRibbonIndex.cs │ ├── IRibbonSetAffixed.cs │ ├── IRibbonSetCommon3.cs │ ├── IRibbonSetCommon4.cs │ ├── IRibbonSetCommon6.cs │ ├── IRibbonSetCommon7.cs │ ├── IRibbonSetCommon8.cs │ ├── IRibbonSetCommon9.cs │ ├── IRibbonSetEvent3.cs │ ├── IRibbonSetEvent4.cs │ ├── IRibbonSetMark8.cs │ ├── IRibbonSetMark9.cs │ ├── IRibbonSetMemory6.cs │ ├── Past │ │ ├── IRibbonSetOnly3.cs │ │ ├── IRibbonSetUnique3.cs │ │ ├── IRibbonSetUnique4.cs │ │ ├── RibbonIndex3.cs │ │ └── RibbonIndex4.cs │ ├── RibbonIndex.cs │ └── RibbonInfo.cs ├── Saves │ ├── Abstractions │ │ ├── IStorageCleanup.cs │ │ ├── ITrainerInfo.cs │ │ └── SimpleTrainerInfo.cs │ ├── Access │ │ ├── ISCBlockArray.cs │ │ ├── ISaveBlock5B2W2.cs │ │ ├── ISaveBlock5BW.cs │ │ ├── ISaveBlock6AO.cs │ │ ├── ISaveBlock6Core.cs │ │ ├── ISaveBlock6Main.cs │ │ ├── ISaveBlock6XY.cs │ │ ├── ISaveBlock7Main.cs │ │ ├── ISaveBlock7SM.cs │ │ ├── ISaveBlock7USUM.cs │ │ ├── ISaveBlock7b.cs │ │ ├── ISaveBlock8LA.cs │ │ ├── ISaveBlock8Main.cs │ │ ├── ISaveBlock8SWSH.cs │ │ ├── ISaveBlock9Main.cs │ │ ├── ISaveBlockAccessor.cs │ │ ├── SCBlockAccessor.cs │ │ ├── SaveBlockAccessor5B2W2.cs │ │ ├── SaveBlockAccessor5BW.cs │ │ ├── SaveBlockAccessor6AO.cs │ │ ├── SaveBlockAccessor6AODemo.cs │ │ ├── SaveBlockAccessor6XY.cs │ │ ├── SaveBlockAccessor7SM.cs │ │ ├── SaveBlockAccessor7USUM.cs │ │ ├── SaveBlockAccessor7b.cs │ │ ├── SaveBlockAccessor8LA.cs │ │ ├── SaveBlockAccessor8SWSH.cs │ │ ├── SaveBlockAccessor9SV.cs │ │ ├── SaveBlockAccessor9ZA.cs │ │ └── SaveBlockMetadata.cs │ ├── Blocks │ │ ├── BlockInfo.cs │ │ ├── BlockInfo3DS.cs │ │ ├── BlockInfo4.cs │ │ ├── BlockInfoNDS.cs │ │ ├── BlockInfoRSBOX.cs │ │ ├── RecordBlock.cs │ │ └── SaveBlock.cs │ ├── Encryption │ │ ├── ColoCrypto.cs │ │ ├── GeniusCrypto.cs │ │ ├── MemeCrypto │ │ │ ├── MemeCrypto.cs │ │ │ ├── MemeKey.cs │ │ │ └── MemeKeyIndex.cs │ │ ├── Providers │ │ │ ├── IAesCryptographyProvider.cs │ │ │ ├── IMd5Provider.cs │ │ │ └── RuntimeCryptographyProvider.cs │ │ ├── SwishCrypto │ │ │ ├── FnvHash.cs │ │ │ ├── SCBlock.cs │ │ │ ├── SCBlockCompare.cs │ │ │ ├── SCBlockMetadata.cs │ │ │ ├── SCBlockUtil.cs │ │ │ ├── SCTypeCode.cs │ │ │ ├── SCXorShift32.cs │ │ │ └── SwishCrypto.cs │ │ └── XDCrypto.cs │ ├── MemoryCard │ │ ├── DEntry.cs │ │ ├── MemoryCardChecksumStatus.cs │ │ ├── MemoryCardSaveStatus.cs │ │ └── SAV3GCMemoryCard.cs │ ├── SAV1.cs │ ├── SAV1Stadium.cs │ ├── SAV1StadiumJ.cs │ ├── SAV2.cs │ ├── SAV2Stadium.cs │ ├── SAV3.cs │ ├── SAV3Colosseum.cs │ ├── SAV3E.cs │ ├── SAV3FRLG.cs │ ├── SAV3RS.cs │ ├── SAV3RSBox.cs │ ├── SAV3XD.cs │ ├── SAV4.cs │ ├── SAV4BR.cs │ ├── SAV4DP.cs │ ├── SAV4HGSS.cs │ ├── SAV4Pt.cs │ ├── SAV4Sinnoh.cs │ ├── SAV5.cs │ ├── SAV5B2W2.cs │ ├── SAV5BW.cs │ ├── SAV6.cs │ ├── SAV6AO.cs │ ├── SAV6AODemo.cs │ ├── SAV6XY.cs │ ├── SAV7.cs │ ├── SAV7SM.cs │ ├── SAV7USUM.cs │ ├── SAV7b.cs │ ├── SAV8BS.cs │ ├── SAV8LA.cs │ ├── SAV8SWSH.cs │ ├── SAV9SV.cs │ ├── SAV9ZA.cs │ ├── SAV_BEEF.cs │ ├── SAV_STADIUM.cs │ ├── SaveFile.cs │ ├── SaveFileMetadata.cs │ ├── SaveFileState.cs │ ├── Storage │ │ ├── Bank3.cs │ │ ├── Bank4.cs │ │ ├── Bank7.cs │ │ ├── BulkStorage.cs │ │ ├── EntityImportSettings.cs │ │ ├── SAV4Ranch.cs │ │ ├── SlotPointerUtil.cs │ │ └── StorageSlotSource.cs │ ├── Substructures │ │ ├── Battle Videos │ │ │ ├── BVRequestUtil.cs │ │ │ ├── BattleMode.cs │ │ │ ├── BattleStyle6.cs │ │ │ ├── BattleVideo.cs │ │ │ ├── BattleVideo3.cs │ │ │ ├── BattleVideo4.cs │ │ │ ├── BattleVideo5.cs │ │ │ ├── BattleVideo6.cs │ │ │ ├── BattleVideo7.cs │ │ │ ├── IBattleVideo.cs │ │ │ ├── MoveTarget.cs │ │ │ ├── RotateDirection.cs │ │ │ ├── TurnActionCode.cs │ │ │ ├── TurnStartCode.cs │ │ │ └── TurnStartInstruction.cs │ │ ├── Daycare │ │ │ ├── IDaycareEggState.cs │ │ │ ├── IDaycareExperience.cs │ │ │ ├── IDaycareMulti.cs │ │ │ ├── IDaycareRandomState.cs │ │ │ └── IDaycareStorage.cs │ │ ├── Gen12 │ │ │ ├── G1OverworldSpawner.cs │ │ │ ├── HallOfFameEntity1.cs │ │ │ ├── SAV1Offsets.cs │ │ │ └── SAV2Offsets.cs │ │ ├── Gen3 │ │ │ ├── CXD │ │ │ │ ├── ShadowInfoEntryColo.cs │ │ │ │ ├── ShadowInfoEntryXD.cs │ │ │ │ └── ShadowInfoTableXD.cs │ │ │ ├── Decoration3.cs │ │ │ ├── DecorationInventory3.cs │ │ │ ├── EReaderBerrySettings.cs │ │ │ ├── Events │ │ │ │ ├── MysteryEvent3.cs │ │ │ │ ├── MysteryEvent3RS.cs │ │ │ │ ├── WonderCard3.cs │ │ │ │ ├── WonderCard3Extra.cs │ │ │ │ └── WonderNews3.cs │ │ │ ├── Gen3MysteryData.cs │ │ │ ├── HallFame3.cs │ │ │ ├── IGen3Hoenn.cs │ │ │ ├── IGen3Joyful.cs │ │ │ ├── IGen3Wonder.cs │ │ │ ├── Paintings3.cs │ │ │ ├── PokeBlock3.cs │ │ │ ├── PokeBlock3Case.cs │ │ │ ├── PokeBlock3Color.cs │ │ │ ├── RTC3.cs │ │ │ ├── Record3.cs │ │ │ ├── RecordMixing3Gift.cs │ │ │ ├── Roamer3.cs │ │ │ ├── SAV3BlockDetection.cs │ │ │ ├── SecretBase3.cs │ │ │ ├── SecretBase3PKM.cs │ │ │ ├── SecretBase3Team.cs │ │ │ ├── SecretBaseManager3.cs │ │ │ ├── StrategyMemo.cs │ │ │ ├── Swarm3.cs │ │ │ ├── TrainerHillMode3E.cs │ │ │ └── TrendyWord3E.cs │ │ ├── Gen4 │ │ │ ├── Accessory4.cs │ │ │ ├── Backdrop4.cs │ │ │ ├── BattleFrontierFacility4.cs │ │ │ ├── BattleFrontierPrintStatus4.cs │ │ │ ├── Chatter4.cs │ │ │ ├── Dendou4.cs │ │ │ ├── Geonet4.cs │ │ │ ├── Group4.cs │ │ │ ├── Hall4.cs │ │ │ ├── HoneyTreeUtil.cs │ │ │ ├── HoneyTreeValue.cs │ │ │ ├── PBR │ │ │ │ ├── BattlePass.cs │ │ │ │ ├── BattlePassAccessor.cs │ │ │ │ ├── BattlePassLanguage.cs │ │ │ │ ├── BattlePassType.cs │ │ │ │ ├── GearCategory.cs │ │ │ │ ├── GearUnlock.cs │ │ │ │ └── ModelBR.cs │ │ │ ├── Poffin4.cs │ │ │ ├── PoffinCase4.cs │ │ │ ├── PoffinFlavor4.cs │ │ │ ├── PokegearNumber.cs │ │ │ ├── PoketchApp.cs │ │ │ ├── PoketchColor.cs │ │ │ ├── Ranch │ │ │ │ ├── RanchLevel.cs │ │ │ │ ├── RanchMii.cs │ │ │ │ ├── RanchOwnershipType.cs │ │ │ │ ├── RanchToy.cs │ │ │ │ ├── RanchToyType.cs │ │ │ │ └── RanchTrainerMii.cs │ │ │ ├── Record4.cs │ │ │ ├── Roamer4.cs │ │ │ ├── SAV4BlockDetection.cs │ │ │ ├── Seal4.cs │ │ │ ├── ToughWord4.cs │ │ │ ├── VillaFurniture4.cs │ │ │ └── Wallpaper4Pt.cs │ │ ├── Gen5 │ │ │ ├── BattleBox5.cs │ │ │ ├── BattleSubway5.cs │ │ │ ├── BattleSubwayPlay5.cs │ │ │ ├── BattleTest5.cs │ │ │ ├── BoxLayout5.cs │ │ │ ├── Chatter5.cs │ │ │ ├── Daycare5.cs │ │ │ ├── Encount5.cs │ │ │ ├── Entralink5.cs │ │ │ ├── Entree │ │ │ │ ├── EntreeForest.cs │ │ │ │ ├── EntreeForestArea.cs │ │ │ │ └── EntreeSlot.cs │ │ │ ├── EventWork5.cs │ │ │ ├── FestaBlock5.cs │ │ │ ├── KeySystem5.cs │ │ │ ├── Medal5.cs │ │ │ ├── MedalList5.cs │ │ │ ├── Misc5.cs │ │ │ ├── Musical5.cs │ │ │ ├── MusicalShow5.cs │ │ │ ├── MyItem5B2W2.cs │ │ │ ├── MyItem5BW.cs │ │ │ ├── MysteryBlock5.cs │ │ │ ├── PWTBlock5.cs │ │ │ ├── PWTRecordID.cs │ │ │ ├── PassPower5.cs │ │ │ ├── PlayerData5.cs │ │ │ ├── PlayerPosition5.cs │ │ │ ├── PokestarMovie5.cs │ │ │ ├── Record5.cs │ │ │ ├── Roamer5.cs │ │ │ ├── SkinInfo5.cs │ │ │ ├── TiledImage │ │ │ │ ├── CGearBackground.cs │ │ │ │ ├── CGearBackgroundB2W2.cs │ │ │ │ ├── CGearBackgroundBW.cs │ │ │ │ ├── Color15Bit.cs │ │ │ │ ├── ITiledImage.cs │ │ │ │ ├── PaletteColorSet.cs │ │ │ │ ├── PaletteTile.cs │ │ │ │ ├── PaletteTileOperations.cs │ │ │ │ ├── PaletteTileRotation.cs │ │ │ │ ├── PaletteTileSelection.cs │ │ │ │ ├── PokeDexSkin5.cs │ │ │ │ ├── TiledImageConverter.cs │ │ │ │ └── TiledImageStat.cs │ │ │ ├── UnityTower5.cs │ │ │ ├── WhiteBlack5.cs │ │ │ └── WorldTournament5.cs │ │ ├── Gen6 │ │ │ ├── BattleBox6.cs │ │ │ ├── BerryField6AO.cs │ │ │ ├── BerryField6XY.cs │ │ │ ├── BoxLayout6.cs │ │ │ ├── ConfigSave6.cs │ │ │ ├── Contest6.cs │ │ │ ├── Daycare6AO.cs │ │ │ ├── Encount6.cs │ │ │ ├── EventWork6.cs │ │ │ ├── Fashion6XY.cs │ │ │ ├── FieldMoveModelSave6.cs │ │ │ ├── GTS6.cs │ │ │ ├── GameTime6.cs │ │ │ ├── HallFame6Entity.cs │ │ │ ├── HallOfFame6.cs │ │ │ ├── IGymTeamInfo.cs │ │ │ ├── ItemInfo6.cs │ │ │ ├── LinkBlock6.cs │ │ │ ├── MaisonBlock.cs │ │ │ ├── Misc6AO.cs │ │ │ ├── Misc6XY.cs │ │ │ ├── MyItem6AO.cs │ │ │ ├── MyItem6XY.cs │ │ │ ├── MyStatus6.cs │ │ │ ├── MyStatus6XY.cs │ │ │ ├── MysteryBlock6.cs │ │ │ ├── OPower │ │ │ │ ├── OPower6.cs │ │ │ │ ├── OPower6BattleType.cs │ │ │ │ ├── OPower6FieldType.cs │ │ │ │ ├── OPower6Type.cs │ │ │ │ ├── OPower6Value.cs │ │ │ │ └── OPowerFlagState.cs │ │ │ ├── PSS6.cs │ │ │ ├── PlayTime6.cs │ │ │ ├── Puff6.cs │ │ │ ├── RecordBlock6.cs │ │ │ ├── SangoInfoBlock.cs │ │ │ ├── SecretBase │ │ │ │ ├── SecretBase6.cs │ │ │ │ ├── SecretBase6GoodPlacement.cs │ │ │ │ ├── SecretBase6GoodStock.cs │ │ │ │ ├── SecretBase6PKM.cs │ │ │ │ └── SecretBase6Rank.cs │ │ │ ├── SecretBase6Block.cs │ │ │ ├── Situation6.cs │ │ │ ├── SubEventLog6.cs │ │ │ ├── SuperTrainBlock.cs │ │ │ ├── TrainerFashion6.cs │ │ │ ├── TrainerSprite6.cs │ │ │ └── UnionPokemon6.cs │ │ ├── Gen7 │ │ │ ├── BattleAgency7.cs │ │ │ ├── BattleTree7.cs │ │ │ ├── BoxLayout7.cs │ │ │ ├── ConfigSave7.cs │ │ │ ├── Daycare7.cs │ │ │ ├── EventVarType.cs │ │ │ ├── EventWork7.cs │ │ │ ├── FashionBlock7.cs │ │ │ ├── FestaFacility.cs │ │ │ ├── FieldMenu7.cs │ │ │ ├── FieldMoveModelSave7.cs │ │ │ ├── GTS7.cs │ │ │ ├── GameTime7.cs │ │ │ ├── JoinFesta7.cs │ │ │ ├── LGPE │ │ │ │ ├── BelugaBlockIndex.cs │ │ │ │ ├── CaptureRecords.cs │ │ │ │ ├── ConfigSave7b.cs │ │ │ │ ├── Coordinates7b.cs │ │ │ │ ├── Daycare7b.cs │ │ │ │ ├── EventWork7b.cs │ │ │ │ ├── Fashion7b.cs │ │ │ │ ├── GP1.cs │ │ │ │ ├── GoParkStorage.cs │ │ │ │ ├── IEventWork.cs │ │ │ │ ├── Misc7b.cs │ │ │ │ ├── MyItem7b.cs │ │ │ │ ├── MyStatus7b.cs │ │ │ │ ├── PlayTime7b.cs │ │ │ │ ├── PlayerGeoLocation7b.cs │ │ │ │ ├── PokeListHeader.cs │ │ │ │ ├── PouchSize7b.cs │ │ │ │ ├── WB7Records.cs │ │ │ │ └── WR7GiftType.cs │ │ │ ├── Misc7.cs │ │ │ ├── MyItem7SM.cs │ │ │ ├── MyItem7USUM.cs │ │ │ ├── MyStatus7.cs │ │ │ ├── MysteryBlock7.cs │ │ │ ├── PlayerBattleStyle7.cs │ │ │ ├── PlayerSkinColor7.cs │ │ │ ├── PokeFinder7.cs │ │ │ ├── QR7.cs │ │ │ ├── ResortSave7.cs │ │ │ ├── SAV7BlockIndex.cs │ │ │ ├── Situation7.cs │ │ │ ├── Stamp7.cs │ │ │ ├── UnionPokemon7.cs │ │ │ └── WormholeInfoReader.cs │ │ ├── Gen8 │ │ │ ├── BS │ │ │ │ ├── BattleTowerWork8b.cs │ │ │ │ ├── BattleTrainerStatus8b.cs │ │ │ │ ├── BerryTreeGrowSave8b.cs │ │ │ │ ├── BoxLayout8b.cs │ │ │ │ ├── ConfigSave8b.cs │ │ │ │ ├── Contest8b.cs │ │ │ │ ├── ContestPhotoLanguage8b.cs │ │ │ │ ├── Daycare8b.cs │ │ │ │ ├── EncounterSave8b.cs │ │ │ │ ├── FieldGimmickSave8b.cs │ │ │ │ ├── FieldObjectSave8b.cs │ │ │ │ ├── FlagWork8b.cs │ │ │ │ ├── Gem8Version.cs │ │ │ │ ├── MenuSelect8b.cs │ │ │ │ ├── MyItem8b.cs │ │ │ │ ├── MyStatus8b.cs │ │ │ │ ├── MysteryBlock8b.cs │ │ │ │ ├── Party8b.cs │ │ │ │ ├── PlayTime8b.cs │ │ │ │ ├── PlayerData8b.cs │ │ │ │ ├── PoffinSaveData8b.cs │ │ │ │ ├── Poketch8b.cs │ │ │ │ ├── RandomGroup8b.cs │ │ │ │ ├── Record8b.cs │ │ │ │ ├── RecordAddData8b.cs │ │ │ │ ├── SaveItemShortcut8b.cs │ │ │ │ ├── SealDeco8b.cs │ │ │ │ ├── SealList8b.cs │ │ │ │ ├── SealSticker8b.cs │ │ │ │ ├── SystemData8b.cs │ │ │ │ ├── UgCountRecord8b.cs │ │ │ │ ├── UgItemType.cs │ │ │ │ ├── UgItemUtil.cs │ │ │ │ ├── UgSaveData8b.cs │ │ │ │ ├── UndergroundItem8b.cs │ │ │ │ ├── UndergroundItemList8b.cs │ │ │ │ ├── UnionSaveData8b.cs │ │ │ │ ├── Zukan8b.cs │ │ │ │ └── ZukanSpinda8b.cs │ │ │ ├── LA │ │ │ │ ├── BlankBlocks8a.cs │ │ │ │ ├── BoxLayout8a.cs │ │ │ │ ├── Coordinates8a.cs │ │ │ │ ├── MyItem8a.cs │ │ │ │ ├── MyStatus8a.cs │ │ │ │ ├── Party8a.cs │ │ │ │ ├── PlayerFashion8a.cs │ │ │ │ ├── Pokedex │ │ │ │ │ ├── PokedexConstants8a.cs │ │ │ │ │ ├── PokedexResearchTask8a.cs │ │ │ │ │ ├── PokedexResearchTaskType8a.cs │ │ │ │ │ ├── PokedexSave8a.cs │ │ │ │ │ ├── PokedexSaveData.cs │ │ │ │ │ ├── PokedexSaveGlobalData.cs │ │ │ │ │ ├── PokedexSaveLocalData.cs │ │ │ │ │ ├── PokedexSaveResearchEntry.cs │ │ │ │ │ ├── PokedexSaveStatisticsEntry.cs │ │ │ │ │ ├── PokedexTimeOfDay8a.cs │ │ │ │ │ ├── PokedexType8a.cs │ │ │ │ │ └── PokedexUpdateInfo8a.cs │ │ │ │ └── Spawners │ │ │ │ │ ├── AreaSpawnerSet8a.cs │ │ │ │ │ ├── MassOutbreakSet8a.cs │ │ │ │ │ ├── MassOutbreakSpawner8a.cs │ │ │ │ │ ├── MassiveOutbreakArea8a.cs │ │ │ │ │ ├── MassiveOutbreakSet8a.cs │ │ │ │ │ ├── MassiveOutbreakSpawner8a.cs │ │ │ │ │ ├── MassiveOutbreakSpawnerStatus.cs │ │ │ │ │ ├── Spawner8a.cs │ │ │ │ │ ├── SpawnerEntry8a.cs │ │ │ │ │ ├── SpawnerMeta8a.cs │ │ │ │ │ └── SpawnerUtil8a.cs │ │ │ ├── SWSH │ │ │ │ ├── BlankBlocks8.cs │ │ │ │ ├── Box8.cs │ │ │ │ ├── BoxLayout8.cs │ │ │ │ ├── Coordinates8.cs │ │ │ │ ├── Daycare8.cs │ │ │ │ ├── FashionUnlock8.cs │ │ │ │ ├── FieldMoveModelSave8.cs │ │ │ │ ├── Fused8.cs │ │ │ │ ├── HallOfFameTime8.cs │ │ │ │ ├── Misc8.cs │ │ │ │ ├── MyItem8.cs │ │ │ │ ├── MyStatus8.cs │ │ │ │ ├── Party8.cs │ │ │ │ ├── PlayerSkinColor8.cs │ │ │ │ ├── PouchSize8.cs │ │ │ │ ├── RaidSpawnList8.cs │ │ │ │ ├── Record8.cs │ │ │ │ ├── TeamIndexes8.cs │ │ │ │ ├── TitleScreen8.cs │ │ │ │ └── TrainerCard8.cs │ │ │ └── ValueBlocks │ │ │ │ ├── MenuOrderOption.cs │ │ │ │ ├── OptInOption.cs │ │ │ │ ├── OptOutOption.cs │ │ │ │ └── TextSpeedOption.cs │ │ ├── Gen9 │ │ │ ├── SV │ │ │ │ ├── BlankBlocks9.cs │ │ │ │ ├── BlueberryClubRoom9.cs │ │ │ │ ├── BlueberryQuestRecord9.cs │ │ │ │ ├── Box9.cs │ │ │ │ ├── BoxLayout9.cs │ │ │ │ ├── ConfigCamera9.cs │ │ │ │ ├── ConfigSave9.cs │ │ │ │ ├── DXT1.cs │ │ │ │ ├── FashionItem9.cs │ │ │ │ ├── FixedSpawnList9.cs │ │ │ │ ├── MyItem9.cs │ │ │ │ ├── MyStatus9.cs │ │ │ │ ├── Party9.cs │ │ │ │ ├── PlayTime9.cs │ │ │ │ ├── PlayerAppearance9.cs │ │ │ │ ├── PlayerFashion9.cs │ │ │ │ ├── PlayerFashionUnlock9.cs │ │ │ │ ├── PouchSize9.cs │ │ │ │ ├── RaidSevenStar9.cs │ │ │ │ ├── RaidSpawnList9.cs │ │ │ │ ├── RuntimeLanguage.cs │ │ │ │ └── ThrowStyle9.cs │ │ │ └── ZA │ │ │ │ ├── BlankBlocks9a.cs │ │ │ │ ├── BoxLayout9a.cs │ │ │ │ ├── ColorfulScrew9a.cs │ │ │ │ ├── ConfigSave9a.cs │ │ │ │ ├── Coordinates9a.cs │ │ │ │ ├── EventWorkStorage64.cs │ │ │ │ ├── FashionItem9a.cs │ │ │ │ ├── HairMakeItem9a.cs │ │ │ │ ├── IEventValueStorage.cs │ │ │ │ ├── InfiniteRoyale9a.cs │ │ │ │ ├── MableStatus9a.cs │ │ │ │ ├── MyItem9a.cs │ │ │ │ ├── MyStatus9a.cs │ │ │ │ ├── Party9a.cs │ │ │ │ ├── PlayTime9a.cs │ │ │ │ ├── PlayerFashion9a.cs │ │ │ │ ├── PokeDexEntry9a.cs │ │ │ │ └── Zukan9a.cs │ │ ├── IEventFlagArray.cs │ │ ├── IMultiplayerSprite.cs │ │ ├── ITrainerStatRecord.cs │ │ ├── Inventory │ │ │ ├── IItemFavorite.cs │ │ │ ├── IItemFreeSpace.cs │ │ │ ├── IItemFreeSpaceIndex.cs │ │ │ ├── IItemNewFlag.cs │ │ │ ├── InventoryType.cs │ │ │ ├── Item │ │ │ │ ├── InventoryItem.cs │ │ │ │ ├── InventoryItem7.cs │ │ │ │ ├── InventoryItem7b.cs │ │ │ │ ├── InventoryItem8.cs │ │ │ │ ├── InventoryItem8a.cs │ │ │ │ ├── InventoryItem8b.cs │ │ │ │ ├── InventoryItem9.cs │ │ │ │ └── InventoryItem9a.cs │ │ │ ├── MyItem.cs │ │ │ └── Pouch │ │ │ │ ├── InventoryPouch.cs │ │ │ │ ├── InventoryPouch3.cs │ │ │ │ ├── InventoryPouch3GC.cs │ │ │ │ ├── InventoryPouch4.cs │ │ │ │ ├── InventoryPouch7.cs │ │ │ │ ├── InventoryPouch7b.cs │ │ │ │ ├── InventoryPouch8.cs │ │ │ │ ├── InventoryPouch8a.cs │ │ │ │ ├── InventoryPouch8b.cs │ │ │ │ ├── InventoryPouch9.cs │ │ │ │ ├── InventoryPouch9a.cs │ │ │ │ └── InventoryPouchGB.cs │ │ ├── Mail │ │ │ ├── Mail2.cs │ │ │ ├── Mail3.cs │ │ │ ├── Mail4.cs │ │ │ ├── Mail5.cs │ │ │ └── MailDetail.cs │ │ ├── Misc │ │ │ ├── IBoxDetailName.cs │ │ │ ├── IBoxDetailWallpaper.cs │ │ │ ├── IChatter.cs │ │ │ ├── IGameSync.cs │ │ │ ├── IGeonet.cs │ │ │ ├── IPokeGroup.cs │ │ │ ├── IRecordStatStorage.cs │ │ │ ├── ISaveFileRevision.cs │ │ │ ├── ISecureValueStorage.cs │ │ │ ├── ITeamIndexSet.cs │ │ │ └── SlotGroup.cs │ │ ├── MysteryGift │ │ │ ├── IMysteryGiftFlags.cs │ │ │ ├── IMysteryGiftStorage.cs │ │ │ └── IMysteryGiftStorageProvider.cs │ │ ├── PokeDex │ │ │ ├── Gen9 │ │ │ │ ├── DexBlockMode9.cs │ │ │ │ ├── PokeDexEntry9Kitakami.cs │ │ │ │ ├── PokeDexEntry9Paldea.cs │ │ │ │ ├── Zukan9.cs │ │ │ │ ├── Zukan9Kitakami.cs │ │ │ │ └── Zukan9Paldea.cs │ │ │ ├── Zukan.cs │ │ │ ├── Zukan4.cs │ │ │ ├── Zukan5.cs │ │ │ ├── Zukan6.cs │ │ │ ├── Zukan7.cs │ │ │ ├── Zukan7b.cs │ │ │ └── Zukan8.cs │ │ ├── Records.cs │ │ ├── Rentals │ │ │ ├── IRentalTeam.cs │ │ │ ├── RentalTeam8.cs │ │ │ ├── RentalTeam9.cs │ │ │ └── RentalTeamSet9.cs │ │ └── Time │ │ │ ├── Epoch0000DateTime.cs │ │ │ ├── Epoch1900DateTimeValue.cs │ │ │ ├── Epoch1900DateValue.cs │ │ │ ├── Epoch1970Value.cs │ │ │ └── EpochDateTime.cs │ └── Util │ │ ├── BinaryExportSetting.cs │ │ ├── BlankSaveFile.cs │ │ ├── BoxUtil.cs │ │ ├── Checksums.cs │ │ ├── Detection │ │ ├── SaveFileType.cs │ │ └── SaveTypeInfo.cs │ │ ├── DexFormUtil.cs │ │ ├── IGCSaveFile.cs │ │ ├── ILangDeviantSave.cs │ │ ├── Recognition │ │ ├── ISaveHandler.cs │ │ ├── SaveHandlerARDS.cs │ │ ├── SaveHandlerDeSmuME.cs │ │ ├── SaveHandlerFooterRTC.cs │ │ ├── SaveHandlerGCI.cs │ │ ├── SaveHandlerNSO.cs │ │ ├── SaveHandlerSplitResult.cs │ │ └── ZipReader.cs │ │ ├── SaveExtensions.cs │ │ ├── SaveFinder.cs │ │ ├── SaveLanguage.cs │ │ ├── SaveUtil.cs │ │ ├── StadiumUtil.cs │ │ └── StorageUtil.cs └── Util │ ├── BinaryCodedDecimal.cs │ ├── ComboItemUtil.cs │ ├── DateUtil.cs │ ├── EmbeddedResourceCache.cs │ ├── FileUtil.cs │ ├── FlagUtil.cs │ ├── Localization │ ├── LocalizationStorage.cs │ ├── LocalizationUtil.cs │ ├── LocalizeUtil.cs │ └── LocalizedDescriptionAttribute.cs │ ├── MessageStrings.cs │ ├── NetUtil.cs │ ├── PathUtil.cs │ ├── RandUtil.cs │ ├── ReflectUtil.cs │ ├── ResourceUtil.cs │ ├── StringUtil.cs │ ├── UpdateUtil.cs │ ├── Util.cs │ └── ValueTypeTypeConverter.cs ├── PKHeX.Drawing.Misc ├── PKHeX.Drawing.Misc.csproj ├── Properties │ ├── Resources.Designer.cs │ └── Resources.resx ├── QR │ ├── QRDecode.cs │ ├── QRDecodeResult.cs │ ├── QREncode.cs │ └── QRImageUtil.cs ├── Resources │ └── img │ │ ├── Trainer Sprites │ │ ├── tr_00.png │ │ ├── tr_01.png │ │ ├── tr_02.png │ │ ├── tr_03.png │ │ ├── tr_04.png │ │ ├── tr_05.png │ │ ├── tr_06.png │ │ ├── tr_07.png │ │ ├── tr_08.png │ │ ├── tr_09.png │ │ ├── tr_10.png │ │ ├── tr_11.png │ │ ├── tr_12.png │ │ ├── tr_128.png │ │ ├── tr_129.png │ │ ├── tr_13.png │ │ ├── tr_14.png │ │ ├── tr_15.png │ │ ├── tr_16.png │ │ ├── tr_17.png │ │ ├── tr_18.png │ │ ├── tr_19.png │ │ ├── tr_20.png │ │ ├── tr_21.png │ │ ├── tr_22.png │ │ ├── tr_23.png │ │ ├── tr_24.png │ │ ├── tr_25.png │ │ ├── tr_26.png │ │ ├── tr_27.png │ │ ├── tr_28.png │ │ ├── tr_29.png │ │ ├── tr_30.png │ │ ├── tr_31.png │ │ ├── tr_32.png │ │ ├── tr_33.png │ │ ├── tr_34.png │ │ ├── tr_35.png │ │ ├── tr_36.png │ │ ├── tr_37.png │ │ ├── tr_38.png │ │ ├── tr_39.png │ │ ├── tr_40.png │ │ ├── tr_41.png │ │ ├── tr_42.png │ │ ├── tr_43.png │ │ ├── tr_44.png │ │ ├── tr_45.png │ │ ├── tr_46.png │ │ ├── tr_47.png │ │ ├── tr_48.png │ │ ├── tr_49.png │ │ ├── tr_50.png │ │ ├── tr_51.png │ │ ├── tr_52.png │ │ ├── tr_53.png │ │ ├── tr_54.png │ │ ├── tr_55.png │ │ ├── tr_56.png │ │ ├── tr_57.png │ │ ├── tr_58.png │ │ ├── tr_59.png │ │ ├── tr_60.png │ │ ├── tr_61.png │ │ ├── tr_62.png │ │ ├── tr_63.png │ │ ├── tr_64.png │ │ ├── tr_65.png │ │ ├── tr_66.png │ │ ├── tr_67.png │ │ ├── tr_68.png │ │ ├── tr_69.png │ │ ├── tr_70.png │ │ ├── tr_71.png │ │ ├── tr_72.png │ │ └── tr_73.png │ │ ├── box │ │ ├── ao │ │ │ ├── box_wp17ao.png │ │ │ ├── box_wp18ao.png │ │ │ ├── box_wp19ao.png │ │ │ ├── box_wp20ao.png │ │ │ ├── box_wp21ao.png │ │ │ ├── box_wp22ao.png │ │ │ ├── box_wp23ao.png │ │ │ └── box_wp24ao.png │ │ ├── b2w2 │ │ │ ├── box_wp17b2w2.png │ │ │ ├── box_wp18b2w2.png │ │ │ ├── box_wp19b2w2.png │ │ │ ├── box_wp20b2w2.png │ │ │ ├── box_wp21b2w2.png │ │ │ ├── box_wp22b2w2.png │ │ │ ├── box_wp23b2w2.png │ │ │ └── box_wp24b2w2.png │ │ ├── bdsp │ │ │ ├── box_wp01bdsp.png │ │ │ ├── box_wp02bdsp.png │ │ │ ├── box_wp03bdsp.png │ │ │ ├── box_wp04bdsp.png │ │ │ ├── box_wp05bdsp.png │ │ │ ├── box_wp06bdsp.png │ │ │ ├── box_wp07bdsp.png │ │ │ ├── box_wp08bdsp.png │ │ │ ├── box_wp09bdsp.png │ │ │ ├── box_wp10bdsp.png │ │ │ ├── box_wp11bdsp.png │ │ │ ├── box_wp12bdsp.png │ │ │ ├── box_wp13bdsp.png │ │ │ ├── box_wp14bdsp.png │ │ │ ├── box_wp15bdsp.png │ │ │ ├── box_wp16bdsp.png │ │ │ ├── box_wp17bdsp.png │ │ │ ├── box_wp18bdsp.png │ │ │ ├── box_wp19bdsp.png │ │ │ ├── box_wp20bdsp.png │ │ │ ├── box_wp21bdsp.png │ │ │ ├── box_wp22bdsp.png │ │ │ ├── box_wp23bdsp.png │ │ │ ├── box_wp24bdsp.png │ │ │ ├── box_wp25bdsp.png │ │ │ ├── box_wp26bdsp.png │ │ │ ├── box_wp27bdsp.png │ │ │ ├── box_wp28bdsp.png │ │ │ ├── box_wp29bdsp.png │ │ │ ├── box_wp30bdsp.png │ │ │ ├── box_wp31bdsp.png │ │ │ └── box_wp32bdsp.png │ │ ├── bw │ │ │ ├── box_wp01bw.png │ │ │ ├── box_wp02bw.png │ │ │ ├── box_wp03bw.png │ │ │ ├── box_wp04bw.png │ │ │ ├── box_wp05bw.png │ │ │ ├── box_wp06bw.png │ │ │ ├── box_wp07bw.png │ │ │ ├── box_wp08bw.png │ │ │ ├── box_wp09bw.png │ │ │ ├── box_wp10bw.png │ │ │ ├── box_wp11bw.png │ │ │ ├── box_wp12bw.png │ │ │ ├── box_wp13bw.png │ │ │ ├── box_wp14bw.png │ │ │ ├── box_wp15bw.png │ │ │ ├── box_wp16bw.png │ │ │ ├── box_wp17bw.png │ │ │ ├── box_wp18bw.png │ │ │ ├── box_wp19bw.png │ │ │ ├── box_wp20bw.png │ │ │ ├── box_wp21bw.png │ │ │ ├── box_wp22bw.png │ │ │ ├── box_wp23bw.png │ │ │ └── box_wp24bw.png │ │ ├── dp │ │ │ ├── box_wp01dp.png │ │ │ ├── box_wp02dp.png │ │ │ ├── box_wp03dp.png │ │ │ ├── box_wp04dp.png │ │ │ ├── box_wp05dp.png │ │ │ ├── box_wp06dp.png │ │ │ ├── box_wp07dp.png │ │ │ ├── box_wp08dp.png │ │ │ ├── box_wp09dp.png │ │ │ ├── box_wp10dp.png │ │ │ ├── box_wp11dp.png │ │ │ ├── box_wp12dp.png │ │ │ ├── box_wp13dp.png │ │ │ ├── box_wp14dp.png │ │ │ ├── box_wp15dp.png │ │ │ ├── box_wp16dp.png │ │ │ ├── box_wp17dp.png │ │ │ ├── box_wp18dp.png │ │ │ ├── box_wp19dp.png │ │ │ ├── box_wp20dp.png │ │ │ ├── box_wp21dp.png │ │ │ ├── box_wp22dp.png │ │ │ ├── box_wp23dp.png │ │ │ └── box_wp24dp.png │ │ ├── e │ │ │ ├── box_wp01e.png │ │ │ ├── box_wp02e.png │ │ │ ├── box_wp03e.png │ │ │ ├── box_wp04e.png │ │ │ ├── box_wp05e.png │ │ │ ├── box_wp06e.png │ │ │ ├── box_wp07e.png │ │ │ ├── box_wp08e.png │ │ │ ├── box_wp09e.png │ │ │ ├── box_wp10e.png │ │ │ ├── box_wp11e.png │ │ │ ├── box_wp12e.png │ │ │ ├── box_wp13e.png │ │ │ ├── box_wp14e.png │ │ │ ├── box_wp15e.png │ │ │ └── box_wp16e.png │ │ ├── frlg │ │ │ ├── box_wp13frlg.png │ │ │ ├── box_wp14frlg.png │ │ │ ├── box_wp15frlg.png │ │ │ └── box_wp16frlg.png │ │ ├── hgss │ │ │ ├── box_wp17hgss.png │ │ │ ├── box_wp18hgss.png │ │ │ ├── box_wp19hgss.png │ │ │ ├── box_wp20hgss.png │ │ │ ├── box_wp21hgss.png │ │ │ ├── box_wp22hgss.png │ │ │ ├── box_wp23hgss.png │ │ │ └── box_wp24hgss.png │ │ ├── pt │ │ │ ├── box_wp17pt.png │ │ │ ├── box_wp18pt.png │ │ │ ├── box_wp19pt.png │ │ │ ├── box_wp20pt.png │ │ │ ├── box_wp21pt.png │ │ │ ├── box_wp22pt.png │ │ │ ├── box_wp23pt.png │ │ │ └── box_wp24pt.png │ │ ├── rs │ │ │ ├── box_wp01rs.png │ │ │ ├── box_wp02rs.png │ │ │ ├── box_wp03rs.png │ │ │ ├── box_wp04rs.png │ │ │ ├── box_wp05rs.png │ │ │ ├── box_wp06rs.png │ │ │ ├── box_wp07rs.png │ │ │ ├── box_wp08rs.png │ │ │ ├── box_wp09rs.png │ │ │ ├── box_wp10rs.png │ │ │ ├── box_wp11rs.png │ │ │ ├── box_wp12rs.png │ │ │ ├── box_wp13rs.png │ │ │ ├── box_wp14rs.png │ │ │ ├── box_wp15rs.png │ │ │ └── box_wp16rs.png │ │ ├── sv │ │ │ ├── box_wp01sv.png │ │ │ ├── box_wp02sv.png │ │ │ ├── box_wp03sv.png │ │ │ ├── box_wp04sv.png │ │ │ ├── box_wp05sv.png │ │ │ ├── box_wp06sv.png │ │ │ ├── box_wp07sv.png │ │ │ ├── box_wp08sv.png │ │ │ ├── box_wp09sv.png │ │ │ ├── box_wp10sv.png │ │ │ ├── box_wp11sv.png │ │ │ ├── box_wp12sv.png │ │ │ ├── box_wp13sv.png │ │ │ ├── box_wp14sv.png │ │ │ ├── box_wp15sv.png │ │ │ ├── box_wp16sv.png │ │ │ ├── box_wp17sv.png │ │ │ ├── box_wp18sv.png │ │ │ ├── box_wp19sv.png │ │ │ ├── box_wp20sv_n.png │ │ │ └── box_wp20sv_u.png │ │ ├── swsh │ │ │ ├── box_wp01swsh.png │ │ │ ├── box_wp02swsh.png │ │ │ ├── box_wp03swsh.png │ │ │ ├── box_wp04swsh.png │ │ │ ├── box_wp05swsh.png │ │ │ ├── box_wp06swsh.png │ │ │ ├── box_wp07swsh.png │ │ │ ├── box_wp08swsh.png │ │ │ ├── box_wp09swsh.png │ │ │ ├── box_wp10swsh.png │ │ │ ├── box_wp11swsh.png │ │ │ ├── box_wp12swsh.png │ │ │ ├── box_wp13swsh.png │ │ │ ├── box_wp14swsh.png │ │ │ ├── box_wp15swsh.png │ │ │ ├── box_wp16swsh.png │ │ │ ├── box_wp17swsh.png │ │ │ ├── box_wp18swsh.png │ │ │ └── box_wp19swsh.png │ │ └── xy │ │ │ ├── box_wp01xy.png │ │ │ ├── box_wp02xy.png │ │ │ ├── box_wp03xy.png │ │ │ ├── box_wp04xy.png │ │ │ ├── box_wp05xy.png │ │ │ ├── box_wp06xy.png │ │ │ ├── box_wp07xy.png │ │ │ ├── box_wp08xy.png │ │ │ ├── box_wp09xy.png │ │ │ ├── box_wp10xy.png │ │ │ ├── box_wp11xy.png │ │ │ ├── box_wp12xy.png │ │ │ ├── box_wp13xy.png │ │ │ ├── box_wp14xy.png │ │ │ ├── box_wp15xy.png │ │ │ ├── box_wp16xy.png │ │ │ ├── box_wp17xy.png │ │ │ ├── box_wp18xy.png │ │ │ ├── box_wp19xy.png │ │ │ ├── box_wp20xy.png │ │ │ ├── box_wp21xy.png │ │ │ ├── box_wp22xy.png │ │ │ ├── box_wp23xy.png │ │ │ └── box_wp24xy.png │ │ ├── misc │ │ └── Bag_Key.png │ │ ├── ribbons │ │ ├── ribbonability.png │ │ ├── ribbonabilitydouble.png │ │ ├── ribbonabilitygreat.png │ │ ├── ribbonabilitymulti.png │ │ ├── ribbonabilitypair.png │ │ ├── ribbonabilityworld.png │ │ ├── ribbonalert.png │ │ ├── ribbonartist.png │ │ ├── ribbonbattlerexpert.png │ │ ├── ribbonbattleroyale.png │ │ ├── ribbonbattlerskillful.png │ │ ├── ribbonbattletreegreat.png │ │ ├── ribbonbattletreemaster.png │ │ ├── ribbonbestfriends.png │ │ ├── ribbonbirthday.png │ │ ├── ribboncareless.png │ │ ├── ribbonchampionalola.png │ │ ├── ribbonchampionbattle.png │ │ ├── ribbonchampiong3.png │ │ ├── ribbonchampiong6hoenn.png │ │ ├── ribbonchampiongalar.png │ │ ├── ribbonchampionkalos.png │ │ ├── ribbonchampionnational.png │ │ ├── ribbonchampionpaldea.png │ │ ├── ribbonchampionregional.png │ │ ├── ribbonchampionsinnoh.png │ │ ├── ribbonchampionworld.png │ │ ├── ribbonclassic.png │ │ ├── ribbonconteststar.png │ │ ├── ribboncountmemorybattle.png │ │ ├── ribboncountmemorybattle2.png │ │ ├── ribboncountmemorycontest.png │ │ ├── ribboncountmemorycontest2.png │ │ ├── ribboncountry.png │ │ ├── ribbondowncast.png │ │ ├── ribbonearth.png │ │ ├── ribboneffort.png │ │ ├── ribbonevent.png │ │ ├── ribbonfootprint.png │ │ ├── ribbong3beauty.png │ │ ├── ribbong3beautyhyper.png │ │ ├── ribbong3beautymaster.png │ │ ├── ribbong3beautysuper.png │ │ ├── ribbong3cool.png │ │ ├── ribbong3coolhyper.png │ │ ├── ribbong3coolmaster.png │ │ ├── ribbong3coolsuper.png │ │ ├── ribbong3cute.png │ │ ├── ribbong3cutehyper.png │ │ ├── ribbong3cutemaster.png │ │ ├── ribbong3cutesuper.png │ │ ├── ribbong3smart.png │ │ ├── ribbong3smarthyper.png │ │ ├── ribbong3smartmaster.png │ │ ├── ribbong3smartsuper.png │ │ ├── ribbong3tough.png │ │ ├── ribbong3toughhyper.png │ │ ├── ribbong3toughmaster.png │ │ ├── ribbong3toughsuper.png │ │ ├── ribbong4beauty.png │ │ ├── ribbong4beautygreat.png │ │ ├── ribbong4beautymaster.png │ │ ├── ribbong4beautyultra.png │ │ ├── ribbong4cool.png │ │ ├── ribbong4coolgreat.png │ │ ├── ribbong4coolmaster.png │ │ ├── ribbong4coolultra.png │ │ ├── ribbong4cute.png │ │ ├── ribbong4cutegreat.png │ │ ├── ribbong4cutemaster.png │ │ ├── ribbong4cuteultra.png │ │ ├── ribbong4smart.png │ │ ├── ribbong4smartgreat.png │ │ ├── ribbong4smartmaster.png │ │ ├── ribbong4smartultra.png │ │ ├── ribbong4tough.png │ │ ├── ribbong4toughgreat.png │ │ ├── ribbong4toughmaster.png │ │ ├── ribbong4toughultra.png │ │ ├── ribbongorgeous.png │ │ ├── ribbongorgeousroyal.png │ │ ├── ribbonhisui.png │ │ ├── ribbonlegend.png │ │ ├── ribbonmarkabsentminded.png │ │ ├── ribbonmarkalpha.png │ │ ├── ribbonmarkangry.png │ │ ├── ribbonmarkblizzard.png │ │ ├── ribbonmarkcalmness.png │ │ ├── ribbonmarkcharismatic.png │ │ ├── ribbonmarkcloudy.png │ │ ├── ribbonmarkcrafty.png │ │ ├── ribbonmarkcurry.png │ │ ├── ribbonmarkdawn.png │ │ ├── ribbonmarkdestiny.png │ │ ├── ribbonmarkdry.png │ │ ├── ribbonmarkdusk.png │ │ ├── ribbonmarkexcited.png │ │ ├── ribbonmarkferocious.png │ │ ├── ribbonmarkfishing.png │ │ ├── ribbonmarkflustered.png │ │ ├── ribbonmarkgourmand.png │ │ ├── ribbonmarkhumble.png │ │ ├── ribbonmarkintellectual.png │ │ ├── ribbonmarkintense.png │ │ ├── ribbonmarkitemfinder.png │ │ ├── ribbonmarkjittery.png │ │ ├── ribbonmarkjoyful.png │ │ ├── ribbonmarkjumbo.png │ │ ├── ribbonmarkkindly.png │ │ ├── ribbonmarklunchtime.png │ │ ├── ribbonmarkmightiest.png │ │ ├── ribbonmarkmini.png │ │ ├── ribbonmarkmisty.png │ │ ├── ribbonmarkpartner.png │ │ ├── ribbonmarkpeeved.png │ │ ├── ribbonmarkprideful.png │ │ ├── ribbonmarkpumpedup.png │ │ ├── ribbonmarkrainy.png │ │ ├── ribbonmarkrare.png │ │ ├── ribbonmarkrowdy.png │ │ ├── ribbonmarksandstorm.png │ │ ├── ribbonmarkscowling.png │ │ ├── ribbonmarksleepytime.png │ │ ├── ribbonmarkslump.png │ │ ├── ribbonmarksmiley.png │ │ ├── ribbonmarksnowy.png │ │ ├── ribbonmarkstormy.png │ │ ├── ribbonmarkteary.png │ │ ├── ribbonmarkthorny.png │ │ ├── ribbonmarktitan.png │ │ ├── ribbonmarkuncommon.png │ │ ├── ribbonmarkunsure.png │ │ ├── ribbonmarkupbeat.png │ │ ├── ribbonmarkvigor.png │ │ ├── ribbonmarkzeroenergy.png │ │ ├── ribbonmarkzonedout.png │ │ ├── ribbonmasterbeauty.png │ │ ├── ribbonmastercleverness.png │ │ ├── ribbonmastercoolness.png │ │ ├── ribbonmastercuteness.png │ │ ├── ribbonmasterrank.png │ │ ├── ribbonmastertoughness.png │ │ ├── ribbonnational.png │ │ ├── ribbononceinalifetime.png │ │ ├── ribbonpartner.png │ │ ├── ribbonpremier.png │ │ ├── ribbonrecord.png │ │ ├── ribbonrelax.png │ │ ├── ribbonroyal.png │ │ ├── ribbonshock.png │ │ ├── ribbonsmile.png │ │ ├── ribbonsnooze.png │ │ ├── ribbonsouvenir.png │ │ ├── ribbonspecial.png │ │ ├── ribbontowermaster.png │ │ ├── ribbontraining.png │ │ ├── ribbontwinklingstar.png │ │ ├── ribbonvictory.png │ │ ├── ribbonwinning.png │ │ ├── ribbonwishing.png │ │ └── ribbonworld.png │ │ └── types │ │ ├── gem │ │ ├── gem_00.png │ │ ├── gem_01.png │ │ ├── gem_02.png │ │ ├── gem_03.png │ │ ├── gem_04.png │ │ ├── gem_05.png │ │ ├── gem_06.png │ │ ├── gem_07.png │ │ ├── gem_08.png │ │ ├── gem_09.png │ │ ├── gem_10.png │ │ ├── gem_11.png │ │ ├── gem_12.png │ │ ├── gem_13.png │ │ ├── gem_14.png │ │ ├── gem_15.png │ │ ├── gem_16.png │ │ ├── gem_17.png │ │ └── gem_99.png │ │ ├── square │ │ ├── type_icon_00.png │ │ ├── type_icon_01.png │ │ ├── type_icon_02.png │ │ ├── type_icon_03.png │ │ ├── type_icon_04.png │ │ ├── type_icon_05.png │ │ ├── type_icon_06.png │ │ ├── type_icon_07.png │ │ ├── type_icon_08.png │ │ ├── type_icon_09.png │ │ ├── type_icon_10.png │ │ ├── type_icon_11.png │ │ ├── type_icon_12.png │ │ ├── type_icon_13.png │ │ ├── type_icon_14.png │ │ ├── type_icon_15.png │ │ ├── type_icon_16.png │ │ ├── type_icon_17.png │ │ └── type_icon_99.png │ │ ├── square_s │ │ ├── type_icon_s_00.png │ │ ├── type_icon_s_01.png │ │ ├── type_icon_s_02.png │ │ ├── type_icon_s_03.png │ │ ├── type_icon_s_04.png │ │ ├── type_icon_s_05.png │ │ ├── type_icon_s_06.png │ │ ├── type_icon_s_07.png │ │ ├── type_icon_s_08.png │ │ ├── type_icon_s_09.png │ │ ├── type_icon_s_10.png │ │ ├── type_icon_s_11.png │ │ ├── type_icon_s_12.png │ │ ├── type_icon_s_13.png │ │ ├── type_icon_s_14.png │ │ ├── type_icon_s_15.png │ │ ├── type_icon_s_16.png │ │ ├── type_icon_s_17.png │ │ └── type_icon_s_99.png │ │ └── wide │ │ ├── type_wide_00.png │ │ ├── type_wide_01.png │ │ ├── type_wide_02.png │ │ ├── type_wide_03.png │ │ ├── type_wide_04.png │ │ ├── type_wide_05.png │ │ ├── type_wide_06.png │ │ ├── type_wide_07.png │ │ ├── type_wide_08.png │ │ ├── type_wide_09.png │ │ ├── type_wide_10.png │ │ ├── type_wide_11.png │ │ ├── type_wide_12.png │ │ ├── type_wide_13.png │ │ ├── type_wide_14.png │ │ ├── type_wide_15.png │ │ ├── type_wide_16.png │ │ ├── type_wide_17.png │ │ └── type_wide_99.png └── Util │ ├── MysteryGiftSpriteUtil.cs │ ├── PlayerSpriteUtil.cs │ ├── RibbonSpriteUtil.cs │ ├── TypeSpriteUtil.cs │ └── WallpaperUtil.cs ├── PKHeX.Drawing.PokeSprite ├── Builder │ ├── ISpriteSettings.cs │ ├── SpriteBackgroundType.cs │ ├── SpriteBuilder.cs │ ├── SpriteBuilder5668.cs │ ├── SpriteBuilder5668a.cs │ ├── SpriteBuilder5668c.cs │ └── SpriteBuilderMode.cs ├── PKHeX.Drawing.PokeSprite.csproj ├── Properties │ ├── Resources.Designer.cs │ └── Resources.resx ├── Resources │ └── img │ │ ├── Artwork Items │ │ ├── aitem_1.png │ │ ├── aitem_10.png │ │ ├── aitem_103.png │ │ ├── aitem_106.png │ │ ├── aitem_107.png │ │ ├── aitem_108.png │ │ ├── aitem_109.png │ │ ├── aitem_11.png │ │ ├── aitem_110.png │ │ ├── aitem_1103.png │ │ ├── aitem_1104.png │ │ ├── aitem_1109.png │ │ ├── aitem_111.png │ │ ├── aitem_1110.png │ │ ├── aitem_1111.png │ │ ├── aitem_1112.png │ │ ├── aitem_1113.png │ │ ├── aitem_1114.png │ │ ├── aitem_1115.png │ │ ├── aitem_1116.png │ │ ├── aitem_1117.png │ │ ├── aitem_1118.png │ │ ├── aitem_1119.png │ │ ├── aitem_112.png │ │ ├── aitem_1120.png │ │ ├── aitem_1121.png │ │ ├── aitem_1122.png │ │ ├── aitem_1123.png │ │ ├── aitem_1124.png │ │ ├── aitem_1125.png │ │ ├── aitem_1126.png │ │ ├── aitem_1127.png │ │ ├── aitem_1128.png │ │ ├── aitem_12.png │ │ ├── aitem_1231.png │ │ ├── aitem_1232.png │ │ ├── aitem_1233.png │ │ ├── aitem_1234.png │ │ ├── aitem_1235.png │ │ ├── aitem_1236.png │ │ ├── aitem_1237.png │ │ ├── aitem_1238.png │ │ ├── aitem_1239.png │ │ ├── aitem_1240.png │ │ ├── aitem_1241.png │ │ ├── aitem_1242.png │ │ ├── aitem_1243.png │ │ ├── aitem_1244.png │ │ ├── aitem_1245.png │ │ ├── aitem_1246.png │ │ ├── aitem_1247.png │ │ ├── aitem_1248.png │ │ ├── aitem_1249.png │ │ ├── aitem_1250.png │ │ ├── aitem_1251.png │ │ ├── aitem_1253.png │ │ ├── aitem_1254.png │ │ ├── aitem_13.png │ │ ├── aitem_135.png │ │ ├── aitem_136.png │ │ ├── aitem_14.png │ │ ├── aitem_149.png │ │ ├── aitem_15.png │ │ ├── aitem_150.png │ │ ├── aitem_151.png │ │ ├── aitem_152.png │ │ ├── aitem_153.png │ │ ├── aitem_154.png │ │ ├── aitem_155.png │ │ ├── aitem_156.png │ │ ├── aitem_157.png │ │ ├── aitem_158.png │ │ ├── aitem_1581.png │ │ ├── aitem_1582.png │ │ ├── aitem_159.png │ │ ├── aitem_1592.png │ │ ├── aitem_16.png │ │ ├── aitem_160.png │ │ ├── aitem_1606.png │ │ ├── aitem_161.png │ │ ├── aitem_162.png │ │ ├── aitem_163.png │ │ ├── aitem_169.png │ │ ├── aitem_17.png │ │ ├── aitem_170.png │ │ ├── aitem_171.png │ │ ├── aitem_172.png │ │ ├── aitem_173.png │ │ ├── aitem_174.png │ │ ├── aitem_1777.png │ │ ├── aitem_1778.png │ │ ├── aitem_1779.png │ │ ├── aitem_1785.png │ │ ├── aitem_18.png │ │ ├── aitem_184.png │ │ ├── aitem_1842.png │ │ ├── aitem_1843.png │ │ ├── aitem_185.png │ │ ├── aitem_186.png │ │ ├── aitem_1861.png │ │ ├── aitem_1862.png │ │ ├── aitem_1863.png │ │ ├── aitem_1864.png │ │ ├── aitem_1865.png │ │ ├── aitem_1866.png │ │ ├── aitem_1867.png │ │ ├── aitem_1868.png │ │ ├── aitem_1869.png │ │ ├── aitem_187.png │ │ ├── aitem_1870.png │ │ ├── aitem_1871.png │ │ ├── aitem_1872.png │ │ ├── aitem_1873.png │ │ ├── aitem_1874.png │ │ ├── aitem_1875.png │ │ ├── aitem_1876.png │ │ ├── aitem_1877.png │ │ ├── aitem_1878.png │ │ ├── aitem_1879.png │ │ ├── aitem_188.png │ │ ├── aitem_1880.png │ │ ├── aitem_1881.png │ │ ├── aitem_1882.png │ │ ├── aitem_1883.png │ │ ├── aitem_1884.png │ │ ├── aitem_1885.png │ │ ├── aitem_1886.png │ │ ├── aitem_189.png │ │ ├── aitem_19.png │ │ ├── aitem_190.png │ │ ├── aitem_191.png │ │ ├── aitem_192.png │ │ ├── aitem_193.png │ │ ├── aitem_194.png │ │ ├── aitem_195.png │ │ ├── aitem_196.png │ │ ├── aitem_197.png │ │ ├── aitem_198.png │ │ ├── aitem_199.png │ │ ├── aitem_2.png │ │ ├── aitem_20.png │ │ ├── aitem_200.png │ │ ├── aitem_201.png │ │ ├── aitem_202.png │ │ ├── aitem_203.png │ │ ├── aitem_204.png │ │ ├── aitem_205.png │ │ ├── aitem_206.png │ │ ├── aitem_207.png │ │ ├── aitem_208.png │ │ ├── aitem_209.png │ │ ├── aitem_21.png │ │ ├── aitem_210.png │ │ ├── aitem_211.png │ │ ├── aitem_212.png │ │ ├── aitem_213.png │ │ ├── aitem_214.png │ │ ├── aitem_217.png │ │ ├── aitem_218.png │ │ ├── aitem_219.png │ │ ├── aitem_22.png │ │ ├── aitem_220.png │ │ ├── aitem_221.png │ │ ├── aitem_222.png │ │ ├── aitem_223.png │ │ ├── aitem_224.png │ │ ├── aitem_225.png │ │ ├── aitem_228.png │ │ ├── aitem_229.png │ │ ├── aitem_23.png │ │ ├── aitem_230.png │ │ ├── aitem_231.png │ │ ├── aitem_232.png │ │ ├── aitem_233.png │ │ ├── aitem_234.png │ │ ├── aitem_2344.png │ │ ├── aitem_2345.png │ │ ├── aitem_235.png │ │ ├── aitem_236.png │ │ ├── aitem_237.png │ │ ├── aitem_238.png │ │ ├── aitem_239.png │ │ ├── aitem_24.png │ │ ├── aitem_240.png │ │ ├── aitem_2401.png │ │ ├── aitem_2402.png │ │ ├── aitem_2403.png │ │ ├── aitem_2404.png │ │ ├── aitem_2406.png │ │ ├── aitem_2407.png │ │ ├── aitem_2408.png │ │ ├── aitem_241.png │ │ ├── aitem_2411.png │ │ ├── aitem_2412.png │ │ ├── aitem_2413.png │ │ ├── aitem_2414.png │ │ ├── aitem_2415.png │ │ ├── aitem_2416.png │ │ ├── aitem_242.png │ │ ├── aitem_243.png │ │ ├── aitem_244.png │ │ ├── aitem_245.png │ │ ├── aitem_246.png │ │ ├── aitem_247.png │ │ ├── aitem_2479.png │ │ ├── aitem_248.png │ │ ├── aitem_2482.png │ │ ├── aitem_249.png │ │ ├── aitem_25.png │ │ ├── aitem_250.png │ │ ├── aitem_251.png │ │ ├── aitem_252.png │ │ ├── aitem_253.png │ │ ├── aitem_2549.png │ │ ├── aitem_2558.png │ │ ├── aitem_2559.png │ │ ├── aitem_2560.png │ │ ├── aitem_2561.png │ │ ├── aitem_2562.png │ │ ├── aitem_2563.png │ │ ├── aitem_2564.png │ │ ├── aitem_2565.png │ │ ├── aitem_2566.png │ │ ├── aitem_2569.png │ │ ├── aitem_2570.png │ │ ├── aitem_2571.png │ │ ├── aitem_2572.png │ │ ├── aitem_2573.png │ │ ├── aitem_2574.png │ │ ├── aitem_2575.png │ │ ├── aitem_2576.png │ │ ├── aitem_2577.png │ │ ├── aitem_2578.png │ │ ├── aitem_2579.png │ │ ├── aitem_2580.png │ │ ├── aitem_2581.png │ │ ├── aitem_2582.png │ │ ├── aitem_2583.png │ │ ├── aitem_2584.png │ │ ├── aitem_2585.png │ │ ├── aitem_2587.png │ │ ├── aitem_26.png │ │ ├── aitem_2618.png │ │ ├── aitem_265.png │ │ ├── aitem_266.png │ │ ├── aitem_267.png │ │ ├── aitem_268.png │ │ ├── aitem_269.png │ │ ├── aitem_27.png │ │ ├── aitem_270.png │ │ ├── aitem_271.png │ │ ├── aitem_272.png │ │ ├── aitem_273.png │ │ ├── aitem_275.png │ │ ├── aitem_276.png │ │ ├── aitem_277.png │ │ ├── aitem_278.png │ │ ├── aitem_279.png │ │ ├── aitem_28.png │ │ ├── aitem_280.png │ │ ├── aitem_281.png │ │ ├── aitem_282.png │ │ ├── aitem_283.png │ │ ├── aitem_284.png │ │ ├── aitem_285.png │ │ ├── aitem_286.png │ │ ├── aitem_287.png │ │ ├── aitem_288.png │ │ ├── aitem_289.png │ │ ├── aitem_29.png │ │ ├── aitem_290.png │ │ ├── aitem_291.png │ │ ├── aitem_292.png │ │ ├── aitem_293.png │ │ ├── aitem_294.png │ │ ├── aitem_295.png │ │ ├── aitem_296.png │ │ ├── aitem_297.png │ │ ├── aitem_298.png │ │ ├── aitem_299.png │ │ ├── aitem_3.png │ │ ├── aitem_30.png │ │ ├── aitem_300.png │ │ ├── aitem_301.png │ │ ├── aitem_302.png │ │ ├── aitem_303.png │ │ ├── aitem_304.png │ │ ├── aitem_305.png │ │ ├── aitem_306.png │ │ ├── aitem_307.png │ │ ├── aitem_308.png │ │ ├── aitem_309.png │ │ ├── aitem_31.png │ │ ├── aitem_310.png │ │ ├── aitem_311.png │ │ ├── aitem_312.png │ │ ├── aitem_313.png │ │ ├── aitem_32.png │ │ ├── aitem_321.png │ │ ├── aitem_322.png │ │ ├── aitem_323.png │ │ ├── aitem_324.png │ │ ├── aitem_325.png │ │ ├── aitem_326.png │ │ ├── aitem_327.png │ │ ├── aitem_33.png │ │ ├── aitem_34.png │ │ ├── aitem_35.png │ │ ├── aitem_36.png │ │ ├── aitem_37.png │ │ ├── aitem_38.png │ │ ├── aitem_39.png │ │ ├── aitem_4.png │ │ ├── aitem_40.png │ │ ├── aitem_41.png │ │ ├── aitem_45.png │ │ ├── aitem_46.png │ │ ├── aitem_47.png │ │ ├── aitem_48.png │ │ ├── aitem_485.png │ │ ├── aitem_486.png │ │ ├── aitem_487.png │ │ ├── aitem_488.png │ │ ├── aitem_489.png │ │ ├── aitem_49.png │ │ ├── aitem_490.png │ │ ├── aitem_491.png │ │ ├── aitem_492.png │ │ ├── aitem_493.png │ │ ├── aitem_494.png │ │ ├── aitem_495.png │ │ ├── aitem_496.png │ │ ├── aitem_497.png │ │ ├── aitem_498.png │ │ ├── aitem_499.png │ │ ├── aitem_5.png │ │ ├── aitem_50.png │ │ ├── aitem_500.png │ │ ├── aitem_51.png │ │ ├── aitem_52.png │ │ ├── aitem_53.png │ │ ├── aitem_537.png │ │ ├── aitem_538.png │ │ ├── aitem_539.png │ │ ├── aitem_540.png │ │ ├── aitem_541.png │ │ ├── aitem_542.png │ │ ├── aitem_543.png │ │ ├── aitem_544.png │ │ ├── aitem_545.png │ │ ├── aitem_546.png │ │ ├── aitem_547.png │ │ ├── aitem_55.png │ │ ├── aitem_56.png │ │ ├── aitem_564.png │ │ ├── aitem_565.png │ │ ├── aitem_566.png │ │ ├── aitem_567.png │ │ ├── aitem_568.png │ │ ├── aitem_569.png │ │ ├── aitem_57.png │ │ ├── aitem_570.png │ │ ├── aitem_571.png │ │ ├── aitem_576.png │ │ ├── aitem_58.png │ │ ├── aitem_580.png │ │ ├── aitem_581.png │ │ ├── aitem_582.png │ │ ├── aitem_583.png │ │ ├── aitem_59.png │ │ ├── aitem_6.png │ │ ├── aitem_60.png │ │ ├── aitem_61.png │ │ ├── aitem_62.png │ │ ├── aitem_63.png │ │ ├── aitem_639.png │ │ ├── aitem_640.png │ │ ├── aitem_644.png │ │ ├── aitem_645.png │ │ ├── aitem_646.png │ │ ├── aitem_647.png │ │ ├── aitem_648.png │ │ ├── aitem_649.png │ │ ├── aitem_650.png │ │ ├── aitem_656.png │ │ ├── aitem_657.png │ │ ├── aitem_658.png │ │ ├── aitem_659.png │ │ ├── aitem_660.png │ │ ├── aitem_661.png │ │ ├── aitem_662.png │ │ ├── aitem_663.png │ │ ├── aitem_665.png │ │ ├── aitem_666.png │ │ ├── aitem_667.png │ │ ├── aitem_668.png │ │ ├── aitem_669.png │ │ ├── aitem_670.png │ │ ├── aitem_671.png │ │ ├── aitem_672.png │ │ ├── aitem_673.png │ │ ├── aitem_674.png │ │ ├── aitem_675.png │ │ ├── aitem_676.png │ │ ├── aitem_677.png │ │ ├── aitem_678.png │ │ ├── aitem_679.png │ │ ├── aitem_680.png │ │ ├── aitem_681.png │ │ ├── aitem_682.png │ │ ├── aitem_683.png │ │ ├── aitem_686.png │ │ ├── aitem_687.png │ │ ├── aitem_688.png │ │ ├── aitem_7.png │ │ ├── aitem_708.png │ │ ├── aitem_709.png │ │ ├── aitem_710.png │ │ ├── aitem_711.png │ │ ├── aitem_754.png │ │ ├── aitem_755.png │ │ ├── aitem_756.png │ │ ├── aitem_757.png │ │ ├── aitem_758.png │ │ ├── aitem_759.png │ │ ├── aitem_760.png │ │ ├── aitem_761.png │ │ ├── aitem_762.png │ │ ├── aitem_763.png │ │ ├── aitem_764.png │ │ ├── aitem_767.png │ │ ├── aitem_768.png │ │ ├── aitem_769.png │ │ ├── aitem_770.png │ │ ├── aitem_795.png │ │ ├── aitem_796.png │ │ ├── aitem_8.png │ │ ├── aitem_80.png │ │ ├── aitem_81.png │ │ ├── aitem_82.png │ │ ├── aitem_83.png │ │ ├── aitem_84.png │ │ ├── aitem_846.png │ │ ├── aitem_849.png │ │ ├── aitem_85.png │ │ ├── aitem_851.png │ │ ├── aitem_853.png │ │ ├── aitem_854.png │ │ ├── aitem_855.png │ │ ├── aitem_856.png │ │ ├── aitem_86.png │ │ ├── aitem_87.png │ │ ├── aitem_879.png │ │ ├── aitem_88.png │ │ ├── aitem_880.png │ │ ├── aitem_881.png │ │ ├── aitem_882.png │ │ ├── aitem_883.png │ │ ├── aitem_884.png │ │ ├── aitem_89.png │ │ ├── aitem_9.png │ │ ├── aitem_90.png │ │ ├── aitem_91.png │ │ ├── aitem_92.png │ │ ├── aitem_94.png │ │ └── aitem_tm.png │ │ ├── Artwork Pokemon Sprites │ │ ├── a_1.png │ │ ├── a_10.png │ │ ├── a_100-1.png │ │ ├── a_100.png │ │ ├── a_1000.png │ │ ├── a_1001.png │ │ ├── a_1002.png │ │ ├── a_1003.png │ │ ├── a_1004.png │ │ ├── a_1005.png │ │ ├── a_1006.png │ │ ├── a_1007-1.png │ │ ├── a_1007-2.png │ │ ├── a_1007-3.png │ │ ├── a_1007-4.png │ │ ├── a_1007.png │ │ ├── a_1008-1.png │ │ ├── a_1008-2.png │ │ ├── a_1008-3.png │ │ ├── a_1008-4.png │ │ ├── a_1008.png │ │ ├── a_1009.png │ │ ├── a_101-1.png │ │ ├── a_101.png │ │ ├── a_1010.png │ │ ├── a_1011.png │ │ ├── a_1012.png │ │ ├── a_1013.png │ │ ├── a_1014.png │ │ ├── a_1015.png │ │ ├── a_1016.png │ │ ├── a_1017-1.png │ │ ├── a_1017-2.png │ │ ├── a_1017-3.png │ │ ├── a_1017-4.png │ │ ├── a_1017-5.png │ │ ├── a_1017-6.png │ │ ├── a_1017-7.png │ │ ├── a_1017.png │ │ ├── a_1018.png │ │ ├── a_1019.png │ │ ├── a_102.png │ │ ├── a_1020.png │ │ ├── a_1021.png │ │ ├── a_1022.png │ │ ├── a_1023.png │ │ ├── a_1024-1.png │ │ ├── a_1024-2.png │ │ ├── a_1024.png │ │ ├── a_1025.png │ │ ├── a_103-1.png │ │ ├── a_103.png │ │ ├── a_104.png │ │ ├── a_105-1.png │ │ ├── a_105.png │ │ ├── a_106.png │ │ ├── a_107.png │ │ ├── a_108.png │ │ ├── a_109.png │ │ ├── a_11.png │ │ ├── a_110-1.png │ │ ├── a_110.png │ │ ├── a_111.png │ │ ├── a_112.png │ │ ├── a_113.png │ │ ├── a_114.png │ │ ├── a_115-1.png │ │ ├── a_115.png │ │ ├── a_116.png │ │ ├── a_117.png │ │ ├── a_118.png │ │ ├── a_119.png │ │ ├── a_12.png │ │ ├── a_120.png │ │ ├── a_121-1.png │ │ ├── a_121.png │ │ ├── a_122-1.png │ │ ├── a_122.png │ │ ├── a_123.png │ │ ├── a_124.png │ │ ├── a_125.png │ │ ├── a_126.png │ │ ├── a_127-1.png │ │ ├── a_127.png │ │ ├── a_128-1.png │ │ ├── a_128-2.png │ │ ├── a_128-3.png │ │ ├── a_128.png │ │ ├── a_129.png │ │ ├── a_13.png │ │ ├── a_130-1.png │ │ ├── a_130.png │ │ ├── a_131.png │ │ ├── a_132.png │ │ ├── a_133-1p.png │ │ ├── a_133.png │ │ ├── a_134.png │ │ ├── a_135.png │ │ ├── a_136.png │ │ ├── a_137.png │ │ ├── a_138.png │ │ ├── a_139.png │ │ ├── a_14.png │ │ ├── a_140.png │ │ ├── a_141.png │ │ ├── a_142-1.png │ │ ├── a_142.png │ │ ├── a_143.png │ │ ├── a_144-1.png │ │ ├── a_144.png │ │ ├── a_145-1.png │ │ ├── a_145.png │ │ ├── a_146-1.png │ │ ├── a_146.png │ │ ├── a_147.png │ │ ├── a_148.png │ │ ├── a_149-1.png │ │ ├── a_149.png │ │ ├── a_15-1.png │ │ ├── a_15.png │ │ ├── a_150-1.png │ │ ├── a_150-2.png │ │ ├── a_150.png │ │ ├── a_151.png │ │ ├── a_152.png │ │ ├── a_153.png │ │ ├── a_154-1.png │ │ ├── a_154.png │ │ ├── a_155.png │ │ ├── a_156.png │ │ ├── a_157-1.png │ │ ├── a_157.png │ │ ├── a_158.png │ │ ├── a_159.png │ │ ├── a_16.png │ │ ├── a_160-1.png │ │ ├── a_160.png │ │ ├── a_161.png │ │ ├── a_162.png │ │ ├── a_163.png │ │ ├── a_164.png │ │ ├── a_165.png │ │ ├── a_166.png │ │ ├── a_167.png │ │ ├── a_168.png │ │ ├── a_169.png │ │ ├── a_17.png │ │ ├── a_170.png │ │ ├── a_171.png │ │ ├── a_172.png │ │ ├── a_173.png │ │ ├── a_174.png │ │ ├── a_175.png │ │ ├── a_176.png │ │ ├── a_177.png │ │ ├── a_178.png │ │ ├── a_179.png │ │ ├── a_18-1.png │ │ ├── a_18.png │ │ ├── a_180.png │ │ ├── a_181-1.png │ │ ├── a_181.png │ │ ├── a_182.png │ │ ├── a_183.png │ │ ├── a_184.png │ │ ├── a_185.png │ │ ├── a_186.png │ │ ├── a_187.png │ │ ├── a_188.png │ │ ├── a_189.png │ │ ├── a_19-1.png │ │ ├── a_19.png │ │ ├── a_190.png │ │ ├── a_191.png │ │ ├── a_192.png │ │ ├── a_193.png │ │ ├── a_194-1.png │ │ ├── a_194.png │ │ ├── a_195.png │ │ ├── a_196.png │ │ ├── a_197.png │ │ ├── a_198.png │ │ ├── a_199-1.png │ │ ├── a_199.png │ │ ├── a_2.png │ │ ├── a_20-1.png │ │ ├── a_20.png │ │ ├── a_200.png │ │ ├── a_201-1.png │ │ ├── a_201-10.png │ │ ├── a_201-11.png │ │ ├── a_201-12.png │ │ ├── a_201-13.png │ │ ├── a_201-14.png │ │ ├── a_201-15.png │ │ ├── a_201-16.png │ │ ├── a_201-17.png │ │ ├── a_201-18.png │ │ ├── a_201-19.png │ │ ├── a_201-2.png │ │ ├── a_201-20.png │ │ ├── a_201-21.png │ │ ├── a_201-22.png │ │ ├── a_201-23.png │ │ ├── a_201-24.png │ │ ├── a_201-25.png │ │ ├── a_201-26.png │ │ ├── a_201-27.png │ │ ├── a_201-3.png │ │ ├── a_201-4.png │ │ ├── a_201-5.png │ │ ├── a_201-6.png │ │ ├── a_201-7.png │ │ ├── a_201-8.png │ │ ├── a_201-9.png │ │ ├── a_201.png │ │ ├── a_202.png │ │ ├── a_203.png │ │ ├── a_204.png │ │ ├── a_205.png │ │ ├── a_206.png │ │ ├── a_207.png │ │ ├── a_208-1.png │ │ ├── a_208.png │ │ ├── a_209.png │ │ ├── a_21.png │ │ ├── a_210.png │ │ ├── a_211-1.png │ │ ├── a_211.png │ │ ├── a_212-1.png │ │ ├── a_212.png │ │ ├── a_213.png │ │ ├── a_214-1.png │ │ ├── a_214.png │ │ ├── a_215-1.png │ │ ├── a_215.png │ │ ├── a_216.png │ │ ├── a_217.png │ │ ├── a_218.png │ │ ├── a_219.png │ │ ├── a_22.png │ │ ├── a_220.png │ │ ├── a_221.png │ │ ├── a_222-1.png │ │ ├── a_222.png │ │ ├── a_223.png │ │ ├── a_224.png │ │ ├── a_225.png │ │ ├── a_226.png │ │ ├── a_227-1.png │ │ ├── a_227.png │ │ ├── a_228.png │ │ ├── a_229-1.png │ │ ├── a_229.png │ │ ├── a_23.png │ │ ├── a_230.png │ │ ├── a_231.png │ │ ├── a_232.png │ │ ├── a_233.png │ │ ├── a_234.png │ │ ├── a_235.png │ │ ├── a_236.png │ │ ├── a_237.png │ │ ├── a_238.png │ │ ├── a_239.png │ │ ├── a_24.png │ │ ├── a_240.png │ │ ├── a_241.png │ │ ├── a_242.png │ │ ├── a_243.png │ │ ├── a_244.png │ │ ├── a_245.png │ │ ├── a_246.png │ │ ├── a_247.png │ │ ├── a_248-1.png │ │ ├── a_248.png │ │ ├── a_249.png │ │ ├── a_25-1.png │ │ ├── a_25-2.png │ │ ├── a_25-3.png │ │ ├── a_25-4.png │ │ ├── a_25-5.png │ │ ├── a_25-6.png │ │ ├── a_25-7.png │ │ ├── a_25-8p.png │ │ ├── a_25-9.png │ │ ├── a_25.png │ │ ├── a_250.png │ │ ├── a_251.png │ │ ├── a_252.png │ │ ├── a_253.png │ │ ├── a_254-1.png │ │ ├── a_254.png │ │ ├── a_255.png │ │ ├── a_256.png │ │ ├── a_257-1.png │ │ ├── a_257.png │ │ ├── a_258.png │ │ ├── a_259.png │ │ ├── a_26-1.png │ │ ├── a_26.png │ │ ├── a_260-1.png │ │ ├── a_260.png │ │ ├── a_261.png │ │ ├── a_262.png │ │ ├── a_263-1.png │ │ ├── a_263.png │ │ ├── a_264-1.png │ │ ├── a_264.png │ │ ├── a_265.png │ │ ├── a_266.png │ │ ├── a_267.png │ │ ├── a_268.png │ │ ├── a_269.png │ │ ├── a_27-1.png │ │ ├── a_27.png │ │ ├── a_270.png │ │ ├── a_271.png │ │ ├── a_272.png │ │ ├── a_273.png │ │ ├── a_274.png │ │ ├── a_275.png │ │ ├── a_276.png │ │ ├── a_277.png │ │ ├── a_278.png │ │ ├── a_279.png │ │ ├── a_28-1.png │ │ ├── a_28.png │ │ ├── a_280.png │ │ ├── a_281.png │ │ ├── a_282-1.png │ │ ├── a_282.png │ │ ├── a_283.png │ │ ├── a_284.png │ │ ├── a_285.png │ │ ├── a_286.png │ │ ├── a_287.png │ │ ├── a_288.png │ │ ├── a_289.png │ │ ├── a_29.png │ │ ├── a_290.png │ │ ├── a_291.png │ │ ├── a_292.png │ │ ├── a_293.png │ │ ├── a_294.png │ │ ├── a_295.png │ │ ├── a_296.png │ │ ├── a_297.png │ │ ├── a_298.png │ │ ├── a_299.png │ │ ├── a_3-1.png │ │ ├── a_3.png │ │ ├── a_30.png │ │ ├── a_300.png │ │ ├── a_301.png │ │ ├── a_302-1.png │ │ ├── a_302.png │ │ ├── a_303-1.png │ │ ├── a_303.png │ │ ├── a_304.png │ │ ├── a_305.png │ │ ├── a_306-1.png │ │ ├── a_306.png │ │ ├── a_307.png │ │ ├── a_308-1.png │ │ ├── a_308.png │ │ ├── a_309.png │ │ ├── a_31.png │ │ ├── a_310-1.png │ │ ├── a_310.png │ │ ├── a_311.png │ │ ├── a_312.png │ │ ├── a_313.png │ │ ├── a_314.png │ │ ├── a_315.png │ │ ├── a_316.png │ │ ├── a_317.png │ │ ├── a_318.png │ │ ├── a_319-1.png │ │ ├── a_319.png │ │ ├── a_32.png │ │ ├── a_320.png │ │ ├── a_321.png │ │ ├── a_322.png │ │ ├── a_323-1.png │ │ ├── a_323.png │ │ ├── a_324.png │ │ ├── a_325.png │ │ ├── a_326.png │ │ ├── a_327.png │ │ ├── a_328.png │ │ ├── a_329.png │ │ ├── a_33.png │ │ ├── a_330.png │ │ ├── a_331.png │ │ ├── a_332.png │ │ ├── a_333.png │ │ ├── a_334-1.png │ │ ├── a_334.png │ │ ├── a_335.png │ │ ├── a_336.png │ │ ├── a_337.png │ │ ├── a_338.png │ │ ├── a_339.png │ │ ├── a_34.png │ │ ├── a_340.png │ │ ├── a_341.png │ │ ├── a_342.png │ │ ├── a_343.png │ │ ├── a_344.png │ │ ├── a_345.png │ │ ├── a_346.png │ │ ├── a_347.png │ │ ├── a_348.png │ │ ├── a_349.png │ │ ├── a_35.png │ │ ├── a_350.png │ │ ├── a_351-1.png │ │ ├── a_351-2.png │ │ ├── a_351-3.png │ │ ├── a_351.png │ │ ├── a_352.png │ │ ├── a_353.png │ │ ├── a_354-1.png │ │ ├── a_354.png │ │ ├── a_355.png │ │ ├── a_356.png │ │ ├── a_357.png │ │ ├── a_358.png │ │ ├── a_359-1.png │ │ ├── a_359.png │ │ ├── a_36-1.png │ │ ├── a_36.png │ │ ├── a_360.png │ │ ├── a_361.png │ │ ├── a_362-1.png │ │ ├── a_362.png │ │ ├── a_363.png │ │ ├── a_364.png │ │ ├── a_365.png │ │ ├── a_366.png │ │ ├── a_367.png │ │ ├── a_368.png │ │ ├── a_369.png │ │ ├── a_37-1.png │ │ ├── a_37.png │ │ ├── a_370.png │ │ ├── a_371.png │ │ ├── a_372.png │ │ ├── a_373-1.png │ │ ├── a_373.png │ │ ├── a_374.png │ │ ├── a_375.png │ │ ├── a_376-1.png │ │ ├── a_376.png │ │ ├── a_377.png │ │ ├── a_378.png │ │ ├── a_379.png │ │ ├── a_38-1.png │ │ ├── a_38.png │ │ ├── a_380-1.png │ │ ├── a_380.png │ │ ├── a_381-1.png │ │ ├── a_381.png │ │ ├── a_382-1.png │ │ ├── a_382.png │ │ ├── a_383-1.png │ │ ├── a_383.png │ │ ├── a_384-1.png │ │ ├── a_384.png │ │ ├── a_385.png │ │ ├── a_386-1.png │ │ ├── a_386-2.png │ │ ├── a_386-3.png │ │ ├── a_386.png │ │ ├── a_387.png │ │ ├── a_388.png │ │ ├── a_389.png │ │ ├── a_39.png │ │ ├── a_390.png │ │ ├── a_391.png │ │ ├── a_392.png │ │ ├── a_393.png │ │ ├── a_394.png │ │ ├── a_395.png │ │ ├── a_396.png │ │ ├── a_397.png │ │ ├── a_398.png │ │ ├── a_399.png │ │ ├── a_4.png │ │ ├── a_40.png │ │ ├── a_400.png │ │ ├── a_401.png │ │ ├── a_402.png │ │ ├── a_403.png │ │ ├── a_404.png │ │ ├── a_405.png │ │ ├── a_406.png │ │ ├── a_407.png │ │ ├── a_408.png │ │ ├── a_409.png │ │ ├── a_41.png │ │ ├── a_410.png │ │ ├── a_411.png │ │ ├── a_412-1.png │ │ ├── a_412-2.png │ │ ├── a_412.png │ │ ├── a_413-1.png │ │ ├── a_413-2.png │ │ ├── a_413.png │ │ ├── a_414.png │ │ ├── a_415.png │ │ ├── a_416.png │ │ ├── a_417.png │ │ ├── a_418.png │ │ ├── a_419.png │ │ ├── a_42.png │ │ ├── a_420.png │ │ ├── a_421-1.png │ │ ├── a_421.png │ │ ├── a_422-1.png │ │ ├── a_422.png │ │ ├── a_423-1.png │ │ ├── a_423.png │ │ ├── a_424.png │ │ ├── a_425.png │ │ ├── a_426.png │ │ ├── a_427.png │ │ ├── a_428-1.png │ │ ├── a_428.png │ │ ├── a_429.png │ │ ├── a_43.png │ │ ├── a_430.png │ │ ├── a_431.png │ │ ├── a_432.png │ │ ├── a_433.png │ │ ├── a_434.png │ │ ├── a_435.png │ │ ├── a_436.png │ │ ├── a_437.png │ │ ├── a_438.png │ │ ├── a_439.png │ │ ├── a_44.png │ │ ├── a_440.png │ │ ├── a_441.png │ │ ├── a_442.png │ │ ├── a_443.png │ │ ├── a_444.png │ │ ├── a_445-1.png │ │ ├── a_445.png │ │ ├── a_446.png │ │ ├── a_447.png │ │ ├── a_448-1.png │ │ ├── a_448.png │ │ ├── a_449.png │ │ ├── a_449f.png │ │ ├── a_45.png │ │ ├── a_450.png │ │ ├── a_450f.png │ │ ├── a_451.png │ │ ├── a_452.png │ │ ├── a_453.png │ │ ├── a_454.png │ │ ├── a_455.png │ │ ├── a_456.png │ │ ├── a_457.png │ │ ├── a_458.png │ │ ├── a_459.png │ │ ├── a_46.png │ │ ├── a_460-1.png │ │ ├── a_460.png │ │ ├── a_461.png │ │ ├── a_462.png │ │ ├── a_463.png │ │ ├── a_464.png │ │ ├── a_465.png │ │ ├── a_466.png │ │ ├── a_467.png │ │ ├── a_468.png │ │ ├── a_469.png │ │ ├── a_47.png │ │ ├── a_470.png │ │ ├── a_471.png │ │ ├── a_472.png │ │ ├── a_473.png │ │ ├── a_474.png │ │ ├── a_475-1.png │ │ ├── a_475.png │ │ ├── a_476.png │ │ ├── a_477.png │ │ ├── a_478-1.png │ │ ├── a_478.png │ │ ├── a_479-1.png │ │ ├── a_479-2.png │ │ ├── a_479-3.png │ │ ├── a_479-4.png │ │ ├── a_479-5.png │ │ ├── a_479.png │ │ ├── a_48.png │ │ ├── a_480.png │ │ ├── a_481.png │ │ ├── a_482.png │ │ ├── a_483-1.png │ │ ├── a_483.png │ │ ├── a_484-1.png │ │ ├── a_484.png │ │ ├── a_485.png │ │ ├── a_486.png │ │ ├── a_487-1.png │ │ ├── a_487.png │ │ ├── a_488.png │ │ ├── a_489.png │ │ ├── a_49.png │ │ ├── a_490-e.png │ │ ├── a_490.png │ │ ├── a_491.png │ │ ├── a_492-1.png │ │ ├── a_492.png │ │ ├── a_493-1.png │ │ ├── a_493-10.png │ │ ├── a_493-11.png │ │ ├── a_493-12.png │ │ ├── a_493-13.png │ │ ├── a_493-14.png │ │ ├── a_493-15.png │ │ ├── a_493-16.png │ │ ├── a_493-17.png │ │ ├── a_493-18.png │ │ ├── a_493-2.png │ │ ├── a_493-3.png │ │ ├── a_493-4.png │ │ ├── a_493-5.png │ │ ├── a_493-6.png │ │ ├── a_493-7.png │ │ ├── a_493-8.png │ │ ├── a_493-9.png │ │ ├── a_493.png │ │ ├── a_494.png │ │ ├── a_495.png │ │ ├── a_496.png │ │ ├── a_497.png │ │ ├── a_498.png │ │ ├── a_499.png │ │ ├── a_5.png │ │ ├── a_50-1.png │ │ ├── a_50.png │ │ ├── a_500-1.png │ │ ├── a_500.png │ │ ├── a_501.png │ │ ├── a_502.png │ │ ├── a_503-1.png │ │ ├── a_503.png │ │ ├── a_504.png │ │ ├── a_505.png │ │ ├── a_506.png │ │ ├── a_507.png │ │ ├── a_508.png │ │ ├── a_509.png │ │ ├── a_51-1.png │ │ ├── a_51.png │ │ ├── a_510.png │ │ ├── a_511.png │ │ ├── a_512.png │ │ ├── a_513.png │ │ ├── a_514.png │ │ ├── a_515.png │ │ ├── a_516.png │ │ ├── a_517.png │ │ ├── a_518.png │ │ ├── a_519.png │ │ ├── a_52-1.png │ │ ├── a_52-2.png │ │ ├── a_52.png │ │ ├── a_520.png │ │ ├── a_521.png │ │ ├── a_521f.png │ │ ├── a_522.png │ │ ├── a_523.png │ │ ├── a_524.png │ │ ├── a_525.png │ │ ├── a_526.png │ │ ├── a_527.png │ │ ├── a_528.png │ │ ├── a_529.png │ │ ├── a_53-1.png │ │ ├── a_53.png │ │ ├── a_530-1.png │ │ ├── a_530.png │ │ ├── a_531-1.png │ │ ├── a_531.png │ │ ├── a_532.png │ │ ├── a_533.png │ │ ├── a_534.png │ │ ├── a_535.png │ │ ├── a_536.png │ │ ├── a_537.png │ │ ├── a_538.png │ │ ├── a_539.png │ │ ├── a_54.png │ │ ├── a_540.png │ │ ├── a_541.png │ │ ├── a_542.png │ │ ├── a_543.png │ │ ├── a_544.png │ │ ├── a_545-1.png │ │ ├── a_545.png │ │ ├── a_546.png │ │ ├── a_547.png │ │ ├── a_548.png │ │ ├── a_549-1.png │ │ ├── a_549.png │ │ ├── a_55.png │ │ ├── a_550-1.png │ │ ├── a_550-2.png │ │ ├── a_550.png │ │ ├── a_551.png │ │ ├── a_552.png │ │ ├── a_553.png │ │ ├── a_554-1.png │ │ ├── a_554.png │ │ ├── a_555-1.png │ │ ├── a_555-2.png │ │ ├── a_555-3.png │ │ ├── a_555.png │ │ ├── a_556.png │ │ ├── a_557.png │ │ ├── a_558.png │ │ ├── a_559.png │ │ ├── a_56.png │ │ ├── a_560-1.png │ │ ├── a_560.png │ │ ├── a_561.png │ │ ├── a_562-1.png │ │ ├── a_562.png │ │ ├── a_563.png │ │ ├── a_564.png │ │ ├── a_565.png │ │ ├── a_566.png │ │ ├── a_567.png │ │ ├── a_568.png │ │ ├── a_569.png │ │ ├── a_57.png │ │ ├── a_570-1.png │ │ ├── a_570.png │ │ ├── a_571-1.png │ │ ├── a_571.png │ │ ├── a_572.png │ │ ├── a_573.png │ │ ├── a_574.png │ │ ├── a_575.png │ │ ├── a_576.png │ │ ├── a_577.png │ │ ├── a_578.png │ │ ├── a_579.png │ │ ├── a_58-1.png │ │ ├── a_58.png │ │ ├── a_580.png │ │ ├── a_581.png │ │ ├── a_582.png │ │ ├── a_583.png │ │ ├── a_584.png │ │ ├── a_585-1.png │ │ ├── a_585-2.png │ │ ├── a_585-3.png │ │ ├── a_585.png │ │ ├── a_586-1.png │ │ ├── a_586-2.png │ │ ├── a_586-3.png │ │ ├── a_586.png │ │ ├── a_587.png │ │ ├── a_588.png │ │ ├── a_589.png │ │ ├── a_59-1.png │ │ ├── a_59.png │ │ ├── a_590.png │ │ ├── a_591.png │ │ ├── a_592.png │ │ ├── a_592f.png │ │ ├── a_593.png │ │ ├── a_593f.png │ │ ├── a_594.png │ │ ├── a_595.png │ │ ├── a_596.png │ │ ├── a_597.png │ │ ├── a_598.png │ │ ├── a_599.png │ │ ├── a_6-1.png │ │ ├── a_6-2.png │ │ ├── a_6.png │ │ ├── a_60.png │ │ ├── a_600.png │ │ ├── a_601.png │ │ ├── a_602.png │ │ ├── a_603.png │ │ ├── a_604-1.png │ │ ├── a_604.png │ │ ├── a_605.png │ │ ├── a_606.png │ │ ├── a_607.png │ │ ├── a_608.png │ │ ├── a_609-1.png │ │ ├── a_609.png │ │ ├── a_61.png │ │ ├── a_610.png │ │ ├── a_611.png │ │ ├── a_612.png │ │ ├── a_613.png │ │ ├── a_614.png │ │ ├── a_615.png │ │ ├── a_616.png │ │ ├── a_617.png │ │ ├── a_618-1.png │ │ ├── a_618.png │ │ ├── a_619.png │ │ ├── a_62.png │ │ ├── a_620.png │ │ ├── a_621.png │ │ ├── a_622.png │ │ ├── a_623.png │ │ ├── a_624.png │ │ ├── a_625.png │ │ ├── a_626.png │ │ ├── a_627.png │ │ ├── a_628-1.png │ │ ├── a_628.png │ │ ├── a_629.png │ │ ├── a_63.png │ │ ├── a_630.png │ │ ├── a_631.png │ │ ├── a_632.png │ │ ├── a_633.png │ │ ├── a_634.png │ │ ├── a_635.png │ │ ├── a_636.png │ │ ├── a_637.png │ │ ├── a_638.png │ │ ├── a_639.png │ │ ├── a_64.png │ │ ├── a_640.png │ │ ├── a_641-1.png │ │ ├── a_641.png │ │ ├── a_642-1.png │ │ ├── a_642.png │ │ ├── a_643.png │ │ ├── a_644.png │ │ ├── a_645-1.png │ │ ├── a_645.png │ │ ├── a_646-1.png │ │ ├── a_646-2.png │ │ ├── a_646.png │ │ ├── a_647-1.png │ │ ├── a_647.png │ │ ├── a_648-1.png │ │ ├── a_648.png │ │ ├── a_649-1.png │ │ ├── a_649-2.png │ │ ├── a_649-3.png │ │ ├── a_649-4.png │ │ ├── a_649.png │ │ ├── a_65-1.png │ │ ├── a_65.png │ │ ├── a_650.png │ │ ├── a_651.png │ │ ├── a_652-1.png │ │ ├── a_652.png │ │ ├── a_653.png │ │ ├── a_654.png │ │ ├── a_655-1.png │ │ ├── a_655.png │ │ ├── a_656.png │ │ ├── a_657.png │ │ ├── a_658-1.png │ │ ├── a_658-2.png │ │ ├── a_658-3.png │ │ ├── a_658.png │ │ ├── a_659.png │ │ ├── a_66.png │ │ ├── a_660.png │ │ ├── a_661.png │ │ ├── a_662.png │ │ ├── a_663.png │ │ ├── a_664.png │ │ ├── a_665.png │ │ ├── a_666-1.png │ │ ├── a_666-10.png │ │ ├── a_666-11.png │ │ ├── a_666-12.png │ │ ├── a_666-13.png │ │ ├── a_666-14.png │ │ ├── a_666-15.png │ │ ├── a_666-16.png │ │ ├── a_666-17.png │ │ ├── a_666-18.png │ │ ├── a_666-19.png │ │ ├── a_666-2.png │ │ ├── a_666-3.png │ │ ├── a_666-4.png │ │ ├── a_666-5.png │ │ ├── a_666-6.png │ │ ├── a_666-7.png │ │ ├── a_666-8.png │ │ ├── a_666-9.png │ │ ├── a_666.png │ │ ├── a_667.png │ │ ├── a_668-1.png │ │ ├── a_668-1f.png │ │ ├── a_668.png │ │ ├── a_668f.png │ │ ├── a_669-1.png │ │ ├── a_669-2.png │ │ ├── a_669-3.png │ │ ├── a_669-4.png │ │ ├── a_669.png │ │ ├── a_67.png │ │ ├── a_670-1.png │ │ ├── a_670-2.png │ │ ├── a_670-3.png │ │ ├── a_670-4.png │ │ ├── a_670-5.png │ │ ├── a_670-6.png │ │ ├── a_670.png │ │ ├── a_671-1.png │ │ ├── a_671-2.png │ │ ├── a_671-3.png │ │ ├── a_671-4.png │ │ ├── a_671.png │ │ ├── a_672.png │ │ ├── a_673.png │ │ ├── a_674.png │ │ ├── a_675.png │ │ ├── a_676-1.png │ │ ├── a_676-2.png │ │ ├── a_676-3.png │ │ ├── a_676-4.png │ │ ├── a_676-5.png │ │ ├── a_676-6.png │ │ ├── a_676-7.png │ │ ├── a_676-8.png │ │ ├── a_676-9.png │ │ ├── a_676.png │ │ ├── a_677.png │ │ ├── a_678-1.png │ │ ├── a_678.png │ │ ├── a_679.png │ │ ├── a_68.png │ │ ├── a_680.png │ │ ├── a_681-1.png │ │ ├── a_681.png │ │ ├── a_682.png │ │ ├── a_683.png │ │ ├── a_684.png │ │ ├── a_685.png │ │ ├── a_686.png │ │ ├── a_687-1.png │ │ ├── a_687.png │ │ ├── a_688.png │ │ ├── a_689-1.png │ │ ├── a_689.png │ │ ├── a_69.png │ │ ├── a_690.png │ │ ├── a_691-1.png │ │ ├── a_691.png │ │ ├── a_692.png │ │ ├── a_693.png │ │ ├── a_694.png │ │ ├── a_695.png │ │ ├── a_696.png │ │ ├── a_697.png │ │ ├── a_698.png │ │ ├── a_699.png │ │ ├── a_7.png │ │ ├── a_70.png │ │ ├── a_700.png │ │ ├── a_701-1.png │ │ ├── a_701.png │ │ ├── a_702.png │ │ ├── a_703.png │ │ ├── a_704.png │ │ ├── a_705-1.png │ │ ├── a_705.png │ │ ├── a_706-1.png │ │ ├── a_706.png │ │ ├── a_707.png │ │ ├── a_708.png │ │ ├── a_709.png │ │ ├── a_71-1.png │ │ ├── a_71.png │ │ ├── a_710-1.png │ │ ├── a_710-2.png │ │ ├── a_710-3.png │ │ ├── a_710.png │ │ ├── a_711-1.png │ │ ├── a_711-2.png │ │ ├── a_711-3.png │ │ ├── a_711.png │ │ ├── a_712.png │ │ ├── a_713-1.png │ │ ├── a_713.png │ │ ├── a_714.png │ │ ├── a_715.png │ │ ├── a_716-1.png │ │ ├── a_716.png │ │ ├── a_717.png │ │ ├── a_718-1.png │ │ ├── a_718-2.png │ │ ├── a_718-3.png │ │ ├── a_718-4.png │ │ ├── a_718-5.png │ │ ├── a_718.png │ │ ├── a_719-1.png │ │ ├── a_719.png │ │ ├── a_72.png │ │ ├── a_720-1.png │ │ ├── a_720.png │ │ ├── a_721.png │ │ ├── a_722.png │ │ ├── a_723.png │ │ ├── a_724-1.png │ │ ├── a_724.png │ │ ├── a_725.png │ │ ├── a_726.png │ │ ├── a_727.png │ │ ├── a_728.png │ │ ├── a_729.png │ │ ├── a_73.png │ │ ├── a_730.png │ │ ├── a_731.png │ │ ├── a_732.png │ │ ├── a_733.png │ │ ├── a_734.png │ │ ├── a_735.png │ │ ├── a_736.png │ │ ├── a_737.png │ │ ├── a_738.png │ │ ├── a_739.png │ │ ├── a_74-1.png │ │ ├── a_74.png │ │ ├── a_740.png │ │ ├── a_741-1.png │ │ ├── a_741-2.png │ │ ├── a_741-3.png │ │ ├── a_741.png │ │ ├── a_742.png │ │ ├── a_743.png │ │ ├── a_744.png │ │ ├── a_745-1.png │ │ ├── a_745-2.png │ │ ├── a_745.png │ │ ├── a_746-1.png │ │ ├── a_746.png │ │ ├── a_747.png │ │ ├── a_748.png │ │ ├── a_749.png │ │ ├── a_75-1.png │ │ ├── a_75.png │ │ ├── a_750.png │ │ ├── a_751.png │ │ ├── a_752.png │ │ ├── a_753.png │ │ ├── a_754.png │ │ ├── a_755.png │ │ ├── a_756.png │ │ ├── a_757.png │ │ ├── a_758.png │ │ ├── a_759.png │ │ ├── a_76-1.png │ │ ├── a_76.png │ │ ├── a_760.png │ │ ├── a_761.png │ │ ├── a_762.png │ │ ├── a_763.png │ │ ├── a_764.png │ │ ├── a_765.png │ │ ├── a_766.png │ │ ├── a_767.png │ │ ├── a_768.png │ │ ├── a_769.png │ │ ├── a_77-1.png │ │ ├── a_77.png │ │ ├── a_770.png │ │ ├── a_771.png │ │ ├── a_772.png │ │ ├── a_773-1.png │ │ ├── a_773-10.png │ │ ├── a_773-11.png │ │ ├── a_773-12.png │ │ ├── a_773-13.png │ │ ├── a_773-14.png │ │ ├── a_773-15.png │ │ ├── a_773-16.png │ │ ├── a_773-17.png │ │ ├── a_773-2.png │ │ ├── a_773-3.png │ │ ├── a_773-4.png │ │ ├── a_773-5.png │ │ ├── a_773-6.png │ │ ├── a_773-7.png │ │ ├── a_773-8.png │ │ ├── a_773-9.png │ │ ├── a_773.png │ │ ├── a_774-1.png │ │ ├── a_774-10.png │ │ ├── a_774-11.png │ │ ├── a_774-12.png │ │ ├── a_774-13.png │ │ ├── a_774-2.png │ │ ├── a_774-3.png │ │ ├── a_774-4.png │ │ ├── a_774-5.png │ │ ├── a_774-6.png │ │ ├── a_774-7.png │ │ ├── a_774-8.png │ │ ├── a_774-9.png │ │ ├── a_774.png │ │ ├── a_775.png │ │ ├── a_776.png │ │ ├── a_777.png │ │ ├── a_778.png │ │ ├── a_779.png │ │ ├── a_78-1.png │ │ ├── a_78.png │ │ ├── a_780-1.png │ │ ├── a_780.png │ │ ├── a_781.png │ │ ├── a_782.png │ │ ├── a_783.png │ │ ├── a_784.png │ │ ├── a_785.png │ │ ├── a_786.png │ │ ├── a_787.png │ │ ├── a_788.png │ │ ├── a_789.png │ │ ├── a_79-1.png │ │ ├── a_79.png │ │ ├── a_790.png │ │ ├── a_791.png │ │ ├── a_792.png │ │ ├── a_793.png │ │ ├── a_794.png │ │ ├── a_795.png │ │ ├── a_796.png │ │ ├── a_797.png │ │ ├── a_798.png │ │ ├── a_799.png │ │ ├── a_8.png │ │ ├── a_80-1.png │ │ ├── a_80-2.png │ │ ├── a_80.png │ │ ├── a_800-1.png │ │ ├── a_800-2.png │ │ ├── a_800-3.png │ │ ├── a_800.png │ │ ├── a_801-1.png │ │ ├── a_801.png │ │ ├── a_802.png │ │ ├── a_803.png │ │ ├── a_804.png │ │ ├── a_805.png │ │ ├── a_806.png │ │ ├── a_807.png │ │ ├── a_808.png │ │ ├── a_809.png │ │ ├── a_81.png │ │ ├── a_810.png │ │ ├── a_811.png │ │ ├── a_812.png │ │ ├── a_813.png │ │ ├── a_814.png │ │ ├── a_815.png │ │ ├── a_816.png │ │ ├── a_817.png │ │ ├── a_818.png │ │ ├── a_819.png │ │ ├── a_82.png │ │ ├── a_820.png │ │ ├── a_821.png │ │ ├── a_822.png │ │ ├── a_823.png │ │ ├── a_824.png │ │ ├── a_825.png │ │ ├── a_826.png │ │ ├── a_827.png │ │ ├── a_828.png │ │ ├── a_829.png │ │ ├── a_83-1.png │ │ ├── a_83.png │ │ ├── a_830.png │ │ ├── a_831.png │ │ ├── a_832.png │ │ ├── a_833.png │ │ ├── a_834.png │ │ ├── a_835.png │ │ ├── a_836.png │ │ ├── a_837.png │ │ ├── a_838.png │ │ ├── a_839.png │ │ ├── a_84.png │ │ ├── a_840.png │ │ ├── a_841.png │ │ ├── a_842.png │ │ ├── a_843.png │ │ ├── a_844.png │ │ ├── a_845-1.png │ │ ├── a_845-2.png │ │ ├── a_845.png │ │ ├── a_846.png │ │ ├── a_847.png │ │ ├── a_848.png │ │ ├── a_849-1.png │ │ ├── a_849.png │ │ ├── a_85.png │ │ ├── a_850.png │ │ ├── a_851.png │ │ ├── a_852.png │ │ ├── a_853.png │ │ ├── a_854.png │ │ ├── a_855.png │ │ ├── a_856.png │ │ ├── a_857.png │ │ ├── a_858.png │ │ ├── a_859.png │ │ ├── a_86.png │ │ ├── a_860.png │ │ ├── a_861.png │ │ ├── a_862.png │ │ ├── a_863.png │ │ ├── a_864.png │ │ ├── a_865.png │ │ ├── a_866.png │ │ ├── a_867.png │ │ ├── a_868.png │ │ ├── a_869-0-0.png │ │ ├── a_869-0-1.png │ │ ├── a_869-0-2.png │ │ ├── a_869-0-3.png │ │ ├── a_869-0-4.png │ │ ├── a_869-0-5.png │ │ ├── a_869-0-6.png │ │ ├── a_869-1-0.png │ │ ├── a_869-1-1.png │ │ ├── a_869-1-2.png │ │ ├── a_869-1-3.png │ │ ├── a_869-1-4.png │ │ ├── a_869-1-5.png │ │ ├── a_869-1-6.png │ │ ├── a_869-2-0.png │ │ ├── a_869-2-1.png │ │ ├── a_869-2-2.png │ │ ├── a_869-2-3.png │ │ ├── a_869-2-4.png │ │ ├── a_869-2-5.png │ │ ├── a_869-2-6.png │ │ ├── a_869-3-0.png │ │ ├── a_869-3-1.png │ │ ├── a_869-3-2.png │ │ ├── a_869-3-3.png │ │ ├── a_869-3-4.png │ │ ├── a_869-3-5.png │ │ ├── a_869-3-6.png │ │ ├── a_869-4-0.png │ │ ├── a_869-4-1.png │ │ ├── a_869-4-2.png │ │ ├── a_869-4-3.png │ │ ├── a_869-4-4.png │ │ ├── a_869-4-5.png │ │ ├── a_869-4-6.png │ │ ├── a_869-5-0.png │ │ ├── a_869-5-1.png │ │ ├── a_869-5-2.png │ │ ├── a_869-5-3.png │ │ ├── a_869-5-4.png │ │ ├── a_869-5-5.png │ │ ├── a_869-5-6.png │ │ ├── a_869-6-0.png │ │ ├── a_869-6-1.png │ │ ├── a_869-6-2.png │ │ ├── a_869-6-3.png │ │ ├── a_869-6-4.png │ │ ├── a_869-6-5.png │ │ ├── a_869-6-6.png │ │ ├── a_869-7-0.png │ │ ├── a_869-7-1.png │ │ ├── a_869-7-2.png │ │ ├── a_869-7-3.png │ │ ├── a_869-7-4.png │ │ ├── a_869-7-5.png │ │ ├── a_869-7-6.png │ │ ├── a_869-8-0.png │ │ ├── a_869-8-1.png │ │ ├── a_869-8-2.png │ │ ├── a_869-8-3.png │ │ ├── a_869-8-4.png │ │ ├── a_869-8-5.png │ │ ├── a_869-8-6.png │ │ ├── a_87.png │ │ ├── a_870-1.png │ │ ├── a_870.png │ │ ├── a_871.png │ │ ├── a_872.png │ │ ├── a_873.png │ │ ├── a_874.png │ │ ├── a_875-1.png │ │ ├── a_875.png │ │ ├── a_876-1.png │ │ ├── a_876.png │ │ ├── a_877-1.png │ │ ├── a_877.png │ │ ├── a_878.png │ │ ├── a_879.png │ │ ├── a_88-1.png │ │ ├── a_88.png │ │ ├── a_880.png │ │ ├── a_881.png │ │ ├── a_882.png │ │ ├── a_883.png │ │ ├── a_884.png │ │ ├── a_885.png │ │ ├── a_886.png │ │ ├── a_887.png │ │ ├── a_888-1.png │ │ ├── a_888.png │ │ ├── a_889-1.png │ │ ├── a_889.png │ │ ├── a_89-1.png │ │ ├── a_89.png │ │ ├── a_890.png │ │ ├── a_891.png │ │ ├── a_892.png │ │ ├── a_893-1.png │ │ ├── a_893.png │ │ ├── a_894.png │ │ ├── a_895.png │ │ ├── a_896.png │ │ ├── a_897.png │ │ ├── a_898-1.png │ │ ├── a_898-2.png │ │ ├── a_898.png │ │ ├── a_899.png │ │ ├── a_9-1.png │ │ ├── a_9.png │ │ ├── a_90.png │ │ ├── a_900.png │ │ ├── a_901-1.png │ │ ├── a_901.png │ │ ├── a_902-1.png │ │ ├── a_902.png │ │ ├── a_903.png │ │ ├── a_904.png │ │ ├── a_905-1.png │ │ ├── a_905.png │ │ ├── a_906.png │ │ ├── a_907.png │ │ ├── a_908.png │ │ ├── a_909.png │ │ ├── a_91.png │ │ ├── a_910.png │ │ ├── a_911.png │ │ ├── a_912.png │ │ ├── a_913.png │ │ ├── a_914.png │ │ ├── a_915.png │ │ ├── a_916-1.png │ │ ├── a_916.png │ │ ├── a_917.png │ │ ├── a_918.png │ │ ├── a_919.png │ │ ├── a_92.png │ │ ├── a_920.png │ │ ├── a_921.png │ │ ├── a_922.png │ │ ├── a_923.png │ │ ├── a_924.png │ │ ├── a_925-1.png │ │ ├── a_925.png │ │ ├── a_926.png │ │ ├── a_927.png │ │ ├── a_928.png │ │ ├── a_929.png │ │ ├── a_93.png │ │ ├── a_930.png │ │ ├── a_931-1.png │ │ ├── a_931-2.png │ │ ├── a_931-3.png │ │ ├── a_931.png │ │ ├── a_932.png │ │ ├── a_933.png │ │ ├── a_934.png │ │ ├── a_935.png │ │ ├── a_936.png │ │ ├── a_937.png │ │ ├── a_938.png │ │ ├── a_939.png │ │ ├── a_94-1.png │ │ ├── a_94.png │ │ ├── a_940.png │ │ ├── a_941.png │ │ ├── a_942.png │ │ ├── a_943.png │ │ ├── a_944.png │ │ ├── a_945.png │ │ ├── a_946.png │ │ ├── a_947.png │ │ ├── a_948.png │ │ ├── a_949.png │ │ ├── a_95.png │ │ ├── a_950.png │ │ ├── a_951.png │ │ ├── a_952.png │ │ ├── a_953.png │ │ ├── a_954.png │ │ ├── a_955.png │ │ ├── a_956.png │ │ ├── a_957.png │ │ ├── a_958.png │ │ ├── a_959.png │ │ ├── a_96.png │ │ ├── a_960.png │ │ ├── a_961.png │ │ ├── a_962.png │ │ ├── a_963.png │ │ ├── a_964-1.png │ │ ├── a_964.png │ │ ├── a_965.png │ │ ├── a_966.png │ │ ├── a_967.png │ │ ├── a_968.png │ │ ├── a_969.png │ │ ├── a_97.png │ │ ├── a_970.png │ │ ├── a_971.png │ │ ├── a_972.png │ │ ├── a_973.png │ │ ├── a_974.png │ │ ├── a_975.png │ │ ├── a_976.png │ │ ├── a_977.png │ │ ├── a_978-1.png │ │ ├── a_978-2.png │ │ ├── a_978.png │ │ ├── a_979.png │ │ ├── a_98.png │ │ ├── a_980.png │ │ ├── a_981.png │ │ ├── a_982.png │ │ ├── a_983.png │ │ ├── a_984.png │ │ ├── a_985.png │ │ ├── a_986.png │ │ ├── a_987.png │ │ ├── a_988.png │ │ ├── a_989.png │ │ ├── a_99.png │ │ ├── a_990.png │ │ ├── a_991.png │ │ ├── a_992.png │ │ ├── a_993.png │ │ ├── a_994.png │ │ ├── a_995.png │ │ ├── a_996.png │ │ ├── a_997.png │ │ ├── a_998.png │ │ ├── a_999-1.png │ │ ├── a_999.png │ │ └── a_egg.png │ │ ├── Big Items │ │ ├── bitem_1.png │ │ ├── bitem_10.png │ │ ├── bitem_100.png │ │ ├── bitem_101.png │ │ ├── bitem_102.png │ │ ├── bitem_103.png │ │ ├── bitem_104.png │ │ ├── bitem_105.png │ │ ├── bitem_106.png │ │ ├── bitem_107.png │ │ ├── bitem_108.png │ │ ├── bitem_1084.png │ │ ├── bitem_1085.png │ │ ├── bitem_1086.png │ │ ├── bitem_1087.png │ │ ├── bitem_1088.png │ │ ├── bitem_1089.png │ │ ├── bitem_109.png │ │ ├── bitem_1090.png │ │ ├── bitem_1091.png │ │ ├── bitem_1092.png │ │ ├── bitem_1093.png │ │ ├── bitem_1094.png │ │ ├── bitem_1095.png │ │ ├── bitem_1096.png │ │ ├── bitem_1097.png │ │ ├── bitem_1098.png │ │ ├── bitem_1099.png │ │ ├── bitem_11.png │ │ ├── bitem_110.png │ │ ├── bitem_1103.png │ │ ├── bitem_1104.png │ │ ├── bitem_1105.png │ │ ├── bitem_1106.png │ │ ├── bitem_1107.png │ │ ├── bitem_1108.png │ │ ├── bitem_1109.png │ │ ├── bitem_111.png │ │ ├── bitem_1110.png │ │ ├── bitem_1111.png │ │ ├── bitem_1112.png │ │ ├── bitem_1113.png │ │ ├── bitem_1114.png │ │ ├── bitem_1115.png │ │ ├── bitem_1116.png │ │ ├── bitem_1117.png │ │ ├── bitem_1118.png │ │ ├── bitem_1119.png │ │ ├── bitem_112.png │ │ ├── bitem_1120.png │ │ ├── bitem_1121.png │ │ ├── bitem_1122.png │ │ ├── bitem_1123.png │ │ ├── bitem_1124.png │ │ ├── bitem_1125.png │ │ ├── bitem_1126.png │ │ ├── bitem_1127.png │ │ ├── bitem_1128.png │ │ ├── bitem_1129.png │ │ ├── bitem_116.png │ │ ├── bitem_117.png │ │ ├── bitem_118.png │ │ ├── bitem_119.png │ │ ├── bitem_12.png │ │ ├── bitem_1231.png │ │ ├── bitem_1232.png │ │ ├── bitem_1233.png │ │ ├── bitem_1234.png │ │ ├── bitem_1235.png │ │ ├── bitem_1236.png │ │ ├── bitem_1237.png │ │ ├── bitem_1238.png │ │ ├── bitem_1239.png │ │ ├── bitem_1240.png │ │ ├── bitem_1241.png │ │ ├── bitem_1242.png │ │ ├── bitem_1243.png │ │ ├── bitem_1244.png │ │ ├── bitem_1245.png │ │ ├── bitem_1246.png │ │ ├── bitem_1247.png │ │ ├── bitem_1248.png │ │ ├── bitem_1249.png │ │ ├── bitem_1250.png │ │ ├── bitem_1251.png │ │ ├── bitem_1252.png │ │ ├── bitem_1253.png │ │ ├── bitem_1254.png │ │ ├── bitem_1256.png │ │ ├── bitem_1257.png │ │ ├── bitem_1258.png │ │ ├── bitem_1259.png │ │ ├── bitem_1260.png │ │ ├── bitem_1261.png │ │ ├── bitem_1262.png │ │ ├── bitem_1263.png │ │ ├── bitem_1264.png │ │ ├── bitem_13.png │ │ ├── bitem_134.png │ │ ├── bitem_135.png │ │ ├── bitem_136.png │ │ ├── bitem_14.png │ │ ├── bitem_149.png │ │ ├── bitem_15.png │ │ ├── bitem_150.png │ │ ├── bitem_151.png │ │ ├── bitem_152.png │ │ ├── bitem_153.png │ │ ├── bitem_154.png │ │ ├── bitem_155.png │ │ ├── bitem_156.png │ │ ├── bitem_157.png │ │ ├── bitem_1579.png │ │ ├── bitem_158.png │ │ ├── bitem_1580.png │ │ ├── bitem_1581.png │ │ ├── bitem_1582.png │ │ ├── bitem_1588.png │ │ ├── bitem_159.png │ │ ├── bitem_1592.png │ │ ├── bitem_16.png │ │ ├── bitem_160.png │ │ ├── bitem_1604.png │ │ ├── bitem_1606.png │ │ ├── bitem_161.png │ │ ├── bitem_162.png │ │ ├── bitem_163.png │ │ ├── bitem_164.png │ │ ├── bitem_165.png │ │ ├── bitem_166.png │ │ ├── bitem_167.png │ │ ├── bitem_168.png │ │ ├── bitem_169.png │ │ ├── bitem_17.png │ │ ├── bitem_170.png │ │ ├── bitem_171.png │ │ ├── bitem_172.png │ │ ├── bitem_173.png │ │ ├── bitem_174.png │ │ ├── bitem_175.png │ │ ├── bitem_176.png │ │ ├── bitem_177.png │ │ ├── bitem_178.png │ │ ├── bitem_179.png │ │ ├── bitem_18.png │ │ ├── bitem_180.png │ │ ├── bitem_181.png │ │ ├── bitem_182.png │ │ ├── bitem_183.png │ │ ├── bitem_184.png │ │ ├── bitem_185.png │ │ ├── bitem_186.png │ │ ├── bitem_187.png │ │ ├── bitem_188.png │ │ ├── bitem_189.png │ │ ├── bitem_19.png │ │ ├── bitem_190.png │ │ ├── bitem_191.png │ │ ├── bitem_192.png │ │ ├── bitem_193.png │ │ ├── bitem_194.png │ │ ├── bitem_195.png │ │ ├── bitem_196.png │ │ ├── bitem_197.png │ │ ├── bitem_198.png │ │ ├── bitem_199.png │ │ ├── bitem_2.png │ │ ├── bitem_20.png │ │ ├── bitem_200.png │ │ ├── bitem_201.png │ │ ├── bitem_202.png │ │ ├── bitem_203.png │ │ ├── bitem_204.png │ │ ├── bitem_205.png │ │ ├── bitem_206.png │ │ ├── bitem_207.png │ │ ├── bitem_208.png │ │ ├── bitem_209.png │ │ ├── bitem_21.png │ │ ├── bitem_210.png │ │ ├── bitem_211.png │ │ ├── bitem_212.png │ │ ├── bitem_213.png │ │ ├── bitem_214.png │ │ ├── bitem_215.png │ │ ├── bitem_216.png │ │ ├── bitem_217.png │ │ ├── bitem_218.png │ │ ├── bitem_219.png │ │ ├── bitem_22.png │ │ ├── bitem_220.png │ │ ├── bitem_221.png │ │ ├── bitem_222.png │ │ ├── bitem_223.png │ │ ├── bitem_224.png │ │ ├── bitem_225.png │ │ ├── bitem_226.png │ │ ├── bitem_227.png │ │ ├── bitem_228.png │ │ ├── bitem_229.png │ │ ├── bitem_23.png │ │ ├── bitem_230.png │ │ ├── bitem_231.png │ │ ├── bitem_232.png │ │ ├── bitem_233.png │ │ ├── bitem_234.png │ │ ├── bitem_235.png │ │ ├── bitem_236.png │ │ ├── bitem_237.png │ │ ├── bitem_238.png │ │ ├── bitem_239.png │ │ ├── bitem_24.png │ │ ├── bitem_240.png │ │ ├── bitem_241.png │ │ ├── bitem_242.png │ │ ├── bitem_243.png │ │ ├── bitem_244.png │ │ ├── bitem_245.png │ │ ├── bitem_246.png │ │ ├── bitem_247.png │ │ ├── bitem_248.png │ │ ├── bitem_249.png │ │ ├── bitem_25.png │ │ ├── bitem_250.png │ │ ├── bitem_251.png │ │ ├── bitem_252.png │ │ ├── bitem_253.png │ │ ├── bitem_254.png │ │ ├── bitem_255.png │ │ ├── bitem_256.png │ │ ├── bitem_257.png │ │ ├── bitem_258.png │ │ ├── bitem_259.png │ │ ├── bitem_26.png │ │ ├── bitem_260.png │ │ ├── bitem_261.png │ │ ├── bitem_262.png │ │ ├── bitem_263.png │ │ ├── bitem_264.png │ │ ├── bitem_265.png │ │ ├── bitem_266.png │ │ ├── bitem_267.png │ │ ├── bitem_268.png │ │ ├── bitem_269.png │ │ ├── bitem_27.png │ │ ├── bitem_270.png │ │ ├── bitem_271.png │ │ ├── bitem_272.png │ │ ├── bitem_273.png │ │ ├── bitem_274.png │ │ ├── bitem_275.png │ │ ├── bitem_276.png │ │ ├── bitem_277.png │ │ ├── bitem_278.png │ │ ├── bitem_279.png │ │ ├── bitem_28.png │ │ ├── bitem_280.png │ │ ├── bitem_281.png │ │ ├── bitem_282.png │ │ ├── bitem_283.png │ │ ├── bitem_284.png │ │ ├── bitem_285.png │ │ ├── bitem_286.png │ │ ├── bitem_287.png │ │ ├── bitem_288.png │ │ ├── bitem_289.png │ │ ├── bitem_29.png │ │ ├── bitem_290.png │ │ ├── bitem_291.png │ │ ├── bitem_292.png │ │ ├── bitem_293.png │ │ ├── bitem_294.png │ │ ├── bitem_295.png │ │ ├── bitem_296.png │ │ ├── bitem_297.png │ │ ├── bitem_298.png │ │ ├── bitem_299.png │ │ ├── bitem_3.png │ │ ├── bitem_30.png │ │ ├── bitem_300.png │ │ ├── bitem_301.png │ │ ├── bitem_302.png │ │ ├── bitem_303.png │ │ ├── bitem_304.png │ │ ├── bitem_305.png │ │ ├── bitem_306.png │ │ ├── bitem_307.png │ │ ├── bitem_308.png │ │ ├── bitem_309.png │ │ ├── bitem_31.png │ │ ├── bitem_310.png │ │ ├── bitem_311.png │ │ ├── bitem_312.png │ │ ├── bitem_313.png │ │ ├── bitem_314.png │ │ ├── bitem_315.png │ │ ├── bitem_316.png │ │ ├── bitem_317.png │ │ ├── bitem_318.png │ │ ├── bitem_319.png │ │ ├── bitem_32.png │ │ ├── bitem_320.png │ │ ├── bitem_321.png │ │ ├── bitem_322.png │ │ ├── bitem_323.png │ │ ├── bitem_324.png │ │ ├── bitem_325.png │ │ ├── bitem_326.png │ │ ├── bitem_327.png │ │ ├── bitem_33.png │ │ ├── bitem_34.png │ │ ├── bitem_35.png │ │ ├── bitem_36.png │ │ ├── bitem_37.png │ │ ├── bitem_38.png │ │ ├── bitem_39.png │ │ ├── bitem_4.png │ │ ├── bitem_40.png │ │ ├── bitem_41.png │ │ ├── bitem_42.png │ │ ├── bitem_43.png │ │ ├── bitem_44.png │ │ ├── bitem_45.png │ │ ├── bitem_46.png │ │ ├── bitem_47.png │ │ ├── bitem_48.png │ │ ├── bitem_485.png │ │ ├── bitem_486.png │ │ ├── bitem_487.png │ │ ├── bitem_488.png │ │ ├── bitem_489.png │ │ ├── bitem_49.png │ │ ├── bitem_490.png │ │ ├── bitem_491.png │ │ ├── bitem_492.png │ │ ├── bitem_493.png │ │ ├── bitem_494.png │ │ ├── bitem_495.png │ │ ├── bitem_496.png │ │ ├── bitem_497.png │ │ ├── bitem_498.png │ │ ├── bitem_499.png │ │ ├── bitem_5.png │ │ ├── bitem_50.png │ │ ├── bitem_500.png │ │ ├── bitem_504.png │ │ ├── bitem_51.png │ │ ├── bitem_52.png │ │ ├── bitem_53.png │ │ ├── bitem_534.png │ │ ├── bitem_535.png │ │ ├── bitem_537.png │ │ ├── bitem_538.png │ │ ├── bitem_539.png │ │ ├── bitem_54.png │ │ ├── bitem_540.png │ │ ├── bitem_541.png │ │ ├── bitem_542.png │ │ ├── bitem_543.png │ │ ├── bitem_544.png │ │ ├── bitem_545.png │ │ ├── bitem_546.png │ │ ├── bitem_547.png │ │ ├── bitem_548.png │ │ ├── bitem_549.png │ │ ├── bitem_55.png │ │ ├── bitem_550.png │ │ ├── bitem_551.png │ │ ├── bitem_552.png │ │ ├── bitem_553.png │ │ ├── bitem_554.png │ │ ├── bitem_555.png │ │ ├── bitem_556.png │ │ ├── bitem_557.png │ │ ├── bitem_558.png │ │ ├── bitem_559.png │ │ ├── bitem_56.png │ │ ├── bitem_560.png │ │ ├── bitem_561.png │ │ ├── bitem_562.png │ │ ├── bitem_563.png │ │ ├── bitem_564.png │ │ ├── bitem_565.png │ │ ├── bitem_566.png │ │ ├── bitem_567.png │ │ ├── bitem_568.png │ │ ├── bitem_569.png │ │ ├── bitem_57.png │ │ ├── bitem_570.png │ │ ├── bitem_571.png │ │ ├── bitem_572.png │ │ ├── bitem_573.png │ │ ├── bitem_576.png │ │ ├── bitem_577.png │ │ ├── bitem_58.png │ │ ├── bitem_580.png │ │ ├── bitem_581.png │ │ ├── bitem_582.png │ │ ├── bitem_583.png │ │ ├── bitem_584.png │ │ ├── bitem_585.png │ │ ├── bitem_586.png │ │ ├── bitem_587.png │ │ ├── bitem_588.png │ │ ├── bitem_589.png │ │ ├── bitem_59.png │ │ ├── bitem_590.png │ │ ├── bitem_591.png │ │ ├── bitem_6.png │ │ ├── bitem_60.png │ │ ├── bitem_61.png │ │ ├── bitem_62.png │ │ ├── bitem_63.png │ │ ├── bitem_639.png │ │ ├── bitem_64.png │ │ ├── bitem_640.png │ │ ├── bitem_644.png │ │ ├── bitem_645.png │ │ ├── bitem_646.png │ │ ├── bitem_647.png │ │ ├── bitem_648.png │ │ ├── bitem_649.png │ │ ├── bitem_65.png │ │ ├── bitem_650.png │ │ ├── bitem_652.png │ │ ├── bitem_653.png │ │ ├── bitem_654.png │ │ ├── bitem_655.png │ │ ├── bitem_656.png │ │ ├── bitem_657.png │ │ ├── bitem_658.png │ │ ├── bitem_659.png │ │ ├── bitem_66.png │ │ ├── bitem_660.png │ │ ├── bitem_661.png │ │ ├── bitem_662.png │ │ ├── bitem_663.png │ │ ├── bitem_664.png │ │ ├── bitem_665.png │ │ ├── bitem_666.png │ │ ├── bitem_667.png │ │ ├── bitem_668.png │ │ ├── bitem_669.png │ │ ├── bitem_67.png │ │ ├── bitem_670.png │ │ ├── bitem_671.png │ │ ├── bitem_672.png │ │ ├── bitem_673.png │ │ ├── bitem_674.png │ │ ├── bitem_675.png │ │ ├── bitem_676.png │ │ ├── bitem_677.png │ │ ├── bitem_678.png │ │ ├── bitem_679.png │ │ ├── bitem_68.png │ │ ├── bitem_680.png │ │ ├── bitem_681.png │ │ ├── bitem_682.png │ │ ├── bitem_683.png │ │ ├── bitem_684.png │ │ ├── bitem_685.png │ │ ├── bitem_686.png │ │ ├── bitem_687.png │ │ ├── bitem_688.png │ │ ├── bitem_69.png │ │ ├── bitem_699.png │ │ ├── bitem_7.png │ │ ├── bitem_70.png │ │ ├── bitem_704.png │ │ ├── bitem_708.png │ │ ├── bitem_709.png │ │ ├── bitem_71.png │ │ ├── bitem_710.png │ │ ├── bitem_711.png │ │ ├── bitem_715.png │ │ ├── bitem_72.png │ │ ├── bitem_73.png │ │ ├── bitem_74.png │ │ ├── bitem_75.png │ │ ├── bitem_752.png │ │ ├── bitem_753.png │ │ ├── bitem_754.png │ │ ├── bitem_755.png │ │ ├── bitem_756.png │ │ ├── bitem_757.png │ │ ├── bitem_758.png │ │ ├── bitem_759.png │ │ ├── bitem_76.png │ │ ├── bitem_760.png │ │ ├── bitem_761.png │ │ ├── bitem_762.png │ │ ├── bitem_763.png │ │ ├── bitem_764.png │ │ ├── bitem_767.png │ │ ├── bitem_768.png │ │ ├── bitem_769.png │ │ ├── bitem_77.png │ │ ├── bitem_770.png │ │ ├── bitem_776.png │ │ ├── bitem_777.png │ │ ├── bitem_778.png │ │ ├── bitem_779.png │ │ ├── bitem_78.png │ │ ├── bitem_780.png │ │ ├── bitem_781.png │ │ ├── bitem_782.png │ │ ├── bitem_783.png │ │ ├── bitem_784.png │ │ ├── bitem_785.png │ │ ├── bitem_786.png │ │ ├── bitem_787.png │ │ ├── bitem_788.png │ │ ├── bitem_789.png │ │ ├── bitem_79.png │ │ ├── bitem_790.png │ │ ├── bitem_791.png │ │ ├── bitem_792.png │ │ ├── bitem_793.png │ │ ├── bitem_794.png │ │ ├── bitem_795.png │ │ ├── bitem_796.png │ │ ├── bitem_798.png │ │ ├── bitem_799.png │ │ ├── bitem_8.png │ │ ├── bitem_80.png │ │ ├── bitem_800.png │ │ ├── bitem_801.png │ │ ├── bitem_802.png │ │ ├── bitem_803.png │ │ ├── bitem_804.png │ │ ├── bitem_805.png │ │ ├── bitem_806.png │ │ ├── bitem_81.png │ │ ├── bitem_82.png │ │ ├── bitem_83.png │ │ ├── bitem_836.png │ │ ├── bitem_84.png │ │ ├── bitem_844.png │ │ ├── bitem_846.png │ │ ├── bitem_849.png │ │ ├── bitem_85.png │ │ ├── bitem_851.png │ │ ├── bitem_852.png │ │ ├── bitem_853.png │ │ ├── bitem_854.png │ │ ├── bitem_855.png │ │ ├── bitem_856.png │ │ ├── bitem_86.png │ │ ├── bitem_87.png │ │ ├── bitem_879.png │ │ ├── bitem_88.png │ │ ├── bitem_880.png │ │ ├── bitem_881.png │ │ ├── bitem_882.png │ │ ├── bitem_883.png │ │ ├── bitem_884.png │ │ ├── bitem_89.png │ │ ├── bitem_9.png │ │ ├── bitem_90.png │ │ ├── bitem_903.png │ │ ├── bitem_904.png │ │ ├── bitem_905.png │ │ ├── bitem_906.png │ │ ├── bitem_907.png │ │ ├── bitem_908.png │ │ ├── bitem_909.png │ │ ├── bitem_91.png │ │ ├── bitem_910.png │ │ ├── bitem_911.png │ │ ├── bitem_912.png │ │ ├── bitem_913.png │ │ ├── bitem_914.png │ │ ├── bitem_915.png │ │ ├── bitem_916.png │ │ ├── bitem_917.png │ │ ├── bitem_918.png │ │ ├── bitem_919.png │ │ ├── bitem_92.png │ │ ├── bitem_920.png │ │ ├── bitem_921.png │ │ ├── bitem_922.png │ │ ├── bitem_923.png │ │ ├── bitem_924.png │ │ ├── bitem_925.png │ │ ├── bitem_926.png │ │ ├── bitem_93.png │ │ ├── bitem_94.png │ │ ├── bitem_949.png │ │ ├── bitem_95.png │ │ ├── bitem_950.png │ │ ├── bitem_951.png │ │ ├── bitem_952.png │ │ ├── bitem_953.png │ │ ├── bitem_954.png │ │ ├── bitem_955.png │ │ ├── bitem_956.png │ │ ├── bitem_957.png │ │ ├── bitem_958.png │ │ ├── bitem_959.png │ │ ├── bitem_96.png │ │ ├── bitem_97.png │ │ ├── bitem_98.png │ │ ├── bitem_99.png │ │ ├── bitem_tm.png │ │ ├── bitem_tr.png │ │ └── bitem_unk.png │ │ ├── Big Pokemon Sprites │ │ ├── b_0.png │ │ ├── b_1.png │ │ ├── b_10.png │ │ ├── b_100-1.png │ │ ├── b_100.png │ │ ├── b_101-1.png │ │ ├── b_101-2.png │ │ ├── b_101.png │ │ ├── b_102.png │ │ ├── b_103-1.png │ │ ├── b_103.png │ │ ├── b_104.png │ │ ├── b_105-1.png │ │ ├── b_105.png │ │ ├── b_106.png │ │ ├── b_107.png │ │ ├── b_108.png │ │ ├── b_109.png │ │ ├── b_11.png │ │ ├── b_110-1.png │ │ ├── b_110.png │ │ ├── b_111.png │ │ ├── b_112.png │ │ ├── b_113.png │ │ ├── b_114.png │ │ ├── b_115-1.png │ │ ├── b_115.png │ │ ├── b_116.png │ │ ├── b_117.png │ │ ├── b_118.png │ │ ├── b_119.png │ │ ├── b_12-gmax.png │ │ ├── b_12.png │ │ ├── b_120.png │ │ ├── b_121.png │ │ ├── b_122-1.png │ │ ├── b_122.png │ │ ├── b_123.png │ │ ├── b_124.png │ │ ├── b_125.png │ │ ├── b_126.png │ │ ├── b_127-1.png │ │ ├── b_127.png │ │ ├── b_128.png │ │ ├── b_129.png │ │ ├── b_13.png │ │ ├── b_130-1.png │ │ ├── b_130.png │ │ ├── b_131-gmax.png │ │ ├── b_131.png │ │ ├── b_132.png │ │ ├── b_133-1p.png │ │ ├── b_133-gmax.png │ │ ├── b_133.png │ │ ├── b_134.png │ │ ├── b_135.png │ │ ├── b_136.png │ │ ├── b_137.png │ │ ├── b_138.png │ │ ├── b_139.png │ │ ├── b_14.png │ │ ├── b_140.png │ │ ├── b_141.png │ │ ├── b_142-1.png │ │ ├── b_142.png │ │ ├── b_143-gmax.png │ │ ├── b_143.png │ │ ├── b_144-1.png │ │ ├── b_144.png │ │ ├── b_145-1.png │ │ ├── b_145.png │ │ ├── b_146-1.png │ │ ├── b_146.png │ │ ├── b_147.png │ │ ├── b_148.png │ │ ├── b_149.png │ │ ├── b_15-1.png │ │ ├── b_15.png │ │ ├── b_150-1.png │ │ ├── b_150-2.png │ │ ├── b_150.png │ │ ├── b_151.png │ │ ├── b_152.png │ │ ├── b_153.png │ │ ├── b_154.png │ │ ├── b_155.png │ │ ├── b_156.png │ │ ├── b_157-1.png │ │ ├── b_157.png │ │ ├── b_158.png │ │ ├── b_159.png │ │ ├── b_16.png │ │ ├── b_160.png │ │ ├── b_161.png │ │ ├── b_162.png │ │ ├── b_163.png │ │ ├── b_164.png │ │ ├── b_165.png │ │ ├── b_166.png │ │ ├── b_167.png │ │ ├── b_168.png │ │ ├── b_169.png │ │ ├── b_17.png │ │ ├── b_170.png │ │ ├── b_171.png │ │ ├── b_172-1.png │ │ ├── b_172.png │ │ ├── b_173.png │ │ ├── b_174.png │ │ ├── b_175.png │ │ ├── b_176.png │ │ ├── b_177.png │ │ ├── b_178.png │ │ ├── b_179.png │ │ ├── b_18-1.png │ │ ├── b_18.png │ │ ├── b_180.png │ │ ├── b_181-1.png │ │ ├── b_181.png │ │ ├── b_182.png │ │ ├── b_183.png │ │ ├── b_184.png │ │ ├── b_185.png │ │ ├── b_186.png │ │ ├── b_187.png │ │ ├── b_188.png │ │ ├── b_189.png │ │ ├── b_19-1.png │ │ ├── b_19.png │ │ ├── b_190.png │ │ ├── b_191.png │ │ ├── b_192.png │ │ ├── b_193.png │ │ ├── b_194.png │ │ ├── b_195.png │ │ ├── b_196.png │ │ ├── b_197.png │ │ ├── b_198.png │ │ ├── b_199-1.png │ │ ├── b_199.png │ │ ├── b_2.png │ │ ├── b_20-1.png │ │ ├── b_20.png │ │ ├── b_200.png │ │ ├── b_201-1.png │ │ ├── b_201-10.png │ │ ├── b_201-11.png │ │ ├── b_201-12.png │ │ ├── b_201-13.png │ │ ├── b_201-14.png │ │ ├── b_201-15.png │ │ ├── b_201-16.png │ │ ├── b_201-17.png │ │ ├── b_201-18.png │ │ ├── b_201-19.png │ │ ├── b_201-2.png │ │ ├── b_201-20.png │ │ ├── b_201-21.png │ │ ├── b_201-22.png │ │ ├── b_201-23.png │ │ ├── b_201-24.png │ │ ├── b_201-25.png │ │ ├── b_201-26.png │ │ ├── b_201-27.png │ │ ├── b_201-3.png │ │ ├── b_201-4.png │ │ ├── b_201-5.png │ │ ├── b_201-6.png │ │ ├── b_201-7.png │ │ ├── b_201-8.png │ │ ├── b_201-9.png │ │ ├── b_201.png │ │ ├── b_202.png │ │ ├── b_203.png │ │ ├── b_204.png │ │ ├── b_205.png │ │ ├── b_206.png │ │ ├── b_207.png │ │ ├── b_208-1.png │ │ ├── b_208.png │ │ ├── b_209.png │ │ ├── b_21.png │ │ ├── b_210.png │ │ ├── b_211-1.png │ │ ├── b_211.png │ │ ├── b_212-1.png │ │ ├── b_212.png │ │ ├── b_213.png │ │ ├── b_214-1.png │ │ ├── b_214.png │ │ ├── b_215-1.png │ │ ├── b_215.png │ │ ├── b_216.png │ │ ├── b_217.png │ │ ├── b_218.png │ │ ├── b_219.png │ │ ├── b_22.png │ │ ├── b_220.png │ │ ├── b_221.png │ │ ├── b_222-1.png │ │ ├── b_222.png │ │ ├── b_223.png │ │ ├── b_224.png │ │ ├── b_225.png │ │ ├── b_226.png │ │ ├── b_227.png │ │ ├── b_228.png │ │ ├── b_229-1.png │ │ ├── b_229.png │ │ ├── b_23.png │ │ ├── b_230.png │ │ ├── b_231.png │ │ ├── b_232.png │ │ ├── b_233.png │ │ ├── b_234.png │ │ ├── b_235.png │ │ ├── b_236.png │ │ ├── b_237.png │ │ ├── b_238.png │ │ ├── b_239.png │ │ ├── b_24.png │ │ ├── b_240.png │ │ ├── b_241.png │ │ ├── b_242.png │ │ ├── b_243.png │ │ ├── b_244.png │ │ ├── b_245.png │ │ ├── b_246.png │ │ ├── b_247.png │ │ ├── b_248-1.png │ │ ├── b_248.png │ │ ├── b_249.png │ │ ├── b_249x.png │ │ ├── b_25-1.png │ │ ├── b_25-1c.png │ │ ├── b_25-2.png │ │ ├── b_25-2c.png │ │ ├── b_25-3.png │ │ ├── b_25-3c.png │ │ ├── b_25-4.png │ │ ├── b_25-4c.png │ │ ├── b_25-5.png │ │ ├── b_25-5c.png │ │ ├── b_25-6.png │ │ ├── b_25-6c.png │ │ ├── b_25-7.png │ │ ├── b_25-8p.png │ │ ├── b_25-9.png │ │ ├── b_25-gmax.png │ │ ├── b_25.png │ │ ├── b_250.png │ │ ├── b_251.png │ │ ├── b_252.png │ │ ├── b_253.png │ │ ├── b_254-1.png │ │ ├── b_254.png │ │ ├── b_255.png │ │ ├── b_256.png │ │ ├── b_257-1.png │ │ ├── b_257.png │ │ ├── b_258.png │ │ ├── b_259.png │ │ ├── b_26-1.png │ │ ├── b_26.png │ │ ├── b_260-1.png │ │ ├── b_260.png │ │ ├── b_261.png │ │ ├── b_262.png │ │ ├── b_263-1.png │ │ ├── b_263.png │ │ ├── b_264-1.png │ │ ├── b_264.png │ │ ├── b_265.png │ │ ├── b_266.png │ │ ├── b_267.png │ │ ├── b_268.png │ │ ├── b_269.png │ │ ├── b_27-1.png │ │ ├── b_27.png │ │ ├── b_270.png │ │ ├── b_271.png │ │ ├── b_272.png │ │ ├── b_273.png │ │ ├── b_274.png │ │ ├── b_275.png │ │ ├── b_276.png │ │ ├── b_277.png │ │ ├── b_278.png │ │ ├── b_279.png │ │ ├── b_28-1.png │ │ ├── b_28.png │ │ ├── b_280.png │ │ ├── b_281.png │ │ ├── b_282-1.png │ │ ├── b_282.png │ │ ├── b_283.png │ │ ├── b_284.png │ │ ├── b_285.png │ │ ├── b_286.png │ │ ├── b_287.png │ │ ├── b_288.png │ │ ├── b_289.png │ │ ├── b_29.png │ │ ├── b_290.png │ │ ├── b_291.png │ │ ├── b_292.png │ │ ├── b_293.png │ │ ├── b_294.png │ │ ├── b_295.png │ │ ├── b_296.png │ │ ├── b_297.png │ │ ├── b_298.png │ │ ├── b_299.png │ │ ├── b_3-1.png │ │ ├── b_3-gmax.png │ │ ├── b_3.png │ │ ├── b_30.png │ │ ├── b_300.png │ │ ├── b_301.png │ │ ├── b_302-1.png │ │ ├── b_302.png │ │ ├── b_303-1.png │ │ ├── b_303.png │ │ ├── b_304.png │ │ ├── b_305.png │ │ ├── b_306-1.png │ │ ├── b_306.png │ │ ├── b_307.png │ │ ├── b_308-1.png │ │ ├── b_308.png │ │ ├── b_309.png │ │ ├── b_31.png │ │ ├── b_310-1.png │ │ ├── b_310.png │ │ ├── b_311.png │ │ ├── b_312.png │ │ ├── b_313.png │ │ ├── b_314.png │ │ ├── b_315.png │ │ ├── b_316.png │ │ ├── b_317.png │ │ ├── b_318.png │ │ ├── b_319-1.png │ │ ├── b_319.png │ │ ├── b_32.png │ │ ├── b_320.png │ │ ├── b_321.png │ │ ├── b_322.png │ │ ├── b_323-1.png │ │ ├── b_323.png │ │ ├── b_324.png │ │ ├── b_325.png │ │ ├── b_326.png │ │ ├── b_327.png │ │ ├── b_328.png │ │ ├── b_329.png │ │ ├── b_33.png │ │ ├── b_330.png │ │ ├── b_331.png │ │ ├── b_332.png │ │ ├── b_333.png │ │ ├── b_334-1.png │ │ ├── b_334.png │ │ ├── b_335.png │ │ ├── b_336.png │ │ ├── b_337.png │ │ ├── b_338.png │ │ ├── b_339.png │ │ ├── b_34.png │ │ ├── b_340.png │ │ ├── b_341.png │ │ ├── b_342.png │ │ ├── b_343.png │ │ ├── b_344.png │ │ ├── b_345.png │ │ ├── b_346.png │ │ ├── b_347.png │ │ ├── b_348.png │ │ ├── b_349.png │ │ ├── b_35.png │ │ ├── b_350.png │ │ ├── b_351-1.png │ │ ├── b_351-2.png │ │ ├── b_351-3.png │ │ ├── b_351.png │ │ ├── b_352.png │ │ ├── b_353.png │ │ ├── b_354-1.png │ │ ├── b_354.png │ │ ├── b_355.png │ │ ├── b_356.png │ │ ├── b_357.png │ │ ├── b_358.png │ │ ├── b_359-1.png │ │ ├── b_359.png │ │ ├── b_36.png │ │ ├── b_360.png │ │ ├── b_361.png │ │ ├── b_362-1.png │ │ ├── b_362.png │ │ ├── b_363.png │ │ ├── b_364.png │ │ ├── b_365.png │ │ ├── b_366.png │ │ ├── b_367.png │ │ ├── b_368.png │ │ ├── b_369.png │ │ ├── b_37-1.png │ │ ├── b_37.png │ │ ├── b_370.png │ │ ├── b_371.png │ │ ├── b_372.png │ │ ├── b_373-1.png │ │ ├── b_373.png │ │ ├── b_374.png │ │ ├── b_375.png │ │ ├── b_376-1.png │ │ ├── b_376.png │ │ ├── b_377.png │ │ ├── b_378.png │ │ ├── b_379.png │ │ ├── b_38-1.png │ │ ├── b_38.png │ │ ├── b_380-1.png │ │ ├── b_380.png │ │ ├── b_381-1.png │ │ ├── b_381.png │ │ ├── b_382-1.png │ │ ├── b_382.png │ │ ├── b_383-1.png │ │ ├── b_383.png │ │ ├── b_384-1.png │ │ ├── b_384.png │ │ ├── b_385.png │ │ ├── b_386-1.png │ │ ├── b_386-2.png │ │ ├── b_386-3.png │ │ ├── b_386.png │ │ ├── b_387.png │ │ ├── b_388.png │ │ ├── b_389.png │ │ ├── b_39.png │ │ ├── b_390.png │ │ ├── b_391.png │ │ ├── b_392.png │ │ ├── b_393.png │ │ ├── b_394.png │ │ ├── b_395.png │ │ ├── b_396.png │ │ ├── b_397.png │ │ ├── b_398.png │ │ ├── b_399.png │ │ ├── b_4.png │ │ ├── b_40.png │ │ ├── b_400.png │ │ ├── b_401.png │ │ ├── b_402.png │ │ ├── b_403.png │ │ ├── b_404.png │ │ ├── b_405.png │ │ ├── b_406.png │ │ ├── b_407.png │ │ ├── b_408.png │ │ ├── b_409.png │ │ ├── b_41.png │ │ ├── b_410.png │ │ ├── b_411.png │ │ ├── b_412-1.png │ │ ├── b_412-2.png │ │ ├── b_412.png │ │ ├── b_413-1.png │ │ ├── b_413-2.png │ │ ├── b_413.png │ │ ├── b_414.png │ │ ├── b_415.png │ │ ├── b_416.png │ │ ├── b_417.png │ │ ├── b_418.png │ │ ├── b_419.png │ │ ├── b_42.png │ │ ├── b_420.png │ │ ├── b_421-1.png │ │ ├── b_421.png │ │ ├── b_422-1.png │ │ ├── b_422.png │ │ ├── b_423-1.png │ │ ├── b_423.png │ │ ├── b_424.png │ │ ├── b_425.png │ │ ├── b_426.png │ │ ├── b_427.png │ │ ├── b_428-1.png │ │ ├── b_428.png │ │ ├── b_429.png │ │ ├── b_43.png │ │ ├── b_430.png │ │ ├── b_431.png │ │ ├── b_432.png │ │ ├── b_433.png │ │ ├── b_434.png │ │ ├── b_435.png │ │ ├── b_436.png │ │ ├── b_437.png │ │ ├── b_438.png │ │ ├── b_439.png │ │ ├── b_44.png │ │ ├── b_440.png │ │ ├── b_441.png │ │ ├── b_442.png │ │ ├── b_443.png │ │ ├── b_444.png │ │ ├── b_445-1.png │ │ ├── b_445.png │ │ ├── b_446.png │ │ ├── b_447.png │ │ ├── b_448-1.png │ │ ├── b_448.png │ │ ├── b_449.png │ │ ├── b_449f.png │ │ ├── b_45.png │ │ ├── b_450.png │ │ ├── b_450f.png │ │ ├── b_451.png │ │ ├── b_452.png │ │ ├── b_453.png │ │ ├── b_454.png │ │ ├── b_455.png │ │ ├── b_456.png │ │ ├── b_457.png │ │ ├── b_458.png │ │ ├── b_459.png │ │ ├── b_46.png │ │ ├── b_460-1.png │ │ ├── b_460.png │ │ ├── b_461.png │ │ ├── b_462.png │ │ ├── b_463.png │ │ ├── b_464.png │ │ ├── b_465.png │ │ ├── b_466.png │ │ ├── b_467.png │ │ ├── b_468.png │ │ ├── b_469.png │ │ ├── b_47.png │ │ ├── b_470.png │ │ ├── b_471.png │ │ ├── b_472.png │ │ ├── b_473.png │ │ ├── b_474.png │ │ ├── b_475-1.png │ │ ├── b_475.png │ │ ├── b_476.png │ │ ├── b_477.png │ │ ├── b_478.png │ │ ├── b_479-1.png │ │ ├── b_479-2.png │ │ ├── b_479-3.png │ │ ├── b_479-4.png │ │ ├── b_479-5.png │ │ ├── b_479.png │ │ ├── b_48.png │ │ ├── b_480.png │ │ ├── b_481.png │ │ ├── b_482.png │ │ ├── b_483-1.png │ │ ├── b_483.png │ │ ├── b_484-1.png │ │ ├── b_484.png │ │ ├── b_485.png │ │ ├── b_486.png │ │ ├── b_487-1.png │ │ ├── b_487.png │ │ ├── b_488.png │ │ ├── b_489.png │ │ ├── b_49.png │ │ ├── b_490-e.png │ │ ├── b_490.png │ │ ├── b_491.png │ │ ├── b_492-1.png │ │ ├── b_492.png │ │ ├── b_493-1.png │ │ ├── b_493-10.png │ │ ├── b_493-11.png │ │ ├── b_493-12.png │ │ ├── b_493-13.png │ │ ├── b_493-14.png │ │ ├── b_493-15.png │ │ ├── b_493-16.png │ │ ├── b_493-17.png │ │ ├── b_493-18.png │ │ ├── b_493-2.png │ │ ├── b_493-3.png │ │ ├── b_493-4.png │ │ ├── b_493-5.png │ │ ├── b_493-6.png │ │ ├── b_493-7.png │ │ ├── b_493-8.png │ │ ├── b_493-9.png │ │ ├── b_493.png │ │ ├── b_494.png │ │ ├── b_495.png │ │ ├── b_496.png │ │ ├── b_497.png │ │ ├── b_498.png │ │ ├── b_499.png │ │ ├── b_5.png │ │ ├── b_50-1.png │ │ ├── b_50.png │ │ ├── b_500.png │ │ ├── b_501.png │ │ ├── b_502.png │ │ ├── b_503-1.png │ │ ├── b_503.png │ │ ├── b_504.png │ │ ├── b_505.png │ │ ├── b_506.png │ │ ├── b_507.png │ │ ├── b_508.png │ │ ├── b_509.png │ │ ├── b_51-1.png │ │ ├── b_51.png │ │ ├── b_510.png │ │ ├── b_511.png │ │ ├── b_512.png │ │ ├── b_513.png │ │ ├── b_514.png │ │ ├── b_515.png │ │ ├── b_516.png │ │ ├── b_517.png │ │ ├── b_518.png │ │ ├── b_519.png │ │ ├── b_52-1.png │ │ ├── b_52-2.png │ │ ├── b_52-gmax.png │ │ ├── b_52.png │ │ ├── b_520.png │ │ ├── b_521.png │ │ ├── b_521f.png │ │ ├── b_522.png │ │ ├── b_523.png │ │ ├── b_524.png │ │ ├── b_525.png │ │ ├── b_526.png │ │ ├── b_527.png │ │ ├── b_528.png │ │ ├── b_529.png │ │ ├── b_53-1.png │ │ ├── b_53.png │ │ ├── b_530.png │ │ ├── b_531-1.png │ │ ├── b_531.png │ │ ├── b_532.png │ │ ├── b_533.png │ │ ├── b_534.png │ │ ├── b_535.png │ │ ├── b_536.png │ │ ├── b_537.png │ │ ├── b_538.png │ │ ├── b_539.png │ │ ├── b_54.png │ │ ├── b_540.png │ │ ├── b_541.png │ │ ├── b_542.png │ │ ├── b_543.png │ │ ├── b_544.png │ │ ├── b_545.png │ │ ├── b_546.png │ │ ├── b_547.png │ │ ├── b_548.png │ │ ├── b_549-1.png │ │ ├── b_549-2.png │ │ ├── b_549.png │ │ ├── b_55.png │ │ ├── b_550-1.png │ │ ├── b_550-2.png │ │ ├── b_550.png │ │ ├── b_551.png │ │ ├── b_552.png │ │ ├── b_553.png │ │ ├── b_554-1.png │ │ ├── b_554.png │ │ ├── b_555-1.png │ │ ├── b_555-2.png │ │ ├── b_555-3.png │ │ ├── b_555.png │ │ ├── b_556.png │ │ ├── b_557.png │ │ ├── b_558.png │ │ ├── b_559.png │ │ ├── b_56.png │ │ ├── b_560.png │ │ ├── b_561.png │ │ ├── b_562-1.png │ │ ├── b_562.png │ │ ├── b_563.png │ │ ├── b_564.png │ │ ├── b_565.png │ │ ├── b_566.png │ │ ├── b_567.png │ │ ├── b_568.png │ │ ├── b_569-gmax.png │ │ ├── b_569.png │ │ ├── b_57.png │ │ ├── b_570-1.png │ │ ├── b_570.png │ │ ├── b_571-1.png │ │ ├── b_571.png │ │ ├── b_572.png │ │ ├── b_573.png │ │ ├── b_574.png │ │ ├── b_575.png │ │ ├── b_576.png │ │ ├── b_577.png │ │ ├── b_578.png │ │ ├── b_579.png │ │ ├── b_58-1.png │ │ ├── b_58.png │ │ ├── b_580.png │ │ ├── b_581.png │ │ ├── b_582.png │ │ ├── b_583.png │ │ ├── b_584.png │ │ ├── b_585-1.png │ │ ├── b_585-2.png │ │ ├── b_585-3.png │ │ ├── b_585.png │ │ ├── b_586-1.png │ │ ├── b_586-2.png │ │ ├── b_586-3.png │ │ ├── b_586.png │ │ ├── b_587.png │ │ ├── b_588.png │ │ ├── b_589.png │ │ ├── b_59-1.png │ │ ├── b_59-2.png │ │ ├── b_59.png │ │ ├── b_590.png │ │ ├── b_591.png │ │ ├── b_592.png │ │ ├── b_592f.png │ │ ├── b_593.png │ │ ├── b_593f.png │ │ ├── b_594.png │ │ ├── b_595.png │ │ ├── b_596.png │ │ ├── b_597.png │ │ ├── b_598.png │ │ ├── b_599.png │ │ ├── b_6-1.png │ │ ├── b_6-2.png │ │ ├── b_6-gmax.png │ │ ├── b_6.png │ │ ├── b_60.png │ │ ├── b_600.png │ │ ├── b_601.png │ │ ├── b_602.png │ │ ├── b_603.png │ │ ├── b_604.png │ │ ├── b_605.png │ │ ├── b_606.png │ │ ├── b_607.png │ │ ├── b_608.png │ │ ├── b_609.png │ │ ├── b_61.png │ │ ├── b_610.png │ │ ├── b_611.png │ │ ├── b_612.png │ │ ├── b_613.png │ │ ├── b_614.png │ │ ├── b_615.png │ │ ├── b_616.png │ │ ├── b_617.png │ │ ├── b_618-1.png │ │ ├── b_618.png │ │ ├── b_619.png │ │ ├── b_62.png │ │ ├── b_620.png │ │ ├── b_621.png │ │ ├── b_622.png │ │ ├── b_623.png │ │ ├── b_624.png │ │ ├── b_625.png │ │ ├── b_626.png │ │ ├── b_627.png │ │ ├── b_628-1.png │ │ ├── b_628.png │ │ ├── b_629.png │ │ ├── b_63.png │ │ ├── b_630.png │ │ ├── b_631.png │ │ ├── b_632.png │ │ ├── b_633.png │ │ ├── b_634.png │ │ ├── b_635.png │ │ ├── b_636.png │ │ ├── b_637.png │ │ ├── b_638.png │ │ ├── b_639.png │ │ ├── b_64.png │ │ ├── b_640.png │ │ ├── b_641-1.png │ │ ├── b_641.png │ │ ├── b_642-1.png │ │ ├── b_642.png │ │ ├── b_643.png │ │ ├── b_644.png │ │ ├── b_645-1.png │ │ ├── b_645.png │ │ ├── b_646-1.png │ │ ├── b_646-2.png │ │ ├── b_646.png │ │ ├── b_647-1.png │ │ ├── b_647.png │ │ ├── b_648-1.png │ │ ├── b_648.png │ │ ├── b_649-1.png │ │ ├── b_649-2.png │ │ ├── b_649-3.png │ │ ├── b_649-4.png │ │ ├── b_649.png │ │ ├── b_65-1.png │ │ ├── b_65.png │ │ ├── b_650.png │ │ ├── b_651.png │ │ ├── b_652.png │ │ ├── b_653.png │ │ ├── b_654.png │ │ ├── b_655.png │ │ ├── b_656.png │ │ ├── b_657.png │ │ ├── b_658-1.png │ │ ├── b_658-2.png │ │ ├── b_658.png │ │ ├── b_659.png │ │ ├── b_66.png │ │ ├── b_660.png │ │ ├── b_661.png │ │ ├── b_662.png │ │ ├── b_663.png │ │ ├── b_664.png │ │ ├── b_665.png │ │ ├── b_666-1.png │ │ ├── b_666-10.png │ │ ├── b_666-11.png │ │ ├── b_666-12.png │ │ ├── b_666-13.png │ │ ├── b_666-14.png │ │ ├── b_666-15.png │ │ ├── b_666-16.png │ │ ├── b_666-17.png │ │ ├── b_666-18.png │ │ ├── b_666-19.png │ │ ├── b_666-2.png │ │ ├── b_666-3.png │ │ ├── b_666-4.png │ │ ├── b_666-5.png │ │ ├── b_666-6.png │ │ ├── b_666-7.png │ │ ├── b_666-8.png │ │ ├── b_666-9.png │ │ ├── b_666.png │ │ ├── b_667.png │ │ ├── b_668.png │ │ ├── b_668f.png │ │ ├── b_669-1.png │ │ ├── b_669-2.png │ │ ├── b_669-3.png │ │ ├── b_669-4.png │ │ ├── b_669.png │ │ ├── b_67.png │ │ ├── b_670-1.png │ │ ├── b_670-2.png │ │ ├── b_670-3.png │ │ ├── b_670-4.png │ │ ├── b_670-5.png │ │ ├── b_670.png │ │ ├── b_671-1.png │ │ ├── b_671-2.png │ │ ├── b_671-3.png │ │ ├── b_671-4.png │ │ ├── b_671.png │ │ ├── b_672.png │ │ ├── b_673.png │ │ ├── b_674.png │ │ ├── b_675.png │ │ ├── b_676-1.png │ │ ├── b_676-2.png │ │ ├── b_676-3.png │ │ ├── b_676-4.png │ │ ├── b_676-5.png │ │ ├── b_676-6.png │ │ ├── b_676-7.png │ │ ├── b_676-8.png │ │ ├── b_676-9.png │ │ ├── b_676.png │ │ ├── b_677.png │ │ ├── b_678-1.png │ │ ├── b_678.png │ │ ├── b_679.png │ │ ├── b_68-gmax.png │ │ ├── b_68.png │ │ ├── b_680.png │ │ ├── b_681-1.png │ │ ├── b_681.png │ │ ├── b_682.png │ │ ├── b_683.png │ │ ├── b_684.png │ │ ├── b_685.png │ │ ├── b_686.png │ │ ├── b_687.png │ │ ├── b_688.png │ │ ├── b_689.png │ │ ├── b_69.png │ │ ├── b_690.png │ │ ├── b_691.png │ │ ├── b_692.png │ │ ├── b_693.png │ │ ├── b_694.png │ │ ├── b_695.png │ │ ├── b_696.png │ │ ├── b_697.png │ │ ├── b_698.png │ │ ├── b_699.png │ │ ├── b_7.png │ │ ├── b_70.png │ │ ├── b_700.png │ │ ├── b_701.png │ │ ├── b_702.png │ │ ├── b_703.png │ │ ├── b_704.png │ │ ├── b_705-1.png │ │ ├── b_705.png │ │ ├── b_706-1.png │ │ ├── b_706.png │ │ ├── b_707.png │ │ ├── b_708.png │ │ ├── b_709.png │ │ ├── b_71.png │ │ ├── b_710-1.png │ │ ├── b_710-2.png │ │ ├── b_710-3.png │ │ ├── b_710.png │ │ ├── b_711-1.png │ │ ├── b_711-2.png │ │ ├── b_711-3.png │ │ ├── b_711.png │ │ ├── b_712.png │ │ ├── b_713-1.png │ │ ├── b_713-2.png │ │ ├── b_713.png │ │ ├── b_714.png │ │ ├── b_715.png │ │ ├── b_716-1.png │ │ ├── b_716.png │ │ ├── b_717.png │ │ ├── b_718-1.png │ │ ├── b_718-2.png │ │ ├── b_718-3.png │ │ ├── b_718-4.png │ │ ├── b_718.png │ │ ├── b_719-1.png │ │ ├── b_719.png │ │ ├── b_72.png │ │ ├── b_720-1.png │ │ ├── b_720.png │ │ ├── b_721.png │ │ ├── b_722.png │ │ ├── b_723.png │ │ ├── b_724-1.png │ │ ├── b_724.png │ │ ├── b_725.png │ │ ├── b_726.png │ │ ├── b_727.png │ │ ├── b_728.png │ │ ├── b_729.png │ │ ├── b_73.png │ │ ├── b_730.png │ │ ├── b_731.png │ │ ├── b_732.png │ │ ├── b_733.png │ │ ├── b_734.png │ │ ├── b_735.png │ │ ├── b_736.png │ │ ├── b_737.png │ │ ├── b_738.png │ │ ├── b_739.png │ │ ├── b_74-1.png │ │ ├── b_74.png │ │ ├── b_740.png │ │ ├── b_741-1.png │ │ ├── b_741-2.png │ │ ├── b_741-3.png │ │ ├── b_741.png │ │ ├── b_742.png │ │ ├── b_743.png │ │ ├── b_744.png │ │ ├── b_745-1.png │ │ ├── b_745-2.png │ │ ├── b_745.png │ │ ├── b_746-1.png │ │ ├── b_746.png │ │ ├── b_747.png │ │ ├── b_748.png │ │ ├── b_749.png │ │ ├── b_75-1.png │ │ ├── b_75.png │ │ ├── b_750.png │ │ ├── b_751.png │ │ ├── b_752.png │ │ ├── b_753.png │ │ ├── b_754.png │ │ ├── b_755.png │ │ ├── b_756.png │ │ ├── b_757.png │ │ ├── b_758.png │ │ ├── b_759.png │ │ ├── b_76-1.png │ │ ├── b_76.png │ │ ├── b_760.png │ │ ├── b_761.png │ │ ├── b_762.png │ │ ├── b_763.png │ │ ├── b_764.png │ │ ├── b_765.png │ │ ├── b_766.png │ │ ├── b_767.png │ │ ├── b_768.png │ │ ├── b_769.png │ │ ├── b_77-1.png │ │ ├── b_77.png │ │ ├── b_770.png │ │ ├── b_771.png │ │ ├── b_772.png │ │ ├── b_773-1.png │ │ ├── b_773-10.png │ │ ├── b_773-11.png │ │ ├── b_773-12.png │ │ ├── b_773-13.png │ │ ├── b_773-14.png │ │ ├── b_773-15.png │ │ ├── b_773-16.png │ │ ├── b_773-17.png │ │ ├── b_773-2.png │ │ ├── b_773-3.png │ │ ├── b_773-4.png │ │ ├── b_773-5.png │ │ ├── b_773-6.png │ │ ├── b_773-7.png │ │ ├── b_773-8.png │ │ ├── b_773-9.png │ │ ├── b_773.png │ │ ├── b_774-1.png │ │ ├── b_774-10.png │ │ ├── b_774-11.png │ │ ├── b_774-12.png │ │ ├── b_774-13.png │ │ ├── b_774-2.png │ │ ├── b_774-3.png │ │ ├── b_774-4.png │ │ ├── b_774-5.png │ │ ├── b_774-6.png │ │ ├── b_774-7.png │ │ ├── b_774-8.png │ │ ├── b_774-9.png │ │ ├── b_774.png │ │ ├── b_775.png │ │ ├── b_776.png │ │ ├── b_777.png │ │ ├── b_778.png │ │ ├── b_779.png │ │ ├── b_78-1.png │ │ ├── b_78.png │ │ ├── b_780.png │ │ ├── b_781.png │ │ ├── b_782.png │ │ ├── b_783.png │ │ ├── b_784.png │ │ ├── b_785.png │ │ ├── b_786.png │ │ ├── b_787.png │ │ ├── b_788.png │ │ ├── b_789.png │ │ ├── b_79-1.png │ │ ├── b_79.png │ │ ├── b_790.png │ │ ├── b_791.png │ │ ├── b_792.png │ │ ├── b_793.png │ │ ├── b_794.png │ │ ├── b_795.png │ │ ├── b_796.png │ │ ├── b_797.png │ │ ├── b_798.png │ │ ├── b_799.png │ │ ├── b_8.png │ │ ├── b_80-1.png │ │ ├── b_80-2.png │ │ ├── b_80.png │ │ ├── b_800-1.png │ │ ├── b_800-2.png │ │ ├── b_800-3.png │ │ ├── b_800.png │ │ ├── b_801-1.png │ │ ├── b_801.png │ │ ├── b_802.png │ │ ├── b_803.png │ │ ├── b_804.png │ │ ├── b_805.png │ │ ├── b_806.png │ │ ├── b_807.png │ │ ├── b_808.png │ │ ├── b_809-gmax.png │ │ ├── b_809.png │ │ ├── b_81.png │ │ ├── b_810.png │ │ ├── b_811.png │ │ ├── b_812-gmax.png │ │ ├── b_812.png │ │ ├── b_813.png │ │ ├── b_814.png │ │ ├── b_815-gmax.png │ │ ├── b_815.png │ │ ├── b_816.png │ │ ├── b_817.png │ │ ├── b_818-gmax.png │ │ ├── b_818.png │ │ ├── b_819.png │ │ ├── b_82.png │ │ ├── b_820.png │ │ ├── b_821.png │ │ ├── b_822.png │ │ ├── b_823-gmax.png │ │ ├── b_823.png │ │ ├── b_824.png │ │ ├── b_825.png │ │ ├── b_826-gmax.png │ │ ├── b_826.png │ │ ├── b_827.png │ │ ├── b_828.png │ │ ├── b_829.png │ │ ├── b_83-1.png │ │ ├── b_83.png │ │ ├── b_830.png │ │ ├── b_831.png │ │ ├── b_832.png │ │ ├── b_833.png │ │ ├── b_834-gmax.png │ │ ├── b_834.png │ │ ├── b_835.png │ │ ├── b_836.png │ │ ├── b_837.png │ │ ├── b_838.png │ │ ├── b_839-gmax.png │ │ ├── b_839.png │ │ ├── b_84.png │ │ ├── b_840.png │ │ ├── b_841-gmax.png │ │ ├── b_841.png │ │ ├── b_842.png │ │ ├── b_843.png │ │ ├── b_844-gmax.png │ │ ├── b_844.png │ │ ├── b_845-1.png │ │ ├── b_845-2.png │ │ ├── b_845.png │ │ ├── b_846.png │ │ ├── b_847.png │ │ ├── b_848.png │ │ ├── b_849-1.png │ │ ├── b_849-gmax.png │ │ ├── b_849.png │ │ ├── b_85.png │ │ ├── b_850.png │ │ ├── b_851-gmax.png │ │ ├── b_851.png │ │ ├── b_852.png │ │ ├── b_853.png │ │ ├── b_854.png │ │ ├── b_855.png │ │ ├── b_856.png │ │ ├── b_857.png │ │ ├── b_858-gmax.png │ │ ├── b_858.png │ │ ├── b_859.png │ │ ├── b_86.png │ │ ├── b_860.png │ │ ├── b_861-gmax.png │ │ ├── b_861.png │ │ ├── b_862.png │ │ ├── b_863.png │ │ ├── b_864.png │ │ ├── b_865.png │ │ ├── b_866.png │ │ ├── b_867.png │ │ ├── b_868.png │ │ ├── b_869-0-0.png │ │ ├── b_869-0-1.png │ │ ├── b_869-0-2.png │ │ ├── b_869-0-3.png │ │ ├── b_869-0-4.png │ │ ├── b_869-0-5.png │ │ ├── b_869-0-6.png │ │ ├── b_869-1-0.png │ │ ├── b_869-1-1.png │ │ ├── b_869-1-2.png │ │ ├── b_869-1-3.png │ │ ├── b_869-1-4.png │ │ ├── b_869-1-5.png │ │ ├── b_869-1-6.png │ │ ├── b_869-2-0.png │ │ ├── b_869-2-1.png │ │ ├── b_869-2-2.png │ │ ├── b_869-2-3.png │ │ ├── b_869-2-4.png │ │ ├── b_869-2-5.png │ │ ├── b_869-2-6.png │ │ ├── b_869-3-0.png │ │ ├── b_869-3-1.png │ │ ├── b_869-3-2.png │ │ ├── b_869-3-3.png │ │ ├── b_869-3-4.png │ │ ├── b_869-3-5.png │ │ ├── b_869-3-6.png │ │ ├── b_869-4-0.png │ │ ├── b_869-4-1.png │ │ ├── b_869-4-2.png │ │ ├── b_869-4-3.png │ │ ├── b_869-4-4.png │ │ ├── b_869-4-5.png │ │ ├── b_869-4-6.png │ │ ├── b_869-5-0.png │ │ ├── b_869-5-1.png │ │ ├── b_869-5-2.png │ │ ├── b_869-5-3.png │ │ ├── b_869-5-4.png │ │ ├── b_869-5-5.png │ │ ├── b_869-5-6.png │ │ ├── b_869-6-0.png │ │ ├── b_869-6-1.png │ │ ├── b_869-6-2.png │ │ ├── b_869-6-3.png │ │ ├── b_869-6-4.png │ │ ├── b_869-6-5.png │ │ ├── b_869-6-6.png │ │ ├── b_869-7-0.png │ │ ├── b_869-7-1.png │ │ ├── b_869-7-2.png │ │ ├── b_869-7-3.png │ │ ├── b_869-7-4.png │ │ ├── b_869-7-5.png │ │ ├── b_869-7-6.png │ │ ├── b_869-8-0.png │ │ ├── b_869-8-1.png │ │ ├── b_869-8-2.png │ │ ├── b_869-8-3.png │ │ ├── b_869-8-4.png │ │ ├── b_869-8-5.png │ │ ├── b_869-8-6.png │ │ ├── b_869-gmax.png │ │ ├── b_87.png │ │ ├── b_870.png │ │ ├── b_871.png │ │ ├── b_872.png │ │ ├── b_873.png │ │ ├── b_874.png │ │ ├── b_875-1.png │ │ ├── b_875.png │ │ ├── b_876-1.png │ │ ├── b_876.png │ │ ├── b_877-1.png │ │ ├── b_877.png │ │ ├── b_878.png │ │ ├── b_879-gmax.png │ │ ├── b_879.png │ │ ├── b_88-1.png │ │ ├── b_88.png │ │ ├── b_880.png │ │ ├── b_881.png │ │ ├── b_882.png │ │ ├── b_883.png │ │ ├── b_884-gmax.png │ │ ├── b_884.png │ │ ├── b_885.png │ │ ├── b_886.png │ │ ├── b_887.png │ │ ├── b_888-1.png │ │ ├── b_888.png │ │ ├── b_889-1.png │ │ ├── b_889.png │ │ ├── b_89-1.png │ │ ├── b_89.png │ │ ├── b_890-1.png │ │ ├── b_890.png │ │ ├── b_891.png │ │ ├── b_892-1-gmax.png │ │ ├── b_892-gmax.png │ │ ├── b_892.png │ │ ├── b_893-1.png │ │ ├── b_893.png │ │ ├── b_894.png │ │ ├── b_895.png │ │ ├── b_896.png │ │ ├── b_897.png │ │ ├── b_898-1.png │ │ ├── b_898-2.png │ │ ├── b_898.png │ │ ├── b_899.png │ │ ├── b_9-1.png │ │ ├── b_9-gmax.png │ │ ├── b_9.png │ │ ├── b_90.png │ │ ├── b_900-1.png │ │ ├── b_900.png │ │ ├── b_901.png │ │ ├── b_902-1.png │ │ ├── b_902.png │ │ ├── b_903.png │ │ ├── b_904.png │ │ ├── b_905-1.png │ │ ├── b_905.png │ │ ├── b_91.png │ │ ├── b_92.png │ │ ├── b_93.png │ │ ├── b_94-1.png │ │ ├── b_94-gmax.png │ │ ├── b_94.png │ │ ├── b_95.png │ │ ├── b_96.png │ │ ├── b_97.png │ │ ├── b_98.png │ │ ├── b_99-gmax.png │ │ ├── b_99.png │ │ ├── b_egg.png │ │ └── b_unknown.png │ │ ├── Big Shiny Sprites │ │ ├── b_100-1s.png │ │ ├── b_100s.png │ │ ├── b_101-1s.png │ │ ├── b_101s.png │ │ ├── b_102s.png │ │ ├── b_103-1s.png │ │ ├── b_103s.png │ │ ├── b_104s.png │ │ ├── b_105-1s.png │ │ ├── b_105s.png │ │ ├── b_106s.png │ │ ├── b_107s.png │ │ ├── b_108s.png │ │ ├── b_109s.png │ │ ├── b_10s.png │ │ ├── b_110-1s.png │ │ ├── b_110s.png │ │ ├── b_111s.png │ │ ├── b_112s.png │ │ ├── b_113s.png │ │ ├── b_114s.png │ │ ├── b_115-1s.png │ │ ├── b_115s.png │ │ ├── b_116s.png │ │ ├── b_117s.png │ │ ├── b_118s.png │ │ ├── b_119s.png │ │ ├── b_11s.png │ │ ├── b_12-gmaxs.png │ │ ├── b_120s.png │ │ ├── b_121s.png │ │ ├── b_122-1s.png │ │ ├── b_122s.png │ │ ├── b_123s.png │ │ ├── b_124s.png │ │ ├── b_125s.png │ │ ├── b_126s.png │ │ ├── b_127-1s.png │ │ ├── b_127s.png │ │ ├── b_128s.png │ │ ├── b_129s.png │ │ ├── b_12s.png │ │ ├── b_130-1s.png │ │ ├── b_130s.png │ │ ├── b_131-gmaxs.png │ │ ├── b_131s.png │ │ ├── b_132s.png │ │ ├── b_133-1ps.png │ │ ├── b_133-gmaxs.png │ │ ├── b_133s.png │ │ ├── b_134s.png │ │ ├── b_135s.png │ │ ├── b_136s.png │ │ ├── b_137s.png │ │ ├── b_138s.png │ │ ├── b_139s.png │ │ ├── b_13s.png │ │ ├── b_140s.png │ │ ├── b_141s.png │ │ ├── b_142-1s.png │ │ ├── b_142s.png │ │ ├── b_143-gmaxs.png │ │ ├── b_143s.png │ │ ├── b_144-1s.png │ │ ├── b_144s.png │ │ ├── b_145-1s.png │ │ ├── b_145s.png │ │ ├── b_146-1s.png │ │ ├── b_146s.png │ │ ├── b_147s.png │ │ ├── b_148s.png │ │ ├── b_149s.png │ │ ├── b_14s.png │ │ ├── b_15-1s.png │ │ ├── b_150-1s.png │ │ ├── b_150-2s.png │ │ ├── b_150s.png │ │ ├── b_151s.png │ │ ├── b_152s.png │ │ ├── b_153s.png │ │ ├── b_154s.png │ │ ├── b_155s.png │ │ ├── b_156s.png │ │ ├── b_157-1s.png │ │ ├── b_157s.png │ │ ├── b_158s.png │ │ ├── b_159s.png │ │ ├── b_15s.png │ │ ├── b_160s.png │ │ ├── b_161s.png │ │ ├── b_162s.png │ │ ├── b_163s.png │ │ ├── b_164s.png │ │ ├── b_165s.png │ │ ├── b_166s.png │ │ ├── b_167s.png │ │ ├── b_168s.png │ │ ├── b_169s.png │ │ ├── b_16s.png │ │ ├── b_170s.png │ │ ├── b_171s.png │ │ ├── b_172-1s.png │ │ ├── b_172s.png │ │ ├── b_173s.png │ │ ├── b_174s.png │ │ ├── b_175s.png │ │ ├── b_176s.png │ │ ├── b_177s.png │ │ ├── b_178s.png │ │ ├── b_179s.png │ │ ├── b_17s.png │ │ ├── b_18-1s.png │ │ ├── b_180s.png │ │ ├── b_181-1s.png │ │ ├── b_181s.png │ │ ├── b_182s.png │ │ ├── b_183s.png │ │ ├── b_184s.png │ │ ├── b_185s.png │ │ ├── b_186s.png │ │ ├── b_187s.png │ │ ├── b_188s.png │ │ ├── b_189s.png │ │ ├── b_18s.png │ │ ├── b_19-1s.png │ │ ├── b_190s.png │ │ ├── b_191s.png │ │ ├── b_192s.png │ │ ├── b_193s.png │ │ ├── b_194s.png │ │ ├── b_195s.png │ │ ├── b_196s.png │ │ ├── b_197s.png │ │ ├── b_198s.png │ │ ├── b_199-1s.png │ │ ├── b_199s.png │ │ ├── b_19s.png │ │ ├── b_1s.png │ │ ├── b_20-1s.png │ │ ├── b_200s.png │ │ ├── b_201-10s.png │ │ ├── b_201-11s.png │ │ ├── b_201-12s.png │ │ ├── b_201-13s.png │ │ ├── b_201-14s.png │ │ ├── b_201-15s.png │ │ ├── b_201-16s.png │ │ ├── b_201-17s.png │ │ ├── b_201-18s.png │ │ ├── b_201-19s.png │ │ ├── b_201-1s.png │ │ ├── b_201-20s.png │ │ ├── b_201-21s.png │ │ ├── b_201-22s.png │ │ ├── b_201-23s.png │ │ ├── b_201-24s.png │ │ ├── b_201-25s.png │ │ ├── b_201-26s.png │ │ ├── b_201-27s.png │ │ ├── b_201-2s.png │ │ ├── b_201-3s.png │ │ ├── b_201-4s.png │ │ ├── b_201-5s.png │ │ ├── b_201-6s.png │ │ ├── b_201-7s.png │ │ ├── b_201-8s.png │ │ ├── b_201-9s.png │ │ ├── b_201s.png │ │ ├── b_202s.png │ │ ├── b_203s.png │ │ ├── b_204s.png │ │ ├── b_205s.png │ │ ├── b_206s.png │ │ ├── b_207s.png │ │ ├── b_208-1s.png │ │ ├── b_208s.png │ │ ├── b_209s.png │ │ ├── b_20s.png │ │ ├── b_210s.png │ │ ├── b_211-1s.png │ │ ├── b_211s.png │ │ ├── b_212-1s.png │ │ ├── b_212s.png │ │ ├── b_213s.png │ │ ├── b_214-1s.png │ │ ├── b_214s.png │ │ ├── b_215-1s.png │ │ ├── b_215s.png │ │ ├── b_216s.png │ │ ├── b_217s.png │ │ ├── b_218s.png │ │ ├── b_219s.png │ │ ├── b_21s.png │ │ ├── b_220s.png │ │ ├── b_221s.png │ │ ├── b_222-1s.png │ │ ├── b_222s.png │ │ ├── b_223s.png │ │ ├── b_224s.png │ │ ├── b_225s.png │ │ ├── b_226s.png │ │ ├── b_227s.png │ │ ├── b_228s.png │ │ ├── b_229-1s.png │ │ ├── b_229s.png │ │ ├── b_22s.png │ │ ├── b_230s.png │ │ ├── b_231s.png │ │ ├── b_232s.png │ │ ├── b_233s.png │ │ ├── b_234s.png │ │ ├── b_235s.png │ │ ├── b_236s.png │ │ ├── b_237s.png │ │ ├── b_238s.png │ │ ├── b_239s.png │ │ ├── b_23s.png │ │ ├── b_240s.png │ │ ├── b_241s.png │ │ ├── b_242s.png │ │ ├── b_243s.png │ │ ├── b_244s.png │ │ ├── b_245s.png │ │ ├── b_246s.png │ │ ├── b_247s.png │ │ ├── b_248-1s.png │ │ ├── b_248s.png │ │ ├── b_249s.png │ │ ├── b_249xs.png │ │ ├── b_24s.png │ │ ├── b_25-1cs.png │ │ ├── b_25-1s.png │ │ ├── b_25-2cs.png │ │ ├── b_25-2s.png │ │ ├── b_25-3cs.png │ │ ├── b_25-3s.png │ │ ├── b_25-4cs.png │ │ ├── b_25-4s.png │ │ ├── b_25-5cs.png │ │ ├── b_25-5s.png │ │ ├── b_25-6cs.png │ │ ├── b_25-6s.png │ │ ├── b_25-7s.png │ │ ├── b_25-8ps.png │ │ ├── b_25-9s.png │ │ ├── b_25-gmaxs.png │ │ ├── b_250s.png │ │ ├── b_251s.png │ │ ├── b_252s.png │ │ ├── b_253s.png │ │ ├── b_254-1s.png │ │ ├── b_254s.png │ │ ├── b_255s.png │ │ ├── b_256s.png │ │ ├── b_257-1s.png │ │ ├── b_257s.png │ │ ├── b_258s.png │ │ ├── b_259s.png │ │ ├── b_25s.png │ │ ├── b_26-1s.png │ │ ├── b_260-1s.png │ │ ├── b_260s.png │ │ ├── b_261s.png │ │ ├── b_262s.png │ │ ├── b_263-1s.png │ │ ├── b_263s.png │ │ ├── b_264-1s.png │ │ ├── b_264s.png │ │ ├── b_265s.png │ │ ├── b_266s.png │ │ ├── b_267s.png │ │ ├── b_268s.png │ │ ├── b_269s.png │ │ ├── b_26s.png │ │ ├── b_27-1s.png │ │ ├── b_270s.png │ │ ├── b_271s.png │ │ ├── b_272s.png │ │ ├── b_273s.png │ │ ├── b_274s.png │ │ ├── b_275s.png │ │ ├── b_276s.png │ │ ├── b_277s.png │ │ ├── b_278s.png │ │ ├── b_279s.png │ │ ├── b_27s.png │ │ ├── b_28-1s.png │ │ ├── b_280s.png │ │ ├── b_281s.png │ │ ├── b_282-1s.png │ │ ├── b_282s.png │ │ ├── b_283s.png │ │ ├── b_284s.png │ │ ├── b_285s.png │ │ ├── b_286s.png │ │ ├── b_287s.png │ │ ├── b_288s.png │ │ ├── b_289s.png │ │ ├── b_28s.png │ │ ├── b_290s.png │ │ ├── b_291s.png │ │ ├── b_292s.png │ │ ├── b_293s.png │ │ ├── b_294s.png │ │ ├── b_295s.png │ │ ├── b_296s.png │ │ ├── b_297s.png │ │ ├── b_298s.png │ │ ├── b_299s.png │ │ ├── b_29s.png │ │ ├── b_2s.png │ │ ├── b_3-1s.png │ │ ├── b_3-gmaxs.png │ │ ├── b_300s.png │ │ ├── b_301s.png │ │ ├── b_302-1s.png │ │ ├── b_302s.png │ │ ├── b_303-1s.png │ │ ├── b_303s.png │ │ ├── b_304s.png │ │ ├── b_305s.png │ │ ├── b_306-1s.png │ │ ├── b_306s.png │ │ ├── b_307s.png │ │ ├── b_308-1s.png │ │ ├── b_308s.png │ │ ├── b_309s.png │ │ ├── b_30s.png │ │ ├── b_310-1s.png │ │ ├── b_310s.png │ │ ├── b_311s.png │ │ ├── b_312s.png │ │ ├── b_313s.png │ │ ├── b_314s.png │ │ ├── b_315s.png │ │ ├── b_316s.png │ │ ├── b_317s.png │ │ ├── b_318s.png │ │ ├── b_319-1s.png │ │ ├── b_319s.png │ │ ├── b_31s.png │ │ ├── b_320s.png │ │ ├── b_321s.png │ │ ├── b_322s.png │ │ ├── b_323-1s.png │ │ ├── b_323s.png │ │ ├── b_324s.png │ │ ├── b_325s.png │ │ ├── b_326s.png │ │ ├── b_327s.png │ │ ├── b_328s.png │ │ ├── b_329s.png │ │ ├── b_32s.png │ │ ├── b_330s.png │ │ ├── b_331s.png │ │ ├── b_332s.png │ │ ├── b_333s.png │ │ ├── b_334-1s.png │ │ ├── b_334s.png │ │ ├── b_335s.png │ │ ├── b_336s.png │ │ ├── b_337s.png │ │ ├── b_338s.png │ │ ├── b_339s.png │ │ ├── b_33s.png │ │ ├── b_340s.png │ │ ├── b_341s.png │ │ ├── b_342s.png │ │ ├── b_343s.png │ │ ├── b_344s.png │ │ ├── b_345s.png │ │ ├── b_346s.png │ │ ├── b_347s.png │ │ ├── b_348s.png │ │ ├── b_349s.png │ │ ├── b_34s.png │ │ ├── b_350s.png │ │ ├── b_351-1s.png │ │ ├── b_351-2s.png │ │ ├── b_351-3s.png │ │ ├── b_351s.png │ │ ├── b_352s.png │ │ ├── b_353s.png │ │ ├── b_354-1s.png │ │ ├── b_354s.png │ │ ├── b_355s.png │ │ ├── b_356s.png │ │ ├── b_357s.png │ │ ├── b_358s.png │ │ ├── b_359-1s.png │ │ ├── b_359s.png │ │ ├── b_35s.png │ │ ├── b_360s.png │ │ ├── b_361s.png │ │ ├── b_362-1s.png │ │ ├── b_362s.png │ │ ├── b_363s.png │ │ ├── b_364s.png │ │ ├── b_365s.png │ │ ├── b_366s.png │ │ ├── b_367s.png │ │ ├── b_368s.png │ │ ├── b_369s.png │ │ ├── b_36s.png │ │ ├── b_37-1s.png │ │ ├── b_370s.png │ │ ├── b_371s.png │ │ ├── b_372s.png │ │ ├── b_373-1s.png │ │ ├── b_373s.png │ │ ├── b_374s.png │ │ ├── b_375s.png │ │ ├── b_376-1s.png │ │ ├── b_376s.png │ │ ├── b_377s.png │ │ ├── b_378s.png │ │ ├── b_379s.png │ │ ├── b_37s.png │ │ ├── b_38-1s.png │ │ ├── b_380-1s.png │ │ ├── b_380s.png │ │ ├── b_381-1s.png │ │ ├── b_381s.png │ │ ├── b_382-1s.png │ │ ├── b_382s.png │ │ ├── b_383-1s.png │ │ ├── b_383s.png │ │ ├── b_384-1s.png │ │ ├── b_384s.png │ │ ├── b_385s.png │ │ ├── b_386-1s.png │ │ ├── b_386-2s.png │ │ ├── b_386-3s.png │ │ ├── b_386s.png │ │ ├── b_387s.png │ │ ├── b_388s.png │ │ ├── b_389s.png │ │ ├── b_38s.png │ │ ├── b_390s.png │ │ ├── b_391s.png │ │ ├── b_392s.png │ │ ├── b_393s.png │ │ ├── b_394s.png │ │ ├── b_395s.png │ │ ├── b_396s.png │ │ ├── b_397s.png │ │ ├── b_398s.png │ │ ├── b_399s.png │ │ ├── b_39s.png │ │ ├── b_3s.png │ │ ├── b_400s.png │ │ ├── b_401s.png │ │ ├── b_402s.png │ │ ├── b_403s.png │ │ ├── b_404s.png │ │ ├── b_405s.png │ │ ├── b_406s.png │ │ ├── b_407s.png │ │ ├── b_408s.png │ │ ├── b_409s.png │ │ ├── b_40s.png │ │ ├── b_410s.png │ │ ├── b_411s.png │ │ ├── b_412-1s.png │ │ ├── b_412-2s.png │ │ ├── b_412s.png │ │ ├── b_413-1s.png │ │ ├── b_413-2s.png │ │ ├── b_413s.png │ │ ├── b_414s.png │ │ ├── b_415s.png │ │ ├── b_416s.png │ │ ├── b_417s.png │ │ ├── b_418s.png │ │ ├── b_419s.png │ │ ├── b_41s.png │ │ ├── b_420s.png │ │ ├── b_421-1s.png │ │ ├── b_421s.png │ │ ├── b_422-1s.png │ │ ├── b_422s.png │ │ ├── b_423-1s.png │ │ ├── b_423s.png │ │ ├── b_424s.png │ │ ├── b_425s.png │ │ ├── b_426s.png │ │ ├── b_427s.png │ │ ├── b_428-1s.png │ │ ├── b_428s.png │ │ ├── b_429s.png │ │ ├── b_42s.png │ │ ├── b_430s.png │ │ ├── b_431s.png │ │ ├── b_432s.png │ │ ├── b_433s.png │ │ ├── b_434s.png │ │ ├── b_435s.png │ │ ├── b_436s.png │ │ ├── b_437s.png │ │ ├── b_438s.png │ │ ├── b_439s.png │ │ ├── b_43s.png │ │ ├── b_440s.png │ │ ├── b_441s.png │ │ ├── b_442s.png │ │ ├── b_443s.png │ │ ├── b_444s.png │ │ ├── b_445-1s.png │ │ ├── b_445s.png │ │ ├── b_446s.png │ │ ├── b_447s.png │ │ ├── b_448-1s.png │ │ ├── b_448s.png │ │ ├── b_449fs.png │ │ ├── b_449s.png │ │ ├── b_44s.png │ │ ├── b_450fs.png │ │ ├── b_450s.png │ │ ├── b_451s.png │ │ ├── b_452s.png │ │ ├── b_453s.png │ │ ├── b_454s.png │ │ ├── b_455s.png │ │ ├── b_456s.png │ │ ├── b_457s.png │ │ ├── b_458s.png │ │ ├── b_459s.png │ │ ├── b_45s.png │ │ ├── b_460-1s.png │ │ ├── b_460s.png │ │ ├── b_461s.png │ │ ├── b_462s.png │ │ ├── b_463s.png │ │ ├── b_464s.png │ │ ├── b_465s.png │ │ ├── b_466s.png │ │ ├── b_467s.png │ │ ├── b_468s.png │ │ ├── b_469s.png │ │ ├── b_46s.png │ │ ├── b_470s.png │ │ ├── b_471s.png │ │ ├── b_472s.png │ │ ├── b_473s.png │ │ ├── b_474s.png │ │ ├── b_475-1s.png │ │ ├── b_475s.png │ │ ├── b_476s.png │ │ ├── b_477s.png │ │ ├── b_478s.png │ │ ├── b_479-1s.png │ │ ├── b_479-2s.png │ │ ├── b_479-3s.png │ │ ├── b_479-4s.png │ │ ├── b_479-5s.png │ │ ├── b_479s.png │ │ ├── b_47s.png │ │ ├── b_480s.png │ │ ├── b_481s.png │ │ ├── b_482s.png │ │ ├── b_483-1s.png │ │ ├── b_483s.png │ │ ├── b_484-1s.png │ │ ├── b_484s.png │ │ ├── b_485s.png │ │ ├── b_486s.png │ │ ├── b_487-1s.png │ │ ├── b_487s.png │ │ ├── b_488s.png │ │ ├── b_489s.png │ │ ├── b_48s.png │ │ ├── b_490s.png │ │ ├── b_491s.png │ │ ├── b_492-1s.png │ │ ├── b_492s.png │ │ ├── b_493-10s.png │ │ ├── b_493-11s.png │ │ ├── b_493-12s.png │ │ ├── b_493-13s.png │ │ ├── b_493-14s.png │ │ ├── b_493-15s.png │ │ ├── b_493-16s.png │ │ ├── b_493-17s.png │ │ ├── b_493-18s.png │ │ ├── b_493-1s.png │ │ ├── b_493-2s.png │ │ ├── b_493-3s.png │ │ ├── b_493-4s.png │ │ ├── b_493-5s.png │ │ ├── b_493-6s.png │ │ ├── b_493-7s.png │ │ ├── b_493-8s.png │ │ ├── b_493-9s.png │ │ ├── b_493s.png │ │ ├── b_494s.png │ │ ├── b_495s.png │ │ ├── b_496s.png │ │ ├── b_497s.png │ │ ├── b_498s.png │ │ ├── b_499s.png │ │ ├── b_49s.png │ │ ├── b_4s.png │ │ ├── b_50-1s.png │ │ ├── b_500s.png │ │ ├── b_501s.png │ │ ├── b_502s.png │ │ ├── b_503-1s.png │ │ ├── b_503s.png │ │ ├── b_504s.png │ │ ├── b_505s.png │ │ ├── b_506s.png │ │ ├── b_507s.png │ │ ├── b_508s.png │ │ ├── b_509s.png │ │ ├── b_50s.png │ │ ├── b_51-1s.png │ │ ├── b_510s.png │ │ ├── b_511s.png │ │ ├── b_512s.png │ │ ├── b_513s.png │ │ ├── b_514s.png │ │ ├── b_515s.png │ │ ├── b_516s.png │ │ ├── b_517s.png │ │ ├── b_518s.png │ │ ├── b_519s.png │ │ ├── b_51s.png │ │ ├── b_52-1s.png │ │ ├── b_52-2s.png │ │ ├── b_52-gmaxs.png │ │ ├── b_520s.png │ │ ├── b_521fs.png │ │ ├── b_521s.png │ │ ├── b_522s.png │ │ ├── b_523s.png │ │ ├── b_524s.png │ │ ├── b_525s.png │ │ ├── b_526s.png │ │ ├── b_527s.png │ │ ├── b_528s.png │ │ ├── b_529s.png │ │ ├── b_52s.png │ │ ├── b_53-1s.png │ │ ├── b_530s.png │ │ ├── b_531-1s.png │ │ ├── b_531s.png │ │ ├── b_532s.png │ │ ├── b_533s.png │ │ ├── b_534s.png │ │ ├── b_535s.png │ │ ├── b_536s.png │ │ ├── b_537s.png │ │ ├── b_538s.png │ │ ├── b_539s.png │ │ ├── b_53s.png │ │ ├── b_540s.png │ │ ├── b_541s.png │ │ ├── b_542s.png │ │ ├── b_543s.png │ │ ├── b_544s.png │ │ ├── b_545s.png │ │ ├── b_546s.png │ │ ├── b_547s.png │ │ ├── b_548s.png │ │ ├── b_549-1s.png │ │ ├── b_549s.png │ │ ├── b_54s.png │ │ ├── b_550-1s.png │ │ ├── b_550-2s.png │ │ ├── b_550s.png │ │ ├── b_551s.png │ │ ├── b_552s.png │ │ ├── b_553s.png │ │ ├── b_554-1s.png │ │ ├── b_554s.png │ │ ├── b_555-1s.png │ │ ├── b_555-2s.png │ │ ├── b_555-3s.png │ │ ├── b_555s.png │ │ ├── b_556s.png │ │ ├── b_557s.png │ │ ├── b_558s.png │ │ ├── b_559s.png │ │ ├── b_55s.png │ │ ├── b_560s.png │ │ ├── b_561s.png │ │ ├── b_562-1s.png │ │ ├── b_562s.png │ │ ├── b_563s.png │ │ ├── b_564s.png │ │ ├── b_565s.png │ │ ├── b_566s.png │ │ ├── b_567s.png │ │ ├── b_568s.png │ │ ├── b_569-gmaxs.png │ │ ├── b_569s.png │ │ ├── b_56s.png │ │ ├── b_570-1s.png │ │ ├── b_570s.png │ │ ├── b_571-1s.png │ │ ├── b_571s.png │ │ ├── b_572s.png │ │ ├── b_573s.png │ │ ├── b_574s.png │ │ ├── b_575s.png │ │ ├── b_576s.png │ │ ├── b_577s.png │ │ ├── b_578s.png │ │ ├── b_579s.png │ │ ├── b_57s.png │ │ ├── b_58-1s.png │ │ ├── b_580s.png │ │ ├── b_581s.png │ │ ├── b_582s.png │ │ ├── b_583s.png │ │ ├── b_584s.png │ │ ├── b_585-1s.png │ │ ├── b_585-2s.png │ │ ├── b_585-3s.png │ │ ├── b_585s.png │ │ ├── b_586-1s.png │ │ ├── b_586-2s.png │ │ ├── b_586-3s.png │ │ ├── b_586s.png │ │ ├── b_587s.png │ │ ├── b_588s.png │ │ ├── b_589s.png │ │ ├── b_58s.png │ │ ├── b_59-1s.png │ │ ├── b_590s.png │ │ ├── b_591s.png │ │ ├── b_592fs.png │ │ ├── b_592s.png │ │ ├── b_593fs.png │ │ ├── b_593s.png │ │ ├── b_594s.png │ │ ├── b_595s.png │ │ ├── b_596s.png │ │ ├── b_597s.png │ │ ├── b_598s.png │ │ ├── b_599s.png │ │ ├── b_59s.png │ │ ├── b_5s.png │ │ ├── b_6-1s.png │ │ ├── b_6-2s.png │ │ ├── b_6-gmaxs.png │ │ ├── b_600s.png │ │ ├── b_601s.png │ │ ├── b_602s.png │ │ ├── b_603s.png │ │ ├── b_604s.png │ │ ├── b_605s.png │ │ ├── b_606s.png │ │ ├── b_607s.png │ │ ├── b_608s.png │ │ ├── b_609s.png │ │ ├── b_60s.png │ │ ├── b_610s.png │ │ ├── b_611s.png │ │ ├── b_612s.png │ │ ├── b_613s.png │ │ ├── b_614s.png │ │ ├── b_615s.png │ │ ├── b_616s.png │ │ ├── b_617s.png │ │ ├── b_618-1s.png │ │ ├── b_618s.png │ │ ├── b_619s.png │ │ ├── b_61s.png │ │ ├── b_620s.png │ │ ├── b_621s.png │ │ ├── b_622s.png │ │ ├── b_623s.png │ │ ├── b_624s.png │ │ ├── b_625s.png │ │ ├── b_626s.png │ │ ├── b_627s.png │ │ ├── b_628-1s.png │ │ ├── b_628s.png │ │ ├── b_629s.png │ │ ├── b_62s.png │ │ ├── b_630s.png │ │ ├── b_631s.png │ │ ├── b_632s.png │ │ ├── b_633s.png │ │ ├── b_634s.png │ │ ├── b_635s.png │ │ ├── b_636s.png │ │ ├── b_637s.png │ │ ├── b_638s.png │ │ ├── b_639s.png │ │ ├── b_63s.png │ │ ├── b_640s.png │ │ ├── b_641-1s.png │ │ ├── b_641s.png │ │ ├── b_642-1s.png │ │ ├── b_642s.png │ │ ├── b_643s.png │ │ ├── b_644s.png │ │ ├── b_645-1s.png │ │ ├── b_645s.png │ │ ├── b_646-1s.png │ │ ├── b_646-2s.png │ │ ├── b_646s.png │ │ ├── b_647-1s.png │ │ ├── b_647s.png │ │ ├── b_648-1s.png │ │ ├── b_648s.png │ │ ├── b_649-1s.png │ │ ├── b_649-2s.png │ │ ├── b_649-3s.png │ │ ├── b_649-4s.png │ │ ├── b_649s.png │ │ ├── b_64s.png │ │ ├── b_65-1s.png │ │ ├── b_650s.png │ │ ├── b_651s.png │ │ ├── b_652s.png │ │ ├── b_653s.png │ │ ├── b_654s.png │ │ ├── b_655s.png │ │ ├── b_656s.png │ │ ├── b_657s.png │ │ ├── b_658-1s.png │ │ ├── b_658-2s.png │ │ ├── b_658s.png │ │ ├── b_659s.png │ │ ├── b_65s.png │ │ ├── b_660s.png │ │ ├── b_661s.png │ │ ├── b_662s.png │ │ ├── b_663s.png │ │ ├── b_664s.png │ │ ├── b_665s.png │ │ ├── b_666-10s.png │ │ ├── b_666-11s.png │ │ ├── b_666-12s.png │ │ ├── b_666-13s.png │ │ ├── b_666-14s.png │ │ ├── b_666-15s.png │ │ ├── b_666-16s.png │ │ ├── b_666-17s.png │ │ ├── b_666-18s.png │ │ ├── b_666-19s.png │ │ ├── b_666-1s.png │ │ ├── b_666-2s.png │ │ ├── b_666-3s.png │ │ ├── b_666-4s.png │ │ ├── b_666-5s.png │ │ ├── b_666-6s.png │ │ ├── b_666-7s.png │ │ ├── b_666-8s.png │ │ ├── b_666-9s.png │ │ ├── b_666s.png │ │ ├── b_667s.png │ │ ├── b_668fs.png │ │ ├── b_668s.png │ │ ├── b_669-1s.png │ │ ├── b_669-2s.png │ │ ├── b_669-3s.png │ │ ├── b_669-4s.png │ │ ├── b_669s.png │ │ ├── b_66s.png │ │ ├── b_670-1s.png │ │ ├── b_670-2s.png │ │ ├── b_670-3s.png │ │ ├── b_670-4s.png │ │ ├── b_670-5s.png │ │ ├── b_670s.png │ │ ├── b_671-1s.png │ │ ├── b_671-2s.png │ │ ├── b_671-3s.png │ │ ├── b_671-4s.png │ │ ├── b_671s.png │ │ ├── b_672s.png │ │ ├── b_673s.png │ │ ├── b_674s.png │ │ ├── b_675s.png │ │ ├── b_676-1s.png │ │ ├── b_676-2s.png │ │ ├── b_676-3s.png │ │ ├── b_676-4s.png │ │ ├── b_676-5s.png │ │ ├── b_676-6s.png │ │ ├── b_676-7s.png │ │ ├── b_676-8s.png │ │ ├── b_676-9s.png │ │ ├── b_676s.png │ │ ├── b_677s.png │ │ ├── b_678-1s.png │ │ ├── b_678s.png │ │ ├── b_679s.png │ │ ├── b_67s.png │ │ ├── b_68-gmaxs.png │ │ ├── b_680s.png │ │ ├── b_681-1s.png │ │ ├── b_681s.png │ │ ├── b_682s.png │ │ ├── b_683s.png │ │ ├── b_684s.png │ │ ├── b_685s.png │ │ ├── b_686s.png │ │ ├── b_687s.png │ │ ├── b_688s.png │ │ ├── b_689s.png │ │ ├── b_68s.png │ │ ├── b_690s.png │ │ ├── b_691s.png │ │ ├── b_692s.png │ │ ├── b_693s.png │ │ ├── b_694s.png │ │ ├── b_695s.png │ │ ├── b_696s.png │ │ ├── b_697s.png │ │ ├── b_698s.png │ │ ├── b_699s.png │ │ ├── b_69s.png │ │ ├── b_6s.png │ │ ├── b_700s.png │ │ ├── b_701s.png │ │ ├── b_702s.png │ │ ├── b_703s.png │ │ ├── b_704s.png │ │ ├── b_705-1s.png │ │ ├── b_705s.png │ │ ├── b_706-1s.png │ │ ├── b_706s.png │ │ ├── b_707s.png │ │ ├── b_708s.png │ │ ├── b_709s.png │ │ ├── b_70s.png │ │ ├── b_710-1s.png │ │ ├── b_710-2s.png │ │ ├── b_710-3s.png │ │ ├── b_710s.png │ │ ├── b_711-1s.png │ │ ├── b_711-2s.png │ │ ├── b_711-3s.png │ │ ├── b_711s.png │ │ ├── b_712s.png │ │ ├── b_713-1s.png │ │ ├── b_713s.png │ │ ├── b_714s.png │ │ ├── b_715s.png │ │ ├── b_716-1s.png │ │ ├── b_716s.png │ │ ├── b_717s.png │ │ ├── b_718-1s.png │ │ ├── b_718-2s.png │ │ ├── b_718-3s.png │ │ ├── b_718-4s.png │ │ ├── b_718s.png │ │ ├── b_719-1s.png │ │ ├── b_719s.png │ │ ├── b_71s.png │ │ ├── b_720-1s.png │ │ ├── b_720s.png │ │ ├── b_721s.png │ │ ├── b_722s.png │ │ ├── b_723s.png │ │ ├── b_724-1s.png │ │ ├── b_724s.png │ │ ├── b_725s.png │ │ ├── b_726s.png │ │ ├── b_727s.png │ │ ├── b_728s.png │ │ ├── b_729s.png │ │ ├── b_72s.png │ │ ├── b_730s.png │ │ ├── b_731s.png │ │ ├── b_732s.png │ │ ├── b_733s.png │ │ ├── b_734s.png │ │ ├── b_735s.png │ │ ├── b_736s.png │ │ ├── b_737s.png │ │ ├── b_738s.png │ │ ├── b_739s.png │ │ ├── b_73s.png │ │ ├── b_74-1s.png │ │ ├── b_740s.png │ │ ├── b_741-1s.png │ │ ├── b_741-2s.png │ │ ├── b_741-3s.png │ │ ├── b_741s.png │ │ ├── b_742s.png │ │ ├── b_743s.png │ │ ├── b_744s.png │ │ ├── b_745-1s.png │ │ ├── b_745-2s.png │ │ ├── b_745s.png │ │ ├── b_746-1s.png │ │ ├── b_746s.png │ │ ├── b_747s.png │ │ ├── b_748s.png │ │ ├── b_749s.png │ │ ├── b_74s.png │ │ ├── b_75-1s.png │ │ ├── b_750s.png │ │ ├── b_751s.png │ │ ├── b_752s.png │ │ ├── b_753s.png │ │ ├── b_754s.png │ │ ├── b_755s.png │ │ ├── b_756s.png │ │ ├── b_757s.png │ │ ├── b_758s.png │ │ ├── b_759s.png │ │ ├── b_75s.png │ │ ├── b_76-1s.png │ │ ├── b_760s.png │ │ ├── b_761s.png │ │ ├── b_762s.png │ │ ├── b_763s.png │ │ ├── b_764s.png │ │ ├── b_765s.png │ │ ├── b_766s.png │ │ ├── b_767s.png │ │ ├── b_768s.png │ │ ├── b_769s.png │ │ ├── b_76s.png │ │ ├── b_77-1s.png │ │ ├── b_770s.png │ │ ├── b_771s.png │ │ ├── b_772s.png │ │ ├── b_773-10s.png │ │ ├── b_773-11s.png │ │ ├── b_773-12s.png │ │ ├── b_773-13s.png │ │ ├── b_773-14s.png │ │ ├── b_773-15s.png │ │ ├── b_773-16s.png │ │ ├── b_773-17s.png │ │ ├── b_773-1s.png │ │ ├── b_773-2s.png │ │ ├── b_773-3s.png │ │ ├── b_773-4s.png │ │ ├── b_773-5s.png │ │ ├── b_773-6s.png │ │ ├── b_773-7s.png │ │ ├── b_773-8s.png │ │ ├── b_773-9s.png │ │ ├── b_773s.png │ │ ├── b_774-10s.png │ │ ├── b_774-11s.png │ │ ├── b_774-12s.png │ │ ├── b_774-13s.png │ │ ├── b_774-1s.png │ │ ├── b_774-2s.png │ │ ├── b_774-3s.png │ │ ├── b_774-4s.png │ │ ├── b_774-5s.png │ │ ├── b_774-6s.png │ │ ├── b_774-7s.png │ │ ├── b_774-8s.png │ │ ├── b_774-9s.png │ │ ├── b_774s.png │ │ ├── b_775s.png │ │ ├── b_776s.png │ │ ├── b_777s.png │ │ ├── b_778s.png │ │ ├── b_779s.png │ │ ├── b_77s.png │ │ ├── b_78-1s.png │ │ ├── b_780s.png │ │ ├── b_781s.png │ │ ├── b_782s.png │ │ ├── b_783s.png │ │ ├── b_784s.png │ │ ├── b_785s.png │ │ ├── b_786s.png │ │ ├── b_787s.png │ │ ├── b_788s.png │ │ ├── b_789s.png │ │ ├── b_78s.png │ │ ├── b_79-1s.png │ │ ├── b_790s.png │ │ ├── b_791s.png │ │ ├── b_792s.png │ │ ├── b_793s.png │ │ ├── b_794s.png │ │ ├── b_795s.png │ │ ├── b_796s.png │ │ ├── b_797s.png │ │ ├── b_798s.png │ │ ├── b_799s.png │ │ ├── b_79s.png │ │ ├── b_7s.png │ │ ├── b_80-1s.png │ │ ├── b_80-2s.png │ │ ├── b_800-1s.png │ │ ├── b_800-2s.png │ │ ├── b_800-3s.png │ │ ├── b_800s.png │ │ ├── b_801-1s.png │ │ ├── b_801s.png │ │ ├── b_802s.png │ │ ├── b_803s.png │ │ ├── b_804s.png │ │ ├── b_805s.png │ │ ├── b_806s.png │ │ ├── b_807s.png │ │ ├── b_808s.png │ │ ├── b_809-gmaxs.png │ │ ├── b_809s.png │ │ ├── b_80s.png │ │ ├── b_810s.png │ │ ├── b_811s.png │ │ ├── b_812-gmaxs.png │ │ ├── b_812s.png │ │ ├── b_813s.png │ │ ├── b_814s.png │ │ ├── b_815-gmaxs.png │ │ ├── b_815s.png │ │ ├── b_816s.png │ │ ├── b_817s.png │ │ ├── b_818-gmaxs.png │ │ ├── b_818s.png │ │ ├── b_819s.png │ │ ├── b_81s.png │ │ ├── b_820s.png │ │ ├── b_821s.png │ │ ├── b_822s.png │ │ ├── b_823-gmaxs.png │ │ ├── b_823s.png │ │ ├── b_824s.png │ │ ├── b_825s.png │ │ ├── b_826-gmaxs.png │ │ ├── b_826s.png │ │ ├── b_827s.png │ │ ├── b_828s.png │ │ ├── b_829s.png │ │ ├── b_82s.png │ │ ├── b_83-1s.png │ │ ├── b_830s.png │ │ ├── b_831s.png │ │ ├── b_832s.png │ │ ├── b_833s.png │ │ ├── b_834-gmaxs.png │ │ ├── b_834s.png │ │ ├── b_835s.png │ │ ├── b_836s.png │ │ ├── b_837s.png │ │ ├── b_838s.png │ │ ├── b_839-gmaxs.png │ │ ├── b_839s.png │ │ ├── b_83s.png │ │ ├── b_840s.png │ │ ├── b_841-gmaxs.png │ │ ├── b_841s.png │ │ ├── b_842s.png │ │ ├── b_843s.png │ │ ├── b_844-gmaxs.png │ │ ├── b_844s.png │ │ ├── b_845-1s.png │ │ ├── b_845-2s.png │ │ ├── b_845s.png │ │ ├── b_846s.png │ │ ├── b_847s.png │ │ ├── b_848s.png │ │ ├── b_849-1s.png │ │ ├── b_849-gmaxs.png │ │ ├── b_849s.png │ │ ├── b_84s.png │ │ ├── b_850s.png │ │ ├── b_851-gmaxs.png │ │ ├── b_851s.png │ │ ├── b_852s.png │ │ ├── b_853s.png │ │ ├── b_854s.png │ │ ├── b_855s.png │ │ ├── b_856s.png │ │ ├── b_857s.png │ │ ├── b_858-gmaxs.png │ │ ├── b_858s.png │ │ ├── b_859s.png │ │ ├── b_85s.png │ │ ├── b_860s.png │ │ ├── b_861-gmaxs.png │ │ ├── b_861s.png │ │ ├── b_862s.png │ │ ├── b_863s.png │ │ ├── b_864s.png │ │ ├── b_865s.png │ │ ├── b_866s.png │ │ ├── b_867s.png │ │ ├── b_868s.png │ │ ├── b_869-0-0s.png │ │ ├── b_869-0-1s.png │ │ ├── b_869-0-2s.png │ │ ├── b_869-0-3s.png │ │ ├── b_869-0-4s.png │ │ ├── b_869-0-5s.png │ │ ├── b_869-0-6s.png │ │ ├── b_869-1-0s.png │ │ ├── b_869-1-1s.png │ │ ├── b_869-1-2s.png │ │ ├── b_869-1-3s.png │ │ ├── b_869-1-4s.png │ │ ├── b_869-1-5s.png │ │ ├── b_869-1-6s.png │ │ ├── b_869-2-0s.png │ │ ├── b_869-2-1s.png │ │ ├── b_869-2-2s.png │ │ ├── b_869-2-3s.png │ │ ├── b_869-2-4s.png │ │ ├── b_869-2-5s.png │ │ ├── b_869-2-6s.png │ │ ├── b_869-3-0s.png │ │ ├── b_869-3-1s.png │ │ ├── b_869-3-2s.png │ │ ├── b_869-3-3s.png │ │ ├── b_869-3-4s.png │ │ ├── b_869-3-5s.png │ │ ├── b_869-3-6s.png │ │ ├── b_869-4-0s.png │ │ ├── b_869-4-1s.png │ │ ├── b_869-4-2s.png │ │ ├── b_869-4-3s.png │ │ ├── b_869-4-4s.png │ │ ├── b_869-4-5s.png │ │ ├── b_869-4-6s.png │ │ ├── b_869-5-0s.png │ │ ├── b_869-5-1s.png │ │ ├── b_869-5-2s.png │ │ ├── b_869-5-3s.png │ │ ├── b_869-5-4s.png │ │ ├── b_869-5-5s.png │ │ ├── b_869-5-6s.png │ │ ├── b_869-6-0s.png │ │ ├── b_869-6-1s.png │ │ ├── b_869-6-2s.png │ │ ├── b_869-6-3s.png │ │ ├── b_869-6-4s.png │ │ ├── b_869-6-5s.png │ │ ├── b_869-6-6s.png │ │ ├── b_869-7-0s.png │ │ ├── b_869-7-1s.png │ │ ├── b_869-7-2s.png │ │ ├── b_869-7-3s.png │ │ ├── b_869-7-4s.png │ │ ├── b_869-7-5s.png │ │ ├── b_869-7-6s.png │ │ ├── b_869-8-0s.png │ │ ├── b_869-8-1s.png │ │ ├── b_869-8-2s.png │ │ ├── b_869-8-3s.png │ │ ├── b_869-8-4s.png │ │ ├── b_869-8-5s.png │ │ ├── b_869-8-6s.png │ │ ├── b_869-gmaxs.png │ │ ├── b_86s.png │ │ ├── b_870s.png │ │ ├── b_871s.png │ │ ├── b_872s.png │ │ ├── b_873s.png │ │ ├── b_874s.png │ │ ├── b_875-1s.png │ │ ├── b_875s.png │ │ ├── b_876-1s.png │ │ ├── b_876s.png │ │ ├── b_877-1s.png │ │ ├── b_877s.png │ │ ├── b_878s.png │ │ ├── b_879-gmaxs.png │ │ ├── b_879s.png │ │ ├── b_87s.png │ │ ├── b_88-1s.png │ │ ├── b_880s.png │ │ ├── b_881s.png │ │ ├── b_882s.png │ │ ├── b_883s.png │ │ ├── b_884-gmaxs.png │ │ ├── b_884s.png │ │ ├── b_885s.png │ │ ├── b_886s.png │ │ ├── b_887s.png │ │ ├── b_888-1s.png │ │ ├── b_888s.png │ │ ├── b_889-1s.png │ │ ├── b_889s.png │ │ ├── b_88s.png │ │ ├── b_89-1s.png │ │ ├── b_890-1s.png │ │ ├── b_890s.png │ │ ├── b_891s.png │ │ ├── b_892-1-gmaxs.png │ │ ├── b_892-gmaxs.png │ │ ├── b_892s.png │ │ ├── b_893-1s.png │ │ ├── b_893s.png │ │ ├── b_894s.png │ │ ├── b_895s.png │ │ ├── b_896s.png │ │ ├── b_897s.png │ │ ├── b_898-1s.png │ │ ├── b_898-2s.png │ │ ├── b_898s.png │ │ ├── b_899s.png │ │ ├── b_89s.png │ │ ├── b_8s.png │ │ ├── b_9-1s.png │ │ ├── b_9-gmaxs.png │ │ ├── b_900s.png │ │ ├── b_901s.png │ │ ├── b_902-1s.png │ │ ├── b_902s.png │ │ ├── b_903s.png │ │ ├── b_904s.png │ │ ├── b_905-1s.png │ │ ├── b_905s.png │ │ ├── b_90s.png │ │ ├── b_91s.png │ │ ├── b_92s.png │ │ ├── b_93s.png │ │ ├── b_94-1s.png │ │ ├── b_94-gmaxs.png │ │ ├── b_94s.png │ │ ├── b_95s.png │ │ ├── b_96s.png │ │ ├── b_97s.png │ │ ├── b_98s.png │ │ ├── b_99-gmaxs.png │ │ ├── b_99s.png │ │ └── b_9s.png │ │ ├── Legends Arceus Shiny Sprites │ │ ├── c_100-1s.png │ │ ├── c_101-1s.png │ │ ├── c_108s.png │ │ ├── c_111s.png │ │ ├── c_112s.png │ │ ├── c_113s.png │ │ ├── c_114s.png │ │ ├── c_122s.png │ │ ├── c_123s.png │ │ ├── c_125s.png │ │ ├── c_126s.png │ │ ├── c_129s.png │ │ ├── c_130s.png │ │ ├── c_133s.png │ │ ├── c_134s.png │ │ ├── c_135s.png │ │ ├── c_136s.png │ │ ├── c_137s.png │ │ ├── c_143s.png │ │ ├── c_155s.png │ │ ├── c_156s.png │ │ ├── c_157-1s.png │ │ ├── c_169s.png │ │ ├── c_172s.png │ │ ├── c_173s.png │ │ ├── c_175s.png │ │ ├── c_176s.png │ │ ├── c_185s.png │ │ ├── c_190s.png │ │ ├── c_193s.png │ │ ├── c_196s.png │ │ ├── c_197s.png │ │ ├── c_198s.png │ │ ├── c_200s.png │ │ ├── c_201-10s.png │ │ ├── c_201-11s.png │ │ ├── c_201-12s.png │ │ ├── c_201-13s.png │ │ ├── c_201-14s.png │ │ ├── c_201-15s.png │ │ ├── c_201-16s.png │ │ ├── c_201-17s.png │ │ ├── c_201-18s.png │ │ ├── c_201-19s.png │ │ ├── c_201-1s.png │ │ ├── c_201-20s.png │ │ ├── c_201-21s.png │ │ ├── c_201-22s.png │ │ ├── c_201-23s.png │ │ ├── c_201-24s.png │ │ ├── c_201-25s.png │ │ ├── c_201-26s.png │ │ ├── c_201-27s.png │ │ ├── c_201-2s.png │ │ ├── c_201-3s.png │ │ ├── c_201-4s.png │ │ ├── c_201-5s.png │ │ ├── c_201-6s.png │ │ ├── c_201-7s.png │ │ ├── c_201-8s.png │ │ ├── c_201-9s.png │ │ ├── c_201s.png │ │ ├── c_207s.png │ │ ├── c_208s.png │ │ ├── c_211-1s.png │ │ ├── c_212s.png │ │ ├── c_214s.png │ │ ├── c_215-1s.png │ │ ├── c_215s.png │ │ ├── c_216s.png │ │ ├── c_217s.png │ │ ├── c_220s.png │ │ ├── c_221s.png │ │ ├── c_223s.png │ │ ├── c_224s.png │ │ ├── c_226s.png │ │ ├── c_233s.png │ │ ├── c_234s.png │ │ ├── c_239s.png │ │ ├── c_240s.png │ │ ├── c_242s.png │ │ ├── c_25s.png │ │ ├── c_265s.png │ │ ├── c_266s.png │ │ ├── c_267s.png │ │ ├── c_268s.png │ │ ├── c_269s.png │ │ ├── c_26s.png │ │ ├── c_280s.png │ │ ├── c_281s.png │ │ ├── c_282s.png │ │ ├── c_299s.png │ │ ├── c_315s.png │ │ ├── c_339s.png │ │ ├── c_340s.png │ │ ├── c_355s.png │ │ ├── c_356s.png │ │ ├── c_358s.png │ │ ├── c_35s.png │ │ ├── c_361s.png │ │ ├── c_362s.png │ │ ├── c_363s.png │ │ ├── c_364s.png │ │ ├── c_365s.png │ │ ├── c_36s.png │ │ ├── c_37-1s.png │ │ ├── c_37s.png │ │ ├── c_38-1s.png │ │ ├── c_387s.png │ │ ├── c_388s.png │ │ ├── c_389s.png │ │ ├── c_38s.png │ │ ├── c_390s.png │ │ ├── c_391s.png │ │ ├── c_392s.png │ │ ├── c_393s.png │ │ ├── c_394s.png │ │ ├── c_395s.png │ │ ├── c_396s.png │ │ ├── c_397s.png │ │ ├── c_398s.png │ │ ├── c_399s.png │ │ ├── c_400s.png │ │ ├── c_401s.png │ │ ├── c_402s.png │ │ ├── c_403s.png │ │ ├── c_404s.png │ │ ├── c_405s.png │ │ ├── c_406s.png │ │ ├── c_407s.png │ │ ├── c_408s.png │ │ ├── c_409s.png │ │ ├── c_410s.png │ │ ├── c_411s.png │ │ ├── c_412-1s.png │ │ ├── c_412-2s.png │ │ ├── c_412s.png │ │ ├── c_413-1s.png │ │ ├── c_413-2s.png │ │ ├── c_413s.png │ │ ├── c_414s.png │ │ ├── c_415s.png │ │ ├── c_416s.png │ │ ├── c_417s.png │ │ ├── c_418s.png │ │ ├── c_419s.png │ │ ├── c_41s.png │ │ ├── c_420s.png │ │ ├── c_421-1s.png │ │ ├── c_421s.png │ │ ├── c_422-1s.png │ │ ├── c_422s.png │ │ ├── c_423-1s.png │ │ ├── c_423s.png │ │ ├── c_424s.png │ │ ├── c_425s.png │ │ ├── c_426s.png │ │ ├── c_427s.png │ │ ├── c_428s.png │ │ ├── c_429s.png │ │ ├── c_42s.png │ │ ├── c_430s.png │ │ ├── c_431s.png │ │ ├── c_432s.png │ │ ├── c_433s.png │ │ ├── c_434s.png │ │ ├── c_435s.png │ │ ├── c_436s.png │ │ ├── c_437s.png │ │ ├── c_438s.png │ │ ├── c_439s.png │ │ ├── c_440s.png │ │ ├── c_441s.png │ │ ├── c_442s.png │ │ ├── c_443s.png │ │ ├── c_444s.png │ │ ├── c_445s.png │ │ ├── c_446s.png │ │ ├── c_447s.png │ │ ├── c_448s.png │ │ ├── c_449fs.png │ │ ├── c_449s.png │ │ ├── c_450fs.png │ │ ├── c_450s.png │ │ ├── c_451s.png │ │ ├── c_452s.png │ │ ├── c_453s.png │ │ ├── c_454s.png │ │ ├── c_455s.png │ │ ├── c_456s.png │ │ ├── c_457s.png │ │ ├── c_458s.png │ │ ├── c_459s.png │ │ ├── c_460s.png │ │ ├── c_461s.png │ │ ├── c_462s.png │ │ ├── c_463s.png │ │ ├── c_464s.png │ │ ├── c_465s.png │ │ ├── c_466s.png │ │ ├── c_467s.png │ │ ├── c_468s.png │ │ ├── c_469s.png │ │ ├── c_46s.png │ │ ├── c_470s.png │ │ ├── c_471s.png │ │ ├── c_472s.png │ │ ├── c_473s.png │ │ ├── c_474s.png │ │ ├── c_475s.png │ │ ├── c_476s.png │ │ ├── c_477s.png │ │ ├── c_478s.png │ │ ├── c_479-1s.png │ │ ├── c_479-2s.png │ │ ├── c_479-3s.png │ │ ├── c_479-4s.png │ │ ├── c_479-5s.png │ │ ├── c_479s.png │ │ ├── c_47s.png │ │ ├── c_480s.png │ │ ├── c_481s.png │ │ ├── c_482s.png │ │ ├── c_483-1s.png │ │ ├── c_483s.png │ │ ├── c_484-1s.png │ │ ├── c_484s.png │ │ ├── c_485s.png │ │ ├── c_486s.png │ │ ├── c_487-1s.png │ │ ├── c_487s.png │ │ ├── c_488s.png │ │ ├── c_489s.png │ │ ├── c_490s.png │ │ ├── c_491s.png │ │ ├── c_492-1s.png │ │ ├── c_492s.png │ │ ├── c_493-10s.png │ │ ├── c_493-11s.png │ │ ├── c_493-12s.png │ │ ├── c_493-13s.png │ │ ├── c_493-14s.png │ │ ├── c_493-15s.png │ │ ├── c_493-16s.png │ │ ├── c_493-17s.png │ │ ├── c_493-18s.png │ │ ├── c_493-1s.png │ │ ├── c_493-2s.png │ │ ├── c_493-3s.png │ │ ├── c_493-4s.png │ │ ├── c_493-5s.png │ │ ├── c_493-6s.png │ │ ├── c_493-7s.png │ │ ├── c_493-8s.png │ │ ├── c_493-9s.png │ │ ├── c_493s.png │ │ ├── c_501s.png │ │ ├── c_502s.png │ │ ├── c_503-1s.png │ │ ├── c_548s.png │ │ ├── c_549-1s.png │ │ ├── c_54s.png │ │ ├── c_550-2s.png │ │ ├── c_55s.png │ │ ├── c_570-1s.png │ │ ├── c_571-1s.png │ │ ├── c_58-1s.png │ │ ├── c_59-1s.png │ │ ├── c_627s.png │ │ ├── c_628-1s.png │ │ ├── c_63s.png │ │ ├── c_641-1s.png │ │ ├── c_641s.png │ │ ├── c_642-1s.png │ │ ├── c_642s.png │ │ ├── c_645-1s.png │ │ ├── c_645s.png │ │ ├── c_64s.png │ │ ├── c_65s.png │ │ ├── c_66s.png │ │ ├── c_67s.png │ │ ├── c_68s.png │ │ ├── c_700s.png │ │ ├── c_704s.png │ │ ├── c_705-1s.png │ │ ├── c_706-1s.png │ │ ├── c_712s.png │ │ ├── c_713-1s.png │ │ ├── c_722s.png │ │ ├── c_723s.png │ │ ├── c_724-1s.png │ │ ├── c_72s.png │ │ ├── c_73s.png │ │ ├── c_74s.png │ │ ├── c_75s.png │ │ ├── c_76s.png │ │ ├── c_77s.png │ │ ├── c_78s.png │ │ ├── c_81s.png │ │ ├── c_82s.png │ │ ├── c_899s.png │ │ ├── c_900s.png │ │ ├── c_901s.png │ │ ├── c_902-1s.png │ │ ├── c_902s.png │ │ ├── c_903s.png │ │ ├── c_904s.png │ │ ├── c_905-1s.png │ │ ├── c_905s.png │ │ ├── c_92s.png │ │ ├── c_93s.png │ │ ├── c_94s.png │ │ └── c_95s.png │ │ ├── Legends Arceus Sprites │ │ ├── c_100-1.png │ │ ├── c_101-1.png │ │ ├── c_101-2.png │ │ ├── c_108.png │ │ ├── c_111.png │ │ ├── c_112.png │ │ ├── c_113.png │ │ ├── c_114.png │ │ ├── c_122.png │ │ ├── c_123.png │ │ ├── c_125.png │ │ ├── c_126.png │ │ ├── c_129.png │ │ ├── c_130.png │ │ ├── c_133.png │ │ ├── c_134.png │ │ ├── c_135.png │ │ ├── c_136.png │ │ ├── c_137.png │ │ ├── c_143.png │ │ ├── c_155.png │ │ ├── c_156.png │ │ ├── c_157-1.png │ │ ├── c_169.png │ │ ├── c_172.png │ │ ├── c_173.png │ │ ├── c_175.png │ │ ├── c_176.png │ │ ├── c_185.png │ │ ├── c_190.png │ │ ├── c_193.png │ │ ├── c_196.png │ │ ├── c_197.png │ │ ├── c_198.png │ │ ├── c_200.png │ │ ├── c_201-1.png │ │ ├── c_201-10.png │ │ ├── c_201-11.png │ │ ├── c_201-12.png │ │ ├── c_201-13.png │ │ ├── c_201-14.png │ │ ├── c_201-15.png │ │ ├── c_201-16.png │ │ ├── c_201-17.png │ │ ├── c_201-18.png │ │ ├── c_201-19.png │ │ ├── c_201-2.png │ │ ├── c_201-20.png │ │ ├── c_201-21.png │ │ ├── c_201-22.png │ │ ├── c_201-23.png │ │ ├── c_201-24.png │ │ ├── c_201-25.png │ │ ├── c_201-26.png │ │ ├── c_201-27.png │ │ ├── c_201-3.png │ │ ├── c_201-4.png │ │ ├── c_201-5.png │ │ ├── c_201-6.png │ │ ├── c_201-7.png │ │ ├── c_201-8.png │ │ ├── c_201-9.png │ │ ├── c_201.png │ │ ├── c_207.png │ │ ├── c_208.png │ │ ├── c_211-1.png │ │ ├── c_212.png │ │ ├── c_214.png │ │ ├── c_215-1.png │ │ ├── c_215.png │ │ ├── c_216.png │ │ ├── c_217.png │ │ ├── c_220.png │ │ ├── c_221.png │ │ ├── c_223.png │ │ ├── c_224.png │ │ ├── c_226.png │ │ ├── c_233.png │ │ ├── c_234.png │ │ ├── c_239.png │ │ ├── c_240.png │ │ ├── c_242.png │ │ ├── c_25.png │ │ ├── c_26.png │ │ ├── c_265.png │ │ ├── c_266.png │ │ ├── c_267.png │ │ ├── c_268.png │ │ ├── c_269.png │ │ ├── c_280.png │ │ ├── c_281.png │ │ ├── c_282.png │ │ ├── c_299.png │ │ ├── c_315.png │ │ ├── c_339.png │ │ ├── c_340.png │ │ ├── c_35.png │ │ ├── c_355.png │ │ ├── c_356.png │ │ ├── c_358.png │ │ ├── c_36.png │ │ ├── c_361.png │ │ ├── c_362.png │ │ ├── c_363.png │ │ ├── c_364.png │ │ ├── c_365.png │ │ ├── c_37-1.png │ │ ├── c_37.png │ │ ├── c_38-1.png │ │ ├── c_38.png │ │ ├── c_387.png │ │ ├── c_388.png │ │ ├── c_389.png │ │ ├── c_390.png │ │ ├── c_391.png │ │ ├── c_392.png │ │ ├── c_393.png │ │ ├── c_394.png │ │ ├── c_395.png │ │ ├── c_396.png │ │ ├── c_397.png │ │ ├── c_398.png │ │ ├── c_399.png │ │ ├── c_400.png │ │ ├── c_401.png │ │ ├── c_402.png │ │ ├── c_403.png │ │ ├── c_404.png │ │ ├── c_405.png │ │ ├── c_406.png │ │ ├── c_407.png │ │ ├── c_408.png │ │ ├── c_409.png │ │ ├── c_41.png │ │ ├── c_410.png │ │ ├── c_411.png │ │ ├── c_412-1.png │ │ ├── c_412-2.png │ │ ├── c_412.png │ │ ├── c_413-1.png │ │ ├── c_413-2.png │ │ ├── c_413.png │ │ ├── c_414.png │ │ ├── c_415.png │ │ ├── c_416.png │ │ ├── c_417.png │ │ ├── c_418.png │ │ ├── c_419.png │ │ ├── c_42.png │ │ ├── c_420.png │ │ ├── c_421-1.png │ │ ├── c_421.png │ │ ├── c_422-1.png │ │ ├── c_422.png │ │ ├── c_423-1.png │ │ ├── c_423.png │ │ ├── c_424.png │ │ ├── c_425.png │ │ ├── c_426.png │ │ ├── c_427.png │ │ ├── c_428.png │ │ ├── c_429.png │ │ ├── c_430.png │ │ ├── c_431.png │ │ ├── c_432.png │ │ ├── c_433.png │ │ ├── c_434.png │ │ ├── c_435.png │ │ ├── c_436.png │ │ ├── c_437.png │ │ ├── c_438.png │ │ ├── c_439.png │ │ ├── c_440.png │ │ ├── c_441.png │ │ ├── c_442.png │ │ ├── c_443.png │ │ ├── c_444.png │ │ ├── c_445.png │ │ ├── c_446.png │ │ ├── c_447.png │ │ ├── c_448.png │ │ ├── c_449.png │ │ ├── c_449f.png │ │ ├── c_450.png │ │ ├── c_450f.png │ │ ├── c_451.png │ │ ├── c_452.png │ │ ├── c_453.png │ │ ├── c_454.png │ │ ├── c_455.png │ │ ├── c_456.png │ │ ├── c_457.png │ │ ├── c_458.png │ │ ├── c_459.png │ │ ├── c_46.png │ │ ├── c_460.png │ │ ├── c_461.png │ │ ├── c_462.png │ │ ├── c_463.png │ │ ├── c_464.png │ │ ├── c_465.png │ │ ├── c_466.png │ │ ├── c_467.png │ │ ├── c_468.png │ │ ├── c_469.png │ │ ├── c_47.png │ │ ├── c_470.png │ │ ├── c_471.png │ │ ├── c_472.png │ │ ├── c_473.png │ │ ├── c_474.png │ │ ├── c_475.png │ │ ├── c_476.png │ │ ├── c_477.png │ │ ├── c_478.png │ │ ├── c_479-1.png │ │ ├── c_479-2.png │ │ ├── c_479-3.png │ │ ├── c_479-4.png │ │ ├── c_479-5.png │ │ ├── c_479.png │ │ ├── c_480.png │ │ ├── c_481.png │ │ ├── c_482.png │ │ ├── c_483-1.png │ │ ├── c_483.png │ │ ├── c_484-1.png │ │ ├── c_484.png │ │ ├── c_485.png │ │ ├── c_486.png │ │ ├── c_487-1.png │ │ ├── c_487.png │ │ ├── c_488.png │ │ ├── c_489.png │ │ ├── c_490.png │ │ ├── c_491.png │ │ ├── c_492-1.png │ │ ├── c_492.png │ │ ├── c_493-1.png │ │ ├── c_493-10.png │ │ ├── c_493-11.png │ │ ├── c_493-12.png │ │ ├── c_493-13.png │ │ ├── c_493-14.png │ │ ├── c_493-15.png │ │ ├── c_493-16.png │ │ ├── c_493-17.png │ │ ├── c_493-18.png │ │ ├── c_493-2.png │ │ ├── c_493-3.png │ │ ├── c_493-4.png │ │ ├── c_493-5.png │ │ ├── c_493-6.png │ │ ├── c_493-7.png │ │ ├── c_493-8.png │ │ ├── c_493-9.png │ │ ├── c_493.png │ │ ├── c_501.png │ │ ├── c_502.png │ │ ├── c_503-1.png │ │ ├── c_54.png │ │ ├── c_548.png │ │ ├── c_549-1.png │ │ ├── c_549-2.png │ │ ├── c_55.png │ │ ├── c_550-2.png │ │ ├── c_570-1.png │ │ ├── c_571-1.png │ │ ├── c_58-1.png │ │ ├── c_59-1.png │ │ ├── c_59-2.png │ │ ├── c_627.png │ │ ├── c_628-1.png │ │ ├── c_63.png │ │ ├── c_64.png │ │ ├── c_641-1.png │ │ ├── c_641.png │ │ ├── c_642-1.png │ │ ├── c_642.png │ │ ├── c_645-1.png │ │ ├── c_645.png │ │ ├── c_65.png │ │ ├── c_66.png │ │ ├── c_67.png │ │ ├── c_68.png │ │ ├── c_700.png │ │ ├── c_704.png │ │ ├── c_705-1.png │ │ ├── c_706-1.png │ │ ├── c_712.png │ │ ├── c_713-1.png │ │ ├── c_713-2.png │ │ ├── c_72.png │ │ ├── c_722.png │ │ ├── c_723.png │ │ ├── c_724-1.png │ │ ├── c_73.png │ │ ├── c_74.png │ │ ├── c_75.png │ │ ├── c_76.png │ │ ├── c_77.png │ │ ├── c_78.png │ │ ├── c_81.png │ │ ├── c_82.png │ │ ├── c_899.png │ │ ├── c_900-1.png │ │ ├── c_900.png │ │ ├── c_901.png │ │ ├── c_902-1.png │ │ ├── c_902.png │ │ ├── c_903.png │ │ ├── c_904.png │ │ ├── c_905-1.png │ │ ├── c_905.png │ │ ├── c_92.png │ │ ├── c_93.png │ │ ├── c_94.png │ │ ├── c_95.png │ │ └── c_egg.png │ │ ├── Pokemon Sprite Overlays │ │ ├── alpha.png │ │ ├── alpha_alt.png │ │ ├── dyna.png │ │ ├── helditem.png │ │ ├── locked.png │ │ ├── party1.png │ │ ├── party2.png │ │ ├── party3.png │ │ ├── party4.png │ │ ├── party5.png │ │ ├── party6.png │ │ ├── rare_icon.png │ │ ├── rare_icon_2.png │ │ ├── rare_icon_alt.png │ │ ├── rare_icon_alt_2.png │ │ ├── starter.png │ │ └── team.png │ │ ├── Status │ │ ├── sickburn.png │ │ ├── sickfaint.png │ │ ├── sickfrostbite.png │ │ ├── sickparalyze.png │ │ ├── sickpoison.png │ │ ├── sicksleep.png │ │ └── sicktoxic.png │ │ ├── accents │ │ ├── slotDel.png │ │ ├── slotDel68.png │ │ ├── slotDrag.png │ │ ├── slotDrag68.png │ │ ├── slotHover.png │ │ ├── slotHover68.png │ │ ├── slotSet.png │ │ ├── slotSet68.png │ │ ├── slotTrans.png │ │ ├── slotTrans68.png │ │ ├── slotView.png │ │ └── slotView68.png │ │ ├── ball │ │ ├── _ball1.png │ │ ├── _ball10.png │ │ ├── _ball11.png │ │ ├── _ball12.png │ │ ├── _ball13.png │ │ ├── _ball14.png │ │ ├── _ball15.png │ │ ├── _ball16.png │ │ ├── _ball17.png │ │ ├── _ball18.png │ │ ├── _ball19.png │ │ ├── _ball2.png │ │ ├── _ball20.png │ │ ├── _ball21.png │ │ ├── _ball22.png │ │ ├── _ball23.png │ │ ├── _ball24.png │ │ ├── _ball25.png │ │ ├── _ball26.png │ │ ├── _ball27.png │ │ ├── _ball28.png │ │ ├── _ball29.png │ │ ├── _ball3.png │ │ ├── _ball30.png │ │ ├── _ball31.png │ │ ├── _ball32.png │ │ ├── _ball33.png │ │ ├── _ball34.png │ │ ├── _ball35.png │ │ ├── _ball36.png │ │ ├── _ball37.png │ │ ├── _ball4.png │ │ ├── _ball5.png │ │ ├── _ball6.png │ │ ├── _ball7.png │ │ ├── _ball8.png │ │ └── _ball9.png │ │ ├── hint.png │ │ ├── valid.png │ │ └── warn.png └── Util │ ├── ContestColor.cs │ ├── SpriteName.cs │ ├── SpriteUtil.cs │ ├── StatusColor.cs │ └── TypeColor.cs ├── PKHeX.Drawing ├── ColorUtil.cs ├── ImageUtil.cs └── PKHeX.Drawing.csproj ├── PKHeX.WinForms ├── Controls │ ├── PKM Editor │ │ ├── BallBrowser.Designer.cs │ │ ├── BallBrowser.cs │ │ ├── CatchRate.Designer.cs │ │ ├── CatchRate.cs │ │ ├── ContestStat.Designer.cs │ │ ├── ContestStat.cs │ │ ├── ContextMenuPKM.Designer.cs │ │ ├── ContextMenuPKM.cs │ │ ├── DrawConfig.cs │ │ ├── EditPK1.cs │ │ ├── EditPK2.cs │ │ ├── EditPK3.cs │ │ ├── EditPK4.cs │ │ ├── EditPK5.cs │ │ ├── EditPK6.cs │ │ ├── EditPK7.cs │ │ ├── EditPK8.cs │ │ ├── EditPK9.cs │ │ ├── EntityInstructionBuilder.Designer.cs │ │ ├── EntityInstructionBuilder.cs │ │ ├── FormArgument.Designer.cs │ │ ├── FormArgument.cs │ │ ├── GenderToggle.Designer.cs │ │ ├── GenderToggle.cs │ │ ├── IMainEditor.cs │ │ ├── LoadSave.cs │ │ ├── MoveChoice.Designer.cs │ │ ├── MoveChoice.cs │ │ ├── MoveDisplay.Designer.cs │ │ ├── MoveDisplay.cs │ │ ├── MoveDisplayState.cs │ │ ├── PKMEditor.Designer.cs │ │ ├── PKMEditor.cs │ │ ├── PKMEditor.resx │ │ ├── SelectablePictureBox.cs │ │ ├── ShinyLeaf.Designer.cs │ │ ├── ShinyLeaf.cs │ │ ├── ShinyLeaf.resx │ │ ├── SizeCP.Designer.cs │ │ ├── SizeCP.cs │ │ ├── StatEditor.Designer.cs │ │ ├── StatEditor.cs │ │ ├── StatusBrowser.Designer.cs │ │ ├── StatusBrowser.cs │ │ ├── StatusConditionView.Designer.cs │ │ ├── StatusConditionView.cs │ │ ├── TrainerID.Designer.cs │ │ ├── TrainerID.cs │ │ └── VerticalTabControl.cs │ ├── SAV Editor │ │ ├── BitmapAnimator.cs │ │ ├── BoxEditor.Designer.cs │ │ ├── BoxEditor.cs │ │ ├── BoxMenuStrip.cs │ │ ├── ContextMenuSAV.Designer.cs │ │ ├── ContextMenuSAV.cs │ │ ├── PartyEditor.Designer.cs │ │ ├── PartyEditor.cs │ │ ├── SAVEditor.Designer.cs │ │ ├── SAVEditor.cs │ │ ├── SAVEditor.resx │ │ └── SlotChangeManager.cs │ └── Slots │ │ ├── CryPlayer.cs │ │ ├── DoubleBufferedDataGridView.cs │ │ ├── DragManager.cs │ │ ├── DropModifier.cs │ │ ├── PokeGrid.Designer.cs │ │ ├── PokeGrid.cs │ │ ├── PokePreview.Designer.cs │ │ ├── PokePreview.cs │ │ ├── SlotChangeInfo.cs │ │ ├── SlotHoverHandler.cs │ │ ├── SlotList.Designer.cs │ │ ├── SlotList.cs │ │ ├── SlotTrackerImage.cs │ │ ├── SlotUtil.cs │ │ └── SummaryPreviewer.cs ├── MainWindow │ ├── Main.Designer.cs │ ├── Main.cs │ ├── Main.resx │ └── Plugins │ │ ├── AutoModPlugins.dll │ │ ├── PKHeX.Plugin.LivingDex.dll │ │ ├── PLZASeedFinderPlugin.dll │ │ ├── SVSeedFinderPlugin.dll │ │ ├── SWSHSeedFinderPlugin.dll │ │ └── SpindaPatternPlugin.dll ├── Misc │ ├── About.Designer.cs │ ├── About.cs │ ├── ErrorWindow.Designer.cs │ ├── ErrorWindow.cs │ ├── QR.Designer.cs │ ├── QR.cs │ ├── SplashScreen.Designer.cs │ └── SplashScreen.cs ├── PKHeX.WinForms.csproj ├── Program.cs ├── Properties │ ├── Resources.Designer.cs │ └── Resources.resx ├── Resources │ ├── byte │ │ ├── PGLDings-NormalRegular.ttf │ │ ├── fashion_f_sm │ │ ├── fashion_f_sm_illegal │ │ ├── fashion_f_uu │ │ ├── fashion_f_uu_illegal │ │ ├── fashion_m_sm │ │ ├── fashion_m_sm_illegal │ │ ├── fashion_m_uu │ │ └── fashion_m_uu_illegal │ ├── icon.ico │ ├── img │ │ ├── Accents │ │ │ ├── box_wp_clean.png │ │ │ ├── box_wp_default.png │ │ │ ├── gender_0.png │ │ │ ├── gender_1.png │ │ │ ├── gender_2.png │ │ │ ├── locked.png │ │ │ ├── party.png │ │ │ ├── ribbon_affix_none.png │ │ │ ├── valid.png │ │ │ └── warn.png │ │ ├── Bag │ │ │ ├── bag_balls.png │ │ │ ├── bag_battle.png │ │ │ ├── bag_berries.png │ │ │ ├── bag_candy.png │ │ │ ├── bag_free.png │ │ │ ├── bag_ingredient.png │ │ │ ├── bag_items.png │ │ │ ├── bag_key.png │ │ │ ├── bag_mail.png │ │ │ ├── bag_medicine.png │ │ │ ├── bag_mega.png │ │ │ ├── bag_pcitems.png │ │ │ ├── bag_tech.png │ │ │ ├── bag_treasure.png │ │ │ └── bag_z.png │ │ ├── Markings │ │ │ ├── 6th.png │ │ │ ├── alora.png │ │ │ ├── anti_pokerus_icon.png │ │ │ ├── box_mark_01.png │ │ │ ├── box_mark_02.png │ │ │ ├── box_mark_03.png │ │ │ ├── box_mark_04.png │ │ │ ├── box_mark_05.png │ │ │ ├── box_mark_06.png │ │ │ ├── crown.png │ │ │ ├── gen_6.png │ │ │ ├── gen_7.png │ │ │ ├── gen_8.png │ │ │ ├── gen_bs.png │ │ │ ├── gen_gg.png │ │ │ ├── gen_go.png │ │ │ ├── gen_la.png │ │ │ ├── gen_sv.png │ │ │ ├── gen_vc.png │ │ │ ├── gen_za.png │ │ │ ├── horohoro.png │ │ │ ├── icon_btlrom.png │ │ │ ├── icon_favo.png │ │ │ ├── leaf.png │ │ │ ├── rare_icon.png │ │ │ ├── rare_icon_2.png │ │ │ └── vc.png │ │ ├── Pokedex │ │ │ └── research_bonus_points.png │ │ ├── Program │ │ │ ├── about.png │ │ │ ├── alpha.png │ │ │ ├── alphaAZ.png │ │ │ ├── alphaZA.png │ │ │ ├── bak.png │ │ │ ├── data.png │ │ │ ├── database.png │ │ │ ├── date.png │ │ │ ├── dump.png │ │ │ ├── exit.png │ │ │ ├── export.png │ │ │ ├── folder.png │ │ │ ├── gift.png │ │ │ ├── heart.png │ │ │ ├── import.png │ │ │ ├── language.png │ │ │ ├── load.png │ │ │ ├── main.png │ │ │ ├── nocheck.png │ │ │ ├── numhilo.png │ │ │ ├── numlohi.png │ │ │ ├── open.png │ │ │ ├── other.png │ │ │ ├── qr.png │ │ │ ├── redo.png │ │ │ ├── report.png │ │ │ ├── savePKM.png │ │ │ ├── saveSAV.png │ │ │ ├── settings.png │ │ │ ├── showdown.png │ │ │ ├── user.png │ │ │ ├── users.png │ │ │ ├── valhilo.png │ │ │ ├── vallohi.png │ │ │ └── wand.png │ │ └── Slots │ │ │ └── swapBox.png │ └── text │ │ ├── changelog.txt │ │ ├── changelog_2018.txt │ │ ├── changelog_2019.txt │ │ ├── changelog_2020.txt │ │ ├── changelog_2022.txt │ │ ├── lang_de.txt │ │ ├── lang_en.txt │ │ ├── lang_es-419.txt │ │ ├── lang_es.txt │ │ ├── lang_fr.txt │ │ ├── lang_it.txt │ │ ├── lang_ja.txt │ │ ├── lang_ko.txt │ │ ├── lang_zh-Hans.txt │ │ ├── lang_zh-Hant.txt │ │ └── shortcuts.txt ├── Settings │ ├── DisplaySettings.cs │ ├── HoverSettings.cs │ ├── PKHeXSettings.cs │ ├── SlotExportSettings.cs │ ├── SpriteSettings.cs │ └── StartupSettings.cs ├── Subforms │ ├── BoxExporter.Designer.cs │ ├── BoxExporter.cs │ ├── KChart.Designer.cs │ ├── KChart.cs │ ├── Misc │ │ ├── EntitySummaryImage.cs │ │ ├── PropertyComparer.cs │ │ └── SortableBindingList.cs │ ├── PKM Editors │ │ ├── BatchEditor.Designer.cs │ │ ├── BatchEditor.cs │ │ ├── MemoryAmie.Designer.cs │ │ ├── MemoryAmie.cs │ │ ├── MoveShopEditor.Designer.cs │ │ ├── MoveShopEditor.cs │ │ ├── PlusRecordEditor.Designer.cs │ │ ├── PlusRecordEditor.cs │ │ ├── RibbonEditor.Designer.cs │ │ ├── RibbonEditor.cs │ │ ├── SuperTrainingEditor.Designer.cs │ │ ├── SuperTrainingEditor.cs │ │ ├── TechRecordEditor.Designer.cs │ │ ├── TechRecordEditor.cs │ │ ├── Text.Designer.cs │ │ └── Text.cs │ ├── ReportGrid.Designer.cs │ ├── ReportGrid.cs │ ├── SAV_Database.Designer.cs │ ├── SAV_Database.cs │ ├── SAV_Encounters.Designer.cs │ ├── SAV_Encounters.cs │ ├── SAV_FolderList.Designer.cs │ ├── SAV_FolderList.cs │ ├── SAV_MysteryGiftDB.Designer.cs │ ├── SAV_MysteryGiftDB.cs │ ├── Save Editors │ │ ├── Gen1 │ │ │ ├── SAV_EventReset1.Designer.cs │ │ │ ├── SAV_EventReset1.cs │ │ │ ├── SAV_HallOfFame1.Designer.cs │ │ │ └── SAV_HallOfFame1.cs │ │ ├── Gen2 │ │ │ ├── SAV_Misc2.Designer.cs │ │ │ └── SAV_Misc2.cs │ │ ├── Gen3 │ │ │ ├── PokeBlock3CaseEditor.Designer.cs │ │ │ ├── PokeBlock3CaseEditor.cs │ │ │ ├── SAV_HallOfFame3.Designer.cs │ │ │ ├── SAV_HallOfFame3.cs │ │ │ ├── SAV_Misc3.Designer.cs │ │ │ ├── SAV_Misc3.cs │ │ │ ├── SAV_RTC3.Designer.cs │ │ │ ├── SAV_RTC3.cs │ │ │ ├── SAV_Roamer3.Designer.cs │ │ │ ├── SAV_Roamer3.cs │ │ │ ├── SAV_SecretBase3.Designer.cs │ │ │ └── SAV_SecretBase3.cs │ │ ├── Gen4 │ │ │ ├── PoffinCase4Editor.Designer.cs │ │ │ ├── PoffinCase4Editor.cs │ │ │ ├── PokeGear4Editor.Designer.cs │ │ │ ├── PokeGear4Editor.cs │ │ │ ├── SAV_Apricorn.Designer.cs │ │ │ ├── SAV_Apricorn.cs │ │ │ ├── SAV_BattlePass.Designer.cs │ │ │ ├── SAV_BattlePass.cs │ │ │ ├── SAV_Gear.Designer.cs │ │ │ ├── SAV_Gear.cs │ │ │ ├── SAV_Geonet4.Designer.cs │ │ │ ├── SAV_Geonet4.cs │ │ │ ├── SAV_HoneyTree.Designer.cs │ │ │ ├── SAV_HoneyTree.cs │ │ │ ├── SAV_Misc4.Designer.cs │ │ │ ├── SAV_Misc4.cs │ │ │ ├── SAV_Pokedex4.Designer.cs │ │ │ ├── SAV_Pokedex4.cs │ │ │ ├── SAV_Trainer4BR.Designer.cs │ │ │ ├── SAV_Trainer4BR.cs │ │ │ ├── SAV_Underground.Designer.cs │ │ │ └── SAV_Underground.cs │ │ ├── Gen5 │ │ │ ├── CGearImage.cs │ │ │ ├── SAV_DLC5.Designer.cs │ │ │ ├── SAV_DLC5.cs │ │ │ ├── SAV_Misc5.Designer.cs │ │ │ ├── SAV_Misc5.cs │ │ │ ├── SAV_Misc5.resx │ │ │ ├── SAV_Pokedex5.Designer.cs │ │ │ ├── SAV_Pokedex5.cs │ │ │ ├── SAV_UnityTower.Designer.cs │ │ │ └── SAV_UnityTower.cs │ │ ├── Gen6 │ │ │ ├── SAV_BerryFieldXY.Designer.cs │ │ │ ├── SAV_BerryFieldXY.cs │ │ │ ├── SAV_BoxLayout.Designer.cs │ │ │ ├── SAV_BoxLayout.cs │ │ │ ├── SAV_HallOfFame.Designer.cs │ │ │ ├── SAV_HallOfFame.cs │ │ │ ├── SAV_Link6.Designer.cs │ │ │ ├── SAV_Link6.cs │ │ │ ├── SAV_OPower.Designer.cs │ │ │ ├── SAV_OPower.cs │ │ │ ├── SAV_PokeBlockORAS.Designer.cs │ │ │ ├── SAV_PokeBlockORAS.cs │ │ │ ├── SAV_PokedexORAS.Designer.cs │ │ │ ├── SAV_PokedexORAS.cs │ │ │ ├── SAV_PokedexXY.Designer.cs │ │ │ ├── SAV_PokedexXY.cs │ │ │ ├── SAV_Pokepuff.Designer.cs │ │ │ ├── SAV_Pokepuff.cs │ │ │ ├── SAV_Roamer6.Designer.cs │ │ │ ├── SAV_Roamer6.cs │ │ │ ├── SAV_SecretBase.Designer.cs │ │ │ ├── SAV_SecretBase.cs │ │ │ ├── SAV_SuperTrain.Designer.cs │ │ │ ├── SAV_SuperTrain.cs │ │ │ ├── SAV_Trainer.Designer.cs │ │ │ └── SAV_Trainer.cs │ │ ├── Gen7 │ │ │ ├── SAV_Capture7GG.Designer.cs │ │ │ ├── SAV_Capture7GG.cs │ │ │ ├── SAV_FestivalPlaza.Designer.cs │ │ │ ├── SAV_FestivalPlaza.cs │ │ │ ├── SAV_HallOfFame7.Designer.cs │ │ │ ├── SAV_HallOfFame7.cs │ │ │ ├── SAV_Pokebean.Designer.cs │ │ │ ├── SAV_Pokebean.cs │ │ │ ├── SAV_PokedexGG.Designer.cs │ │ │ ├── SAV_PokedexGG.cs │ │ │ ├── SAV_PokedexSM.Designer.cs │ │ │ ├── SAV_PokedexSM.cs │ │ │ ├── SAV_Trainer7.Designer.cs │ │ │ ├── SAV_Trainer7.cs │ │ │ ├── SAV_Trainer7GG.Designer.cs │ │ │ ├── SAV_Trainer7GG.cs │ │ │ ├── SAV_ZygardeCell.Designer.cs │ │ │ └── SAV_ZygardeCell.cs │ │ ├── Gen8 │ │ │ ├── PokedexResearchTask8aPanel.Designer.cs │ │ │ ├── PokedexResearchTask8aPanel.cs │ │ │ ├── SAV_BlockDump8.Designer.cs │ │ │ ├── SAV_BlockDump8.cs │ │ │ ├── SAV_FlagWork8b.Designer.cs │ │ │ ├── SAV_FlagWork8b.cs │ │ │ ├── SAV_Misc8b.Designer.cs │ │ │ ├── SAV_Misc8b.cs │ │ │ ├── SAV_Poffin8b.Designer.cs │ │ │ ├── SAV_Poffin8b.cs │ │ │ ├── SAV_PokedexBDSP.Designer.cs │ │ │ ├── SAV_PokedexBDSP.cs │ │ │ ├── SAV_PokedexLA.Designer.cs │ │ │ ├── SAV_PokedexLA.cs │ │ │ ├── SAV_PokedexResearchEditorLA.Designer.cs │ │ │ ├── SAV_PokedexResearchEditorLA.cs │ │ │ ├── SAV_PokedexSWSH.Designer.cs │ │ │ ├── SAV_PokedexSWSH.cs │ │ │ ├── SAV_PokedexSWSH.resx │ │ │ ├── SAV_Raid8.Designer.cs │ │ │ ├── SAV_Raid8.cs │ │ │ ├── SAV_SealStickers8b.Designer.cs │ │ │ ├── SAV_SealStickers8b.cs │ │ │ ├── SAV_Trainer8.Designer.cs │ │ │ ├── SAV_Trainer8.cs │ │ │ ├── SAV_Trainer8a.Designer.cs │ │ │ ├── SAV_Trainer8a.cs │ │ │ ├── SAV_Trainer8b.Designer.cs │ │ │ ├── SAV_Trainer8b.cs │ │ │ ├── SAV_Underground8b.Designer.cs │ │ │ └── SAV_Underground8b.cs │ │ ├── Gen9 │ │ │ ├── EventWorkGrid64.cs │ │ │ ├── SAV_Fashion9.Designer.cs │ │ │ ├── SAV_Fashion9.cs │ │ │ ├── SAV_FlagWork9a.Designer.cs │ │ │ ├── SAV_FlagWork9a.cs │ │ │ ├── SAV_Pokedex9a.Designer.cs │ │ │ ├── SAV_Pokedex9a.cs │ │ │ ├── SAV_PokedexSV.Designer.cs │ │ │ ├── SAV_PokedexSV.cs │ │ │ ├── SAV_PokedexSVKitakami.Designer.cs │ │ │ ├── SAV_PokedexSVKitakami.cs │ │ │ ├── SAV_Raid9.Designer.cs │ │ │ ├── SAV_Raid9.cs │ │ │ ├── SAV_RaidSevenStar9.Designer.cs │ │ │ ├── SAV_RaidSevenStar9.cs │ │ │ ├── SAV_Trainer9.Designer.cs │ │ │ ├── SAV_Trainer9.cs │ │ │ ├── SAV_Trainer9a.Designer.cs │ │ │ └── SAV_Trainer9a.cs │ │ ├── Misc │ │ │ ├── SAV_Accessor.Designer.cs │ │ │ └── SAV_Accessor.cs │ │ ├── SAV_BoxList.Designer.cs │ │ ├── SAV_BoxList.cs │ │ ├── SAV_BoxViewer.Designer.cs │ │ ├── SAV_BoxViewer.cs │ │ ├── SAV_Chatter.Designer.cs │ │ ├── SAV_Chatter.cs │ │ ├── SAV_EventFlags.Designer.cs │ │ ├── SAV_EventFlags.cs │ │ ├── SAV_EventFlags2.Designer.cs │ │ ├── SAV_EventFlags2.cs │ │ ├── SAV_EventWork.Designer.cs │ │ ├── SAV_EventWork.cs │ │ ├── SAV_GameSelect.Designer.cs │ │ ├── SAV_GameSelect.cs │ │ ├── SAV_GroupViewer.Designer.cs │ │ ├── SAV_GroupViewer.cs │ │ ├── SAV_Inventory.Designer.cs │ │ ├── SAV_Inventory.cs │ │ ├── SAV_MailBox.Designer.cs │ │ ├── SAV_MailBox.cs │ │ ├── SAV_SimplePokedex.Designer.cs │ │ ├── SAV_SimplePokedex.cs │ │ ├── SAV_SimpleTrainer.Designer.cs │ │ ├── SAV_SimpleTrainer.cs │ │ ├── SAV_Wondercard.Designer.cs │ │ ├── SAV_Wondercard.cs │ │ ├── TrainerStat.Designer.cs │ │ ├── TrainerStat.cs │ │ └── TrainerStat.resx │ ├── SettingsEditor.Designer.cs │ └── SettingsEditor.cs └── Util │ ├── DevUtil.cs │ ├── FontUtil.cs │ ├── GengarNamer.cs │ ├── Plugins │ ├── PluginLoadContext.cs │ ├── PluginLoadResult.cs │ └── PluginLoader.cs │ ├── WinFormsTranslator.cs │ └── WinFormsUtil.cs ├── PKHeX.sln ├── PKHeX.slnx ├── README.md ├── Tests └── PKHeX.Core.Tests │ ├── General │ ├── GeneralTests.cs │ ├── LocalizationTests.cs │ ├── MarshalTests.cs │ ├── XorShiftTests.cs │ ├── Xoroshiro128Tests.cs │ └── Xoroshiro128bTests.cs │ ├── Legality │ ├── BallTests.cs │ ├── BreedTests.cs │ ├── Illegal │ │ ├── AltForm │ │ │ ├── 105-02 - Marowak - A36BF82DC6F6.pk7 │ │ │ ├── 423-01 - Gastrodon - 6CE785FF60E2.pk7 │ │ │ ├── 678-01 ★ - Meowstic - 01873505869C.pk7 │ │ │ └── 865_-_Sirfetchd_-_DC8686B1C0B9.pk8 │ │ ├── Evolution │ │ │ └── 196 ★ - ESPEON - 20386C1C9080.pk4 │ │ ├── Gen2 Tradeback │ │ │ ├── 0061 - Poliwhirl - 4B4A648BA093.pk7 │ │ │ ├── 0149 - Dragonite - B1A1E209D2E0.pk7 │ │ │ └── 0149 - Dragonite - D1C5E209D2E0.pk7 │ │ ├── Gen3 │ │ │ └── 0032 - NIDORAN♂ - 92A9F5C939C9 - edited issue4356.pk3 │ │ ├── Gen7b │ │ │ ├── 027-01 - Sandshrew - 1CD585997938 wrong version.pb7 │ │ │ └── 037-01 - Vulpix - A71285997938 wrong version.pb7 │ │ ├── Gen8 │ │ │ ├── 0292 - ヌケニン - A7D95B63395C raid shedinja bad height.pk8 │ │ │ └── 0761 - Bounsweet - FDD89FC902E6 raid downleveled antishiny bad weight.pk8 │ │ ├── Misc │ │ │ ├── 038 - タマゴ - D8E92C842F48 Evo Egg.pk3 │ │ │ ├── 094 - Gengar - B781C838BA27 Transfer BadAbilNum.pk7 │ │ │ ├── 121 ★ - EGG - 1B87 Evo Egg.pk2 │ │ │ ├── 146-01 - Moltres - F9E5ADA9EFD1 no overworld, bad genloc.pk8 │ │ │ ├── 196 - Mentali - 16FD27C35E93 Transfer LevelUp VC1.pk7 │ │ │ ├── 199 ★ - EGG - EDB6 Evo Egg.pk2 │ │ │ ├── 208 - タマゴ - E4466BAA9428 Evo Egg.pk3 │ │ │ ├── 251 - CELEBI - E96B nomet notradeback.pk2 │ │ │ ├── 497 - Serperior - gen5 HA not available.pk7 │ │ │ ├── JPN mew long nickname.pk6 │ │ │ ├── Kingdra Korean VC1.pk7 │ │ │ ├── Regigigas No Language.pk7 │ │ │ ├── Spearow VC Contest Stats.pk7 │ │ │ ├── UltraBallTeddiursa.xk3 │ │ │ ├── VC1 Celebi transfer.pk7 │ │ │ ├── VC1 Sentret transfer.pk7 │ │ │ └── XD Shuckle Gift no Fateful.ck3 │ │ ├── Moves │ │ │ ├── 292 - SHEDINJA - 4E10A0E852EE (two Ninjask Moves).pk3 │ │ │ └── 803 - Poipole - C7B3534918F0.pk7 │ │ ├── Ribbons │ │ │ ├── Illegal (has 8 out of 8 Battle Memory).pk7 │ │ │ └── Illegal (has Winning Ribbon).ck3 │ │ ├── WC3 │ │ │ ├── 001 - Bulbasaur - 4543EBE98C5F.pk7 │ │ │ └── 004 - ヒトカゲ - 1CCD0A2B1E99.pk7 │ │ ├── WC7 │ │ │ ├── 658-01 - Greninja - E95300000021.pk7 │ │ │ ├── 745-01 - Lycanroc - AA223CC9A6E7.pk7 │ │ │ ├── 745-02 - Lycanroc - B2A43CC9A6E7.pk7 │ │ │ ├── 745-02 - Lycanroc - B3A83CC9A6E7.pk7 │ │ │ └── Illegal Zygarde-1 10% Shiny with Aura Break (can't change).pk7 │ │ └── Wild │ │ │ ├── 132 - Ditto - 5CD1D273663D.pk6 │ │ │ ├── 213 - Shuckle - 825B411103A3.pk6 │ │ │ ├── 646-01 ★ - キュレム - 0D420000000A.pk5 │ │ │ ├── 706_-_Goodra_-_971B6773DCC2.pk7 │ │ │ ├── 744-01 - Rockruff - BEBC85FF60E2.pk7 │ │ │ └── 745-02 - Lycanroc - 047385FF60E2.pk7 │ ├── LearnabilityTests.cs │ ├── Legal │ │ ├── General │ │ │ ├── 004 - CHARMANDER - D5EF.pk1 │ │ │ ├── 0089-01_-_Muk_-_07FBB3839D09 move bleed HOME minimize initial GO.pk9 │ │ │ ├── 124 - ZYNX - 70DF498A2E1D.pk3 │ │ │ ├── 172 - Egg - 7D3CF55CFC10.pk4 │ │ │ ├── 183 - 알 - AA4E3344817C.pk5 │ │ │ ├── 235 - 알 - 10DB.pk2 │ │ │ ├── 236 - Oeuf - 5E05C020CB44.pk4 │ │ │ ├── 236 - 알 - F55CC3F29788.pk5 │ │ │ ├── 292 - SHEDINJA - 4889A0E852EE.pk3 │ │ │ ├── 300 - Egg - 0673311A3560.pk5 │ │ │ ├── 300 - Uovo - 0C910B68370A.pk4 │ │ │ ├── 343 - 알 - 5871F88A9BCE.pk5 │ │ │ ├── 479 - Ei - B7178C463B60.pk4 │ │ │ ├── 479 ★ - 알 - BE0D0000000A.pk5 │ │ │ ├── 610 - キバゴ - 6F91B110EED1.pk5 │ │ │ ├── 645-01 - Landorus - 57BA472C4EB8.pk6 │ │ │ └── Ribbons │ │ │ │ ├── 0248 - Tyranitar - DC689F6F123B (has 7 out of 8 Battle Memory).pk7 │ │ │ │ └── Legal (Missing Winning Ribbon).ck3 │ │ ├── Generation 1 Only │ │ │ ├── 025 - PIKACHU - E9D3.pk1 │ │ │ ├── 026 - RAZOR - 9BD7.pk1 │ │ │ ├── 133 - EEVEE - D278.pk1 │ │ │ ├── 134 - VAPOREON - F896.pk1 │ │ │ ├── 135 - JOLTEON - 7E45.pk1 │ │ │ ├── 135 - JOLTEON - 7F90.pk1 │ │ │ └── 136 - FLAREON - 50CF.pk1 │ │ ├── Generation 1 Tradeback │ │ │ └── 107 ★ - エビワラー - 68EC Gen2 Future-Gen Evo Egg.pk1 │ │ ├── Generation 2 │ │ │ ├── 025 - PIKACHU - 2129.pk2 │ │ │ ├── 031 - NIDOQUEEN - A016.pk2 │ │ │ ├── 035 - CLEFAIRY - 8A0C.pk2 │ │ │ ├── 043 - ODDISH - 2DCE.pk2 │ │ │ ├── 082 - TATO - 2D6E.pk2 │ │ │ ├── 085 - DORIS - 5C9F.pk2 │ │ │ ├── 106 - HITMONLEE - 6500.pk2 │ │ │ ├── 107 - HITMONCHAN - 26B0.pk2 │ │ │ ├── 112 - DON - 4DD6.pk2 │ │ │ ├── 138_-_OMANYTE_-_6050.pk2 │ │ │ ├── 142 - AEROY - 56BA.pk2 │ │ │ ├── 211 - Pvffs - 92DC vc.pk2 │ │ │ ├── 213 - SHUCKI - 3572.pk2 │ │ │ ├── 217 - リングマ - 1241 (Gold).pk2 │ │ │ ├── 230 - KINGDRA - 3712.pk2 │ │ │ ├── 230 - Kingdra - D08E85FF60E2.pk7 │ │ │ ├── 251 - Celebi - F8B063C95344.pk7 │ │ │ └── 251_-_CELEBI_-_1EE8.pk2 │ │ ├── Generation 3 │ │ │ ├── 144 - 3008 - BDFCED1D5D5B.pk3 │ │ │ ├── 297 - MAKIT - C47400009C40 evolve ability mismatch.pk3 │ │ │ ├── Eggs │ │ │ │ ├── 0032 - NIDORAN♂ - 92A9F5C9B9C9 - NidoranF parent issue4356.pk3 │ │ │ │ └── 0032 - NIDORAN♂ - F436F4EF3BFC - Ditto parent issue4356.pk3 │ │ │ ├── LevelUp learn move then Evolve │ │ │ │ ├── 195 - QUAGSIRE - E2AD60FEC722.pk3 │ │ │ │ ├── 229 - HOUNDOOM - 4311EC0CD621.pk3 │ │ │ │ ├── 284 - MASQUERAIN - 8C49324DA947.pk3 │ │ │ │ └── 461 - Weavile - 041331D10483.pk7 │ │ │ ├── Misc │ │ │ │ ├── 054 - PSYDUCK - 1FE1F661FBE0.pk3 │ │ │ │ ├── 134 - VAPOREON - B2D7984A102F XD split evo starter.pk3 │ │ │ │ ├── 228 - タマゴ - 10F596FA62A6 longOTedge.pk3 │ │ │ │ ├── 250 - HO-OH - 2241C625EB05 Italian longOT.ck3 │ │ │ │ └── 327 - Spinda - 88283DD1BB49 Method 3.pk3 │ │ │ └── XD Fateful Gifts │ │ │ │ ├── 213 - SHUCKLE - 1904411103A3 NoFateful.xk3 │ │ │ │ └── 213 - SHUCKLE - 475E411103A3 Fateful.xk3 │ │ ├── Generation 4 GroundTile │ │ │ ├── Rock Smash │ │ │ │ ├── 074 - GEODUDE - B16E2318D744.pk4 │ │ │ │ ├── 098 - KRABBY - 86943584D01B.pk4 │ │ │ │ └── 098 - KRABBY - C589B4EFB45F.pk4 │ │ │ └── Special Handling │ │ │ │ ├── 104 ★ - CUBONE - ABE400000004.pk4 │ │ │ │ ├── 201 - UNOWN - E8FFA68025F9.pk4 │ │ │ │ ├── 215 - SNEASEL - 72E6A36A07BD.pk4 │ │ │ │ ├── 231 - PHANPY - 579744E8F948.pk4 │ │ │ │ ├── 246 - LARVITAR - 2AC20000000E.pk4 │ │ │ │ ├── 246 ★ - LARVITAR - E4CF00000002.pk4 │ │ │ │ ├── 308 - MEDICHAM - 25F8A56FA3F2.pk4 │ │ │ │ └── 477 - DUSKNOIR - 12DF9E28828D.pk4 │ │ ├── Generation 4 Transfer │ │ │ ├── 230 - SEASOR - 4E170000007F.pk4 │ │ │ ├── 323 - CAMERUPT - 1EAB066E02B3.pk4 │ │ │ └── 479-04 - Fan - 68FCC25F9AB6 dp formchange egg.pk4 │ │ ├── Generation 4 │ │ │ ├── 0113 - CHANSEY - 806A14061105 swarm1 pressure.pk4 │ │ │ ├── 0113 - CHANSEY - D4E98650DFCD swarm1 pressure.pk4 │ │ │ ├── 0407 - ROSERADE - E24358625928.pk4 │ │ │ ├── 184 - AZUMARILL - 70F46DFFFF94 static genderchange.pk4 │ │ │ ├── 194 - Egg - B7B3E1614DCB Primo Wooper.pk4 │ │ │ ├── 242 - HEITEIRA - E83AB36E7C5C.pk4 │ │ │ ├── 440 - ピンプク - 17961FFFFFFE.pk4 │ │ │ └── 470 - LEAFEON - 65B05FEF8D69.pk4 │ │ ├── Generation 5 │ │ │ ├── 015 - Beedrill - 2F3A638FD1B9 gen3 transfer highlevel.pk5 │ │ │ ├── 0242 - Heiteira - C862311C7FE4.pk5 │ │ │ ├── 0407 - Roserade - 83F5F7E60F78.pk5 │ │ │ ├── 143 - Tripón - D4336200001F Evolved.pk5 │ │ │ ├── 440 - Egg - 5B70552258BA Breeder Happiny.pk5 │ │ │ ├── 446 - Tripón - BDC46200001F Trade Ability Mismatch.pk5 │ │ │ ├── 546 - Jersey - C31DDBEA71D8 french accented OT name.pk5 │ │ │ ├── 612 ★ - Haxorus - A1AC5BB800F7.pk5 │ │ │ └── 636 - Egg - F2C5552258BA Breeder Larvesta.pk5 │ │ ├── Generation 6 Static │ │ │ ├── 351 - Castform - 4988DDF4362E.pk6 │ │ │ └── 360 - Egg - 4E07D3239217 Hot Springs Wynaut.pk6 │ │ ├── Generation 6 │ │ │ ├── 0061_-_Quaputzi_-_81DD3D8C0FFD safari gen3 level.pk6 │ │ │ ├── 035 - Clefairy - 2A2C8A94FA80 dexnav.pk6 │ │ │ ├── 087 - Dewgong - B33438369BC5 dexnav.pk6 │ │ │ ├── 097 - Hypno - F845514A2D54 dexnav.pk6 │ │ │ ├── 236 - Tyrogue - 88A5A8BF7345.pk6 │ │ │ ├── 263 - Zigzagoon - 2746E8288E7E.pk6 │ │ │ ├── 272 - Ludicolo - 2154AE8EDAF2 flute -4.pk7 │ │ │ ├── 276 ★ - Nirondelle - 0F8089C9AA57 flute level1.pk6 │ │ │ ├── 280 - Ralts - 4732E9FE3B34 No Nickname Trade.pk6 │ │ │ ├── 295 - Exploud - 24A2112B6A94 dexnav.pk6 │ │ │ ├── 350 - Milotic - C65D0BA29204 transfer minlevel evo.pk6 │ │ │ ├── 357 ★ - Walker Mower - 0272CF40335F.pk6 │ │ │ └── 665-17 - Spewpa - 9DBBA19BC145 Route 7 berry field.pk6 │ │ ├── Generation 7 Static │ │ │ ├── 132 - Ditto - D2606D168C32.pk7 │ │ │ ├── 133 - Egg - 9FD9E55BFB28 Daycare Eevee.pk7 │ │ │ ├── 664-07 - Scatterbug - 6703815D4F75.pk7 │ │ │ └── 666-07 - Vivillon - 6560815D4F75.pk7 │ │ ├── Generation 7 Transfer │ │ │ ├── 0267_-_Beautifly_-_02EC2BFA04AE gen3 l5 silcoon.pk7 │ │ │ ├── 028 ★ - Sandslash - 583900000000.pk7 │ │ │ ├── 100 - VOLTI - B086FE1296FC FALCçN.pk7 │ │ │ ├── 106 - Kicklee - F14B2085C4CF.pk7 │ │ │ ├── 107 - Tygnon - AB06C469F5A7.pk7 │ │ │ ├── 107 ★ - Hitmonchan - A6016DD483CC.pk7 │ │ │ ├── 124 - LOLA - 0F0EBB7A9D04.pk7 │ │ │ ├── 132 - Ditto - 3159082DBAD7.pk7 │ │ │ ├── 151 - ミュウ - 6B9DADB23EB0.pk7 │ │ │ ├── 204 - クヌギダマ - 4CF0E7EAFE99.pk7 │ │ │ ├── 213 - MODRI - 24E7F51FC5F2.pk7 │ │ │ ├── 213 - SHUCKI - 736B6898378B MANôA.pk7 │ │ │ ├── 230 - Seedraking - CC38FEBB3C31.pk7 │ │ │ ├── 466 - Electivire - FF102D8B375B.pk7 │ │ │ ├── 466 - エレキブル - 45346A2454B8.pk7 │ │ │ └── 700 - ニンフィア - F093560A57A2.pk7 │ │ ├── Generation 7 Wild │ │ │ ├── 080 - Slowbro - A0935F4796B1.pk7 │ │ │ ├── 131 - Lapras - 967A2886F5BC.pb7 │ │ │ ├── 744 - Rockruff - B9D885FF60E2.pk7 │ │ │ └── 745 - Lycanroc - F73885FF60E2.pk7 │ │ ├── Generation 8 │ │ │ ├── 0083-01 - Egg - 219CD3317179 legal traded HT memory no HT.pk8 │ │ │ ├── 0105-01 - Test - 6DDD2B435BBC alolan evolution.pk8 │ │ │ ├── 0292 - ヌケニン - A7DA5B63395C raid shedinja.pk8 │ │ │ ├── 0761 - Bounsweet - FE9A9FC902E6 raid downlevel antishiny.pk8 │ │ │ ├── 196 - Espeon - 84F87989E70A ability capsule evolved single ability.pk8 │ │ │ ├── 454 - Toxicroak - 74B8A6FA55D1 underlevel area6-3badge.pb8 │ │ │ ├── 481 ★ - Mesprit - 1FE0DA9D86A4 roamer8 force shiny.pb8 │ │ │ └── 780 - Sen-Long - EE8A09A6B32F LinkTrade Egg with HT memory.pk8 │ │ └── Generation 9 │ │ │ ├── 0585-01 ★ - Deerling - 11D0C90A7F2F pk6 formchange.pk9 │ │ │ └── FormArg │ │ │ ├── 0979 - Second Wind - F595DB8A1056.pk9 │ │ │ ├── 0983 - Kingambit - 6BE42E9A9EF4 0 asKing.pk9 │ │ │ └── 0983 - Kingambit - 6BE72E9A9EF4 3 asBisharp.pk9 │ ├── LegalityData.cs │ ├── LegalityRules.cs │ ├── LegalityTests.cs │ └── RNG │ │ ├── MethodJChecks.cs │ │ ├── MockSlot4.cs │ │ ├── RaidTests.cs │ │ ├── ShadowTeamTests.cs │ │ ├── ShadowTests.cs │ │ ├── Wild8aRNGTests.cs │ │ └── Wild8bRNGTests.cs │ ├── PKHeX.Core.Tests.csproj │ ├── PKM │ ├── AbilityPermissionTests.cs │ ├── BatchInstructionTests.cs │ ├── HiddenPowerTests.cs │ ├── LCRNGTest.cs │ ├── PIDIVTests.cs │ ├── PKMTests.cs │ ├── SpeciesConverterTests.cs │ ├── StatTest.cs │ └── StringTests.cs │ ├── Saves │ ├── HomeTests.cs │ ├── MemeCrypto │ │ ├── MemeCryptoTests.cs │ │ └── SwishCryptoTests.cs │ ├── PokeDex.cs │ └── SMTests.cs │ ├── Simulator │ ├── GeneratorTests.cs │ └── ShowdownSetTests.cs │ ├── TestData │ ├── 001 - Bulbasaur - Impish - Anubis.eh1 │ ├── 001 - Bulbasaur - Quirky - Anubis.eh1 │ ├── 001 ■ - Bulbasaur - Calm - Anubis.eh1 │ ├── 003 - Venusaur - Calm - Anubis.eh1 │ ├── 003 - Venusaur - Rash - Anubis.eh1 │ ├── 025 - Pikachu - Anubis.eh2 │ ├── SM Project 802.main │ └── mew.eh3 │ └── Util │ ├── ConvertUtilTests.cs │ ├── DataUtilTests.cs │ ├── DateUtilTests.cs │ ├── FlagUtilTests.cs │ ├── GeoLocationTests.cs │ ├── StringQualityTests.cs │ └── TestUtil.cs ├── icon.png ├── mgdb ├── pgf.pkl ├── wa8.pkl ├── wa9.pkl ├── wb7full.pkl ├── wb8.pkl ├── wc4.pkl ├── wc6.pkl ├── wc6full.pkl ├── wc7.pkl ├── wc7full.pkl ├── wc8.pkl └── wc9.pkl └── wild ├── encounter_go_home.pkl └── encounter_go_lgpe.pkl /.claude/settings.local.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/.claude/settings.local.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/README-de.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/.github/README-de.md -------------------------------------------------------------------------------- /.github/README-es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/.github/README-es.md -------------------------------------------------------------------------------- /.github/README-fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/.github/README-fr.md -------------------------------------------------------------------------------- /.github/README-it.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/.github/README-it.md -------------------------------------------------------------------------------- /.github/README-ko.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/.github/README-ko.md -------------------------------------------------------------------------------- /.github/README-zh-Hans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/.github/README-zh-Hans.md -------------------------------------------------------------------------------- /.github/README-zh-Hant.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/.github/README-zh-Hant.md -------------------------------------------------------------------------------- /.github/workflows/plugin-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/.github/workflows/plugin-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/.gitignore -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/LICENSE -------------------------------------------------------------------------------- /PKHeX.Core/Editing/Applicators/BallApplicator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Editing/Applicators/BallApplicator.cs -------------------------------------------------------------------------------- /PKHeX.Core/Editing/Applicators/MoveApplicator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Editing/Applicators/MoveApplicator.cs -------------------------------------------------------------------------------- /PKHeX.Core/Editing/Bulk/BatchEditing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Editing/Bulk/BatchEditing.cs -------------------------------------------------------------------------------- /PKHeX.Core/Editing/Bulk/BatchEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Editing/Bulk/BatchEditor.cs -------------------------------------------------------------------------------- /PKHeX.Core/Editing/Bulk/BatchFilters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Editing/Bulk/BatchFilters.cs -------------------------------------------------------------------------------- /PKHeX.Core/Editing/Bulk/BatchInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Editing/Bulk/BatchInfo.cs -------------------------------------------------------------------------------- /PKHeX.Core/Editing/Bulk/BatchMods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Editing/Bulk/BatchMods.cs -------------------------------------------------------------------------------- /PKHeX.Core/Editing/Bulk/ComplexSet/ComplexSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Editing/Bulk/ComplexSet/ComplexSet.cs -------------------------------------------------------------------------------- /PKHeX.Core/Editing/Bulk/ComplexSet/MetaFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Editing/Bulk/ComplexSet/MetaFilter.cs -------------------------------------------------------------------------------- /PKHeX.Core/Editing/Bulk/IPropertyProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Editing/Bulk/IPropertyProvider.cs -------------------------------------------------------------------------------- /PKHeX.Core/Editing/Bulk/ModifyResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Editing/Bulk/ModifyResult.cs -------------------------------------------------------------------------------- /PKHeX.Core/Editing/Bulk/StringInstruction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Editing/Bulk/StringInstruction.cs -------------------------------------------------------------------------------- /PKHeX.Core/Editing/Bulk/StringInstructionSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Editing/Bulk/StringInstructionSet.cs -------------------------------------------------------------------------------- /PKHeX.Core/Editing/CommonEdits.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Editing/CommonEdits.cs -------------------------------------------------------------------------------- /PKHeX.Core/Editing/Database/TrainerDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Editing/Database/TrainerDatabase.cs -------------------------------------------------------------------------------- /PKHeX.Core/Editing/HiddenPower.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Editing/HiddenPower.cs -------------------------------------------------------------------------------- /PKHeX.Core/Editing/IPKMView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Editing/IPKMView.cs -------------------------------------------------------------------------------- /PKHeX.Core/Editing/IPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Editing/IPlugin.cs -------------------------------------------------------------------------------- /PKHeX.Core/Editing/ISaveFileProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Editing/ISaveFileProvider.cs -------------------------------------------------------------------------------- /PKHeX.Core/Editing/ISpriteBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Editing/ISpriteBuilder.cs -------------------------------------------------------------------------------- /PKHeX.Core/Editing/LocationEdits.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Editing/LocationEdits.cs -------------------------------------------------------------------------------- /PKHeX.Core/Editing/NatureAmp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Editing/NatureAmp.cs -------------------------------------------------------------------------------- /PKHeX.Core/Editing/PKM/EntitySuggestionUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Editing/PKM/EntitySuggestionUtil.cs -------------------------------------------------------------------------------- /PKHeX.Core/Editing/PKM/EntitySummary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Editing/PKM/EntitySummary.cs -------------------------------------------------------------------------------- /PKHeX.Core/Editing/PKM/EntityTemplates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Editing/PKM/EntityTemplates.cs -------------------------------------------------------------------------------- /PKHeX.Core/Editing/PKM/LegalMoveComboSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Editing/PKM/LegalMoveComboSource.cs -------------------------------------------------------------------------------- /PKHeX.Core/Editing/PKM/LegalMoveInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Editing/PKM/LegalMoveInfo.cs -------------------------------------------------------------------------------- /PKHeX.Core/Editing/PKM/LegalMoveSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Editing/PKM/LegalMoveSource.cs -------------------------------------------------------------------------------- /PKHeX.Core/Editing/PKM/QR/QRMessageUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Editing/PKM/QR/QRMessageUtil.cs -------------------------------------------------------------------------------- /PKHeX.Core/Editing/PKM/QR/QRPK7.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Editing/PKM/QR/QRPK7.cs -------------------------------------------------------------------------------- /PKHeX.Core/Editing/PKM/QR/QRPKM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Editing/PKM/QR/QRPKM.cs -------------------------------------------------------------------------------- /PKHeX.Core/Editing/Pokerus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Editing/Pokerus.cs -------------------------------------------------------------------------------- /PKHeX.Core/Editing/PowerPotential.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Editing/PowerPotential.cs -------------------------------------------------------------------------------- /PKHeX.Core/Editing/Program/IProgramSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Editing/Program/IProgramSettings.cs -------------------------------------------------------------------------------- /PKHeX.Core/Editing/Program/IStartupSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Editing/Program/IStartupSettings.cs -------------------------------------------------------------------------------- /PKHeX.Core/Editing/Program/StartupArguments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Editing/Program/StartupArguments.cs -------------------------------------------------------------------------------- /PKHeX.Core/Editing/Program/StartupUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Editing/Program/StartupUtil.cs -------------------------------------------------------------------------------- /PKHeX.Core/Editing/Saves/BoxManip/IBoxManip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Editing/Saves/BoxManip/IBoxManip.cs -------------------------------------------------------------------------------- /PKHeX.Core/Editing/Saves/Editors/FakeSaveFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Editing/Saves/Editors/FakeSaveFile.cs -------------------------------------------------------------------------------- /PKHeX.Core/Editing/Saves/Slots/BoxEdit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Editing/Saves/Slots/BoxEdit.cs -------------------------------------------------------------------------------- /PKHeX.Core/Editing/Saves/Slots/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Editing/Saves/Slots/Extensions.cs -------------------------------------------------------------------------------- /PKHeX.Core/Editing/Saves/Slots/ISlotViewer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Editing/Saves/Slots/ISlotViewer.cs -------------------------------------------------------------------------------- /PKHeX.Core/Editing/Saves/Slots/Info/ISlotInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Editing/Saves/Slots/Info/ISlotInfo.cs -------------------------------------------------------------------------------- /PKHeX.Core/Editing/Saves/Slots/Info/SlotCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Editing/Saves/Slots/Info/SlotCache.cs -------------------------------------------------------------------------------- /PKHeX.Core/Editing/Saves/Slots/SlotChangelog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Editing/Saves/Slots/SlotChangelog.cs -------------------------------------------------------------------------------- /PKHeX.Core/Editing/Saves/Slots/SlotEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Editing/Saves/Slots/SlotEditor.cs -------------------------------------------------------------------------------- /PKHeX.Core/Editing/Saves/Slots/SlotPublisher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Editing/Saves/Slots/SlotPublisher.cs -------------------------------------------------------------------------------- /PKHeX.Core/Editing/Saves/Slots/SlotTouchType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Editing/Saves/Slots/SlotTouchType.cs -------------------------------------------------------------------------------- /PKHeX.Core/Editing/Saves/Slots/SlotViewInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Editing/Saves/Slots/SlotViewInfo.cs -------------------------------------------------------------------------------- /PKHeX.Core/Editing/WurmpleUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Editing/WurmpleUtil.cs -------------------------------------------------------------------------------- /PKHeX.Core/Game/ComboItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Game/ComboItem.cs -------------------------------------------------------------------------------- /PKHeX.Core/Game/Enums/Ability.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Game/Enums/Ability.cs -------------------------------------------------------------------------------- /PKHeX.Core/Game/Enums/Ball.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Game/Enums/Ball.cs -------------------------------------------------------------------------------- /PKHeX.Core/Game/Enums/GCVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Game/Enums/GCVersion.cs -------------------------------------------------------------------------------- /PKHeX.Core/Game/Enums/GameVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Game/Enums/GameVersion.cs -------------------------------------------------------------------------------- /PKHeX.Core/Game/Enums/Gender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Game/Enums/Gender.cs -------------------------------------------------------------------------------- /PKHeX.Core/Game/Enums/LanguageBR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Game/Enums/LanguageBR.cs -------------------------------------------------------------------------------- /PKHeX.Core/Game/Enums/LanguageGC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Game/Enums/LanguageGC.cs -------------------------------------------------------------------------------- /PKHeX.Core/Game/Enums/LanguageID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Game/Enums/LanguageID.cs -------------------------------------------------------------------------------- /PKHeX.Core/Game/Enums/Move.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Game/Enums/Move.cs -------------------------------------------------------------------------------- /PKHeX.Core/Game/Enums/MoveType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Game/Enums/MoveType.cs -------------------------------------------------------------------------------- /PKHeX.Core/Game/Enums/Nature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Game/Enums/Nature.cs -------------------------------------------------------------------------------- /PKHeX.Core/Game/Enums/Region3DSIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Game/Enums/Region3DSIndex.cs -------------------------------------------------------------------------------- /PKHeX.Core/Game/Enums/Species.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Game/Enums/Species.cs -------------------------------------------------------------------------------- /PKHeX.Core/Game/GameStrings/GameDataSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Game/GameStrings/GameDataSource.cs -------------------------------------------------------------------------------- /PKHeX.Core/Game/GameStrings/GameInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Game/GameStrings/GameInfo.cs -------------------------------------------------------------------------------- /PKHeX.Core/Game/GameStrings/GameLanguage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Game/GameStrings/GameLanguage.cs -------------------------------------------------------------------------------- /PKHeX.Core/Game/GameStrings/GameStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Game/GameStrings/GameStrings.cs -------------------------------------------------------------------------------- /PKHeX.Core/Game/GameStrings/GeoLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Game/GameStrings/GeoLocation.cs -------------------------------------------------------------------------------- /PKHeX.Core/Game/GameStrings/MemoryStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Game/GameStrings/MemoryStrings.cs -------------------------------------------------------------------------------- /PKHeX.Core/Game/GameStrings/MetDataSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Game/GameStrings/MetDataSource.cs -------------------------------------------------------------------------------- /PKHeX.Core/Game/GameStrings/ProgramLanguage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Game/GameStrings/ProgramLanguage.cs -------------------------------------------------------------------------------- /PKHeX.Core/Game/GameUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Game/GameUtil.cs -------------------------------------------------------------------------------- /PKHeX.Core/Game/IBasicStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Game/IBasicStrings.cs -------------------------------------------------------------------------------- /PKHeX.Core/Game/Locations/Locations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Game/Locations/Locations.cs -------------------------------------------------------------------------------- /PKHeX.Core/Game/Locations/Locations4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Game/Locations/Locations4.cs -------------------------------------------------------------------------------- /PKHeX.Core/Game/Locations/Locations5.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Game/Locations/Locations5.cs -------------------------------------------------------------------------------- /PKHeX.Core/Game/Locations/Locations6.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Game/Locations/Locations6.cs -------------------------------------------------------------------------------- /PKHeX.Core/Game/Locations/Locations7.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Game/Locations/Locations7.cs -------------------------------------------------------------------------------- /PKHeX.Core/Game/Locations/Locations7b.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Game/Locations/Locations7b.cs -------------------------------------------------------------------------------- /PKHeX.Core/Game/Locations/Locations8.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Game/Locations/Locations8.cs -------------------------------------------------------------------------------- /PKHeX.Core/Game/Locations/Locations8a.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Game/Locations/Locations8a.cs -------------------------------------------------------------------------------- /PKHeX.Core/Game/Locations/Locations8b.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Game/Locations/Locations8b.cs -------------------------------------------------------------------------------- /PKHeX.Core/Game/Locations/Locations9.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Game/Locations/Locations9.cs -------------------------------------------------------------------------------- /PKHeX.Core/Game/Locations/Locations9a.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Game/Locations/Locations9a.cs -------------------------------------------------------------------------------- /PKHeX.Core/Game/Locations/LocationsHOME.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Game/Locations/LocationsHOME.cs -------------------------------------------------------------------------------- /PKHeX.Core/Items/HeldItemLumpImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Items/HeldItemLumpImage.cs -------------------------------------------------------------------------------- /PKHeX.Core/Items/IItemStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Items/IItemStorage.cs -------------------------------------------------------------------------------- /PKHeX.Core/Items/ItemStorage1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Items/ItemStorage1.cs -------------------------------------------------------------------------------- /PKHeX.Core/Items/ItemStorage2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Items/ItemStorage2.cs -------------------------------------------------------------------------------- /PKHeX.Core/Items/ItemStorage3Colo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Items/ItemStorage3Colo.cs -------------------------------------------------------------------------------- /PKHeX.Core/Items/ItemStorage3E.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Items/ItemStorage3E.cs -------------------------------------------------------------------------------- /PKHeX.Core/Items/ItemStorage3FRLG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Items/ItemStorage3FRLG.cs -------------------------------------------------------------------------------- /PKHeX.Core/Items/ItemStorage3RS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Items/ItemStorage3RS.cs -------------------------------------------------------------------------------- /PKHeX.Core/Items/ItemStorage3XD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Items/ItemStorage3XD.cs -------------------------------------------------------------------------------- /PKHeX.Core/Items/ItemStorage4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Items/ItemStorage4.cs -------------------------------------------------------------------------------- /PKHeX.Core/Items/ItemStorage4DP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Items/ItemStorage4DP.cs -------------------------------------------------------------------------------- /PKHeX.Core/Items/ItemStorage4HGSS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Items/ItemStorage4HGSS.cs -------------------------------------------------------------------------------- /PKHeX.Core/Items/ItemStorage4Pt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Items/ItemStorage4Pt.cs -------------------------------------------------------------------------------- /PKHeX.Core/Items/ItemStorage5.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Items/ItemStorage5.cs -------------------------------------------------------------------------------- /PKHeX.Core/Items/ItemStorage5B2W2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Items/ItemStorage5B2W2.cs -------------------------------------------------------------------------------- /PKHeX.Core/Items/ItemStorage5BW.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Items/ItemStorage5BW.cs -------------------------------------------------------------------------------- /PKHeX.Core/Items/ItemStorage6AO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Items/ItemStorage6AO.cs -------------------------------------------------------------------------------- /PKHeX.Core/Items/ItemStorage6XY.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Items/ItemStorage6XY.cs -------------------------------------------------------------------------------- /PKHeX.Core/Items/ItemStorage7GG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Items/ItemStorage7GG.cs -------------------------------------------------------------------------------- /PKHeX.Core/Items/ItemStorage7SM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Items/ItemStorage7SM.cs -------------------------------------------------------------------------------- /PKHeX.Core/Items/ItemStorage7USUM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Items/ItemStorage7USUM.cs -------------------------------------------------------------------------------- /PKHeX.Core/Items/ItemStorage8BDSP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Items/ItemStorage8BDSP.cs -------------------------------------------------------------------------------- /PKHeX.Core/Items/ItemStorage8LA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Items/ItemStorage8LA.cs -------------------------------------------------------------------------------- /PKHeX.Core/Items/ItemStorage8SWSH.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Items/ItemStorage8SWSH.cs -------------------------------------------------------------------------------- /PKHeX.Core/Items/ItemStorage9SV.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Items/ItemStorage9SV.cs -------------------------------------------------------------------------------- /PKHeX.Core/Items/ItemStorage9ZA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Items/ItemStorage9ZA.cs -------------------------------------------------------------------------------- /PKHeX.Core/Legality/Assets/BinLinkerAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Legality/Assets/BinLinkerAccessor.cs -------------------------------------------------------------------------------- /PKHeX.Core/Legality/Assets/BinLinkerWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Legality/Assets/BinLinkerWriter.cs -------------------------------------------------------------------------------- /PKHeX.Core/Legality/Breeding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Legality/Breeding.cs -------------------------------------------------------------------------------- /PKHeX.Core/Legality/Bulk/BulkAnalysis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Legality/Bulk/BulkAnalysis.cs -------------------------------------------------------------------------------- /PKHeX.Core/Legality/Bulk/BulkCheckResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Legality/Bulk/BulkCheckResult.cs -------------------------------------------------------------------------------- /PKHeX.Core/Legality/Bulk/CombinedReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Legality/Bulk/CombinedReference.cs -------------------------------------------------------------------------------- /PKHeX.Core/Legality/Bulk/DuplicateGiftChecker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Legality/Bulk/DuplicateGiftChecker.cs -------------------------------------------------------------------------------- /PKHeX.Core/Legality/Bulk/DuplicatePIDChecker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Legality/Bulk/DuplicatePIDChecker.cs -------------------------------------------------------------------------------- /PKHeX.Core/Legality/Bulk/ExternalBulkCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Legality/Bulk/ExternalBulkCheck.cs -------------------------------------------------------------------------------- /PKHeX.Core/Legality/Bulk/HandlerChecker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Legality/Bulk/HandlerChecker.cs -------------------------------------------------------------------------------- /PKHeX.Core/Legality/Bulk/IBulkAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Legality/Bulk/IBulkAnalyzer.cs -------------------------------------------------------------------------------- /PKHeX.Core/Legality/Bulk/IExternalBulkChecker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Legality/Bulk/IExternalBulkChecker.cs -------------------------------------------------------------------------------- /PKHeX.Core/Legality/Bulk/StandardCloneChecker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Legality/Bulk/StandardCloneChecker.cs -------------------------------------------------------------------------------- /PKHeX.Core/Legality/BulkGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Legality/BulkGenerator.cs -------------------------------------------------------------------------------- /PKHeX.Core/Legality/Evolutions/EvolutionChain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Legality/Evolutions/EvolutionChain.cs -------------------------------------------------------------------------------- /PKHeX.Core/Legality/Evolutions/EvolutionSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Legality/Evolutions/EvolutionSet.cs -------------------------------------------------------------------------------- /PKHeX.Core/Legality/Evolutions/EvolutionTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Legality/Evolutions/EvolutionTree.cs -------------------------------------------------------------------------------- /PKHeX.Core/Legality/LearnSource/LearnMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Legality/LearnSource/LearnMethod.cs -------------------------------------------------------------------------------- /PKHeX.Core/Legality/LearnSource/MoveLearnInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Legality/LearnSource/MoveLearnInfo.cs -------------------------------------------------------------------------------- /PKHeX.Core/Legality/LearnSource/MoveResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Legality/LearnSource/MoveResult.cs -------------------------------------------------------------------------------- /PKHeX.Core/Legality/Learnset/Learnset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Legality/Learnset/Learnset.cs -------------------------------------------------------------------------------- /PKHeX.Core/Legality/Learnset/LearnsetReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Legality/Learnset/LearnsetReader.cs -------------------------------------------------------------------------------- /PKHeX.Core/Legality/Learnset/LearnsetStadium.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Legality/Learnset/LearnsetStadium.cs -------------------------------------------------------------------------------- /PKHeX.Core/Legality/Learnset/MoveSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Legality/Learnset/MoveSource.cs -------------------------------------------------------------------------------- /PKHeX.Core/Legality/Legal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Legality/Legal.cs -------------------------------------------------------------------------------- /PKHeX.Core/Legality/LegalityAnalysis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Legality/LegalityAnalysis.cs -------------------------------------------------------------------------------- /PKHeX.Core/Legality/LegalityAnalyzers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Legality/LegalityAnalyzers.cs -------------------------------------------------------------------------------- /PKHeX.Core/Legality/MoveListSuggest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Legality/MoveListSuggest.cs -------------------------------------------------------------------------------- /PKHeX.Core/Legality/MoveSourceType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Legality/MoveSourceType.cs -------------------------------------------------------------------------------- /PKHeX.Core/Legality/Moves/Breeding/BreedInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Legality/Moves/Breeding/BreedInfo.cs -------------------------------------------------------------------------------- /PKHeX.Core/Legality/Moves/Breeding/EggSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Legality/Moves/Breeding/EggSource.cs -------------------------------------------------------------------------------- /PKHeX.Core/Legality/Moves/Breeding/MoveBreed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Legality/Moves/Breeding/MoveBreed.cs -------------------------------------------------------------------------------- /PKHeX.Core/Legality/Moves/Breeding/MoveBreed2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Legality/Moves/Breeding/MoveBreed2.cs -------------------------------------------------------------------------------- /PKHeX.Core/Legality/Moves/Breeding/MoveBreed3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Legality/Moves/Breeding/MoveBreed3.cs -------------------------------------------------------------------------------- /PKHeX.Core/Legality/Moves/Breeding/MoveBreed4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Legality/Moves/Breeding/MoveBreed4.cs -------------------------------------------------------------------------------- /PKHeX.Core/Legality/Moves/Breeding/MoveBreed5.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Legality/Moves/Breeding/MoveBreed5.cs -------------------------------------------------------------------------------- /PKHeX.Core/Legality/Moves/Breeding/MoveBreed6.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Legality/Moves/Breeding/MoveBreed6.cs -------------------------------------------------------------------------------- /PKHeX.Core/Legality/Moves/GameData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Legality/Moves/GameData.cs -------------------------------------------------------------------------------- /PKHeX.Core/Legality/RNG/Algorithms/ARNG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Legality/RNG/Algorithms/ARNG.cs -------------------------------------------------------------------------------- /PKHeX.Core/Legality/RNG/Algorithms/LCRNG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Legality/RNG/Algorithms/LCRNG.cs -------------------------------------------------------------------------------- /PKHeX.Core/Legality/RNG/Algorithms/LCRNG64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Legality/RNG/Algorithms/LCRNG64.cs -------------------------------------------------------------------------------- /PKHeX.Core/Legality/RNG/Algorithms/XDRNG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Legality/RNG/Algorithms/XDRNG.cs -------------------------------------------------------------------------------- /PKHeX.Core/Legality/RNG/CXD/LockFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Legality/RNG/CXD/LockFinder.cs -------------------------------------------------------------------------------- /PKHeX.Core/Legality/RNG/CXD/MethodCXD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Legality/RNG/CXD/MethodCXD.cs -------------------------------------------------------------------------------- /PKHeX.Core/Legality/RNG/CXD/MethodPokeSpot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Legality/RNG/CXD/MethodPokeSpot.cs -------------------------------------------------------------------------------- /PKHeX.Core/Legality/RNG/CXD/NPCLock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Legality/RNG/CXD/NPCLock.cs -------------------------------------------------------------------------------- /PKHeX.Core/Legality/RNG/CXD/SeedFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Legality/RNG/CXD/SeedFrame.cs -------------------------------------------------------------------------------- /PKHeX.Core/Legality/RNG/CXD/TeamLock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Legality/RNG/CXD/TeamLock.cs -------------------------------------------------------------------------------- /PKHeX.Core/Legality/RNG/CXD/TeamLockResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Legality/RNG/CXD/TeamLockResult.cs -------------------------------------------------------------------------------- /PKHeX.Core/Legality/RNG/ClassicEra/LeadFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Legality/RNG/ClassicEra/LeadFinder.cs -------------------------------------------------------------------------------- /PKHeX.Core/Legality/RNG/ClassicEra/LeadSeed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Legality/RNG/ClassicEra/LeadSeed.cs -------------------------------------------------------------------------------- /PKHeX.Core/Legality/RNG/Frame/FrameCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Legality/RNG/Frame/FrameCache.cs -------------------------------------------------------------------------------- /PKHeX.Core/Legality/RNG/Frame/LeadRequired.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Legality/RNG/Frame/LeadRequired.cs -------------------------------------------------------------------------------- /PKHeX.Core/Legality/RNG/Frame/LockInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Legality/RNG/Frame/LockInfo.cs -------------------------------------------------------------------------------- /PKHeX.Core/Legality/RNG/MethodFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Legality/RNG/MethodFinder.cs -------------------------------------------------------------------------------- /PKHeX.Core/Legality/RNG/Methods/Gen8/RaidRNG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Legality/RNG/Methods/Gen8/RaidRNG.cs -------------------------------------------------------------------------------- /PKHeX.Core/Legality/RNG/Methods/Gen9/Tera9RNG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Legality/RNG/Methods/Gen9/Tera9RNG.cs -------------------------------------------------------------------------------- /PKHeX.Core/Legality/RNG/PIDIV.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Legality/RNG/PIDIV.cs -------------------------------------------------------------------------------- /PKHeX.Core/Legality/RNG/PIDType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Legality/RNG/PIDType.cs -------------------------------------------------------------------------------- /PKHeX.Core/Legality/RNG/Util/ShinyUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Legality/RNG/Util/ShinyUtil.cs -------------------------------------------------------------------------------- /PKHeX.Core/Legality/RNG/Util/ToxtricityUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Legality/RNG/Util/ToxtricityUtil.cs -------------------------------------------------------------------------------- /PKHeX.Core/Legality/Restrictions/Locale3DS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Legality/Restrictions/Locale3DS.cs -------------------------------------------------------------------------------- /PKHeX.Core/Legality/Restrictions/Vivillon3DS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Legality/Restrictions/Vivillon3DS.cs -------------------------------------------------------------------------------- /PKHeX.Core/Legality/Settings/LegalitySettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Legality/Settings/LegalitySettings.cs -------------------------------------------------------------------------------- /PKHeX.Core/Legality/Settings/ParseSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Legality/Settings/ParseSettings.cs -------------------------------------------------------------------------------- /PKHeX.Core/Legality/Structures/CheckResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Legality/Structures/CheckResult.cs -------------------------------------------------------------------------------- /PKHeX.Core/Legality/Structures/LegalInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Legality/Structures/LegalInfo.cs -------------------------------------------------------------------------------- /PKHeX.Core/Legality/Structures/Severity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Legality/Structures/Severity.cs -------------------------------------------------------------------------------- /PKHeX.Core/Legality/Tables/FormChangeUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Legality/Tables/FormChangeUtil.cs -------------------------------------------------------------------------------- /PKHeX.Core/Legality/Tables/FormInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Legality/Tables/FormInfo.cs -------------------------------------------------------------------------------- /PKHeX.Core/Legality/Tables/FormItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Legality/Tables/FormItem.cs -------------------------------------------------------------------------------- /PKHeX.Core/Legality/Tables/SpeciesCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Legality/Tables/SpeciesCategory.cs -------------------------------------------------------------------------------- /PKHeX.Core/Legality/Tables/TradeRestrictions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Legality/Tables/TradeRestrictions.cs -------------------------------------------------------------------------------- /PKHeX.Core/Legality/Verifiers/CXDVerifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Legality/Verifiers/CXDVerifier.cs -------------------------------------------------------------------------------- /PKHeX.Core/Legality/Verifiers/FormVerifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Legality/Verifiers/FormVerifier.cs -------------------------------------------------------------------------------- /PKHeX.Core/Legality/Verifiers/GenderVerifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Legality/Verifiers/GenderVerifier.cs -------------------------------------------------------------------------------- /PKHeX.Core/Legality/Verifiers/HistoryVerifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Legality/Verifiers/HistoryVerifier.cs -------------------------------------------------------------------------------- /PKHeX.Core/Legality/Verifiers/ItemVerifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Legality/Verifiers/ItemVerifier.cs -------------------------------------------------------------------------------- /PKHeX.Core/Legality/Verifiers/LevelVerifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Legality/Verifiers/LevelVerifier.cs -------------------------------------------------------------------------------- /PKHeX.Core/Legality/Verifiers/MarkVerifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Legality/Verifiers/MarkVerifier.cs -------------------------------------------------------------------------------- /PKHeX.Core/Legality/Verifiers/MedalVerifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Legality/Verifiers/MedalVerifier.cs -------------------------------------------------------------------------------- /PKHeX.Core/Legality/Verifiers/MiscVerifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Legality/Verifiers/MiscVerifier.cs -------------------------------------------------------------------------------- /PKHeX.Core/Legality/Verifiers/PIDVerifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Legality/Verifiers/PIDVerifier.cs -------------------------------------------------------------------------------- /PKHeX.Core/Legality/Verifiers/Verifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Legality/Verifiers/Verifier.cs -------------------------------------------------------------------------------- /PKHeX.Core/Moves/MoveInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Moves/MoveInfo.cs -------------------------------------------------------------------------------- /PKHeX.Core/Moves/MoveInfo1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Moves/MoveInfo1.cs -------------------------------------------------------------------------------- /PKHeX.Core/Moves/MoveInfo2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Moves/MoveInfo2.cs -------------------------------------------------------------------------------- /PKHeX.Core/Moves/MoveInfo3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Moves/MoveInfo3.cs -------------------------------------------------------------------------------- /PKHeX.Core/Moves/MoveInfo4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Moves/MoveInfo4.cs -------------------------------------------------------------------------------- /PKHeX.Core/Moves/MoveInfo5.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Moves/MoveInfo5.cs -------------------------------------------------------------------------------- /PKHeX.Core/Moves/MoveInfo6.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Moves/MoveInfo6.cs -------------------------------------------------------------------------------- /PKHeX.Core/Moves/MoveInfo7.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Moves/MoveInfo7.cs -------------------------------------------------------------------------------- /PKHeX.Core/Moves/MoveInfo7b.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Moves/MoveInfo7b.cs -------------------------------------------------------------------------------- /PKHeX.Core/Moves/MoveInfo8.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Moves/MoveInfo8.cs -------------------------------------------------------------------------------- /PKHeX.Core/Moves/MoveInfo8a.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Moves/MoveInfo8a.cs -------------------------------------------------------------------------------- /PKHeX.Core/Moves/MoveInfo8b.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Moves/MoveInfo8b.cs -------------------------------------------------------------------------------- /PKHeX.Core/Moves/MoveInfo9.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Moves/MoveInfo9.cs -------------------------------------------------------------------------------- /PKHeX.Core/Moves/MoveInfo9a.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Moves/MoveInfo9a.cs -------------------------------------------------------------------------------- /PKHeX.Core/MysteryGifts/DataMysteryGift.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/MysteryGifts/DataMysteryGift.cs -------------------------------------------------------------------------------- /PKHeX.Core/MysteryGifts/MysteryGift.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/MysteryGifts/MysteryGift.cs -------------------------------------------------------------------------------- /PKHeX.Core/MysteryGifts/MysteryUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/MysteryGifts/MysteryUtil.cs -------------------------------------------------------------------------------- /PKHeX.Core/MysteryGifts/PCD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/MysteryGifts/PCD.cs -------------------------------------------------------------------------------- /PKHeX.Core/MysteryGifts/PGF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/MysteryGifts/PGF.cs -------------------------------------------------------------------------------- /PKHeX.Core/MysteryGifts/PGT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/MysteryGifts/PGT.cs -------------------------------------------------------------------------------- /PKHeX.Core/MysteryGifts/PL6.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/MysteryGifts/PL6.cs -------------------------------------------------------------------------------- /PKHeX.Core/MysteryGifts/ShinyType6.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/MysteryGifts/ShinyType6.cs -------------------------------------------------------------------------------- /PKHeX.Core/MysteryGifts/ShinyType8.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/MysteryGifts/ShinyType8.cs -------------------------------------------------------------------------------- /PKHeX.Core/MysteryGifts/WA8.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/MysteryGifts/WA8.cs -------------------------------------------------------------------------------- /PKHeX.Core/MysteryGifts/WA9.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/MysteryGifts/WA9.cs -------------------------------------------------------------------------------- /PKHeX.Core/MysteryGifts/WB7.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/MysteryGifts/WB7.cs -------------------------------------------------------------------------------- /PKHeX.Core/MysteryGifts/WB8.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/MysteryGifts/WB8.cs -------------------------------------------------------------------------------- /PKHeX.Core/MysteryGifts/WC5Full.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/MysteryGifts/WC5Full.cs -------------------------------------------------------------------------------- /PKHeX.Core/MysteryGifts/WC6.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/MysteryGifts/WC6.cs -------------------------------------------------------------------------------- /PKHeX.Core/MysteryGifts/WC6Full.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/MysteryGifts/WC6Full.cs -------------------------------------------------------------------------------- /PKHeX.Core/MysteryGifts/WC7.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/MysteryGifts/WC7.cs -------------------------------------------------------------------------------- /PKHeX.Core/MysteryGifts/WC7Full.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/MysteryGifts/WC7Full.cs -------------------------------------------------------------------------------- /PKHeX.Core/MysteryGifts/WC8.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/MysteryGifts/WC8.cs -------------------------------------------------------------------------------- /PKHeX.Core/MysteryGifts/WC9.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/MysteryGifts/WC9.cs -------------------------------------------------------------------------------- /PKHeX.Core/MysteryGifts/WR7.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/MysteryGifts/WR7.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKHeX.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKHeX.Core.csproj -------------------------------------------------------------------------------- /PKHeX.Core/PKM/BK4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/BK4.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/CK3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/CK3.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Enums/AlcremieDecoration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Enums/AlcremieDecoration.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Enums/GroundTileType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Enums/GroundTileType.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Enums/OriginMark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Enums/OriginMark.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Enums/PokeSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Enums/PokeSize.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Enums/PokeSizeDetailed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Enums/PokeSizeDetailed.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Enums/PokeblockFlavor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Enums/PokeblockFlavor.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Enums/StatusCondition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Enums/StatusCondition.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/HOME/GameDataCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/HOME/GameDataCore.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/HOME/GameDataPA8.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/HOME/GameDataPA8.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/HOME/GameDataPA9.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/HOME/GameDataPA9.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/HOME/GameDataPB7.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/HOME/GameDataPB7.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/HOME/GameDataPB8.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/HOME/GameDataPB8.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/HOME/GameDataPK8.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/HOME/GameDataPK8.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/HOME/GameDataPK9.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/HOME/GameDataPK9.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/HOME/HomeCrypto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/HOME/HomeCrypto.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/HOME/HomeGameDataFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/HOME/HomeGameDataFormat.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/HOME/HomeOptional1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/HOME/HomeOptional1.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/HOME/IGameDataSide.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/HOME/IGameDataSide.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/HOME/IGameDataSplitAbility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/HOME/IGameDataSplitAbility.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/HOME/IHomeStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/HOME/IHomeStorage.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/HOME/IPokerusStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/HOME/IPokerusStatus.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/HOME/PKH.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/HOME/PKH.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Interfaces/IAffection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Interfaces/IAffection.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Interfaces/IAlpha.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Interfaces/IAlpha.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Interfaces/IAppliedMarkings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Interfaces/IAppliedMarkings.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Interfaces/IAwakened.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Interfaces/IAwakened.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Interfaces/IBattleVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Interfaces/IBattleVersion.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Interfaces/ICaughtData2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Interfaces/ICaughtData2.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Interfaces/IContestStats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Interfaces/IContestStats.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Interfaces/IDynamaxLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Interfaces/IDynamaxLevel.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Interfaces/IFatefulEncounter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Interfaces/IFatefulEncounter.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Interfaces/IFavorite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Interfaces/IFavorite.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Interfaces/IFormArgument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Interfaces/IFormArgument.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Interfaces/IGCRegion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Interfaces/IGCRegion.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Interfaces/IGanbaru.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Interfaces/IGanbaru.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Interfaces/IGeoTrack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Interfaces/IGeoTrack.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Interfaces/IGigantamax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Interfaces/IGigantamax.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Interfaces/IGroundTile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Interfaces/IGroundTile.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Interfaces/IHandlerLanguage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Interfaces/IHandlerLanguage.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Interfaces/IHandlerUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Interfaces/IHandlerUpdate.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Interfaces/IHomeTrack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Interfaces/IHomeTrack.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Interfaces/IHyperTrain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Interfaces/IHyperTrain.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Interfaces/IMemoryHT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Interfaces/IMemoryHT.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Interfaces/IMemoryOT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Interfaces/IMemoryOT.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Interfaces/IMoveShop8.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Interfaces/IMoveShop8.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Interfaces/INature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Interfaces/INature.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Interfaces/INoble.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Interfaces/INoble.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Interfaces/IObedienceLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Interfaces/IObedienceLevel.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Interfaces/IPlusRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Interfaces/IPlusRecord.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Interfaces/IRegionOrigin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Interfaces/IRegionOrigin.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Interfaces/ISanityChecksum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Interfaces/ISanityChecksum.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Interfaces/IScaledSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Interfaces/IScaledSize.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Interfaces/ISeparateIVs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Interfaces/ISeparateIVs.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Interfaces/IShadowCapture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Interfaces/IShadowCapture.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Interfaces/ISociability.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Interfaces/ISociability.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Interfaces/ISuperTrain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Interfaces/ISuperTrain.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Interfaces/ITechRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Interfaces/ITechRecord.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Interfaces/ITeraType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Interfaces/ITeraType.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Interfaces/ITrainerID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Interfaces/ITrainerID.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Interfaces/ITrainerID32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Interfaces/ITrainerID32.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Interfaces/ITrainerMemories.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Interfaces/ITrainerMemories.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Interfaces/Metadata/IContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Interfaces/Metadata/IContext.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Interfaces/Metadata/IShiny.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Interfaces/Metadata/IShiny.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Interfaces/Metadata/IVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Interfaces/Metadata/IVersion.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/PA8.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/PA8.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/PA9.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/PA9.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/PB7.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/PB7.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/PB8.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/PB8.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/PK1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/PK1.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/PK2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/PK2.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/PK3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/PK3.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/PK4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/PK4.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/PK5.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/PK5.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/PK6.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/PK6.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/PK7.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/PK7.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/PK8.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/PK8.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/PK9.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/PK9.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/PKM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/PKM.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/RK4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/RK4.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/SK2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/SK2.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Searching/SearchComparison.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Searching/SearchComparison.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Searching/SearchSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Searching/SearchSettings.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Searching/SearchUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Searching/SearchUtil.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Shared/G3PKM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Shared/G3PKM.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Shared/G4PKM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Shared/G4PKM.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Shared/G6PKM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Shared/G6PKM.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Shared/G8PKM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Shared/G8PKM.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Shared/GBPKM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Shared/GBPKM.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Shared/GBPKML.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Shared/GBPKML.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Shared/PokeList1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Shared/PokeList1.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Shared/PokeList2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Shared/PokeList2.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Strings/Font/StringFont3GC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Strings/Font/StringFont3GC.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Strings/Font/StringFont5.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Strings/Font/StringFont5.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Strings/Font/StringFont6.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Strings/Font/StringFont6.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Strings/Font/StringFont7.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Strings/Font/StringFont7.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Strings/Font/StringFont8.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Strings/Font/StringFont8.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Strings/Font/StringFont8a.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Strings/Font/StringFont8a.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Strings/Font/StringFont8b.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Strings/Font/StringFont8b.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Strings/Font/StringFontUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Strings/Font/StringFontUtil.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Strings/IStringConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Strings/IStringConverter.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Strings/StringConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Strings/StringConverter.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Strings/StringConverter1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Strings/StringConverter1.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Strings/StringConverter2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Strings/StringConverter2.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Strings/StringConverter2KOR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Strings/StringConverter2KOR.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Strings/StringConverter3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Strings/StringConverter3.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Strings/StringConverter345.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Strings/StringConverter345.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Strings/StringConverter3GC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Strings/StringConverter3GC.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Strings/StringConverter4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Strings/StringConverter4.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Strings/StringConverter4GC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Strings/StringConverter4GC.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Strings/StringConverter4Util.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Strings/StringConverter4Util.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Strings/StringConverter5.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Strings/StringConverter5.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Strings/StringConverter6.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Strings/StringConverter6.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Strings/StringConverter7.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Strings/StringConverter7.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Strings/StringConverter7ZH.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Strings/StringConverter7ZH.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Strings/StringConverter8.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Strings/StringConverter8.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Strings/Trash/TrashBytes8.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Strings/Trash/TrashBytes8.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Strings/Trash/TrashBytesGB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Strings/Trash/TrashBytesGB.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Strings/Trash/TrashMatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Strings/Trash/TrashMatch.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Util/EffortValues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Util/EffortValues.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Util/EntityBlank.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Util/EntityBlank.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Util/EntityCharacteristic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Util/EntityCharacteristic.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Util/EntityContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Util/EntityContext.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Util/EntityDetection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Util/EntityDetection.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Util/EntityFileExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Util/EntityFileExtension.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Util/EntityFileNamer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Util/EntityFileNamer.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Util/EntityFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Util/EntityFormat.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Util/EntityGender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Util/EntityGender.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Util/EntityPID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Util/EntityPID.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Util/EntitySorting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Util/EntitySorting.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Util/Experience.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Util/Experience.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Util/GameConsole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Util/GameConsole.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Util/Language.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Util/Language.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Util/Latest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Util/Latest.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Util/PokeCrypto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Util/PokeCrypto.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Util/RecentTrainerCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Util/RecentTrainerCache.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Util/SpeciesName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Util/SpeciesName.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/Util/TrainerName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/Util/TrainerName.cs -------------------------------------------------------------------------------- /PKHeX.Core/PKM/XK3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PKM/XK3.cs -------------------------------------------------------------------------------- /PKHeX.Core/PersonalInfo/Enums/EggGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PersonalInfo/Enums/EggGroup.cs -------------------------------------------------------------------------------- /PKHeX.Core/PersonalInfo/Enums/PersonalColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PersonalInfo/Enums/PersonalColor.cs -------------------------------------------------------------------------------- /PKHeX.Core/PersonalInfo/Info/PersonalInfo1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PersonalInfo/Info/PersonalInfo1.cs -------------------------------------------------------------------------------- /PKHeX.Core/PersonalInfo/Info/PersonalInfo2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PersonalInfo/Info/PersonalInfo2.cs -------------------------------------------------------------------------------- /PKHeX.Core/PersonalInfo/Info/PersonalInfo3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PersonalInfo/Info/PersonalInfo3.cs -------------------------------------------------------------------------------- /PKHeX.Core/PersonalInfo/Info/PersonalInfo4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PersonalInfo/Info/PersonalInfo4.cs -------------------------------------------------------------------------------- /PKHeX.Core/PersonalInfo/Info/PersonalInfo7.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PersonalInfo/Info/PersonalInfo7.cs -------------------------------------------------------------------------------- /PKHeX.Core/PersonalInfo/PersonalInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PersonalInfo/PersonalInfo.cs -------------------------------------------------------------------------------- /PKHeX.Core/PersonalInfo/PersonalTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/PersonalInfo/PersonalTable.cs -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/evolve/evos_bs.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Resources/byte/evolve/evos_bs.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/evolve/evos_g1.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Resources/byte/evolve/evos_g1.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/evolve/evos_g2.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Resources/byte/evolve/evos_g2.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/evolve/evos_g3.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Resources/byte/evolve/evos_g3.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/evolve/evos_g4.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Resources/byte/evolve/evos_g4.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/evolve/evos_g5.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Resources/byte/evolve/evos_g5.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/evolve/evos_g6.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Resources/byte/evolve/evos_g6.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/evolve/evos_gg.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Resources/byte/evolve/evos_gg.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/evolve/evos_la.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Resources/byte/evolve/evos_la.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/evolve/evos_ss.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Resources/byte/evolve/evos_ss.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/evolve/evos_sv.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Resources/byte/evolve/evos_sv.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/evolve/evos_uu.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Resources/byte/evolve/evos_uu.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/evolve/evos_za.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Resources/byte/evolve/evos_za.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/personal/hmtm_g3.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Resources/byte/personal/hmtm_g3.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/personal/personal_ao: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Resources/byte/personal/personal_ao -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/personal/personal_bw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Resources/byte/personal/personal_bw -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/personal/personal_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Resources/byte/personal/personal_c -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/personal/personal_dp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Resources/byte/personal/personal_dp -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/personal/personal_e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Resources/byte/personal/personal_e -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/personal/personal_fr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Resources/byte/personal/personal_fr -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/personal/personal_gg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Resources/byte/personal/personal_gg -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/personal/personal_gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Resources/byte/personal/personal_gs -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/personal/personal_la: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Resources/byte/personal/personal_la -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/personal/personal_lg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Resources/byte/personal/personal_lg -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/personal/personal_pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Resources/byte/personal/personal_pt -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/personal/personal_rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Resources/byte/personal/personal_rb -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/personal/personal_rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Resources/byte/personal/personal_rs -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/personal/personal_sm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Resources/byte/personal/personal_sm -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/personal/personal_sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Resources/byte/personal/personal_sv -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/personal/personal_uu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Resources/byte/personal/personal_uu -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/personal/personal_xy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Resources/byte/personal/personal_xy -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/personal/personal_y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Resources/byte/personal/personal_y -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/personal/personal_za: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Resources/byte/personal/personal_za -------------------------------------------------------------------------------- /PKHeX.Core/Resources/legality/gen4/text_tradedppt_en.txt: -------------------------------------------------------------------------------- 1 | Kazza 2 | Charap 3 | Gaspar 4 | Foppa 5 | Hilary 6 | Norton 7 | Mindy 8 | Meister -------------------------------------------------------------------------------- /PKHeX.Core/Resources/legality/gen4/text_tradedppt_es.txt: -------------------------------------------------------------------------------- 1 | Kazza 2 | Charap 3 | Gaspar 4 | Foppa 5 | Amanda 6 | Alfio 7 | Regla 8 | Meister -------------------------------------------------------------------------------- /PKHeX.Core/Resources/legality/gen4/text_tradedppt_fr.txt: -------------------------------------------------------------------------------- 1 | Kazou 2 | Pijouk 3 | Trumi 4 | Bloupi 5 | Paula 6 | Pierre 7 | Marlène 8 | Meister -------------------------------------------------------------------------------- /PKHeX.Core/Resources/legality/gen4/text_tradedppt_it.txt: -------------------------------------------------------------------------------- 1 | Keikei 2 | Charap 3 | Gaspar 4 | Mossy 5 | Hilary 6 | Norton 7 | Mindy 8 | Maestro -------------------------------------------------------------------------------- /PKHeX.Core/Resources/legality/gen6/text_tradeao_fr.txt: -------------------------------------------------------------------------------- 1 | Edmond 2 | Minetou 3 | Rosie 4 | Allan 5 | Dorothée 6 | Marsantes -------------------------------------------------------------------------------- /PKHeX.Core/Resources/legality/gen6/text_tradeao_it.txt: -------------------------------------------------------------------------------- 1 | Maku 2 | Pucci 3 | Corsolina 4 | Marchetto 5 | Ele 6 | Simo -------------------------------------------------------------------------------- /PKHeX.Core/Resources/legality/gen6/text_tradeao_ko.txt: -------------------------------------------------------------------------------- 1 | 감자군 2 | 베르베르 3 | 분홍이 4 | 모린 5 | 에이펀 6 | 스태틴 -------------------------------------------------------------------------------- /PKHeX.Core/Resources/legality/gen6/text_tradeao_zh-Hans.txt: -------------------------------------------------------------------------------- 1 | 马铃丸 2 | 贝儿 3 | 小桃桃 4 | 莫林 5 | 雪澎 6 | 小智仔 -------------------------------------------------------------------------------- /PKHeX.Core/Resources/legality/gen8/text_tradebdsp_de.txt: -------------------------------------------------------------------------------- 1 | Salla 2 | Plaupa 3 | Pollo 4 | Pador 5 | Hilary 6 | Norbert 7 | Mara 8 | The Master -------------------------------------------------------------------------------- /PKHeX.Core/Resources/legality/gen8/text_tradebdsp_en.txt: -------------------------------------------------------------------------------- 1 | Kazza 2 | Charap 3 | Gaspar 4 | Foppa 5 | Hilary 6 | Norton 7 | Mindy 8 | Meister -------------------------------------------------------------------------------- /PKHeX.Core/Resources/legality/gen8/text_tradebdsp_es.txt: -------------------------------------------------------------------------------- 1 | Kazza 2 | Charap 3 | Gaspar 4 | Foppa 5 | Amanda 6 | Alfio 7 | Regla 8 | Meister -------------------------------------------------------------------------------- /PKHeX.Core/Resources/legality/gen8/text_tradebdsp_fr.txt: -------------------------------------------------------------------------------- 1 | Kazou 2 | Pijouk 3 | Trumi 4 | Bloupi 5 | Paula 6 | Pierre 7 | Marlène 8 | Meister -------------------------------------------------------------------------------- /PKHeX.Core/Resources/legality/gen8/text_tradebdsp_it.txt: -------------------------------------------------------------------------------- 1 | Keikei 2 | Charap 3 | Gaspar 4 | Mossy 5 | Hilary 6 | Norton 7 | Mindy 8 | The Master -------------------------------------------------------------------------------- /PKHeX.Core/Resources/legality/gen8/text_tradebdsp_zh-Hans.txt: -------------------------------------------------------------------------------- 1 | 凯凯 2 | 聒查拉 3 | 小无形 4 | Pador 5 | 赫西 6 | 诺布林 7 | 米娜琦 8 | Master -------------------------------------------------------------------------------- /PKHeX.Core/Resources/legality/gen8/text_tradebdsp_zh-Hant.txt: -------------------------------------------------------------------------------- 1 | 凱凱 2 | 小聒聒 3 | 無形仔 4 | Pador 5 | 荷希 6 | 諾布林 7 | 美琦 8 | Master -------------------------------------------------------------------------------- /PKHeX.Core/Resources/legality/gen9a/text_tradeza_de.txt: -------------------------------------------------------------------------------- 1 | Corni 2 | Rioluis 3 | Picanto 4 | Fluffy 5 | Échan 6 | Bondo 7 | Tranquillo 8 | Panca -------------------------------------------------------------------------------- /PKHeX.Core/Resources/legality/gen9a/text_tradeza_en.txt: -------------------------------------------------------------------------------- 1 | Bois 2 | Riolouie 3 | Spicy 4 | Floffy 5 | Tracie 6 | Bond 7 | Quille 8 | Griddella -------------------------------------------------------------------------------- /PKHeX.Core/Resources/legality/gen9a/text_tradeza_fr.txt: -------------------------------------------------------------------------------- 1 | Dyna 2 | Ribébou 3 | Piment 4 | Raidoudou 5 | Odile 6 | Marsaut 7 | Kylian 8 | Rozell -------------------------------------------------------------------------------- /PKHeX.Core/Resources/legality/gen9a/text_tradeza_it.txt: -------------------------------------------------------------------------------- 1 | Cornì 2 | Rioletto 3 | Spezia 4 | Sofficio 5 | Echan 6 | Balzac 7 | Quilliam 8 | Suzette -------------------------------------------------------------------------------- /PKHeX.Core/Resources/legality/gen9a/text_tradeza_ko.txt: -------------------------------------------------------------------------------- 1 | 브와 2 | 리오룽 3 | 스파이스 4 | 푹신이 5 | 에스얀 6 | 본드 7 | 트랭키 8 | 크레이프 -------------------------------------------------------------------------------- /PKHeX.Core/Resources/legality/gen9a/text_tradeza_zh-Hans.txt: -------------------------------------------------------------------------------- 1 | 大角 2 | 利欧宝 3 | 香料 4 | 飘绵绵 5 | 娇环 6 | 斐岳 7 | 佑哉 8 | 可莉萍 -------------------------------------------------------------------------------- /PKHeX.Core/Resources/legality/gen9a/text_tradeza_zh-Hant.txt: -------------------------------------------------------------------------------- 1 | 大角 2 | 利歐寶 3 | 香料 4 | 飄綿綿 5 | 嬌環 6 | 斐岳 7 | 佑哉 8 | 可莉萍 -------------------------------------------------------------------------------- /PKHeX.Core/Resources/legality/mgdb/event1.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Resources/legality/mgdb/event1.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/legality/mgdb/event2.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Resources/legality/mgdb/event2.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/legality/mgdb/pgf.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Resources/legality/mgdb/pgf.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/legality/mgdb/wa8.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Resources/legality/mgdb/wa8.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/legality/mgdb/wa9.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Resources/legality/mgdb/wa9.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/legality/mgdb/wb7full.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Resources/legality/mgdb/wb7full.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/legality/mgdb/wb8.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Resources/legality/mgdb/wb8.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/legality/mgdb/wc4.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Resources/legality/mgdb/wc4.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/legality/mgdb/wc6.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Resources/legality/mgdb/wc6.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/legality/mgdb/wc6full.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Resources/legality/mgdb/wc6full.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/legality/mgdb/wc7.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Resources/legality/mgdb/wc7.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/legality/mgdb/wc7full.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Resources/legality/mgdb/wc7full.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/legality/mgdb/wc8.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Resources/legality/mgdb/wc8.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/legality/mgdb/wc9.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Resources/legality/mgdb/wc9.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/legality/misc/plus_za.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Resources/legality/misc/plus_za.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/game/medals_b2w2/text_medal_types_de.txt: -------------------------------------------------------------------------------- 1 | Spezial 2 | Abenteuer 3 | Kampf 4 | Spaß 5 | Herausforderung -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/game/medals_b2w2/text_medal_types_en.txt: -------------------------------------------------------------------------------- 1 | Special 2 | Adventure 3 | Battle 4 | Entertainment 5 | Challenge -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/game/medals_b2w2/text_medal_types_es-419.txt: -------------------------------------------------------------------------------- 1 | Especial 2 | Aventura 3 | Combate 4 | Diversión 5 | Desafío -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/game/medals_b2w2/text_medal_types_es.txt: -------------------------------------------------------------------------------- 1 | Especial 2 | Aventura 3 | Combate 4 | Diversión 5 | Desafío -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/game/medals_b2w2/text_medal_types_fr.txt: -------------------------------------------------------------------------------- 1 | Spécial 2 | Aventure 3 | Combat 4 | Divertissement 5 | Challenge -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/game/medals_b2w2/text_medal_types_it.txt: -------------------------------------------------------------------------------- 1 | Speciale 2 | Avventura 3 | Lotta 4 | Divertimento 5 | Sfida -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/game/medals_b2w2/text_medal_types_ja.txt: -------------------------------------------------------------------------------- 1 | 特別 2 | 冒険 3 | 戦闘 4 | お楽しみ 5 | 挑戦 -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/game/medals_b2w2/text_medal_types_ko.txt: -------------------------------------------------------------------------------- 1 | 특별 2 | 모험 3 | 전투 4 | 즐거움 5 | 도전 -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/game/medals_b2w2/text_medal_types_zh-Hans.txt: -------------------------------------------------------------------------------- 1 | 特别 2 | 冒险 3 | 对战 4 | 娱乐 5 | 挑战 -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/game/medals_b2w2/text_medal_types_zh-Hant.txt: -------------------------------------------------------------------------------- 1 | 特別 2 | 冒險 3 | 對戰 4 | 娛樂 5 | 挑戰 -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/locations/gen5/text_bw2_60000_de.txt: -------------------------------------------------------------------------------- 1 | 2 | Entfernte Person 3 | Betreuerpärchen 4 | Züchter -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/locations/gen5/text_bw2_60000_en.txt: -------------------------------------------------------------------------------- 1 | 2 | Stranger 3 | Day-Care Couple 4 | PKMN Breeder -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/locations/gen5/text_bw2_60000_es-419.txt: -------------------------------------------------------------------------------- 1 | 2 | Persona lejana 3 | Pareja guardería 4 | Criapokémon -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/locations/gen5/text_bw2_60000_es.txt: -------------------------------------------------------------------------------- 1 | 2 | Persona lejana 3 | Pareja guardería 4 | Criapokémon -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/locations/gen5/text_bw2_60000_fr.txt: -------------------------------------------------------------------------------- 1 | 2 | Personne lointaine 3 | Couple de la Pension 4 | Éleveuse -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/locations/gen5/text_bw2_60000_it.txt: -------------------------------------------------------------------------------- 1 | 2 | Persona lontana 3 | Coppia Pensione 4 | AllevaPKMN -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/locations/gen5/text_bw2_60000_ko.txt: -------------------------------------------------------------------------------- 1 | 2 | 멀리 있는 사람 3 | 키우미집부부 4 | 브리더 -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/locations/gen5/text_bw2_60000_zh-Hans.txt: -------------------------------------------------------------------------------- 1 | 2 | 远处的人 3 | 培育屋夫妇 4 | 寻宝猎人 -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/locations/gen5/text_bw2_60000_zh-Hant.txt: -------------------------------------------------------------------------------- 1 | 2 | 遠處的人 3 | 飼育屋夫婦 4 | 尋寶獵人 -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/locations/gen6/text_xy_60000_de.txt: -------------------------------------------------------------------------------- 1 | 2 | Ferne Person 3 | Pensionsleiter 4 | Schatzsucher 5 | Dame der Heißen Quellen -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/locations/gen6/text_xy_60000_it.txt: -------------------------------------------------------------------------------- 1 | 2 | Persona Lontana 3 | Pensione Pokémon 4 | Cercatesori 5 | Vecchina delle terme -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/locations/gen6/text_xy_60000_ko.txt: -------------------------------------------------------------------------------- 1 | 2 | 멀리 있는 사람 3 | 키우미집 4 | 트레져헌터 5 | 온천할머니 -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/locations/gen6/text_xy_60000_zh-Hans.txt: -------------------------------------------------------------------------------- 1 | 2 | 远处的人 3 | 培育屋爷爷 4 | 寻宝猎人 5 | 温泉婆婆 -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/locations/gen6/text_xy_60000_zh-Hant.txt: -------------------------------------------------------------------------------- 1 | 2 | 遠處的人 3 | 飼育屋爺爺 4 | 尋寶獵人 5 | 溫泉婆婆 -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/locations/gen7/text_sm_60000_de.txt: -------------------------------------------------------------------------------- 1 | 2 | Ferne Person 3 | Hortleiterinnen 4 | Schatzsucher 5 | Dame der Heißen Quellen -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/locations/gen7/text_sm_60000_it.txt: -------------------------------------------------------------------------------- 1 | 2 | Persona lontana 3 | Ostello Pokémon 4 | Cercatesori 5 | Vecchina delle terme -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/locations/gen7/text_sm_60000_ko.txt: -------------------------------------------------------------------------------- 1 | 2 | 멀리 있는 사람 3 | 맡기미집 4 | 트레져헌터 5 | 온천할머니 -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/locations/gen7/text_sm_60000_zh-Hans.txt: -------------------------------------------------------------------------------- 1 | 2 | 远处的人 3 | 寄放屋 4 | 寻宝猎人 5 | 温泉婆婆 -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/locations/gen7/text_sm_60000_zh-Hant.txt: -------------------------------------------------------------------------------- 1 | 2 | 遠處的人 3 | 寄放屋 4 | 尋寶獵人 5 | 溫泉婆婆 -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/locations/gen8/text_swsh_60000_ko.txt: -------------------------------------------------------------------------------- 1 | 2 | 멀리 있는 사람 3 | 맡기미집 4 | 트레져헌터 5 | 온천할머니 -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/locations/gen8/text_swsh_60000_zh-Hans.txt: -------------------------------------------------------------------------------- 1 | 2 | 远处的人 3 | 寄放屋 4 | 寻宝猎人 5 | 温泉婆婆 -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/locations/gen8/text_swsh_60000_zh-Hant.txt: -------------------------------------------------------------------------------- 1 | 2 | 遠處的人 3 | 寄放屋 4 | 尋寶獵人 5 | 溫泉婆婆 -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/locations/gen8a/text_la_60000_it.txt: -------------------------------------------------------------------------------- 1 | 2 | Persona lontana 3 | Ostello Pokémon 4 | Cercatesori 5 | Vecchina delle terme -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/locations/gen8a/text_la_60000_ko.txt: -------------------------------------------------------------------------------- 1 | 2 | 멀리 있는 사람 3 | 맡기미집 4 | 트레져헌터 5 | 온천 할머니 -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/locations/gen8a/text_la_60000_zh-Hans.txt: -------------------------------------------------------------------------------- 1 | 2 | 远处的人 3 | 寄放屋 4 | 寻宝猎人 5 | 温泉婆婆 -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/locations/gen8a/text_la_60000_zh-Hant.txt: -------------------------------------------------------------------------------- 1 | 2 | 遠處的人 3 | 寄放屋 4 | 尋寶獵人 5 | 溫泉婆婆 -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/locations/gen9/text_sv_60000_ko.txt: -------------------------------------------------------------------------------- 1 | 2 | 멀리 있는 사람 3 | 맡기미집 4 | 트레져헌터 5 | 온천 할머니 6 | 지니어 -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/locations/gen9/text_sv_60000_zh-Hans.txt: -------------------------------------------------------------------------------- 1 | 2 | 远处的人 3 | 寄放屋 4 | 寻宝猎人 5 | 温泉婆婆 6 | 吉尼亚 -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/locations/gen9/text_sv_60000_zh-Hant.txt: -------------------------------------------------------------------------------- 1 | 2 | 遠方的人 3 | 寄放屋 4 | 尋寶獵人 5 | 溫泉婆婆 6 | 吉尼亞 -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/locations/gen9a/text_za_60000_ko.txt: -------------------------------------------------------------------------------- 1 | 2 | 멀리 있는 사람 3 | 맡기미집 4 | 트레져헌터 5 | 온천 할머니 6 | 미르시티 -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/locations/gen9a/text_za_60000_zh-Hans.txt: -------------------------------------------------------------------------------- 1 | 2 | 远处的人 3 | 寄放屋 4 | 寻宝猎人 5 | 温泉婆婆 6 | 密阿雷市 -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/locations/gen9a/text_za_60000_zh-Hant.txt: -------------------------------------------------------------------------------- 1 | 2 | 遠方的人 3 | 寄放屋 4 | 尋寶獵人 5 | 溫泉婆婆 6 | 密阿雷市 -------------------------------------------------------------------------------- /PKHeX.Core/Ribbons/IRibbonIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Ribbons/IRibbonIndex.cs -------------------------------------------------------------------------------- /PKHeX.Core/Ribbons/IRibbonSetAffixed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Ribbons/IRibbonSetAffixed.cs -------------------------------------------------------------------------------- /PKHeX.Core/Ribbons/IRibbonSetCommon3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Ribbons/IRibbonSetCommon3.cs -------------------------------------------------------------------------------- /PKHeX.Core/Ribbons/IRibbonSetCommon4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Ribbons/IRibbonSetCommon4.cs -------------------------------------------------------------------------------- /PKHeX.Core/Ribbons/IRibbonSetCommon6.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Ribbons/IRibbonSetCommon6.cs -------------------------------------------------------------------------------- /PKHeX.Core/Ribbons/IRibbonSetCommon7.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Ribbons/IRibbonSetCommon7.cs -------------------------------------------------------------------------------- /PKHeX.Core/Ribbons/IRibbonSetCommon8.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Ribbons/IRibbonSetCommon8.cs -------------------------------------------------------------------------------- /PKHeX.Core/Ribbons/IRibbonSetCommon9.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Ribbons/IRibbonSetCommon9.cs -------------------------------------------------------------------------------- /PKHeX.Core/Ribbons/IRibbonSetEvent3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Ribbons/IRibbonSetEvent3.cs -------------------------------------------------------------------------------- /PKHeX.Core/Ribbons/IRibbonSetEvent4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Ribbons/IRibbonSetEvent4.cs -------------------------------------------------------------------------------- /PKHeX.Core/Ribbons/IRibbonSetMark8.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Ribbons/IRibbonSetMark8.cs -------------------------------------------------------------------------------- /PKHeX.Core/Ribbons/IRibbonSetMark9.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Ribbons/IRibbonSetMark9.cs -------------------------------------------------------------------------------- /PKHeX.Core/Ribbons/IRibbonSetMemory6.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Ribbons/IRibbonSetMemory6.cs -------------------------------------------------------------------------------- /PKHeX.Core/Ribbons/Past/IRibbonSetOnly3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Ribbons/Past/IRibbonSetOnly3.cs -------------------------------------------------------------------------------- /PKHeX.Core/Ribbons/Past/IRibbonSetUnique3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Ribbons/Past/IRibbonSetUnique3.cs -------------------------------------------------------------------------------- /PKHeX.Core/Ribbons/Past/IRibbonSetUnique4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Ribbons/Past/IRibbonSetUnique4.cs -------------------------------------------------------------------------------- /PKHeX.Core/Ribbons/Past/RibbonIndex3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Ribbons/Past/RibbonIndex3.cs -------------------------------------------------------------------------------- /PKHeX.Core/Ribbons/Past/RibbonIndex4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Ribbons/Past/RibbonIndex4.cs -------------------------------------------------------------------------------- /PKHeX.Core/Ribbons/RibbonIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Ribbons/RibbonIndex.cs -------------------------------------------------------------------------------- /PKHeX.Core/Ribbons/RibbonInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Ribbons/RibbonInfo.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/Abstractions/ITrainerInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/Abstractions/ITrainerInfo.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/Access/ISCBlockArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/Access/ISCBlockArray.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/Access/ISaveBlock5B2W2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/Access/ISaveBlock5B2W2.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/Access/ISaveBlock5BW.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/Access/ISaveBlock5BW.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/Access/ISaveBlock6AO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/Access/ISaveBlock6AO.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/Access/ISaveBlock6Core.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/Access/ISaveBlock6Core.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/Access/ISaveBlock6Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/Access/ISaveBlock6Main.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/Access/ISaveBlock6XY.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/Access/ISaveBlock6XY.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/Access/ISaveBlock7Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/Access/ISaveBlock7Main.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/Access/ISaveBlock7SM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/Access/ISaveBlock7SM.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/Access/ISaveBlock7USUM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/Access/ISaveBlock7USUM.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/Access/ISaveBlock7b.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/Access/ISaveBlock7b.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/Access/ISaveBlock8LA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/Access/ISaveBlock8LA.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/Access/ISaveBlock8Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/Access/ISaveBlock8Main.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/Access/ISaveBlock8SWSH.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/Access/ISaveBlock8SWSH.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/Access/ISaveBlock9Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/Access/ISaveBlock9Main.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/Access/ISaveBlockAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/Access/ISaveBlockAccessor.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/Access/SCBlockAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/Access/SCBlockAccessor.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/Access/SaveBlockAccessor7b.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/Access/SaveBlockAccessor7b.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/Access/SaveBlockMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/Access/SaveBlockMetadata.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/Blocks/BlockInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/Blocks/BlockInfo.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/Blocks/BlockInfo3DS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/Blocks/BlockInfo3DS.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/Blocks/BlockInfo4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/Blocks/BlockInfo4.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/Blocks/BlockInfoNDS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/Blocks/BlockInfoNDS.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/Blocks/BlockInfoRSBOX.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/Blocks/BlockInfoRSBOX.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/Blocks/RecordBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/Blocks/RecordBlock.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/Blocks/SaveBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/Blocks/SaveBlock.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/Encryption/ColoCrypto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/Encryption/ColoCrypto.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/Encryption/GeniusCrypto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/Encryption/GeniusCrypto.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/Encryption/XDCrypto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/Encryption/XDCrypto.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/MemoryCard/DEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/MemoryCard/DEntry.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/SAV1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/SAV1.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/SAV1Stadium.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/SAV1Stadium.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/SAV1StadiumJ.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/SAV1StadiumJ.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/SAV2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/SAV2.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/SAV2Stadium.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/SAV2Stadium.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/SAV3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/SAV3.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/SAV3Colosseum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/SAV3Colosseum.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/SAV3E.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/SAV3E.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/SAV3FRLG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/SAV3FRLG.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/SAV3RS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/SAV3RS.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/SAV3RSBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/SAV3RSBox.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/SAV3XD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/SAV3XD.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/SAV4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/SAV4.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/SAV4BR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/SAV4BR.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/SAV4DP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/SAV4DP.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/SAV4HGSS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/SAV4HGSS.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/SAV4Pt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/SAV4Pt.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/SAV4Sinnoh.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/SAV4Sinnoh.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/SAV5.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/SAV5.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/SAV5B2W2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/SAV5B2W2.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/SAV5BW.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/SAV5BW.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/SAV6.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/SAV6.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/SAV6AO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/SAV6AO.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/SAV6AODemo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/SAV6AODemo.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/SAV6XY.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/SAV6XY.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/SAV7.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/SAV7.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/SAV7SM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/SAV7SM.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/SAV7USUM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/SAV7USUM.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/SAV7b.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/SAV7b.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/SAV8BS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/SAV8BS.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/SAV8LA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/SAV8LA.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/SAV8SWSH.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/SAV8SWSH.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/SAV9SV.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/SAV9SV.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/SAV9ZA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/SAV9ZA.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/SAV_BEEF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/SAV_BEEF.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/SAV_STADIUM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/SAV_STADIUM.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/SaveFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/SaveFile.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/SaveFileMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/SaveFileMetadata.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/SaveFileState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/SaveFileState.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/Storage/Bank3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/Storage/Bank3.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/Storage/Bank4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/Storage/Bank4.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/Storage/Bank7.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/Storage/Bank7.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/Storage/BulkStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/Storage/BulkStorage.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/Storage/SAV4Ranch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/Storage/SAV4Ranch.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/Storage/SlotPointerUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/Storage/SlotPointerUtil.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/Storage/StorageSlotSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/Storage/StorageSlotSource.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/Substructures/Gen3/RTC3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/Substructures/Gen3/RTC3.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/Substructures/Gen3/Record3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/Substructures/Gen3/Record3.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/Substructures/Gen3/Roamer3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/Substructures/Gen3/Roamer3.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/Substructures/Gen3/Swarm3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/Substructures/Gen3/Swarm3.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/Substructures/Gen4/Dendou4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/Substructures/Gen4/Dendou4.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/Substructures/Gen4/Geonet4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/Substructures/Gen4/Geonet4.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/Substructures/Gen4/Group4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/Substructures/Gen4/Group4.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/Substructures/Gen4/Hall4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/Substructures/Gen4/Hall4.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/Substructures/Gen4/Poffin4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/Substructures/Gen4/Poffin4.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/Substructures/Gen4/Record4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/Substructures/Gen4/Record4.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/Substructures/Gen4/Roamer4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/Substructures/Gen4/Roamer4.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/Substructures/Gen4/Seal4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/Substructures/Gen4/Seal4.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/Substructures/Gen5/Medal5.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/Substructures/Gen5/Medal5.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/Substructures/Gen5/Misc5.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/Substructures/Gen5/Misc5.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/Substructures/Gen5/Record5.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/Substructures/Gen5/Record5.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/Substructures/Gen5/Roamer5.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/Substructures/Gen5/Roamer5.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/Substructures/Gen6/GTS6.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/Substructures/Gen6/GTS6.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/Substructures/Gen6/Misc6AO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/Substructures/Gen6/Misc6AO.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/Substructures/Gen6/Misc6XY.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/Substructures/Gen6/Misc6XY.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/Substructures/Gen6/PSS6.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/Substructures/Gen6/PSS6.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/Substructures/Gen6/Puff6.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/Substructures/Gen6/Puff6.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/Substructures/Gen7/GTS7.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/Substructures/Gen7/GTS7.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/Substructures/Gen7/Misc7.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/Substructures/Gen7/Misc7.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/Substructures/Gen7/QR7.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/Substructures/Gen7/QR7.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/Substructures/Gen7/Stamp7.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/Substructures/Gen7/Stamp7.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/Substructures/Gen9/SV/Box9.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/Substructures/Gen9/SV/Box9.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/Substructures/Gen9/SV/DXT1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/Substructures/Gen9/SV/DXT1.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/Substructures/Mail/Mail2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/Substructures/Mail/Mail2.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/Substructures/Mail/Mail3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/Substructures/Mail/Mail3.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/Substructures/Mail/Mail4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/Substructures/Mail/Mail4.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/Substructures/Mail/Mail5.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/Substructures/Mail/Mail5.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/Substructures/Misc/IGeonet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/Substructures/Misc/IGeonet.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/Substructures/Records.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/Substructures/Records.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/Util/BinaryExportSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/Util/BinaryExportSetting.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/Util/BlankSaveFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/Util/BlankSaveFile.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/Util/BoxUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/Util/BoxUtil.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/Util/Checksums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/Util/Checksums.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/Util/DexFormUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/Util/DexFormUtil.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/Util/IGCSaveFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/Util/IGCSaveFile.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/Util/ILangDeviantSave.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/Util/ILangDeviantSave.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/Util/Recognition/ZipReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/Util/Recognition/ZipReader.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/Util/SaveExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/Util/SaveExtensions.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/Util/SaveFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/Util/SaveFinder.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/Util/SaveLanguage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/Util/SaveLanguage.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/Util/SaveUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/Util/SaveUtil.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/Util/StadiumUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/Util/StadiumUtil.cs -------------------------------------------------------------------------------- /PKHeX.Core/Saves/Util/StorageUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Saves/Util/StorageUtil.cs -------------------------------------------------------------------------------- /PKHeX.Core/Util/BinaryCodedDecimal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Util/BinaryCodedDecimal.cs -------------------------------------------------------------------------------- /PKHeX.Core/Util/ComboItemUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Util/ComboItemUtil.cs -------------------------------------------------------------------------------- /PKHeX.Core/Util/DateUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Util/DateUtil.cs -------------------------------------------------------------------------------- /PKHeX.Core/Util/EmbeddedResourceCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Util/EmbeddedResourceCache.cs -------------------------------------------------------------------------------- /PKHeX.Core/Util/FileUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Util/FileUtil.cs -------------------------------------------------------------------------------- /PKHeX.Core/Util/FlagUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Util/FlagUtil.cs -------------------------------------------------------------------------------- /PKHeX.Core/Util/Localization/LocalizeUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Util/Localization/LocalizeUtil.cs -------------------------------------------------------------------------------- /PKHeX.Core/Util/MessageStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Util/MessageStrings.cs -------------------------------------------------------------------------------- /PKHeX.Core/Util/NetUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Util/NetUtil.cs -------------------------------------------------------------------------------- /PKHeX.Core/Util/PathUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Util/PathUtil.cs -------------------------------------------------------------------------------- /PKHeX.Core/Util/RandUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Util/RandUtil.cs -------------------------------------------------------------------------------- /PKHeX.Core/Util/ReflectUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Util/ReflectUtil.cs -------------------------------------------------------------------------------- /PKHeX.Core/Util/ResourceUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Util/ResourceUtil.cs -------------------------------------------------------------------------------- /PKHeX.Core/Util/StringUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Util/StringUtil.cs -------------------------------------------------------------------------------- /PKHeX.Core/Util/UpdateUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Util/UpdateUtil.cs -------------------------------------------------------------------------------- /PKHeX.Core/Util/Util.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Util/Util.cs -------------------------------------------------------------------------------- /PKHeX.Core/Util/ValueTypeTypeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Core/Util/ValueTypeTypeConverter.cs -------------------------------------------------------------------------------- /PKHeX.Drawing.Misc/PKHeX.Drawing.Misc.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Drawing.Misc/PKHeX.Drawing.Misc.csproj -------------------------------------------------------------------------------- /PKHeX.Drawing.Misc/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Drawing.Misc/Properties/Resources.resx -------------------------------------------------------------------------------- /PKHeX.Drawing.Misc/QR/QRDecode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Drawing.Misc/QR/QRDecode.cs -------------------------------------------------------------------------------- /PKHeX.Drawing.Misc/QR/QRDecodeResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Drawing.Misc/QR/QRDecodeResult.cs -------------------------------------------------------------------------------- /PKHeX.Drawing.Misc/QR/QREncode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Drawing.Misc/QR/QREncode.cs -------------------------------------------------------------------------------- /PKHeX.Drawing.Misc/QR/QRImageUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Drawing.Misc/QR/QRImageUtil.cs -------------------------------------------------------------------------------- /PKHeX.Drawing.Misc/Util/PlayerSpriteUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Drawing.Misc/Util/PlayerSpriteUtil.cs -------------------------------------------------------------------------------- /PKHeX.Drawing.Misc/Util/RibbonSpriteUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Drawing.Misc/Util/RibbonSpriteUtil.cs -------------------------------------------------------------------------------- /PKHeX.Drawing.Misc/Util/TypeSpriteUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Drawing.Misc/Util/TypeSpriteUtil.cs -------------------------------------------------------------------------------- /PKHeX.Drawing.Misc/Util/WallpaperUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Drawing.Misc/Util/WallpaperUtil.cs -------------------------------------------------------------------------------- /PKHeX.Drawing.PokeSprite/Util/ContestColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Drawing.PokeSprite/Util/ContestColor.cs -------------------------------------------------------------------------------- /PKHeX.Drawing.PokeSprite/Util/SpriteName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Drawing.PokeSprite/Util/SpriteName.cs -------------------------------------------------------------------------------- /PKHeX.Drawing.PokeSprite/Util/SpriteUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Drawing.PokeSprite/Util/SpriteUtil.cs -------------------------------------------------------------------------------- /PKHeX.Drawing.PokeSprite/Util/StatusColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Drawing.PokeSprite/Util/StatusColor.cs -------------------------------------------------------------------------------- /PKHeX.Drawing.PokeSprite/Util/TypeColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Drawing.PokeSprite/Util/TypeColor.cs -------------------------------------------------------------------------------- /PKHeX.Drawing/ColorUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Drawing/ColorUtil.cs -------------------------------------------------------------------------------- /PKHeX.Drawing/ImageUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Drawing/ImageUtil.cs -------------------------------------------------------------------------------- /PKHeX.Drawing/PKHeX.Drawing.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.Drawing/PKHeX.Drawing.csproj -------------------------------------------------------------------------------- /PKHeX.WinForms/Controls/PKM Editor/EditPK1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Controls/PKM Editor/EditPK1.cs -------------------------------------------------------------------------------- /PKHeX.WinForms/Controls/PKM Editor/EditPK2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Controls/PKM Editor/EditPK2.cs -------------------------------------------------------------------------------- /PKHeX.WinForms/Controls/PKM Editor/EditPK3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Controls/PKM Editor/EditPK3.cs -------------------------------------------------------------------------------- /PKHeX.WinForms/Controls/PKM Editor/EditPK4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Controls/PKM Editor/EditPK4.cs -------------------------------------------------------------------------------- /PKHeX.WinForms/Controls/PKM Editor/EditPK5.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Controls/PKM Editor/EditPK5.cs -------------------------------------------------------------------------------- /PKHeX.WinForms/Controls/PKM Editor/EditPK6.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Controls/PKM Editor/EditPK6.cs -------------------------------------------------------------------------------- /PKHeX.WinForms/Controls/PKM Editor/EditPK7.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Controls/PKM Editor/EditPK7.cs -------------------------------------------------------------------------------- /PKHeX.WinForms/Controls/PKM Editor/EditPK8.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Controls/PKM Editor/EditPK8.cs -------------------------------------------------------------------------------- /PKHeX.WinForms/Controls/PKM Editor/EditPK9.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Controls/PKM Editor/EditPK9.cs -------------------------------------------------------------------------------- /PKHeX.WinForms/Controls/PKM Editor/LoadSave.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Controls/PKM Editor/LoadSave.cs -------------------------------------------------------------------------------- /PKHeX.WinForms/Controls/PKM Editor/SizeCP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Controls/PKM Editor/SizeCP.cs -------------------------------------------------------------------------------- /PKHeX.WinForms/Controls/Slots/CryPlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Controls/Slots/CryPlayer.cs -------------------------------------------------------------------------------- /PKHeX.WinForms/Controls/Slots/DragManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Controls/Slots/DragManager.cs -------------------------------------------------------------------------------- /PKHeX.WinForms/Controls/Slots/DropModifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Controls/Slots/DropModifier.cs -------------------------------------------------------------------------------- /PKHeX.WinForms/Controls/Slots/PokeGrid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Controls/Slots/PokeGrid.cs -------------------------------------------------------------------------------- /PKHeX.WinForms/Controls/Slots/PokePreview.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Controls/Slots/PokePreview.cs -------------------------------------------------------------------------------- /PKHeX.WinForms/Controls/Slots/SlotList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Controls/Slots/SlotList.cs -------------------------------------------------------------------------------- /PKHeX.WinForms/Controls/Slots/SlotUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Controls/Slots/SlotUtil.cs -------------------------------------------------------------------------------- /PKHeX.WinForms/MainWindow/Main.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/MainWindow/Main.Designer.cs -------------------------------------------------------------------------------- /PKHeX.WinForms/MainWindow/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/MainWindow/Main.cs -------------------------------------------------------------------------------- /PKHeX.WinForms/MainWindow/Main.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/MainWindow/Main.resx -------------------------------------------------------------------------------- /PKHeX.WinForms/Misc/About.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Misc/About.Designer.cs -------------------------------------------------------------------------------- /PKHeX.WinForms/Misc/About.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Misc/About.cs -------------------------------------------------------------------------------- /PKHeX.WinForms/Misc/ErrorWindow.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Misc/ErrorWindow.Designer.cs -------------------------------------------------------------------------------- /PKHeX.WinForms/Misc/ErrorWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Misc/ErrorWindow.cs -------------------------------------------------------------------------------- /PKHeX.WinForms/Misc/QR.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Misc/QR.Designer.cs -------------------------------------------------------------------------------- /PKHeX.WinForms/Misc/QR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Misc/QR.cs -------------------------------------------------------------------------------- /PKHeX.WinForms/Misc/SplashScreen.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Misc/SplashScreen.Designer.cs -------------------------------------------------------------------------------- /PKHeX.WinForms/Misc/SplashScreen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Misc/SplashScreen.cs -------------------------------------------------------------------------------- /PKHeX.WinForms/PKHeX.WinForms.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/PKHeX.WinForms.csproj -------------------------------------------------------------------------------- /PKHeX.WinForms/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Program.cs -------------------------------------------------------------------------------- /PKHeX.WinForms/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Properties/Resources.resx -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/byte/fashion_f_sm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Resources/byte/fashion_f_sm -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/byte/fashion_f_uu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Resources/byte/fashion_f_uu -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/byte/fashion_m_sm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Resources/byte/fashion_m_sm -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/byte/fashion_m_uu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Resources/byte/fashion_m_uu -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Resources/icon.ico -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/Accents/party.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Resources/img/Accents/party.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/Accents/valid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Resources/img/Accents/valid.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/Accents/warn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Resources/img/Accents/warn.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/Bag/bag_balls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Resources/img/Bag/bag_balls.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/Bag/bag_candy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Resources/img/Bag/bag_candy.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/Bag/bag_free.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Resources/img/Bag/bag_free.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/Bag/bag_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Resources/img/Bag/bag_items.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/Bag/bag_key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Resources/img/Bag/bag_key.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/Bag/bag_mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Resources/img/Bag/bag_mail.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/Bag/bag_mega.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Resources/img/Bag/bag_mega.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/Bag/bag_tech.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Resources/img/Bag/bag_tech.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/Bag/bag_z.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Resources/img/Bag/bag_z.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/Markings/6th.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Resources/img/Markings/6th.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/Markings/leaf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Resources/img/Markings/leaf.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/Markings/vc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Resources/img/Markings/vc.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/Program/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Resources/img/Program/about.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/Program/alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Resources/img/Program/alpha.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/Program/bak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Resources/img/Program/bak.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/Program/data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Resources/img/Program/data.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/Program/date.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Resources/img/Program/date.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/Program/dump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Resources/img/Program/dump.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/Program/exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Resources/img/Program/exit.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/Program/gift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Resources/img/Program/gift.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/Program/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Resources/img/Program/heart.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/Program/load.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Resources/img/Program/load.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/Program/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Resources/img/Program/main.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/Program/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Resources/img/Program/open.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/Program/other.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Resources/img/Program/other.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/Program/qr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Resources/img/Program/qr.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/Program/redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Resources/img/Program/redo.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/Program/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Resources/img/Program/user.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/Program/users.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Resources/img/Program/users.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/Program/wand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Resources/img/Program/wand.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/Slots/swapBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Resources/img/Slots/swapBox.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/text/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Resources/text/changelog.txt -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/text/lang_de.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Resources/text/lang_de.txt -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/text/lang_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Resources/text/lang_en.txt -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/text/lang_es-419.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Resources/text/lang_es-419.txt -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/text/lang_es.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Resources/text/lang_es.txt -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/text/lang_fr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Resources/text/lang_fr.txt -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/text/lang_it.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Resources/text/lang_it.txt -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/text/lang_ja.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Resources/text/lang_ja.txt -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/text/lang_ko.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Resources/text/lang_ko.txt -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/text/lang_zh-Hans.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Resources/text/lang_zh-Hans.txt -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/text/lang_zh-Hant.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Resources/text/lang_zh-Hant.txt -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/text/shortcuts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Resources/text/shortcuts.txt -------------------------------------------------------------------------------- /PKHeX.WinForms/Settings/DisplaySettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Settings/DisplaySettings.cs -------------------------------------------------------------------------------- /PKHeX.WinForms/Settings/HoverSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Settings/HoverSettings.cs -------------------------------------------------------------------------------- /PKHeX.WinForms/Settings/PKHeXSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Settings/PKHeXSettings.cs -------------------------------------------------------------------------------- /PKHeX.WinForms/Settings/SlotExportSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Settings/SlotExportSettings.cs -------------------------------------------------------------------------------- /PKHeX.WinForms/Settings/SpriteSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Settings/SpriteSettings.cs -------------------------------------------------------------------------------- /PKHeX.WinForms/Settings/StartupSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Settings/StartupSettings.cs -------------------------------------------------------------------------------- /PKHeX.WinForms/Subforms/BoxExporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Subforms/BoxExporter.cs -------------------------------------------------------------------------------- /PKHeX.WinForms/Subforms/KChart.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Subforms/KChart.Designer.cs -------------------------------------------------------------------------------- /PKHeX.WinForms/Subforms/KChart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Subforms/KChart.cs -------------------------------------------------------------------------------- /PKHeX.WinForms/Subforms/PKM Editors/Text.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Subforms/PKM Editors/Text.cs -------------------------------------------------------------------------------- /PKHeX.WinForms/Subforms/ReportGrid.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Subforms/ReportGrid.Designer.cs -------------------------------------------------------------------------------- /PKHeX.WinForms/Subforms/ReportGrid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Subforms/ReportGrid.cs -------------------------------------------------------------------------------- /PKHeX.WinForms/Subforms/SAV_Database.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Subforms/SAV_Database.cs -------------------------------------------------------------------------------- /PKHeX.WinForms/Subforms/SAV_Encounters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Subforms/SAV_Encounters.cs -------------------------------------------------------------------------------- /PKHeX.WinForms/Subforms/SAV_FolderList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Subforms/SAV_FolderList.cs -------------------------------------------------------------------------------- /PKHeX.WinForms/Subforms/SAV_MysteryGiftDB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Subforms/SAV_MysteryGiftDB.cs -------------------------------------------------------------------------------- /PKHeX.WinForms/Subforms/SettingsEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Subforms/SettingsEditor.cs -------------------------------------------------------------------------------- /PKHeX.WinForms/Util/DevUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Util/DevUtil.cs -------------------------------------------------------------------------------- /PKHeX.WinForms/Util/FontUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Util/FontUtil.cs -------------------------------------------------------------------------------- /PKHeX.WinForms/Util/GengarNamer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Util/GengarNamer.cs -------------------------------------------------------------------------------- /PKHeX.WinForms/Util/Plugins/PluginLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Util/Plugins/PluginLoader.cs -------------------------------------------------------------------------------- /PKHeX.WinForms/Util/WinFormsTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Util/WinFormsTranslator.cs -------------------------------------------------------------------------------- /PKHeX.WinForms/Util/WinFormsUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.WinForms/Util/WinFormsUtil.cs -------------------------------------------------------------------------------- /PKHeX.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.sln -------------------------------------------------------------------------------- /PKHeX.slnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/PKHeX.slnx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/README.md -------------------------------------------------------------------------------- /Tests/PKHeX.Core.Tests/General/GeneralTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/Tests/PKHeX.Core.Tests/General/GeneralTests.cs -------------------------------------------------------------------------------- /Tests/PKHeX.Core.Tests/General/MarshalTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/Tests/PKHeX.Core.Tests/General/MarshalTests.cs -------------------------------------------------------------------------------- /Tests/PKHeX.Core.Tests/Legality/BallTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/Tests/PKHeX.Core.Tests/Legality/BallTests.cs -------------------------------------------------------------------------------- /Tests/PKHeX.Core.Tests/Legality/BreedTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/Tests/PKHeX.Core.Tests/Legality/BreedTests.cs -------------------------------------------------------------------------------- /Tests/PKHeX.Core.Tests/PKHeX.Core.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/Tests/PKHeX.Core.Tests/PKHeX.Core.Tests.csproj -------------------------------------------------------------------------------- /Tests/PKHeX.Core.Tests/PKM/HiddenPowerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/Tests/PKHeX.Core.Tests/PKM/HiddenPowerTests.cs -------------------------------------------------------------------------------- /Tests/PKHeX.Core.Tests/PKM/LCRNGTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/Tests/PKHeX.Core.Tests/PKM/LCRNGTest.cs -------------------------------------------------------------------------------- /Tests/PKHeX.Core.Tests/PKM/PIDIVTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/Tests/PKHeX.Core.Tests/PKM/PIDIVTests.cs -------------------------------------------------------------------------------- /Tests/PKHeX.Core.Tests/PKM/PKMTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/Tests/PKHeX.Core.Tests/PKM/PKMTests.cs -------------------------------------------------------------------------------- /Tests/PKHeX.Core.Tests/PKM/StatTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/Tests/PKHeX.Core.Tests/PKM/StatTest.cs -------------------------------------------------------------------------------- /Tests/PKHeX.Core.Tests/PKM/StringTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/Tests/PKHeX.Core.Tests/PKM/StringTests.cs -------------------------------------------------------------------------------- /Tests/PKHeX.Core.Tests/Saves/HomeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/Tests/PKHeX.Core.Tests/Saves/HomeTests.cs -------------------------------------------------------------------------------- /Tests/PKHeX.Core.Tests/Saves/PokeDex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/Tests/PKHeX.Core.Tests/Saves/PokeDex.cs -------------------------------------------------------------------------------- /Tests/PKHeX.Core.Tests/Saves/SMTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/Tests/PKHeX.Core.Tests/Saves/SMTests.cs -------------------------------------------------------------------------------- /Tests/PKHeX.Core.Tests/TestData/mew.eh3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/Tests/PKHeX.Core.Tests/TestData/mew.eh3 -------------------------------------------------------------------------------- /Tests/PKHeX.Core.Tests/Util/DataUtilTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/Tests/PKHeX.Core.Tests/Util/DataUtilTests.cs -------------------------------------------------------------------------------- /Tests/PKHeX.Core.Tests/Util/DateUtilTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/Tests/PKHeX.Core.Tests/Util/DateUtilTests.cs -------------------------------------------------------------------------------- /Tests/PKHeX.Core.Tests/Util/FlagUtilTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/Tests/PKHeX.Core.Tests/Util/FlagUtilTests.cs -------------------------------------------------------------------------------- /Tests/PKHeX.Core.Tests/Util/TestUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/Tests/PKHeX.Core.Tests/Util/TestUtil.cs -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/icon.png -------------------------------------------------------------------------------- /mgdb/pgf.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/mgdb/pgf.pkl -------------------------------------------------------------------------------- /mgdb/wa8.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/mgdb/wa8.pkl -------------------------------------------------------------------------------- /mgdb/wa9.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/mgdb/wa9.pkl -------------------------------------------------------------------------------- /mgdb/wb7full.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/mgdb/wb7full.pkl -------------------------------------------------------------------------------- /mgdb/wb8.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/mgdb/wb8.pkl -------------------------------------------------------------------------------- /mgdb/wc4.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/mgdb/wc4.pkl -------------------------------------------------------------------------------- /mgdb/wc6.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/mgdb/wc6.pkl -------------------------------------------------------------------------------- /mgdb/wc6full.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/mgdb/wc6full.pkl -------------------------------------------------------------------------------- /mgdb/wc7.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/mgdb/wc7.pkl -------------------------------------------------------------------------------- /mgdb/wc7full.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/mgdb/wc7full.pkl -------------------------------------------------------------------------------- /mgdb/wc8.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/mgdb/wc8.pkl -------------------------------------------------------------------------------- /mgdb/wc9.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/mgdb/wc9.pkl -------------------------------------------------------------------------------- /wild/encounter_go_home.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/wild/encounter_go_home.pkl -------------------------------------------------------------------------------- /wild/encounter_go_lgpe.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexbyt3/PKHeXth/HEAD/wild/encounter_go_lgpe.pkl --------------------------------------------------------------------------------