├── .dockerignore ├── .editorconfig ├── .gitattributes ├── .github ├── FUNDING.yml └── workflows │ ├── build-and-deploy.yml │ └── ci.yml ├── .gitignore ├── .vscode ├── extensions.json └── settings.json ├── Directory.Build.props ├── LICENSE ├── README.md ├── Wowthing.All.sln ├── Wowthing.Backend.sln ├── Wowthing.Web.sln ├── _magic ├── k8s-deployment-backend.yml └── k8s-deployment-web.yml ├── apps ├── backend │ ├── Converters │ │ └── DefaultOnErrorConverter.cs │ ├── Data │ │ ├── IgnoredAuctionItemIds.cs │ │ └── Quests.cs │ ├── Dockerfile │ ├── Enums │ │ └── WowItem.cs │ ├── Exceptions │ │ └── InvalidJsonException.cs │ ├── Extensions │ │ ├── ChannelReaderExtensions.cs │ │ └── IHostExtensions.cs │ ├── GlobalUsings.cs │ ├── Helpers │ │ └── UserUploadCharacterProcessor.cs │ ├── Jobs │ │ ├── Character │ │ │ ├── CharacterAchievementStatisticsJob.cs │ │ │ ├── CharacterAchievementsJob.cs │ │ │ ├── CharacterEquipmentJob.cs │ │ │ ├── CharacterHeirloomsJob.cs │ │ │ ├── CharacterJob.cs │ │ │ ├── CharacterMediaJob.cs │ │ │ ├── CharacterMountsJob.cs │ │ │ ├── CharacterMythicKeystoneProfileJob.cs │ │ │ ├── CharacterMythicKeystoneProfileSeasonJob.cs │ │ │ ├── CharacterPetsJob.cs │ │ │ ├── CharacterProfessionsJob.cs │ │ │ ├── CharacterQuestsCompletedJob.cs │ │ │ ├── CharacterReputationsJob.cs │ │ │ ├── CharacterSoulbindsJob.cs │ │ │ ├── CharacterSpecializationsJob.cs │ │ │ ├── CharacterStatsJob.cs │ │ │ ├── CharacterToysJob.cs │ │ │ └── CharacterTransmogsJob.cs │ │ ├── Data │ │ │ ├── DataAuctionsJob.cs │ │ │ ├── DataAuctionsStartJob.cs │ │ │ ├── DataConnectedRealmIndexJob.cs │ │ │ ├── DataConnectedRealmJob.cs │ │ │ ├── DataMythicKeystonePeriodIndexJob.cs │ │ │ ├── DataMythicKeystonePeriodJob.cs │ │ │ ├── DataMythicKeystoneSeasonIndexJob.cs │ │ │ ├── DataQuestJob.cs │ │ │ ├── DataQuestsStartJob.cs │ │ │ └── DataRealmIndexJob.cs │ │ ├── IJob.cs │ │ ├── IScheduledJob.cs │ │ ├── JobBase.cs │ │ ├── JobFactory.cs │ │ ├── Magic │ │ │ └── MagicAggregateWorldQuestsJob.cs │ │ ├── Maintenance │ │ │ ├── MaintenanceAggregateHourlyAuctionDataJob.cs │ │ │ ├── MaintenanceBackfillUserCacheJob.cs │ │ │ ├── MaintenanceDeleteCharactersJob.cs │ │ │ ├── MaintenanceDeleteOldAuctionTablesJob.cs │ │ │ ├── MaintenanceDeleteWorldQuestReportsJob.cs │ │ │ └── MaintenanceUnlinkCharactersJob.cs │ │ ├── Misc │ │ │ └── ImageJob.cs │ │ ├── NonBlizzard │ │ │ ├── CharacterRaiderIoJob.cs │ │ │ └── DataRaiderIoScoreTiersJob.cs │ │ ├── ScheduledJob.cs │ │ └── User │ │ │ ├── UserBulkDataJob.cs │ │ │ ├── UserCacheAchievementsJob.cs │ │ │ ├── UserCacheMountsJob.cs │ │ │ ├── UserCacheQuestsJob.cs │ │ │ ├── UserCacheTransmogJob.cs │ │ │ ├── UserCharactersJob.cs │ │ │ └── UserUploadJob.cs │ ├── Metrics │ │ └── JobMetrics.cs │ ├── Models │ │ ├── API │ │ │ ├── ApiAccessToken.cs │ │ │ ├── ApiGenderString.cs │ │ │ ├── ApiKeyValue.cs │ │ │ ├── ApiNamespace.cs │ │ │ ├── ApiObnoxiousHref.cs │ │ │ ├── ApiObnoxiousObject.cs │ │ │ ├── ApiTypeId.cs │ │ │ ├── ApiTypeName.cs │ │ │ ├── ApiTypeValue.cs │ │ │ ├── ApiValueDisplay.cs │ │ │ ├── Character │ │ │ │ ├── ApiCharacter.cs │ │ │ │ ├── ApiCharacterAchievementStatistics.cs │ │ │ │ ├── ApiCharacterAchievements.cs │ │ │ │ ├── ApiCharacterEquipment.cs │ │ │ │ ├── ApiCharacterHeirlooms.cs │ │ │ │ ├── ApiCharacterMedia.cs │ │ │ │ ├── ApiCharacterMounts.cs │ │ │ │ ├── ApiCharacterMythicKeystoneProfile.cs │ │ │ │ ├── ApiCharacterMythicKeystoneProfileSeason.cs │ │ │ │ ├── ApiCharacterPets.cs │ │ │ │ ├── ApiCharacterProfessions.cs │ │ │ │ ├── ApiCharacterQuestsCompleted.cs │ │ │ │ ├── ApiCharacterReputations.cs │ │ │ │ ├── ApiCharacterSoulbinds.cs │ │ │ │ ├── ApiCharacterSpecializations.cs │ │ │ │ ├── ApiCharacterStats.cs │ │ │ │ ├── ApiCharacterToys.cs │ │ │ │ └── ApiCharacterTransmogs.cs │ │ │ ├── Data │ │ │ │ ├── ApiDataAuctions.cs │ │ │ │ ├── ApiDataConnectedRealm.cs │ │ │ │ ├── ApiDataConnectedRealmIndex.cs │ │ │ │ ├── ApiDataMythicKeystonePeriod.cs │ │ │ │ ├── ApiDataMythicKeystonePeriodIndex.cs │ │ │ │ ├── ApiDataMythicKeystoneSeasonIndex.cs │ │ │ │ ├── ApiDataPlayableClass.cs │ │ │ │ ├── ApiDataPlayableClassIndex.cs │ │ │ │ ├── ApiDataPlayableRaceIndex.cs │ │ │ │ ├── ApiDataQuest.cs │ │ │ │ └── ApiDataRealmIndex.cs │ │ │ ├── NonBlizzard │ │ │ │ ├── ApiCharacterRaiderIo.cs │ │ │ │ └── ApiDataRaiderIoScoreTier.cs │ │ │ ├── Profile │ │ │ │ └── ApiAccountProfile.cs │ │ │ └── User │ │ │ │ ├── ApiUserHeirlooms.cs │ │ │ │ ├── ApiUserMounts.cs │ │ │ │ ├── ApiUserPets.cs │ │ │ │ ├── ApiUserToys.cs │ │ │ │ └── ApiUserTransmogs.cs │ │ ├── BattleNetOptions.cs │ │ ├── Cache │ │ │ ├── ItemBonusCache.cs │ │ │ └── ItemModifiedAppearanceCache.cs │ │ ├── Data │ │ │ └── OutRaiderIoScoreTiers.cs │ │ ├── ExtraEncounter.cs │ │ ├── JobHttpResult.cs │ │ ├── Redis │ │ │ ├── RedisAccessToken.cs │ │ │ ├── RedisUserAchievements.cs │ │ │ └── RedisUserTransmog.cs │ │ ├── Uploads │ │ │ ├── Upload.cs │ │ │ ├── UploadCharacter.cs │ │ │ ├── UploadCharacterVault.cs │ │ │ ├── UploadGuild.cs │ │ │ └── UploadWarbank.cs │ │ └── WowthingBackendOptions.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Services │ │ ├── AuthorizationService.cs │ │ ├── Base │ │ │ └── TimerService.cs │ │ ├── GarbageService.cs │ │ ├── GoldSnapshotService.cs │ │ ├── JobQueueService.cs │ │ ├── MemoryCacheService.cs │ │ ├── SchedulerService.cs │ │ ├── StateService.cs │ │ ├── UserLeaderboardService.cs │ │ └── WorkerService.cs │ ├── Wowthing.Backend.csproj │ ├── appsettings.Development.json │ ├── appsettings.Production.json │ ├── appsettings.json │ ├── development.Dockerfile │ └── project.json ├── benchmark │ ├── .gitignore │ ├── Program.cs │ └── Wowthing.Benchmark.csproj ├── discord │ ├── Program.cs │ └── Wowthing.Discord.csproj ├── frontend │ ├── .prettierignore │ ├── admin │ │ ├── Main.svelte │ │ ├── Routes.svelte │ │ ├── Sidebar.svelte │ │ ├── admin.ts │ │ └── components │ │ │ └── rename-requests │ │ │ ├── RenameRequests.svelte │ │ │ ├── store.ts │ │ │ └── types.ts │ ├── apps │ │ ├── teams.ts │ │ └── teams │ │ │ ├── AppTeams.svelte │ │ │ ├── AppTeamsRoutes.svelte │ │ │ └── AppTeamsSidebar.svelte │ ├── auctions │ │ ├── Main.svelte │ │ ├── Routes.svelte │ │ ├── Sidebar.svelte │ │ ├── auctions.ts │ │ ├── components │ │ │ ├── browse │ │ │ │ ├── Browse.svelte │ │ │ │ └── store.ts │ │ │ ├── results │ │ │ │ ├── Results.svelte │ │ │ │ ├── ResultsRow.svelte │ │ │ │ └── Selected.svelte │ │ │ └── search │ │ │ │ ├── Search.svelte │ │ │ │ └── store.ts │ │ ├── stores │ │ │ ├── specific.ts │ │ │ └── state.ts │ │ └── types │ │ │ └── auction-entry.ts │ ├── components │ │ ├── achievements │ │ │ ├── Achievement.svelte │ │ │ ├── Achievements.svelte │ │ │ ├── Category.svelte │ │ │ ├── Criteria.svelte │ │ │ ├── CriteriaTree.svelte │ │ │ ├── ScoreSummary.svelte │ │ │ ├── Sidebar.svelte │ │ │ ├── get-account-data.ts │ │ │ ├── get-achievement-data.ts │ │ │ └── types.ts │ │ ├── appearances │ │ │ ├── Appearances.svelte │ │ │ ├── AppearancesItem.svelte │ │ │ ├── AppearancesOptions.svelte │ │ │ ├── AppearancesSet.svelte │ │ │ ├── AppearancesSidebar.svelte │ │ │ └── AppearancesView.svelte │ │ ├── auctions │ │ │ ├── Auctions.svelte │ │ │ ├── AuctionsCustom.svelte │ │ │ ├── AuctionsExtraPets.svelte │ │ │ ├── AuctionsMissing.svelte │ │ │ ├── AuctionsMissingBigResults.svelte │ │ │ ├── AuctionsSidebar.svelte │ │ │ ├── AuctionsSpecificItem.svelte │ │ │ ├── AuctionsView.svelte │ │ │ ├── RealmTooltip.svelte │ │ │ └── commodities │ │ │ │ ├── Commodities.svelte │ │ │ │ ├── Table.svelte │ │ │ │ ├── get-character-commodities.ts │ │ │ │ ├── local-storage.ts │ │ │ │ └── store.ts │ │ ├── character-table │ │ │ ├── CharacterTable.svelte │ │ │ ├── CharacterTableHead.svelte │ │ │ ├── CharacterTableRow.svelte │ │ │ ├── CharacterTableSpacerRow.svelte │ │ │ ├── head │ │ │ │ ├── BagSpace.svelte │ │ │ │ ├── Icon.svelte │ │ │ │ ├── ItemLevel.svelte │ │ │ │ ├── Keystone.svelte │ │ │ │ ├── MovementSpeed.svelte │ │ │ │ ├── RaiderIo.svelte │ │ │ │ ├── Spacer.svelte │ │ │ │ └── Vault.svelte │ │ │ └── row │ │ │ │ ├── BagSpace.svelte │ │ │ │ ├── BestItemLevel.svelte │ │ │ │ ├── CharacterLevel.svelte │ │ │ │ ├── CharacterName.svelte │ │ │ │ ├── ItemLevel.svelte │ │ │ │ ├── Keystone.svelte │ │ │ │ ├── LastSeenAddon.svelte │ │ │ │ ├── MovementSpeed.svelte │ │ │ │ ├── RaiderIo.svelte │ │ │ │ ├── RemixArtifact.svelte │ │ │ │ ├── Spacer.svelte │ │ │ │ ├── VaultDungeon.svelte │ │ │ │ ├── VaultRaid.svelte │ │ │ │ ├── VaultShared.svelte │ │ │ │ └── VaultWorld.svelte │ │ ├── characters │ │ │ ├── Characters.svelte │ │ │ ├── CharactersSidebar.svelte │ │ │ ├── CharactersView.svelte │ │ │ ├── garrison-tree │ │ │ │ └── CharactersGarrisonTree.svelte │ │ │ ├── items │ │ │ │ ├── CharacterItemsEmpty.svelte │ │ │ │ ├── CharactersItems.svelte │ │ │ │ └── CharactersItemsLocation.svelte │ │ │ ├── paperdoll │ │ │ │ ├── CharactersPaperdoll.svelte │ │ │ │ ├── CharactersPaperdollConfigure.svelte │ │ │ │ ├── CharactersPaperdollEquipped.svelte │ │ │ │ ├── CharactersPaperdollStats.svelte │ │ │ │ └── stats │ │ │ │ │ ├── CharactersPaperdollStatsBasic.svelte │ │ │ │ │ ├── CharactersPaperdollStatsMisc.svelte │ │ │ │ │ └── CharactersPaperdollStatsRating.svelte │ │ │ ├── professions │ │ │ │ ├── CharacterProfessions.svelte │ │ │ │ ├── CharacterProfessionsCollectible.svelte │ │ │ │ ├── CharacterProfessionsCollectibles.svelte │ │ │ │ ├── CharacterProfessionsOptions.svelte │ │ │ │ ├── CharacterProfessionsProfession.svelte │ │ │ │ ├── CharacterProfessionsProfessionCraftLevels.svelte │ │ │ │ ├── CharacterProfessionsProfessionSkillRanks.svelte │ │ │ │ ├── CharacterProfessionsProfessionTable.svelte │ │ │ │ ├── CharacterProfessionsSidebar.svelte │ │ │ │ ├── CharacterProfessionsSubnavLinks.svelte │ │ │ │ ├── CharacterProfessionsTraits.svelte │ │ │ │ ├── CharacterProfessionsTraitsNode.svelte │ │ │ │ └── CharacterProfessionsView.svelte │ │ │ ├── shadowlands │ │ │ │ ├── CharactersShadowlands.svelte │ │ │ │ ├── CharactersShadowlandsCovenant.svelte │ │ │ │ ├── CharactersShadowlandsEmberCourt.svelte │ │ │ │ ├── CharactersShadowlandsPathOfAscension.svelte │ │ │ │ ├── CharactersShadowlandsSoulbind.svelte │ │ │ │ ├── CharactersShadowlandsSoulshapes.svelte │ │ │ │ └── necrolord │ │ │ │ │ ├── Abomination.svelte │ │ │ │ │ └── Stitchyard.svelte │ │ │ └── specializations │ │ │ │ ├── CharacterSpecializationsTalents.svelte │ │ │ │ └── CharactersSpecializations.svelte │ │ ├── collectible │ │ │ ├── Collectible.svelte │ │ │ ├── CollectibleCategory.svelte │ │ │ ├── CollectibleCount.svelte │ │ │ ├── CollectibleSection.svelte │ │ │ ├── CollectibleSectionTitle.svelte │ │ │ ├── CollectibleSidebar.svelte │ │ │ ├── CollectibleThing.svelte │ │ │ ├── CollectibleThingPet.svelte │ │ │ ├── Mounts.svelte │ │ │ ├── PetSearch.svelte │ │ │ ├── Pets.svelte │ │ │ └── Toys.svelte │ │ ├── common │ │ │ ├── BackgroundSelector.svelte │ │ │ ├── CharacterCovenant.svelte │ │ │ ├── Error.svelte │ │ │ ├── GoldPrice.svelte │ │ │ ├── Percent.svelte │ │ │ ├── ProgressBar.svelte │ │ │ ├── RarityBar.svelte │ │ │ ├── ReputationBar.svelte │ │ │ ├── ReputationText.svelte │ │ │ ├── SidebarCollectingSettings.svelte │ │ │ ├── TableIcon.svelte │ │ │ └── TableSortedBy.svelte │ │ ├── explore │ │ │ ├── Chett.svelte │ │ │ ├── Explore.svelte │ │ │ ├── ExploreAchievements.svelte │ │ │ ├── ExploreAchievementsCriteriaTree.svelte │ │ │ ├── ExploreBonusIDs.svelte │ │ │ ├── ExploreIcons.svelte │ │ │ ├── ExploreQuests.svelte │ │ │ ├── ExploreSidebar.svelte │ │ │ └── ExploreTransmog.svelte │ │ ├── heirlooms │ │ │ ├── Heirlooms.svelte │ │ │ ├── HeirloomsGroup.svelte │ │ │ ├── HeirloomsItem.svelte │ │ │ └── HeirloomsOptions.svelte │ │ ├── home │ │ │ ├── HomeTable.svelte │ │ │ ├── table │ │ │ │ ├── HomeTableGroupHead.svelte │ │ │ │ ├── head │ │ │ │ │ ├── HomeTableHeadCallings.svelte │ │ │ │ │ ├── HomeTableHeadCovenant.svelte │ │ │ │ │ ├── HomeTableHeadCurrencies.svelte │ │ │ │ │ ├── HomeTableHeadCurrentLocation.svelte │ │ │ │ │ ├── HomeTableHeadGroupedByCell.svelte │ │ │ │ │ ├── HomeTableHeadHearthLocation.svelte │ │ │ │ │ ├── HomeTableHeadItems.svelte │ │ │ │ │ ├── HomeTableHeadLockouts.svelte │ │ │ │ │ ├── HomeTableHeadProgress.svelte │ │ │ │ │ └── HomeTableHeadTasks.svelte │ │ │ │ ├── paragon │ │ │ │ │ ├── ParagonQuests.svelte │ │ │ │ │ └── Tooltip.svelte │ │ │ │ └── row │ │ │ │ │ ├── HomeTableRowCovenant.svelte │ │ │ │ │ ├── HomeTableRowCurrencies.svelte │ │ │ │ │ ├── HomeTableRowCurrentLocation.svelte │ │ │ │ │ ├── HomeTableRowDailies.svelte │ │ │ │ │ ├── HomeTableRowGear.svelte │ │ │ │ │ ├── HomeTableRowGold.svelte │ │ │ │ │ ├── HomeTableRowGoldWorldQuests.svelte │ │ │ │ │ ├── HomeTableRowGuild.svelte │ │ │ │ │ ├── HomeTableRowHearthLocation.svelte │ │ │ │ │ ├── HomeTableRowItems.svelte │ │ │ │ │ ├── HomeTableRowLockouts.svelte │ │ │ │ │ ├── HomeTableRowPlayedTime.svelte │ │ │ │ │ ├── HomeTableRowProfessionConcentration.svelte │ │ │ │ │ ├── HomeTableRowProfessionCooldowns.svelte │ │ │ │ │ ├── HomeTableRowProfessionWorkOrders.svelte │ │ │ │ │ ├── HomeTableRowProfessions.svelte │ │ │ │ │ ├── HomeTableRowProgress.svelte │ │ │ │ │ ├── HomeTableRowProgressQuest.svelte │ │ │ │ │ ├── HomeTableRowRestedExperience.svelte │ │ │ │ │ ├── HomeTableRowSettings.svelte │ │ │ │ │ ├── HomeTableRowStatuses.svelte │ │ │ │ │ ├── HomeTableRowTask.svelte │ │ │ │ │ ├── HomeTableRowTaskChore.svelte │ │ │ │ │ └── HomeTableRowTasks.svelte │ │ │ ├── utils │ │ │ │ └── delegated-tooltips.ts │ │ │ └── view-switcher │ │ │ │ ├── Holiday.svelte │ │ │ │ ├── Holidays.svelte │ │ │ │ └── ViewSwitcher.svelte │ │ ├── illusions │ │ │ ├── Illusion.svelte │ │ │ └── Illusions.svelte │ │ ├── items │ │ │ ├── Items.svelte │ │ │ ├── ItemsEmpty.svelte │ │ │ ├── ItemsItem.svelte │ │ │ ├── ItemsOptions.svelte │ │ │ ├── ItemsSearch.svelte │ │ │ ├── ItemsSearchCharacterRow.svelte │ │ │ ├── ItemsSearchCharacterTable.svelte │ │ │ ├── ItemsSearchItemRow.svelte │ │ │ ├── ItemsSearchItemTable.svelte │ │ │ ├── ItemsTableRowBags.svelte │ │ │ ├── ItemsTableRowItems.svelte │ │ │ ├── ItemsTableRowUpgrades.svelte │ │ │ ├── convertible │ │ │ │ ├── CharacterCurrencies.svelte │ │ │ │ ├── CharacterItems.svelte │ │ │ │ ├── ClassItems.svelte │ │ │ │ ├── ClassTable.svelte │ │ │ │ ├── Convertible.svelte │ │ │ │ ├── DifficultyItems.svelte │ │ │ │ ├── DifficultyTable.svelte │ │ │ │ ├── DifficultyTooltip.svelte │ │ │ │ ├── Sidebar.svelte │ │ │ │ ├── data.ts │ │ │ │ └── types.ts │ │ │ ├── guild-banks │ │ │ │ ├── GuildBank.svelte │ │ │ │ ├── GuildBanks.svelte │ │ │ │ ├── Sidebar.svelte │ │ │ │ └── Tab.svelte │ │ │ └── tokens │ │ │ │ ├── Instance.svelte │ │ │ │ ├── Options.svelte │ │ │ │ ├── TokenItem.svelte │ │ │ │ └── Tokens.svelte │ │ ├── journal │ │ │ ├── Journal.svelte │ │ │ ├── JournalEncounter.svelte │ │ │ ├── JournalEncounterStats.svelte │ │ │ ├── JournalGroup.svelte │ │ │ ├── JournalInstance.svelte │ │ │ ├── JournalItem.svelte │ │ │ ├── JournalOptions.svelte │ │ │ ├── JournalSidebar.svelte │ │ │ ├── Lockouts.svelte │ │ │ └── get-difficulties.ts │ │ ├── lockouts │ │ │ ├── GroupedHead.svelte │ │ │ ├── Lockouts.svelte │ │ │ ├── LockoutsTableHeadInstance.svelte │ │ │ └── LockoutsTableRowLockout.svelte │ │ ├── main-sidebar │ │ │ └── MainSidebar.svelte │ │ ├── mythic-plus │ │ │ ├── MythicPlus.svelte │ │ │ ├── MythicPlusSidebar.svelte │ │ │ ├── MythicPlusStats.svelte │ │ │ ├── MythicPlusTable.svelte │ │ │ ├── MythicPlusTableHeadDungeon.svelte │ │ │ ├── MythicPlusTableRowDungeon.svelte │ │ │ └── TableFoot.svelte │ │ ├── professions │ │ │ ├── Equipment.svelte │ │ │ ├── Professions.svelte │ │ │ ├── Subnav.svelte │ │ │ ├── View.svelte │ │ │ ├── equipment │ │ │ │ ├── Equipment.svelte │ │ │ │ ├── Sidebar.svelte │ │ │ │ ├── TableRow.svelte │ │ │ │ └── some.ts │ │ │ ├── knowledge │ │ │ │ ├── CharacterKnowledge.svelte │ │ │ │ ├── DragonflightKnowledge.svelte │ │ │ │ ├── DragonflightRow.svelte │ │ │ │ ├── KnowledgeV2.svelte │ │ │ │ └── V2Row.svelte │ │ │ ├── overview │ │ │ │ ├── Overview.svelte │ │ │ │ ├── Sidebar.svelte │ │ │ │ ├── Table.svelte │ │ │ │ └── TableProfession.svelte │ │ │ ├── patron-orders │ │ │ │ ├── Order.svelte │ │ │ │ ├── PatronOrders.svelte │ │ │ │ ├── Sidebar.svelte │ │ │ │ ├── Table.svelte │ │ │ │ ├── TableCell.svelte │ │ │ │ └── auction-store.ts │ │ │ └── recipes │ │ │ │ ├── Recipes.svelte │ │ │ │ ├── Sidebar.svelte │ │ │ │ └── View.svelte │ │ ├── progress │ │ │ ├── Progress.svelte │ │ │ ├── ProgressSidebar.svelte │ │ │ ├── ProgressTable.svelte │ │ │ ├── ProgressTableBody.svelte │ │ │ ├── ProgressTableBodyRaidSkip.svelte │ │ │ └── ProgressTableHead.svelte │ │ ├── team │ │ │ ├── CharacterName.svelte │ │ │ ├── CharacterNote.svelte │ │ │ ├── Gear.svelte │ │ │ └── Team.svelte │ │ ├── teams │ │ │ ├── Teams.svelte │ │ │ └── TeamsSidebar.svelte │ │ ├── tooltips │ │ │ ├── CharacterMovementSpeedTooltip.svelte │ │ │ ├── GoldWorldQuests.svelte │ │ │ ├── auction-already-have │ │ │ │ └── TooltipAuctionAlreadyHave.svelte │ │ │ ├── character-best-item-level │ │ │ │ └── Tooltip.svelte │ │ │ ├── character-filter │ │ │ │ └── TooltipCharacterFilter.svelte │ │ │ ├── character-level │ │ │ │ └── TooltipCharacterLevel.svelte │ │ │ ├── character-name │ │ │ │ └── TooltipCharacterName.svelte │ │ │ ├── covenant │ │ │ │ └── TooltipCovenant.svelte │ │ │ ├── currency │ │ │ │ └── TooltipCurrency.svelte │ │ │ ├── dailies │ │ │ │ └── TooltipDailies.svelte │ │ │ ├── item-level │ │ │ │ └── Tooltip.svelte │ │ │ ├── lockout-header │ │ │ │ └── TooltipLockoutHeader.svelte │ │ │ ├── lockout │ │ │ │ └── TooltipLockout.svelte │ │ │ ├── mythic-plus-keystone │ │ │ │ └── TooltipMythicPlusKeystone.svelte │ │ │ ├── mythic-plus-runs │ │ │ │ ├── TooltipMythicPlusRuns.svelte │ │ │ │ ├── TooltipMythicPlusRunsAddonData.svelte │ │ │ │ ├── TooltipMythicPlusRunsMember.svelte │ │ │ │ └── TooltipMythicPlusRunsRun.svelte │ │ │ ├── mythic-plus-score │ │ │ │ └── TooltipMythicPlusScore.svelte │ │ │ ├── profession-cooldowns │ │ │ │ └── TooltipProfessionCooldowns.svelte │ │ │ ├── profession-knowledge │ │ │ │ └── TooltipProfessionKnowledge.svelte │ │ │ ├── professions │ │ │ │ └── TooltipProfessions.svelte │ │ │ ├── progress-quest │ │ │ │ └── TooltipProgressQuest.svelte │ │ │ ├── progress-raid-skip │ │ │ │ └── TooltipProgressRaidSkip.svelte │ │ │ ├── progress │ │ │ │ └── TooltipProgress.svelte │ │ │ ├── remix-cloak │ │ │ │ └── TooltipRemixCloak.svelte │ │ │ ├── reputation-header │ │ │ │ ├── TooltipReputationHeader.svelte │ │ │ │ └── TooltipReputationHeaderEntry.svelte │ │ │ ├── reputation │ │ │ │ ├── TooltipReputation.svelte │ │ │ │ ├── TooltipReputationRenown.svelte │ │ │ │ └── brann-hack.ts │ │ │ ├── task │ │ │ │ ├── TooltipTaskHead.svelte │ │ │ │ └── TooltipTaskRow.svelte │ │ │ ├── tier-set │ │ │ │ └── TooltipTierSet.svelte │ │ │ ├── vault-mythic-plus │ │ │ │ ├── TooltipVaultMythicPlus.svelte │ │ │ │ └── TooltipVaultMythicPlusRun.svelte │ │ │ ├── vault-raid │ │ │ │ ├── Rewards.svelte │ │ │ │ ├── TooltipVaultRaid.svelte │ │ │ │ └── TooltipVaultRaidProgress.svelte │ │ │ ├── vault-world │ │ │ │ ├── Progress.svelte │ │ │ │ ├── Rewards.svelte │ │ │ │ └── TooltipVaultWorld.svelte │ │ │ └── zone-maps │ │ │ │ ├── TooltipZoneMapsThing.svelte │ │ │ │ └── TooltipZoneMapsVendor.svelte │ │ ├── vendors │ │ │ ├── Thing.svelte │ │ │ ├── Vendors.svelte │ │ │ ├── VendorsCategories.svelte │ │ │ ├── VendorsCategory.svelte │ │ │ ├── VendorsCosts.svelte │ │ │ ├── VendorsGroup.svelte │ │ │ ├── VendorsOptions.svelte │ │ │ └── VendorsSidebar.svelte │ │ └── zone-maps │ │ │ ├── ZoneMaps.svelte │ │ │ ├── ZoneMapsCounter.svelte │ │ │ ├── ZoneMapsLoot.svelte │ │ │ ├── ZoneMapsMap.svelte │ │ │ ├── ZoneMapsSidebar.svelte │ │ │ └── ZoneMapsThing.svelte │ ├── data │ │ ├── achievements.ts │ │ ├── auctions.ts │ │ ├── backgrounds.ts │ │ ├── bag-slots.ts │ │ ├── character-class.ts │ │ ├── character-specialization.ts │ │ ├── colors.ts │ │ ├── constants.ts │ │ ├── covenant.ts │ │ ├── crafted-gear.ts │ │ ├── currencies.ts │ │ ├── difficulty.ts │ │ ├── dungeon.ts │ │ ├── expansion.ts │ │ ├── experience.ts │ │ ├── faction.ts │ │ ├── garrison.ts │ │ ├── gear.ts │ │ ├── gems.ts │ │ ├── holidays.ts │ │ ├── icons.ts │ │ ├── inventory-slot.ts │ │ ├── inventory-type.ts │ │ ├── item-level-quality.ts │ │ ├── item-modifier.ts │ │ ├── journal.ts │ │ ├── mythic-plus.ts │ │ ├── nav.ts │ │ ├── pet-breed.ts │ │ ├── professions │ │ │ ├── alchemy.ts │ │ │ ├── blacksmithing.ts │ │ │ ├── cooking.ts │ │ │ ├── cooldowns.ts │ │ │ ├── enchanting.ts │ │ │ ├── engineering.ts │ │ │ ├── fishing.ts │ │ │ ├── herbalism.ts │ │ │ ├── index.ts │ │ │ ├── inscription.ts │ │ │ ├── jewelcrafting.ts │ │ │ ├── knowledge.ts │ │ │ ├── leatherworking.ts │ │ │ ├── mining.ts │ │ │ ├── professions.ts │ │ │ ├── skinning.ts │ │ │ ├── tailoring.ts │ │ │ └── zone.ts │ │ ├── quests.ts │ │ ├── raid.ts │ │ ├── raider-io.ts │ │ ├── region.ts │ │ ├── reputation.ts │ │ ├── settings.ts │ │ ├── spells.ts │ │ ├── talents.ts │ │ ├── tasks │ │ │ ├── 08-shadowlands │ │ │ │ ├── chores.ts │ │ │ │ ├── covenants.ts │ │ │ │ └── index.ts │ │ │ ├── 09-dragonflight │ │ │ │ ├── index.ts │ │ │ │ └── professions.ts │ │ │ ├── 10-the-war-within │ │ │ │ ├── 11-0-0.ts │ │ │ │ ├── 11-1-0.ts │ │ │ │ ├── 11-1-5.ts │ │ │ │ ├── 11-2-0.ts │ │ │ │ ├── chett.ts │ │ │ │ ├── delves.ts │ │ │ │ ├── horrific-visions.ts │ │ │ │ ├── index.ts │ │ │ │ ├── professions.ts │ │ │ │ ├── the_war_within.ts │ │ │ │ └── veteran-caches.ts │ │ │ ├── build-profession-chores.ts │ │ │ ├── custom-reset-period.ts │ │ │ ├── events │ │ │ │ ├── anniversary.ts │ │ │ │ ├── bonus.ts │ │ │ │ ├── brewfest.ts │ │ │ │ ├── darkmoon-faire.ts │ │ │ │ ├── index.ts │ │ │ │ ├── remix.ts │ │ │ │ └── timewalking.ts │ │ │ ├── holidays.ts │ │ │ ├── index.ts │ │ │ ├── old-events.ts │ │ │ ├── old.ts │ │ │ ├── pvp │ │ │ │ ├── brawl.ts │ │ │ │ └── index.ts │ │ │ ├── shadowlands.ts │ │ │ └── task-list.ts │ │ ├── transmog.ts │ │ ├── vendors.ts │ │ ├── weapons.ts │ │ └── zones.ts │ ├── development.Dockerfile │ ├── enums │ │ ├── appearance-modifier.ts │ │ ├── armor-subclass.ts │ │ ├── armor-type.ts │ │ ├── bind-type.ts │ │ ├── character-flag.ts │ │ ├── chromie-time.ts │ │ ├── criteria-tree-operator.ts │ │ ├── criteria-type.ts │ │ ├── currency-flags.ts │ │ ├── faction.ts │ │ ├── farm-anchor-point.ts │ │ ├── farm-id-type.ts │ │ ├── farm-reset-type.ts │ │ ├── farm-type.ts │ │ ├── gender.ts │ │ ├── holiday.ts │ │ ├── instance-type.ts │ │ ├── inventory-slot.ts │ │ ├── inventory-type.ts │ │ ├── item-bonus-type.ts │ │ ├── item-class.ts │ │ ├── item-flags.ts │ │ ├── item-location.ts │ │ ├── item-quality.ts │ │ ├── item-redundancy-slot.ts │ │ ├── journal-encounter-flags.ts │ │ ├── language.ts │ │ ├── lookup-type.ts │ │ ├── mythic-plus-score-type.ts │ │ ├── pet-flags.ts │ │ ├── playable-class.ts │ │ ├── primary-stat.ts │ │ ├── profession-subclass.ts │ │ ├── profession.ts │ │ ├── progress-data-type.ts │ │ ├── quest-status.ts │ │ ├── region.ts │ │ ├── reward-reputation.ts │ │ ├── reward-type.ts │ │ ├── role.ts │ │ ├── skill-source-type.ts │ │ ├── stat-type.ts │ │ ├── transmog-set-match-type.ts │ │ ├── transmog-set-type.ts │ │ ├── typed-array.ts │ │ ├── weapon-subclass.ts │ │ ├── weapon-type.ts │ │ └── wow.ts │ ├── eslint.config.js │ ├── leaderboards │ │ ├── Main.svelte │ │ ├── Routes.svelte │ │ ├── components │ │ │ └── leaderboard │ │ │ │ ├── Leaderboard.svelte │ │ │ │ ├── Sidebar.svelte │ │ │ │ ├── View.svelte │ │ │ │ └── types.ts │ │ └── leaderboards.ts │ ├── package-lock.json │ ├── package.json │ ├── prettier.config.js │ ├── run_dev.sh │ ├── scss │ │ ├── character-table.scss │ │ ├── collections-v2.scss │ │ ├── collections.scss │ │ ├── colors.scss │ │ ├── container.scss │ │ ├── core.scss │ │ ├── error.scss │ │ ├── forms.scss │ │ ├── global.scss │ │ ├── hacks.scss │ │ ├── landing-page.scss │ │ ├── layout │ │ │ ├── auctions-table.scss │ │ │ ├── search-table.scss │ │ │ ├── split-icon.scss │ │ │ ├── subnav.scss │ │ │ ├── view.scss │ │ │ └── wrapper.scss │ │ ├── options.scss │ │ ├── reputation.scss │ │ ├── sanitize.scss │ │ ├── sanitize │ │ │ ├── assets.css │ │ │ ├── forms.css │ │ │ ├── page.css │ │ │ ├── reduce-motion.css │ │ │ ├── sanitize.css │ │ │ └── typography.css │ │ ├── settings.scss │ │ ├── table.scss │ │ ├── tippy.scss │ │ ├── tooltips.scss │ │ ├── tooltips │ │ │ ├── lockout.scss │ │ │ ├── mythic-plus.scss │ │ │ └── vault.scss │ │ ├── variables.scss │ │ ├── wow.scss │ │ └── wowhead.scss │ ├── shared │ │ ├── components │ │ │ ├── GenericTooltip.svelte │ │ │ ├── collected-icon │ │ │ │ └── CollectedIcon.svelte │ │ │ ├── forms │ │ │ │ ├── CheckboxInput.svelte │ │ │ │ ├── GroupedCheckboxInput.svelte │ │ │ │ ├── NumberInput.svelte │ │ │ │ ├── RadioGroup.svelte │ │ │ │ ├── RangeInput.svelte │ │ │ │ ├── Select.svelte │ │ │ │ └── TextInput.svelte │ │ │ ├── icons │ │ │ │ └── YesNoIcon.svelte │ │ │ ├── images │ │ │ │ ├── AffixIcon.svelte │ │ │ │ ├── ClassIcon.svelte │ │ │ │ ├── CovenantIcon.svelte │ │ │ │ ├── CraftedQualityIcon.svelte │ │ │ │ ├── FactionIcon.svelte │ │ │ │ ├── IconifyIcon.svelte │ │ │ │ ├── IconifyWrapper.svelte │ │ │ │ ├── Image.svelte │ │ │ │ ├── ProfessionIcon.svelte │ │ │ │ ├── RaceIcon.svelte │ │ │ │ ├── RaiderIoIcon.svelte │ │ │ │ ├── SpecializationIcon.svelte │ │ │ │ └── sources │ │ │ │ │ ├── WowdbImage.svelte │ │ │ │ │ └── WowthingImage.svelte │ │ │ ├── links │ │ │ │ ├── AchievementLink.svelte │ │ │ │ ├── CurrencyLink.svelte │ │ │ │ ├── ItemLink.svelte │ │ │ │ ├── NpcLink.svelte │ │ │ │ ├── SpellLink.svelte │ │ │ │ ├── WowheadLink.svelte │ │ │ │ └── WowheadTransmogSetLink.svelte │ │ │ ├── paginate │ │ │ │ ├── Paginate.svelte │ │ │ │ └── PaginateBar.svelte │ │ │ ├── parsed-text │ │ │ │ ├── ParsedText.svelte │ │ │ │ └── Tooltip.svelte │ │ │ ├── sub-sidebar │ │ │ │ ├── SubSidebar.svelte │ │ │ │ ├── SubSidebarEntry.svelte │ │ │ │ └── types.ts │ │ │ └── under-construction │ │ │ │ └── UnderConstruction.svelte │ │ ├── enums │ │ │ └── weekly-activity-tier.ts │ │ ├── icons │ │ │ ├── components.ts │ │ │ ├── index.ts │ │ │ ├── library.ts │ │ │ ├── mappings │ │ │ │ ├── armor-type.ts │ │ │ │ ├── farm-type.ts │ │ │ │ ├── index.ts │ │ │ │ ├── inventory-slot.ts │ │ │ │ ├── inventory-type.ts │ │ │ │ ├── item-location.ts │ │ │ │ ├── profession.ts │ │ │ │ ├── reward-type.ts │ │ │ │ └── weapon-subclass.ts │ │ │ └── ui.ts │ │ ├── state │ │ │ ├── browser.svelte.ts │ │ │ ├── settings.svelte.ts │ │ │ ├── shared.svelte.ts │ │ │ └── time.svelte.ts │ │ ├── stores │ │ │ ├── data │ │ │ │ ├── db │ │ │ │ │ ├── process.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── index.ts │ │ │ │ ├── items │ │ │ │ │ ├── process.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── journal │ │ │ │ │ ├── process.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── manual │ │ │ │ │ ├── process.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── static │ │ │ │ │ ├── process.ts │ │ │ │ │ └── types.ts │ │ │ │ └── store.svelte.ts │ │ │ ├── db │ │ │ │ ├── enums │ │ │ │ │ ├── db-reset-type.ts │ │ │ │ │ ├── db-thing-content-type.ts │ │ │ │ │ ├── db-thing-type.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── index.ts │ │ │ │ ├── store.ts │ │ │ │ └── types │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── query.ts │ │ │ │ │ ├── store.ts │ │ │ │ │ ├── thing-content.ts │ │ │ │ │ ├── thing-group.ts │ │ │ │ │ ├── thing-location.ts │ │ │ │ │ └── thing.ts │ │ │ ├── settings │ │ │ │ └── types │ │ │ │ │ ├── account.ts │ │ │ │ │ ├── auction-category.ts │ │ │ │ │ ├── choice.ts │ │ │ │ │ ├── custom-group.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── settings.ts │ │ │ │ │ ├── tag.ts │ │ │ │ │ ├── task.ts │ │ │ │ │ └── view.ts │ │ │ ├── static │ │ │ │ ├── enums │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── quest-info-flags.ts │ │ │ │ │ └── quest-info-type.ts │ │ │ │ ├── index.ts │ │ │ │ ├── store.ts │ │ │ │ └── types │ │ │ │ │ ├── artifact.ts │ │ │ │ │ ├── bag.ts │ │ │ │ │ ├── campaign.ts │ │ │ │ │ ├── challenge-dungeon.ts │ │ │ │ │ ├── character.ts │ │ │ │ │ ├── currency.ts │ │ │ │ │ ├── decor.ts │ │ │ │ │ ├── enchantment.ts │ │ │ │ │ ├── heirloom.ts │ │ │ │ │ ├── holiday.ts │ │ │ │ │ ├── illusion.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── instance.ts │ │ │ │ │ ├── keystone-affix.ts │ │ │ │ │ ├── mount.ts │ │ │ │ │ ├── pet.ts │ │ │ │ │ ├── profession.ts │ │ │ │ │ ├── quest-info.ts │ │ │ │ │ ├── quest-line.ts │ │ │ │ │ ├── realm.ts │ │ │ │ │ ├── reputation.ts │ │ │ │ │ ├── soulbind.ts │ │ │ │ │ ├── store.ts │ │ │ │ │ ├── toy.ts │ │ │ │ │ ├── transmog-set.ts │ │ │ │ │ └── world-quest.ts │ │ │ └── time │ │ │ │ ├── index.ts │ │ │ │ └── store.ts │ │ └── utils │ │ │ ├── boolean-parser │ │ │ └── index.ts │ │ │ ├── tooltips │ │ │ ├── component-tooltip.svelte.ts │ │ │ ├── default-props.ts │ │ │ ├── delegate-basic-tooltips.ts │ │ │ ├── index.ts │ │ │ └── types.ts │ │ │ └── view-has-lockout.ts │ ├── stores │ │ ├── achievements.ts │ │ ├── auction.ts │ │ ├── character-settings.ts │ │ ├── derived │ │ │ └── active-holidays.ts │ │ ├── index.ts │ │ ├── item-search.ts │ │ ├── lazy │ │ │ ├── achievements.ts │ │ │ ├── character.ts │ │ │ ├── index.ts │ │ │ └── store.ts │ │ ├── local-storage │ │ │ ├── achievements.ts │ │ │ ├── appearances.ts │ │ │ ├── auctions.ts │ │ │ ├── characters.ts │ │ │ ├── collecting-settings.ts │ │ │ ├── currency.ts │ │ │ ├── history.ts │ │ │ ├── index.ts │ │ │ ├── new-nav.ts │ │ │ ├── professions-recipes.ts │ │ │ ├── progress.ts │ │ │ ├── sub-sidebar.ts │ │ │ ├── transmog-sets.ts │ │ │ └── zone-map.ts │ │ ├── parsed-text.ts │ │ ├── team.ts │ │ ├── user-achievements.ts │ │ ├── user-auctions │ │ │ ├── fixme.ts │ │ │ ├── index.ts │ │ │ ├── missing-recipes.svelte.ts │ │ │ ├── missing-transmog.ts │ │ │ └── specific-item.ts │ │ ├── user-history.ts │ │ ├── user-modified.ts │ │ ├── user-quests.ts │ │ ├── user-teams.ts │ │ └── user.ts │ ├── svelte.config.js │ ├── tsconfig.json │ ├── types │ │ ├── account.ts │ │ ├── achievement-data.ts │ │ ├── background-image.ts │ │ ├── character-race.ts │ │ ├── character │ │ │ ├── aura.ts │ │ │ ├── character.svelte.ts │ │ │ ├── configuration.ts │ │ │ ├── currency.ts │ │ │ ├── equipped-item.ts │ │ │ ├── fixme.ts │ │ │ ├── garrison.ts │ │ │ ├── gear.ts │ │ │ ├── index.ts │ │ │ ├── item.ts │ │ │ ├── lockout.ts │ │ │ ├── movement-speed.ts │ │ │ ├── mythic-plus.ts │ │ │ ├── patron-order.ts │ │ │ ├── profession.svelte.ts │ │ │ ├── raider-io-season.ts │ │ │ ├── reputation.ts │ │ │ ├── shadowlands.ts │ │ │ ├── specialization.ts │ │ │ ├── statistics.ts │ │ │ └── weekly.svelte.ts │ │ ├── contexts.ts │ │ ├── covenant.ts │ │ ├── data │ │ │ ├── appearance │ │ │ │ ├── appearance.ts │ │ │ │ ├── index.ts │ │ │ │ └── set.ts │ │ │ ├── auction │ │ │ │ ├── category.ts │ │ │ │ ├── index.ts │ │ │ │ └── store.ts │ │ │ ├── index.ts │ │ │ ├── item │ │ │ │ ├── index.ts │ │ │ │ ├── item-bonus.ts │ │ │ │ ├── item-set.ts │ │ │ │ ├── item.ts │ │ │ │ ├── modified-crafting.ts │ │ │ │ └── store.ts │ │ │ ├── journal.ts │ │ │ ├── manual │ │ │ │ ├── customization.ts │ │ │ │ ├── heirloom.ts │ │ │ │ ├── illusion.ts │ │ │ │ ├── index.ts │ │ │ │ ├── progress.ts │ │ │ │ ├── set.ts │ │ │ │ ├── shared-vendor.ts │ │ │ │ ├── store.ts │ │ │ │ ├── transmog.ts │ │ │ │ ├── vendor.svelte.ts │ │ │ │ └── zone-map.ts │ │ │ ├── professions.ts │ │ │ ├── quests.ts │ │ │ ├── user-auctions.ts │ │ │ ├── user-history.ts │ │ │ ├── user-item.ts │ │ │ ├── user-quest.ts │ │ │ └── user-team.ts │ │ ├── difficulty.ts │ │ ├── dungeon.ts │ │ ├── expansion.ts │ │ ├── fancy-store.ts │ │ ├── garrison.ts │ │ ├── guild │ │ │ ├── guild.svelte.ts │ │ │ ├── index.ts │ │ │ └── item.ts │ │ ├── index.ts │ │ ├── items │ │ │ ├── index.ts │ │ │ ├── search.ts │ │ │ └── warbank.ts │ │ ├── mythic-plus.ts │ │ ├── params.ts │ │ ├── profession-cooldown.ts │ │ ├── props.ts │ │ ├── reputation-tier.ts │ │ ├── reset-time.ts │ │ ├── shared │ │ │ ├── contains-items.ts │ │ │ ├── has-name-and-realm.ts │ │ │ ├── index.ts │ │ │ └── user-item.ts │ │ ├── tasks.ts │ │ ├── team-data.ts │ │ ├── transmog.ts │ │ ├── user-achievement-data.ts │ │ ├── user-count.ts │ │ ├── user-data.ts │ │ ├── user-modified.ts │ │ ├── vendors │ │ │ ├── index.ts │ │ │ └── thing-data.ts │ │ └── zone-maps.ts │ ├── user-home │ │ ├── CharacterFilter.svelte │ │ ├── Main.svelte │ │ ├── NewNav.svelte │ │ ├── Refresh.svelte │ │ ├── Routes.svelte │ │ ├── Sidebar.svelte │ │ ├── components │ │ │ ├── character │ │ │ │ └── CharacterTag.svelte │ │ │ ├── collections │ │ │ │ ├── Collections.svelte │ │ │ │ ├── Subnav.svelte │ │ │ │ ├── View.svelte │ │ │ │ ├── artifacts │ │ │ │ │ ├── Artifacts.svelte │ │ │ │ │ ├── ClassData.svelte │ │ │ │ │ ├── SpecializationData.svelte │ │ │ │ │ └── data.ts │ │ │ │ ├── decor │ │ │ │ │ ├── Category.svelte │ │ │ │ │ ├── Decor.svelte │ │ │ │ │ ├── DecorObject.svelte │ │ │ │ │ └── Sidebar.svelte │ │ │ │ └── recipes │ │ │ │ │ ├── Ability.svelte │ │ │ │ │ ├── Options.svelte │ │ │ │ │ ├── Recipes.svelte │ │ │ │ │ ├── Sidebar.svelte │ │ │ │ │ ├── View.svelte │ │ │ │ │ └── state.ts │ │ │ ├── currencies │ │ │ │ ├── Currencies.svelte │ │ │ │ ├── Sidebar.svelte │ │ │ │ ├── Table.svelte │ │ │ │ ├── TableHead.svelte │ │ │ │ └── TableRow.svelte │ │ │ ├── customizations │ │ │ │ ├── Customizations.svelte │ │ │ │ ├── Options.svelte │ │ │ │ ├── Sidebar.svelte │ │ │ │ ├── Thing.svelte │ │ │ │ └── View.svelte │ │ │ ├── everything │ │ │ │ ├── Everything.svelte │ │ │ │ ├── LookupThing.svelte │ │ │ │ ├── Something.svelte │ │ │ │ ├── Thing.svelte │ │ │ │ ├── data.ts │ │ │ │ └── types.ts │ │ │ ├── history │ │ │ │ ├── Gold.svelte │ │ │ │ ├── History.svelte │ │ │ │ └── Sidebar.svelte │ │ │ ├── matrix │ │ │ │ ├── Matrix.svelte │ │ │ │ ├── Row.svelte │ │ │ │ └── TooltipCharacter.svelte │ │ │ ├── reputations │ │ │ │ ├── AccountWide.svelte │ │ │ │ ├── Category.svelte │ │ │ │ ├── Reputations.svelte │ │ │ │ ├── Sidebar.svelte │ │ │ │ ├── Table.svelte │ │ │ │ ├── TableCell.svelte │ │ │ │ ├── TableCellRenown.svelte │ │ │ │ ├── TableHead.svelte │ │ │ │ └── get-renown-data.ts │ │ │ ├── settings │ │ │ │ ├── MagicList.svelte │ │ │ │ ├── MagicLists.svelte │ │ │ │ ├── Routes.svelte │ │ │ │ ├── Settings.svelte │ │ │ │ ├── Sidebar.svelte │ │ │ │ ├── data.ts │ │ │ │ └── sections │ │ │ │ │ ├── SettingsAccount.svelte │ │ │ │ │ ├── SettingsAchievements.svelte │ │ │ │ │ ├── SettingsAuctions.svelte │ │ │ │ │ ├── SettingsAuctionsCustom.svelte │ │ │ │ │ ├── SettingsCollections.svelte │ │ │ │ │ ├── SettingsHistory.svelte │ │ │ │ │ ├── SettingsLayout.svelte │ │ │ │ │ ├── SettingsLeaderboard.svelte │ │ │ │ │ ├── SettingsPrivacy.svelte │ │ │ │ │ ├── SettingsProfessions.svelte │ │ │ │ │ ├── SettingsProfessionsCollecting.svelte │ │ │ │ │ ├── SettingsProfessionsCooldowns.svelte │ │ │ │ │ ├── SettingsTags.svelte │ │ │ │ │ ├── SettingsTasks.svelte │ │ │ │ │ ├── SettingsTransmog.svelte │ │ │ │ │ ├── characters │ │ │ │ │ ├── SettingsCharacters.svelte │ │ │ │ │ ├── SettingsCharactersNameTooltip.svelte │ │ │ │ │ ├── SettingsCharactersPin.svelte │ │ │ │ │ └── SettingsCharactersToggles.svelte │ │ │ │ │ ├── layout │ │ │ │ │ ├── SettingsLayoutGrouping.svelte │ │ │ │ │ └── SettingsLayoutGroupingGroup.svelte │ │ │ │ │ └── views │ │ │ │ │ ├── Currencies.svelte │ │ │ │ │ ├── Grouping.svelte │ │ │ │ │ ├── Items.svelte │ │ │ │ │ ├── Lockouts.svelte │ │ │ │ │ ├── Progress.svelte │ │ │ │ │ ├── Sorting.svelte │ │ │ │ │ ├── TableSettings.svelte │ │ │ │ │ ├── TaskOptions.svelte │ │ │ │ │ ├── Tasks.svelte │ │ │ │ │ ├── View.svelte │ │ │ │ │ └── Views.svelte │ │ │ ├── transmog-sets │ │ │ │ ├── Sidebar.svelte │ │ │ │ ├── Table.svelte │ │ │ │ ├── TableCategory.svelte │ │ │ │ ├── TableSet.svelte │ │ │ │ ├── Tooltip.svelte │ │ │ │ ├── TooltipItems.svelte │ │ │ │ ├── TransmogSets.svelte │ │ │ │ ├── data.ts │ │ │ │ └── delegated-tooltips.ts │ │ │ └── world-quests │ │ │ │ ├── ContinentBox.svelte │ │ │ │ ├── Map.svelte │ │ │ │ ├── Sidebar.svelte │ │ │ │ ├── Tooltip.svelte │ │ │ │ ├── WorldQuest.svelte │ │ │ │ ├── WorldQuests.svelte │ │ │ │ ├── data.ts │ │ │ │ ├── store.ts │ │ │ │ └── types.ts │ │ ├── signalr │ │ │ └── user-update-hub-store.ts │ │ ├── state │ │ │ ├── activeHolidays.svelte.ts │ │ │ ├── activeViewProgress.svelte.ts │ │ │ ├── activeViewTasks.svelte.ts │ │ │ ├── lazy │ │ │ │ ├── achievements.svelte.ts │ │ │ │ ├── appearances.svelte.ts │ │ │ │ ├── convertible.svelte.ts │ │ │ │ ├── customizations.svelte.ts │ │ │ │ ├── decor.svelte.ts │ │ │ │ ├── index.ts │ │ │ │ ├── journal.svelte.ts │ │ │ │ ├── lazyState.svelte.ts │ │ │ │ ├── transmog.svelte.ts │ │ │ │ ├── types.ts │ │ │ │ ├── vendors.svelte.ts │ │ │ │ └── zoneMaps.svelte.ts │ │ │ └── user │ │ │ │ ├── achievements.svelte.ts │ │ │ │ ├── derived.svelte.ts │ │ │ │ ├── general.svelte.ts │ │ │ │ ├── index.ts │ │ │ │ ├── quests.svelte.ts │ │ │ │ ├── types │ │ │ │ ├── index.ts │ │ │ │ ├── quests.svelte.ts │ │ │ │ └── tasks.svelte.ts │ │ │ │ └── userState.svelte.ts │ │ └── user-home.ts │ ├── utils │ │ ├── achievements │ │ │ └── index.ts │ │ ├── auctions │ │ │ └── sort-auctions.ts │ │ ├── background-thumb-url.ts │ │ ├── base64.ts │ │ ├── cartesian-product.ts │ │ ├── characters │ │ │ ├── character-names-from-ids.ts │ │ │ ├── get-best-item-levels.ts │ │ │ ├── get-currency-data.ts │ │ │ ├── get-tier-pieces.ts │ │ │ ├── index.ts │ │ │ └── use-character-filter.ts │ │ ├── collections │ │ │ └── sync-set.ts │ │ ├── connected-realm-name.ts │ │ ├── count-set-bits.ts │ │ ├── dom │ │ │ ├── index.ts │ │ │ └── set-element-style-by-id.ts │ │ ├── dungeon │ │ │ ├── get-run-counts.ts │ │ │ ├── get-run-dungeon-stats.ts │ │ │ └── index.ts │ │ ├── fetch-json.ts │ │ ├── find-reputation-tier.ts │ │ ├── fixed-inventory-type.ts │ │ ├── formatting │ │ │ ├── index.ts │ │ │ ├── left-pad.ts │ │ │ ├── to-digits.ts │ │ │ ├── to-nice-duration.ts │ │ │ ├── to-nice-number.ts │ │ │ ├── to-nice-price.ts │ │ │ └── to-nice-time.ts │ │ ├── get-account-characters.ts │ │ ├── get-character-gear.ts │ │ ├── get-character-group-func.ts │ │ ├── get-character-level.ts │ │ ├── get-character-name-realm.ts │ │ ├── get-character-professions.ts │ │ ├── get-character-rested.ts │ │ ├── get-character-sort-func.ts │ │ ├── get-classes-from-mask.ts │ │ ├── get-column-resizer.ts │ │ ├── get-currency-costs.ts │ │ ├── get-enchantment-text.ts │ │ ├── get-first-match.ts │ │ ├── get-gendered-name.ts │ │ ├── get-instance-farm.ts │ │ ├── get-item-level-quality.ts │ │ ├── get-item-url.ts │ │ ├── get-name-for-faction.ts │ │ ├── get-next-reset.ts │ │ ├── get-number-keyed-entries.ts │ │ ├── get-percent-class.ts │ │ ├── get-progress.ts │ │ ├── get-raid-vault-item-level.ts │ │ ├── get-raider-io-color.ts │ │ ├── get-realm-name.ts │ │ ├── get-saved-route.ts │ │ ├── get-skip-classes.ts │ │ ├── get-transmog-class-mask.ts │ │ ├── get-transmog-span.ts │ │ ├── get-vendor-drop-stats.ts │ │ ├── hash-object.svelte.ts │ │ ├── home │ │ │ ├── home-sort.ts │ │ │ └── index.ts │ │ ├── initialize-team.ts │ │ ├── items │ │ │ ├── apply-bonus-ids.ts │ │ │ ├── get-bonus-id-modifier.ts │ │ │ ├── get-item-type-and-subtype.ts │ │ │ └── initialize-contains-items.ts │ │ ├── journal │ │ │ └── get-filtered-items.svelte.ts │ │ ├── log-errors.ts │ │ ├── measure-scrollbar.ts │ │ ├── mythic-plus │ │ │ ├── get-base-score-for-key-level.ts │ │ │ ├── get-dungeon-level.ts │ │ │ ├── get-dungeon-scores.ts │ │ │ ├── get-run-quality.ts │ │ │ ├── get-vault-item-level.ts │ │ │ ├── get-vault-quality-by-item-level.ts │ │ │ ├── get-weekly-affixes.ts │ │ │ ├── index.ts │ │ │ └── is-keystone-upgrade.ts │ │ ├── object-keys.ts │ │ ├── parse-api-time.ts │ │ ├── pet-location-tooltip.ts │ │ ├── professions │ │ │ ├── get-profession-equipment.ts │ │ │ ├── get-profession-sort-key.ts │ │ │ ├── index.ts │ │ │ └── is-recipe-known.ts │ │ ├── rewards │ │ │ ├── reward-to-lookup.ts │ │ │ ├── snapshot-state-for-user-has-lookup.svelte.ts │ │ │ └── user-has-lookup.ts │ │ ├── split-once.ts │ │ ├── to-index-record.ts │ │ ├── transmog │ │ │ └── get-filtered-sets.ts │ │ ├── user-has-drop.ts │ │ ├── vault │ │ │ └── get-world-tier.ts │ │ └── zone-maps │ │ │ ├── get-drop-data.ts │ │ │ ├── get-drop-icon.ts │ │ │ ├── get-drop-name.ts │ │ │ ├── get-drop-quality.ts │ │ │ ├── get-farm-icon.ts │ │ │ └── index.ts │ ├── vite-env.d.ts │ └── vite.config.ts ├── luaparser │ ├── Program.cs │ └── Wowthing.LuaParser.csproj ├── postgres │ ├── Dockerfile │ └── install-extensions.sql ├── tool │ ├── Converters │ │ ├── Achievements │ │ │ ├── OutAchievementConverter.cs │ │ │ ├── OutCriteriaConverter.cs │ │ │ └── OutCriteriaTreeConverter.cs │ │ ├── Appearances │ │ │ └── RedisAppearanceDataConverter.cs │ │ ├── Auctions │ │ │ └── OutAuctionCategoryConverter.cs │ │ ├── Db │ │ │ ├── OutDbThingContentConverter.cs │ │ │ └── OutDbThingConverter.cs │ │ ├── Items │ │ │ ├── RedisItemDataConverter.cs │ │ │ └── RedisItemSetConverter.cs │ │ ├── Journal │ │ │ └── OutJournalEncounterConverter.cs │ │ ├── Manual │ │ │ ├── DataHeirloomGroupConverter.cs │ │ │ ├── DataIllusionGroupConverter.cs │ │ │ ├── ManualCustomizationCategoryConverter.cs │ │ │ ├── ManualReputationCategoryConverter.cs │ │ │ ├── ManualSharedVendorConverter.cs │ │ │ ├── ManualTransmogCategoryConverter.cs │ │ │ ├── ManualVendorCategoryConverter.cs │ │ │ └── ManualZoneMapCategoryConverter.cs │ │ ├── OutCollectionCategoryConverter.cs │ │ ├── OutInstanceConverter.cs │ │ ├── OutProfessionCategoryConverter.cs │ │ ├── Professions │ │ │ └── OutProfessionConverter.cs │ │ └── Static │ │ │ ├── StaticCampaignConverter.cs │ │ │ ├── StaticChallengeDungeonConverter.cs │ │ │ ├── StaticCurrencyCategoryConverter.cs │ │ │ ├── StaticCurrencyConverter.cs │ │ │ ├── StaticDecorCategoryConverter.cs │ │ │ ├── StaticHolidayConverter.cs │ │ │ ├── StaticMountConverter.cs │ │ │ ├── StaticPetConverter.cs │ │ │ ├── StaticQuestInfoConverter.cs │ │ │ ├── StaticQuestLineConverter.cs │ │ │ ├── StaticReputationConverter.cs │ │ │ ├── StaticToyConverter.cs │ │ │ ├── StaticTransmogSetConverter.cs │ │ │ └── StaticWorldQuestConverter.cs │ ├── Data │ │ ├── ExtraEncounters.cs │ │ ├── ExtraItemDrops.cs │ │ ├── ExtraTiers.cs │ │ ├── IgnoredAchievements.cs │ │ ├── IgnoredCurrencies.cs │ │ ├── IgnoredJournalEncounter.cs │ │ ├── IgnoredJournalItems.cs │ │ ├── IgnoredSkillLineAbilities.cs │ │ ├── IgnoredTradeSkillCategories.cs │ │ ├── InstanceBonusIds.cs │ │ ├── InstanceDifficulties.cs │ │ ├── InstanceShortNameOverride.cs │ │ ├── InventoryTypeOrder.cs │ │ ├── ItemClassOverride.cs │ │ ├── ItemModifierSortOrder.cs │ │ ├── ItemSpecOverrides.cs │ │ ├── ItemToRequiredAbility.cs │ │ ├── JournalBossOrder.cs │ │ ├── JournalDungeonsOnly.cs │ │ ├── JournalEncounterDifficulties.cs │ │ ├── JournalInstanceTransmogSets.cs │ │ ├── PetSpellOverride.cs │ │ ├── PrimaryStats.cs │ │ ├── ProfessionCategorySplits.cs │ │ ├── Professions.cs │ │ ├── Quests.cs │ │ ├── SkipInstances.cs │ │ ├── SoulbindRenown.cs │ │ ├── TransmogSetItemPrimaryOverride.cs │ │ └── WeaponSubClassOrder.cs │ ├── Enums │ │ ├── DbResetType.cs │ │ ├── DbThingContentType.cs │ │ ├── DbThingType.cs │ │ ├── FarmAnchorPoint.cs │ │ ├── TraitNodeEntryType.cs │ │ ├── WowCurrencyFlags1.cs │ │ ├── WowCurrencyFlags2.cs │ │ ├── WowItemFlags1.cs │ │ ├── WowItemFlags2.cs │ │ ├── WowItemFlags4.cs │ │ ├── WowReagentType.cs │ │ └── WowSpellFlags8.cs │ ├── Extensions │ │ ├── BitArrayExtensions.cs │ │ ├── DictionaryExtensions.cs │ │ └── ListExtensions.cs │ ├── GlobalUsings.cs │ ├── Models │ │ ├── Achievements │ │ │ ├── DumpAchievement.cs │ │ │ ├── DumpAchievementCategory.cs │ │ │ ├── DumpCriteria.cs │ │ │ ├── DumpCriteriaTree.cs │ │ │ ├── DumpModifierTree.cs │ │ │ ├── OutAchievement.cs │ │ │ ├── OutAchievementCategory.cs │ │ │ ├── OutCriteria.cs │ │ │ ├── OutCriteriaTree.cs │ │ │ └── RedisAchievements.cs │ │ ├── Appearances │ │ │ ├── RedisAppearanceData.cs │ │ │ └── RedisAppearances.cs │ │ ├── Artifacts │ │ │ ├── DumpArtifact.cs │ │ │ ├── DumpArtifactAppearance.cs │ │ │ └── DumpArtifactAppearanceSet.cs │ │ ├── Auctions │ │ │ ├── DumpAuctionHouseCategory.cs │ │ │ ├── OutAuctionCategory.cs │ │ │ └── RedisAuctionData.cs │ │ ├── BebopModels.g.cs │ │ ├── CollectableSource │ │ │ ├── DumpCollectableSourceEncounterSparse.cs │ │ │ ├── DumpCollectableSourceInfo.cs │ │ │ ├── DumpCollectableSourceQuestSparse.cs │ │ │ └── DumpCollectableSourceVendorSparse.cs │ │ ├── Collections │ │ │ ├── DataCollectionCategory.cs │ │ │ ├── DataCollectionGroup.cs │ │ │ ├── OutCollectionCategory.cs │ │ │ └── OutCollectionGroup.cs │ │ ├── Covenants │ │ │ ├── DumpGarrTalent.cs │ │ │ ├── DumpGarrTalentRank.cs │ │ │ ├── DumpSoulbind.cs │ │ │ ├── DumpSoulbindUiDisplayInfo.cs │ │ │ └── OutSoulbind.cs │ │ ├── Customizations │ │ │ ├── DataCustomizationCategory.cs │ │ │ ├── DataCustomizationGroup.cs │ │ │ ├── DataCustomizationThing.cs │ │ │ ├── DumpChrCustomizationCategory.cs │ │ │ ├── DumpChrCustomizationChoice.cs │ │ │ ├── DumpChrCustomizationOption.cs │ │ │ ├── DumpChrCustomizationReq.cs │ │ │ ├── DumpChrCustomizationReqChoice.cs │ │ │ ├── ManualCustomizationCategory.cs │ │ │ ├── ManualCustomizationGroup.cs │ │ │ └── ManualCustomizationThing.cs │ │ ├── DataSetCategory.cs │ │ ├── DataSetGroup.cs │ │ ├── Db │ │ │ ├── DataDbFile.cs │ │ │ ├── DataDbThing.cs │ │ │ ├── DataDbThingContent.cs │ │ │ ├── OutDbThing.cs │ │ │ ├── OutDbThingContent.cs │ │ │ ├── OutDbThingLocation.cs │ │ │ └── RedisDbData.cs │ │ ├── Dragonriding │ │ │ ├── DataDragonridingCategory.cs │ │ │ ├── DataDragonridingGroup.cs │ │ │ └── DataDragonridingThing.cs │ │ ├── DumpBattlePetSpecies.cs │ │ ├── DumpCharTitles.cs │ │ ├── DumpChrClasses.cs │ │ ├── DumpChrRaces.cs │ │ ├── DumpChrSpecialization.cs │ │ ├── DumpContentTuning.cs │ │ ├── DumpCreature.cs │ │ ├── DumpCurrencyCategory.cs │ │ ├── DumpCurrencyTypes.cs │ │ ├── DumpGlobalStrings.cs │ │ ├── DumpKeystoneAffix.cs │ │ ├── DumpMap.cs │ │ ├── DumpMapChallengeMode.cs │ │ ├── DumpMapDifficulty.cs │ │ ├── DumpMount.cs │ │ ├── DumpPlayerCondition.cs │ │ ├── DumpSharedString.cs │ │ ├── DumpTalent.cs │ │ ├── DumpToy.cs │ │ ├── ExtraEncounter.cs │ │ ├── Heirlooms │ │ │ ├── DataHeirloomGroup.cs │ │ │ ├── DataHeirloomItem.cs │ │ │ └── DumpHeirloom.cs │ │ ├── Holidays │ │ │ ├── DumpHolidayNames.cs │ │ │ └── DumpHolidays.cs │ │ ├── Housing │ │ │ ├── DumpDecorCategory.cs │ │ │ ├── DumpDecorSubcategory.cs │ │ │ ├── DumpDecorXDecorSubcategory.cs │ │ │ ├── DumpHouseDecor.cs │ │ │ ├── StaticDecorCategory.cs │ │ │ ├── StaticDecorObject.cs │ │ │ └── StaticDecorSubcategory.cs │ │ ├── IDataCategory.cs │ │ ├── IDataCategoryNested.cs │ │ ├── Illusions │ │ │ ├── DataIllusionGroup.cs │ │ │ └── DataIllusiontem.cs │ │ ├── Instances │ │ │ ├── DataInstance.cs │ │ │ ├── DataInstanceContent.cs │ │ │ └── DataInstanceEncounter.cs │ │ ├── Items │ │ │ ├── DumpItem.cs │ │ │ ├── DumpItemAppearance.cs │ │ │ ├── DumpItemBonus.cs │ │ │ ├── DumpItemBonusListGroupEntry.cs │ │ │ ├── DumpItemBonusTreeNode.cs │ │ │ ├── DumpItemClass.cs │ │ │ ├── DumpItemConversionEntry.cs │ │ │ ├── DumpItemDisplayInfoMaterialRes.cs │ │ │ ├── DumpItemDisplayInfoModelMatRes.cs │ │ │ ├── DumpItemEffect.cs │ │ │ ├── DumpItemLimitCategory.cs │ │ │ ├── DumpItemModifiedAppearance.cs │ │ │ ├── DumpItemSet.cs │ │ │ ├── DumpItemSparse.cs │ │ │ ├── DumpItemSparseName.cs │ │ │ ├── DumpItemSpecOverride.cs │ │ │ ├── DumpItemSubclass.cs │ │ │ ├── DumpItemXItemEffect.cs │ │ │ ├── RedisItemData.cs │ │ │ ├── RedisItemSet.cs │ │ │ └── RedisItems.cs │ │ ├── Journal │ │ │ ├── DumpJournalEncounter.cs │ │ │ ├── DumpJournalEncounterItem.cs │ │ │ ├── DumpJournalEncounterXDifficulty.cs │ │ │ ├── DumpJournalInstance.cs │ │ │ ├── DumpJournalItemXDifficulty.cs │ │ │ ├── DumpJournalTier.cs │ │ │ ├── DumpJournalTierXInstance.cs │ │ │ ├── OutJournalEncounter.cs │ │ │ ├── OutJournalEncounterItem.cs │ │ │ ├── OutJournalEncounterItemAppearance.cs │ │ │ ├── OutJournalEncounterItemGroup.cs │ │ │ ├── OutJournalInstance.cs │ │ │ ├── OutJournalItem.cs │ │ │ ├── OutJournalTier.cs │ │ │ └── RedisJournalData.cs │ │ ├── Manual │ │ │ └── RedisManualData.cs │ │ ├── OutInstance.cs │ │ ├── OutRaiderIoScoreTiers.cs │ │ ├── Professions │ │ │ ├── DumpCraftingData.cs │ │ │ ├── DumpCraftingDataEnchantQuality.cs │ │ │ ├── DumpCraftingDataItemQuality.cs │ │ │ ├── DumpCraftingQuality.cs │ │ │ ├── DumpMCRSlotXMCRCategory.cs │ │ │ ├── DumpModifiedCraftingCategory.cs │ │ │ ├── DumpModifiedCraftingItem.cs │ │ │ ├── DumpModifiedCraftingReagentItem.cs │ │ │ ├── DumpModifiedCraftingReagentSlot.cs │ │ │ ├── DumpModifiedCraftingSpellSlot.cs │ │ │ ├── DumpSkillLine.cs │ │ │ ├── DumpSkillLineAbility.cs │ │ │ ├── DumpSourceInfo.cs │ │ │ ├── DumpTradeSkillCategory.cs │ │ │ ├── OutProfession.cs │ │ │ ├── OutProfessionAbility.cs │ │ │ ├── OutProfessionCategory.cs │ │ │ ├── OutSubProfession.cs │ │ │ ├── RedisReagentBonus.cs │ │ │ └── StaticProfessionReagents.cs │ │ ├── Progress │ │ │ ├── DataProgress.cs │ │ │ ├── DataProgressData.cs │ │ │ ├── DataProgressGroup.cs │ │ │ ├── OutProgress.cs │ │ │ ├── OutProgressData.cs │ │ │ └── OutProgressGroup.cs │ │ ├── Quests │ │ │ ├── DumpCampaign.cs │ │ │ ├── DumpCampaignXQuestLine.cs │ │ │ ├── DumpQuestInfo.cs │ │ │ ├── DumpQuestLine.cs │ │ │ ├── DumpQuestLineXQuest.cs │ │ │ └── DumpQuestV2CliTask.cs │ │ ├── Reputations │ │ │ ├── DumpFaction.cs │ │ │ ├── DumpFriendshipRepReaction.cs │ │ │ ├── DumpParagonReputation.cs │ │ │ ├── ManualReputationCategory.cs │ │ │ ├── ManualReputationCategoryReputation.cs │ │ │ ├── ManualReputationCategoryReputationReward.cs │ │ │ └── ManualReputationCategorySet.cs │ │ ├── Spells │ │ │ ├── DumpSpell.cs │ │ │ ├── DumpSpellEffect.cs │ │ │ ├── DumpSpellMisc.cs │ │ │ ├── DumpSpellName.cs │ │ │ ├── DumpSpellReagents.cs │ │ │ └── GameTableSpellScaling.cs │ │ ├── Static │ │ │ ├── RedisStaticData.cs │ │ │ ├── StaticArtifact.cs │ │ │ ├── StaticCampaign.cs │ │ │ ├── StaticChallengeDungeon.cs │ │ │ ├── StaticCharacterClass.cs │ │ │ ├── StaticCharacterRace.cs │ │ │ ├── StaticCharacterSpecialization.cs │ │ │ ├── StaticCurrency.cs │ │ │ ├── StaticCurrencyCategory.cs │ │ │ ├── StaticHeirloom.cs │ │ │ ├── StaticHoliday.cs │ │ │ ├── StaticIllusion.cs │ │ │ ├── StaticKeystoneAffix.cs │ │ │ ├── StaticMount.cs │ │ │ ├── StaticPet.cs │ │ │ ├── StaticQuestInfo.cs │ │ │ ├── StaticQuestLine.cs │ │ │ ├── StaticReputation.cs │ │ │ ├── StaticReputationTier.cs │ │ │ ├── StaticToy.cs │ │ │ ├── StaticTransmogSet.cs │ │ │ └── StaticWorldQuest.cs │ │ ├── Traits │ │ │ ├── DumpSkillLineXTraitTree.cs │ │ │ ├── DumpSkillRaceClassInfo.cs │ │ │ ├── DumpTraitCond.cs │ │ │ ├── DumpTraitDefinition.cs │ │ │ ├── DumpTraitEdge.cs │ │ │ ├── DumpTraitNode.cs │ │ │ ├── DumpTraitNodeEntry.cs │ │ │ ├── DumpTraitNodeGroup.cs │ │ │ ├── DumpTraitNodeGroupXTraitCond.cs │ │ │ ├── DumpTraitNodeGroupXTraitNode.cs │ │ │ ├── DumpTraitNodeXTraitCond.cs │ │ │ ├── DumpTraitNodeXTraitNodeEntry.cs │ │ │ ├── DumpTraitTree.cs │ │ │ ├── OutTraitNode.cs │ │ │ ├── OutTraitPerk.cs │ │ │ └── OutTraitTree.cs │ │ ├── Transmog │ │ │ ├── DataTransmogCategory.cs │ │ │ ├── DataTransmogGroup.cs │ │ │ ├── DataTransmogSet.cs │ │ │ ├── DumpSpellItemEnchantment.cs │ │ │ ├── DumpTransmogIllusion.cs │ │ │ ├── DumpTransmogSet.cs │ │ │ ├── DumpTransmogSetGroup.cs │ │ │ ├── DumpTransmogSetItem.cs │ │ │ ├── ManualTransmogCategory.cs │ │ │ ├── ManualTransmogGroup.cs │ │ │ └── ManualTransmogSet.cs │ │ ├── Vendors │ │ │ ├── DataSharedVendor.cs │ │ │ ├── DataSharedVendorSet.cs │ │ │ ├── DataVendorCategory.cs │ │ │ ├── DataVendorGroup.cs │ │ │ ├── DataVendorItem.cs │ │ │ ├── ManualSharedVendor.cs │ │ │ ├── ManualSharedVendorSet.cs │ │ │ ├── ManualVendorCategory.cs │ │ │ ├── ManualVendorGroup.cs │ │ │ └── ManualVendorItem.cs │ │ └── ZoneMaps │ │ │ ├── DataZoneMapCategory.cs │ │ │ ├── DataZoneMapDrop.cs │ │ │ ├── DataZoneMapFarm.cs │ │ │ ├── ManualZoneMapCategory.cs │ │ │ ├── ManualZoneMapDrop.cs │ │ │ └── ManualZoneMapFarm.cs │ ├── Program.cs │ ├── ToolContext.cs │ ├── Tools │ │ ├── AchievementsTool.cs │ │ ├── AppearancesTool.cs │ │ ├── AuctionTool.cs │ │ ├── DbTool.cs │ │ ├── DumpsTool.cs │ │ ├── ItemsTool.cs │ │ ├── JournalTool.cs │ │ ├── ManualTool.cs │ │ └── StaticTool.cs │ ├── Utilities │ │ ├── DataUtilities.cs │ │ └── DateTimeUtilities.cs │ ├── Wowthing.Tool.csproj │ └── run-all.sh └── web │ ├── Controllers │ ├── API │ │ ├── AuctionsController.cs │ │ ├── CachedJsonController.cs │ │ ├── ItemSearchController.cs │ │ ├── PlayerCharacterController.cs │ │ ├── UploadController.cs │ │ ├── UserAchievementController.cs │ │ ├── UserModifiedController.cs │ │ ├── UserQuestController.cs │ │ └── WorldQuestsController.cs │ ├── AdminController.cs │ ├── ApiController.cs │ ├── AuctionsController.cs │ ├── AuthenticationController.cs │ ├── ErrorController.cs │ ├── HomeController.cs │ ├── ImageController.cs │ ├── LeaderboardController.cs │ ├── TeamControlller.cs │ ├── UploadController.cs │ └── UserController.cs │ ├── Converters │ ├── ApiUserCharacterConverter.cs │ ├── ApiUserCharacterCurrencyConverter.cs │ ├── ApiUserCharacterEquippedItemConverter.cs │ ├── ApiUserCharacterMythicPlusRunConverter.cs │ ├── ApiUserCharacterStatisticsConverter.cs │ ├── ApiUserCharacterWeeklyConverter.cs │ ├── ApiUserGuildConverter.cs │ ├── PlayerCharacterAddonDataMythicPlusMapConverter.cs │ ├── PlayerCharacterAddonDataMythicPlusRunConverter.cs │ ├── UserHistoryGoldConverter.cs │ └── UserPetDataPetConverter.cs │ ├── Dockerfile │ ├── Extensions │ ├── HttpContextExtensions.cs │ ├── HttpResponseExtensions.cs │ ├── IApplicationBuilderExtensions.cs │ ├── IServiceCollectionExtensions.cs │ └── UserManagerExtensions.cs │ ├── Forms │ ├── ApiAuctionSpecificItemForm.cs │ ├── ApiAuctionsBrowseForm.cs │ ├── ApiAuctionsCommoditiesSpecificForm.cs │ ├── ApiAuctionsSearchForm.cs │ ├── ApiAuctionsSpecificForm.cs │ ├── ApiCharacterConfigurationForm.cs │ ├── ApiExtraPetsForm.cs │ ├── ApiItemSearchForm.cs │ ├── ApiMissingAuctionsForm.cs │ ├── ApiMissingProfessionRecipesForm.cs │ ├── ApiMissingTransmogForm.cs │ ├── ApiSettingsForm.cs │ └── TeamAddCharacterForm.cs │ ├── GlobalUsings.cs │ ├── Hubs │ └── UserUpdateHub.cs │ ├── Misc │ ├── SlugRouteConstraint.cs │ └── UsernameRouteConstraint.cs │ ├── Models │ ├── Api │ │ ├── ApiAuctionCommodities.cs │ │ └── User │ │ │ ├── ApiUser.cs │ │ │ ├── ApiUserAccount.cs │ │ │ ├── ApiUserCharacter.cs │ │ │ ├── ApiUserCharacterAddonDataMythicPlus.cs │ │ │ ├── ApiUserCharacterConfiguration.cs │ │ │ ├── ApiUserCharacterCurrency.cs │ │ │ ├── ApiUserCharacterEquippedItem.cs │ │ │ ├── ApiUserCharacterMythicPlus.cs │ │ │ ├── ApiUserCharacterMythicPlusRun.cs │ │ │ ├── ApiUserCharacterShadowlands.cs │ │ │ ├── ApiUserCharacterStatistics.cs │ │ │ ├── ApiUserCharacterWeekly.cs │ │ │ └── ApiUserGuild.cs │ ├── ApiUpload.cs │ ├── FrontendManifest.cs │ ├── FrontendManifestJson.cs │ ├── Search │ │ ├── ItemSearchResponseCharacter.cs │ │ ├── ItemSearchResponseGuildBank.cs │ │ ├── ItemSearchResponseItem.cs │ │ └── ItemSearchResponseWarbank.cs │ ├── Team │ │ ├── TeamApi.cs │ │ └── TeamApiCharacter.cs │ ├── UserAchievementData.cs │ ├── UserAuctionData.cs │ ├── UserCollectionData.cs │ ├── UserHistoryGold.cs │ ├── UserQuestData.cs │ ├── UserTransmogData.cs │ └── WowthingWebOptions.cs │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── Services │ ├── AuctionService.cs │ ├── MemoryCacheService.cs │ ├── PubSubService.cs │ ├── UploadService.cs │ ├── UriService.cs │ └── UserService.cs │ ├── Startup.cs │ ├── ViewModels │ ├── AdminViewModel.cs │ ├── AuctionsViewModel.cs │ ├── ErrorViewModel.cs │ ├── LeaderboardViewModel.cs │ ├── TeamViewModel.cs │ └── UserViewModel.cs │ ├── Views │ ├── Admin │ │ └── Index.cshtml │ ├── Auctions │ │ └── Index.cshtml │ ├── Error │ │ ├── 403.cshtml │ │ ├── 404.cshtml │ │ └── Error.cshtml │ ├── Home │ │ └── Index.cshtml │ ├── Leaderboard │ │ └── Index.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ ├── _Layout.cshtml │ │ ├── _ManifestCss.cshtml │ │ └── _ManifestJs.cshtml │ ├── Team │ │ ├── AddCharacterForm.cshtml │ │ └── Details.cshtml │ ├── Upload │ │ └── Index.cshtml │ ├── User │ │ └── Index.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml │ ├── Wowthing.Web.csproj │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── development.Dockerfile │ ├── project.json │ └── wwwroot │ ├── external │ ├── discord_blurple.png │ ├── discord_blurple.svg │ ├── discord_white.png │ └── kofi_pixel_logo.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ └── img │ ├── currencies_20210704.png │ ├── currencies_20210704.webp │ ├── gear_20210704.png │ ├── gear_20210704.webp │ ├── home_20210704.png │ ├── home_20210704.webp │ ├── journal_20221111.png │ ├── journal_20221111.webp │ ├── mythic_plus_20210704.png │ ├── mythic_plus_20210704.webp │ ├── reputations_20210704.png │ ├── reputations_20210704.webp │ ├── sets_20221111.png │ ├── sets_20221111.webp │ ├── vendors_20221111.png │ ├── vendors_20221111.webp │ ├── zone_maps_20221111.png │ └── zone_maps_20221111.webp ├── bebop └── item.bop ├── bin ├── dump_items.py ├── expand_sets.py ├── get_sets.py ├── hn.py ├── item_contexts.py ├── item_expansion.py ├── json_size.py ├── sd.py └── sql.py ├── docker-compose.yml ├── docs ├── background_image.md ├── maintenance.md ├── processes │ └── new-season.md └── tasks_chores.md ├── ef.cmd ├── ef.sh └── packages └── csharp-lib ├── Comparers ├── DictionaryComparer.cs └── UploadCharacterAchievementComparer.cs ├── Constants ├── MemoryCacheKeys.cs ├── MiscConstants.cs └── RedisKeys.cs ├── Contexts └── WowDbContext.cs ├── Converters ├── AuctionBrowseQueryConverter.cs ├── BasePlayerItemConverter.cs ├── MissingRecipeQueryConverter.cs ├── MissingTransmogByAppearanceIdQueryConverter.cs ├── MissingTransmogByAppearanceSourceQueryConverter.cs ├── PlayerCharacterAddonDataCurrencyConverter.cs ├── PlayerCharacterAddonQuestsProgressConverter.cs ├── PlayerCharacterItemConverter.cs ├── PlayerCharacterMythicPlusRunConverter.cs ├── PlayerCharacterMythicPlusRunMemberConverter.cs ├── PlayerGuildItemConverter.cs ├── PlayerWarbankItemConverter.cs ├── RawCriteriaConverter.cs ├── StatisticsQueryConverter.cs ├── WowAuctionConverter.cs ├── WowItemBonusConverter.cs └── WowRealmConverter.cs ├── Data ├── ArmorClassMask.cs ├── CharacterClass.cs ├── CurrencyItemIds.cs ├── PrimaryStats.cs ├── ProgressItemIds.cs └── SkipInstances.cs ├── Enums ├── GameItemClass.cs ├── ImageFormat.cs ├── ImageType.cs ├── ItemLocation.cs ├── Language.cs ├── Progress.cs ├── StringType.cs ├── TransmogSetMatchType.cs ├── TransmogSetType.cs ├── TransmogSourceType.cs ├── WowAchievementFlags.cs ├── WowArmorSubclass.cs ├── WowAuctionTimeLeft.cs ├── WowBindType.cs ├── WowCharacterClassMask.cs ├── WowCurrencyFlags.cs ├── WowDifficulty.cs ├── WowFaction.cs ├── WowGender.cs ├── WowInventorySlot.cs ├── WowInventoryType.cs ├── WowItemBonusType.cs ├── WowItemFlags.cs ├── WowItemStatType.cs ├── WowQuality.cs ├── WowRegion.cs ├── WowRole.cs ├── WowSpellEffectEffect.cs ├── WowStat.cs ├── WowTransmogSetFlags.cs ├── WowWeaponSubclass.cs └── ZoneMaps.cs ├── Extensions ├── CollectionExtensions.cs ├── DateTimeExtensions.cs ├── IDatabaseExtensions.cs ├── IServiceCollectionExtensions.cs ├── IntExtensions.cs ├── JobPriorityExtensions.cs ├── LongExtensions.cs ├── StringExtensions.cs ├── TypeExtensions.cs ├── Utf8JsonReaderExtensions.cs └── Utf8JsonWriterExtensions.cs ├── Factories └── WowDbContextFactory.cs ├── GlobalUsings.cs ├── Jobs ├── JobPriority.cs ├── JobType.cs └── WorkerJob.cs ├── Migrations ├── 20211120203420_Initial.Designer.cs ├── 20211120203420_Initial.cs ├── 20211120205327_Add_PlayerCharacterCurrency.Designer.cs ├── 20211120205327_Add_PlayerCharacterCurrency.cs ├── 20211121063206_Add_LanguageString_Modify_WowItem.Designer.cs ├── 20211121063206_Add_LanguageString_Modify_WowItem.cs ├── 20211122184343_Add_PlayerCharacterReputation_Paragons.Designer.cs ├── 20211122184343_Add_PlayerCharacterReputation_Paragons.cs ├── 20211124183716_Add_WowMount_WowPet_WowToy.Designer.cs ├── 20211124183716_Add_WowMount_WowPet_WowToy.cs ├── 20211206165524_Add_WowItem_Quality.Designer.cs ├── 20211206165524_Add_WowItem_Quality.cs ├── 20211207015753_Add_WowItem_PrimaryStat.Designer.cs ├── 20211207015753_Add_WowItem_PrimaryStat.cs ├── 20211212191153_Add_PlayerAccountGoldSnapshot.Designer.cs ├── 20211212191153_Add_PlayerAccountGoldSnapshot.cs ├── 20211222212248_Add_PlayerCharacterMedia.Designer.cs ├── 20211222212248_Add_PlayerCharacterMedia.cs ├── 20211223012730_Add_PlayerCharacterSpecializations.Designer.cs ├── 20211223012730_Add_PlayerCharacterSpecializations.cs ├── 20211227195914_Add_WowItem_Flags.Designer.cs ├── 20211227195914_Add_WowItem_Flags.cs ├── 20211230002748_Add_PlayerCharacterAddonQuests_OtherQuests.Designer.cs ├── 20211230002748_Add_PlayerCharacterAddonQuests_OtherQuests.cs ├── 20220101221438_Add_PlayerCharacterAddonQuests_Callings.Designer.cs ├── 20220101221438_Add_PlayerCharacterAddonQuests_Callings.cs ├── 20220109000743_Add_PlayerCharacterAddonAchievements.Designer.cs ├── 20220109000743_Add_PlayerCharacterAddonAchievements.cs ├── 20220109025551_Add_PlayerCharacterAddonQuests_CallingsScannedAt.Designer.cs ├── 20220109025551_Add_PlayerCharacterAddonQuests_CallingsScannedAt.cs ├── 20220117031136_Add_WowRealm_ConnectedRealmId.Designer.cs ├── 20220117031136_Add_WowRealm_ConnectedRealmId.cs ├── 20220118004548_Add_WowAuction.Designer.cs ├── 20220118004548_Add_WowAuction.cs ├── 20220118071547_Add_WowAuction_Indexes.Designer.cs ├── 20220118071547_Add_WowAuction_Indexes.cs ├── 20220120054009_Add_WowMount_ItemId.Designer.cs ├── 20220120054009_Add_WowMount_ItemId.cs ├── 20220123015111_Add_PlayerGuild.Designer.cs ├── 20220123015111_Add_PlayerGuild.cs ├── 20220123015839_Remove_PlayerCharacter_GuildId.Designer.cs ├── 20220123015839_Remove_PlayerCharacter_GuildId.cs ├── 20220123015901_Add_PlayerCharacter_GuildId.Designer.cs ├── 20220123015901_Add_PlayerCharacter_GuildId.cs ├── 20220123021623_Add_PlayerGuildItem.Designer.cs ├── 20220123021623_Add_PlayerGuildItem.cs ├── 20220123042521_Add_PlayerAccountTransmogSources.Designer.cs ├── 20220123042521_Add_PlayerAccountTransmogSources.cs ├── 20220123061745_Add_WowItemModifiedAppearance.Designer.cs ├── 20220123061745_Add_WowItemModifiedAppearance.cs ├── 20220123180142_Change_PlayerAccountTransmogSources.Designer.cs ├── 20220123180142_Change_PlayerAccountTransmogSources.cs ├── 20220201012954_Add_Image.Designer.cs ├── 20220201012954_Add_Image.cs ├── 20220204034005_Add_BackgroundImage.Designer.cs ├── 20220204034005_Add_BackgroundImage.cs ├── 20220220221355_Rework_PlayerCharacterAddonQuests.Designer.cs ├── 20220220221355_Rework_PlayerCharacterAddonQuests.cs ├── 20220222015525_Add_PlayerCharacter_LastApiCheck_Index.Designer.cs ├── 20220222015525_Add_PlayerCharacter_LastApiCheck_Index.cs ├── 20220226010138_Remove_PlayerAccount_Name.Designer.cs ├── 20220226010138_Remove_PlayerAccount_Name.cs ├── 20220227030123_Add_WowPet_ItemId.Designer.cs ├── 20220227030123_Add_WowPet_ItemId.cs ├── 20220313200602_Add_PlayerCharacterAddonQuests_OtherQuests_again.Designer.cs ├── 20220313200602_Add_PlayerCharacterAddonQuests_OtherQuests_again.cs ├── 20220410213301_Add_PlayerCharacterAddonData.Designer.cs ├── 20220410213301_Add_PlayerCharacterAddonData.cs ├── 20220603203613_Add_PlayerCharacterAddonData_MythicPlus.Designer.cs ├── 20220603203613_Add_PlayerCharacterAddonData_MythicPlus.cs ├── 20220612001907_Add_GlobalDailies.Designer.cs ├── 20220612001907_Add_GlobalDailies.cs ├── 20220612045747_Fix_GlobalDailies_Column.Designer.cs ├── 20220612045747_Fix_GlobalDailies_Column.cs ├── 20220616003059_Add_PlayerCharacterStatistics.Designer.cs ├── 20220616003059_Add_PlayerCharacterStatistics.cs ├── 20220616012411_Add_StatisticsQuery.Designer.cs ├── 20220616012411_Add_StatisticsQuery.cs ├── 20220621002736_Add_ApplicationUser_LastApiCheck.Designer.cs ├── 20220621002736_Add_ApplicationUser_LastApiCheck.cs ├── 20220621005146_Add_SchedulerUserQuery.Designer.cs ├── 20220621005146_Add_SchedulerUserQuery.cs ├── 20220622042430_Add_PlayerCharacter_LastApiModified.Designer.cs ├── 20220622042430_Add_PlayerCharacter_LastApiModified.cs ├── 20220625222957_Add_GlobalDailies_QuestRewards.Designer.cs ├── 20220625222957_Add_GlobalDailies_QuestRewards.cs ├── 20220626000553_Add_PlayerCharacterAddonQuests_Dailies.Designer.cs ├── 20220626000553_Add_PlayerCharacterAddonQuests_Dailies.cs ├── 20220626000703_Remove_PlayerCharacterAddonQuests_Callings.Designer.cs ├── 20220626000703_Remove_PlayerCharacterAddonQuests_Callings.cs ├── 20220704212551_Add_GoldSnapshotQuery.Designer.cs ├── 20220704212551_Add_GoldSnapshotQuery.cs ├── 20220707190516_Add_WowCharacterSpecialization.Designer.cs ├── 20220707190516_Add_WowCharacterSpecialization.cs ├── 20220707221643_Add_WowCharacterClass.Designer.cs ├── 20220707221643_Add_WowCharacterClass.cs ├── 20220707225451_Add_WowCharacterRace.Designer.cs ├── 20220707225451_Add_WowCharacterRace.cs ├── 20220708005031_Add_WowCharacterClass_Slug.Designer.cs ├── 20220708005031_Add_WowCharacterClass_Slug.cs ├── 20220709024833_Add_WowCurrency_WowCurrencyCategory.Designer.cs ├── 20220709024833_Add_WowCurrency_WowCurrencyCategory.cs ├── 20220710184400_Remove_WowReputation.Designer.cs ├── 20220710184400_Remove_WowReputation.cs ├── 20220710184509_Add_WowReputation.Designer.cs ├── 20220710184509_Add_WowReputation.cs ├── 20220724182425_Add_WowItemEffect.Designer.cs ├── 20220724182425_Add_WowItemEffect.cs ├── 20220726011004_Add_PlayerCharacterAddonData_BindLocation_CurrentLocation.Designer.cs ├── 20220726011004_Add_PlayerCharacterAddonData_BindLocation_CurrentLocation.cs ├── 20220726175630_Add_PlayerCharacterTransmog_IllusionIds.Designer.cs ├── 20220726175630_Add_PlayerCharacterTransmog_IllusionIds.cs ├── 20220728034554_Add_PlayerAccountAddonData.Designer.cs ├── 20220728034554_Add_PlayerAccountAddonData.cs ├── 20220805005744_Add_PlayerCharacterAddonData_MythicPlusSeasons_MythicPlusWeeks.Designer.cs ├── 20220805005744_Add_PlayerCharacterAddonData_MythicPlusSeasons_MythicPlusWeeks.cs ├── 20220815215643_Add_WowItem_Expansion_ItemLevel_RequiredLevel.Designer.cs ├── 20220815215643_Add_WowItem_Expansion_ItemLevel_RequiredLevel.cs ├── 20220817064943_Add_WowItemModifiedAppearance_Order_SourceType.Designer.cs ├── 20220817064943_Add_WowItemModifiedAppearance_Order_SourceType.cs ├── 20220831070202_Add_PlayerCharacterAddonData_Garrisons.Designer.cs ├── 20220831070202_Add_PlayerCharacterAddonData_Garrisons.cs ├── 20220907000212_Add_PlayerAccountAddonData_Honor.Designer.cs ├── 20220907000212_Add_PlayerAccountAddonData_Honor.cs ├── 20221022012132_Add_PlayerCharacterItem_Index.Designer.cs ├── 20221022012132_Add_PlayerCharacterItem_Index.cs ├── 20221106175616_Add_PlayerCharacterAddonData_Auras.Designer.cs ├── 20221106175616_Add_PlayerCharacterAddonData_Auras.cs ├── 20221108173101_Add_PlayerCharacterAddonData_Currencies.Designer.cs ├── 20221108173101_Add_PlayerCharacterAddonData_Currencies.cs ├── 20221117004253_Remove_PlayerCharacterCurrency.Designer.cs ├── 20221117004253_Remove_PlayerCharacterCurrency.cs ├── 20221127210921_Add_PlayerCharacterConfiguration.Designer.cs ├── 20221127210921_Add_PlayerCharacterConfiguration.cs ├── 20221204060700_Add_PlayerCharacterAddonData_Level.Designer.cs ├── 20221204060700_Add_PlayerCharacterAddonData_Level.cs ├── 20221225195857_Add_PlayerCharacterAddonData_EquippedItems.Designer.cs ├── 20221225195857_Add_PlayerCharacterAddonData_EquippedItems.cs ├── 20221228234221_Add_Item_CraftedQuality.Designer.cs ├── 20221228234221_Add_Item_CraftedQuality.cs ├── 20230105052855_Add_WowQuest.Designer.cs ├── 20230105052855_Add_WowQuest.cs ├── 20230205204900_Add_PlayerAccountAddonData_Quests.Designer.cs ├── 20230205204900_Add_PlayerAccountAddonData_Quests.cs ├── 20230207074206_Add_WowHoliday.Designer.cs ├── 20230207074206_Add_WowHoliday.cs ├── 20230304191422_Remove_PlayerCharacterAddonData_Auras.Designer.cs ├── 20230304191422_Remove_PlayerCharacterAddonData_Auras.cs ├── 20230304191529_Add_PlayerCharacterAddonData_Auras_v2.Designer.cs ├── 20230304191529_Add_PlayerCharacterAddonData_Auras_v2.cs ├── 20230408233903_Remove_WowTitle.Designer.cs ├── 20230408233903_Remove_WowTitle.cs ├── 20230409024024_Remove_WowReputationTier_fields.Designer.cs ├── 20230409024024_Remove_WowReputationTier_fields.cs ├── 20230428051358_Add_WowItem_BindType_Unique.Designer.cs ├── 20230428051358_Add_WowItem_BindType_Unique.cs ├── 20230506022019_Add_PlayerCharacterAddonData_BankBagsScannedAt.Designer.cs ├── 20230506022019_Add_PlayerCharacterAddonData_BankBagsScannedAt.cs ├── 20230508003215_Add_WorldQuestReport.Designer.cs ├── 20230508003215_Add_WorldQuestReport.cs ├── 20230508052300_Add_PlayerCharacterAddonQuests_WorldQuestsScannedAt.Designer.cs ├── 20230508052300_Add_PlayerCharacterAddonQuests_WorldQuestsScannedAt.cs ├── 20230508053944_Add_WorldQuestReport_Location.Designer.cs ├── 20230508053944_Add_WorldQuestReport_Location.cs ├── 20230508191345_Add_WorldQuestReport_ReportedAt.Designer.cs ├── 20230508191345_Add_WorldQuestReport_ReportedAt.cs ├── 20230516055504_Add_WowItemEffectV2.Designer.cs ├── 20230516055504_Add_WowItemEffectV2.cs ├── 20230522023735_Add_PlayerAccountHeirlooms.Designer.cs ├── 20230522023735_Add_PlayerAccountHeirlooms.cs ├── 20230530023038_Add_PlayerCharacterAddonData_ProfessionTraits.Designer.cs ├── 20230530023038_Add_PlayerCharacterAddonData_ProfessionTraits.cs ├── 20230603185927_Change_UserId_to_nullable.Designer.cs ├── 20230603185927_Change_UserId_to_nullable.cs ├── 20230714215718_Add_WowTransmogSet.Designer.cs ├── 20230714215718_Add_WowTransmogSet.cs ├── 20230721024326_Add_WowItemBonus.Designer.cs ├── 20230721024326_Add_WowItemBonus.cs ├── 20230721042518_Add_WowAuction_AppearanceId_AppearanceSource.Designer.cs ├── 20230721042518_Add_WowAuction_AppearanceId_AppearanceSource.cs ├── 20230721175509_Add_WowAuction_Appearance_Indexes.Designer.cs ├── 20230721175509_Add_WowAuction_Appearance_Indexes.cs ├── 20230721220805_Add_UserTransmogCache.Designer.cs ├── 20230721220805_Add_UserTransmogCache.cs ├── 20230726020134_Add_WowAuctionCheapestByAppearanceId.Designer.cs ├── 20230726020134_Add_WowAuctionCheapestByAppearanceId.cs ├── 20230727190903_Rename_UserTransmogCache_to_UserCache_part_1.Designer.cs ├── 20230727190903_Rename_UserTransmogCache_to_UserCache_part_1.cs ├── 20230727191003_Rename_UserTransmogCache_to_UserCache_part_2.Designer.cs ├── 20230727191003_Rename_UserTransmogCache_to_UserCache_part_2.cs ├── 20230728012012_Add_UserCache_fields.Designer.cs ├── 20230728012012_Add_UserCache_fields.cs ├── 20230729231454_Add_UserLeaderboardSnapshot.Designer.cs ├── 20230729231454_Add_UserLeaderboardSnapshot.cs ├── 20230730023836_Add_UserCache_Toys.Designer.cs ├── 20230730023836_Add_UserCache_Toys.cs ├── 20230730060208_Add_UserCache_CompletedQuests.Designer.cs ├── 20230730060208_Add_UserCache_CompletedQuests.cs ├── 20230803015315_Add_WowAuctionCheapestByAppearanceSource.Designer.cs ├── 20230803015315_Add_WowAuctionCheapestByAppearanceSource.cs ├── 20230803045928_Add_WowProfessionRecipeItem.Designer.cs ├── 20230803045928_Add_WowProfessionRecipeItem.cs ├── 20230805184311_Add_PlayerCharacterStats.Designer.cs ├── 20230805184311_Add_PlayerCharacterStats.cs ├── 20230805211356_Remove_PlayerCharacter_MountSkill.Designer.cs ├── 20230805211356_Remove_PlayerCharacter_MountSkill.cs ├── 20230807191231_Change_WowProfessionRecipeItem_PK.Designer.cs ├── 20230807191231_Change_WowProfessionRecipeItem_PK.cs ├── 20230810224401_Add_PlayerCharacterAddonData_ProfessionCooldowns.Designer.cs ├── 20230810224401_Add_PlayerCharacterAddonData_ProfessionCooldowns.cs ├── 20230819021940_Add_WowRealm_Locale.Designer.cs ├── 20230819021940_Add_WowRealm_Locale.cs ├── 20230824171450_Add_WowItem_RequiredSkill_RequiredSkillRank.Designer.cs ├── 20230824171450_Add_WowItem_RequiredSkill_RequiredSkillRank.cs ├── 20230826202430_Add_WowItem_RequiredAbility.Designer.cs ├── 20230826202430_Add_WowItem_RequiredAbility.cs ├── 20230826203650_Add_PlayerCharacterProfessions_ProfessionSpecializations.Designer.cs ├── 20230826203650_Add_PlayerCharacterProfessions_ProfessionSpecializations.cs ├── 20230901024947_Add_WowItem_OppositeFactionId.Designer.cs ├── 20230901024947_Add_WowItem_OppositeFactionId.cs ├── 20230925164406_Add_WowRealm_EnglishName.Designer.cs ├── 20230925164406_Add_WowRealm_EnglishName.cs ├── 20230929005056_Add_PlayerCharacter_ShouldUpdate.Designer.cs ├── 20230929005056_Add_PlayerCharacter_ShouldUpdate.cs ├── 20230929010948_Add_PlayerCharacter_Fancy_Index.Designer.cs ├── 20230929010948_Add_PlayerCharacter_Fancy_Index.cs ├── 20231004035243_Add_WowAuctionCommodity_Tables.Designer.cs ├── 20231004035243_Add_WowAuctionCommodity_Tables.cs ├── 20231004173611_Add_WowItemClass_WowItemSubclass.Designer.cs ├── 20231004173611_Add_WowItemClass_WowItemSubclass.cs ├── 20231006180129_Add_WowAuction_GroupKey.Designer.cs ├── 20231006180129_Add_WowAuction_GroupKey.cs ├── 20231006221218_Add_WowItem_LimitCategory.Designer.cs ├── 20231006221218_Add_WowItem_LimitCategory.cs ├── 20231006221607_Change_PlayerCharacter_ShouldUpdate_Nullable.Designer.cs ├── 20231006221607_Change_PlayerCharacter_ShouldUpdate_Nullable.cs ├── 20231007231058_Remove_WowAuctionCommodity_Tables.Designer.cs ├── 20231007231058_Remove_WowAuctionCommodity_Tables.cs ├── 20231007231238_Add_WowAuctionCommodityHourly.Designer.cs ├── 20231007231238_Add_WowAuctionCommodityHourly.cs ├── 20231014232042_Add_WorldQuestAggregate.Designer.cs ├── 20231014232042_Add_WorldQuestAggregate.cs ├── 20231015172235_Add_WowWorldQuest.Designer.cs ├── 20231015172235_Add_WowWorldQuest.cs ├── 20231016031454_Add_WowItem_CraftingQuality.Designer.cs ├── 20231016031454_Add_WowItem_CraftingQuality.cs ├── 20231021003853_Add_AuditLog.Designer.cs ├── 20231021003853_Add_AuditLog.cs ├── 20231109051808_Add_WowReputation_RenownCurrencyId.Designer.cs ├── 20231109051808_Add_WowReputation_RenownCurrencyId.cs ├── 20231204183340_Add_PlayerItem_Modifiers.Designer.cs ├── 20231204183340_Add_PlayerItem_Modifiers.cs ├── 20231225221716_Add_ApplicationUser_ApiKey_Index.Designer.cs ├── 20231225221716_Add_ApplicationUser_ApiKey_Index.cs ├── 20231228001104_Add_WowItemEffectV2_ItemEffectIds.Designer.cs ├── 20231228001104_Add_WowItemEffectV2_ItemEffectIds.cs ├── 20240625003912_Add_UserBulkData.Designer.cs ├── 20240625003912_Add_UserBulkData.cs ├── 20240705185730_Add_PlayerCharacterAddonData_Professions.Designer.cs ├── 20240705185730_Add_PlayerCharacterAddonData_Professions.cs ├── 20240707210441_Add_QueuedJob.Designer.cs ├── 20240707210441_Add_QueuedJob.cs ├── 20240716172703_Add_WowCharacterRace_Bit.Designer.cs ├── 20240716172703_Add_WowCharacterRace_Bit.cs ├── 20240717060043_Add_WowWorldQuest_Faction.Designer.cs ├── 20240717060043_Add_WowWorldQuest_Faction.cs ├── 20240719185856_Add_PlayerCharacterAddonQuests_CompletedQuests.Designer.cs ├── 20240719185856_Add_PlayerCharacterAddonQuests_CompletedQuests.cs ├── 20240720041736_Add_QueuedJob_Failures.Designer.cs ├── 20240720041736_Add_QueuedJob_Failures.cs ├── 20240729195040_Add_WowReputation_AccountWide.Designer.cs ├── 20240729195040_Add_WowReputation_AccountWide.cs ├── 20240731155645_Rename_ItemContainers.Designer.cs ├── 20240731155645_Rename_ItemContainers.cs ├── 20240731175110_Add_PlayerWarbankItem.Designer.cs ├── 20240731175110_Add_PlayerWarbankItem.cs ├── 20240731232534_Add_UserMetadata.Designer.cs ├── 20240731232534_Add_UserMetadata.cs ├── 20240801025849_Add_PlayerWarbankItem_Region.Designer.cs ├── 20240801025849_Add_PlayerWarbankItem_Region.cs ├── 20240804051409_Add_QueuedJob_DataHash.Designer.cs ├── 20240804051409_Add_QueuedJob_DataHash.cs ├── 20240831232109_Add_PlayerCharacter_Upload_Index.Designer.cs ├── 20240831232109_Add_PlayerCharacter_Upload_Index.cs ├── 20240904020451_Add_WowCurrency_TransferPercent_RechargeAmount_RechargeInterval.Designer.cs ├── 20240904020451_Add_WowCurrency_TransferPercent_RechargeAmount_RechargeInterval.cs ├── 20240906213037_Add_PlayerCharacterAddonData_CurrenciesScannedAt.Designer.cs ├── 20240906213037_Add_PlayerCharacterAddonData_CurrenciesScannedAt.cs ├── 20240908050730_Add_WowCampaign_WowQuestLine.Designer.cs ├── 20240908050730_Add_WowCampaign_WowQuestLine.cs ├── 20240914060035_Delete_UserMetadata.Designer.cs ├── 20240914060035_Delete_UserMetadata.cs ├── 20240914060507_Add_UserAddonData.Designer.cs ├── 20240914060507_Add_UserAddonData.cs ├── 20240914061912_Add_UserGoldSnapshot.Designer.cs ├── 20240914061912_Add_UserGoldSnapshot.cs ├── 20240914234633_Add_UserAddonData_WarbankGoldUpdatedAt.Designer.cs ├── 20240914234633_Add_UserAddonData_WarbankGoldUpdatedAt.cs ├── 20240920235116_Add_PlayerAddonData_PatronOrders.Designer.cs ├── 20240920235116_Add_PlayerAddonData_PatronOrders.cs ├── 20241003175926_Add_WowReputation_BaseValues_MaxValues.Designer.cs ├── 20241003175926_Add_WowReputation_BaseValues_MaxValues.cs ├── 20241022032739_Add_PlayerCharacterWeekly_Delves.Designer.cs ├── 20241022032739_Add_PlayerCharacterWeekly_Delves.cs ├── 20250104190131_Add_WowJournalInstance.Designer.cs ├── 20250104190131_Add_WowJournalInstance.cs ├── 20250104215808_Add_PlayerAccountTransmogIds.Designer.cs ├── 20250104215808_Add_PlayerAccountTransmogIds.cs ├── 20250119210341_Add_PlayerCharacterAddonData_Resets.Designer.cs ├── 20250119210341_Add_PlayerCharacterAddonData_Resets.cs ├── 20250122185846_Add_WowAuctionCommodityDaily.Designer.cs ├── 20250122185846_Add_WowAuctionCommodityDaily.cs ├── 20250203012144_Add_PlayerAccountAddonData_Illusions.Designer.cs ├── 20250203012144_Add_PlayerAccountAddonData_Illusions.cs ├── 20250209221108_Add_Mount_Pet_ItemIds.Designer.cs ├── 20250209221108_Add_Mount_Pet_ItemIds.cs ├── 20250209224630_Remove_Mount_Pet_ItemId.Designer.cs ├── 20250209224630_Remove_Mount_Pet_ItemId.cs ├── 20250218195600_Add_PlayerCharacterAddonData_HighestItemLevel.Designer.cs ├── 20250218195600_Add_PlayerCharacterAddonData_HighestItemLevel.cs ├── 20250228184537_Add_WowItem_Sockets.Designer.cs ├── 20250228184537_Add_WowItem_Sockets.cs ├── 20250301195704_Add_WowItem_TeachesSpellIds.Designer.cs ├── 20250301195704_Add_WowItem_TeachesSpellIds.cs ├── 20250301201055_Add_WowItem_CompletesQuestIds.Designer.cs ├── 20250301201055_Add_WowItem_CompletesQuestIds.cs ├── 20250301210406_Add_WowItem_TeachesTransmogSetIds.Designer.cs ├── 20250301210406_Add_WowItem_TeachesTransmogSetIds.cs ├── 20250309220700_Add_BasePlayerItem_BindType_Bound.Designer.cs ├── 20250309220700_Add_BasePlayerItem_BindType_Bound.cs ├── 20250329181834_Add_PlayerCharacterWeekly_DelveGilded.Designer.cs ├── 20250329181834_Add_PlayerCharacterWeekly_DelveGilded.cs ├── 20250329223444_Add_PlayerCharacterAddonQuests_GoldWorldQuests.Designer.cs ├── 20250329223444_Add_PlayerCharacterAddonQuests_GoldWorldQuests.cs ├── 20250429040802_Add_PlayerCharacterAddonData_KnownSpells.Designer.cs ├── 20250429040802_Add_PlayerCharacterAddonData_KnownSpells.cs ├── 20250518212517_Add_PlayerGuild_Tabs.Designer.cs ├── 20250518212517_Add_PlayerGuild_Tabs.cs ├── 20250621155351_Add_WowReputation_ParagonQuestId_ParagonThreshold.Designer.cs ├── 20250621155351_Add_WowReputation_ParagonQuestId_ParagonThreshold.cs ├── 20250816182111_AddWowQuestStuff.Designer.cs ├── 20250816182111_AddWowQuestStuff.cs ├── 20250821014415_Add_PlayerCharacterMythicPlusSeason_Rating.Designer.cs ├── 20250821014415_Add_PlayerCharacterMythicPlusSeason_Rating.cs ├── 20250928034254_Add_WowItem_TeachesTransmogIllusionIds.Designer.cs ├── 20250928034254_Add_WowItem_TeachesTransmogIllusionIds.cs ├── 20251021165839_Add_WowCurrency_Flags.Designer.cs ├── 20251021165839_Add_WowCurrency_Flags.cs ├── 20251022044448_Add_PlayerCharacterAddonData_RemixResearch.Designer.cs ├── 20251022044448_Add_PlayerCharacterAddonData_RemixResearch.cs ├── 20251023212518_Add_PlayerCharacterAddonData_RemixArtifactTrait.Designer.cs ├── 20251023212518_Add_PlayerCharacterAddonData_RemixArtifactTrait.cs ├── 20251025035546_Add_WowChallengeDungeon.Designer.cs ├── 20251025035546_Add_WowChallengeDungeon.cs ├── 20251025203004_Add_PlayerCharacterAddonData_CurrenciesTransferredAt.Designer.cs ├── 20251025203004_Add_PlayerCharacterAddonData_CurrenciesTransferredAt.cs ├── 20251205010352_Add_PlayerAccountAddonData_Decor.Designer.cs ├── 20251205010352_Add_PlayerAccountAddonData_Decor.cs ├── 20251207223345_Add_WowItem_TeachesDecorIds.Designer.cs ├── 20251207223345_Add_WowItem_TeachesDecorIds.cs └── WowDbContextModelSnapshot.cs ├── Models ├── API │ ├── ApiLeaderboard.cs │ ├── ApiUserAchievements.cs │ └── ApiUserQuests.cs ├── ApiUserResult.cs ├── ApplicationUser.cs ├── ApplicationUserSettings.cs ├── AuditLog.cs ├── BackgroundImage.cs ├── CriteriaCache.cs ├── Global │ └── GlobalDailies.cs ├── IGoldSnapshot.cs ├── Image.cs ├── LanguageString.cs ├── Player │ ├── BasePlayerItem.cs │ ├── IPlayerItem.cs │ ├── PlayerAccount.cs │ ├── PlayerAccountAddonData.cs │ ├── PlayerAccountGoldSnapshot.cs │ ├── PlayerAccountHeirlooms.cs │ ├── PlayerAccountPets.cs │ ├── PlayerAccountToys.cs │ ├── PlayerAccountTransmogIds.cs │ ├── PlayerAccountTransmogSources.cs │ ├── PlayerCharacter.cs │ ├── PlayerCharacterAchievements.cs │ ├── PlayerCharacterAddonAchievements.cs │ ├── PlayerCharacterAddonData.cs │ ├── PlayerCharacterAddonMounts.cs │ ├── PlayerCharacterAddonQuests.cs │ ├── PlayerCharacterConfiguration.cs │ ├── PlayerCharacterCurrency.cs │ ├── PlayerCharacterEquippedItems.cs │ ├── PlayerCharacterItem.cs │ ├── PlayerCharacterLockouts.cs │ ├── PlayerCharacterMedia.cs │ ├── PlayerCharacterMounts.cs │ ├── PlayerCharacterMythicPlus.cs │ ├── PlayerCharacterMythicPlusAddon.cs │ ├── PlayerCharacterMythicPlusSeason.cs │ ├── PlayerCharacterProfessions.cs │ ├── PlayerCharacterQuests.cs │ ├── PlayerCharacterRaiderIo.cs │ ├── PlayerCharacterReputations.cs │ ├── PlayerCharacterShadowlands.cs │ ├── PlayerCharacterSpecializations.cs │ ├── PlayerCharacterStatistics.cs │ ├── PlayerCharacterStats.cs │ ├── PlayerCharacterTransmog.cs │ ├── PlayerCharacterWeekly.cs │ ├── PlayerGuild.cs │ ├── PlayerGuildItem.cs │ └── PlayerWarbankItem.cs ├── Query │ ├── AccountTransmogQuery.cs │ ├── AchievementCriteriaQuery.cs │ ├── ActiveConnectedRealmQuery.cs │ ├── AuctionBrowseQuery.cs │ ├── CompletedAchievementsQuery.cs │ ├── LatestPlayerAccountGoldSnapshotQuery.cs │ ├── LatestUserGoldSnapshotQuery.cs │ ├── MissingRecipeQuery.cs │ ├── MissingTransmogByAppearanceIdQuery.cs │ ├── MissingTransmogByAppearanceSourceQuery.cs │ ├── MountQuery.cs │ ├── PlayerAccountGoldSnapshotQuery.cs │ ├── SchedulerCharacterQuery.cs │ ├── SchedulerUserQuery.cs │ ├── StatisticsQuery.cs │ ├── UserGoldSnapshotQuery.cs │ └── UserLeaderboardQuery.cs ├── QueuedJob.cs ├── RedisRaiderIoScoreTiers.cs ├── Team │ ├── Team.cs │ └── TeamCharacter.cs ├── User │ ├── UserAddonData.cs │ ├── UserBulkData.cs │ ├── UserCache.cs │ ├── UserGoldSnapshot.cs │ └── UserLeaderboardSnapshot.cs ├── WorldQuestAggregate.cs ├── WorldQuestReport.cs └── Wow │ ├── WowAuction.cs │ ├── WowAuctionCheapestByAppearanceId.cs │ ├── WowAuctionCheapestByAppearanceSource.cs │ ├── WowAuctionCommodityDaily.cs │ ├── WowAuctionCommodityHourly.cs │ ├── WowCampaign.cs │ ├── WowChallengeDungeon.cs │ ├── WowCharacterClass.cs │ ├── WowCharacterRace.cs │ ├── WowCharacterSpecialization.cs │ ├── WowCurrency.cs │ ├── WowCurrencyCategory.cs │ ├── WowHoliday.cs │ ├── WowItem.cs │ ├── WowItemBonus.cs │ ├── WowItemClass.cs │ ├── WowItemEffect.cs │ ├── WowItemEffectV2.cs │ ├── WowItemModifiedAppearance.cs │ ├── WowItemSubclass.cs │ ├── WowJournalInstance.cs │ ├── WowMount.cs │ ├── WowMythicPlusSeason.cs │ ├── WowPeriod.cs │ ├── WowPet.cs │ ├── WowProfessionRecipeItem.cs │ ├── WowQuest.cs │ ├── WowQuestLine.cs │ ├── WowRealm.cs │ ├── WowReputation.cs │ ├── WowReputationTier.cs │ ├── WowTitle.cs │ ├── WowToy.cs │ ├── WowTransmogSet.cs │ └── WowWorldQuest.cs ├── Repositories └── JobRepository.cs ├── Services └── CacheService.cs ├── Utilities ├── EnumUtilities.cs ├── JankTimer.cs ├── LuaToJsonConverter.cs ├── LuaToJsonConverter2.cs ├── LuaToJsonConverter3.cs ├── LuaToJsonConverter4.cs ├── PredicateBuilder.cs ├── RedisUtilities.cs ├── SerializationUtilities.cs └── SquishUtilities.cs ├── Wowthing.Lib.csproj └── project.json /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/build-and-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/.github/workflows/build-and-deploy.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/README.md -------------------------------------------------------------------------------- /Wowthing.All.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/Wowthing.All.sln -------------------------------------------------------------------------------- /Wowthing.Backend.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/Wowthing.Backend.sln -------------------------------------------------------------------------------- /Wowthing.Web.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/Wowthing.Web.sln -------------------------------------------------------------------------------- /_magic/k8s-deployment-backend.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/_magic/k8s-deployment-backend.yml -------------------------------------------------------------------------------- /_magic/k8s-deployment-web.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/_magic/k8s-deployment-web.yml -------------------------------------------------------------------------------- /apps/backend/Data/IgnoredAuctionItemIds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/backend/Data/IgnoredAuctionItemIds.cs -------------------------------------------------------------------------------- /apps/backend/Data/Quests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/backend/Data/Quests.cs -------------------------------------------------------------------------------- /apps/backend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/backend/Dockerfile -------------------------------------------------------------------------------- /apps/backend/Enums/WowItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/backend/Enums/WowItem.cs -------------------------------------------------------------------------------- /apps/backend/Extensions/IHostExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/backend/Extensions/IHostExtensions.cs -------------------------------------------------------------------------------- /apps/backend/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/backend/GlobalUsings.cs -------------------------------------------------------------------------------- /apps/backend/Jobs/Character/CharacterJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/backend/Jobs/Character/CharacterJob.cs -------------------------------------------------------------------------------- /apps/backend/Jobs/Data/DataAuctionsJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/backend/Jobs/Data/DataAuctionsJob.cs -------------------------------------------------------------------------------- /apps/backend/Jobs/Data/DataQuestJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/backend/Jobs/Data/DataQuestJob.cs -------------------------------------------------------------------------------- /apps/backend/Jobs/Data/DataQuestsStartJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/backend/Jobs/Data/DataQuestsStartJob.cs -------------------------------------------------------------------------------- /apps/backend/Jobs/Data/DataRealmIndexJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/backend/Jobs/Data/DataRealmIndexJob.cs -------------------------------------------------------------------------------- /apps/backend/Jobs/IJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/backend/Jobs/IJob.cs -------------------------------------------------------------------------------- /apps/backend/Jobs/IScheduledJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/backend/Jobs/IScheduledJob.cs -------------------------------------------------------------------------------- /apps/backend/Jobs/JobBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/backend/Jobs/JobBase.cs -------------------------------------------------------------------------------- /apps/backend/Jobs/JobFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/backend/Jobs/JobFactory.cs -------------------------------------------------------------------------------- /apps/backend/Jobs/Misc/ImageJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/backend/Jobs/Misc/ImageJob.cs -------------------------------------------------------------------------------- /apps/backend/Jobs/ScheduledJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/backend/Jobs/ScheduledJob.cs -------------------------------------------------------------------------------- /apps/backend/Jobs/User/UserBulkDataJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/backend/Jobs/User/UserBulkDataJob.cs -------------------------------------------------------------------------------- /apps/backend/Jobs/User/UserCacheMountsJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/backend/Jobs/User/UserCacheMountsJob.cs -------------------------------------------------------------------------------- /apps/backend/Jobs/User/UserCacheQuestsJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/backend/Jobs/User/UserCacheQuestsJob.cs -------------------------------------------------------------------------------- /apps/backend/Jobs/User/UserCharactersJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/backend/Jobs/User/UserCharactersJob.cs -------------------------------------------------------------------------------- /apps/backend/Jobs/User/UserUploadJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/backend/Jobs/User/UserUploadJob.cs -------------------------------------------------------------------------------- /apps/backend/Metrics/JobMetrics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/backend/Metrics/JobMetrics.cs -------------------------------------------------------------------------------- /apps/backend/Models/API/ApiAccessToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/backend/Models/API/ApiAccessToken.cs -------------------------------------------------------------------------------- /apps/backend/Models/API/ApiGenderString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/backend/Models/API/ApiGenderString.cs -------------------------------------------------------------------------------- /apps/backend/Models/API/ApiKeyValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/backend/Models/API/ApiKeyValue.cs -------------------------------------------------------------------------------- /apps/backend/Models/API/ApiNamespace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/backend/Models/API/ApiNamespace.cs -------------------------------------------------------------------------------- /apps/backend/Models/API/ApiObnoxiousHref.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/backend/Models/API/ApiObnoxiousHref.cs -------------------------------------------------------------------------------- /apps/backend/Models/API/ApiObnoxiousObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/backend/Models/API/ApiObnoxiousObject.cs -------------------------------------------------------------------------------- /apps/backend/Models/API/ApiTypeId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/backend/Models/API/ApiTypeId.cs -------------------------------------------------------------------------------- /apps/backend/Models/API/ApiTypeName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/backend/Models/API/ApiTypeName.cs -------------------------------------------------------------------------------- /apps/backend/Models/API/ApiTypeValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/backend/Models/API/ApiTypeValue.cs -------------------------------------------------------------------------------- /apps/backend/Models/API/ApiValueDisplay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/backend/Models/API/ApiValueDisplay.cs -------------------------------------------------------------------------------- /apps/backend/Models/API/Data/ApiDataQuest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/backend/Models/API/Data/ApiDataQuest.cs -------------------------------------------------------------------------------- /apps/backend/Models/API/User/ApiUserMounts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/backend/Models/API/User/ApiUserMounts.cs -------------------------------------------------------------------------------- /apps/backend/Models/API/User/ApiUserPets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/backend/Models/API/User/ApiUserPets.cs -------------------------------------------------------------------------------- /apps/backend/Models/API/User/ApiUserToys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/backend/Models/API/User/ApiUserToys.cs -------------------------------------------------------------------------------- /apps/backend/Models/BattleNetOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/backend/Models/BattleNetOptions.cs -------------------------------------------------------------------------------- /apps/backend/Models/Cache/ItemBonusCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/backend/Models/Cache/ItemBonusCache.cs -------------------------------------------------------------------------------- /apps/backend/Models/ExtraEncounter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/backend/Models/ExtraEncounter.cs -------------------------------------------------------------------------------- /apps/backend/Models/JobHttpResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/backend/Models/JobHttpResult.cs -------------------------------------------------------------------------------- /apps/backend/Models/Redis/RedisAccessToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/backend/Models/Redis/RedisAccessToken.cs -------------------------------------------------------------------------------- /apps/backend/Models/Uploads/Upload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/backend/Models/Uploads/Upload.cs -------------------------------------------------------------------------------- /apps/backend/Models/Uploads/UploadGuild.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/backend/Models/Uploads/UploadGuild.cs -------------------------------------------------------------------------------- /apps/backend/Models/Uploads/UploadWarbank.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/backend/Models/Uploads/UploadWarbank.cs -------------------------------------------------------------------------------- /apps/backend/Models/WowthingBackendOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/backend/Models/WowthingBackendOptions.cs -------------------------------------------------------------------------------- /apps/backend/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/backend/Program.cs -------------------------------------------------------------------------------- /apps/backend/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/backend/Properties/launchSettings.json -------------------------------------------------------------------------------- /apps/backend/Services/AuthorizationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/backend/Services/AuthorizationService.cs -------------------------------------------------------------------------------- /apps/backend/Services/Base/TimerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/backend/Services/Base/TimerService.cs -------------------------------------------------------------------------------- /apps/backend/Services/GarbageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/backend/Services/GarbageService.cs -------------------------------------------------------------------------------- /apps/backend/Services/GoldSnapshotService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/backend/Services/GoldSnapshotService.cs -------------------------------------------------------------------------------- /apps/backend/Services/JobQueueService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/backend/Services/JobQueueService.cs -------------------------------------------------------------------------------- /apps/backend/Services/MemoryCacheService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/backend/Services/MemoryCacheService.cs -------------------------------------------------------------------------------- /apps/backend/Services/SchedulerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/backend/Services/SchedulerService.cs -------------------------------------------------------------------------------- /apps/backend/Services/StateService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/backend/Services/StateService.cs -------------------------------------------------------------------------------- /apps/backend/Services/WorkerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/backend/Services/WorkerService.cs -------------------------------------------------------------------------------- /apps/backend/Wowthing.Backend.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/backend/Wowthing.Backend.csproj -------------------------------------------------------------------------------- /apps/backend/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/backend/appsettings.Development.json -------------------------------------------------------------------------------- /apps/backend/appsettings.Production.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/backend/appsettings.Production.json -------------------------------------------------------------------------------- /apps/backend/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/backend/appsettings.json -------------------------------------------------------------------------------- /apps/backend/development.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/backend/development.Dockerfile -------------------------------------------------------------------------------- /apps/backend/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/backend/project.json -------------------------------------------------------------------------------- /apps/benchmark/.gitignore: -------------------------------------------------------------------------------- 1 | BenchmarkDotNet.Artifacts/ 2 | -------------------------------------------------------------------------------- /apps/benchmark/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/benchmark/Program.cs -------------------------------------------------------------------------------- /apps/benchmark/Wowthing.Benchmark.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/benchmark/Wowthing.Benchmark.csproj -------------------------------------------------------------------------------- /apps/discord/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/discord/Program.cs -------------------------------------------------------------------------------- /apps/discord/Wowthing.Discord.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/discord/Wowthing.Discord.csproj -------------------------------------------------------------------------------- /apps/frontend/.prettierignore: -------------------------------------------------------------------------------- 1 | scss/ 2 | -------------------------------------------------------------------------------- /apps/frontend/admin/Main.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/admin/Main.svelte -------------------------------------------------------------------------------- /apps/frontend/admin/Routes.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/admin/Routes.svelte -------------------------------------------------------------------------------- /apps/frontend/admin/Sidebar.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/admin/Sidebar.svelte -------------------------------------------------------------------------------- /apps/frontend/admin/admin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/admin/admin.ts -------------------------------------------------------------------------------- /apps/frontend/apps/teams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/apps/teams.ts -------------------------------------------------------------------------------- /apps/frontend/apps/teams/AppTeams.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/apps/teams/AppTeams.svelte -------------------------------------------------------------------------------- /apps/frontend/auctions/Main.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/auctions/Main.svelte -------------------------------------------------------------------------------- /apps/frontend/auctions/Routes.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/auctions/Routes.svelte -------------------------------------------------------------------------------- /apps/frontend/auctions/Sidebar.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/auctions/Sidebar.svelte -------------------------------------------------------------------------------- /apps/frontend/auctions/auctions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/auctions/auctions.ts -------------------------------------------------------------------------------- /apps/frontend/auctions/stores/specific.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/auctions/stores/specific.ts -------------------------------------------------------------------------------- /apps/frontend/auctions/stores/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/auctions/stores/state.ts -------------------------------------------------------------------------------- /apps/frontend/auctions/types/auction-entry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/auctions/types/auction-entry.ts -------------------------------------------------------------------------------- /apps/frontend/components/common/Error.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/components/common/Error.svelte -------------------------------------------------------------------------------- /apps/frontend/components/explore/Chett.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/components/explore/Chett.svelte -------------------------------------------------------------------------------- /apps/frontend/components/items/Items.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/components/items/Items.svelte -------------------------------------------------------------------------------- /apps/frontend/components/team/Gear.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/components/team/Gear.svelte -------------------------------------------------------------------------------- /apps/frontend/components/team/Team.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/components/team/Team.svelte -------------------------------------------------------------------------------- /apps/frontend/components/teams/Teams.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/components/teams/Teams.svelte -------------------------------------------------------------------------------- /apps/frontend/components/tooltips/zone-maps/TooltipZoneMapsVendor.svelte: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/frontend/components/vendors/Thing.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/components/vendors/Thing.svelte -------------------------------------------------------------------------------- /apps/frontend/data/achievements.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/data/achievements.ts -------------------------------------------------------------------------------- /apps/frontend/data/auctions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/data/auctions.ts -------------------------------------------------------------------------------- /apps/frontend/data/backgrounds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/data/backgrounds.ts -------------------------------------------------------------------------------- /apps/frontend/data/bag-slots.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/data/bag-slots.ts -------------------------------------------------------------------------------- /apps/frontend/data/character-class.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/data/character-class.ts -------------------------------------------------------------------------------- /apps/frontend/data/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/data/colors.ts -------------------------------------------------------------------------------- /apps/frontend/data/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/data/constants.ts -------------------------------------------------------------------------------- /apps/frontend/data/covenant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/data/covenant.ts -------------------------------------------------------------------------------- /apps/frontend/data/crafted-gear.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/data/crafted-gear.ts -------------------------------------------------------------------------------- /apps/frontend/data/currencies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/data/currencies.ts -------------------------------------------------------------------------------- /apps/frontend/data/difficulty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/data/difficulty.ts -------------------------------------------------------------------------------- /apps/frontend/data/dungeon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/data/dungeon.ts -------------------------------------------------------------------------------- /apps/frontend/data/expansion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/data/expansion.ts -------------------------------------------------------------------------------- /apps/frontend/data/experience.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/data/experience.ts -------------------------------------------------------------------------------- /apps/frontend/data/faction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/data/faction.ts -------------------------------------------------------------------------------- /apps/frontend/data/garrison.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/data/garrison.ts -------------------------------------------------------------------------------- /apps/frontend/data/gear.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/data/gear.ts -------------------------------------------------------------------------------- /apps/frontend/data/gems.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/data/gems.ts -------------------------------------------------------------------------------- /apps/frontend/data/holidays.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/data/holidays.ts -------------------------------------------------------------------------------- /apps/frontend/data/icons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/data/icons.ts -------------------------------------------------------------------------------- /apps/frontend/data/inventory-slot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/data/inventory-slot.ts -------------------------------------------------------------------------------- /apps/frontend/data/inventory-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/data/inventory-type.ts -------------------------------------------------------------------------------- /apps/frontend/data/item-level-quality.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/data/item-level-quality.ts -------------------------------------------------------------------------------- /apps/frontend/data/item-modifier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/data/item-modifier.ts -------------------------------------------------------------------------------- /apps/frontend/data/journal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/data/journal.ts -------------------------------------------------------------------------------- /apps/frontend/data/mythic-plus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/data/mythic-plus.ts -------------------------------------------------------------------------------- /apps/frontend/data/nav.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/data/nav.ts -------------------------------------------------------------------------------- /apps/frontend/data/pet-breed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/data/pet-breed.ts -------------------------------------------------------------------------------- /apps/frontend/data/professions/alchemy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/data/professions/alchemy.ts -------------------------------------------------------------------------------- /apps/frontend/data/professions/cooking.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/data/professions/cooking.ts -------------------------------------------------------------------------------- /apps/frontend/data/professions/cooldowns.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/data/professions/cooldowns.ts -------------------------------------------------------------------------------- /apps/frontend/data/professions/enchanting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/data/professions/enchanting.ts -------------------------------------------------------------------------------- /apps/frontend/data/professions/engineering.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/data/professions/engineering.ts -------------------------------------------------------------------------------- /apps/frontend/data/professions/fishing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/data/professions/fishing.ts -------------------------------------------------------------------------------- /apps/frontend/data/professions/herbalism.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/data/professions/herbalism.ts -------------------------------------------------------------------------------- /apps/frontend/data/professions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/data/professions/index.ts -------------------------------------------------------------------------------- /apps/frontend/data/professions/inscription.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/data/professions/inscription.ts -------------------------------------------------------------------------------- /apps/frontend/data/professions/knowledge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/data/professions/knowledge.ts -------------------------------------------------------------------------------- /apps/frontend/data/professions/mining.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/data/professions/mining.ts -------------------------------------------------------------------------------- /apps/frontend/data/professions/professions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/data/professions/professions.ts -------------------------------------------------------------------------------- /apps/frontend/data/professions/skinning.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/data/professions/skinning.ts -------------------------------------------------------------------------------- /apps/frontend/data/professions/tailoring.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/data/professions/tailoring.ts -------------------------------------------------------------------------------- /apps/frontend/data/professions/zone.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/data/professions/zone.ts -------------------------------------------------------------------------------- /apps/frontend/data/quests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/data/quests.ts -------------------------------------------------------------------------------- /apps/frontend/data/raid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/data/raid.ts -------------------------------------------------------------------------------- /apps/frontend/data/raider-io.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/data/raider-io.ts -------------------------------------------------------------------------------- /apps/frontend/data/region.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/data/region.ts -------------------------------------------------------------------------------- /apps/frontend/data/reputation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/data/reputation.ts -------------------------------------------------------------------------------- /apps/frontend/data/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/data/settings.ts -------------------------------------------------------------------------------- /apps/frontend/data/spells.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/data/spells.ts -------------------------------------------------------------------------------- /apps/frontend/data/talents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/data/talents.ts -------------------------------------------------------------------------------- /apps/frontend/data/tasks/events/bonus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/data/tasks/events/bonus.ts -------------------------------------------------------------------------------- /apps/frontend/data/tasks/events/brewfest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/data/tasks/events/brewfest.ts -------------------------------------------------------------------------------- /apps/frontend/data/tasks/events/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/data/tasks/events/index.ts -------------------------------------------------------------------------------- /apps/frontend/data/tasks/events/remix.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/data/tasks/events/remix.ts -------------------------------------------------------------------------------- /apps/frontend/data/tasks/holidays.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/data/tasks/holidays.ts -------------------------------------------------------------------------------- /apps/frontend/data/tasks/index.ts: -------------------------------------------------------------------------------- 1 | export * from './task-list'; 2 | -------------------------------------------------------------------------------- /apps/frontend/data/tasks/old-events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/data/tasks/old-events.ts -------------------------------------------------------------------------------- /apps/frontend/data/tasks/old.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/data/tasks/old.ts -------------------------------------------------------------------------------- /apps/frontend/data/tasks/pvp/brawl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/data/tasks/pvp/brawl.ts -------------------------------------------------------------------------------- /apps/frontend/data/tasks/pvp/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/data/tasks/pvp/index.ts -------------------------------------------------------------------------------- /apps/frontend/data/tasks/shadowlands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/data/tasks/shadowlands.ts -------------------------------------------------------------------------------- /apps/frontend/data/tasks/task-list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/data/tasks/task-list.ts -------------------------------------------------------------------------------- /apps/frontend/data/transmog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/data/transmog.ts -------------------------------------------------------------------------------- /apps/frontend/data/vendors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/data/vendors.ts -------------------------------------------------------------------------------- /apps/frontend/data/weapons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/data/weapons.ts -------------------------------------------------------------------------------- /apps/frontend/data/zones.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/data/zones.ts -------------------------------------------------------------------------------- /apps/frontend/development.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/development.Dockerfile -------------------------------------------------------------------------------- /apps/frontend/enums/appearance-modifier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/enums/appearance-modifier.ts -------------------------------------------------------------------------------- /apps/frontend/enums/armor-subclass.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/enums/armor-subclass.ts -------------------------------------------------------------------------------- /apps/frontend/enums/armor-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/enums/armor-type.ts -------------------------------------------------------------------------------- /apps/frontend/enums/bind-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/enums/bind-type.ts -------------------------------------------------------------------------------- /apps/frontend/enums/character-flag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/enums/character-flag.ts -------------------------------------------------------------------------------- /apps/frontend/enums/chromie-time.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/enums/chromie-time.ts -------------------------------------------------------------------------------- /apps/frontend/enums/criteria-tree-operator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/enums/criteria-tree-operator.ts -------------------------------------------------------------------------------- /apps/frontend/enums/criteria-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/enums/criteria-type.ts -------------------------------------------------------------------------------- /apps/frontend/enums/currency-flags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/enums/currency-flags.ts -------------------------------------------------------------------------------- /apps/frontend/enums/faction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/enums/faction.ts -------------------------------------------------------------------------------- /apps/frontend/enums/farm-anchor-point.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/enums/farm-anchor-point.ts -------------------------------------------------------------------------------- /apps/frontend/enums/farm-id-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/enums/farm-id-type.ts -------------------------------------------------------------------------------- /apps/frontend/enums/farm-reset-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/enums/farm-reset-type.ts -------------------------------------------------------------------------------- /apps/frontend/enums/farm-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/enums/farm-type.ts -------------------------------------------------------------------------------- /apps/frontend/enums/gender.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/enums/gender.ts -------------------------------------------------------------------------------- /apps/frontend/enums/holiday.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/enums/holiday.ts -------------------------------------------------------------------------------- /apps/frontend/enums/instance-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/enums/instance-type.ts -------------------------------------------------------------------------------- /apps/frontend/enums/inventory-slot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/enums/inventory-slot.ts -------------------------------------------------------------------------------- /apps/frontend/enums/inventory-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/enums/inventory-type.ts -------------------------------------------------------------------------------- /apps/frontend/enums/item-bonus-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/enums/item-bonus-type.ts -------------------------------------------------------------------------------- /apps/frontend/enums/item-class.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/enums/item-class.ts -------------------------------------------------------------------------------- /apps/frontend/enums/item-flags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/enums/item-flags.ts -------------------------------------------------------------------------------- /apps/frontend/enums/item-location.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/enums/item-location.ts -------------------------------------------------------------------------------- /apps/frontend/enums/item-quality.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/enums/item-quality.ts -------------------------------------------------------------------------------- /apps/frontend/enums/item-redundancy-slot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/enums/item-redundancy-slot.ts -------------------------------------------------------------------------------- /apps/frontend/enums/language.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/enums/language.ts -------------------------------------------------------------------------------- /apps/frontend/enums/lookup-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/enums/lookup-type.ts -------------------------------------------------------------------------------- /apps/frontend/enums/mythic-plus-score-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/enums/mythic-plus-score-type.ts -------------------------------------------------------------------------------- /apps/frontend/enums/pet-flags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/enums/pet-flags.ts -------------------------------------------------------------------------------- /apps/frontend/enums/playable-class.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/enums/playable-class.ts -------------------------------------------------------------------------------- /apps/frontend/enums/primary-stat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/enums/primary-stat.ts -------------------------------------------------------------------------------- /apps/frontend/enums/profession-subclass.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/enums/profession-subclass.ts -------------------------------------------------------------------------------- /apps/frontend/enums/profession.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/enums/profession.ts -------------------------------------------------------------------------------- /apps/frontend/enums/progress-data-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/enums/progress-data-type.ts -------------------------------------------------------------------------------- /apps/frontend/enums/quest-status.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/enums/quest-status.ts -------------------------------------------------------------------------------- /apps/frontend/enums/region.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/enums/region.ts -------------------------------------------------------------------------------- /apps/frontend/enums/reward-reputation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/enums/reward-reputation.ts -------------------------------------------------------------------------------- /apps/frontend/enums/reward-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/enums/reward-type.ts -------------------------------------------------------------------------------- /apps/frontend/enums/role.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/enums/role.ts -------------------------------------------------------------------------------- /apps/frontend/enums/skill-source-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/enums/skill-source-type.ts -------------------------------------------------------------------------------- /apps/frontend/enums/stat-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/enums/stat-type.ts -------------------------------------------------------------------------------- /apps/frontend/enums/transmog-set-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/enums/transmog-set-type.ts -------------------------------------------------------------------------------- /apps/frontend/enums/typed-array.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/enums/typed-array.ts -------------------------------------------------------------------------------- /apps/frontend/enums/weapon-subclass.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/enums/weapon-subclass.ts -------------------------------------------------------------------------------- /apps/frontend/enums/weapon-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/enums/weapon-type.ts -------------------------------------------------------------------------------- /apps/frontend/enums/wow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/enums/wow.ts -------------------------------------------------------------------------------- /apps/frontend/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/eslint.config.js -------------------------------------------------------------------------------- /apps/frontend/leaderboards/Main.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/leaderboards/Main.svelte -------------------------------------------------------------------------------- /apps/frontend/leaderboards/Routes.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/leaderboards/Routes.svelte -------------------------------------------------------------------------------- /apps/frontend/leaderboards/leaderboards.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/leaderboards/leaderboards.ts -------------------------------------------------------------------------------- /apps/frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/package-lock.json -------------------------------------------------------------------------------- /apps/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/package.json -------------------------------------------------------------------------------- /apps/frontend/prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/prettier.config.js -------------------------------------------------------------------------------- /apps/frontend/run_dev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/run_dev.sh -------------------------------------------------------------------------------- /apps/frontend/scss/character-table.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/scss/character-table.scss -------------------------------------------------------------------------------- /apps/frontend/scss/collections-v2.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/scss/collections-v2.scss -------------------------------------------------------------------------------- /apps/frontend/scss/collections.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/scss/collections.scss -------------------------------------------------------------------------------- /apps/frontend/scss/colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/scss/colors.scss -------------------------------------------------------------------------------- /apps/frontend/scss/container.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/scss/container.scss -------------------------------------------------------------------------------- /apps/frontend/scss/core.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/scss/core.scss -------------------------------------------------------------------------------- /apps/frontend/scss/error.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/scss/error.scss -------------------------------------------------------------------------------- /apps/frontend/scss/forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/scss/forms.scss -------------------------------------------------------------------------------- /apps/frontend/scss/global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/scss/global.scss -------------------------------------------------------------------------------- /apps/frontend/scss/hacks.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/scss/hacks.scss -------------------------------------------------------------------------------- /apps/frontend/scss/landing-page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/scss/landing-page.scss -------------------------------------------------------------------------------- /apps/frontend/scss/layout/auctions-table.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/scss/layout/auctions-table.scss -------------------------------------------------------------------------------- /apps/frontend/scss/layout/search-table.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/scss/layout/search-table.scss -------------------------------------------------------------------------------- /apps/frontend/scss/layout/split-icon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/scss/layout/split-icon.scss -------------------------------------------------------------------------------- /apps/frontend/scss/layout/subnav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/scss/layout/subnav.scss -------------------------------------------------------------------------------- /apps/frontend/scss/layout/view.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/scss/layout/view.scss -------------------------------------------------------------------------------- /apps/frontend/scss/layout/wrapper.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/scss/layout/wrapper.scss -------------------------------------------------------------------------------- /apps/frontend/scss/options.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/scss/options.scss -------------------------------------------------------------------------------- /apps/frontend/scss/reputation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/scss/reputation.scss -------------------------------------------------------------------------------- /apps/frontend/scss/sanitize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/scss/sanitize.scss -------------------------------------------------------------------------------- /apps/frontend/scss/sanitize/assets.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/scss/sanitize/assets.css -------------------------------------------------------------------------------- /apps/frontend/scss/sanitize/forms.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/scss/sanitize/forms.css -------------------------------------------------------------------------------- /apps/frontend/scss/sanitize/page.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/scss/sanitize/page.css -------------------------------------------------------------------------------- /apps/frontend/scss/sanitize/reduce-motion.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/scss/sanitize/reduce-motion.css -------------------------------------------------------------------------------- /apps/frontend/scss/sanitize/sanitize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/scss/sanitize/sanitize.css -------------------------------------------------------------------------------- /apps/frontend/scss/sanitize/typography.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/scss/sanitize/typography.css -------------------------------------------------------------------------------- /apps/frontend/scss/settings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/scss/settings.scss -------------------------------------------------------------------------------- /apps/frontend/scss/table.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/scss/table.scss -------------------------------------------------------------------------------- /apps/frontend/scss/tippy.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/scss/tippy.scss -------------------------------------------------------------------------------- /apps/frontend/scss/tooltips.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/scss/tooltips.scss -------------------------------------------------------------------------------- /apps/frontend/scss/tooltips/lockout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/scss/tooltips/lockout.scss -------------------------------------------------------------------------------- /apps/frontend/scss/tooltips/mythic-plus.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/scss/tooltips/mythic-plus.scss -------------------------------------------------------------------------------- /apps/frontend/scss/tooltips/vault.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/scss/tooltips/vault.scss -------------------------------------------------------------------------------- /apps/frontend/scss/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/scss/variables.scss -------------------------------------------------------------------------------- /apps/frontend/scss/wow.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/scss/wow.scss -------------------------------------------------------------------------------- /apps/frontend/scss/wowhead.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/scss/wowhead.scss -------------------------------------------------------------------------------- /apps/frontend/shared/icons/components.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/shared/icons/components.ts -------------------------------------------------------------------------------- /apps/frontend/shared/icons/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/shared/icons/index.ts -------------------------------------------------------------------------------- /apps/frontend/shared/icons/library.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/shared/icons/library.ts -------------------------------------------------------------------------------- /apps/frontend/shared/icons/mappings/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/shared/icons/mappings/index.ts -------------------------------------------------------------------------------- /apps/frontend/shared/icons/ui.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/shared/icons/ui.ts -------------------------------------------------------------------------------- /apps/frontend/shared/state/browser.svelte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/shared/state/browser.svelte.ts -------------------------------------------------------------------------------- /apps/frontend/shared/state/settings.svelte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/shared/state/settings.svelte.ts -------------------------------------------------------------------------------- /apps/frontend/shared/state/shared.svelte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/shared/state/shared.svelte.ts -------------------------------------------------------------------------------- /apps/frontend/shared/state/time.svelte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/shared/state/time.svelte.ts -------------------------------------------------------------------------------- /apps/frontend/shared/stores/data/db/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/shared/stores/data/db/types.ts -------------------------------------------------------------------------------- /apps/frontend/shared/stores/data/index.ts: -------------------------------------------------------------------------------- 1 | export * from './store.svelte'; 2 | -------------------------------------------------------------------------------- /apps/frontend/shared/stores/db/enums/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/shared/stores/db/enums/index.ts -------------------------------------------------------------------------------- /apps/frontend/shared/stores/db/index.ts: -------------------------------------------------------------------------------- 1 | export * from './store'; 2 | -------------------------------------------------------------------------------- /apps/frontend/shared/stores/db/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/shared/stores/db/store.ts -------------------------------------------------------------------------------- /apps/frontend/shared/stores/db/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/shared/stores/db/types/index.ts -------------------------------------------------------------------------------- /apps/frontend/shared/stores/db/types/query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/shared/stores/db/types/query.ts -------------------------------------------------------------------------------- /apps/frontend/shared/stores/db/types/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/shared/stores/db/types/store.ts -------------------------------------------------------------------------------- /apps/frontend/shared/stores/db/types/thing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/shared/stores/db/types/thing.ts -------------------------------------------------------------------------------- /apps/frontend/shared/stores/static/index.ts: -------------------------------------------------------------------------------- 1 | export * from './store'; 2 | -------------------------------------------------------------------------------- /apps/frontend/shared/stores/static/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/shared/stores/static/store.ts -------------------------------------------------------------------------------- /apps/frontend/shared/stores/time/index.ts: -------------------------------------------------------------------------------- 1 | export * from './store'; 2 | -------------------------------------------------------------------------------- /apps/frontend/shared/stores/time/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/shared/stores/time/store.ts -------------------------------------------------------------------------------- /apps/frontend/shared/utils/tooltips/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/shared/utils/tooltips/index.ts -------------------------------------------------------------------------------- /apps/frontend/shared/utils/tooltips/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/shared/utils/tooltips/types.ts -------------------------------------------------------------------------------- /apps/frontend/stores/achievements.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/stores/achievements.ts -------------------------------------------------------------------------------- /apps/frontend/stores/auction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/stores/auction.ts -------------------------------------------------------------------------------- /apps/frontend/stores/character-settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/stores/character-settings.ts -------------------------------------------------------------------------------- /apps/frontend/stores/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/stores/index.ts -------------------------------------------------------------------------------- /apps/frontend/stores/item-search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/stores/item-search.ts -------------------------------------------------------------------------------- /apps/frontend/stores/lazy/achievements.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/stores/lazy/achievements.ts -------------------------------------------------------------------------------- /apps/frontend/stores/lazy/character.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/stores/lazy/character.ts -------------------------------------------------------------------------------- /apps/frontend/stores/lazy/index.ts: -------------------------------------------------------------------------------- 1 | export * from './store'; 2 | -------------------------------------------------------------------------------- /apps/frontend/stores/lazy/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/stores/lazy/store.ts -------------------------------------------------------------------------------- /apps/frontend/stores/local-storage/history.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/stores/local-storage/history.ts -------------------------------------------------------------------------------- /apps/frontend/stores/local-storage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/stores/local-storage/index.ts -------------------------------------------------------------------------------- /apps/frontend/stores/local-storage/new-nav.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/stores/local-storage/new-nav.ts -------------------------------------------------------------------------------- /apps/frontend/stores/parsed-text.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/stores/parsed-text.ts -------------------------------------------------------------------------------- /apps/frontend/stores/team.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/stores/team.ts -------------------------------------------------------------------------------- /apps/frontend/stores/user-achievements.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/stores/user-achievements.ts -------------------------------------------------------------------------------- /apps/frontend/stores/user-auctions/fixme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/stores/user-auctions/fixme.ts -------------------------------------------------------------------------------- /apps/frontend/stores/user-auctions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/stores/user-auctions/index.ts -------------------------------------------------------------------------------- /apps/frontend/stores/user-history.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/stores/user-history.ts -------------------------------------------------------------------------------- /apps/frontend/stores/user-modified.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/stores/user-modified.ts -------------------------------------------------------------------------------- /apps/frontend/stores/user-quests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/stores/user-quests.ts -------------------------------------------------------------------------------- /apps/frontend/stores/user-teams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/stores/user-teams.ts -------------------------------------------------------------------------------- /apps/frontend/stores/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/stores/user.ts -------------------------------------------------------------------------------- /apps/frontend/svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/svelte.config.js -------------------------------------------------------------------------------- /apps/frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/tsconfig.json -------------------------------------------------------------------------------- /apps/frontend/types/account.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/types/account.ts -------------------------------------------------------------------------------- /apps/frontend/types/achievement-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/types/achievement-data.ts -------------------------------------------------------------------------------- /apps/frontend/types/background-image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/types/background-image.ts -------------------------------------------------------------------------------- /apps/frontend/types/character-race.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/types/character-race.ts -------------------------------------------------------------------------------- /apps/frontend/types/character/aura.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/types/character/aura.ts -------------------------------------------------------------------------------- /apps/frontend/types/character/currency.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/types/character/currency.ts -------------------------------------------------------------------------------- /apps/frontend/types/character/fixme.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/frontend/types/character/garrison.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/types/character/garrison.ts -------------------------------------------------------------------------------- /apps/frontend/types/character/gear.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/types/character/gear.ts -------------------------------------------------------------------------------- /apps/frontend/types/character/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/types/character/index.ts -------------------------------------------------------------------------------- /apps/frontend/types/character/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/types/character/item.ts -------------------------------------------------------------------------------- /apps/frontend/types/character/lockout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/types/character/lockout.ts -------------------------------------------------------------------------------- /apps/frontend/types/character/mythic-plus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/types/character/mythic-plus.ts -------------------------------------------------------------------------------- /apps/frontend/types/character/patron-order.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/types/character/patron-order.ts -------------------------------------------------------------------------------- /apps/frontend/types/character/reputation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/types/character/reputation.ts -------------------------------------------------------------------------------- /apps/frontend/types/character/shadowlands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/types/character/shadowlands.ts -------------------------------------------------------------------------------- /apps/frontend/types/character/statistics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/types/character/statistics.ts -------------------------------------------------------------------------------- /apps/frontend/types/contexts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/types/contexts.ts -------------------------------------------------------------------------------- /apps/frontend/types/covenant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/types/covenant.ts -------------------------------------------------------------------------------- /apps/frontend/types/data/appearance/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/types/data/appearance/index.ts -------------------------------------------------------------------------------- /apps/frontend/types/data/appearance/set.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/types/data/appearance/set.ts -------------------------------------------------------------------------------- /apps/frontend/types/data/auction/category.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/types/data/auction/category.ts -------------------------------------------------------------------------------- /apps/frontend/types/data/auction/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/types/data/auction/index.ts -------------------------------------------------------------------------------- /apps/frontend/types/data/auction/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/types/data/auction/store.ts -------------------------------------------------------------------------------- /apps/frontend/types/data/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/types/data/index.ts -------------------------------------------------------------------------------- /apps/frontend/types/data/item/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/types/data/item/index.ts -------------------------------------------------------------------------------- /apps/frontend/types/data/item/item-bonus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/types/data/item/item-bonus.ts -------------------------------------------------------------------------------- /apps/frontend/types/data/item/item-set.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/types/data/item/item-set.ts -------------------------------------------------------------------------------- /apps/frontend/types/data/item/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/types/data/item/item.ts -------------------------------------------------------------------------------- /apps/frontend/types/data/item/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/types/data/item/store.ts -------------------------------------------------------------------------------- /apps/frontend/types/data/journal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/types/data/journal.ts -------------------------------------------------------------------------------- /apps/frontend/types/data/manual/heirloom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/types/data/manual/heirloom.ts -------------------------------------------------------------------------------- /apps/frontend/types/data/manual/illusion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/types/data/manual/illusion.ts -------------------------------------------------------------------------------- /apps/frontend/types/data/manual/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/types/data/manual/index.ts -------------------------------------------------------------------------------- /apps/frontend/types/data/manual/progress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/types/data/manual/progress.ts -------------------------------------------------------------------------------- /apps/frontend/types/data/manual/set.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/types/data/manual/set.ts -------------------------------------------------------------------------------- /apps/frontend/types/data/manual/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/types/data/manual/store.ts -------------------------------------------------------------------------------- /apps/frontend/types/data/manual/transmog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/types/data/manual/transmog.ts -------------------------------------------------------------------------------- /apps/frontend/types/data/manual/zone-map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/types/data/manual/zone-map.ts -------------------------------------------------------------------------------- /apps/frontend/types/data/professions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/types/data/professions.ts -------------------------------------------------------------------------------- /apps/frontend/types/data/quests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/types/data/quests.ts -------------------------------------------------------------------------------- /apps/frontend/types/data/user-auctions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/types/data/user-auctions.ts -------------------------------------------------------------------------------- /apps/frontend/types/data/user-history.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/types/data/user-history.ts -------------------------------------------------------------------------------- /apps/frontend/types/data/user-item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/types/data/user-item.ts -------------------------------------------------------------------------------- /apps/frontend/types/data/user-quest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/types/data/user-quest.ts -------------------------------------------------------------------------------- /apps/frontend/types/data/user-team.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/types/data/user-team.ts -------------------------------------------------------------------------------- /apps/frontend/types/difficulty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/types/difficulty.ts -------------------------------------------------------------------------------- /apps/frontend/types/dungeon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/types/dungeon.ts -------------------------------------------------------------------------------- /apps/frontend/types/expansion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/types/expansion.ts -------------------------------------------------------------------------------- /apps/frontend/types/fancy-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/types/fancy-store.ts -------------------------------------------------------------------------------- /apps/frontend/types/garrison.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/types/garrison.ts -------------------------------------------------------------------------------- /apps/frontend/types/guild/guild.svelte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/types/guild/guild.svelte.ts -------------------------------------------------------------------------------- /apps/frontend/types/guild/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/types/guild/index.ts -------------------------------------------------------------------------------- /apps/frontend/types/guild/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/types/guild/item.ts -------------------------------------------------------------------------------- /apps/frontend/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/types/index.ts -------------------------------------------------------------------------------- /apps/frontend/types/items/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/types/items/index.ts -------------------------------------------------------------------------------- /apps/frontend/types/items/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/types/items/search.ts -------------------------------------------------------------------------------- /apps/frontend/types/items/warbank.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/types/items/warbank.ts -------------------------------------------------------------------------------- /apps/frontend/types/mythic-plus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/types/mythic-plus.ts -------------------------------------------------------------------------------- /apps/frontend/types/params.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/types/params.ts -------------------------------------------------------------------------------- /apps/frontend/types/profession-cooldown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/types/profession-cooldown.ts -------------------------------------------------------------------------------- /apps/frontend/types/props.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/types/props.ts -------------------------------------------------------------------------------- /apps/frontend/types/reputation-tier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/types/reputation-tier.ts -------------------------------------------------------------------------------- /apps/frontend/types/reset-time.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/types/reset-time.ts -------------------------------------------------------------------------------- /apps/frontend/types/shared/contains-items.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/types/shared/contains-items.ts -------------------------------------------------------------------------------- /apps/frontend/types/shared/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/types/shared/index.ts -------------------------------------------------------------------------------- /apps/frontend/types/shared/user-item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/types/shared/user-item.ts -------------------------------------------------------------------------------- /apps/frontend/types/tasks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/types/tasks.ts -------------------------------------------------------------------------------- /apps/frontend/types/team-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/types/team-data.ts -------------------------------------------------------------------------------- /apps/frontend/types/transmog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/types/transmog.ts -------------------------------------------------------------------------------- /apps/frontend/types/user-achievement-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/types/user-achievement-data.ts -------------------------------------------------------------------------------- /apps/frontend/types/user-count.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/types/user-count.ts -------------------------------------------------------------------------------- /apps/frontend/types/user-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/types/user-data.ts -------------------------------------------------------------------------------- /apps/frontend/types/user-modified.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/types/user-modified.ts -------------------------------------------------------------------------------- /apps/frontend/types/vendors/index.ts: -------------------------------------------------------------------------------- 1 | export * from './thing-data'; 2 | -------------------------------------------------------------------------------- /apps/frontend/types/vendors/thing-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/types/vendors/thing-data.ts -------------------------------------------------------------------------------- /apps/frontend/types/zone-maps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/types/zone-maps.ts -------------------------------------------------------------------------------- /apps/frontend/user-home/Main.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/user-home/Main.svelte -------------------------------------------------------------------------------- /apps/frontend/user-home/NewNav.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/user-home/NewNav.svelte -------------------------------------------------------------------------------- /apps/frontend/user-home/Refresh.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/user-home/Refresh.svelte -------------------------------------------------------------------------------- /apps/frontend/user-home/Routes.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/user-home/Routes.svelte -------------------------------------------------------------------------------- /apps/frontend/user-home/Sidebar.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/user-home/Sidebar.svelte -------------------------------------------------------------------------------- /apps/frontend/user-home/state/lazy/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lazyState.svelte'; 2 | -------------------------------------------------------------------------------- /apps/frontend/user-home/state/lazy/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/user-home/state/lazy/types.ts -------------------------------------------------------------------------------- /apps/frontend/user-home/state/user/index.ts: -------------------------------------------------------------------------------- 1 | export * from './userState.svelte'; 2 | -------------------------------------------------------------------------------- /apps/frontend/user-home/state/user/types/index.ts: -------------------------------------------------------------------------------- 1 | export * from './quests.svelte'; 2 | -------------------------------------------------------------------------------- /apps/frontend/user-home/user-home.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/user-home/user-home.ts -------------------------------------------------------------------------------- /apps/frontend/utils/achievements/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/utils/achievements/index.ts -------------------------------------------------------------------------------- /apps/frontend/utils/auctions/sort-auctions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/utils/auctions/sort-auctions.ts -------------------------------------------------------------------------------- /apps/frontend/utils/background-thumb-url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/utils/background-thumb-url.ts -------------------------------------------------------------------------------- /apps/frontend/utils/base64.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/utils/base64.ts -------------------------------------------------------------------------------- /apps/frontend/utils/cartesian-product.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/utils/cartesian-product.ts -------------------------------------------------------------------------------- /apps/frontend/utils/characters/index.ts: -------------------------------------------------------------------------------- 1 | export * from './use-character-filter'; 2 | -------------------------------------------------------------------------------- /apps/frontend/utils/collections/sync-set.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/utils/collections/sync-set.ts -------------------------------------------------------------------------------- /apps/frontend/utils/connected-realm-name.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/utils/connected-realm-name.ts -------------------------------------------------------------------------------- /apps/frontend/utils/count-set-bits.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/utils/count-set-bits.ts -------------------------------------------------------------------------------- /apps/frontend/utils/dom/index.ts: -------------------------------------------------------------------------------- 1 | export * from './set-element-style-by-id'; 2 | -------------------------------------------------------------------------------- /apps/frontend/utils/dungeon/get-run-counts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/utils/dungeon/get-run-counts.ts -------------------------------------------------------------------------------- /apps/frontend/utils/dungeon/index.ts: -------------------------------------------------------------------------------- 1 | export * from './get-run-counts'; 2 | -------------------------------------------------------------------------------- /apps/frontend/utils/fetch-json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/utils/fetch-json.ts -------------------------------------------------------------------------------- /apps/frontend/utils/find-reputation-tier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/utils/find-reputation-tier.ts -------------------------------------------------------------------------------- /apps/frontend/utils/fixed-inventory-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/utils/fixed-inventory-type.ts -------------------------------------------------------------------------------- /apps/frontend/utils/formatting/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/utils/formatting/index.ts -------------------------------------------------------------------------------- /apps/frontend/utils/formatting/left-pad.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/utils/formatting/left-pad.ts -------------------------------------------------------------------------------- /apps/frontend/utils/formatting/to-digits.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/utils/formatting/to-digits.ts -------------------------------------------------------------------------------- /apps/frontend/utils/get-account-characters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/utils/get-account-characters.ts -------------------------------------------------------------------------------- /apps/frontend/utils/get-character-gear.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/utils/get-character-gear.ts -------------------------------------------------------------------------------- /apps/frontend/utils/get-character-level.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/utils/get-character-level.ts -------------------------------------------------------------------------------- /apps/frontend/utils/get-character-rested.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/utils/get-character-rested.ts -------------------------------------------------------------------------------- /apps/frontend/utils/get-classes-from-mask.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/utils/get-classes-from-mask.ts -------------------------------------------------------------------------------- /apps/frontend/utils/get-column-resizer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/utils/get-column-resizer.ts -------------------------------------------------------------------------------- /apps/frontend/utils/get-currency-costs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/utils/get-currency-costs.ts -------------------------------------------------------------------------------- /apps/frontend/utils/get-enchantment-text.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/utils/get-enchantment-text.ts -------------------------------------------------------------------------------- /apps/frontend/utils/get-first-match.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/utils/get-first-match.ts -------------------------------------------------------------------------------- /apps/frontend/utils/get-gendered-name.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/utils/get-gendered-name.ts -------------------------------------------------------------------------------- /apps/frontend/utils/get-instance-farm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/utils/get-instance-farm.ts -------------------------------------------------------------------------------- /apps/frontend/utils/get-item-level-quality.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/utils/get-item-level-quality.ts -------------------------------------------------------------------------------- /apps/frontend/utils/get-item-url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/utils/get-item-url.ts -------------------------------------------------------------------------------- /apps/frontend/utils/get-name-for-faction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/utils/get-name-for-faction.ts -------------------------------------------------------------------------------- /apps/frontend/utils/get-next-reset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/utils/get-next-reset.ts -------------------------------------------------------------------------------- /apps/frontend/utils/get-percent-class.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/utils/get-percent-class.ts -------------------------------------------------------------------------------- /apps/frontend/utils/get-progress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/utils/get-progress.ts -------------------------------------------------------------------------------- /apps/frontend/utils/get-raider-io-color.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/utils/get-raider-io-color.ts -------------------------------------------------------------------------------- /apps/frontend/utils/get-realm-name.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/utils/get-realm-name.ts -------------------------------------------------------------------------------- /apps/frontend/utils/get-saved-route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/utils/get-saved-route.ts -------------------------------------------------------------------------------- /apps/frontend/utils/get-skip-classes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/utils/get-skip-classes.ts -------------------------------------------------------------------------------- /apps/frontend/utils/get-transmog-span.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/utils/get-transmog-span.ts -------------------------------------------------------------------------------- /apps/frontend/utils/get-vendor-drop-stats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/utils/get-vendor-drop-stats.ts -------------------------------------------------------------------------------- /apps/frontend/utils/hash-object.svelte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/utils/hash-object.svelte.ts -------------------------------------------------------------------------------- /apps/frontend/utils/home/home-sort.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/utils/home/home-sort.ts -------------------------------------------------------------------------------- /apps/frontend/utils/home/index.ts: -------------------------------------------------------------------------------- 1 | export * from './home-sort'; 2 | -------------------------------------------------------------------------------- /apps/frontend/utils/initialize-team.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/utils/initialize-team.ts -------------------------------------------------------------------------------- /apps/frontend/utils/items/apply-bonus-ids.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/utils/items/apply-bonus-ids.ts -------------------------------------------------------------------------------- /apps/frontend/utils/log-errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/utils/log-errors.ts -------------------------------------------------------------------------------- /apps/frontend/utils/measure-scrollbar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/utils/measure-scrollbar.ts -------------------------------------------------------------------------------- /apps/frontend/utils/mythic-plus/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/utils/mythic-plus/index.ts -------------------------------------------------------------------------------- /apps/frontend/utils/object-keys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/utils/object-keys.ts -------------------------------------------------------------------------------- /apps/frontend/utils/parse-api-time.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/utils/parse-api-time.ts -------------------------------------------------------------------------------- /apps/frontend/utils/pet-location-tooltip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/utils/pet-location-tooltip.ts -------------------------------------------------------------------------------- /apps/frontend/utils/professions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/utils/professions/index.ts -------------------------------------------------------------------------------- /apps/frontend/utils/split-once.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/utils/split-once.ts -------------------------------------------------------------------------------- /apps/frontend/utils/to-index-record.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/utils/to-index-record.ts -------------------------------------------------------------------------------- /apps/frontend/utils/user-has-drop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/utils/user-has-drop.ts -------------------------------------------------------------------------------- /apps/frontend/utils/vault/get-world-tier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/utils/vault/get-world-tier.ts -------------------------------------------------------------------------------- /apps/frontend/utils/zone-maps/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/utils/zone-maps/index.ts -------------------------------------------------------------------------------- /apps/frontend/vite-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/vite-env.d.ts -------------------------------------------------------------------------------- /apps/frontend/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/frontend/vite.config.ts -------------------------------------------------------------------------------- /apps/luaparser/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/luaparser/Program.cs -------------------------------------------------------------------------------- /apps/luaparser/Wowthing.LuaParser.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/luaparser/Wowthing.LuaParser.csproj -------------------------------------------------------------------------------- /apps/postgres/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/postgres/Dockerfile -------------------------------------------------------------------------------- /apps/postgres/install-extensions.sql: -------------------------------------------------------------------------------- 1 | CREATE EXTENSION IF NOT EXISTS pg_trgm; 2 | -------------------------------------------------------------------------------- /apps/tool/Converters/OutInstanceConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Converters/OutInstanceConverter.cs -------------------------------------------------------------------------------- /apps/tool/Data/ExtraEncounters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Data/ExtraEncounters.cs -------------------------------------------------------------------------------- /apps/tool/Data/ExtraItemDrops.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Data/ExtraItemDrops.cs -------------------------------------------------------------------------------- /apps/tool/Data/ExtraTiers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Data/ExtraTiers.cs -------------------------------------------------------------------------------- /apps/tool/Data/IgnoredAchievements.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Data/IgnoredAchievements.cs -------------------------------------------------------------------------------- /apps/tool/Data/IgnoredCurrencies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Data/IgnoredCurrencies.cs -------------------------------------------------------------------------------- /apps/tool/Data/IgnoredJournalEncounter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Data/IgnoredJournalEncounter.cs -------------------------------------------------------------------------------- /apps/tool/Data/IgnoredJournalItems.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Data/IgnoredJournalItems.cs -------------------------------------------------------------------------------- /apps/tool/Data/IgnoredSkillLineAbilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Data/IgnoredSkillLineAbilities.cs -------------------------------------------------------------------------------- /apps/tool/Data/IgnoredTradeSkillCategories.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Data/IgnoredTradeSkillCategories.cs -------------------------------------------------------------------------------- /apps/tool/Data/InstanceBonusIds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Data/InstanceBonusIds.cs -------------------------------------------------------------------------------- /apps/tool/Data/InstanceDifficulties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Data/InstanceDifficulties.cs -------------------------------------------------------------------------------- /apps/tool/Data/InstanceShortNameOverride.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Data/InstanceShortNameOverride.cs -------------------------------------------------------------------------------- /apps/tool/Data/InventoryTypeOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Data/InventoryTypeOrder.cs -------------------------------------------------------------------------------- /apps/tool/Data/ItemClassOverride.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Data/ItemClassOverride.cs -------------------------------------------------------------------------------- /apps/tool/Data/ItemModifierSortOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Data/ItemModifierSortOrder.cs -------------------------------------------------------------------------------- /apps/tool/Data/ItemSpecOverrides.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Data/ItemSpecOverrides.cs -------------------------------------------------------------------------------- /apps/tool/Data/ItemToRequiredAbility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Data/ItemToRequiredAbility.cs -------------------------------------------------------------------------------- /apps/tool/Data/JournalBossOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Data/JournalBossOrder.cs -------------------------------------------------------------------------------- /apps/tool/Data/JournalDungeonsOnly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Data/JournalDungeonsOnly.cs -------------------------------------------------------------------------------- /apps/tool/Data/JournalInstanceTransmogSets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Data/JournalInstanceTransmogSets.cs -------------------------------------------------------------------------------- /apps/tool/Data/PetSpellOverride.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Data/PetSpellOverride.cs -------------------------------------------------------------------------------- /apps/tool/Data/PrimaryStats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Data/PrimaryStats.cs -------------------------------------------------------------------------------- /apps/tool/Data/ProfessionCategorySplits.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Data/ProfessionCategorySplits.cs -------------------------------------------------------------------------------- /apps/tool/Data/Professions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Data/Professions.cs -------------------------------------------------------------------------------- /apps/tool/Data/Quests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Data/Quests.cs -------------------------------------------------------------------------------- /apps/tool/Data/SkipInstances.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Data/SkipInstances.cs -------------------------------------------------------------------------------- /apps/tool/Data/SoulbindRenown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Data/SoulbindRenown.cs -------------------------------------------------------------------------------- /apps/tool/Data/WeaponSubClassOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Data/WeaponSubClassOrder.cs -------------------------------------------------------------------------------- /apps/tool/Enums/DbResetType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Enums/DbResetType.cs -------------------------------------------------------------------------------- /apps/tool/Enums/DbThingContentType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Enums/DbThingContentType.cs -------------------------------------------------------------------------------- /apps/tool/Enums/DbThingType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Enums/DbThingType.cs -------------------------------------------------------------------------------- /apps/tool/Enums/FarmAnchorPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Enums/FarmAnchorPoint.cs -------------------------------------------------------------------------------- /apps/tool/Enums/TraitNodeEntryType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Enums/TraitNodeEntryType.cs -------------------------------------------------------------------------------- /apps/tool/Enums/WowCurrencyFlags1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Enums/WowCurrencyFlags1.cs -------------------------------------------------------------------------------- /apps/tool/Enums/WowCurrencyFlags2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Enums/WowCurrencyFlags2.cs -------------------------------------------------------------------------------- /apps/tool/Enums/WowItemFlags1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Enums/WowItemFlags1.cs -------------------------------------------------------------------------------- /apps/tool/Enums/WowItemFlags2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Enums/WowItemFlags2.cs -------------------------------------------------------------------------------- /apps/tool/Enums/WowItemFlags4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Enums/WowItemFlags4.cs -------------------------------------------------------------------------------- /apps/tool/Enums/WowReagentType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Enums/WowReagentType.cs -------------------------------------------------------------------------------- /apps/tool/Enums/WowSpellFlags8.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Enums/WowSpellFlags8.cs -------------------------------------------------------------------------------- /apps/tool/Extensions/BitArrayExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Extensions/BitArrayExtensions.cs -------------------------------------------------------------------------------- /apps/tool/Extensions/DictionaryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Extensions/DictionaryExtensions.cs -------------------------------------------------------------------------------- /apps/tool/Extensions/ListExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Extensions/ListExtensions.cs -------------------------------------------------------------------------------- /apps/tool/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/GlobalUsings.cs -------------------------------------------------------------------------------- /apps/tool/Models/Achievements/DumpCriteria.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/Achievements/DumpCriteria.cs -------------------------------------------------------------------------------- /apps/tool/Models/Achievements/OutCriteria.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/Achievements/OutCriteria.cs -------------------------------------------------------------------------------- /apps/tool/Models/Artifacts/DumpArtifact.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/Artifacts/DumpArtifact.cs -------------------------------------------------------------------------------- /apps/tool/Models/Auctions/RedisAuctionData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/Auctions/RedisAuctionData.cs -------------------------------------------------------------------------------- /apps/tool/Models/BebopModels.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/BebopModels.g.cs -------------------------------------------------------------------------------- /apps/tool/Models/Covenants/DumpGarrTalent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/Covenants/DumpGarrTalent.cs -------------------------------------------------------------------------------- /apps/tool/Models/Covenants/DumpSoulbind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/Covenants/DumpSoulbind.cs -------------------------------------------------------------------------------- /apps/tool/Models/Covenants/OutSoulbind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/Covenants/OutSoulbind.cs -------------------------------------------------------------------------------- /apps/tool/Models/DataSetCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/DataSetCategory.cs -------------------------------------------------------------------------------- /apps/tool/Models/DataSetGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/DataSetGroup.cs -------------------------------------------------------------------------------- /apps/tool/Models/Db/DataDbFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/Db/DataDbFile.cs -------------------------------------------------------------------------------- /apps/tool/Models/Db/DataDbThing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/Db/DataDbThing.cs -------------------------------------------------------------------------------- /apps/tool/Models/Db/DataDbThingContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/Db/DataDbThingContent.cs -------------------------------------------------------------------------------- /apps/tool/Models/Db/OutDbThing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/Db/OutDbThing.cs -------------------------------------------------------------------------------- /apps/tool/Models/Db/OutDbThingContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/Db/OutDbThingContent.cs -------------------------------------------------------------------------------- /apps/tool/Models/Db/OutDbThingLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/Db/OutDbThingLocation.cs -------------------------------------------------------------------------------- /apps/tool/Models/Db/RedisDbData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/Db/RedisDbData.cs -------------------------------------------------------------------------------- /apps/tool/Models/DumpBattlePetSpecies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/DumpBattlePetSpecies.cs -------------------------------------------------------------------------------- /apps/tool/Models/DumpCharTitles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/DumpCharTitles.cs -------------------------------------------------------------------------------- /apps/tool/Models/DumpChrClasses.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/DumpChrClasses.cs -------------------------------------------------------------------------------- /apps/tool/Models/DumpChrRaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/DumpChrRaces.cs -------------------------------------------------------------------------------- /apps/tool/Models/DumpChrSpecialization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/DumpChrSpecialization.cs -------------------------------------------------------------------------------- /apps/tool/Models/DumpContentTuning.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/DumpContentTuning.cs -------------------------------------------------------------------------------- /apps/tool/Models/DumpCreature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/DumpCreature.cs -------------------------------------------------------------------------------- /apps/tool/Models/DumpCurrencyCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/DumpCurrencyCategory.cs -------------------------------------------------------------------------------- /apps/tool/Models/DumpCurrencyTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/DumpCurrencyTypes.cs -------------------------------------------------------------------------------- /apps/tool/Models/DumpGlobalStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/DumpGlobalStrings.cs -------------------------------------------------------------------------------- /apps/tool/Models/DumpKeystoneAffix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/DumpKeystoneAffix.cs -------------------------------------------------------------------------------- /apps/tool/Models/DumpMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/DumpMap.cs -------------------------------------------------------------------------------- /apps/tool/Models/DumpMapChallengeMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/DumpMapChallengeMode.cs -------------------------------------------------------------------------------- /apps/tool/Models/DumpMapDifficulty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/DumpMapDifficulty.cs -------------------------------------------------------------------------------- /apps/tool/Models/DumpMount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/DumpMount.cs -------------------------------------------------------------------------------- /apps/tool/Models/DumpPlayerCondition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/DumpPlayerCondition.cs -------------------------------------------------------------------------------- /apps/tool/Models/DumpSharedString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/DumpSharedString.cs -------------------------------------------------------------------------------- /apps/tool/Models/DumpTalent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/DumpTalent.cs -------------------------------------------------------------------------------- /apps/tool/Models/DumpToy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/DumpToy.cs -------------------------------------------------------------------------------- /apps/tool/Models/ExtraEncounter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/ExtraEncounter.cs -------------------------------------------------------------------------------- /apps/tool/Models/Heirlooms/DumpHeirloom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/Heirlooms/DumpHeirloom.cs -------------------------------------------------------------------------------- /apps/tool/Models/Holidays/DumpHolidayNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/Holidays/DumpHolidayNames.cs -------------------------------------------------------------------------------- /apps/tool/Models/Holidays/DumpHolidays.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/Holidays/DumpHolidays.cs -------------------------------------------------------------------------------- /apps/tool/Models/Housing/DumpDecorCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/Housing/DumpDecorCategory.cs -------------------------------------------------------------------------------- /apps/tool/Models/Housing/DumpHouseDecor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/Housing/DumpHouseDecor.cs -------------------------------------------------------------------------------- /apps/tool/Models/Housing/StaticDecorObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/Housing/StaticDecorObject.cs -------------------------------------------------------------------------------- /apps/tool/Models/IDataCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/IDataCategory.cs -------------------------------------------------------------------------------- /apps/tool/Models/IDataCategoryNested.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/IDataCategoryNested.cs -------------------------------------------------------------------------------- /apps/tool/Models/Illusions/DataIllusiontem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/Illusions/DataIllusiontem.cs -------------------------------------------------------------------------------- /apps/tool/Models/Instances/DataInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/Instances/DataInstance.cs -------------------------------------------------------------------------------- /apps/tool/Models/Items/DumpItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/Items/DumpItem.cs -------------------------------------------------------------------------------- /apps/tool/Models/Items/DumpItemAppearance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/Items/DumpItemAppearance.cs -------------------------------------------------------------------------------- /apps/tool/Models/Items/DumpItemBonus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/Items/DumpItemBonus.cs -------------------------------------------------------------------------------- /apps/tool/Models/Items/DumpItemClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/Items/DumpItemClass.cs -------------------------------------------------------------------------------- /apps/tool/Models/Items/DumpItemEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/Items/DumpItemEffect.cs -------------------------------------------------------------------------------- /apps/tool/Models/Items/DumpItemSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/Items/DumpItemSet.cs -------------------------------------------------------------------------------- /apps/tool/Models/Items/DumpItemSparse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/Items/DumpItemSparse.cs -------------------------------------------------------------------------------- /apps/tool/Models/Items/DumpItemSparseName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/Items/DumpItemSparseName.cs -------------------------------------------------------------------------------- /apps/tool/Models/Items/DumpItemSubclass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/Items/DumpItemSubclass.cs -------------------------------------------------------------------------------- /apps/tool/Models/Items/DumpItemXItemEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/Items/DumpItemXItemEffect.cs -------------------------------------------------------------------------------- /apps/tool/Models/Items/RedisItemData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/Items/RedisItemData.cs -------------------------------------------------------------------------------- /apps/tool/Models/Items/RedisItemSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/Items/RedisItemSet.cs -------------------------------------------------------------------------------- /apps/tool/Models/Items/RedisItems.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/Items/RedisItems.cs -------------------------------------------------------------------------------- /apps/tool/Models/Journal/DumpJournalTier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/Journal/DumpJournalTier.cs -------------------------------------------------------------------------------- /apps/tool/Models/Journal/OutJournalItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/Journal/OutJournalItem.cs -------------------------------------------------------------------------------- /apps/tool/Models/Journal/OutJournalTier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/Journal/OutJournalTier.cs -------------------------------------------------------------------------------- /apps/tool/Models/Journal/RedisJournalData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/Journal/RedisJournalData.cs -------------------------------------------------------------------------------- /apps/tool/Models/Manual/RedisManualData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/Manual/RedisManualData.cs -------------------------------------------------------------------------------- /apps/tool/Models/OutInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/OutInstance.cs -------------------------------------------------------------------------------- /apps/tool/Models/OutRaiderIoScoreTiers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/OutRaiderIoScoreTiers.cs -------------------------------------------------------------------------------- /apps/tool/Models/Professions/DumpSkillLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/Professions/DumpSkillLine.cs -------------------------------------------------------------------------------- /apps/tool/Models/Professions/OutProfession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/Professions/OutProfession.cs -------------------------------------------------------------------------------- /apps/tool/Models/Progress/DataProgress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/Progress/DataProgress.cs -------------------------------------------------------------------------------- /apps/tool/Models/Progress/DataProgressData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/Progress/DataProgressData.cs -------------------------------------------------------------------------------- /apps/tool/Models/Progress/OutProgress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/Progress/OutProgress.cs -------------------------------------------------------------------------------- /apps/tool/Models/Progress/OutProgressData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/Progress/OutProgressData.cs -------------------------------------------------------------------------------- /apps/tool/Models/Progress/OutProgressGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/Progress/OutProgressGroup.cs -------------------------------------------------------------------------------- /apps/tool/Models/Quests/DumpCampaign.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/Quests/DumpCampaign.cs -------------------------------------------------------------------------------- /apps/tool/Models/Quests/DumpQuestInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/Quests/DumpQuestInfo.cs -------------------------------------------------------------------------------- /apps/tool/Models/Quests/DumpQuestLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/Quests/DumpQuestLine.cs -------------------------------------------------------------------------------- /apps/tool/Models/Quests/DumpQuestV2CliTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/Quests/DumpQuestV2CliTask.cs -------------------------------------------------------------------------------- /apps/tool/Models/Reputations/DumpFaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/Reputations/DumpFaction.cs -------------------------------------------------------------------------------- /apps/tool/Models/Spells/DumpSpell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/Spells/DumpSpell.cs -------------------------------------------------------------------------------- /apps/tool/Models/Spells/DumpSpellEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/Spells/DumpSpellEffect.cs -------------------------------------------------------------------------------- /apps/tool/Models/Spells/DumpSpellMisc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/Spells/DumpSpellMisc.cs -------------------------------------------------------------------------------- /apps/tool/Models/Spells/DumpSpellName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/Spells/DumpSpellName.cs -------------------------------------------------------------------------------- /apps/tool/Models/Spells/DumpSpellReagents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/Spells/DumpSpellReagents.cs -------------------------------------------------------------------------------- /apps/tool/Models/Static/RedisStaticData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/Static/RedisStaticData.cs -------------------------------------------------------------------------------- /apps/tool/Models/Static/StaticArtifact.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/Static/StaticArtifact.cs -------------------------------------------------------------------------------- /apps/tool/Models/Static/StaticCampaign.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/Static/StaticCampaign.cs -------------------------------------------------------------------------------- /apps/tool/Models/Static/StaticCurrency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/Static/StaticCurrency.cs -------------------------------------------------------------------------------- /apps/tool/Models/Static/StaticHeirloom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/Static/StaticHeirloom.cs -------------------------------------------------------------------------------- /apps/tool/Models/Static/StaticHoliday.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/Static/StaticHoliday.cs -------------------------------------------------------------------------------- /apps/tool/Models/Static/StaticIllusion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/Static/StaticIllusion.cs -------------------------------------------------------------------------------- /apps/tool/Models/Static/StaticMount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/Static/StaticMount.cs -------------------------------------------------------------------------------- /apps/tool/Models/Static/StaticPet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/Static/StaticPet.cs -------------------------------------------------------------------------------- /apps/tool/Models/Static/StaticQuestInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/Static/StaticQuestInfo.cs -------------------------------------------------------------------------------- /apps/tool/Models/Static/StaticQuestLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/Static/StaticQuestLine.cs -------------------------------------------------------------------------------- /apps/tool/Models/Static/StaticReputation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/Static/StaticReputation.cs -------------------------------------------------------------------------------- /apps/tool/Models/Static/StaticToy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/Static/StaticToy.cs -------------------------------------------------------------------------------- /apps/tool/Models/Static/StaticTransmogSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/Static/StaticTransmogSet.cs -------------------------------------------------------------------------------- /apps/tool/Models/Static/StaticWorldQuest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/Static/StaticWorldQuest.cs -------------------------------------------------------------------------------- /apps/tool/Models/Traits/DumpTraitCond.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/Traits/DumpTraitCond.cs -------------------------------------------------------------------------------- /apps/tool/Models/Traits/DumpTraitEdge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/Traits/DumpTraitEdge.cs -------------------------------------------------------------------------------- /apps/tool/Models/Traits/DumpTraitNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/Traits/DumpTraitNode.cs -------------------------------------------------------------------------------- /apps/tool/Models/Traits/DumpTraitNodeEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/Traits/DumpTraitNodeEntry.cs -------------------------------------------------------------------------------- /apps/tool/Models/Traits/DumpTraitNodeGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/Traits/DumpTraitNodeGroup.cs -------------------------------------------------------------------------------- /apps/tool/Models/Traits/DumpTraitTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/Traits/DumpTraitTree.cs -------------------------------------------------------------------------------- /apps/tool/Models/Traits/OutTraitNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/Traits/OutTraitNode.cs -------------------------------------------------------------------------------- /apps/tool/Models/Traits/OutTraitPerk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/Traits/OutTraitPerk.cs -------------------------------------------------------------------------------- /apps/tool/Models/Traits/OutTraitTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/Traits/OutTraitTree.cs -------------------------------------------------------------------------------- /apps/tool/Models/Transmog/DataTransmogSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/Transmog/DataTransmogSet.cs -------------------------------------------------------------------------------- /apps/tool/Models/Transmog/DumpTransmogSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/Transmog/DumpTransmogSet.cs -------------------------------------------------------------------------------- /apps/tool/Models/Vendors/DataSharedVendor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/Vendors/DataSharedVendor.cs -------------------------------------------------------------------------------- /apps/tool/Models/Vendors/DataVendorGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/Vendors/DataVendorGroup.cs -------------------------------------------------------------------------------- /apps/tool/Models/Vendors/DataVendorItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/Vendors/DataVendorItem.cs -------------------------------------------------------------------------------- /apps/tool/Models/Vendors/ManualVendorGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/Vendors/ManualVendorGroup.cs -------------------------------------------------------------------------------- /apps/tool/Models/Vendors/ManualVendorItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/Vendors/ManualVendorItem.cs -------------------------------------------------------------------------------- /apps/tool/Models/ZoneMaps/DataZoneMapDrop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/ZoneMaps/DataZoneMapDrop.cs -------------------------------------------------------------------------------- /apps/tool/Models/ZoneMaps/DataZoneMapFarm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Models/ZoneMaps/DataZoneMapFarm.cs -------------------------------------------------------------------------------- /apps/tool/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Program.cs -------------------------------------------------------------------------------- /apps/tool/ToolContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/ToolContext.cs -------------------------------------------------------------------------------- /apps/tool/Tools/AchievementsTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Tools/AchievementsTool.cs -------------------------------------------------------------------------------- /apps/tool/Tools/AppearancesTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Tools/AppearancesTool.cs -------------------------------------------------------------------------------- /apps/tool/Tools/AuctionTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Tools/AuctionTool.cs -------------------------------------------------------------------------------- /apps/tool/Tools/DbTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Tools/DbTool.cs -------------------------------------------------------------------------------- /apps/tool/Tools/DumpsTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Tools/DumpsTool.cs -------------------------------------------------------------------------------- /apps/tool/Tools/ItemsTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Tools/ItemsTool.cs -------------------------------------------------------------------------------- /apps/tool/Tools/JournalTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Tools/JournalTool.cs -------------------------------------------------------------------------------- /apps/tool/Tools/ManualTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Tools/ManualTool.cs -------------------------------------------------------------------------------- /apps/tool/Tools/StaticTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Tools/StaticTool.cs -------------------------------------------------------------------------------- /apps/tool/Utilities/DataUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Utilities/DataUtilities.cs -------------------------------------------------------------------------------- /apps/tool/Utilities/DateTimeUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Utilities/DateTimeUtilities.cs -------------------------------------------------------------------------------- /apps/tool/Wowthing.Tool.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/tool/Wowthing.Tool.csproj -------------------------------------------------------------------------------- /apps/tool/run-all.sh: -------------------------------------------------------------------------------- 1 | export $(grep -v '^#' .env | xargs) 2 | dotnet run all 3 | -------------------------------------------------------------------------------- /apps/web/Controllers/API/UploadController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/Controllers/API/UploadController.cs -------------------------------------------------------------------------------- /apps/web/Controllers/AdminController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/Controllers/AdminController.cs -------------------------------------------------------------------------------- /apps/web/Controllers/ApiController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/Controllers/ApiController.cs -------------------------------------------------------------------------------- /apps/web/Controllers/AuctionsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/Controllers/AuctionsController.cs -------------------------------------------------------------------------------- /apps/web/Controllers/ErrorController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/Controllers/ErrorController.cs -------------------------------------------------------------------------------- /apps/web/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/Controllers/HomeController.cs -------------------------------------------------------------------------------- /apps/web/Controllers/ImageController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/Controllers/ImageController.cs -------------------------------------------------------------------------------- /apps/web/Controllers/LeaderboardController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/Controllers/LeaderboardController.cs -------------------------------------------------------------------------------- /apps/web/Controllers/TeamControlller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/Controllers/TeamControlller.cs -------------------------------------------------------------------------------- /apps/web/Controllers/UploadController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/Controllers/UploadController.cs -------------------------------------------------------------------------------- /apps/web/Controllers/UserController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/Controllers/UserController.cs -------------------------------------------------------------------------------- /apps/web/Converters/ApiUserGuildConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/Converters/ApiUserGuildConverter.cs -------------------------------------------------------------------------------- /apps/web/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/Dockerfile -------------------------------------------------------------------------------- /apps/web/Extensions/HttpContextExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/Extensions/HttpContextExtensions.cs -------------------------------------------------------------------------------- /apps/web/Extensions/HttpResponseExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/Extensions/HttpResponseExtensions.cs -------------------------------------------------------------------------------- /apps/web/Extensions/UserManagerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/Extensions/UserManagerExtensions.cs -------------------------------------------------------------------------------- /apps/web/Forms/ApiAuctionSpecificItemForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/Forms/ApiAuctionSpecificItemForm.cs -------------------------------------------------------------------------------- /apps/web/Forms/ApiAuctionsBrowseForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/Forms/ApiAuctionsBrowseForm.cs -------------------------------------------------------------------------------- /apps/web/Forms/ApiAuctionsSearchForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/Forms/ApiAuctionsSearchForm.cs -------------------------------------------------------------------------------- /apps/web/Forms/ApiAuctionsSpecificForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/Forms/ApiAuctionsSpecificForm.cs -------------------------------------------------------------------------------- /apps/web/Forms/ApiExtraPetsForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/Forms/ApiExtraPetsForm.cs -------------------------------------------------------------------------------- /apps/web/Forms/ApiItemSearchForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/Forms/ApiItemSearchForm.cs -------------------------------------------------------------------------------- /apps/web/Forms/ApiMissingAuctionsForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/Forms/ApiMissingAuctionsForm.cs -------------------------------------------------------------------------------- /apps/web/Forms/ApiMissingTransmogForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/Forms/ApiMissingTransmogForm.cs -------------------------------------------------------------------------------- /apps/web/Forms/ApiSettingsForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/Forms/ApiSettingsForm.cs -------------------------------------------------------------------------------- /apps/web/Forms/TeamAddCharacterForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/Forms/TeamAddCharacterForm.cs -------------------------------------------------------------------------------- /apps/web/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/GlobalUsings.cs -------------------------------------------------------------------------------- /apps/web/Hubs/UserUpdateHub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/Hubs/UserUpdateHub.cs -------------------------------------------------------------------------------- /apps/web/Misc/SlugRouteConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/Misc/SlugRouteConstraint.cs -------------------------------------------------------------------------------- /apps/web/Misc/UsernameRouteConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/Misc/UsernameRouteConstraint.cs -------------------------------------------------------------------------------- /apps/web/Models/Api/User/ApiUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/Models/Api/User/ApiUser.cs -------------------------------------------------------------------------------- /apps/web/Models/Api/User/ApiUserAccount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/Models/Api/User/ApiUserAccount.cs -------------------------------------------------------------------------------- /apps/web/Models/Api/User/ApiUserGuild.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/Models/Api/User/ApiUserGuild.cs -------------------------------------------------------------------------------- /apps/web/Models/ApiUpload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/Models/ApiUpload.cs -------------------------------------------------------------------------------- /apps/web/Models/FrontendManifest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/Models/FrontendManifest.cs -------------------------------------------------------------------------------- /apps/web/Models/FrontendManifestJson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/Models/FrontendManifestJson.cs -------------------------------------------------------------------------------- /apps/web/Models/Team/TeamApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/Models/Team/TeamApi.cs -------------------------------------------------------------------------------- /apps/web/Models/Team/TeamApiCharacter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/Models/Team/TeamApiCharacter.cs -------------------------------------------------------------------------------- /apps/web/Models/UserAchievementData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/Models/UserAchievementData.cs -------------------------------------------------------------------------------- /apps/web/Models/UserAuctionData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/Models/UserAuctionData.cs -------------------------------------------------------------------------------- /apps/web/Models/UserCollectionData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/Models/UserCollectionData.cs -------------------------------------------------------------------------------- /apps/web/Models/UserHistoryGold.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/Models/UserHistoryGold.cs -------------------------------------------------------------------------------- /apps/web/Models/UserQuestData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/Models/UserQuestData.cs -------------------------------------------------------------------------------- /apps/web/Models/UserTransmogData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/Models/UserTransmogData.cs -------------------------------------------------------------------------------- /apps/web/Models/WowthingWebOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/Models/WowthingWebOptions.cs -------------------------------------------------------------------------------- /apps/web/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/Program.cs -------------------------------------------------------------------------------- /apps/web/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/Properties/launchSettings.json -------------------------------------------------------------------------------- /apps/web/Services/AuctionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/Services/AuctionService.cs -------------------------------------------------------------------------------- /apps/web/Services/MemoryCacheService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/Services/MemoryCacheService.cs -------------------------------------------------------------------------------- /apps/web/Services/PubSubService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/Services/PubSubService.cs -------------------------------------------------------------------------------- /apps/web/Services/UploadService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/Services/UploadService.cs -------------------------------------------------------------------------------- /apps/web/Services/UriService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/Services/UriService.cs -------------------------------------------------------------------------------- /apps/web/Services/UserService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/Services/UserService.cs -------------------------------------------------------------------------------- /apps/web/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/Startup.cs -------------------------------------------------------------------------------- /apps/web/ViewModels/AdminViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/ViewModels/AdminViewModel.cs -------------------------------------------------------------------------------- /apps/web/ViewModels/AuctionsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/ViewModels/AuctionsViewModel.cs -------------------------------------------------------------------------------- /apps/web/ViewModels/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/ViewModels/ErrorViewModel.cs -------------------------------------------------------------------------------- /apps/web/ViewModels/LeaderboardViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/ViewModels/LeaderboardViewModel.cs -------------------------------------------------------------------------------- /apps/web/ViewModels/TeamViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/ViewModels/TeamViewModel.cs -------------------------------------------------------------------------------- /apps/web/ViewModels/UserViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/ViewModels/UserViewModel.cs -------------------------------------------------------------------------------- /apps/web/Views/Admin/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/Views/Admin/Index.cshtml -------------------------------------------------------------------------------- /apps/web/Views/Auctions/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/Views/Auctions/Index.cshtml -------------------------------------------------------------------------------- /apps/web/Views/Error/403.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/Views/Error/403.cshtml -------------------------------------------------------------------------------- /apps/web/Views/Error/404.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/Views/Error/404.cshtml -------------------------------------------------------------------------------- /apps/web/Views/Error/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/Views/Error/Error.cshtml -------------------------------------------------------------------------------- /apps/web/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /apps/web/Views/Leaderboard/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/Views/Leaderboard/Index.cshtml -------------------------------------------------------------------------------- /apps/web/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /apps/web/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /apps/web/Views/Shared/_ManifestCss.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/Views/Shared/_ManifestCss.cshtml -------------------------------------------------------------------------------- /apps/web/Views/Shared/_ManifestJs.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/Views/Shared/_ManifestJs.cshtml -------------------------------------------------------------------------------- /apps/web/Views/Team/AddCharacterForm.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/Views/Team/AddCharacterForm.cshtml -------------------------------------------------------------------------------- /apps/web/Views/Team/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/Views/Team/Details.cshtml -------------------------------------------------------------------------------- /apps/web/Views/Upload/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/Views/Upload/Index.cshtml -------------------------------------------------------------------------------- /apps/web/Views/User/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/Views/User/Index.cshtml -------------------------------------------------------------------------------- /apps/web/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /apps/web/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /apps/web/Wowthing.Web.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/Wowthing.Web.csproj -------------------------------------------------------------------------------- /apps/web/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/appsettings.Development.json -------------------------------------------------------------------------------- /apps/web/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/appsettings.json -------------------------------------------------------------------------------- /apps/web/development.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/development.Dockerfile -------------------------------------------------------------------------------- /apps/web/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/project.json -------------------------------------------------------------------------------- /apps/web/wwwroot/external/discord_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/wwwroot/external/discord_white.png -------------------------------------------------------------------------------- /apps/web/wwwroot/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/wwwroot/favicon-16x16.png -------------------------------------------------------------------------------- /apps/web/wwwroot/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/wwwroot/favicon-32x32.png -------------------------------------------------------------------------------- /apps/web/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/wwwroot/favicon.ico -------------------------------------------------------------------------------- /apps/web/wwwroot/img/gear_20210704.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/wwwroot/img/gear_20210704.png -------------------------------------------------------------------------------- /apps/web/wwwroot/img/gear_20210704.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/wwwroot/img/gear_20210704.webp -------------------------------------------------------------------------------- /apps/web/wwwroot/img/home_20210704.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/wwwroot/img/home_20210704.png -------------------------------------------------------------------------------- /apps/web/wwwroot/img/home_20210704.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/wwwroot/img/home_20210704.webp -------------------------------------------------------------------------------- /apps/web/wwwroot/img/journal_20221111.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/wwwroot/img/journal_20221111.png -------------------------------------------------------------------------------- /apps/web/wwwroot/img/journal_20221111.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/wwwroot/img/journal_20221111.webp -------------------------------------------------------------------------------- /apps/web/wwwroot/img/sets_20221111.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/wwwroot/img/sets_20221111.png -------------------------------------------------------------------------------- /apps/web/wwwroot/img/sets_20221111.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/wwwroot/img/sets_20221111.webp -------------------------------------------------------------------------------- /apps/web/wwwroot/img/vendors_20221111.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/wwwroot/img/vendors_20221111.png -------------------------------------------------------------------------------- /apps/web/wwwroot/img/vendors_20221111.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/wwwroot/img/vendors_20221111.webp -------------------------------------------------------------------------------- /apps/web/wwwroot/img/zone_maps_20221111.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/apps/web/wwwroot/img/zone_maps_20221111.png -------------------------------------------------------------------------------- /bebop/item.bop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/bebop/item.bop -------------------------------------------------------------------------------- /bin/dump_items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/bin/dump_items.py -------------------------------------------------------------------------------- /bin/expand_sets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/bin/expand_sets.py -------------------------------------------------------------------------------- /bin/get_sets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/bin/get_sets.py -------------------------------------------------------------------------------- /bin/hn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/bin/hn.py -------------------------------------------------------------------------------- /bin/item_contexts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/bin/item_contexts.py -------------------------------------------------------------------------------- /bin/item_expansion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/bin/item_expansion.py -------------------------------------------------------------------------------- /bin/json_size.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/bin/json_size.py -------------------------------------------------------------------------------- /bin/sd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/bin/sd.py -------------------------------------------------------------------------------- /bin/sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/bin/sql.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/background_image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/docs/background_image.md -------------------------------------------------------------------------------- /docs/maintenance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/docs/maintenance.md -------------------------------------------------------------------------------- /docs/processes/new-season.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/docs/processes/new-season.md -------------------------------------------------------------------------------- /docs/tasks_chores.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/docs/tasks_chores.md -------------------------------------------------------------------------------- /ef.cmd: -------------------------------------------------------------------------------- 1 | dotnet ef %* --project packages/csharp-lib 2 | -------------------------------------------------------------------------------- /ef.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/ef.sh -------------------------------------------------------------------------------- /packages/csharp-lib/Constants/RedisKeys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/packages/csharp-lib/Constants/RedisKeys.cs -------------------------------------------------------------------------------- /packages/csharp-lib/Data/ArmorClassMask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/packages/csharp-lib/Data/ArmorClassMask.cs -------------------------------------------------------------------------------- /packages/csharp-lib/Data/CharacterClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/packages/csharp-lib/Data/CharacterClass.cs -------------------------------------------------------------------------------- /packages/csharp-lib/Data/CurrencyItemIds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/packages/csharp-lib/Data/CurrencyItemIds.cs -------------------------------------------------------------------------------- /packages/csharp-lib/Data/PrimaryStats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/packages/csharp-lib/Data/PrimaryStats.cs -------------------------------------------------------------------------------- /packages/csharp-lib/Data/ProgressItemIds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/packages/csharp-lib/Data/ProgressItemIds.cs -------------------------------------------------------------------------------- /packages/csharp-lib/Data/SkipInstances.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/packages/csharp-lib/Data/SkipInstances.cs -------------------------------------------------------------------------------- /packages/csharp-lib/Enums/GameItemClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/packages/csharp-lib/Enums/GameItemClass.cs -------------------------------------------------------------------------------- /packages/csharp-lib/Enums/ImageFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/packages/csharp-lib/Enums/ImageFormat.cs -------------------------------------------------------------------------------- /packages/csharp-lib/Enums/ImageType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/packages/csharp-lib/Enums/ImageType.cs -------------------------------------------------------------------------------- /packages/csharp-lib/Enums/ItemLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/packages/csharp-lib/Enums/ItemLocation.cs -------------------------------------------------------------------------------- /packages/csharp-lib/Enums/Language.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/packages/csharp-lib/Enums/Language.cs -------------------------------------------------------------------------------- /packages/csharp-lib/Enums/Progress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/packages/csharp-lib/Enums/Progress.cs -------------------------------------------------------------------------------- /packages/csharp-lib/Enums/StringType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/packages/csharp-lib/Enums/StringType.cs -------------------------------------------------------------------------------- /packages/csharp-lib/Enums/WowBindType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/packages/csharp-lib/Enums/WowBindType.cs -------------------------------------------------------------------------------- /packages/csharp-lib/Enums/WowDifficulty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/packages/csharp-lib/Enums/WowDifficulty.cs -------------------------------------------------------------------------------- /packages/csharp-lib/Enums/WowFaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/packages/csharp-lib/Enums/WowFaction.cs -------------------------------------------------------------------------------- /packages/csharp-lib/Enums/WowGender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/packages/csharp-lib/Enums/WowGender.cs -------------------------------------------------------------------------------- /packages/csharp-lib/Enums/WowItemFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/packages/csharp-lib/Enums/WowItemFlags.cs -------------------------------------------------------------------------------- /packages/csharp-lib/Enums/WowQuality.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/packages/csharp-lib/Enums/WowQuality.cs -------------------------------------------------------------------------------- /packages/csharp-lib/Enums/WowRegion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/packages/csharp-lib/Enums/WowRegion.cs -------------------------------------------------------------------------------- /packages/csharp-lib/Enums/WowRole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/packages/csharp-lib/Enums/WowRole.cs -------------------------------------------------------------------------------- /packages/csharp-lib/Enums/WowStat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/packages/csharp-lib/Enums/WowStat.cs -------------------------------------------------------------------------------- /packages/csharp-lib/Enums/ZoneMaps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/packages/csharp-lib/Enums/ZoneMaps.cs -------------------------------------------------------------------------------- /packages/csharp-lib/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/packages/csharp-lib/GlobalUsings.cs -------------------------------------------------------------------------------- /packages/csharp-lib/Jobs/JobPriority.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/packages/csharp-lib/Jobs/JobPriority.cs -------------------------------------------------------------------------------- /packages/csharp-lib/Jobs/JobType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/packages/csharp-lib/Jobs/JobType.cs -------------------------------------------------------------------------------- /packages/csharp-lib/Jobs/WorkerJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/packages/csharp-lib/Jobs/WorkerJob.cs -------------------------------------------------------------------------------- /packages/csharp-lib/Models/ApiUserResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/packages/csharp-lib/Models/ApiUserResult.cs -------------------------------------------------------------------------------- /packages/csharp-lib/Models/AuditLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/packages/csharp-lib/Models/AuditLog.cs -------------------------------------------------------------------------------- /packages/csharp-lib/Models/CriteriaCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/packages/csharp-lib/Models/CriteriaCache.cs -------------------------------------------------------------------------------- /packages/csharp-lib/Models/IGoldSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/packages/csharp-lib/Models/IGoldSnapshot.cs -------------------------------------------------------------------------------- /packages/csharp-lib/Models/Image.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/packages/csharp-lib/Models/Image.cs -------------------------------------------------------------------------------- /packages/csharp-lib/Models/QueuedJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/packages/csharp-lib/Models/QueuedJob.cs -------------------------------------------------------------------------------- /packages/csharp-lib/Models/Team/Team.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/packages/csharp-lib/Models/Team/Team.cs -------------------------------------------------------------------------------- /packages/csharp-lib/Models/Wow/WowItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/packages/csharp-lib/Models/Wow/WowItem.cs -------------------------------------------------------------------------------- /packages/csharp-lib/Models/Wow/WowMount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/packages/csharp-lib/Models/Wow/WowMount.cs -------------------------------------------------------------------------------- /packages/csharp-lib/Models/Wow/WowPeriod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/packages/csharp-lib/Models/Wow/WowPeriod.cs -------------------------------------------------------------------------------- /packages/csharp-lib/Models/Wow/WowPet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/packages/csharp-lib/Models/Wow/WowPet.cs -------------------------------------------------------------------------------- /packages/csharp-lib/Models/Wow/WowQuest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/packages/csharp-lib/Models/Wow/WowQuest.cs -------------------------------------------------------------------------------- /packages/csharp-lib/Models/Wow/WowRealm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/packages/csharp-lib/Models/Wow/WowRealm.cs -------------------------------------------------------------------------------- /packages/csharp-lib/Models/Wow/WowTitle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/packages/csharp-lib/Models/Wow/WowTitle.cs -------------------------------------------------------------------------------- /packages/csharp-lib/Models/Wow/WowToy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/packages/csharp-lib/Models/Wow/WowToy.cs -------------------------------------------------------------------------------- /packages/csharp-lib/Utilities/JankTimer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/packages/csharp-lib/Utilities/JankTimer.cs -------------------------------------------------------------------------------- /packages/csharp-lib/Wowthing.Lib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/packages/csharp-lib/Wowthing.Lib.csproj -------------------------------------------------------------------------------- /packages/csharp-lib/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThingEngineering/wowthing-again/HEAD/packages/csharp-lib/project.json --------------------------------------------------------------------------------