diff --git a/CHANGELOG.md b/CHANGELOG.md index 70f97715..bd821d6b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,12 @@ The format of this changelog is based on [Keep a Changelog](https://keepachangel * The MINOR component is used whenever a version has backwards-compatible profile changes. This also indicates that the user can not switch back to a previous MINOR version without using a backup. * The PATCH component is used for versions that do not contain profile format changes. Users can freely switch between PATCH versions without risk of data loss. +## [Unreleased] + +### Added + +* Add support for Cataclysm Classic 4.4.0 + ## [1.14.6] - 2024-04-07 ### Added diff --git a/Clicked/Clicked_Wrath.toc b/Clicked/Clicked_Cata.toc similarity index 94% rename from Clicked/Clicked_Wrath.toc rename to Clicked/Clicked_Cata.toc index ec6e5179..dba15ac4 100644 --- a/Clicked/Clicked_Wrath.toc +++ b/Clicked/Clicked_Cata.toc @@ -1,4 +1,4 @@ -## Interface: 30403 +## Interface: 40400 ## Title: Clicked ## Author: Snakybo ## Version: @project-version@ @@ -44,6 +44,8 @@ Config\Bindings.lua Config\ImportFrame.lua Config\ExportFrame.lua Config\Blacklist.lua +Config\KeyLayouts.lua +Config\KeyVisualizer.lua Debug\StatusOutput.lua # Skinning diff --git a/Clicked/Config/Bindings.lua b/Clicked/Config/Bindings.lua index 800976d6..3c0ca7c9 100644 --- a/Clicked/Config/Bindings.lua +++ b/Clicked/Config/Bindings.lua @@ -3318,18 +3318,16 @@ local function DrawHeader(container) end -- Visualize button - if not Addon:IsWotLK() then -- TODO: Remove when WOTLK supports texture slicing - local function OnClick() - Addon.KeyVisualizer:Open() - end + local function OnClick() + Addon.KeyVisualizer:Open() + end - local widget = AceGUI:Create("Button") --[[@as AceGUIButton]] - widget:SetText(Addon.L["Show on keyboard"]) - widget:SetCallback("OnClick", OnClick) - widget:SetAutoWidth(true) + local widget = AceGUI:Create("Button") --[[@as AceGUIButton]] + widget:SetText(Addon.L["Show on keyboard"]) + widget:SetCallback("OnClick", OnClick) + widget:SetAutoWidth(true) - line:AddChild(widget) - end + line:AddChild(widget) end --- @param container AceGUIContainer diff --git a/Clicked/Core/BindingProcessor.lua b/Clicked/Core/BindingProcessor.lua index 5f6cfa24..2c026159 100644 --- a/Clicked/Core/BindingProcessor.lua +++ b/Clicked/Core/BindingProcessor.lua @@ -610,10 +610,7 @@ local function ReloadBindings(delayFrame) Clicked:ProcessActiveBindings() Addon:BindingConfig_Redraw() - - if not Addon:IsWotLK() then -- TODO: Remove when WOTLK supports texture slicing - Addon.KeyVisualizer:Redraw() - end + Addon.KeyVisualizer:Redraw() end -- Public addon API diff --git a/Clicked/Core/Clicked.lua b/Clicked/Core/Clicked.lua index 2b3bf35f..623fd814 100644 --- a/Clicked/Core/Clicked.lua +++ b/Clicked/Core/Clicked.lua @@ -89,7 +89,7 @@ local function HandleChatCommand(input) Addon:OpenSettingsMenu("Clicked") elseif args[1] == "dump" then Addon:StatusOutput_Open() - elseif (args[1] == "viz" or args[1] == "visualizer") and not Addon:IsWotLK() then -- TODO: Remove when WOTLK supports texture slicing + elseif (args[1] == "viz" or args[1] == "visualizer") then Addon.KeyVisualizer:Open() end end diff --git a/Clicked/Core/Init.lua b/Clicked/Core/Init.lua index 9167623e..c5cba139 100644 --- a/Clicked/Core/Init.lua +++ b/Clicked/Core/Init.lua @@ -81,14 +81,22 @@ function Addon:IsWotLK() return WOW_PROJECT_ID == WOW_PROJECT_WRATH_CLASSIC end +--- Check if the game client is running the Cataclysm version of the API. +--- +--- @return boolean +function Addon:IsCata() + return WOW_PROJECT_ID == WOW_PROJECT_CATACLYSM_CLASSIC +end + --- Check if the client version is at least the specified version, for example `IsAtLeast("BC")` will return `true` on both the BC and Retail versions of the --- game, but `false` on Classic. --- ---- @param version "RETAIL"|"CLASSIC"|"BC"|"WOTLK" +--- @param version "RETAIL"|"CLASSIC"|"BC"|"WOTLK"|"CATA" --- @return boolean function Addon:IsGameVersionAtleast(version) local isRetail = Addon:IsRetail() - local isWOTLK = isRetail or Addon:IsWotLK() + local isCata = isRetail or Addon:IsCata() + local isWOTLK = isCata or Addon:IsWotLK() local isBC = isWOTLK or Addon:IsBC() local isClassic = isBC or Addon:IsClassic() diff --git a/Clicked/Core/LocaleUtils.lua b/Clicked/Core/LocaleUtils.lua index a297c2ef..c792d105 100644 --- a/Clicked/Core/LocaleUtils.lua +++ b/Clicked/Core/LocaleUtils.lua @@ -68,9 +68,12 @@ if Addon:IsGameVersionAtleast("WOTLK") then table.insert(allClasses, "DEATHKNIGHT") end -if Addon:IsGameVersionAtleast("RETAIL") then +if Addon:IsGameVersionAtleast("CATA") then table.insert(allRaces, 9) -- Goblin table.insert(allRaces, 22) -- Worgen +end + +if Addon:IsGameVersionAtleast("RETAIL") then table.insert(allRaces, 24) -- Pandaren table.insert(allRaces, 27) -- Nightborne table.insert(allRaces, 28) -- HighmountainTauren diff --git a/ClickedMedia/ClickedMedia_Wrath.toc b/ClickedMedia/ClickedMedia_Cata.toc similarity index 81% rename from ClickedMedia/ClickedMedia_Wrath.toc rename to ClickedMedia/ClickedMedia_Cata.toc index 54439163..a7a444b7 100644 --- a/ClickedMedia/ClickedMedia_Wrath.toc +++ b/ClickedMedia/ClickedMedia_Cata.toc @@ -1,4 +1,4 @@ -## Interface: 30403 +## Interface: 40400 ## Title: ClickedMedia ## Author: Snakybo ## Version: @project-version@ @@ -6,4 +6,4 @@ ## Dependencies: Clicked ## LoadOnDemand: 1 -MediaWOTLK.lua +MediaCata.lua diff --git a/ClickedMedia/MediaWOTLK.lua b/ClickedMedia/MediaCata.lua similarity index 68% rename from ClickedMedia/MediaWOTLK.lua rename to ClickedMedia/MediaCata.lua index 919207a8..c8e234f7 100644 --- a/ClickedMedia/MediaWOTLK.lua +++ b/ClickedMedia/MediaCata.lua @@ -6020,7 +6020,52 @@ local icons = { [319745] = "inv_wand_35", [320309] = "inv_weapon_crossbow_37", [321296] = "inv_mace_117", + [321404] = "inv_belt_56", + [321405] = "inv_belt_56purple", + [321406] = "inv_belt_56red", + [321407] = "inv_boots_leather_05", + [321408] = "inv_boots_leather_05purple", + [321409] = "inv_boots_leather_05red", + [321410] = "inv_chest_leather_19", + [321411] = "inv_chest_leather_19purple", + [321412] = "inv_chest_leather_19red", + [321413] = "inv_gauntlets_81", + [321414] = "inv_gauntlets_81purple", + [321415] = "inv_gauntlets_81red", + [321416] = "inv_pants_leather_31", + [321417] = "inv_pants_leather_31purple", + [321418] = "inv_pants_leather_31red", + [321487] = "inv_misc_blizzcon09_graphicscard", + [321488] = "inv_misc_blizzcon09_poster", [322118] = "inv_weapon_shortblade_104", + [323402] = "inv_belt_57", + [323403] = "inv_belt_57", + [323404] = "inv_belt_57black", + [323405] = "inv_belt_57silver", + [323406] = "inv_belt_58", + [323407] = "inv_boots_leather_6", + [323408] = "inv_boots_mail_04", + [323409] = "inv_boots_mail_04black", + [323410] = "inv_boots_mail_04silver", + [323411] = "inv_boots_mail_05", + [323412] = "inv_bracer_39", + [323413] = "inv_bracer_39", + [323414] = "inv_chest_cloth_76", + [323415] = "inv_chest_leather_20", + [323416] = "inv_chest_mail_09", + [323417] = "inv_chest_mail_09black", + [323418] = "inv_chest_mail_09silver", + [323419] = "inv_chest_mail_10", + [323420] = "inv_gauntlets_82", + [323421] = "inv_gauntlets_82", + [323422] = "inv_gauntlets_82black", + [323423] = "inv_gauntlets_82silver", + [323424] = "inv_kilt_cloth_01", + [323425] = "inv_pants_leather_32", + [323426] = "inv_pants_mail_30", + [323427] = "inv_pants_mail_30black", + [323428] = "inv_pants_mail_30silver", + [323429] = "inv_pants_mail_31", [324966] = "inv_weapon_shortblade_105", [325906] = "inv_axe_115", [325907] = "inv_axe_116", @@ -6043,15 +6088,43 @@ local icons = { [327842] = "inv_staff_112", [327843] = "inv_sword_156", [327844] = "inv_sword_157", + [327913] = "inv_mask_07", + [327914] = "inv_mask_08", + [327915] = "inv_mask_09", + [327916] = "inv_mask_10", [328269] = "inv_misc_pet_03", [328270] = "inv_misc_pet_04", [328483] = "inv_throwingaxepvp330_08", [328484] = "inv_wand_36", [329349] = "inv_shield_75", [329513] = "inv_offhand_pvp330_d_02", + [329590] = "inv_staff_113", + [329848] = "ability_mount_kodosunwalkerelite", [330082] = "inv_misc_mohawkgrenade", + [330602] = "inv_axe_117", + [330603] = "inv_axe_118", + [330604] = "inv_weapon_shortblade_108", + [331053] = "inv_shield_76", + [331054] = "inv_sword_158", + [331055] = "inv_weapon_shortblade_109", [331124] = "inv_misc_pet_05", + [331151] = "inv_sword_159", + [331436] = "inv_mace_121", + [331437] = "inv_shield_77", + [331438] = "inv_weapon_rifle_40", + [331782] = "inv_mace_122", + [331783] = "inv_weapon_bow_57", + [331784] = "inv_weapon_rifle_41", + [332402] = "inv_chaos_orb", + [332403] = "inv_mace_123", + [332404] = "inv_weapon_bow_58", + [332405] = "inv_weapon_shortblade_110", + [333545] = "inv_axe_119", + [333546] = "inv_sword_160", [334365] = "inv_misc_frostemblem_01", + [334463] = "inv_mace_124", + [334464] = "inv_weapon_bow_59", + [335602] = "inv_shield_78", [335910] = "inv_jewelry_ring_81", [335911] = "inv_jewelry_ring_82", [335962] = "inv_jewelry_ring_83", @@ -6182,6 +6255,7 @@ local icons = { [341980] = "achievement_boss_sindragosa", [341981] = "achievement_dungeon_crimsonhall", [342402] = "achievement_dungeon_frozenthrone", + [342424] = "inv_axe_121", [342513] = "inv_belt_69", [342514] = "inv_boots_mail_07", [342515] = "inv_bracer_48", @@ -6197,6 +6271,7 @@ local icons = { [342917] = "achievement_boss_lordmarrowgar", [342918] = "achievement_dungeon_hordeairship", [342919] = "achievement_dungeon_plaguewing", + [343560] = "inv_sword_161", [343631] = "achievement_boss_bronjahm", [343632] = "achievement_boss_devourerofsouls", [343633] = "achievement_boss_lanathel", @@ -6232,6 +6307,12 @@ local icons = { [344560] = "inv_helmet_160", [344561] = "inv_pants_mail_34", [344562] = "inv_shoulder_123", + [344799] = "inv_belt_73", + [344800] = "inv_bracer_52", + [344801] = "inv_chest_cloth_82", + [344802] = "inv_kilt_cloth_03", + [344803] = "inv_weapon_rifle_42", + [344804] = "spell_festergutgas", [345787] = "ability_mount_pegasus", [346945] = "inv_belt_74", [346946] = "inv_boots_cloth_29", @@ -6240,6 +6321,8 @@ local icons = { [346949] = "inv_gauntlets_97", [346950] = "inv_helmet_161", [346951] = "inv_pants_leather_36", + [346991] = "inv_weapon_rifle_43", + [347429] = "inv_weapon_rifle_44", [347735] = "inv_belt_77", [347736] = "inv_boots_plate_18", [347737] = "inv_bracer_56", @@ -6255,6 +6338,7 @@ local icons = { [347854] = "inv_helmet_165", [347855] = "inv_pants_cloth_37", [347856] = "inv_shoulder_127", + [347920] = "inv_misc_fish_77", [348273] = "achievement_festergutrotface", [348274] = "achievement_forgemaster", [348275] = "achievement_kickandfrick", @@ -6271,13 +6355,99 @@ local icons = { [348286] = "item_icecrownringb", [348287] = "item_icecrownringc", [348288] = "item_icecrownringd", + [348519] = "inv_misc_bag_29", + [348520] = "inv_misc_bag_30", + [348521] = "inv_misc_bag_31", + [348522] = "inv_misc_bag_32", + [348523] = "inv_misc_bag_33", + [348524] = "inv_misc_bag_34", + [348525] = "inv_misc_bag_35", + [348526] = "inv_misc_bag_36", + [348527] = "inv_misc_bag_37", + [348528] = "inv_misc_fish_78", + [348529] = "inv_misc_fish_79", + [348530] = "inv_misc_fish_80", + [348531] = "inv_misc_fish_81", + [348532] = "inv_misc_fish_82", + [348533] = "item_alchemiststone", + [348534] = "item_alchemiststoneb", + [348535] = "item_alchemiststonec", + [348536] = "item_azereansphere", + [348537] = "item_cutmetagem", + [348538] = "item_cutmetagemb", + [348539] = "item_earthenmight", + [348540] = "item_elementiumbar", + [348541] = "item_elementiumkey", + [348542] = "item_elementiumore", + [348543] = "item_embercloth", + [348544] = "item_emberclothbolt", + [348545] = "item_enchantedpearl", + [348546] = "item_fierysilkgland", + [348547] = "item_herbc", + [348548] = "item_herbd", + [348549] = "item_imbuedembercloth", + [348550] = "item_moonclothbolt", + [348551] = "item_pristinehide", + [348552] = "item_pristineleather", + [348553] = "item_pyriumbar", + [348554] = "item_pyriumkey", + [348555] = "item_pyriumore", + [348556] = "item_savageleather", + [348557] = "item_savageleatherhide", + [348558] = "item_shadowcloth", + [348559] = "item_socketedbracer", + [348560] = "item_sparkofragnoros", + [348561] = "item_spellclothbolt", + [348562] = "item_spellcloththread", + [348563] = "item_uncutmetagem", + [348564] = "item_uncutmetagemb", + [348565] = "spell_deathvortex", + [348566] = "spell_lfieblood", + [348567] = "spell_lifegivingspeed", [348766] = "inv_boots_leather_9", [348767] = "inv_bracer_57", [348768] = "inv_chest_leather_25", [348769] = "inv_helmet_166", [348770] = "inv_pants_leather_37", + [349113] = "inv_belt_79", + [349114] = "inv_boots_cloth_31", + [349115] = "inv_chest_cloth_84", + [349116] = "inv_kilt_cloth_04", + [349117] = "inv_misc_fish_84", + [349503] = "inv_misc_fish_86", + [349504] = "inv_misc_fish_87", [349759] = "inv_shoulder_129", [349760] = "inv_shoulder_130", + [350558] = "inv_misc_food_meat_cooked_01", + [350559] = "inv_misc_food_meat_cooked_02", + [350560] = "inv_misc_food_meat_cooked_03", + [350561] = "inv_misc_food_meat_cooked_04", + [350562] = "inv_misc_food_meat_cooked_05", + [350563] = "inv_misc_food_meat_cooked_06", + [350564] = "inv_misc_food_meat_cooked_07", + [350565] = "inv_misc_food_meat_cooked_08", + [350566] = "inv_misc_food_meat_cooked_09", + [350567] = "inv_misc_food_meat_cooked_10", + [350568] = "inv_misc_food_meat_raw_01", + [350569] = "inv_misc_food_meat_raw_02", + [350570] = "inv_misc_food_meat_raw_03", + [350571] = "inv_misc_food_meat_raw_04", + [350572] = "inv_misc_food_meat_raw_05", + [350573] = "inv_misc_food_meat_raw_06", + [350574] = "inv_misc_food_meat_raw_07", + [350575] = "inv_misc_food_meat_raw_08", + [350576] = "inv_misc_food_meat_raw_09", + [350577] = "inv_misc_food_meat_raw_10", + [350646] = "inv_belt_80", + [350647] = "inv_boots_leather_10", + [350648] = "inv_chest_leather_26", + [350649] = "inv_gauntlets_102", + [350650] = "inv_misc_fish_88", + [350651] = "inv_pants_leather_38", + [350867] = "inv_misc_fish_83", + [350868] = "inv_misc_fish_85", + [350869] = "inv_misc_fish_89", + [350870] = "inv_misc_fish_90", [351027] = "inv_belt_82", [351028] = "inv_boots_cloth_32", [351029] = "inv_bracer_59", @@ -6286,6 +6456,14 @@ local icons = { [351032] = "inv_helmet_168", [351033] = "inv_pants_cloth_38", [351034] = "inv_shoulder_132", + [351042] = "inv_misc_ticket_tarot_beasts02", + [351043] = "inv_misc_ticket_tarot_blessing", + [351044] = "inv_misc_ticket_tarot_elemental02", + [351045] = "inv_misc_ticket_tarot_lunacy02", + [351046] = "inv_misc_ticket_tarot_nobles", + [351047] = "inv_misc_ticket_tarot_rogue", + [351048] = "inv_misc_ticket_tarot_swords", + [351049] = "inv_misc_ticket_tarot_warlords02", [351058] = "inv_belt_83", [351059] = "inv_boots_mail_10", [351060] = "inv_bracer_60", @@ -6295,21 +6473,2479 @@ local icons = { [351064] = "inv_kilt_mail_01", [351065] = "inv_pants_mail_35", [351066] = "inv_shoulder_133", + [351457] = "inv_helmet_170", + [351499] = "inv_misc_food_154_fish_77", + [351500] = "inv_misc_food_155_fish_78", + [351501] = "inv_misc_food_156_fish_79", + [351502] = "inv_misc_food_157_fish_80", + [351503] = "inv_misc_food_158_fish_81", + [351504] = "inv_misc_food_159_fish_82", + [351505] = "inv_misc_food_160_fish_87", + [351506] = "inv_misc_food_161_fish_89", + [351507] = "inv_misc_food_162_fish_90", + [351508] = "inv_misc_food_163_fish_91", + [352004] = "inv_staff_114", + [352658] = "inv_axe_122", + [353135] = "inv_mace_125", + [353136] = "inv_weapon_shortblade_111", [353520] = "inv_helmet_171", + [353645] = "inv_weapon_shortblade_112", + [354434] = "inv_mace_126", + [354435] = "inv_misc_book_16", + [354436] = "inv_weapon_bow_60", + [354719] = "inv_misc_book_17", + [355498] = "inv_misc_book_18", + [356213] = "inv_belt_85", + [356214] = "inv_boots_cloth_33", + [356215] = "inv_bracer_62", + [356216] = "inv_chest_cloth_86", + [356217] = "inv_gauntlets_99", + [356218] = "inv_helmet_173", + [356219] = "inv_pants_cloth_39", + [356220] = "inv_shoulder_134", + [356428] = "inv_belt_86", + [356429] = "inv_boots_plate_19", + [356430] = "inv_bracer_63", + [356431] = "inv_chest_plate27", + [356432] = "inv_gauntlets_107", + [356433] = "inv_helmet_174", + [356434] = "inv_pants_plate_38", + [356435] = "inv_shoulder_135", [357245] = "inv_helmet_150red", [357262] = "inv_shoulder_128", + [357552] = "inv_belt_87", + [357553] = "inv_boots_leather_11", + [357554] = "inv_bracer_64", + [357555] = "inv_chest_leather_27", + [357556] = "inv_helmet_175", + [357557] = "inv_pants_leather_39", + [357558] = "inv_shoulder_136", + [357559] = "inv_weapon_hand_35", + [357813] = "inv_helmet_176", + [358687] = "inv_fishingpole_07", + [359494] = "inv_belt_88", + [359495] = "inv_boots_plate_20", + [359496] = "inv_bracer_65", + [359497] = "inv_chest_plate28", + [359498] = "inv_gauntlets_106", + [359499] = "inv_gauntlets_108", + [359500] = "inv_helmet_177", + [359501] = "inv_pants_plate_39", + [359502] = "inv_shoulder_137", + [359725] = "inv_belt_89", + [359726] = "inv_boots_mail_12", + [359727] = "inv_bracer_66", + [359728] = "inv_chest_mail_17", + [359729] = "inv_gauntlets_109", + [359730] = "inv_helmet_178", + [359731] = "inv_pants_mail_37", + [359732] = "inv_shoulder_138", + [360285] = "inv_belt_90", + [360286] = "inv_boots_leather_12", + [360287] = "inv_bracer_67", + [360288] = "inv_chest_leather_28", + [360289] = "inv_helmet_179", + [360290] = "inv_pants_leather_40", + [360291] = "inv_shoulder_139", + [361370] = "inv_belt_91", + [361371] = "inv_boots_leather_13", + [361372] = "inv_bracer_68", + [361373] = "inv_chest_leather_29", + [361374] = "inv_gauntlets_110", + [361375] = "inv_helmet_180", + [361376] = "inv_pants_leather_41", + [361377] = "inv_shoulder_140", + [363206] = "inv_belt_93", + [363207] = "inv_boots_plate_21", + [363209] = "inv_bracer_70", + [363210] = "inv_helmet_182", + [363211] = "inv_pants_plate_40", + [363212] = "inv_shoulder_142", + [364321] = "inv_belt_94", + [364322] = "inv_boots_leather_14", + [364323] = "inv_boots_mail_13", + [364324] = "inv_bracer_71", + [364325] = "inv_chest_leather_30", + [364326] = "inv_chest_mail_18", + [364327] = "inv_gauntlets_112", + [364328] = "inv_helmet_183", + [364329] = "inv_pants_leather_42", + [364330] = "inv_pants_mail_38", + [364331] = "inv_shoulder_143", + [366042] = "inv_belt_92", + [366043] = "inv_boots_cloth_34", + [366044] = "inv_bracer_69", + [366045] = "inv_chest_cloth_87", + [366046] = "inv_gauntlets_111", + [366047] = "inv_pants_cloth_40", + [366048] = "inv_shoulder_141", + [366054] = "inv_belt_96", + [366055] = "inv_belt_97", + [366056] = "inv_boots_cloth_35", + [366057] = "inv_bracer_72", + [366058] = "inv_bracer_73", + [366059] = "inv_chest_cloth_88", + [366060] = "inv_helmet_184", + [366061] = "inv_helmet_185", + [366063] = "inv_shoulder_144", + [366064] = "inv_shoulder_145", + [366251] = "inv_belt_95", + [366252] = "inv_gauntlets_113", + [366397] = "inv_gauntlets_114", + [366402] = "inv_chest_plate29", + [366473] = "inv_bracer_74", + [366751] = "inv_helmet_181", + [366767] = "inv_staff_115", + [366768] = "inv_weapon_shortblade_113", + [366795] = "inv_gauntlets_115", + [366799] = "inv_gauntlets_116", + [366800] = "inv_kilt_cloth_05", + [366828] = "inv_bracer_75", + [366829] = "inv_chest_plate30", + [366830] = "inv_gauntlets_117", + [366831] = "inv_pants_plate_41", + [366936] = "ability_racial_aberration", + [366937] = "ability_racial_darkflight", + [366938] = "ability_racial_flayer", + [366939] = "ability_racial_twoforms", + [366940] = "ability_racial_viciousness", + [366995] = "inv_pants_cloth_41", + [367030] = "inv_bracer_76", + [367031] = "inv_bracer_77", + [367032] = "inv_gauntlets_118", + [367033] = "inv_helmet_186", + [367034] = "inv_pants_cloth_42", + [367035] = "inv_shoulder_146", + [367070] = "inv_belt_84", + [367071] = "inv_boots_mail_11", + [367072] = "inv_bracer_61", + [367073] = "inv_chest_mail_16", + [367074] = "inv_gauntlets_105", + [367075] = "inv_pants_mail_36", + [367300] = "inv_belt_cloth_pvpwarlock_c_01", + [367301] = "inv_chest_cloth_pvpwarlock_c_01", + [367302] = "nv_boots_cloth_pvpwarlock_c_01", + [367594] = "inv_belt_plate_pvpdeathknight_c_01", + [367595] = "inv_boots_plate_pvpdeathknight_c_01", + [367596] = "inv_bracer_plate_pvpdeathknight_c_01", + [367597] = "inv_chest_plate_pvpdeathknight_c_01", + [367598] = "inv_gauntlets_plate_pvpdeathknight_c_01", + [367599] = "inv_helm_plate_pvpdeathknight_c_01", + [367600] = "inv_mace_2h_grimbatolraid_d_01", + [367601] = "inv_pants_plate_pvpdeathknight_c_01", + [367602] = "inv_shoulder_plate_pvpdeathknight_c_01", + [367810] = "inv_belt_98", + [367811] = "inv_boots_mail_14", + [367812] = "inv_bracer_78", + [367813] = "inv_chest_mail_19", + [367814] = "inv_helmet_187", + [367815] = "inv_pants_mail_39", + [367816] = "inv_shoulder_147", + [367843] = "inv_gauntlets_119", + [367844] = "inv_belt_99", + [367845] = "inv_gauntlets_120", + [367846] = "inv_helmet_188", + [367847] = "inv_shoulder_148", + [367889] = "inv_gauntlets_121", [368365] = "inv_pet_celestialdragon", + [368366] = "inv_stave_2h_bwdraid_d_01", + [368552] = "inv_boots_plate_22", + [368862] = "inv_belt_leather_pvprogue_c_01", + [368863] = "inv_boots_leather_pvprogue_c_01", + [368864] = "inv_bracer_leather_pvprogue_c_01", + [368865] = "inv_glove_leather_pvprogue_c_01", + [368866] = "inv_helmet_leather_pvprogue_c_01", + [368867] = "inv_pants_leather_pvprogue_c_01", + [368868] = "inv_sword_2h_grimbatolraid_d_01", + [368979] = "inv_knife_1h_grimbatolraid_d_01", + [369214] = "ability_racial_timeismoney", [369225] = "ability_mount_celestialhorse", + [369226] = "inv_hand_1h_grimbatolraid_d_01", + [369278] = "ability_racial_rocketbarrage", + [369279] = "inv_axe_1h_bwdraid_d_01", + [369280] = "inv_polearm_2h_bwdraid_d_01", + [369281] = "inv_sword_1h_bwdraid_d_01", + [369410] = "inv_mace_1h_bwdraid_d_01", + [369760] = "ability_racial_bestdealsanywhere", + [369761] = "inv_knife_1h_bwdraid_d_01", + [370211] = "ability_racial_packhobgoblin", + [370252] = "inv_stave_2h_grimbatolraid_d_01", [370404] = "ability_mount_frostyflyingcarpet", [370664] = "ability_mount_rocketmount2", + [370670] = "ability_racial_betterlivingthroughchemistry", + [370769] = "ability_racial_rocketjump", + [370770] = "inv_hand_1h_bwdraid_d_01", + [371335] = "inv_boots_mail_15", + [371336] = "inv_chest_mail_20", + [371337] = "inv_pants_mail_40", + [371395] = "inv_axe_2h_grimbatolraid_d_01", + [371788] = "inv_knife_1h_grimbatolraid_d_02", + [372088] = "inv_stave_2h_bwdraid_d_02", + [372094] = "inv_bow_2h_crossbow_grimbatolraid_d_01", + [372198] = "inv_wand_1h_grimbatolraid_d_01", + [372947] = "inv_stave_2h_grimbatolraid_d_02", + [373602] = "inv_firearm_2h_rifle_bwdraid_d_01", + [373990] = "inv_sword_1h_bwdraid_d_02", + [374279] = "inv_wand_1h_bwdraid_d_01", + [375467] = "inv_bow_1h_bwdraid_d_01", + [375468] = "inv_knife_1h_bwdraid_d_02", + [375532] = "inv_sword_1h_grimbatolraid_d_02", + [376022] = "inv_knife_1h_grimbatolraid_d_03", + [376248] = "inv_mace_1h_grimbatolraid_d_01", + [376249] = "inv_sword_1h_cataclysm_b_01", + [376716] = "inv_mace_1h_grimbatolraid_d_02", + [376832] = "inv_polearm_2h_cataclysm_b_01", + [376833] = "inv_polearm_2h_cataclysm_b_02", + [376834] = "inv_shield_cataclysm_b_01", [377270] = "inv_misc_rubysanctum1", [377271] = "inv_misc_rubysanctum2", [377272] = "inv_misc_rubysanctum3", [377273] = "inv_misc_rubysanctum4", + [377283] = "inv_firearm_2h_rifle_cataclysm_b_01", + [377284] = "inv_sword_2h_cataclysm_b_01", + [377988] = "inv_axe_1h_cataclysm_b_01", + [377989] = "inv_mace_1h_cataclysm_b_01", + [378603] = "inv_knife_1h_cataclysm_b_01", + [380535] = "inv_shield_cataclysm_b_02", + [380836] = "inv_sword_2h_cataclysm_b_02", + [381028] = "inv_wand_1h_cataclysm_b_01", + [382329] = "inv_hand_1h_cataclysm_b_01", + [382927] = "inv_axe_2h_cataclysm_b_01", + [382928] = "inv_stave_2h_cataclysm_b_01", + [383596] = "inv_bow_1h_cataclysm_b_01", + [383597] = "inv_knife_1h_cataclysm_b_02", + [383691] = "inv_axe_1h_cataclysm_b_02", + [383737] = "inv_wand_1h_cataclysm_b_02", + [383957] = "inv_axe_2h_cataclysm_b_02", + [384458] = "inv_sword_1h_cataclysm_b_02", + [386094] = "inv_mace_1h_cataclysm_b_02", + [386095] = "inv_mace_2h_cataclysm_b_01", + [386406] = "inv_bow_2h_crossbow_cataclysm_b_01", + [386826] = "inv_mace_2h_cataclysm_b_02", [387415] = "t_roboticon", + [388495] = "inv_stave_2h_cataclysm_b_02", + [391123] = "ability_mount_armoredbluewindrider", + [391124] = "inv_belt_plate_twilighthammer_c_01", + [391125] = "inv_boots_plate_twilighthammer_c_01", + [391126] = "inv_bracer_plate_twilighthammer_c_01", + [391127] = "inv_chest_plate_twilighthammer_c_01", + [391128] = "inv_firearm_2h_rifle_cataclysm_b_02", + [391129] = "inv_gauntlets_plate_twilighthammer_c_01", + [391130] = "inv_helm_plate_twilighthammer_c_01", + [391131] = "inv_pants_plate_twilighthammer_c_01", + [391132] = "inv_shoulder_plate_twilighthammer_c_01", + [392103] = "inv_bow_1h_cataclysm_b_02", [394617] = "quest_12252_icon", + [394796] = "inv_bow_2h_crossbow_cataclysm_b_02", + [396545] = "inv_misc_fish_91", + [396546] = "inv_shield_bwdraid_d_01", + [397907] = "levelupicon-lfd", + [399040] = "inv_misc_archstone_01", + [399041] = "inv_misc_reforgedarchstone_01", + [400720] = "inv_shield_bwdraid_d_02", + [402660] = "inv_shield_grimbatolraid_d_02", + [405446] = "inv_shield_grimbatolraid_d_01", + [409544] = "achievement_level_85", + [409545] = "achievement_zone_cataclysm", + [409546] = "achievement_zone_deepholm", + [409548] = "achievement_zone_tolbarad", + [409549] = "achievement_zone_twilighthighlands", + [409550] = "achievement_zone_uldum", + [409551] = "achievement_zone_vashjir", + [409594] = "achievement_dungeon_blackrockcaverns", + [409595] = "achievement_dungeon_deepholm", + [409596] = "achievement_dungeon_grimbatol", + [409599] = "achievement_dungeon_skywall", + [409601] = "achievement_quests_completed_deepholm", + [409602] = "achievement_quests_completed_mounthyjal", + [409603] = "achievement_quests_completed_twilighthighlands", + [409604] = "achievement_quests_completed_uldum", + [409605] = "achievement_quests_completed_vashjir", + [409606] = "achievement_win_gilneas", + [409607] = "achievement_win_twinpeaks", + [412503] = "inv_belt_100", + [412504] = "inv_belt_robe_dungeonrobe_c_04", + [412505] = "inv_boots_plate_23", + [412506] = "inv_boots_robe_dungeonrobe_c_04", + [412507] = "inv_bracer_79", + [412508] = "inv_bracer_robe_dungeonrobe_c_04", + [412509] = "inv_chest_plate_31", + [412510] = "inv_chest_robe_dungeonrobe_c_04", + [412511] = "inv_gauntlets_122", + [412512] = "inv_gauntlets_robe_dungeonrobe_c_04", + [412513] = "inv_helmet_189", + [412514] = "inv_helm_robe_dungeonrobe_c_04", + [412515] = "inv_pants_robe_dungeonrobe_c_04", + [412516] = "inv_shoulder_149", + [412517] = "inv_shoulder_robe_dungeonrobe_c_04", + [413570] = "achievement_guildperk_bartering", + [413571] = "achievement_guildperk_bountifulbags", + [413572] = "achievement_guildperk_cashflow", + [413573] = "achievement_guildperk_cashflow_rank2", + [413578] = "achievement_guildperk_fasttrack", + [413579] = "achievement_guildperk_fasttrack_rank2", + [413580] = "achievement_guildperk_gmail", + [413581] = "achievement_guildperk_happyhour", + [413582] = "achievement_guildperk_hastyhearth", + [413584] = "achievement_guildperk_honorablemention", + [413585] = "achievement_guildperk_honorablemention_rank2", + [413586] = "achievement_guildperk_massresurrection", + [413587] = "achievement_guildperk_mobilebanking", + [413588] = "achievement_guildperk_mountup", + [413589] = "achievement_guildperk_mrpopularity", + [413590] = "achievement_guildperk_mrpopularity_rank2", + [413592] = "achievement_guildperk_reinforce", + [413593] = "achievement_guildperk_reinforce_rank2", + [413594] = "achievement_guildperk_workingovertime", + [414282] = "inv_belt_robe_pvppriest_c_01", + [414283] = "inv_boots_robe_pvppriest_c_01", + [414284] = "inv_bracer_robe_pvppriest_c_01", + [414285] = "inv_chest_robe_pvppriest_c_01", + [414286] = "inv_gauntlets_robe_pvppriest_c_01", + [414287] = "inv_helm_robe_pvppriest_c_01", + [414288] = "inv_misc_diamondring1", + [414289] = "inv_misc_diamondring2", + [414290] = "inv_misc_diamondring3", + [414291] = "inv_misc_emeraldstonering", + [414292] = "inv_misc_kingsring1", + [414293] = "inv_misc_kingsring2", + [414294] = "inv_misc_moodring1", + [414295] = "inv_misc_moodring2", + [414296] = "inv_misc_pearlring1", + [414297] = "inv_misc_pearlring2", + [414298] = "inv_misc_rubystar", + [414299] = "inv_misc_starring1", + [414300] = "inv_misc_starring2", + [414301] = "inv_misc_starring3", + [414302] = "inv_misc_stonering1", + [414303] = "inv_misc_stonering2", + [414304] = "inv_misc_vinering", + [414305] = "inv_pants_robe_pvppriest_c_01", + [414306] = "inv_shoulder_robe_pvppriest_c_01", + [415046] = "achievement_dungeon_blackwingdescent_darkironcouncil", + [415047] = "inv_misc_bonenecklace", + [415048] = "inv_misc_forestnecklace", + [415049] = "inv_misc_silverjadenecklace", + [415050] = "inv_misc_stonenecklace", + [415051] = "inv_misc_stonenecklace2", + [415052] = "inv_misc_thornnecklace", + [415053] = "inv_misc_tolvyr", + [415054] = "inv_misc_tolvyr2", + [418249] = "inv_jewelry_ring_87", + [418250] = "achievement_guildperk_ladyluck", + [418251] = "achievement_guildperk_ladyluck_rank2", + [422794] = "inv_belt_101", + [422795] = "inv_belt_robe_dungeonrobe_c_03", + [422796] = "inv_boots_mail_16", + [422797] = "inv_boots_robe_dungeonrobe_c_03", + [422798] = "inv_bracer_80", + [422799] = "inv_bracer_robe_dungeonrobe_c_03", + [422800] = "inv_chest_mail_21", + [422801] = "inv_chest_robe_dungeonrobe_c_03", + [422802] = "inv_gauntlets_123", + [422803] = "inv_gauntlets_robe_dungeonrobe_c_03", + [422804] = "inv_helmet_190", + [422805] = "inv_helmet_robe_dungeonrobe_c_03", + [422806] = "inv_pants_mail_41", + [422807] = "inv_pants_robe_dungeonrobe_c_03", + [422808] = "inv_shoulder_150", + [422809] = "inv_shoulder_robe_dungeonrobe_c_03", + [424820] = "inv_belt_cloth_cataclysm_b_01", + [424821] = "inv_boots_cloth_cataclysm_b_01", + [424822] = "inv_bracer_cloth_cataclysm_b_01", + [424823] = "inv_chest_cloth_cataclysm_b_01", + [424824] = "inv_gauntlets_cloth_cataclysm_b_01", + [424825] = "inv_helmet_cloth_cataclysm_b_01", + [424826] = "inv_pants_cloth_cataclysm_b_01", + [424827] = "inv_shoulder_cloth_cataclysm_b_01", + [425950] = "spell_fire_twilightcano", + [425951] = "spell_fire_twilightfire", + [425952] = "spell_fire_twilightfireward", + [425953] = "spell_fire_twilightflamebolt", + [425954] = "spell_fire_twilightflamebreath", + [425955] = "spell_fire_twilightflamestrike", + [425956] = "spell_fire_twilighthellfire", + [425957] = "spell_fire_twilightimmolation", + [425958] = "spell_fire_twilightnova", + [425959] = "spell_fire_twilightpyroblast", + [425960] = "spell_fire_twilightrainoffire", + [426391] = "inv_belt_cloth_pvpmage_c_01", + [426392] = "inv_boots_cloth_pvpmage_c_01", + [426393] = "inv_bracer_cloth_pvpmage_c_01", + [426394] = "inv_chest_cloth_pvpmage_c_01", + [426395] = "inv_gauntlets_cloth_pvpmage_c_01", + [426396] = "inv_helm_cloth_pvpmage_c_01", + [426397] = "inv_pants_cloth_pvpmage_c_01", + [426398] = "inv_shoulder_cloth_pvpmage_c_01", + [426494] = "achievement_dungeon_blackwingdescent_raid_atramedes", + [426495] = "inv_belt_leather_cataclysm_b_01", + [426496] = "inv_boots_leather_cataclysm_b_01", + [426497] = "inv_bracer_leather_cataclysm_b_01", + [426498] = "inv_chest_leather_cataclysm_b_01", + [426499] = "inv_gauntlets_leather_cataclysm_b_01", + [426500] = "inv_helmet_leather_cataclysm_b_01", + [426501] = "inv_pants_leather_cataclysm_b_01", + [426502] = "inv_shoulder_leather_cataclysm_b_01", + [427627] = "inv_belt_plate_dungeonplate_c_03", + [427628] = "inv_boots_plate_dungeonplate_c_03", + [427629] = "inv_bracer_plate_dungeonplate_c_03", + [427630] = "inv_chest_plate_dungeonplate_c_03", + [427631] = "inv_glove_plate_dungeonplate_c_03", + [427632] = "inv_helmet_plate_dungeonplate_c_03", + [427633] = "inv_pants_plate_dungeonplate_c_03", + [427634] = "inv_shoulder_plate_dungeonplate_c_03", + [429170] = "inv_belt_102", + [429171] = "inv_belt_robe_common_c_01", + [429172] = "inv_boots_mail_17", + [429173] = "inv_boots_robe_common_c_01", + [429174] = "inv_bracer_81", + [429175] = "inv_bracer_robe_common_c_01", + [429176] = "inv_chest_mail_22", + [429177] = "inv_chest_robe_common_c_01", + [429178] = "inv_gauntlets_124", + [429179] = "inv_gauntlets_robe_common_c_01", + [429180] = "inv_helmet_191", + [429181] = "inv_helmet_robe_common_c_01", + [429182] = "inv_pants_mail_42", + [429183] = "inv_pants_robe_common_c_01", + [429184] = "inv_shoulder_151", + [429185] = "inv_shoulder_robe_common_c_01", + [429380] = "achievement_dungeon_blackwingdescent_raid_maloriak", + [429382] = "spell_arcane_arcanetactics", + [429383] = "spell_arcane_invocation", + [429590] = "spell_burningsoul", + [430969] = "inv_belt_mail_dungeonmail_c_03", + [430970] = "inv_boots_mail_dungeonmail_c_03", + [430971] = "inv_bracer_mail_dungeonmail_c_03", + [430972] = "inv_chest_mail_dungeonmail_c_03", + [430973] = "inv_gauntlets_mail_dungeonmail_c_03", + [430974] = "inv_helmet_mail_dungeonmail_c_03", + [430975] = "inv_mace_1h_cataclysm_c_04", + [430976] = "inv_pants_mail_dungeonmail_c_03", + [430977] = "inv_shoulder_mail_dungeonmail_c_03", + [431759] = "inv_belt_plate_pvpwarrior_c_02", + [431760] = "inv_boots_plate_pvpwarrior_c_02", + [431761] = "inv_bracer_plate_pvpwarrior_c_02", + [431762] = "inv_chest_plate_pvpwarrior_c_02", + [431763] = "inv_glove_plate_pvpwarrior_c_02", + [431764] = "inv_helm_plate_pvpwarrior_c_02", + [431765] = "inv_pants_plate_pvpwarrior_c_02", + [431766] = "inv_shoulder_plate_pvpwarrior_c_02", + [432002] = "achievement_dungeon_blackrockcaverns_ascendantlordobsidius", + [432003] = "achievement_dungeon_blackrockcaverns_beauty", + [432006] = "achievement_dungeon_blackwingdescent_raid_onyxia", + [432008] = "achievement_dungeon_grimbatol_erudax", + [433440] = "ability_mount_seahorse", + [433447] = "inv_axe_1h_cataclysm_c_01", + [433448] = "inv_sword_1h_cataclysm_c_04", + [433449] = "inv_wand_1h_pvp400_c_01", + [433552] = "inv_belt_cloth_cataclysm_b_02", + [433553] = "inv_boots_cloth_cataclysm_b_02", + [433554] = "inv_bracer_cloth_cataclysm_b_02", + [433555] = "inv_chest_cloth_cataclysm_b_02", + [433556] = "inv_gauntlets_cloth_cataclysm_b_02", + [433557] = "inv_helmet_cloth_cataclysm_b_02", + [433558] = "inv_pants_cloth_cataclysm_b_02", + [433559] = "inv_shoulder_cloth_cataclysm_b_02", + [436745] = "inv_belt_plate_pvpwarrior_c_01", + [436746] = "inv_boots_plate_pvpwarrior_c_01", + [436747] = "inv_bracer_plate_pvpwarrior_c_01", + [436748] = "inv_chest_plate_pvpwarrior_c_01", + [436749] = "inv_glove_plate_pvpwarrior_c_01", + [436750] = "inv_helm_plate_pvpwarrior_c_01", + [436751] = "inv_pants_plate_pvpwarrior_c_01", + [436752] = "inv_shoulder_plate_pvpwarrior_c_01", + [436835] = "inv_belt_103", + [436836] = "inv_boots_leather_15", + [436837] = "inv_bracer_82", + [436838] = "inv_chest_leather_31", + [436839] = "inv_gauntlets_125", + [436840] = "inv_helmet_192", + [436841] = "inv_pants_leather_43", + [436842] = "inv_shoulder_152", + [438760] = "inv_axe_2h_cataclysm_c_01", + [441139] = "trade_archaeology", + [441140] = "trade_archaeology_aqir_artifactfragment", + [441141] = "trade_archaeology_aqir_hieroglyphic", + [441142] = "trade_archaeology_arakkoa_artifactfragment", + [441143] = "trade_archaeology_arakkoa_crystalshard", + [441144] = "trade_archaeology_dwarf_artifactfragment", + [441145] = "trade_archaeology_dwarf_runestone", + [441146] = "trade_archaeology_highborne_artifactfragment", + [441147] = "trade_archaeology_highborne_scroll", + [441148] = "trade_archaeology_orc_bloodtext", + [441149] = "trade_archaeology_troll_artifactfragment", + [441150] = "trade_archaeology_troll_tablet", + [441880] = "inv_dragonwhelpcataclysm", [442272] = "achievement_guildperk_everybodysfriend", + [442728] = "inv_mace_1h_cataclysm_c_05", + [442729] = "inv_polearm_2h_cataclysm_c_01", + [442731] = "trade_archaeology_draenei_artifactfragment", + [442732] = "trade_archaeology_draenei_tome", + [442733] = "trade_archaeology_fossil_dinosaurbone", + [442734] = "trade_archaeology_fossil_fern", + [442735] = "trade_archaeology_fossil_snailshell", + [442736] = "trade_archaeology_nerubian_artifactfragment", + [442737] = "trade_archaeology_nerubian_obelisk", + [442738] = "trade_archaeology_orc_artifactfragment", + [442739] = "trade_archaeology_titan_fragment", + [442740] = "trade_archaeology_tuskarr_artifactfragment", + [442741] = "trade_archaeology_tuskarr_stele", + [442742] = "trade_archaeology_vrykul_artifactfragment", + [442743] = "trade_archaeology_vrykul_runestick", + [443320] = "inv_belt_79v2", + [443321] = "inv_belt_79v3", + [443322] = "inv_belt_79v4", + [443323] = "inv_belt_80v2", + [443324] = "inv_belt_80v3", + [443325] = "inv_belt_80v4", + [443326] = "inv_belt_84v2", + [443327] = "inv_belt_84v3", + [443328] = "inv_belt_84v4", + [443329] = "inv_boots_cloth_31v2", + [443330] = "inv_boots_cloth_31v3", + [443331] = "inv_boots_cloth_31v4", + [443332] = "inv_boots_leather_10v2", + [443333] = "inv_boots_leather_10v3", + [443334] = "inv_boots_leather_10v4", + [443335] = "inv_boots_mail_11v2", + [443336] = "inv_boots_mail_11v3", + [443337] = "inv_boots_mail_11v4", + [443338] = "inv_bracer_61v2", + [443339] = "inv_bracer_61v3", + [443340] = "inv_bracer_61v4", + [443341] = "inv_bracer_73v2", + [443342] = "inv_bracer_73v3", + [443343] = "inv_bracer_73v4", + [443344] = "inv_bracer_74v2", + [443345] = "inv_bracer_74v3", + [443346] = "inv_bracer_74v4", + [443347] = "inv_chest_cloth_84v2", + [443348] = "inv_chest_cloth_84v3", + [443349] = "inv_chest_cloth_84v4", + [443350] = "inv_chest_leather_26v2", + [443351] = "inv_chest_leather_26v3", + [443352] = "inv_chest_leather_26v4", + [443353] = "inv_chest_mail_16v2", + [443354] = "inv_chest_mail_16v3", + [443355] = "inv_chest_mail_16v4", + [443356] = "inv_gauntlets_102v2", + [443357] = "inv_gauntlets_102v3", + [443358] = "inv_gauntlets_102v4", + [443359] = "inv_gauntlets_105v2", + [443360] = "inv_gauntlets_105v3", + [443361] = "inv_gauntlets_105v4", + [443362] = "inv_guantlets_114v2", + [443363] = "inv_guantlets_114v3", + [443364] = "inv_guantlets_114v4", + [443365] = "inv_kilt_cloth_04v2", + [443366] = "inv_kilt_cloth_04v3", + [443367] = "inv_kilt_cloth_04v4", + [443368] = "inv_misc_ashenpigment", + [443369] = "inv_misc_blackfollowing", + [443370] = "inv_misc_cat_trinket01", + [443371] = "inv_misc_cat_trinket02", + [443372] = "inv_misc_cat_trinket03", + [443373] = "inv_misc_cat_trinket04", + [443374] = "inv_misc_cat_trinket05", + [443375] = "inv_misc_cat_trinket06", + [443376] = "inv_misc_cat_trinket07", + [443377] = "inv_misc_cat_trinket08", + [443378] = "inv_misc_cat_trinket09", + [443379] = "inv_misc_cat_trinket10", + [443380] = "inv_misc_cat_trinket11", + [443381] = "inv_misc_cat_trinket12", + [443382] = "inv_misc_deepseascales", + [443383] = "inv_misc_dmc01", + [443384] = "inv_misc_dmc03", + [443385] = "inv_misc_dmc_02", + [443386] = "inv_misc_dmc_04", + [443387] = "inv_misc_dmc_05", + [443388] = "inv_misc_dmc_destructiondeck", + [443389] = "inv_misc_dmc_earthquake", + [443390] = "inv_misc_dmc_hurricane", + [443391] = "inv_misc_dmc_tsunami", + [443392] = "inv_misc_dmc_volcano", + [443393] = "inv_misc_embers", + [443394] = "inv_misc_fireink", + [443395] = "inv_misc_goblincup01", + [443396] = "inv_misc_goblincup02", + [443397] = "inv_misc_leather_shellfragment", + [443398] = "inv_pants_cloth_41v2", + [443399] = "inv_pants_cloth_41v3", + [443400] = "inv_pants_cloth_41v4", + [443401] = "inv_pants_leather_38v2", + [443402] = "inv_pants_leather_38v3", + [443403] = "inv_pants_leather_38v4", + [443404] = "inv_pants_mail_36v2", + [443405] = "inv_pants_mail_36v3", + [443406] = "inv_pants_mail_36v4", + [445516] = "inv_gauntlets_114v2", + [445517] = "inv_gauntlets_114v3", + [445518] = "inv_gauntlets_114v4", + [446072] = "inv_belt_85v2", + [446073] = "inv_belt_85v3", + [446074] = "inv_belt_85v4", + [446075] = "inv_belt_92v2", + [446076] = "inv_belt_92v3", + [446077] = "inv_belt_92v4", + [446078] = "inv_belt_97v2", + [446079] = "inv_belt_97v3", + [446080] = "inv_belt_97v4", + [446081] = "inv_boots_cloth_33v2", + [446082] = "inv_boots_cloth_33v3", + [446083] = "inv_boots_cloth_33v4", + [446084] = "inv_boots_cloth_34v2", + [446085] = "inv_boots_cloth_34v3", + [446086] = "inv_boots_cloth_34v4", + [446087] = "inv_boots_cloth_35v2", + [446088] = "inv_boots_cloth_35v3", + [446089] = "inv_boots_cloth_35v4", + [446090] = "inv_bracer_62v2", + [446091] = "inv_bracer_62v3", + [446092] = "inv_bracer_62v4", + [446093] = "inv_bracer_69v2", + [446094] = "inv_bracer_69v3", + [446095] = "inv_bracer_69v4", + [446096] = "inv_bracer_76v2", + [446097] = "inv_bracer_76v3", + [446098] = "inv_bracer_76v4", + [446099] = "inv_chest_cloth_86v2", + [446100] = "inv_chest_cloth_86v3", + [446101] = "inv_chest_cloth_86v4", + [446102] = "inv_chest_cloth_87v2", + [446103] = "inv_chest_cloth_87v3", + [446104] = "inv_chest_cloth_87v4", + [446105] = "inv_chest_cloth_88v2", + [446106] = "inv_chest_cloth_88v3", + [446107] = "inv_chest_cloth_88v4", + [446108] = "inv_firearm_2h_rifle_cataclysm_c_01", + [446109] = "inv_gauntlets_106v2", + [446110] = "inv_gauntlets_106v3", + [446111] = "inv_gauntlets_106v4", + [446112] = "inv_gauntlets_111v2", + [446113] = "inv_gauntlets_111v3", + [446114] = "inv_gauntlets_111v4", + [446115] = "inv_gauntlets_118v2", + [446116] = "inv_gauntlets_118v3", + [446117] = "inv_gauntlets_118v4", + [446118] = "inv_helmet_173v2", + [446119] = "inv_helmet_173v3", + [446120] = "inv_helmet_173v4", + [446121] = "inv_helmet_181v2", + [446122] = "inv_helmet_181v3", + [446123] = "inv_helmet_181v4", + [446124] = "inv_helmet_186v2", + [446125] = "inv_helmet_186v3", + [446126] = "inv_helmet_186v4", + [446127] = "inv_misc_bearcubbrown", + [446128] = "inv_pants_cloth_39v2", + [446129] = "inv_pants_cloth_39v3", + [446130] = "inv_pants_cloth_39v4", + [446131] = "inv_pants_cloth_40v2", + [446132] = "inv_pants_cloth_40v3", + [446133] = "inv_pants_cloth_40v4", + [446134] = "inv_pants_cloth_42v2", + [446135] = "inv_pants_cloth_42v3", + [446136] = "inv_pants_cloth_42v4", + [446137] = "inv_shoulder_134v2", + [446138] = "inv_shoulder_134v3", + [446139] = "inv_shoulder_134v4", + [446140] = "inv_shoulder_141v2", + [446141] = "inv_shoulder_141v3", + [446142] = "inv_shoulder_141v4", + [446143] = "inv_shoulder_146v2", + [446144] = "inv_shoulder_146v3", + [446145] = "inv_shoulder_146v4", + [446906] = "inv_belt_104", + [446907] = "inv_boots_leather_16", + [446908] = "inv_bracer_83", + [446909] = "inv_chest_leather_32", + [446910] = "inv_gauntlets_126", + [446911] = "inv_helmet_193", + [446912] = "inv_mace_1h_hammeroftwilight_d_01", + [446913] = "inv_mace_2h_hammeroftwilight_d_01", + [446914] = "inv_pants_leather_44", + [446915] = "inv_shoulder_153", + [446916] = "inv_stave_2h_cataclysm_c_03", + [450267] = "inv_bow_1h_cataclysm_c_01", + [450904] = "inv_misc_magtheridonshead", + [450905] = "misc_arrowdown", + [450906] = "misc_arrowleft", + [450907] = "misc_arrowlup", + [450908] = "misc_arrowright", + [450937] = "inv_stave_2h_cataclysm_c_02", + [451161] = "spell_druid_thrash", + [451162] = "spell_druid_wildmushroom", + [451163] = "spell_mage_curtainoffrost", + [451164] = "spell_mage_flameorb", + [451165] = "spell_shaman_earthquake", + [451166] = "spell_shaman_focusedstrikes", + [451167] = "spell_shaman_improvedreincarnation", + [451168] = "spell_shaman_improvelavalash", + [451169] = "spell_shaman_lavasurge", + [451170] = "spell_shaman_spiritwalkersgrace", + [454026] = "inv_emberweavebandage1", + [454027] = "inv_emberweavebandage2", + [454028] = "achievement_dungeon_blackwingdescent_raid_nefarian", + [454034] = "inv_helmet_plate_dungeonplage_c_04", + [454035] = "inv_mace_2h_deathwing_d_01", + [454036] = "inv_misc_emberweavecloth", + [454037] = "inv_misc_emberweaveclothbolt", + [454039] = "trade_archaeology_antleredcloakclasp", + [454040] = "trade_archaeology_blackenedstaff", + [454041] = "trade_archaeology_bladedorcscepter", + [454042] = "trade_archaeology_bloodysatyrscepter", + [454043] = "trade_archaeology_burningdemonscepter", + [454044] = "trade_archaeology_candlestub", + [454045] = "trade_archaeology_catstatueemeraldeyes", + [454046] = "trade_archaeology_chestoftinyglassanimals", + [454047] = "trade_archaeology_crackedcrystalvial", + [454048] = "trade_archaeology_delicatemusicbox", + [454049] = "trade_archaeology_dentedshield", + [454050] = "trade_archaeology_engravedscimitarpommel", + [454051] = "trade_archaeology_gemmeddrinkingcup", + [454052] = "trade_archaeology_hairpinsilvermalachite", + [454053] = "trade_archaeology_jeweleddwarfscepter", + [454054] = "trade_archaeology_mithrilnecklace", + [454055] = "trade_archaeology_nerubianspiderscepter", + [454056] = "trade_archaeology_notchedsword", + [454057] = "trade_archaeology_ogre2handedhammer", + [454058] = "trade_archaeology_rustedsteakknife", + [454059] = "trade_archaeology_silverdagger", + [454060] = "trade_archaeology_silverscrollcase", + [454061] = "trade_archaeology_sketchdesertpalace", + [454062] = "trade_archaeology_skullstaff", + [454063] = "trade_archaeology_soapstonescarabnecklace", + [454064] = "trade_archaeology_spinedquillboarscepter", + [454065] = "trade_archaeology_stoneshield", + [454066] = "trade_archaeology_tinybronzescorpion", + [454067] = "trade_archaeology_tinyoasismosaic", + [454068] = "trade_archaeology_trollbatscepter", + [454069] = "trade_archaeology_uldumcanopicjar", + [454070] = "trade_archaeology_wingedhelm", + [454482] = "trade_archaeology_ancientorcshamanheaddress", + [454771] = "ability_mount_camel_brown", + [454772] = "ability_mount_camel_gray", + [454773] = "ability_mount_camel_tan", + [456031] = "thumbsdown", + [456032] = "thumbup", + [456563] = "ability_mount_fossilizedraptor", + [456564] = "inv_misc_tabard_baradinwardens", + [456565] = "inv_misc_tabard_dragonmawclan", + [456566] = "inv_misc_tabard_dragonmawclanpvp", + [456567] = "inv_misc_tabard_earthenring", + [456568] = "inv_misc_tabard_explorersguild", + [456569] = "inv_misc_tabard_forsaken", + [456570] = "inv_misc_tabard_guardiansofhyjal", + [456571] = "inv_misc_tabard_hellscream", + [456572] = "inv_misc_tabard_therazane", + [456573] = "inv_misc_tabard_thereliquary", + [456574] = "inv_misc_tabard_tolvir", + [456575] = "inv_misc_tabard_wildhammerclan", + [456576] = "inv_misc_tabard_wildhammerclanpvp", + [456577] = "inv_staff_116", + [457329] = "ability_hunter_pet_goto", + [457635] = "ability_rogue_improvedrecuperate", + [457636] = "ability_rogue_sanguinaryvein", + [457637] = "ability_rogue_sealfate", + [457654] = "spell_paladin_divinecircle", + [457655] = "spell_priest_mindspike", + [457697] = "inv_belt_86v1", + [457698] = "inv_belt_86v2", + [457699] = "inv_belt_86v3", + [457700] = "inv_belt_87v1", + [457701] = "inv_belt_87v2", + [457702] = "inv_belt_87v3", + [457703] = "inv_belt_88v1", + [457704] = "inv_belt_88v2", + [457705] = "inv_belt_88v3", + [457706] = "inv_belt_89v1", + [457707] = "inv_belt_89v2", + [457708] = "inv_belt_89v3", + [457709] = "inv_belt_90v1", + [457710] = "inv_belt_90v2", + [457711] = "inv_belt_90v3", + [457712] = "inv_belt_91v1", + [457713] = "inv_belt_91v2", + [457714] = "inv_belt_91v3", + [457715] = "inv_belt_93v1", + [457716] = "inv_belt_93v2", + [457717] = "inv_belt_93v3", + [457718] = "inv_belt_94v1", + [457719] = "inv_belt_94v2", + [457720] = "inv_belt_94v3", + [457721] = "inv_belt_95v1", + [457722] = "inv_belt_95v2", + [457723] = "inv_belt_95v3", + [457724] = "inv_belt_96v1", + [457725] = "inv_belt_96v2", + [457726] = "inv_belt_96v3", + [457727] = "inv_belt_98v1", + [457728] = "inv_belt_98v2", + [457729] = "inv_belt_98v3", + [457730] = "inv_belt_99v1", + [457731] = "inv_belt_99v2", + [457732] = "inv_belt_99v3", + [457733] = "inv_belt_robe_common_c_01v1", + [457734] = "inv_belt_robe_common_c_01v2", + [457735] = "inv_belt_robe_common_c_01v3", + [457736] = "inv_boots_leather_11v1", + [457737] = "inv_boots_leather_11v2", + [457738] = "inv_boots_leather_11v3", + [457739] = "inv_boots_leather_12v1", + [457740] = "inv_boots_leather_12v2", + [457741] = "inv_boots_leather_12v3", + [457742] = "inv_boots_leather_13v1", + [457743] = "inv_boots_leather_13v2", + [457744] = "inv_boots_leather_13v3", + [457745] = "inv_boots_leather_14v1", + [457746] = "inv_boots_leather_14v2", + [457747] = "inv_boots_leather_14v3", + [457748] = "inv_boots_mail_12v1", + [457749] = "inv_boots_mail_12v2", + [457750] = "inv_boots_mail_12v3", + [457751] = "inv_boots_mail_13v1", + [457752] = "inv_boots_mail_13v2", + [457753] = "inv_boots_mail_13v3", + [457754] = "inv_boots_mail_14v1", + [457755] = "inv_boots_mail_14v2", + [457756] = "inv_boots_mail_14v3", + [457757] = "inv_boots_mail_15v1", + [457758] = "inv_boots_mail_15v2", + [457759] = "inv_boots_mail_15v3", + [457760] = "inv_boots_plate_19v1", + [457761] = "inv_boots_plate_19v2", + [457762] = "inv_boots_plate_19v3", + [457763] = "inv_boots_plate_20v1", + [457764] = "inv_boots_plate_20v2", + [457765] = "inv_boots_plate_20v3", + [457766] = "inv_boots_plate_21v1", + [457767] = "inv_boots_plate_21v2", + [457768] = "inv_boots_plate_21v3", + [457769] = "inv_boots_plate_22v1", + [457770] = "inv_boots_plate_22v2", + [457771] = "inv_boots_plate_22v3", + [457772] = "inv_boots_robe_common_c_01v1", + [457773] = "inv_boots_robe_common_c_01v2", + [457774] = "inv_boots_robe_common_c_01v3", + [457775] = "inv_bracer_63v1", + [457776] = "inv_bracer_63v2", + [457777] = "inv_bracer_63v3", + [457778] = "inv_bracer_64v1", + [457779] = "inv_bracer_64v2", + [457780] = "inv_bracer_64v3", + [457781] = "inv_bracer_65v1", + [457782] = "inv_bracer_65v2", + [457783] = "inv_bracer_65v3", + [457784] = "inv_bracer_66v1", + [457785] = "inv_bracer_66v2", + [457786] = "inv_bracer_66v3", + [457787] = "inv_bracer_67v1", + [457788] = "inv_bracer_67v2", + [457789] = "inv_bracer_67v3", + [457790] = "inv_bracer_68v1", + [457791] = "inv_bracer_68v2", + [457792] = "inv_bracer_68v3", + [457793] = "inv_bracer_70v1", + [457794] = "inv_bracer_70v2", + [457795] = "inv_bracer_70v3", + [457796] = "inv_bracer_71v1", + [457797] = "inv_bracer_71v2", + [457798] = "inv_bracer_71v3", + [457799] = "inv_bracer_72v1", + [457800] = "inv_bracer_72v2", + [457801] = "inv_bracer_72v3", + [457802] = "inv_bracer_75v1", + [457803] = "inv_bracer_75v2", + [457804] = "inv_bracer_75v3", + [457805] = "inv_bracer_77v1", + [457806] = "inv_bracer_77v2", + [457807] = "inv_bracer_77v3", + [457808] = "inv_bracer_78v1", + [457809] = "inv_bracer_78v2", + [457810] = "inv_bracer_78v3", + [457811] = "inv_bracer_robe_common_c_01v1", + [457812] = "inv_bracer_robe_common_c_01v2", + [457813] = "inv_bracer_robe_common_c_01v3", + [457814] = "inv_chest_leather_27v1", + [457815] = "inv_chest_leather_27v2", + [457816] = "inv_chest_leather_27v3", + [457817] = "inv_chest_leather_28v1", + [457818] = "inv_chest_leather_28v2", + [457819] = "inv_chest_leather_28v3", + [457820] = "inv_chest_leather_29v1", + [457821] = "inv_chest_leather_29v2", + [457822] = "inv_chest_leather_29v3", + [457823] = "inv_chest_leather_30v1", + [457824] = "inv_chest_leather_30v2", + [457825] = "inv_chest_leather_30v3", + [457826] = "inv_chest_mail_17v1", + [457827] = "inv_chest_mail_17v2", + [457828] = "inv_chest_mail_17v3", + [457829] = "inv_chest_mail_18v1", + [457830] = "inv_chest_mail_18v2", + [457831] = "inv_chest_mail_18v3", + [457832] = "inv_chest_mail_19v1", + [457833] = "inv_chest_mail_19v2", + [457834] = "inv_chest_mail_19v3", + [457835] = "inv_chest_mail_20v1", + [457836] = "inv_chest_mail_20v2", + [457837] = "inv_chest_mail_20v3", + [457838] = "inv_chest_plate27v1", + [457839] = "inv_chest_plate27v2", + [457840] = "inv_chest_plate27v3", + [457841] = "inv_chest_plate28v1", + [457842] = "inv_chest_plate28v2", + [457843] = "inv_chest_plate28v3", + [457844] = "inv_chest_plate29v1", + [457845] = "inv_chest_plate29v2", + [457846] = "inv_chest_plate29v3", + [457847] = "inv_chest_plate30v1", + [457848] = "inv_chest_plate30v2", + [457849] = "inv_chest_plate30v3", + [457850] = "inv_chest_robe_common_c_01v1", + [457851] = "inv_chest_robe_common_c_01v2", + [457852] = "inv_chest_robe_common_c_01v3", + [457853] = "inv_gauntlets_107v1", + [457854] = "inv_gauntlets_107v2", + [457855] = "inv_gauntlets_107v3", + [457856] = "inv_gauntlets_108v1", + [457857] = "inv_gauntlets_108v2", + [457858] = "inv_gauntlets_108v3", + [457859] = "inv_gauntlets_109v1", + [457860] = "inv_gauntlets_109v2", + [457861] = "inv_gauntlets_109v3", + [457862] = "inv_gauntlets_110v1", + [457863] = "inv_gauntlets_110v2", + [457864] = "inv_gauntlets_110v3", + [457865] = "inv_gauntlets_112v1", + [457866] = "inv_gauntlets_112v2", + [457867] = "inv_gauntlets_112v3", + [457868] = "inv_gauntlets_113v1", + [457869] = "inv_gauntlets_113v2", + [457870] = "inv_gauntlets_113v3", + [457871] = "inv_gauntlets_115v1", + [457872] = "inv_gauntlets_115v2", + [457873] = "inv_gauntlets_115v3", + [457874] = "inv_gauntlets_116v1", + [457875] = "inv_gauntlets_116v2", + [457876] = "inv_gauntlets_116v3", + [457877] = "inv_gauntlets_117v1", + [457878] = "inv_gauntlets_117v2", + [457879] = "inv_gauntlets_117v3", + [457880] = "inv_gauntlets_119v1", + [457881] = "inv_gauntlets_119v2", + [457882] = "inv_gauntlets_119v3", + [457883] = "inv_gauntlets_120v1", + [457884] = "inv_gauntlets_120v2", + [457885] = "inv_gauntlets_120v3", + [457886] = "inv_gauntlets_121v1", + [457887] = "inv_gauntlets_121v2", + [457888] = "inv_gauntlets_121v3", + [457889] = "inv_gauntlets_robe_common_c_01v1", + [457890] = "inv_gauntlets_robe_common_c_01v2", + [457891] = "inv_gauntlets_robe_common_c_01v3", + [457892] = "inv_helmet_174v1", + [457893] = "inv_helmet_174v2", + [457894] = "inv_helmet_174v3", + [457895] = "inv_helmet_175v1", + [457896] = "inv_helmet_175v2", + [457897] = "inv_helmet_175v3", + [457898] = "inv_helmet_177v1", + [457899] = "inv_helmet_177v2", + [457900] = "inv_helmet_177v3", + [457901] = "inv_helmet_178v1", + [457902] = "inv_helmet_178v2", + [457903] = "inv_helmet_178v3", + [457904] = "inv_helmet_179v1", + [457905] = "inv_helmet_179v2", + [457906] = "inv_helmet_179v3", + [457907] = "inv_helmet_180v1", + [457908] = "inv_helmet_180v2", + [457909] = "inv_helmet_180v3", + [457910] = "inv_helmet_182v1", + [457911] = "inv_helmet_182v2", + [457912] = "inv_helmet_182v3", + [457913] = "inv_helmet_183v1", + [457914] = "inv_helmet_183v2", + [457915] = "inv_helmet_183v3", + [457916] = "inv_helmet_184v1", + [457917] = "inv_helmet_184v2", + [457918] = "inv_helmet_184v3", + [457919] = "inv_helmet_185v1", + [457920] = "inv_helmet_185v2", + [457921] = "inv_helmet_185v3", + [457922] = "inv_helmet_187v1", + [457923] = "inv_helmet_187v2", + [457924] = "inv_helmet_187v3", + [457925] = "inv_helmet_188v1", + [457926] = "inv_helmet_188v2", + [457927] = "inv_helmet_188v3", + [457928] = "inv_helmet_robe_common_c_01v1", + [457929] = "inv_helmet_robe_common_c_01v2", + [457930] = "inv_helmet_robe_common_c_01v3", + [457931] = "inv_pants_leather_39v1", + [457932] = "inv_pants_leather_39v2", + [457933] = "inv_pants_leather_39v3", + [457934] = "inv_pants_leather_40v1", + [457935] = "inv_pants_leather_40v2", + [457936] = "inv_pants_leather_40v3", + [457937] = "inv_pants_leather_41v1", + [457938] = "inv_pants_leather_41v2", + [457939] = "inv_pants_leather_41v3", + [457940] = "inv_pants_leather_42v1", + [457941] = "inv_pants_leather_42v2", + [457942] = "inv_pants_leather_42v3", + [457943] = "inv_pants_mail_37v1", + [457944] = "inv_pants_mail_37v2", + [457945] = "inv_pants_mail_37v3", + [457946] = "inv_pants_mail_38v1", + [457947] = "inv_pants_mail_38v2", + [457948] = "inv_pants_mail_38v3", + [457949] = "inv_pants_mail_39v1", + [457950] = "inv_pants_mail_39v2", + [457951] = "inv_pants_mail_39v3", + [457952] = "inv_pants_mail_40v1", + [457953] = "inv_pants_mail_40v2", + [457954] = "inv_pants_mail_40v3", + [457955] = "inv_pants_plate_38v1", + [457956] = "inv_pants_plate_38v2", + [457957] = "inv_pants_plate_38v3", + [457958] = "inv_pants_plate_39v1", + [457959] = "inv_pants_plate_39v2", + [457960] = "inv_pants_plate_39v3", + [457961] = "inv_pants_plate_40v1", + [457962] = "inv_pants_plate_40v2", + [457963] = "inv_pants_plate_40v3", + [457964] = "inv_pants_plate_41v1", + [457965] = "inv_pants_plate_41v2", + [457966] = "inv_pants_plate_41v3", + [457967] = "inv_pants_robe_common_c_01v1", + [457968] = "inv_pants_robe_common_c_01v2", + [457969] = "inv_pants_robe_common_c_01v3", + [457970] = "inv_shoulder_135v1", + [457971] = "inv_shoulder_135v2", + [457972] = "inv_shoulder_135v3", + [457973] = "inv_shoulder_136v1", + [457974] = "inv_shoulder_136v2", + [457975] = "inv_shoulder_136v3", + [457976] = "inv_shoulder_137v1", + [457977] = "inv_shoulder_137v2", + [457978] = "inv_shoulder_137v3", + [457979] = "inv_shoulder_138v1", + [457980] = "inv_shoulder_138v2", + [457981] = "inv_shoulder_138v3", + [457982] = "inv_shoulder_139v1", + [457983] = "inv_shoulder_139v2", + [457984] = "inv_shoulder_139v3", + [457985] = "inv_shoulder_140v1", + [457986] = "inv_shoulder_140v2", + [457987] = "inv_shoulder_140v3", + [457988] = "inv_shoulder_142v1", + [457989] = "inv_shoulder_142v2", + [457990] = "inv_shoulder_142v3", + [457991] = "inv_shoulder_143v1", + [457992] = "inv_shoulder_143v2", + [457993] = "inv_shoulder_143v3", + [457994] = "inv_shoulder_144v1", + [457995] = "inv_shoulder_144v2", + [457996] = "inv_shoulder_144v3", + [457997] = "inv_shoulder_145v1", + [457998] = "inv_shoulder_145v2", + [457999] = "inv_shoulder_145v3", + [458000] = "inv_shoulder_147v1", + [458001] = "inv_shoulder_147v2", + [458002] = "inv_shoulder_147v3", + [458003] = "inv_shoulder_148v1", + [458004] = "inv_shoulder_148v2", + [458005] = "inv_shoulder_148v3", + [458006] = "inv_shoulder_robe_common_c_01v1", + [458007] = "inv_shoulder_robe_common_c_01v2", + [458008] = "inv_shoulder_robe_common_c_01v3", + [458009] = "inv_sword_2h_pvp_c_01", + [458173] = "inv_misc_herb_azsharasveil", + [458174] = "inv_misc_herb_cinderbloom", + [458175] = "inv_misc_herb_heartblossom", + [458176] = "inv_misc_herb_stormvine", + [458180] = "inv_sword_1h_cataclysm_c_01", + [458181] = "inv_sword_1h_cataclysm_c_05", + [458223] = "ability_hunter_aspectofthefox", + [458224] = "ability_mage_timewarp", + [458225] = "ability_priest_archangel", + [458226] = "ability_priest_darkness", + [458227] = "ability_priest_focusedwill", + [458228] = "ability_priest_heavanlyvoice", + [458229] = "ability_priest_shadowyapparition", + [458230] = "ability_priest_silence", + [458235] = "inv_misc_herb_twilightjasmine", + [458238] = "trade_archaeology_cthunspuzzlebox", + [458239] = "trade_archaeology_dinosaurskeleton", + [458240] = "trade_archaeology_draeneirelic", + [458241] = "trade_archaeology_druidprieststatueset", + [458242] = "trade_archaeology_generalbeauregardslaststand", + [458243] = "trade_archaeology_highbornesoulmirror", + [458244] = "trade_archaeology_kaldoreiwindchimes", + [458245] = "trade_archaeology_naarucrystal", + [458246] = "trade_archaeology_oldgodtrinket", + [458252] = "trade_archaeology_shriveledmonkeypaw", + [458254] = "trade_archaeology_theinnkeepersdaughter", + [458255] = "trade_archaeology_tinydinosaurskeleton", + [458256] = "trade_archaeology_troll_voodoodoll", + [458257] = "trade_archaeology_tyrandesfavoritedoll", + [458258] = "trade_archaeology_wispamulet", + [458323] = "inv_belt_mail_dungeonmail_c_04", + [458324] = "inv_boots_mail_dungeonmail_c_04", + [458325] = "inv_bracer_mail_dungeonmail_c_04", + [458326] = "inv_chest_mail_dungeonmail_c_04", + [458327] = "inv_gauntlets_mail_dungeonmail_c_04", + [458328] = "inv_helmet_mail_dungeonmail_c_04", + [458329] = "inv_pants_mail_dungeonmail_c_04", + [458330] = "inv_shoulder_mail_dungeonmail_c_04", + [458412] = "ability_priest_reflectiveshield", + [458717] = "ability_deathknight_boneshield", + [458718] = "ability_deathknight_pillaroffrost", + [458719] = "ability_deathknight_sanguinfortitude", + [458720] = "ability_priest_atonement", + [458721] = "ability_priest_bindingprayers", + [458722] = "ability_priest_soulwarding", + [458723] = "ability_rogue_combatexpertise", + [458724] = "ability_rogue_combatexpertisetga", + [458725] = "ability_rogue_combatreadiness", + [458726] = "ability_rogue_deadliness", + [458727] = "ability_rogue_deadlymomentum", + [458728] = "ability_rogue_recuperate", + [458729] = "ability_rogue_redirect", + [458730] = "ability_rogue_reinforcedleather", + [458731] = "ability_rogue_restlessblades", + [458732] = "ability_rogue_ruthlessness", + [458733] = "ability_rogue_smoke", + [458734] = "ability_rogue_sturdyrecuperate", + [458735] = "ability_rogue_vendetta", + [458736] = "ability_rogue_venomouswounds", + [458737] = "ability_rogue_vigor", + [458772] = "inv_knife_1h_cataclysm_c_01", + [458773] = "inv_mace_127", + [458774] = "inv_sword_1h_cataclysm_c_06", + [458797] = "ability_rogue_blackjack", + [458966] = "ability_deathknight_desolation", + [458967] = "ability_deathknight_summongargoyle", + [458968] = "ability_priest_evangelism", + [458969] = "spell_priest_shadoworbs", + [458970] = "warrior_talent_icon_blitz", + [458971] = "warrior_talent_icon_furyintheblood", + [458972] = "warrior_talent_icon_innerrage", + [458973] = "warrior_talent_icon_lambstotheslaughter", + [458974] = "warrior_talent_icon_singlemindedfury", + [458975] = "warrior_talent_icon_skirmisher", + [458976] = "warrior_talent_icon_thunderstruck", + [459025] = "spell_shaman_convection", + [459026] = "spell_shaman_firenova", + [459027] = "spell_shaman_improvedfirenova", + [459036] = "inv_belt_leather_pvpdruid_c_01", + [459037] = "inv_boots_leather_pvpdruid_c_01", + [459038] = "inv_chest_leather_pvpdruid_c_01", + [459039] = "inv_glove_leather_pvpdruid_c_01", + [459040] = "inv_helm_leather_pvpdruid_c_01", + [459041] = "inv_misc_herb_whiptail", + [459042] = "inv_pants_leather_pvpdruid_c_01", + [459043] = "inv_shoulder_leather_pvpdruid_c_01", + [459044] = "inv_throwingchakrum_01", + [459148] = "inv_misc_herb_dragonsteeth", + [460671] = "inv_mace_1h_cataclysm_c_02", + [460686] = "ability_deathknight_brittlebones", + [460687] = "ability_deathknight_hemorrhagicfever", + [460688] = "ability_deathknight_runicimpowerment", + [460689] = "ability_paladin_conviction", + [460690] = "ability_paladin_protectoroftheinnocent", + [460691] = "ability_rogue_dirtydeeds", + [460692] = "ability_rogue_imrovedrecuperate", + [460693] = "ability_rogue_preparation", + [460694] = "ability_warlock_ancientgrimoire", + [460695] = "ability_warlock_baneofhavoc", + [460696] = "ability_warlock_cremation", + [460697] = "ability_warlock_darkarts", + [460698] = "ability_warlock_inferno", + [460699] = "ability_warlock_jinx", + [460700] = "ability_warlock_soulsiphon", + [460715] = "inv_knife_1h_cataclysm_c_03", + [460716] = "inv_knife_1h_cataclysm_c_04", + [460717] = "inv_sword_1h_cataclysm_c_03", + [460856] = "ability_warlock_impoweredimp", + [460857] = "ability_warlock_soulswap", + [460858] = "ability_warlock_whiplash", + [460881] = "inv_misc_fortunecookie", + [460905] = "ability_rogue_energeticrecovery", + [460952] = "ability_warlock_burningembers", + [460953] = "paladin_icon_speedoflight", + [460954] = "priest_icon_chakra", + [460955] = "priest_icon_innewill", + [460956] = "spell_shaman_primalstrike", + [460957] = "warrior_talent_icon_bloodandthunder", + [460958] = "warrior_talent_icon_deadlycalm", + [460959] = "warrior_talent_icon_mastercleaver", + [461112] = "ability_hunter_bestialdiscipline", + [461113] = "ability_hunter_camouflage", + [461114] = "ability_hunter_cobrashot", + [461115] = "ability_hunter_efficiency", + [461116] = "ability_hunter_efficiency_brown", + [461117] = "ability_hunter_onewithnature", + [461118] = "ability_hunter_pathfinding2", + [461119] = "ability_hunter_posthaste", + [461120] = "ability_hunter_resistanceisfutile", + [461121] = "ability_hunter_sickem", + [461122] = "ability_hunter_traplauncher", + [461125] = "inv_belt_leather_raiddruid_i_01", + [461126] = "inv_boots_leather_raiddruid_i_01", + [461127] = "inv_bracer_leather_raiddruid_i_01", + [461128] = "inv_chest_leather_raiddruid_i_01", + [461129] = "inv_gauntlets_leather_raiddruid_i_01", + [461130] = "inv_helmet_leather_raiddruid_i_01", + [461131] = "inv_misc_food_154_fish_77green", + [461132] = "inv_misc_food_155_fish_78blue", + [461133] = "inv_misc_food_155_fish_78pink", + [461134] = "inv_misc_food_156_fish_yellow", + [461135] = "inv_misc_food_158_fish_redish", + [461136] = "inv_misc_food_159_fish_white", + [461137] = "inv_misc_food_161_fish_white", + [461138] = "inv_misc_food_162_fish_90blue", + [461139] = "inv_misc_stonedragonblue", + [461140] = "inv_misc_stonedragonorange", + [461141] = "inv_misc_stonedragonpurple", + [461142] = "inv_misc_stonedragonred", + [461143] = "inv_misc_stormdragongreen", + [461144] = "inv_misc_stormdragonpale", + [461145] = "inv_misc_stormdragonpurple", + [461146] = "inv_misc_stormdragonred", + [461147] = "inv_pants_leather_raiddruid_i_01", + [461148] = "inv_shoulder_leather_raiddruid_i_01", + [461149] = "inv_wand_1h_cataclysm_c_02", + [461267] = "thumbsup", + [461790] = "achievement_doublerainbow", + [461791] = "inv_banner_tolbarad_alliance", + [461792] = "inv_banner_tolbarad_horde", + [461793] = "inv_belt_leatherraidrogue_i_01", + [461794] = "inv_belt_leather_cataclysm_b_02", + [461795] = "inv_boots_leather_cataclysm_b_02", + [461796] = "inv_boot_leatherraidrogue_i_01", + [461797] = "inv_bracer_leatherraidrogue_i_01", + [461798] = "inv_bracer_leather_cataclysm_b_02", + [461799] = "inv_chest_leatherraidrogue_i_01", + [461800] = "inv_chest_leather_cataclysm_b_02", + [461801] = "inv_drink_28_gilneanfortifiedbrandy", + [461802] = "inv_drink_29_sunkissedwine", + [461803] = "inv_drink_30_blackheartgrog", + [461804] = "inv_drink_31_embalmingfluid", + [461805] = "inv_drink_32_disgustingrotgut", + [461806] = "inv_drink_33_bloodredale", + [461807] = "inv_gauntlets_leather_cataclysm_b_02", + [461808] = "inv_guild_cauldron_a", + [461809] = "inv_guild_cauldron_b", + [461810] = "inv_guild_cloak_alliance_a", + [461811] = "inv_guild_cloak_alliance_b", + [461812] = "inv_guild_cloak_alliance_c", + [461813] = "inv_guild_cloak_horde_a", + [461814] = "inv_guild_cloak_horde_b", + [461815] = "inv_guild_cloak_horde_c", + [461816] = "inv_guild_standard_alliance_a", + [461817] = "inv_guild_standard_alliance_b", + [461818] = "inv_guild_standard_alliance_c", + [461819] = "inv_guild_standard_horde_a", + [461820] = "inv_guild_standard_horde_b", + [461821] = "inv_guild_standard_horde_c", + [461822] = "inv_helmet_leatherraidrogue_i_01", + [461823] = "inv_helmet_leather_cataclysm_b_02", + [461824] = "inv_pants_leather_cataclysm_b_02", + [461825] = "inv_pant_leatherraidrogue_i_01", + [461826] = "inv_shoulder_leatherraidrogue_i_01", + [461827] = "inv_shoulder_leather_cataclysm_b_02", + [461828] = "inv_wand_1h_cataclysm_c_03", + [461846] = "ability_hunter_focusfire", + [461847] = "inv_glyph_primedeathknight", + [461848] = "inv_glyph_primedruid", + [461849] = "inv_glyph_primehunter", + [461850] = "inv_glyph_primemage", + [461851] = "inv_glyph_primepaladin", + [461852] = "inv_glyph_primepriest", + [461853] = "inv_glyph_primerogue", + [461854] = "inv_glyph_primeshaman", + [461855] = "inv_glyph_primewarlock", + [461856] = "inv_glyph_primewarrior", + [461857] = "spell_paladin_clarityofpurpose", + [461858] = "spell_paladin_inquisition", + [461859] = "spell_paladin_lightofdawn", + [461860] = "spell_paladin_templarsverdict", + [462273] = "achievement_cloudnine", + [462274] = "achievement_pvp_p_250k", + [462275] = "achievement_zone_gilneas_01", + [462276] = "bow_1h_pvp400_c_01", + [462324] = "spell_shadow_mindflay", + [462325] = "spell_shaman_unleashweapon_earth", + [462326] = "spell_shaman_unleashweapon_flame", + [462327] = "spell_shaman_unleashweapon_frost", + [462328] = "spell_shaman_unleashweapon_life", + [462329] = "spell_shaman_unleashweapon_wind", + [462337] = "achievement_dungeon_blackwingdescent_raid_chimaron", + [462338] = "achievement_zone_gilneas_02", + [462339] = "spell_arcane_portaltolbarad", + [462340] = "spell_arcane_teleporttolbarad", + [462522] = "achievement_dungeon_thevortexpinnacle_lordertan", + [462523] = "inv_belt_cloth_raidwarlock_i_01", + [462524] = "inv_boots_cloth_raidwarlock_i_01", + [462525] = "inv_bracer_cloth_raidwarlock_i_01", + [462526] = "inv_chest_cloth_raidwarlock_i_01", + [462527] = "inv_gauntlets_cloth_raidwarlock_i_01", + [462528] = "inv_helmet_cloth_raidwarlock_i_01", + [462529] = "inv_misc_baradinscommendation", + [462530] = "inv_misc_cape_cataclysm_caster_b_01", + [462531] = "inv_misc_cape_cataclysm_caster_c_01", + [462532] = "inv_misc_foxkit", + [462533] = "inv_misc_hellscreamscommendation", + [462534] = "inv_misc_tolbaradsearchlight", + [462535] = "inv_pants_cloth_raidwarlock_i_01", + [462536] = "inv_shoulder_cloth_raidwarlock_i_01", + [462650] = "spell_shaman_bindelemental", + [462651] = "spell_shaman_measuredinsight", + [462659] = "achievement_dungeon_thevortexpinnacle_altairus", + [462671] = "achievement_battleground_battleforgilneas", + [462672] = "achievement_doublejeopardy", + [462673] = "achievement_doublejeopardyally", + [462674] = "achievement_doublejeopardyhorde", + [462675] = "achievement_dungeon_thevortexpinnacle_asaad", + [462728] = "achievement_dungeon_blackrockcaverns_karshsteelbender", + [462996] = "inv_axe_1h_pvp400_c_01", + [462997] = "inv_belt_mail_pvphunter_c_01", + [462998] = "inv_belt_plate_pvppaladin_c_01", + [462999] = "inv_boots_mail_pvphunter_c_01", + [463000] = "inv_boots_plate_pvppaladin_c_01", + [463001] = "inv_bracer_mail_pvphunter_c_01", + [463002] = "inv_bracer_plate_pvppaladin_c_01", + [463003] = "inv_chest_mail_pvphunter_c_01", + [463004] = "inv_chest_plate_pvppaladin_c_01", + [463005] = "inv_glove_mail_pvphunter_c_01", + [463006] = "inv_glove_plate_pvppaladin_c_01", + [463007] = "inv_helm_mail_pvphunter_c_01", + [463008] = "inv_helm_plate_pvppaladin_c_01", + [463009] = "inv_pants_plate_pvppaladin_c_01", + [463010] = "inv_pant_mail_pvphunter_c_01", + [463012] = "inv_shoulder_mail_pvphunter_c_01", + [463013] = "inv_shoulder_plate_pvppaladin_c_01", + [463280] = "priest_icon_chakra_blue", + [463281] = "priest_icon_chakra_green", + [463282] = "priest_icon_chakra_red", + [463283] = "spell_druid_stamedingroar", + [463284] = "spell_warlock_demonsoul", + [463285] = "spell_warlock_focusshadow", + [463286] = "spell_warlock_soulburn", + [463444] = "ability_warrior_throwdown", + [463445] = "ability_warrior_throwdown_2", + [463446] = "pvecurrency-justice", + [463447] = "pvecurrency-valor", + [463448] = "pvpcurrency-conquest-alliance", + [463449] = "pvpcurrency-conquest-horde", + [463450] = "pvpcurrency-honor-alliance", + [463451] = "pvpcurrency-honor-horde", + [463453] = "inv_belt_plate_cataclysm_b_02", + [463454] = "inv_boots_plate_cataclysm_b_02", + [463455] = "inv_bracer_plate_cataclysm_b_02", + [463456] = "inv_chest_plate_cataclysm_b_02", + [463457] = "inv_gauntlets_plate_cataclysm_b_02", + [463458] = "inv_helmet_plate_cataclysm_b_02", + [463459] = "inv_misc_addsocketbracer", + [463460] = "inv_misc_addsocketglove", + [463461] = "inv_misc_blackfallowink", + [463462] = "inv_misc_mastersinscription", + [463463] = "inv_misc_metagemuncut_a", + [463464] = "inv_misc_metagemuncut_b", + [463465] = "inv_misc_metagem_a", + [463466] = "inv_misc_metagem_b", + [463467] = "inv_pants_plate_cataclysm_b_02", + [463468] = "inv_shoulder_plate_cataclysm_b_02", + [463478] = "trade_archaeology_blacktrilobite", + [463484] = "trade_archaeology_goldchamberpot", + [463489] = "trade_archaeology_skullmug", + [463490] = "trade_archaeology_trollbatidol", + [463491] = "trade_archaeology_trolllizardfootcharm", + [463493] = "trade_archaeology_whitehydrafigurine", + [463514] = "inv_misc_abyssalclam", + [463515] = "inv_misc_blackironbomb", + [463516] = "inv_misc_blackironore", + [463517] = "inv_misc_crystalepic", + [463518] = "inv_misc_crystalepic2", + [463519] = "inv_misc_cutgemnormal", + [463520] = "inv_misc_cutgemsuperior", + [463521] = "inv_misc_dust", + [463522] = "inv_misc_ebonsteelbar", + [463523] = "inv_misc_elementiumrod", + [463524] = "inv_misc_embercloth", + [463525] = "inv_misc_emberclothbolt", + [463526] = "inv_misc_emberweavebandage", + [463527] = "inv_misc_emberweavebandagelight", + [463528] = "inv_misc_embroidery", + [463529] = "inv_misc_enchantedelementiumrod", + [463530] = "inv_misc_enchantedpyriumrod", + [463531] = "inv_misc_enchantedscroll", + [463532] = "inv_misc_endlesspotion", + [463533] = "inv_misc_fieryspices", + [463534] = "inv_misc_flaskofvolatility", + [463535] = "inv_misc_greateressence", + [463536] = "inv_misc_imbuedembercloth", + [463537] = "inv_misc_largeshard_superior", + [463538] = "inv_misc_legarmorkit", + [463539] = "inv_misc_lesseressence", + [463540] = "inv_misc_lifeblood", + [463541] = "inv_misc_masterofanatomy", + [463542] = "inv_misc_molle", + [463543] = "inv_misc_potionseta", + [463544] = "inv_misc_potionsetb", + [463545] = "inv_misc_potionsetc", + [463546] = "inv_misc_potionsetd", + [463547] = "inv_misc_potionsete", + [463548] = "inv_misc_potionsetf", + [463549] = "inv_misc_pyriumbar", + [463550] = "inv_misc_pyriumgrenade", + [463551] = "inv_misc_pyriumore", + [463552] = "inv_misc_pyriumrod", + [463553] = "inv_misc_savagearmorkit", + [463554] = "inv_misc_savageleatherscraps", + [463555] = "inv_misc_scopea", + [463556] = "inv_misc_scopeb", + [463557] = "inv_misc_skinningknife", + [463558] = "inv_misc_smallshard_superior", + [463559] = "inv_misc_spikedbracer", + [463560] = "inv_misc_steelweaponchain", + [463561] = "inv_misc_stoneoil", + [463562] = "inv_misc_stormlordsfavor", + [463563] = "inv_misc_uncutgemnormal", + [463564] = "inv_misc_uncutgemsuperior", + [463565] = "inv_misc_volatileair", + [463566] = "inv_misc_volatileearth", + [463567] = "inv_misc_volatilefire", + [463568] = "inv_misc_volatilelife", + [463569] = "inv_misc_volatileshadow", + [463570] = "inv_misc_volatilewater", + [463829] = "ability_toughness", + [463830] = "inv_mace_1h_cataclysm_c_01", + [463831] = "inv_misc_cape_cataclysm_melee_b_01", + [463832] = "inv_misc_cape_cataclysm_melee_c_01", + [463833] = "inv_misc_cape_cataclysm_melee_d_01", + [463834] = "inv_misc_tabard_kezan", + [463835] = "priest_spell_leapoffaith_a", + [463836] = "priest_spell_leapoffaith_b", + [463851] = "achievement_general_50kquests", + [463852] = "achievement_general_classact", + [463853] = "inv_misc_enchantedpearla", + [463854] = "inv_misc_enchantedpearlb", + [463855] = "inv_misc_enchantedpearlc", + [463856] = "inv_misc_enchantedpearld", + [463857] = "inv_misc_enchantedpearle", + [463858] = "inv_misc_enchantedpearlf", + [463859] = "inv_misc_potiona2", + [463860] = "inv_misc_potiona3", + [463861] = "inv_misc_potiona4", + [463862] = "inv_misc_potiona5", + [463863] = "inv_misc_potiona6", + [463873] = "inv_bow_1h_pvp400_c_01", + [463874] = "achievement_goblinhead", + [463875] = "achievement_goblinheaddead", + [463876] = "achievement_worganhead", + [463877] = "inv_enchant_dust", + [463878] = "inv_misc_boarshead", + [463879] = "inv_misc_cutgemnormal2", + [463880] = "inv_misc_cutgemnormal3", + [463881] = "inv_misc_cutgemnormal4", + [463882] = "inv_misc_cutgemnormal5", + [463883] = "inv_misc_cutgemsuperior2", + [463884] = "inv_misc_cutgemsuperior3", + [463885] = "inv_misc_cutgemsuperior4", + [463886] = "inv_misc_cutgemsuperior5", + [463887] = "inv_misc_heavysavagearmorkit", + [463888] = "inv_misc_scopec", + [463889] = "inv_misc_uncutgemnormal1", + [463890] = "inv_misc_uncutgemnormal2", + [463891] = "inv_misc_uncutgemnormal3", + [463892] = "inv_misc_uncutgemnormal4", + [463893] = "inv_misc_uncutgemnormal5", + [463894] = "inv_misc_uncutgemsuperior2", + [463895] = "inv_misc_uncutgemsuperior3", + [463896] = "inv_misc_uncutgemsuperior4", + [463897] = "inv_misc_uncutgemsuperior5", + [463898] = "inv_potionc_1", + [463899] = "inv_potionc_2", + [463900] = "inv_potionc_3", + [463901] = "inv_potionc_4", + [463902] = "inv_potionc_5", + [463903] = "inv_potionc_6", + [463913] = "inv_belt_plate_raidwarrior_i_01", + [463914] = "inv_boots_raidwarrior_i_01", + [463915] = "inv_bracer_plate_raidwarrior_i_01", + [463916] = "inv_chest_plate_raidwarrior_i_01", + [463917] = "inv_gauntlets_plate_raidwarrior_i_01", + [463918] = "inv_helmet_plate_raidwarrior_i_01", + [463919] = "inv_pants_plate_raidwarrior_i_01", + [463920] = "inv_potiond_1", + [463921] = "inv_potiond_2", + [463922] = "inv_potiond_3", + [463923] = "inv_potiond_4", + [463924] = "inv_potiond_5", + [463925] = "inv_potiond_6", + [463926] = "inv_potione_1", + [463927] = "inv_potione_2", + [463928] = "inv_potione_3", + [463929] = "inv_potione_4", + [463930] = "inv_potione_5", + [463931] = "inv_potione_6", + [463932] = "inv_shoulder_plate_raidwarrior_i_01", + [464022] = "inv_misc_enchantedpearl", + [464023] = "inv_misc_flawlesspearl", + [464024] = "inv_potionf_1", + [464025] = "inv_potionf_2", + [464026] = "inv_potionf_3", + [464027] = "inv_potionf_4", + [464028] = "inv_potionf_5", + [464029] = "inv_potionf_6", + [464030] = "spell_lifegivingseed", + [464068] = "achievement_general_100kquests", + [464069] = "achievement_general_25kquests", + [464073] = "achievement_general_100kdailyquests", + [464074] = "achievement_general_25kdailyquests", + [464075] = "achievement_general_50kdailyquests", + [464076] = "achievement_general_allianceslayer", + [464077] = "achievement_general_dungeondiplomat", + [464078] = "achievement_general_hordeslayer", + [464079] = "inv_knife_1h_cataclysm_c_05", + [464081] = "inv_mace_1h_pvp400_c_01", + [464117] = "achievement_general_classicbattles", + [464118] = "achievement_general_raidrepresentation", + [464119] = "inv_knife_1h_cataclysm_c_06", + [464120] = "inv_mace_1h_cataclysm_c_03", + [464139] = "inv_misc_darkphoenixpet_01", + [464140] = "inv_mount_allianceliong", + [464141] = "inv_mount_darkphoenixa", + [464142] = "inv_mount_darkphoenixb", + [464143] = "inv_mount_hordescorpiong", + [464146] = "achievement_general_cityattacker", + [464147] = "achievement_general_cityattacker2", + [464159] = "inv_misc_babyarmadillopet", + [464160] = "inv_misc_seagullpet_01", + [464161] = "inv_mount_spectralhorse", + [464162] = "inv_mount_spectralwolf", + [464188] = "inv_belt_mail_pvpshaman_c_01", + [464189] = "inv_boots_mail_pvpshaman_c_01", + [464190] = "inv_bracer_mail_pvpshaman_c_01", + [464191] = "inv_chest_mail_pvpshaman_c_01", + [464192] = "inv_gauntlets_mail_pvpshaman_c_01", + [464193] = "inv_helmet_mail_pvpshaman_c_01", + [464194] = "inv_pants_mail_pvpshaman_c_01", + [464195] = "inv_shoulder_mail_pvpshaman_c_01", + [464330] = "firearm_2h_rifle_pvp400_c_01", + [464338] = "inv_shield_pvp400_c_01", + [464341] = "druid_ability_wildmushroom_a", + [464342] = "druid_ability_wildmushroom_b", + [464343] = "spell_druid_stampedingroar_cat", + [464483] = "achievement_general_workingasateam", + [464507] = "inv_misc_cape_cataclysm_tank_b_01", + [464508] = "inv_misc_cape_cataclysm_tank_c_01", + [464509] = "inv_misc_cape_cataclysm_tank_d_01", + [464604] = "ability_hunter_fervor", + [464605] = "achievement_guild_level10", + [464606] = "achievement_guild_level15", + [464607] = "achievement_guild_level20", + [464608] = "achievement_guild_level25", + [464609] = "achievement_guild_level5", + [464635] = "inv_mace_2h_pvp400_c_01", + [464636] = "inv_sword_1h_cataclysm_c_02", + [464773] = "inv_belt_robe_raidmage_i_01", + [464774] = "inv_boots_robe_raidmage_i_01", + [464775] = "inv_bracer_robe_raidmage_i_01", + [464776] = "inv_chest_robe_raidmage_i_01", + [464777] = "inv_glove_robe_raidmage_i_01", + [464778] = "inv_helm_robe_raidmage_i_01", + [464779] = "inv_pants_robe_raidmage_i_01", + [464780] = "inv_shoulder_robe_raidmage_i_01", [464820] = "achievement_general_stayclassy", + [464855] = "inv_knife_1h_common_b_01", + [464879] = "inv_stave_2h_pvp400_c_01", + [464973] = "ability_warrior_colossussmash", + [464974] = "inv_boots_cloth_pvpwarlock_c_01", + [464975] = "inv_bracer_cloth_pvpwarlock_c_01", + [464976] = "inv_bracer_leather_pvpdruid_c_01", + [464977] = "inv_gauntlets_cloth_pvpwarlock_c_01", + [464978] = "inv_helmet_cloth_pvpwarlock_c_01", + [464979] = "inv_pants_cloth_pvpwarlock_c_01", + [464980] = "inv_shoulder_cloth_pvpwarlock_c_01", + [464981] = "inv_sword_2h_cataclysm_c_01", + [465081] = "inv_knife_1h_cataclysm_c_02", + [465109] = "inv_misc_cape_cataclysm_healer_b_01", + [465110] = "inv_misc_cape_cataclysm_healer_c_01", + [465111] = "inv_misc_cape_cataclysm_healer_d_01", + [465112] = "inv_weapon_crossbow_39", + [465836] = "inv_misc_enggizmos_33", + [465841] = "inv_misc_enggizmos_34", + [465875] = "inv_gizmo_electrifiedether", + [465876] = "inv_misc_enggizmos_35", + [465877] = "inv_misc_enggizmos_36", + [465878] = "inv_misc_enggizmos_37", + [465879] = "inv_misc_enggizmos_38", + [465915] = "inv_glove_leatherraidrogue_i_01", + [465916] = "inv_sword_2h_pvp400_c_01", + [466012] = "inv_misc_tabard_gilneas", + [466035] = "inv_misc_enggizmos_39", + [466036] = "inv_pet_deweaonizedmechcompanion", + [466082] = "inv_belt_cloth_raidpriest_i_01", + [466083] = "inv_boots_cloth_raidpriest_i_01", + [466084] = "inv_bracer_cloth_raidpriest_i_01", + [466085] = "inv_chest_cloth_raidpriest_i_01", + [466086] = "inv_gauntlets_cloth_raidpriest_i_01", + [466087] = "inv_helmet_cloth_raidpriest_i_01", + [466088] = "inv_pant_cloth_raidpriest_i_01", + [466089] = "inv_pet_personalworlddestroyer", + [466090] = "inv_robe_emberweavegown_a_01", + [466091] = "inv_shoulder_cloth_raidpriest_i_01", + [466265] = "inv_belt_mail_raidhunter_i_01", + [466266] = "inv_belt_plate_raidpaladin_i_01", + [466267] = "inv_boots_mail_raidhunter_i_01", + [466268] = "inv_boots_plate_raidpaladin_i_01", + [466269] = "inv_bracer_mail_raidhunter_i_01", + [466270] = "inv_bracer_plate_raidpaladin_i_01", + [466271] = "inv_chest_mail_raidhunter_i_01", + [466272] = "inv_chest_plate_raidpaladin_i_01", + [466273] = "inv_gauntlets_plate_raidpaladin_i_01", + [466274] = "inv_glove_mail_raidhunter_i_01", + [466275] = "inv_helmet_plate_raidpaladin_i_01", + [466276] = "inv_helm_mail_raidhunter_i_01", + [466277] = "inv_misc_cutgemnormal2a", + [466278] = "inv_misc_cutgemnormal3a", + [466279] = "inv_misc_cutgemnormal4a", + [466280] = "inv_misc_cutgemnormal5a", + [466281] = "inv_misc_cutgemnormal6a", + [466282] = "inv_misc_cutgemnormala", + [466283] = "inv_misc_uncutgemsuperior6", + [466284] = "inv_pants_plate_raidpaladin_i_01", + [466285] = "inv_pant_mail_raidhunter_i_01", + [466286] = "inv_polearm_2h_pvp400_c_01", + [466287] = "inv_shoulder_mail_raidhunter_i_01", + [466288] = "inv_shoulder_plate_raidpaladin_i_01", + [466642] = "inv_misc_cutgemperfect", + [466643] = "inv_misc_cutgemperfect2", + [466644] = "inv_misc_cutgemperfect3", + [466645] = "inv_misc_cutgemperfect4", + [466646] = "inv_misc_cutgemperfect5", + [466647] = "inv_misc_cutgemperfect6", + [466648] = "inv_misc_cutgemsuperior6", + [466717] = "inv_inscription_tarot_earthquakeace", + [466718] = "inv_inscription_tarot_earthquakecard", + [466719] = "inv_inscription_tarot_hurricaneace", + [466720] = "inv_inscription_tarot_hurricanecard", + [466721] = "inv_inscription_tarot_tsunamiace", + [466722] = "inv_inscription_tarot_tsunamicard", + [466723] = "inv_inscription_tarot_volcanoace", + [466724] = "inv_inscription_tarot_volcanocard", + [466725] = "inv_misc_cataclysmarmorkit_01", + [466726] = "inv_misc_cataclysmarmorkit_02", + [466727] = "inv_misc_cataclysmarmorkit_03", + [466728] = "inv_misc_cataclysmarmorkit_04", + [466729] = "inv_misc_cataclysmarmorkit_05", + [466730] = "inv_misc_cataclysmarmorkit_06", + [466731] = "inv_misc_cataclysmarmorkit_07", + [466732] = "inv_misc_cataclysmarmorkit_08", + [466733] = "inv_misc_cataclysmarmorkit_09", + [466734] = "inv_misc_cataclysmarmorkit_10", + [466735] = "inv_misc_cataclysmarmorkit_11", + [466736] = "inv_misc_cataclysmarmorkit_12", + [466842] = "inv_misc_emberweaveclothbolt_01", + [466843] = "inv_misc_emberweaveclothbolt_02", + [466844] = "inv_misc_emberweavecloth_01", + [466845] = "inv_misc_emberweavecloth_02", + [466846] = "inv_misc_pyriumbar_02", + [466847] = "inv_misc_truegold", + [466966] = "inv_misc_necklacea1", + [466967] = "inv_misc_necklacea10", + [466968] = "inv_misc_necklacea11", + [466969] = "inv_misc_necklacea12", + [466970] = "inv_misc_necklacea2", + [466971] = "inv_misc_necklacea3", + [466972] = "inv_misc_necklacea4", + [466973] = "inv_misc_necklacea6", + [466974] = "inv_misc_necklacea7", + [466975] = "inv_misc_necklacea8", + [466976] = "inv_misc_necklacea9", + [467092] = "inv_belt_mail_raidshaman_i_01", + [467093] = "inv_belt_plate_raiddeathknight_i_01", + [467094] = "inv_boots_plate_raiddeathknight_i_01", + [467095] = "inv_boots_raidshaman_i_01", + [467096] = "inv_bracer_plate_raiddeathknight_i_01", + [467097] = "inv_bracer_raidshaman_i_01", + [467098] = "inv_chest_plate_raiddeathknight_i_01", + [467099] = "inv_chest_raidshaman_i_01", + [467100] = "inv_gauntlets_plate_raiddeathknight_i_01", + [467101] = "inv_glove_raidshaman_i_01", + [467102] = "inv_helmet_plate_raiddeathknight_i_01", + [467103] = "inv_helmet_raidshaman_i_01", + [467104] = "inv_pants_plate_raiddeathknight_i_01", + [467105] = "inv_pant_raidshaman_i_01", + [467106] = "inv_shoulder_mail_raidshaman_i_01", + [467107] = "inv_shoulder_plate_raiddeathknight_i_01", + [467623] = "inv_axe_2h_pvp400_c_01", + [467767] = "inv_shoulder_plate_dungeonplate_c_04", + [467780] = "inv_belt_plate_dungeonplate_c_04", + [467781] = "inv_boots_plate_dungeonplate_c_04", + [467782] = "inv_bracer_plate_dungeonplate_c_04", + [467783] = "inv_chest_plate_dungeonplate_c_04", + [467784] = "inv_gauntlets_plate_dungeonplate_c_04", + [467785] = "inv_pants_plate_dungeonplate_c_04", + [467850] = "inv_knife_1h_pvp400_c_01", + [467892] = "inv_hand_1h_pvp400_c_01", + [467893] = "inv_misc_petmoonkinne", + [467894] = "inv_misc_petmoonkinta", + [467895] = "inv_misc_petragnaros", + [468265] = "inv_misc_volatilelife_green", + [468508] = "achievement_boss_highpriestessazil", + [468709] = "inv_belt_mail_pvphunter_c_02", + [468710] = "inv_boots_mail_pvphunter_c_02", + [468711] = "inv_bracer_mail_pvphunter_c_02", + [468712] = "inv_chest_mail_pvphunter_c_02", + [468713] = "inv_gauntlets_mail_pvphunter_c_02", + [468714] = "inv_helmet_mail_pvphunter_c_02", + [468715] = "inv_pants_mail_pvphunter_c_02", + [468716] = "inv_shoulder_mail_pvphunter_c_02", + [468853] = "inv_belt_cloth_pvpmage_c_02", + [468854] = "inv_belt_plate_pvppaladin_c_02", + [468855] = "inv_boots_cloth_pvpmage_c_02", + [468856] = "inv_boots_plate_pvppaladin_c_02", + [468857] = "inv_bracer_cloth_pvpmage_c_02", + [468858] = "inv_bracer_plate_pvppaladin_c_02", + [468859] = "inv_chest_cloth_pvpmage_c_02", + [468860] = "inv_chest_plate_pvppaladin_c_02", + [468861] = "inv_gauntlets_cloth_pvpmage_c_02", + [468862] = "inv_glove_plate_pvppaladin_c_02", + [468863] = "inv_helmet_cloth_pvpmage_c_02", + [468864] = "inv_helm_plate_pvppaladin_c_02", + [468865] = "inv_pants_cloth_pvpmage_c_02", + [468866] = "inv_pants_plate_pvppaladin_c_02", + [468867] = "inv_shoulder_cloth_pvpmage_c_02", + [468868] = "inv_shoulder_plate_pvppaladin_c_02", + [469157] = "inv_belt_robe_pvppriest_c_02", + [469158] = "inv_boots_mail_pvpshaman_c_02", + [469159] = "inv_boots_robe_pvppriest_c_02", + [469160] = "inv_bracer_mail_pvpshaman_c_02", + [469161] = "inv_bracer_robe_pvppriest_c_02", + [469162] = "inv_chest_mail_pvpshaman_c_02", + [469163] = "inv_chest_robe_pvppriest_c_02", + [469164] = "inv_gauntlets_robe_pvppriest_c_02", + [469165] = "inv_glove_mail_pvpshaman_c_02", + [469166] = "inv_helm_mail_pvpshaman_c_02", + [469167] = "inv_helm_robe_pvppriest_c_02", + [469168] = "inv_pants_mail_pvpshaman_c_02", + [469169] = "inv_pants_robe_pvppriest_c_02", + [469170] = "inv_robe_mail_pvpshaman_c_02", + [469171] = "inv_shoulder_mail_pvpshaman_c_02", + [469172] = "inv_shoulder_robe_pvppriest_c_02", + [469271] = "inv_belt_mail_pvpshaman_c_02", + [469518] = "inv_belt_leather_pvprogue_c_02", + [469519] = "inv_boot_leather_pvprogue_c_02", + [469520] = "inv_bracer_leather_pvprogue_c_02", + [469521] = "inv_chest_leather_pvprogue_c_02", + [469522] = "inv_glove_leather_pvprogue_c_02", + [469523] = "inv_helmet_leather_pvprogue_c_02", + [469524] = "inv_pants_leather_pvprogue_c_02", + [469525] = "inv_shoulder_leather_pvprogue_c_02", + [469626] = "inv_belt_leather_pvpdruid_c_02", + [469627] = "inv_boot_leather_pvpdruid_c_02", + [469628] = "inv_bracer_leather_pvpdruid_c_02", + [469629] = "inv_chest_leather_pvpdruid_c_02", + [469630] = "inv_glove_leather_pvpdruid_c_02", + [469631] = "inv_helm_leather_pvpdruid_c_02", + [469632] = "inv_knife_1h_firelandsraid_d_02", + [469633] = "inv_pant_leather_pvpdruid_c_02", + [469634] = "inv_shoulder_leather_pvpdruid_c_02", + [469722] = "inv_mace_1h_firelandsraid_d_02", + [469740] = "inv_boots_leather_6", + [469741] = "inv_chest_leather_20", + [469742] = "inv_glove_leatherraidrogue_i_01", + [469743] = "inv_pants_leather_32", + [469753] = "inv_wand_1h_firelandsraid_d_02", + [488577] = "inv_axe_2h_firelandsraid_d_01", + [509966] = "inv_axe_1h_firelandsraid_d_01", + [509986] = "inv_offhand_1h_firelandsraid_d_01", + [510009] = "inv_knife_1h_firelandsraid_d_03", + [510017] = "inv_polearm_2h_firelandsraid_d_01", + [510037] = "inv_bow_1h_firelandsraid_d_01", + [510053] = "inv_knife_1h_firelandsraid_d_01", + [510756] = "inv_shield_firelandsraid_d_02", + [510757] = "inv_sword_1h_firelandsraid_d_02", + [510795] = "inv_offhand_1h_pvp410_c_01", + [510886] = "inv_shield_firelandsraid_d_01", + [510887] = "inv_stave_2h_firelandsraid_d_01", + [510936] = "inv_thrown_1h_pvp410_c_01", + [510990] = "inv_belt_cloth_pvpwarlock_c_02", + [510991] = "inv_boots_cloth_pvpwarlock_c_02", + [510992] = "inv_bracer_cloth_pvpwarlock_c_02", + [510993] = "inv_chest_cloth_pvpwarlock_c_02", + [510994] = "inv_gauntlets_cloth_pvpwarlock_c_02", + [510995] = "inv_helmet_cloth_pvpwarlock_c_02", + [510996] = "inv_robe_cloth_pvpwarlock_c_02", + [510997] = "inv_shoulder_cloth_pvpwarlock_c_02", + [511003] = "inv_mace_2h_firelandsraid_d_01", + [511035] = "inv_offhand_1h_firelandsraid_d_02", + [511044] = "inv_mace_1h_firelandsraid_d_04", + [511122] = "inv_wand_1h_pvp410_c_02", + [511130] = "inv_sword_1h_firelandsraid_d_04", + [511515] = "creatureportrait_twilightshammer_lava_magicball", + [511516] = "inv_sword_1h_firelandsraid_d_01", + [511543] = "creatureportrait_cyclone_nodebris", + [511544] = "creatureportrait_ropeladder01", + [511649] = "creatureportrait_blackrockv2_shieldgong", + [511650] = "creatureportrait_blackrockv2_shieldgong_broken", + [511651] = "creatureportrait_mageportal_undercity", + [511713] = "ability_vehicle_liquidpyrite_blue", + [511726] = "spell_nature_wrathofair_totem", + [511727] = "creatureportrait_goblin_rocket", + [511728] = "creatureportrait_portal_arathibasinalliance", + [511729] = "creatureportrait_twilightshammer_magicaldevice_04", + [512000] = "inv_sword_1h_pvp410_c_02", + [512077] = "inv_bow_2h_crossbow_pvp410_c_01", + [512326] = "inv_bow_1h_pvp410_c_01", + [512435] = "inv_jewelry_ring_firelandsraid_01a", + [512436] = "inv_jewelry_ring_firelandsraid_01b", + [512437] = "inv_jewelry_ring_firelandsraid_01c", + [512452] = "inv_mace_1h_firelandsraid_d_03", + [512467] = "inv_belt_plate_pvpdeathknight_c_02", + [512468] = "inv_boots_plate_pvpdeathknight_c_02", + [512469] = "inv_bracer_plate_pvpdeathknight_c_02", + [512470] = "inv_chest_plate_pvpdeathknight_c_02", + [512471] = "inv_gauntlet_plate_pvpdeathknight_c_02", + [512472] = "inv_helm_plate_pvpdeathknight_c_02", + [512473] = "inv_neck_firelands_03", + [512474] = "inv_neck_hyjaldaily_01", + [512475] = "inv_pants_plate_pvpdeathknight_c_02", + [512476] = "inv_ring_hyjaldaily_04", + [512477] = "inv_shoulder_plate_pvpdeathknight_c_02", + [512478] = "inv_trinket_firelands_01", + [512479] = "inv_trinket_firelands_02", + [512607] = "inv_neck_hyjaldaily_02", + [512608] = "inv_neck_hyjaldaily_03", + [512609] = "inv_neck_hyjaldaily_04", + [512610] = "inv_trinket_firelands_03", + [512677] = "inv_knife_1h_pvp410_c_01", + [512788] = "inv_jewelry_ring_firelandsraid_02a", + [512789] = "inv_jewelry_ring_firelandsraid_02b", + [512790] = "inv_jewelry_ring_firelandsraid_02c", + [512791] = "inv_jewelry_ring_firelandsraid_03a", + [512792] = "inv_jewelry_ring_firelandsraid_03b", + [512793] = "inv_jewelry_ring_firelandsraid_03c", + [512828] = "achievement_zulgurub_jindo", + [512829] = "achievement_zulgurub_zanzil", + [512902] = "creatureportrait_bubble", + [512903] = "creatureportrait_cannon03", + [512904] = "creatureportrait_g_bomb_02", + [512905] = "creatureportrait_illidancrystal01", + [512906] = "inv_stave_2h_pvp400_c_02", + [512928] = "inv_robe_pants_pvpwarlock_c_02", + [512960] = "creatureportrait_sc_eyeofacherus_02", + [512963] = "inv_weapon_crossbow_40", + [513195] = "inv_misc_markoftheworldtree", + [513920] = "achievement_zone_zulgurub_highpriestesskilnara", + [514015] = "inv_arcane_orb", + [514016] = "inv_ember", + [514017] = "inv_flaming_splinter", + [514018] = "inv_ragnaros_heart", + [514019] = "inv_staff_branch", + [514020] = "inv_stave_2h_firelandsraid_d_03", + [514021] = "inv_stave_2h_firelandsraid_d_03_stage1", + [514022] = "inv_stave_2h_firelandsraid_d_03_stage2", + [514061] = "inv_firearm_2h_rifle_pvp410_c_01", + [514086] = "inv_belt_cloth_c_04", + [514087] = "inv_firearm_2h_rifle_zulgurub_d_01", + [514088] = "inv_shoulder_leather_horde_b_03", + [514102] = "inv_mace_1h_sulfuron_d_01", + [514159] = "inv_jewelry_ring_zulgurub_01", + [514176] = "inv_belt_plate_raidpaladin_j_01", + [514177] = "inv_boots_plate_raidpaladin_j_01", + [514178] = "inv_bracer_plate_raidpaladin_j_01", + [514179] = "inv_chest_plate_raidpaladin_j_01", + [514180] = "inv_gauntlets_plate_raidpaladin_j_01", + [514181] = "inv_helmet_plate_raidpaladin_j_01", + [514182] = "inv_pants_plate_raidpaladin_j_01", + [514183] = "inv_shoulder_plate_raidpaladin_j_01", + [514261] = "inv_epicguildtabard", + [514262] = "inv_rareguildtabard", + [514277] = "achievement_dungeon_firelandsraid", + [514278] = "achievement_zone_firelands", + [514300] = "inv_jewelry_necklace_zulgurub_01", + [514301] = "inv_leather_a_03defias", + [514302] = "inv_misc_2h_harpoon_b_01", + [514303] = "inv_shoulder_leather_d_02", + [514316] = "inv_jewelry_necklace_zulgurub_02", + [514333] = "inv_belt_leather_firelandsdruid_d_01", + [514334] = "inv_boots_leather_firelandsdruid_d_01", + [514335] = "inv_bracer_leather_firelandsdruid_d_01", + [514336] = "inv_chest_leather_firelandsdruid_d_01", + [514337] = "inv_glove_leather_firelandsdruid_d_01", + [514338] = "inv_helm_leather_firelandsdruid_d_01", + [514339] = "inv_pants_leather_firelandsdruid_d_01", + [514340] = "inv_shoulder_leather_firelandsdruid_d_01", + [514463] = "inv_shield_pvp410_c_01", + [514464] = "inv_sword_1h_pvp410_c_01", + [514514] = "inv_jewelry_ring_zulgurub_02", + [514533] = "inv_boots_plate_d_02gold", + [514534] = "inv_helm_mail_d_01", + [514535] = "inv_shield_zulgurub_d_02", + [514640] = "ability_druid_prowl", + [514641] = "ability_racial_runningwild", + [514679] = "axe_2h_ahnqiraj_d_02_icon", + [514844] = "inv_axe_1h_pvp410_c_01", + [514845] = "inv_axe_2h_pvp410_c_01", + [514924] = "inv_misc_necklace_firelands_1", + [514925] = "inv_misc_necklace_firelands_2", + [514929] = "inv_misc_ring_firelands_1", + [514949] = "inv_misc_ring_firelands_2", + [514950] = "inv_misc_ring_firelands_3", + [515033] = "achievement_firelandsraid_balorocthegatekeeper", + [515148] = "inv_staff_2h_pvp410_c_01", + [515199] = "inv_mace_2h_pvp410_c_01", + [515200] = "inv_mace_2h_sulfuras_d_01", + [515951] = "inv_jewelry_ring_88", + [515952] = "inv_jewelry_ring_89", + [515953] = "inv_jewelry_ring_90", + [515954] = "inv_jewelry_ring_91", + [515955] = "inv_jewelry_ring_92", + [515956] = "inv_jewelry_ring_93", + [515957] = "inv_jewelry_ring_94", + [515958] = "inv_jewelry_ring_95", + [515959] = "inv_jewelry_ring_96", + [515960] = "inv_jewelry_ring_97", + [515961] = "inv_jewelry_ring_98", + [515962] = "inv_jewelry_ring_99", + [515963] = "inv_mace_1h_pvp410_c_01", + [515964] = "inv_staff_2h_pvp410_c_03", + [515993] = "achievement_rat", + [515994] = "achievement_zul_aman_daakara", + [515995] = "axe_1h_horde_d_04_icon", + [516313] = "inv_cape_firelands_fireset_d_01", + [516338] = "inv_misc_archaeology_amburfly", + [516339] = "inv_misc_archaeology_trolldrum", + [516501] = "inv_sword_2h_firelandsraid_d_01", + [516521] = "inv_belt_robe_raidpriest_j_01", + [516522] = "inv_boots_robe_raidpriest_j_01", + [516523] = "inv_bracer_robe_raidpriest_j_01", + [516524] = "inv_chest_robe_raidpriest_j_01", + [516525] = "inv_gauntlets_robe_raidpriest_j_01", + [516526] = "inv_helmet_robe_raidpriest_j_01", + [516527] = "inv_pants_robe_raidpriest_j_01", + [516528] = "inv_shoulder_robe_raidpriest_j_01", + [516665] = "inv_misc_archaeology_babypterrodax", + [516666] = "inv_misc_archaeology_trollgolem", + [516667] = "inv_misc_archaeology_vrykuldrinkinghorn", + [516743] = "inv_wand_1h_firelandsraid_d_01", + [516796] = "creatureportrait_twilightshammer_summoningportal_water01", + [516862] = "creatureportrait_twilightshammer_dragonegg_01", + [516863] = "creatureportrait_twilightshammer_dragonegg_02", + [516864] = "creatureportrait_twilightshammer_dragonegg_red_01", + [516867] = "inv_circlet_firelands_d_01", + [517021] = "inv_shield_pvp410_c_02", + [517022] = "inv_thrown_1h_firelandsraid_d_01", + [517111] = "creatureportrait_fk_plaguebarrel", + [517112] = "creatureportrait_infernal_ball_02", + [517159] = "creatureportrait_blackrockv2_shieldgong_02", + [517160] = "creatureportrait_blackrock_chainsofwoe", + [517161] = "creatureportrait_creature_iceblock", + [517162] = "creatureportrait_darkshoreboat", + [517163] = "mace_2h_blacksmithing_d_04_icon", + [518970] = "inv_axe_1h_firelandsraid_d_02", + [518997] = "inv_belt_leather_raidrogue_j_01", + [518998] = "inv_boot_leather_raidrogue_j_01", + [518999] = "inv_bracer_leather_raidrogue_j_01", + [519000] = "inv_chest_leather_raidrogue_j_01", + [519001] = "inv_gauntlet_leather_raidrogue_j_01", + [519002] = "inv_helmet_leather_raidrogue_j_01", + [519003] = "inv_knife_1h_pvp410_c_02", + [519004] = "inv_pants_leather_raidrogue_j_01", + [519005] = "inv_shoulders_leather_raidrogue_j_01", + [519378] = "creatureportrait_altarofair_01", + [519379] = "creatureportrait_altarofearth_01", + [519380] = "creatureportrait_altaroffrost_01", + [519381] = "creatureportrait_portal_arathibasinhorde", + [519382] = "creatureportrait_portal_eyeofthestormalliance", + [519383] = "creatureportrait_portal_eyeofthestormhorde", + [519384] = "creatureportrait_portal_isleofconquestalliance", + [519385] = "creatureportrait_portal_isleofconquesthorde", + [519389] = "creatureportrait_altarofflame", + [519390] = "creatureportrait_saltwater_star", + [519391] = "portal_alteracvalleyalliance", + [519392] = "portal_warsonggulchalliance", + [519395] = "inv_belt_mail_raidhunter_j_01", + [519396] = "inv_boots_mail_raidhunter_j_01", + [519397] = "inv_bracer_mail_raidhunter_j_01", + [519398] = "inv_chest_mail_raidhunter_j_01", + [519399] = "inv_glove_mail_raidhunter_j_01", + [519400] = "inv_helm_mail_raidhunter_j_01", + [519401] = "inv_pants_mail_raidhunter_j_01", + [519402] = "inv_pet_wingedlion", + [519403] = "inv_shoulder_mail_raidhunter_j_01", + [519830] = "inv_helm_circlet_firelands_d_01", + [519892] = "mace_1h_blacksmithing_d_04_icon", + [520750] = "inv_belt_plate_raidwarrior_j_01", + [520751] = "inv_boots_plate_raidwarrior_j_01", + [520752] = "inv_bracer_plate_raidwarrior_j_01", + [520753] = "inv_chest_plate_raidwarrior_j_01", + [520754] = "inv_glove_pants_raidwarrior_j_01", + [520755] = "inv_glove_plate_raidwarrior_j_01", + [520756] = "inv_helm_plate_raidwarrior_j_01", + [520757] = "inv_plate_firelands_d_01", + [520758] = "inv_shoulder_plate_raidwarrior_j_01", + [521216] = "inv_belt_robe_raidmage_j_01", + [521217] = "inv_boots_robe_raidmage_j_01", + [521218] = "inv_bracer_robe_raidmage_j_01", + [521219] = "inv_chest_robe_raidmage_j_01", + [521220] = "inv_gauntlets_robe_raidmage_j_01", + [521221] = "inv_helmet_robe_raidmage_j_01", + [521222] = "inv_pants_robe_raidmage_j_01", + [521223] = "inv_shoulder_robe_raidmage_j_01", + [521584] = "spell_priest_chakra", + [521772] = "inv_plate_firelandsrags_j_01", + [522862] = "inv_belt_plate_raiddeathknight_j_01", + [522863] = "inv_boot_plate_raiddeathknight_j_01", + [522864] = "inv_bracer_plate_raiddeathknight_j_01", + [522865] = "inv_chest_plate_raiddeathknight_j_01", + [522866] = "inv_glove_plate_raiddeathknight_j_01", + [522867] = "inv_helmet_plate_raiddeathknight_j_01", + [522868] = "inv_pant_plate_raiddeathknight_j_01", + [522974] = "inv_shoulder_plate_raiddeathknight_j_01", + [522987] = "inv_belt_plate_dungeonplate_c_05", + [522988] = "inv_boots_plate_dungeonplate_c_05", + [522989] = "inv_bracer_plate_dungeonplate_c_05", + [522990] = "inv_chest_plate_dungeonplate_c_05", + [522991] = "inv_glove_plate_dungeonplate_c_05", + [522992] = "inv_helm_plate_dungeonplate_c_05", + [522993] = "inv_pants_plate_dungeonplate_c_05", + [522994] = "inv_shoulder_plate_dungeonplate_c_05", + [523490] = "inv_mace_1h_430nightelf_c_02", + [523893] = "spell_holy_rebuke", + [523894] = "stave_2h_tarecgosa_e_01basestaff", + [523895] = "stave_2h_tarecgosa_e_01stage1", + [523896] = "stave_2h_tarecgosa_e_01stage2", + [523897] = "stave_2h_tarecgosa_e_01stagefinal", + [524049] = "ability_mount_alliancepvpmount", + [524050] = "inv_misc_petdragonwhelptarecgosa", + [524154] = "ability_mount_hordepvpmount", + [524305] = "ability_rhyolith_volcano", + [524348] = "ability_hunter_pet_assist", + [524349] = "achievement_boss_broodmotheraranae", + [524350] = "achievement_boss_lordanthricyst", + [524351] = "achievement_boss_shannox", + [524352] = "achievement_leader_genngraymane", + [524353] = "spell_holy_divineprotection", + [524354] = "spell_holy_divineshield", + [524480] = "inv_belt_leather_raiddruid_j_01", + [524481] = "inv_boots_leather_raiddruid_j_01", + [524482] = "inv_bracer_leather_raiddruid_j_01", + [524483] = "inv_chest_leather_raiddruid_j_01", + [524484] = "inv_gauntlets_leather_raiddruid_j_01", + [524485] = "inv_helmet_leather_raiddruid_j_01", + [524486] = "inv_pants_leather_raiddruid_j_01", + [524487] = "inv_shoulder_leather_raiddruid_j_01", + [524772] = "inv_jewelry_ring_100", + [524773] = "inv_misc_necklace13", + [524793] = "ability_rhyolith_immolation", + [524794] = "ability_rhyolith_lavapool", + [524795] = "ability_rhyolith_magmaflow_wave", + [524796] = "ability_rhyolith_magmaflow_whole", + [525022] = "inv_bow_2h_crossbow_pvpcataclysms3_c_01", + [525023] = "spell_fire_ragnaros_lavabolt", + [525024] = "spell_fire_ragnaros_molteninferno", + [525025] = "spell_fire_ragnaros_splittingblow", + [525026] = "spell_fire_ragnaros_supernova", + [525132] = "inv_misc_necklace14", + [525133] = "inv_misc_necklace15", + [525134] = "inv_relics_hourglass", + [525788] = "inv_jewelry_ring_101", + [525789] = "inv_jewelry_ring_102", + [526164] = "inv_belt_mail_raidshaman_j_01", + [526165] = "inv_belt_robe_raidwarlock_j_01", + [526166] = "inv_boots_mail_raidshaman_j_01", + [526167] = "inv_boots_robe_raidwarlock_j_01", + [526168] = "inv_bracer_robe_raidwarlock_j_01", + [526169] = "inv_chest_mail_raidshaman_j_01", + [526170] = "inv_chest_robe_raidwarlock_j_01", + [526171] = "inv_gauntlets_mail_raidshaman_j_01", + [526172] = "inv_glove_robe_raidwarlock_j_01", + [526173] = "inv_helmet_mail_raidshaman_j_01", + [526174] = "inv_helm_robe_raidwarlock_j_01", + [526175] = "inv_pants_mail_raidshaman_j_01", + [526176] = "inv_pants_robe_raidwarlock_j_01", + [526177] = "inv_robe_robe_raidwarlock_j_01", + [526178] = "inv_shoulder_mail_raidshaman_j_01", + [526179] = "inv_shoulder_robe_raidwarlock_j_01", + [526356] = "inv_mount_wingedlion", + [526520] = "creatureportrait_portal_alteracvalleyhorde", + [526521] = "creatureportrait_portal_strandoftheancients", + [526522] = "creatureportrait_portal_warsonggulchhorde", + [526523] = "creatureportrait_pygmy_drums_02", + [526524] = "creatureportrait_sc_wagon", + [526578] = "ability_mount_fireravengodmount", + [526580] = "inv_wand_38", + [526763] = "inv_knife_1h_430future_c_01", + [526764] = "inv_mace_1h_pvpcataclysms3_c_01", + [526765] = "inv_relics_warpring", + [527300] = "ability_mount_twilightdrakemount_black", + [527301] = "ability_mount_twilightdrakemount_blue", + [527302] = "ability_mount_twilightdrakemount_bronze", + [527303] = "ability_mount_twilightdrakemount_green", + [527304] = "ability_mount_twilightdrakemount_red", + [527423] = "inv_misc_necklace_16", + [527580] = "inv_firearm_2h_rifle_pvpcataclysms3_c_01", + [527684] = "creatureportrait_sc_blighter", + [527714] = "inv_mace_1h_pvpcataclysms3_c_02", + [527836] = "inv_axe_1h_pvpcataclysms3_c_01", + [528288] = "inv_pet_diablobabymurloc", + [528334] = "creatureportrait_be_scryingorb_epic", + [528692] = "ability_worgen_darkflight", + [528693] = "inv_relics_runestone", + [528947] = "inv_firearm_2h_rifle_430future_c_01", + [528948] = "inv_offhand_1h_pvpcataclysms3_c_01", + [529148] = "inv_bow_1h_pvpcataclysms3_c_01", + [529149] = "sword_1h_pvpcataclysms3_c_02", + [529180] = "inv_knife_1h_pvpcataclysms3_c_02", + [529424] = "inv_bow_1hdeathwingraiddw_d_01", + [529425] = "inv_jewelry_ring_103", + [529740] = "inv_jewelry_ring_104", + [529741] = "inv_stave_2h_deathwingraiddw_d_01", + [529781] = "polearm_2h_deathwingraiddw_d_01", + [529876] = "inv_belt_plate_pvpwarrior_d_01", + [529877] = "inv_boots_plate_pvpwarrior_d_01", + [529878] = "inv_bracer_plate_pvpwarrior_d_01", + [529879] = "inv_chest_plate_pvpwarrior_d_01", + [529880] = "inv_glove_plate_pvpwarrior_d_01", + [529881] = "inv_helm_plate_pvpwarrior_d_01", + [529882] = "inv_pants_plate_pvpwarrior_d_01", + [529883] = "inv_shoulder_plate_pvpwarrior_d_01", + [530224] = "inv_axe_2h_deathwingraid_d_01", + [530250] = "inv_jewelry_necklace_54", + [530332] = "inv_weapon_crossbow_41", + [530398] = "inv_mace_1h_deathwingraid_d_01", + [530399] = "inv_wand_1h_deathwingraid_d_02", + [530728] = "inv_wand_1h_pvpcataclysms3_c_02", + [530806] = "inv_knife_1h_430oldgod_c_02", + [530824] = "inv_belt_robe_pvpwarlock_d_01", + [530825] = "inv_boots_robe_pvpwarlock_d_01", + [530826] = "inv_bracer_robe_pvpwarlock_d_01", + [530827] = "inv_chest_robe_pvpwarlock_d_01", + [530828] = "inv_glove_robe_pvpwarlock_d_01", + [530829] = "inv_helmet_robe_pvpwarlock_d_01", + [530830] = "inv_pants_robe_pvpwarlock_d_01", + [530831] = "inv_shoulder_robe_pvpwarlock_d_01", + [530958] = "inv_mace_1h_430future_c_01", + [530999] = "inv_misc_cape_deathwingraid_d_03", + [531009] = "inv_offhand_1h_deathwingraid_d_01", + [531208] = "inv_sword_2h_deathwingraiddw_d_01", + [531324] = "inv_relics_sundial", + [531359] = "inv_axe_1h_430nightelf_c_01", + [531360] = "inv_shield_pvpcataclysms3_c_02", + [531373] = "inv_jewelry_ring_105", + [531414] = "inv_1h_430nightelf_c_01", + [531415] = "inv_cape_430dungeon_c_04", + [531507] = "ability_rewindtime", + [531596] = "inv_stave_2h_430future_c_01", + [531758] = "inv_belt_mail_pvphunter_d_01", + [531759] = "inv_belt_robe_pvppriest_d_01", + [531760] = "inv_boots_mail_pvphunter_d_01", + [531761] = "inv_boot_robe_pvppriest_d_01", + [531762] = "inv_bracer_mail_pvphunter_d_01", + [531763] = "inv_bracer_robe_pvppriest_d_01", + [531764] = "inv_chest_mail_pvphunter_d_01", + [531765] = "inv_chest_robe_pvppriest_d_01", + [531766] = "inv_glove_mail_pvphunter_d_01", + [531767] = "inv_glove_robe_pvppriest_d_01", + [531768] = "inv_helm_mail_pvphunter_d_01", + [531770] = "inv_helm_robe_pvppriest_d_01", + [531771] = "inv_misc_epicgem_01", + [531772] = "inv_misc_epicgem_02", + [531773] = "inv_misc_epicgem_03", + [531774] = "inv_misc_epicgem_04", + [531775] = "inv_misc_epicgem_05", + [531776] = "inv_misc_epicgem_06", + [531777] = "inv_misc_epicgem_uncut_01", + [531778] = "inv_misc_epicgem_uncut_02", + [531779] = "inv_misc_epicgem_uncut_03", + [531780] = "inv_misc_epicgem_uncut_04", + [531781] = "inv_misc_epicgem_uncut_05", + [531782] = "inv_misc_epicgem_uncut_06", + [531783] = "inv_pants_mail_pvphunter_d_01", + [531784] = "inv_pant_robe_pvppriest_d_01", + [531785] = "inv_robe_robe_pvppriest_d_01", + [531786] = "inv_shoulder_mail_pvphunter_d_01", + [531787] = "inv_shoulder_robe_pvppriest_d_01", + [531973] = "inv_jewelry_ring_106", + [531974] = "inv_misc_token_darkmoon_01", + [531975] = "inv_thrown_1h_pvpcataclysms3_c_01", + [532088] = "inv_belt_robe_dungeonrobe_c_05", + [532089] = "inv_boots_robe_dungeonrobe_c_05", + [532090] = "inv_bracer_robe_dungeonrobe_c_05", + [532091] = "inv_chest_robe_dungeonrobe_c_05", + [532092] = "inv_glove_robe_dungeonrobe_c_05", + [532093] = "inv_helm_robe_dungeonrobe_c_05", + [532094] = "inv_pants_robe_dungeonrobe_c_05", + [532095] = "inv_shoulder_robe_dungeonrobe_c_05", + [532277] = "inv_belt_plate_pvpdeathknight_d_01", + [532278] = "inv_boots_plate_pvpdeathknight_d_01", + [532279] = "inv_bracer_plate_pvpdeathknight_d_01", + [532280] = "inv_chest_plate_pvpdeathknight_d_01", + [532281] = "inv_gauntlet_plate_pvpdeathknight_d_01", + [532282] = "inv_helm_plate_pvpdeathknight_d_01", + [532283] = "inv_pants_plate_pvpdeathknight_d_01", + [532284] = "inv_shield_deathwingraid_d_02", + [532285] = "inv_shoulder_plate_pvpdeathknight_d_01", + [532328] = "inv_belt_robe_pvpmage_d_01", + [532329] = "inv_boot_robe_pvpmage_d_01", + [532330] = "inv_bracer_robe_pvpmage_d_01", + [532331] = "inv_glove_robe_pvpmage_d_01", + [532332] = "inv_helmet_robe_pvpmage_d_01", + [532333] = "inv_robe_robe_pvpmage_d_01", + [532334] = "inv_shoulder_robe_pvpmage_d_01", + [532459] = "inv_sword_2h_pvpcataclysms3_c_01", + [532490] = "inv_mace_1h_430future_c_02", + [532510] = "inv_pant_robe_pvpmage_d_01", + [532617] = "inv_belt_mail_pvpshaman_d_01", + [532618] = "inv_belt_robe_raidwarlock_k_01", + [532619] = "inv_boots_mail_pvpshaman_d_01", + [532620] = "inv_boots_robe_raidwarlock_k_01", + [532621] = "inv_bracer_robe_raidwarlock_k_01", + [532622] = "inv_chest_robe_raidwarlock_k_01", + [532623] = "inv_gauntlets_robe_raidwarlock_k_01", + [532624] = "inv_helmet_robe_raidwarlock_k_01", + [532625] = "inv_pants_robe_raidwarlock_k_01", + [532626] = "inv_shoulder_robe_raidwarlock_k_01", + [532748] = "inv_bracer_mail_pvpshaman_d_01", + [532749] = "inv_chest_mail_pvpshaman_d_01", + [532750] = "inv_gauntlets_mail_pvpshaman_d_01", + [532751] = "inv_helmet_mail_pvpshaman_d_01", + [532752] = "inv_pants_mail_pvpshaman_d_01", + [532753] = "inv_shoulder_mail_pvpshaman_d_01", + [532989] = "inv_axe_2h_pvpcataclysms3_c_01", + [532990] = "inv_jewelry_ring_107", + [533268] = "inv_stave_2h_pvp400_c_03", + [533269] = "inv_wand_1h_430oldgod_c_01", + [533422] = "inv_misc_food_164_fish_seadog", + [533446] = "inv_polearm_2h_pvpcataclysms3_c_01", + [533573] = "inv_axe_1h_430nightelf_c_02", + [533574] = "inv_belt_robe_raidmage_k_01", + [533575] = "inv_boots_robe_raidmage_k_01", + [533576] = "inv_bracer_robe_raidmage_k_01", + [533577] = "inv_chest_robe_raidmage_k_01", + [533578] = "inv_glove_robe_raidmage_k_01", + [533579] = "inv_helm_robe_raidmage_k_01", + [533580] = "inv_kilt_robe_raidmage_k_01", + [533581] = "inv_offhand_1h_430nightelf_c_01", + [533582] = "inv_pants_robe_raidmage_k_01", + [533583] = "inv_shoulder_robe_raidmage_k_01", + [533584] = "inv_staff_2h_pvpcataclysms3_c_02", + [533750] = "inv_belt_plate_dungeonplate_c_06", + [533751] = "inv_boots_plate_dungeonplate_c_06", + [533752] = "inv_bracer_plate_dungeonplate_c_06", + [533753] = "inv_chest_plate_dungeonplate_c_06", + [533754] = "inv_glove_plate_dungeonplate_c_06", + [533755] = "inv_helm_plate_dungeonplate_c_06", + [533756] = "inv_pants_plate_dungeonplate_c_06", + [533757] = "inv_shoulder_plate_dungeonplate_c_06", + [533862] = "inv_stave_2h_deathwingraid_d_02", + [533889] = "inv_stave_2h_430nightelf_c_01", + [533900] = "inv_wand_1h_430nightelf_c_01", + [533962] = "inv_sword_1h_deathwingraiddw_d_01", + [534167] = "inv_belt_plate_raidwarrior_k_01", + [534168] = "inv_boots_plate_raidwarrior_k_01", + [534169] = "inv_bracer_plate_raidwarrior_k_01", + [534170] = "inv_chest_plate_raidwarrior_k_01", + [534171] = "inv_gauntlets_plate_raidwarrior_k_01", + [534172] = "inv_helmet_plate_raidwarrior_k_01", + [534173] = "inv_mace_2h_430nightelf_c_01", + [534174] = "inv_pants_plate_raidwarrior_k_01", + [534175] = "inv_shoulder_plate_raidwarrior_k_01", + [534176] = "inv_stave_2h_430oldgod_c_01", + [534177] = "inv_thrown_1h_430nightelf_c_01", + [534215] = "inv_axe_1h_deathwingraid_d_02", + [534269] = "inv_misc_neck_generic_1", + [534270] = "inv_misc_ring_generic_1", + [534271] = "inv_misc_ring_generic_2", + [534272] = "inv_misc_ring_generic_3", + [534273] = "inv_misc_ring_generic_4", + [534449] = "inv_belt_leather_raidrogue_k_01", + [534450] = "inv_belt_mail_raidshaman_k_01", + [534451] = "inv_boots_leather_raidrogue_k_01", + [534452] = "inv_boots_mail_raidshaman_k_01", + [534453] = "inv_bracer_leather_raidrogue_k_01", + [534454] = "inv_bracer_mail_raidshaman_k_01", + [534455] = "inv_chest_leather_raidrogue_k_01", + [534456] = "inv_chest_mail_raidshaman_k_01", + [534457] = "inv_gauntlets_leather_raidrogue_k_01", + [534458] = "inv_gauntlets_mail_raidshaman_k_01", + [534459] = "inv_helmet_leather_raidrogue_k_01", + [534460] = "inv_helmet_mail_raidshaman_k_01", + [534461] = "inv_pants_leather_raidrogue_k_01", + [534462] = "inv_pants_mail_raidshaman_k_01", + [534463] = "inv_shoulder_leather_raidrogue_k_01", + [534464] = "inv_shoulder_mail_raidshaman_k_01", + [534591] = "inv_belt_leather_raiddruid_k_01", + [534592] = "inv_boot_leather_raiddruid_k_01", + [534593] = "inv_bracer_leather_raiddruid_k_01", + [534594] = "inv_chest_leather_raiddruid_k_01", + [534595] = "inv_glove_leather_raiddruid_k_01", + [534596] = "inv_helmet_leather_raiddruid_k_01", + [534597] = "inv_pant_leather_raiddruid_k_01", + [534598] = "inv_parachute_01", + [534599] = "inv_shoulder_leather_raiddruid_k_01", + [534600] = "inv_staff_2h_pvpcataclysms3_c_03", + [534813] = "inv_staff_2h_pvpcataclysms3_c_01", + [534814] = "inv_sword_1h_pvpcataclysms3_c_01", + [534859] = "inv_knife_1h_pvpcataclysms3_c_01", + [535044] = "inv_sword_1h_deathwingraid_d_01", + [535045] = "spell_nature_wrathv2", + [535122] = "inv_mace_1h_deathwingraid_d_02", + [535248] = "inv_mace_1h_deathwingraiddw_d_01", + [535249] = "inv_misc_cape_deathwingraid_d_01", + [535282] = "inv_sword_1h_430oldgod_c_01", + [535291] = "inv_misc_demonsoul", + [535299] = "inv_shield_deathwingraid_d_01", + [535300] = "inv_stave_2h_deathwingraid_d_01", + [535414] = "inv_axe_1h_deathwingraiddw_d_01", + [535415] = "inv_belt_plate_raidpaladin_k_01", + [535416] = "inv_boots_plate_raidpaladin_k_01", + [535417] = "inv_bracer_plate_raidpaladin_k_01", + [535418] = "inv_chest_plate_raidpaladin_k_01", + [535419] = "inv_gauntlet_plate_raidpaladin_k_01", + [535420] = "inv_helm_plate_raidpaladin_k_01", + [535421] = "inv_pants_plate_raidpaladin_k_01", + [535422] = "inv_shoulder_plate_raidpaladin_k_01", + [535423] = "plate_raiddeathknight_k_01_belt", + [535424] = "plate_raiddeathknight_k_01_boot", + [535425] = "plate_raiddeathknight_k_01_bracer", + [535426] = "plate_raiddeathknight_k_01_chest", + [535427] = "plate_raiddeathknight_k_01_glove", + [535428] = "plate_raiddeathknight_k_01_helm", + [535429] = "plate_raiddeathknight_k_01_pant", + [535430] = "plate_raiddeathknight_k_01_shoulder", + [535818] = "inv_belt_mail_raidhunter_k_01", + [535819] = "inv_boots_mail_raidhunter_k_01", + [535820] = "inv_boot_leather_pvprogue_d_01", + [535821] = "inv_bracer_leather_pvprogue_d_01", + [535822] = "inv_bracer_mail_raidhunter_k_01", + [535823] = "inv_chest_leather_pvprogue_d_01", + [535824] = "inv_chest_mail_raidhunter_k_01", + [535825] = "inv_glove_leather_pvprogue_d_01", + [535826] = "inv_glove_mail_raidhunter_k_01", + [535827] = "inv_helmet_leather_pvprogue_d_01", + [535828] = "inv_helm_mail_raidhunter_k_01", + [535829] = "inv_pants_leather_pvprogue_d_01", + [535830] = "inv_pants_mail_raidhunter_k_01", + [535831] = "inv_shoulder_leather_pvprogue_d_01", + [535832] = "inv_shoulder_mail_raidhunter_k_01", + [535989] = "inv_axe_2h_430future_c_01", + [535990] = "inv_misc_cape_darkmoonfaire_c_01", + [536020] = "inv_shield_430future_c_01", + [536063] = "inv_axe_1h_deathwingraid_d_01", + [536310] = "inv_firearm_2h_rifle_deathwingraid_d_01", + [536311] = "inv_wand_1h_deathwingraid_d_01", + [536512] = "inv_belt_leather_pvprogue_d_01", + [536548] = "sor-mail", + [536551] = "inv_stave_2h_deathwingraid_d_03", + [536647] = "inv_misc_cape_deathwingraid_d_02", + [536648] = "inv_shield_430oldgod_c_01", + [536777] = "inv_belt_leather_pvpdruid_d_01", + [536778] = "inv_boots_leather_pvpdruid_d_01", + [536779] = "inv_bracers_leather_pvpdruid_d_01", + [536780] = "inv_chest_leather_pvpdruid_d_01", + [536781] = "inv_gauntlets_leather_pvpdruid_d_01", + [536782] = "inv_helmet_leather_pvpdruid_d_01", + [536783] = "inv_pants_leather_pvpdruid_d_01", + [536784] = "inv_robe_leather_pvpdruid_d_01", + [536785] = "inv_shoulders_leather_pvpdruid_d_01", + [536821] = "bow_1h_430future_c_01", + [536830] = "inv_hand_1h_430oldgod_c_01", + [536976] = "inv_mace_2h_pvpcataclysms3_c_01", + [537060] = "inv_hammer_32", + [537100] = "inv_knife_1h_deathwingraid_e_01", + [537101] = "inv_knife_1h_deathwingraid_e_02", + [537102] = "inv_knife_1h_deathwingraid_e_03", + [537230] = "inv_mace_2h_deathwingraid_d_01", + [537515] = "ability_mount_spectralgryphon", + [537531] = "ability_mount_spectralwyvern", + [537532] = "inv_belt_mail_dungeonmail_c_05", + [537533] = "inv_bracer_mail_dungeonmail_c_05", + [537534] = "inv_chest_mail_dungeonmail_c_05", + [537535] = "inv_glove_mail_dungeonmail_c_05", + [537536] = "inv_helmet_mail_dungeonmail_c_05", + [537537] = "inv_knife_1h_deathwingraiddw_d_01", + [537538] = "inv_pants_mail_dungeonmail_c_05", + [537539] = "inv_shoulder_mail_dungeonmail_c_05", + [537803] = "inv_belt_leather_dungeonleather_c_05", + [537804] = "inv_boots_leather_dungeonleather_c_05", + [537805] = "inv_bracers_leather_dungeonleather_c_05", + [537806] = "inv_chest_leather_dungeonleather_c_05", + [537807] = "inv_gauntlets_leather_dungeonleather_c_05", + [537808] = "inv_helmet_leather_dungeonleather_c_05", + [537809] = "inv_pants_leather_dungeonleather_c_05", + [537810] = "inv_shoulder_leather_dungeonleather_c_05", + [538039] = "ability_deathwing_bloodcorruption_death", + [538040] = "ability_deathwing_bloodcorruption_earth", + [538041] = "ability_deathwing_fierygrip", + [538042] = "ability_deathwing_grasping_tendrils", + [538043] = "ability_deathwing_sealarmorbreachtga", + [538047] = "inv_belt_plate_pvppaladin_d_01", + [538048] = "inv_boots_plate_pvppaladin_d_01", + [538049] = "inv_bracer_plate_pvppaladin_d_01", + [538050] = "inv_chest_plate_pvppaladin_d_01", + [538051] = "inv_glove_plate_pvppaladin_d_01", + [538052] = "inv_helmet_plate_pvppaladin_d_01", + [538053] = "inv_knife_1h_deathwingraid_d_02", + [538054] = "inv_pants_plate_pvppaladin_d_01", + [538055] = "inv_shoulder_plate_pvppaladin_d_01", + [538234] = "inv_belt_robe_raidpriest_k_01", + [538235] = "inv_boots_robe_raidpriest_k_01", + [538236] = "inv_bracer_robe_raidpriest_k_01", + [538237] = "inv_chest_robe_raidpriest_k_01", + [538238] = "inv_gauntlet_pants_robe_raidpriest_k_01", + [538239] = "inv_helm_robe_raidpriest_k_01", + [538240] = "inv_pants_robe_raidpriest_k_01", + [538241] = "inv_shoulder_robe_raidpriest_k_01", + [538490] = "inv_knife_1h_430oldgod_c_01", + [571774] = "inv_shield_pvpcataclysms3_c_01", + [571786] = "inv_knife_1h_deathwingraid_d_01", + [571868] = "creatureportrait_ul_chandelier", + [574567] = "creatureportrait_nexus_floating_disc", + [574626] = "ability_mount_reddrakemount", + [574786] = "achievment_boss_blackhorn", + [574787] = "achievment_boss_hagara", + [574788] = "achievment_boss_madnessofdeathwing", + [574789] = "achievment_boss_morchok", + [574790] = "achievment_boss_spineofdeathwing", + [574791] = "achievment_boss_ultraxion", + [574792] = "achievment_boss_wellofeternity", + [574793] = "achievment_boss_yorsahj", + [574794] = "achievment_boss_zonozz", + [574795] = "achievment_raid_houroftwilight", + [574806] = "inv_pet_chromaticdragon", + [574999] = "achievement_shivan", + [575534] = "ability_deathwing_assualtaspects", + [575535] = "ability_deathwing_cataclysm", + [575536] = "ability_deathwing_shrapnel", + [575541] = "ability_tetanus", + [575745] = "inv_thrown_1h_deathwingraid_d_01", + [575819] = "inv_belt_plate_raiddeathknight_k_01", + [575820] = "inv_boots_plate_raiddeathknight_k_01", + [575821] = "inv_bracer_plate_raiddeathknight_k_01", + [575822] = "inv_chest_plate_raiddeathknight_k_01", + [575823] = "inv_gauntlet_plate_raiddeathknight_k_01", + [575824] = "inv_helm_plate_raiddeathknight_k_01", + [575825] = "inv_pants_plate_raiddeathknight_k_01", + [575826] = "inv_shoulder_plate_raiddeathknight_k_01", + [576138] = "inv_dragonchromaticmount", + [576309] = "spell_yorsahj_bloodboil_black", + [576310] = "spell_yorsahj_bloodboil_blue", + [576311] = "spell_yorsahj_bloodboil_green", + [576312] = "spell_yorsahj_bloodboil_purple", + [576313] = "spell_yorsahj_bloodboil_yellow", + [577318] = "ability_mount_tyraelmount", + [587740] = "ability_mount_feldrake", [625999] = "classicon_druid", [626000] = "classicon_hunter", [626001] = "classicon_mage", @@ -6326,6 +8962,7 @@ local icons = { [1126584] = "vas_namechange", [1126585] = "vas_racechange", [1418621] = "item_shop_giftbox01", + [1500877] = "inv_misc_scrollunrolled01", [1530081] = "vas_charactertransfer", [2056011] = "ui_chat", [2241756] = "inv_scarab_ivory", @@ -6343,6 +8980,14 @@ local icons = { [4687496] = "inv_rabbitmountclassic", [4777763] = "inv_magicalfishpet", [5279604] = "inv_arfuspet_classic", + [5617450] = "inv_treasurecrabpetclassic_blue", + [5617451] = "inv_treasurecrabpetclassic_purple", + [5617452] = "inv_treasurecrabpetclassic_red", + [5617453] = "inv_treasurecrabpetclassic_yellow", + [5617454] = "inv_parrotpiratemountclassic_blue", + [5617455] = "inv_parrotpiratemountclassic_green", + [5617456] = "inv_parrotpiratemountclassic_purple", + [5617457] = "inv_parrotpiratemountclassic_red", } --- @type integer[] @@ -12348,7 +14993,52 @@ local order = { 319745, 320309, 321296, + 321404, + 321405, + 321406, + 321407, + 321408, + 321409, + 321410, + 321411, + 321412, + 321413, + 321414, + 321415, + 321416, + 321417, + 321418, + 321487, + 321488, 322118, + 323402, + 323403, + 323404, + 323405, + 323406, + 323407, + 323408, + 323409, + 323410, + 323411, + 323412, + 323413, + 323414, + 323415, + 323416, + 323417, + 323418, + 323419, + 323420, + 323421, + 323422, + 323423, + 323424, + 323425, + 323426, + 323427, + 323428, + 323429, 324966, 325906, 325907, @@ -12371,15 +15061,43 @@ local order = { 327842, 327843, 327844, + 327913, + 327914, + 327915, + 327916, 328269, 328270, 328483, 328484, 329349, 329513, + 329590, + 329848, 330082, + 330602, + 330603, + 330604, + 331053, + 331054, + 331055, 331124, + 331151, + 331436, + 331437, + 331438, + 331782, + 331783, + 331784, + 332402, + 332403, + 332404, + 332405, + 333545, + 333546, 334365, + 334463, + 334464, + 335602, 335910, 335911, 335962, @@ -12510,6 +15228,7 @@ local order = { 341980, 341981, 342402, + 342424, 342513, 342514, 342515, @@ -12525,6 +15244,7 @@ local order = { 342917, 342918, 342919, + 343560, 343631, 343632, 343633, @@ -12560,6 +15280,12 @@ local order = { 344560, 344561, 344562, + 344799, + 344800, + 344801, + 344802, + 344803, + 344804, 345787, 346945, 346946, @@ -12568,6 +15294,8 @@ local order = { 346949, 346950, 346951, + 346991, + 347429, 347735, 347736, 347737, @@ -12583,6 +15311,7 @@ local order = { 347854, 347855, 347856, + 347920, 348273, 348274, 348275, @@ -12599,13 +15328,99 @@ local order = { 348286, 348287, 348288, + 348519, + 348520, + 348521, + 348522, + 348523, + 348524, + 348525, + 348526, + 348527, + 348528, + 348529, + 348530, + 348531, + 348532, + 348533, + 348534, + 348535, + 348536, + 348537, + 348538, + 348539, + 348540, + 348541, + 348542, + 348543, + 348544, + 348545, + 348546, + 348547, + 348548, + 348549, + 348550, + 348551, + 348552, + 348553, + 348554, + 348555, + 348556, + 348557, + 348558, + 348559, + 348560, + 348561, + 348562, + 348563, + 348564, + 348565, + 348566, + 348567, 348766, 348767, 348768, 348769, 348770, + 349113, + 349114, + 349115, + 349116, + 349117, + 349503, + 349504, 349759, 349760, + 350558, + 350559, + 350560, + 350561, + 350562, + 350563, + 350564, + 350565, + 350566, + 350567, + 350568, + 350569, + 350570, + 350571, + 350572, + 350573, + 350574, + 350575, + 350576, + 350577, + 350646, + 350647, + 350648, + 350649, + 350650, + 350651, + 350867, + 350868, + 350869, + 350870, 351027, 351028, 351029, @@ -12614,6 +15429,14 @@ local order = { 351032, 351033, 351034, + 351042, + 351043, + 351044, + 351045, + 351046, + 351047, + 351048, + 351049, 351058, 351059, 351060, @@ -12623,21 +15446,2479 @@ local order = { 351064, 351065, 351066, + 351457, + 351499, + 351500, + 351501, + 351502, + 351503, + 351504, + 351505, + 351506, + 351507, + 351508, + 352004, + 352658, + 353135, + 353136, 353520, + 353645, + 354434, + 354435, + 354436, + 354719, + 355498, + 356213, + 356214, + 356215, + 356216, + 356217, + 356218, + 356219, + 356220, + 356428, + 356429, + 356430, + 356431, + 356432, + 356433, + 356434, + 356435, 357245, 357262, + 357552, + 357553, + 357554, + 357555, + 357556, + 357557, + 357558, + 357559, + 357813, + 358687, + 359494, + 359495, + 359496, + 359497, + 359498, + 359499, + 359500, + 359501, + 359502, + 359725, + 359726, + 359727, + 359728, + 359729, + 359730, + 359731, + 359732, + 360285, + 360286, + 360287, + 360288, + 360289, + 360290, + 360291, + 361370, + 361371, + 361372, + 361373, + 361374, + 361375, + 361376, + 361377, + 363206, + 363207, + 363209, + 363210, + 363211, + 363212, + 364321, + 364322, + 364323, + 364324, + 364325, + 364326, + 364327, + 364328, + 364329, + 364330, + 364331, + 366042, + 366043, + 366044, + 366045, + 366046, + 366047, + 366048, + 366054, + 366055, + 366056, + 366057, + 366058, + 366059, + 366060, + 366061, + 366063, + 366064, + 366251, + 366252, + 366397, + 366402, + 366473, + 366751, + 366767, + 366768, + 366795, + 366799, + 366800, + 366828, + 366829, + 366830, + 366831, + 366936, + 366937, + 366938, + 366939, + 366940, + 366995, + 367030, + 367031, + 367032, + 367033, + 367034, + 367035, + 367070, + 367071, + 367072, + 367073, + 367074, + 367075, + 367300, + 367301, + 367302, + 367594, + 367595, + 367596, + 367597, + 367598, + 367599, + 367600, + 367601, + 367602, + 367810, + 367811, + 367812, + 367813, + 367814, + 367815, + 367816, + 367843, + 367844, + 367845, + 367846, + 367847, + 367889, 368365, + 368366, + 368552, + 368862, + 368863, + 368864, + 368865, + 368866, + 368867, + 368868, + 368979, + 369214, 369225, + 369226, + 369278, + 369279, + 369280, + 369281, + 369410, + 369760, + 369761, + 370211, + 370252, 370404, 370664, + 370670, + 370769, + 370770, + 371335, + 371336, + 371337, + 371395, + 371788, + 372088, + 372094, + 372198, + 372947, + 373602, + 373990, + 374279, + 375467, + 375468, + 375532, + 376022, + 376248, + 376249, + 376716, + 376832, + 376833, + 376834, 377270, 377271, 377272, 377273, + 377283, + 377284, + 377988, + 377989, + 378603, + 380535, + 380836, + 381028, + 382329, + 382927, + 382928, + 383596, + 383597, + 383691, + 383737, + 383957, + 384458, + 386094, + 386095, + 386406, + 386826, 387415, + 388495, + 391123, + 391124, + 391125, + 391126, + 391127, + 391128, + 391129, + 391130, + 391131, + 391132, + 392103, 394617, + 394796, + 396545, + 396546, + 397907, + 399040, + 399041, + 400720, + 402660, + 405446, + 409544, + 409545, + 409546, + 409548, + 409549, + 409550, + 409551, + 409594, + 409595, + 409596, + 409599, + 409601, + 409602, + 409603, + 409604, + 409605, + 409606, + 409607, + 412503, + 412504, + 412505, + 412506, + 412507, + 412508, + 412509, + 412510, + 412511, + 412512, + 412513, + 412514, + 412515, + 412516, + 412517, + 413570, + 413571, + 413572, + 413573, + 413578, + 413579, + 413580, + 413581, + 413582, + 413584, + 413585, + 413586, + 413587, + 413588, + 413589, + 413590, + 413592, + 413593, + 413594, + 414282, + 414283, + 414284, + 414285, + 414286, + 414287, + 414288, + 414289, + 414290, + 414291, + 414292, + 414293, + 414294, + 414295, + 414296, + 414297, + 414298, + 414299, + 414300, + 414301, + 414302, + 414303, + 414304, + 414305, + 414306, + 415046, + 415047, + 415048, + 415049, + 415050, + 415051, + 415052, + 415053, + 415054, + 418249, + 418250, + 418251, + 422794, + 422795, + 422796, + 422797, + 422798, + 422799, + 422800, + 422801, + 422802, + 422803, + 422804, + 422805, + 422806, + 422807, + 422808, + 422809, + 424820, + 424821, + 424822, + 424823, + 424824, + 424825, + 424826, + 424827, + 425950, + 425951, + 425952, + 425953, + 425954, + 425955, + 425956, + 425957, + 425958, + 425959, + 425960, + 426391, + 426392, + 426393, + 426394, + 426395, + 426396, + 426397, + 426398, + 426494, + 426495, + 426496, + 426497, + 426498, + 426499, + 426500, + 426501, + 426502, + 427627, + 427628, + 427629, + 427630, + 427631, + 427632, + 427633, + 427634, + 429170, + 429171, + 429172, + 429173, + 429174, + 429175, + 429176, + 429177, + 429178, + 429179, + 429180, + 429181, + 429182, + 429183, + 429184, + 429185, + 429380, + 429382, + 429383, + 429590, + 430969, + 430970, + 430971, + 430972, + 430973, + 430974, + 430975, + 430976, + 430977, + 431759, + 431760, + 431761, + 431762, + 431763, + 431764, + 431765, + 431766, + 432002, + 432003, + 432006, + 432008, + 433440, + 433447, + 433448, + 433449, + 433552, + 433553, + 433554, + 433555, + 433556, + 433557, + 433558, + 433559, + 436745, + 436746, + 436747, + 436748, + 436749, + 436750, + 436751, + 436752, + 436835, + 436836, + 436837, + 436838, + 436839, + 436840, + 436841, + 436842, + 438760, + 441139, + 441140, + 441141, + 441142, + 441143, + 441144, + 441145, + 441146, + 441147, + 441148, + 441149, + 441150, + 441880, 442272, + 442728, + 442729, + 442731, + 442732, + 442733, + 442734, + 442735, + 442736, + 442737, + 442738, + 442739, + 442740, + 442741, + 442742, + 442743, + 443320, + 443321, + 443322, + 443323, + 443324, + 443325, + 443326, + 443327, + 443328, + 443329, + 443330, + 443331, + 443332, + 443333, + 443334, + 443335, + 443336, + 443337, + 443338, + 443339, + 443340, + 443341, + 443342, + 443343, + 443344, + 443345, + 443346, + 443347, + 443348, + 443349, + 443350, + 443351, + 443352, + 443353, + 443354, + 443355, + 443356, + 443357, + 443358, + 443359, + 443360, + 443361, + 443362, + 443363, + 443364, + 443365, + 443366, + 443367, + 443368, + 443369, + 443370, + 443371, + 443372, + 443373, + 443374, + 443375, + 443376, + 443377, + 443378, + 443379, + 443380, + 443381, + 443382, + 443383, + 443384, + 443385, + 443386, + 443387, + 443388, + 443389, + 443390, + 443391, + 443392, + 443393, + 443394, + 443395, + 443396, + 443397, + 443398, + 443399, + 443400, + 443401, + 443402, + 443403, + 443404, + 443405, + 443406, + 445516, + 445517, + 445518, + 446072, + 446073, + 446074, + 446075, + 446076, + 446077, + 446078, + 446079, + 446080, + 446081, + 446082, + 446083, + 446084, + 446085, + 446086, + 446087, + 446088, + 446089, + 446090, + 446091, + 446092, + 446093, + 446094, + 446095, + 446096, + 446097, + 446098, + 446099, + 446100, + 446101, + 446102, + 446103, + 446104, + 446105, + 446106, + 446107, + 446108, + 446109, + 446110, + 446111, + 446112, + 446113, + 446114, + 446115, + 446116, + 446117, + 446118, + 446119, + 446120, + 446121, + 446122, + 446123, + 446124, + 446125, + 446126, + 446127, + 446128, + 446129, + 446130, + 446131, + 446132, + 446133, + 446134, + 446135, + 446136, + 446137, + 446138, + 446139, + 446140, + 446141, + 446142, + 446143, + 446144, + 446145, + 446906, + 446907, + 446908, + 446909, + 446910, + 446911, + 446912, + 446913, + 446914, + 446915, + 446916, + 450267, + 450904, + 450905, + 450906, + 450907, + 450908, + 450937, + 451161, + 451162, + 451163, + 451164, + 451165, + 451166, + 451167, + 451168, + 451169, + 451170, + 454026, + 454027, + 454028, + 454034, + 454035, + 454036, + 454037, + 454039, + 454040, + 454041, + 454042, + 454043, + 454044, + 454045, + 454046, + 454047, + 454048, + 454049, + 454050, + 454051, + 454052, + 454053, + 454054, + 454055, + 454056, + 454057, + 454058, + 454059, + 454060, + 454061, + 454062, + 454063, + 454064, + 454065, + 454066, + 454067, + 454068, + 454069, + 454070, + 454482, + 454771, + 454772, + 454773, + 456031, + 456032, + 456563, + 456564, + 456565, + 456566, + 456567, + 456568, + 456569, + 456570, + 456571, + 456572, + 456573, + 456574, + 456575, + 456576, + 456577, + 457329, + 457635, + 457636, + 457637, + 457654, + 457655, + 457697, + 457698, + 457699, + 457700, + 457701, + 457702, + 457703, + 457704, + 457705, + 457706, + 457707, + 457708, + 457709, + 457710, + 457711, + 457712, + 457713, + 457714, + 457715, + 457716, + 457717, + 457718, + 457719, + 457720, + 457721, + 457722, + 457723, + 457724, + 457725, + 457726, + 457727, + 457728, + 457729, + 457730, + 457731, + 457732, + 457733, + 457734, + 457735, + 457736, + 457737, + 457738, + 457739, + 457740, + 457741, + 457742, + 457743, + 457744, + 457745, + 457746, + 457747, + 457748, + 457749, + 457750, + 457751, + 457752, + 457753, + 457754, + 457755, + 457756, + 457757, + 457758, + 457759, + 457760, + 457761, + 457762, + 457763, + 457764, + 457765, + 457766, + 457767, + 457768, + 457769, + 457770, + 457771, + 457772, + 457773, + 457774, + 457775, + 457776, + 457777, + 457778, + 457779, + 457780, + 457781, + 457782, + 457783, + 457784, + 457785, + 457786, + 457787, + 457788, + 457789, + 457790, + 457791, + 457792, + 457793, + 457794, + 457795, + 457796, + 457797, + 457798, + 457799, + 457800, + 457801, + 457802, + 457803, + 457804, + 457805, + 457806, + 457807, + 457808, + 457809, + 457810, + 457811, + 457812, + 457813, + 457814, + 457815, + 457816, + 457817, + 457818, + 457819, + 457820, + 457821, + 457822, + 457823, + 457824, + 457825, + 457826, + 457827, + 457828, + 457829, + 457830, + 457831, + 457832, + 457833, + 457834, + 457835, + 457836, + 457837, + 457838, + 457839, + 457840, + 457841, + 457842, + 457843, + 457844, + 457845, + 457846, + 457847, + 457848, + 457849, + 457850, + 457851, + 457852, + 457853, + 457854, + 457855, + 457856, + 457857, + 457858, + 457859, + 457860, + 457861, + 457862, + 457863, + 457864, + 457865, + 457866, + 457867, + 457868, + 457869, + 457870, + 457871, + 457872, + 457873, + 457874, + 457875, + 457876, + 457877, + 457878, + 457879, + 457880, + 457881, + 457882, + 457883, + 457884, + 457885, + 457886, + 457887, + 457888, + 457889, + 457890, + 457891, + 457892, + 457893, + 457894, + 457895, + 457896, + 457897, + 457898, + 457899, + 457900, + 457901, + 457902, + 457903, + 457904, + 457905, + 457906, + 457907, + 457908, + 457909, + 457910, + 457911, + 457912, + 457913, + 457914, + 457915, + 457916, + 457917, + 457918, + 457919, + 457920, + 457921, + 457922, + 457923, + 457924, + 457925, + 457926, + 457927, + 457928, + 457929, + 457930, + 457931, + 457932, + 457933, + 457934, + 457935, + 457936, + 457937, + 457938, + 457939, + 457940, + 457941, + 457942, + 457943, + 457944, + 457945, + 457946, + 457947, + 457948, + 457949, + 457950, + 457951, + 457952, + 457953, + 457954, + 457955, + 457956, + 457957, + 457958, + 457959, + 457960, + 457961, + 457962, + 457963, + 457964, + 457965, + 457966, + 457967, + 457968, + 457969, + 457970, + 457971, + 457972, + 457973, + 457974, + 457975, + 457976, + 457977, + 457978, + 457979, + 457980, + 457981, + 457982, + 457983, + 457984, + 457985, + 457986, + 457987, + 457988, + 457989, + 457990, + 457991, + 457992, + 457993, + 457994, + 457995, + 457996, + 457997, + 457998, + 457999, + 458000, + 458001, + 458002, + 458003, + 458004, + 458005, + 458006, + 458007, + 458008, + 458009, + 458173, + 458174, + 458175, + 458176, + 458180, + 458181, + 458223, + 458224, + 458225, + 458226, + 458227, + 458228, + 458229, + 458230, + 458235, + 458238, + 458239, + 458240, + 458241, + 458242, + 458243, + 458244, + 458245, + 458246, + 458252, + 458254, + 458255, + 458256, + 458257, + 458258, + 458323, + 458324, + 458325, + 458326, + 458327, + 458328, + 458329, + 458330, + 458412, + 458717, + 458718, + 458719, + 458720, + 458721, + 458722, + 458723, + 458724, + 458725, + 458726, + 458727, + 458728, + 458729, + 458730, + 458731, + 458732, + 458733, + 458734, + 458735, + 458736, + 458737, + 458772, + 458773, + 458774, + 458797, + 458966, + 458967, + 458968, + 458969, + 458970, + 458971, + 458972, + 458973, + 458974, + 458975, + 458976, + 459025, + 459026, + 459027, + 459036, + 459037, + 459038, + 459039, + 459040, + 459041, + 459042, + 459043, + 459044, + 459148, + 460671, + 460686, + 460687, + 460688, + 460689, + 460690, + 460691, + 460692, + 460693, + 460694, + 460695, + 460696, + 460697, + 460698, + 460699, + 460700, + 460715, + 460716, + 460717, + 460856, + 460857, + 460858, + 460881, + 460905, + 460952, + 460953, + 460954, + 460955, + 460956, + 460957, + 460958, + 460959, + 461112, + 461113, + 461114, + 461115, + 461116, + 461117, + 461118, + 461119, + 461120, + 461121, + 461122, + 461125, + 461126, + 461127, + 461128, + 461129, + 461130, + 461131, + 461132, + 461133, + 461134, + 461135, + 461136, + 461137, + 461138, + 461139, + 461140, + 461141, + 461142, + 461143, + 461144, + 461145, + 461146, + 461147, + 461148, + 461149, + 461267, + 461790, + 461791, + 461792, + 461793, + 461794, + 461795, + 461796, + 461797, + 461798, + 461799, + 461800, + 461801, + 461802, + 461803, + 461804, + 461805, + 461806, + 461807, + 461808, + 461809, + 461810, + 461811, + 461812, + 461813, + 461814, + 461815, + 461816, + 461817, + 461818, + 461819, + 461820, + 461821, + 461822, + 461823, + 461824, + 461825, + 461826, + 461827, + 461828, + 461846, + 461847, + 461848, + 461849, + 461850, + 461851, + 461852, + 461853, + 461854, + 461855, + 461856, + 461857, + 461858, + 461859, + 461860, + 462273, + 462274, + 462275, + 462276, + 462324, + 462325, + 462326, + 462327, + 462328, + 462329, + 462337, + 462338, + 462339, + 462340, + 462522, + 462523, + 462524, + 462525, + 462526, + 462527, + 462528, + 462529, + 462530, + 462531, + 462532, + 462533, + 462534, + 462535, + 462536, + 462650, + 462651, + 462659, + 462671, + 462672, + 462673, + 462674, + 462675, + 462728, + 462996, + 462997, + 462998, + 462999, + 463000, + 463001, + 463002, + 463003, + 463004, + 463005, + 463006, + 463007, + 463008, + 463009, + 463010, + 463012, + 463013, + 463280, + 463281, + 463282, + 463283, + 463284, + 463285, + 463286, + 463444, + 463445, + 463446, + 463447, + 463448, + 463449, + 463450, + 463451, + 463453, + 463454, + 463455, + 463456, + 463457, + 463458, + 463459, + 463460, + 463461, + 463462, + 463463, + 463464, + 463465, + 463466, + 463467, + 463468, + 463478, + 463484, + 463489, + 463490, + 463491, + 463493, + 463514, + 463515, + 463516, + 463517, + 463518, + 463519, + 463520, + 463521, + 463522, + 463523, + 463524, + 463525, + 463526, + 463527, + 463528, + 463529, + 463530, + 463531, + 463532, + 463533, + 463534, + 463535, + 463536, + 463537, + 463538, + 463539, + 463540, + 463541, + 463542, + 463543, + 463544, + 463545, + 463546, + 463547, + 463548, + 463549, + 463550, + 463551, + 463552, + 463553, + 463554, + 463555, + 463556, + 463557, + 463558, + 463559, + 463560, + 463561, + 463562, + 463563, + 463564, + 463565, + 463566, + 463567, + 463568, + 463569, + 463570, + 463829, + 463830, + 463831, + 463832, + 463833, + 463834, + 463835, + 463836, + 463851, + 463852, + 463853, + 463854, + 463855, + 463856, + 463857, + 463858, + 463859, + 463860, + 463861, + 463862, + 463863, + 463873, + 463874, + 463875, + 463876, + 463877, + 463878, + 463879, + 463880, + 463881, + 463882, + 463883, + 463884, + 463885, + 463886, + 463887, + 463888, + 463889, + 463890, + 463891, + 463892, + 463893, + 463894, + 463895, + 463896, + 463897, + 463898, + 463899, + 463900, + 463901, + 463902, + 463903, + 463913, + 463914, + 463915, + 463916, + 463917, + 463918, + 463919, + 463920, + 463921, + 463922, + 463923, + 463924, + 463925, + 463926, + 463927, + 463928, + 463929, + 463930, + 463931, + 463932, + 464022, + 464023, + 464024, + 464025, + 464026, + 464027, + 464028, + 464029, + 464030, + 464068, + 464069, + 464073, + 464074, + 464075, + 464076, + 464077, + 464078, + 464079, + 464081, + 464117, + 464118, + 464119, + 464120, + 464139, + 464140, + 464141, + 464142, + 464143, + 464146, + 464147, + 464159, + 464160, + 464161, + 464162, + 464188, + 464189, + 464190, + 464191, + 464192, + 464193, + 464194, + 464195, + 464330, + 464338, + 464341, + 464342, + 464343, + 464483, + 464507, + 464508, + 464509, + 464604, + 464605, + 464606, + 464607, + 464608, + 464609, + 464635, + 464636, + 464773, + 464774, + 464775, + 464776, + 464777, + 464778, + 464779, + 464780, 464820, + 464855, + 464879, + 464973, + 464974, + 464975, + 464976, + 464977, + 464978, + 464979, + 464980, + 464981, + 465081, + 465109, + 465110, + 465111, + 465112, + 465836, + 465841, + 465875, + 465876, + 465877, + 465878, + 465879, + 465915, + 465916, + 466012, + 466035, + 466036, + 466082, + 466083, + 466084, + 466085, + 466086, + 466087, + 466088, + 466089, + 466090, + 466091, + 466265, + 466266, + 466267, + 466268, + 466269, + 466270, + 466271, + 466272, + 466273, + 466274, + 466275, + 466276, + 466277, + 466278, + 466279, + 466280, + 466281, + 466282, + 466283, + 466284, + 466285, + 466286, + 466287, + 466288, + 466642, + 466643, + 466644, + 466645, + 466646, + 466647, + 466648, + 466717, + 466718, + 466719, + 466720, + 466721, + 466722, + 466723, + 466724, + 466725, + 466726, + 466727, + 466728, + 466729, + 466730, + 466731, + 466732, + 466733, + 466734, + 466735, + 466736, + 466842, + 466843, + 466844, + 466845, + 466846, + 466847, + 466966, + 466967, + 466968, + 466969, + 466970, + 466971, + 466972, + 466973, + 466974, + 466975, + 466976, + 467092, + 467093, + 467094, + 467095, + 467096, + 467097, + 467098, + 467099, + 467100, + 467101, + 467102, + 467103, + 467104, + 467105, + 467106, + 467107, + 467623, + 467767, + 467780, + 467781, + 467782, + 467783, + 467784, + 467785, + 467850, + 467892, + 467893, + 467894, + 467895, + 468265, + 468508, + 468709, + 468710, + 468711, + 468712, + 468713, + 468714, + 468715, + 468716, + 468853, + 468854, + 468855, + 468856, + 468857, + 468858, + 468859, + 468860, + 468861, + 468862, + 468863, + 468864, + 468865, + 468866, + 468867, + 468868, + 469157, + 469158, + 469159, + 469160, + 469161, + 469162, + 469163, + 469164, + 469165, + 469166, + 469167, + 469168, + 469169, + 469170, + 469171, + 469172, + 469271, + 469518, + 469519, + 469520, + 469521, + 469522, + 469523, + 469524, + 469525, + 469626, + 469627, + 469628, + 469629, + 469630, + 469631, + 469632, + 469633, + 469634, + 469722, + 469740, + 469741, + 469742, + 469743, + 469753, + 488577, + 509966, + 509986, + 510009, + 510017, + 510037, + 510053, + 510756, + 510757, + 510795, + 510886, + 510887, + 510936, + 510990, + 510991, + 510992, + 510993, + 510994, + 510995, + 510996, + 510997, + 511003, + 511035, + 511044, + 511122, + 511130, + 511515, + 511516, + 511543, + 511544, + 511649, + 511650, + 511651, + 511713, + 511726, + 511727, + 511728, + 511729, + 512000, + 512077, + 512326, + 512435, + 512436, + 512437, + 512452, + 512467, + 512468, + 512469, + 512470, + 512471, + 512472, + 512473, + 512474, + 512475, + 512476, + 512477, + 512478, + 512479, + 512607, + 512608, + 512609, + 512610, + 512677, + 512788, + 512789, + 512790, + 512791, + 512792, + 512793, + 512828, + 512829, + 512902, + 512903, + 512904, + 512905, + 512906, + 512928, + 512960, + 512963, + 513195, + 513920, + 514015, + 514016, + 514017, + 514018, + 514019, + 514020, + 514021, + 514022, + 514061, + 514086, + 514087, + 514088, + 514102, + 514159, + 514176, + 514177, + 514178, + 514179, + 514180, + 514181, + 514182, + 514183, + 514261, + 514262, + 514277, + 514278, + 514300, + 514301, + 514302, + 514303, + 514316, + 514333, + 514334, + 514335, + 514336, + 514337, + 514338, + 514339, + 514340, + 514463, + 514464, + 514514, + 514533, + 514534, + 514535, + 514640, + 514641, + 514679, + 514844, + 514845, + 514924, + 514925, + 514929, + 514949, + 514950, + 515033, + 515148, + 515199, + 515200, + 515951, + 515952, + 515953, + 515954, + 515955, + 515956, + 515957, + 515958, + 515959, + 515960, + 515961, + 515962, + 515963, + 515964, + 515993, + 515994, + 515995, + 516313, + 516338, + 516339, + 516501, + 516521, + 516522, + 516523, + 516524, + 516525, + 516526, + 516527, + 516528, + 516665, + 516666, + 516667, + 516743, + 516796, + 516862, + 516863, + 516864, + 516867, + 517021, + 517022, + 517111, + 517112, + 517159, + 517160, + 517161, + 517162, + 517163, + 518970, + 518997, + 518998, + 518999, + 519000, + 519001, + 519002, + 519003, + 519004, + 519005, + 519378, + 519379, + 519380, + 519381, + 519382, + 519383, + 519384, + 519385, + 519389, + 519390, + 519391, + 519392, + 519395, + 519396, + 519397, + 519398, + 519399, + 519400, + 519401, + 519402, + 519403, + 519830, + 519892, + 520750, + 520751, + 520752, + 520753, + 520754, + 520755, + 520756, + 520757, + 520758, + 521216, + 521217, + 521218, + 521219, + 521220, + 521221, + 521222, + 521223, + 521584, + 521772, + 522862, + 522863, + 522864, + 522865, + 522866, + 522867, + 522868, + 522974, + 522987, + 522988, + 522989, + 522990, + 522991, + 522992, + 522993, + 522994, + 523490, + 523893, + 523894, + 523895, + 523896, + 523897, + 524049, + 524050, + 524154, + 524305, + 524348, + 524349, + 524350, + 524351, + 524352, + 524353, + 524354, + 524480, + 524481, + 524482, + 524483, + 524484, + 524485, + 524486, + 524487, + 524772, + 524773, + 524793, + 524794, + 524795, + 524796, + 525022, + 525023, + 525024, + 525025, + 525026, + 525132, + 525133, + 525134, + 525788, + 525789, + 526164, + 526165, + 526166, + 526167, + 526168, + 526169, + 526170, + 526171, + 526172, + 526173, + 526174, + 526175, + 526176, + 526177, + 526178, + 526179, + 526356, + 526520, + 526521, + 526522, + 526523, + 526524, + 526578, + 526580, + 526763, + 526764, + 526765, + 527300, + 527301, + 527302, + 527303, + 527304, + 527423, + 527580, + 527684, + 527714, + 527836, + 528288, + 528334, + 528692, + 528693, + 528947, + 528948, + 529148, + 529149, + 529180, + 529424, + 529425, + 529740, + 529741, + 529781, + 529876, + 529877, + 529878, + 529879, + 529880, + 529881, + 529882, + 529883, + 530224, + 530250, + 530332, + 530398, + 530399, + 530728, + 530806, + 530824, + 530825, + 530826, + 530827, + 530828, + 530829, + 530830, + 530831, + 530958, + 530999, + 531009, + 531208, + 531324, + 531359, + 531360, + 531373, + 531414, + 531415, + 531507, + 531596, + 531758, + 531759, + 531760, + 531761, + 531762, + 531763, + 531764, + 531765, + 531766, + 531767, + 531768, + 531770, + 531771, + 531772, + 531773, + 531774, + 531775, + 531776, + 531777, + 531778, + 531779, + 531780, + 531781, + 531782, + 531783, + 531784, + 531785, + 531786, + 531787, + 531973, + 531974, + 531975, + 532088, + 532089, + 532090, + 532091, + 532092, + 532093, + 532094, + 532095, + 532277, + 532278, + 532279, + 532280, + 532281, + 532282, + 532283, + 532284, + 532285, + 532328, + 532329, + 532330, + 532331, + 532332, + 532333, + 532334, + 532459, + 532490, + 532510, + 532617, + 532618, + 532619, + 532620, + 532621, + 532622, + 532623, + 532624, + 532625, + 532626, + 532748, + 532749, + 532750, + 532751, + 532752, + 532753, + 532989, + 532990, + 533268, + 533269, + 533422, + 533446, + 533573, + 533574, + 533575, + 533576, + 533577, + 533578, + 533579, + 533580, + 533581, + 533582, + 533583, + 533584, + 533750, + 533751, + 533752, + 533753, + 533754, + 533755, + 533756, + 533757, + 533862, + 533889, + 533900, + 533962, + 534167, + 534168, + 534169, + 534170, + 534171, + 534172, + 534173, + 534174, + 534175, + 534176, + 534177, + 534215, + 534269, + 534270, + 534271, + 534272, + 534273, + 534449, + 534450, + 534451, + 534452, + 534453, + 534454, + 534455, + 534456, + 534457, + 534458, + 534459, + 534460, + 534461, + 534462, + 534463, + 534464, + 534591, + 534592, + 534593, + 534594, + 534595, + 534596, + 534597, + 534598, + 534599, + 534600, + 534813, + 534814, + 534859, + 535044, + 535045, + 535122, + 535248, + 535249, + 535282, + 535291, + 535299, + 535300, + 535414, + 535415, + 535416, + 535417, + 535418, + 535419, + 535420, + 535421, + 535422, + 535423, + 535424, + 535425, + 535426, + 535427, + 535428, + 535429, + 535430, + 535818, + 535819, + 535820, + 535821, + 535822, + 535823, + 535824, + 535825, + 535826, + 535827, + 535828, + 535829, + 535830, + 535831, + 535832, + 535989, + 535990, + 536020, + 536063, + 536310, + 536311, + 536512, + 536548, + 536551, + 536647, + 536648, + 536777, + 536778, + 536779, + 536780, + 536781, + 536782, + 536783, + 536784, + 536785, + 536821, + 536830, + 536976, + 537060, + 537100, + 537101, + 537102, + 537230, + 537515, + 537531, + 537532, + 537533, + 537534, + 537535, + 537536, + 537537, + 537538, + 537539, + 537803, + 537804, + 537805, + 537806, + 537807, + 537808, + 537809, + 537810, + 538039, + 538040, + 538041, + 538042, + 538043, + 538047, + 538048, + 538049, + 538050, + 538051, + 538052, + 538053, + 538054, + 538055, + 538234, + 538235, + 538236, + 538237, + 538238, + 538239, + 538240, + 538241, + 538490, + 571774, + 571786, + 571868, + 574567, + 574626, + 574786, + 574787, + 574788, + 574789, + 574790, + 574791, + 574792, + 574793, + 574794, + 574795, + 574806, + 574999, + 575534, + 575535, + 575536, + 575541, + 575745, + 575819, + 575820, + 575821, + 575822, + 575823, + 575824, + 575825, + 575826, + 576138, + 576309, + 576310, + 576311, + 576312, + 576313, + 577318, + 587740, 625999, 626000, 626001, @@ -12654,6 +17935,7 @@ local order = { 1126584, 1126585, 1418621, + 1500877, 1530081, 2056011, 2241756, @@ -12671,6 +17953,14 @@ local order = { 4687496, 4777763, 5279604, + 5617450, + 5617451, + 5617452, + 5617453, + 5617454, + 5617455, + 5617456, + 5617457, } --- @return table