Files
coa-atlasloot/AtlasLoot/Core/AtlasLoot.lua
T
2021-09-13 19:43:32 +02:00

12615 lines
1.6 MiB
Plaintext

--[[
Atlasloot Enhanced
Author Daviesh / Reworked by Deim of PrimalWoW / Reworked again for Ascension
Loot browser associating loot with instance bosses
Can be integrated with Atlas (http://www.atlasmod.com)
Functions:
AtlasLoot_OnEvent(event)
AtlasLoot_ShowMenu()
AtlasLoot_OnVariablesLoaded()
AtlasLoot_SlashCommand(msg)
AtlasLootOptions_Toggle()
AtlasLoot_OnLoad()
AtlasLootBoss_OnClick()
AtlasLoot_ShowItemsFrame()
AtlasLoot_GenerateAtlasMenu(dataID, pFrame)
AtlasLoot_SetupForAtlas()
AtlasLootOptions_ItemAutoQuery()
AtlasLoot_SetItemInfoFrame()
AtlasLootItemsFrame_OnCloseButton()
AtlasLootMenuItem_OnClick()
AtlasLoot_NavButton_OnClick()
AtlasLoot_HeroicModeToggle()
AtlasLoot_IsLootTableAvailable(dataID)
AtlasLoot_GetLODModule(dataSource)
AtlasLoot_LoadAllModules()
AtlasLoot_ShowQuickLooks(button)
AtlasLoot_RefreshQuickLookButtons()
AtlasLoot_AddTooltip(frameb, tooltiptext)
AL_FindId(name, difficulty)
]]
AtlasLoot = LibStub("AceAddon-3.0"):NewAddon("AtlasLoot");
--Instance required libraries
local BabbleBoss = AtlasLoot_GetLocaleLibBabble("LibBabble-Boss-3.0")
local AL = LibStub("AceLocale-3.0"):GetLocale("AtlasLoot");
--Establish version number and compatible version of Atlas
local VERSION_MAJOR = "5";
local VERSION_MINOR = "11";
local VERSION_BOSSES = "04";
ATLASLOOT_VERSION = "|cffFF8400AtlasLoot Ascension Edition|r";
--Now allows for multiple compatible Atlas versions. Always put the newest first
ATLASLOOT_CURRENT_ATLAS = {"1.17.1", "1.17.0"};
ATLASLOOT_PREVIEW_ATLAS = {"1.17.3", "1.17.2"};
ATLASLOOT_POSITION = AL["Position:"];
ATLASLOOT_DEBUGMESSAGES = false;
ATLASLOOT_FILTER_ENABLE = false;
--Standard indent to line text up with Atlas text
ATLASLOOT_INDENT = " ";
--Make the Dewdrop menu in the standalone loot browser accessible here
AtlasLoot_Dewdrop = AceLibrary("Dewdrop-2.0");
AtlasLoot_DewdropSubMenu = AceLibrary("Dewdrop-2.0");
--Variable to cap debug spam
ATLASLOOT_DEBUGSHOWN = false;
-- Colours stored for code readability
local GREY = "|cff999999";
local RED = "|cffff0000";
local WHITE = "|cffFFFFFF";
local GREEN = "|cff1eff00";
local PURPLE = "|cff9F3FFF";
local BLUE = "|cff0070dd";
local ORANGE = "|cffFF8400";
--Establish number of boss lines in the Atlas frame for scrolling
local ATLAS_LOOT_BOSS_LINES = 25;
--Flag so that error messages do not spam
local ATLASLOOT_POPUPSHOWN = false;
--Set the default anchor for the loot frame to the Atlas frame
AtlasLoot_AnchorFrame = AtlasFrame;
--Variables to hold hooked Atlas functions
Hooked_Atlas_Refresh = nil;
Hooked_Atlas_OnShow = nil;
Hooked_AtlasScrollBar_Update = nil;
AtlasLootCharDB={};
local AtlasLootDBDefaults = {
profile = {
SavedTooltips = {},
SafeLinks = true,
DefaultTT = true,
LootlinkTT = false,
ItemSyncTT = false,
EquipCompare = false,
ItemAutoQuery = false,
Opaque = false,
ItemIDs = false,
ItemSpam = false,
MinimapButton = false,
FuBarAttached = true,
FuBarText = true,
FuBarIcon = true,
HidePanel = false,
LastBoss = "EmptyTable",
HeroicMode = false,
BigraidHeroic = false,
Bigraid = false,
AtlasLootVersion = "1",
AtlasNaggedVersion = "",
FuBarPosition = 1,
MythicPlussTier = 1,
AutoQuery = false,
LoadAllLoDStartup = false,
PartialMatching = true,
LootBrowserStyle = 1,
CraftingLink = 1,
MinimapButtonAngle = 240,
MinimapButtonRadius = 75,
LootBrowserScale = 1.0,
SearchOn = {
All = true,
},
AtlasType = "Release";
}
}
AtlasLoot_MenuList = {
"PVPSET",
"PVP70RepSET",
"ARENASET",
"ARENA2SET",
"ARENA3SET",
"ARENA4SET",
};
-- Popup Box for first time users
StaticPopupDialogs["ATLASLOOT_SETUP"] = {
text = AL["Welcome to Atlasloot Enhanced. Please take a moment to set your preferences."],
button1 = AL["Setup"],
OnAccept = function()
AtlasLootOptions_Toggle();
end,
timeout = 0,
whileDead = 1,
hideOnEscape = 1
};
--Popup Box for an old version of Atlas
StaticPopupDialogs["ATLASLOOT_OLD_ATLAS"] = {
text = AL["It has been detected that your version of Atlas does not match the version that Atlasloot is tuned for ("]..ATLASLOOT_CURRENT_ATLAS[1].."/"..ATLASLOOT_PREVIEW_ATLAS[1]..AL["). Depending on changes, there may be the occasional error, so please visit http://www.atlasmod.com as soon as possible to update."],
button1 = AL["OK"],
OnAccept = function()
DEFAULT_CHAT_FRAME:AddMessage(BLUE..AL["AtlasLoot"]..": "..RED..AL["Incompatible Atlas Detected"]);
end,
timeout = 0,
whileDead = 1,
hideOnEscape = 1
};
--[[
AtlasLoot_OnEvent(event):
event - Name of the event, passed from the API
Invoked whenever a relevant event is detected by the engine. The function then
decides what action to take depending on the event.
]]
function AtlasLoot_OnEvent(event)
--Addons all loaded
if(event == "VARIABLES_LOADED") then
AtlasLoot_OnVariablesLoaded();
--Taint errors
elseif(event == "PLAYER_ENTERING_WORLD") then
AtlasLootOptions_MinimapToggle();
AtlasLootOptions_MinimapToggle();
elseif(arg1 == "AtlasLoot") then
--Junk command to suppress taint message
local i=3;
end
end
--[[
AtlasLoot_ShowMenu:
Legacy function used in Cosmos integration to open the loot browser
]]
function AtlasLoot_ShowMenu()
AtlasLootDefaultFrame:Show();
end
--[[
AtlasLoot_OnVariablesLoaded:
Invoked by the VARIABLES_LOADED event. Now that we are sure all the assets
the addon needs are in place, we can properly set up the mod
]]
function AtlasLoot_OnVariablesLoaded()
local AtlasCheck = false;
AtlasLoot.db = LibStub("AceDB-3.0"):New("AtlasLootDB");
AtlasLoot.db:RegisterDefaults(AtlasLootDBDefaults);
if not AtlasLootCharDB then AtlasLootCharDB = {} end
if not AtlasLootCharDB["WishList"] then AtlasLootCharDB["WishList"] = {} end
if not AtlasLootCharDB["QuickLooks"] then AtlasLootCharDB["QuickLooks"] = {} end
if not AtlasLootCharDB["SearchResult"] then AtlasLootCharDB["SearchResult"] = {} end
AtlasLoot.db.profile.LastBoss = "EmptyTable";
if AtlasLoot_TableNames then
AtlasLoot_TableNames["EmptyTable"] = { AL["Select a Loot Table..."], "Menu" };
AtlasLoot_TableNames["EmptyInstance"] = { "AtlasLoot", "AtlasLootFallback" };
AtlasLoot_TableNames["AtlasLootFallback"] = { "AtlasLoot", "AtlasLootFallback" };
end
if AtlasLoot_Data then
AtlasLoot_Data["EmptyTable"] = {};
end
--Figure out if it is a compatible Atlas version
for i=1,#ATLASLOOT_CURRENT_ATLAS do
if ATLAS_VERSION == ATLASLOOT_CURRENT_ATLAS[i] then
AtlasCheck = true;
AtlasLoot.db.profile.AtlasType = "Release";
end
end
for i=1,#ATLASLOOT_PREVIEW_ATLAS do
if ATLAS_VERSION == ATLASLOOT_PREVIEW_ATLAS[i] then
AtlasCheck = true;
AtlasLoot.db.profile.AtlasType = "Preview";
end
end
if AtlasCheck == false then
AtlasLoot.db.profile.AtlasType = "Unknown";
end
--Add the loot browser to the special frames tables to enable closing wih the ESC key
tinsert(UISpecialFrames, "AtlasLootDefaultFrame");
--Set up options frame
AtlasLootOptions_OnLoad();
AtlasLoot_CreateOptionsInfoTooltips();
--Legacy code for those using the ultimately failed attempt at making Atlas load on demand
if AtlasButton_LoadAtlas then
AtlasButton_LoadAtlas();
end
--Hook the necessary Atlas functions
Hooked_Atlas_Refresh = Atlas_Refresh;
Atlas_Refresh = AtlasLoot_Refresh;
Hooked_Atlas_OnShow = Atlas_OnShow;
Atlas_OnShow = AtlasLoot_Atlas_OnShow;
--Instead of hooking, replace the scrollbar driver function
Hooked_AtlasScrollBar_Update = AtlasScrollBar_Update;
AtlasScrollBar_Update = AtlasLoot_AtlasScrollBar_Update;
if( not AtlasLoot.db.profile.LootBrowserStyle ) then
AtlasLoot.db.profile.LootBrowserStyle = 1;
end
--Set visual style for the loot browser
if( not AtlasLoot.db.profile.CraftingLink ) then
AtlasLoot.db.profile.CraftingLink = 1;
end
if( AtlasLoot.db.profile.LootBrowserStyle == 1 ) then
AtlasLoot_SetNewStyle("new");
else
AtlasLoot_SetNewStyle("old");
end
--Disable options that don't have the supporting mods
if( not LootLink_SetTooltip and (AtlasLoot.db.profile.LootlinkTT == true)) then
AtlasLoot.db.profile.LootlinkTT = false;
AtlasLoot.db.profile.DefaultTT = true;
end
if( not ItemSync and (AtlasLoot.db.profile.ItemSyncTT == true)) then
AtlasLoot.db.profile.ItemSyncTT = false;
AtlasLoot.db.profile.DefaultTT = true;
end
--If using an opaque items frame, change the alpha value of the backing texture
if (AtlasLoot.db.profile.Opaque) then
AtlasLootItemsFrame_Back:SetTexture(0, 0, 0, 1);
else
AtlasLootItemsFrame_Back:SetTexture(0, 0, 0, 0.65);
end
--If Atlas is installed, set up for Atlas
if ( Hooked_Atlas_Refresh ) then
AtlasLoot_SetupForAtlas();
--If a first time user, set up options
if( (AtlasLoot.db.profile.AtlasLootVersion == nil) or (tonumber(AtlasLoot.db.profile.AtlasLootVersion) < 40500)) then
AtlasLoot.db.profile.SafeLinks = true;
AtlasLoot.db.profile.AllLinks = false;
AtlasLoot.db.profile.AtlasLootVersion = VERSION_MAJOR..VERSION_MINOR..VERSION_BOSSES;
StaticPopup_Show ("ATLASLOOT_SETUP");
end
--If not the expected Atlas version, nag the user once
if( AtlasLoot.db.profile.AtlasType == "Unknown" and AtlasLoot.db.profile.AtlasNaggedVersion ~= ATLAS_VERSION ) then
StaticPopup_Show ("ATLASLOOT_OLD_ATLAS");
AtlasLoot.db.profile.AtlasNaggedVersion = ATLAS_VERSION;
end
if AtlasLoot.db.profile.AtlasType == "Preview" then
AtlasLootBossButtons = AtlasLootNewBossButtons;
end
Hooked_Atlas_Refresh();
else
--If we are not using Atlas, keep the items frame out of the way
AtlasLootItemsFrame:Hide();
end
--Check and migrate old WishList entry format to the newer one
if(((AtlasLootCharDB.AtlasLootVersion == nil) or (tonumber(AtlasLootCharDB.AtlasLootVersion) < 40301)) and AtlasLootCharDB and AtlasLootCharDB["WishList"] and #AtlasLootCharDB["WishList"]~=0) then
--Check if we really need to do a migration since it will load all modules
--We also create a helper table here which store IDs that need to search for
local idsToSearch = {};
for i = 1, #AtlasLootCharDB["WishList"] do
if (AtlasLootCharDB["WishList"][i][1] > 0 and not AtlasLootCharDB["WishList"][i][5]) then
tinsert(idsToSearch, i, AtlasLootCharDB["WishList"][i][1]);
end
end
if #idsToSearch > 0 then
--Let's do this
AtlasLoot_LoadAllModules();
for _, dataSource in ipairs(AtlasLoot_SearchTables) do
if AtlasLoot_Data[dataSource] then
for dataID, lootTable in pairs(AtlasLoot_Data[dataSource]) do
for _, entry in ipairs(lootTable) do
for k, v in pairs(idsToSearch) do
if(entry[1] == v)then
AtlasLootCharDB["WishList"][k][5] = dataID.."|"..dataSource;
break;
end
end
end
end
end
end
end
AtlasLootCharDB.AtlasLootVersion = VERSION_MAJOR..VERSION_MINOR..VERSION_BOSSES;
end
if((AtlasLootCharDB.AtlasLootVersion == nil) or (tonumber(AtlasLootCharDB.AtlasLootVersion) < 40301)) then
AtlasLootCharDB.AtlasLootVersion = VERSION_MAJOR..VERSION_MINOR..VERSION_BOSSES;
AtlasLootCharDB.AutoQuery = false;
AtlasLootOptions_Init();
end
--Adds an AtlasLoot button to the Feature Frame in Cosmos
if(EarthFeature_AddButton) then
EarthFeature_AddButton(
{
id = string.sub(ATLASLOOT_VERSION, 11, 28);
name = string.sub(ATLASLOOT_VERSION, 11, 28);
subtext = string.sub(ATLASLOOT_VERSION, 30, 39);
tooltip = "";
icon = "Interface\\Icons\\INV_Box_01";
callback = AtlasLoot_ShowMenu;
test = nil;
}
);
--Adds AtlasLoot to old style Cosmos installations
elseif(Cosmos_RegisterButton) then
Cosmos_RegisterButton(
string.sub(ATLASLOOT_VERSION, 11, 28),
string.sub(ATLASLOOT_VERSION, 11, 28),
"",
"Interface\\Icons\\INV_Box_01",
AtlasLoot_ShowMenu
);
end
--Set up the menu in the loot browser
AtlasLoot_DewdropRegister();
--If EquipCompare is available, use it
if((EquipCompare_RegisterTooltip) and (AtlasLoot.db.profile.EquipCompare == true)) then
EquipCompare_RegisterTooltip(AtlasLootTooltip);
end
--Position relevant UI objects for loot browser and set up menu
AtlasLootDefaultFrame_SelectedCategory:SetPoint("TOP", "AtlasLootDefaultFrame_Menu", "BOTTOM", 0, -4);
AtlasLootDefaultFrame_SelectedTable:SetPoint("TOP", "AtlasLootDefaultFrame_SubMenu", "BOTTOM", 0, -4);
AtlasLootDefaultFrame_SelectedCategory:SetText(AL["Choose Table ..."]);
AtlasLootDefaultFrame_SelectedTable:SetText("");
AtlasLootDefaultFrame_SelectedCategory:Show();
AtlasLootDefaultFrame_SelectedTable:Show();
AtlasLootDefaultFrame_SubMenu:Disable();
if (AtlasLoot.db.profile.LoadAllLoDStartup == true) then
AtlasLoot_LoadAllModules();
else
collectgarbage("collect");
end
panel = getglobal("AtlasLootOptionsFrame");
panel.name=AL["AtlasLoot"];
InterfaceOptions_AddCategory(panel);
--Filter and wishlist options menus creates as part of the next 2 commands
AtlasLoot_CreateFilterOptions();
AtlasLoot_CreateWishlistOptions();
panel = getglobal("AtlasLootHelpFrame");
panel.name=AL["Help"];
panel.parent=AL["AtlasLoot"];
InterfaceOptions_AddCategory(panel);
if LibStub:GetLibrary("LibAboutPanel", true) then
LibStub("LibAboutPanel").new(AL["AtlasLoot"], "AtlasLoot");
end
AtlasLoot_UpdateLootBrowserScale();
AtlasLoot.db.profile.Bigraid = false
AtlasLoot.db.profile.BigraidHeroic = false
AtlasLoot.db.profile.HeroicMode = false
end
function AtlasLoot_Reset(data)
AtlasLootDefaultFrame:Hide();
if AtlasFrame then
AtlasFrame:Hide();
end
if data == "frames" then
AtlasLoot.db.profile.LastBoss = "EmptyTable";
AtlasLootDefaultFrame:ClearAllPoints();
AtlasLootDefaultFrame:SetPoint("CENTER", "UIParent", "CENTER", 0, 0);
if AtlasLootFu then
AtlasLootFu.db.profile.minimapPosition = 200;
AtlasLootFu:Hide();
AtlasLootFu:Show();
end
AtlasLoot.db.profile.LootBrowserScale = 1.0;
AtlasLoot_UpdateLootBrowserScale();
elseif data == "quicklooks" then
AtlasLoot.db.profile.LastBoss = "EmptyTable";
AtlasLootCharDB["QuickLooks"] = {};
AtlasLoot_RefreshQuickLookButtons();
elseif data == "wishlist" then
AtlasLoot.db.profile.LastBoss = "EmptyTable";
AtlasLootCharDB["WishList"] = {};
AtlasLootCharDB["SearchResult"] = {};
AtlasLootCharDB.LastSearchedText = "";
elseif data == "all" then
AtlasLoot.db.profile.LastBoss = "EmptyTable";
AtlasLootDefaultFrame:ClearAllPoints();
AtlasLootDefaultFrame:SetPoint("CENTER", "UIParent", "CENTER", 0, 0);
if AtlasLootFu then
AtlasLootFu.db.profile.minimapPosition = 200;
AtlasLootFu:Hide();
AtlasLootFu:Show();
end
AtlasLoot.db.profile.LootBrowserScale = 1.0;
AtlasLoot_UpdateLootBrowserScale();
AtlasLootCharDB["QuickLooks"] = {};
AtlasLoot_RefreshQuickLookButtons();
AtlasLootCharDB["WishList"] = {};
AtlasLootCharDB["SearchResult"] = {};
AtlasLootCharDB.LastSearchedText = "";
end
DEFAULT_CHAT_FRAME:AddMessage(BLUE..AL["AtlasLoot"]..": "..RED..AL["Reset complete!"]);
end
--[[
AtlasLoot_SlashCommand(msg):
msg - takes the argument for the /atlasloot command so that the appropriate action can be performed
If someone types /atlasloot, bring up the options box
]]
function AtlasLoot_SlashCommand(msg)
if msg == AL["reset"] then
AtlasLoot_Reset("frames");
elseif msg == AL["options"] then
AtlasLootOptions_Toggle();
else
AtlasLootDefaultFrame:Show();
end
end
--[[
AtlasLootOptions_Toggle:
Toggle on/off the options window
]]
function AtlasLootOptions_Toggle()
if InterfaceOptionsFrame_OpenToCategory then
InterfaceOptionsFrame_OpenToCategory(AL["AtlasLoot"]);
else
InterfaceOptionsFrame_OpenToFrame(AL["AtlasLoot"]);
end
InterfaceOptionsFrame:SetFrameStrata("DIALOG");
if(AtlasLoot.db.profile.DefaultTT == true) then
AtlasLootOptions_DefaultTTToggle();
elseif(AtlasLoot.db.profile.LootlinkTT == true) then
AtlasLootOptions_LootlinkTTToggle();
elseif(AtlasLoot.db.profile.ItemSyncTT == true) then
AtlasLootOptions_ItemSyncTTToggle();
end
end
--[[
AtlasLoot_OnLoad:
Performs inital setup of the mod and registers it for further setup when
the required resources are in place
]]
function AtlasLoot_OnLoad()
this:RegisterEvent("VARIABLES_LOADED");
this:RegisterEvent("ADDON_ACTION_FORBIDDEN");
this:RegisterEvent("ADDON_ACTION_BLOCKED");
--Enable the use of /al or /atlasloot to open the loot browser
SLASH_ATLASLOOT1 = "/atlasloot";
SLASH_ATLASLOOT2 = "/al";
SlashCmdList["ATLASLOOT"] = function(msg)
AtlasLoot_SlashCommand(msg);
end
end
--[[
AtlasLoot_GetLoottableHeroic:
Set up checks to see if we have a heroic loot table or not.
Returns: HeroicCheck, HeroicdataID, NonHeroicdataID, BigraidCheck, BigraiddataID, SmallraiddataID, heroname
]]
function AtlasLoot_GetLoottableHeroic(dataID)
local NormalID, HeroicID, Normal25ID, Heroic25ID = nil,nil,nil,nil
local dataSource = AtlasLoot_Data
local englishFaction = UnitFactionGroup("player")
-- remove all Heroic etc infos from the dataID**
dataID = gsub(dataID, "_H", "") -- Horde
dataID = gsub(dataID, "_A", "") -- Alliance
dataID = gsub(dataID, "HEROIC", "") -- Hero Table (10)
dataID = gsub(dataID, "25Man", "") -- 25 Man Table
dataID = gsub(dataID, "25ManHEROIC", "") -- Heroic Table (25)
-- dataID from normal <return>
-- Check tables if Heroic etc exists
if dataSource[dataID] or dataSource[dataID.."_H"] or dataSource[dataID.."_A"] then
NormalID = dataID
if englishFaction == "Horde" and dataSource[NormalID.."_H"] then
NormalID = NormalID.."_H"
elseif englishFaction ~= "Horde" and dataSource[NormalID.."_A"] then
NormalID = NormalID.."_A"
end
end
if dataSource[dataID.."HEROIC"] or dataSource[dataID.."HEROIC".."_H"] or dataSource[dataID.."HEROIC".."_A"] then
HeroicID = dataID.."HEROIC"
if englishFaction == "Horde" and dataSource[HeroicID.."_H"] then
HeroicID = HeroicID.."_H"
elseif englishFaction ~= "Horde" and dataSource[HeroicID.."_A"] then
HeroicID = HeroicID.."_A"
end
end
if dataSource[dataID.."25Man"] or dataSource[dataID.."25Man".."_H"] or dataSource[dataID.."25Man".."_A"] then
Normal25ID = dataID.."25Man"
if englishFaction == "Horde" and dataSource[Normal25ID.."_H"] then
Normal25ID = Normal25ID.."_H"
elseif englishFaction ~= "Horde" and dataSource[Normal25ID.."_A"] then
Normal25ID = Normal25ID.."_A"
end
end
if dataSource[dataID.."25ManHEROIC"] or dataSource[dataID.."25ManHEROIC".."_H"] or dataSource[dataID.."25ManHEROIC".."_A"] then
Heroic25ID = dataID.."25ManHEROIC"
if englishFaction == "Horde" and dataSource[Heroic25ID.."_H"] then
Heroic25ID = Heroic25ID.."_H"
elseif englishFaction ~= "Horde" and dataSource[Heroic25ID.."_A"] then
Heroic25ID = Heroic25ID.."_A"
end
end
return NormalID, HeroicID, Normal25ID, Heroic25ID
end
--[[
AtlasLoot_ShowItemsFrame(dataID, dataSource, boss, pFrame):
dataID - Name of the loot table
dataSource - Table in the database where the loot table is stored
boss - Text string to use as a title for the loot page
pFrame - Data structure describing how and where to anchor the item frame (more details, see the function AtlasLoot_SetItemInfoFrame)
This fuction is not normally called directly, it is usually invoked by AtlasLoot_ShowBossLoot.
It is the workhorse of the mod and allows the loot tables to be displayed any way anywhere in any mod.
]]
function AtlasLoot_ShowItemsFrame(dataID, dataSource, boss, pFrame)
--Set up local variables needed for GetItemInfo, etc
local itemName, itemLink, itemQuality, itemLevel, itemType, itemSubType, itemCount, itemEquipLoc, itemTexture, itemColor;
local iconFrame, nameFrame, extraFrame, itemButton;
local text, extra;
local wlPage, wlPageMax = 1, 1;
local isItem;
local spellName, spellIcon;
--If the loot table name has not been passed, throw up a debugging statement
if dataID==nil then
DEFAULT_CHAT_FRAME:AddMessage("No dataID!");
return;
end
--Get AtlasQuest out of the way
if (AtlasQuestInsideFrame) then
HideUIPanel(AtlasQuestInsideFrame);
end
--Hide the toggle to switch between heroic and normal loot tables, we will only show it if required
AtlasLootItemsFrame_Heroic:Hide();
AtlasLoot10Man25ManSwitch:Hide();
--Ditch the Quicklook selector
AtlasLoot_QuickLooks:Hide();
AtlasLootQuickLooksButton:Hide();
-- Hide the Filter Check-Box
AtlasLootFilterCheck:Hide();
dataSource_backup = dataSource;
if dataID == "SearchResult" or dataID == "WishList" then
dataSource = {};
-- Match the page number to display
wlPage = tonumber(dataSource_backup:match("%d+$"));
-- Aquiring items of the page
if dataID == "SearchResult" then
dataSource[dataID], wlPageMax = AtlasLoot:GetSearchResultPage(wlPage);
elseif dataID == "WishList" then
dataSource[dataID], wlPageMax = AtlasLoot_GetWishListPage(wlPage);
end
-- Make page number reasonable
if wlPage < 1 then wlPage = 1 end
if wlPage > wlPageMax then wlPage = wlPageMax end
else
dataSource = AtlasLoot_Data;
end
--Set up checks to see if we have a heroic loot table or not
local NormalID, HeroicID, Normal25ID, Heroic25ID = AtlasLoot_GetLoottableHeroic(dataID)
if AtlasLoot.db.profile.HeroicMode and HeroicID then
dataID = HeroicID
elseif AtlasLoot.db.profile.Bigraid and Normal25ID then
dataID = Normal25ID
elseif AtlasLoot.db.profile.BigraidHeroic and Heroic25ID then
dataID = Heroic25ID
else
if not NormalID then
if Normal25ID and not AtlasLoot.db.profile.HeroicMode then
dataID = Normal25ID
AtlasLoot.db.profile.Bigraid = true
AtlasLoot.db.profile.BigraidHeroic = false
AtlasLoot.db.profile.HeroicMode = false
elseif HeroicID then
dataID = HeroicID
AtlasLoot.db.profile.Bigraid = false
AtlasLoot.db.profile.BigraidHeroic = false
AtlasLoot.db.profile.HeroicMode = true
elseif Heroic25ID then
dataID = Heroic25ID
AtlasLoot.db.profile.Bigraid = false
AtlasLoot.db.profile.BigraidHeroic = true
AtlasLoot.db.profile.HeroicMode = false
end
else
dataID = NormalID
end
end
--Hide UI objects so that only needed ones are shown
for i = 1, 30, 1 do
getglobal("AtlasLootItem_"..i.."_Unsafe"):Hide();
getglobal("AtlasLootMenuItem_"..i):Hide();
getglobal("AtlasLootItem_"..i):Hide();
getglobal("AtlasLootItem_"..i).itemID = 0;
getglobal("AtlasLootItem_"..i).spellitemID = 0;
end
if AtlasLoot_TableNames[dataID] ~= nil and AtlasLoot_TableNames[dataID][2] == "Menu" then
AtlasLoot_GenerateAtlasMenu(dataID, pFrame);
return;
end
-- Create the loottable
if (dataID == "SearchResult") or (dataID == "WishList") or (AtlasLoot_IsLootTableAvailable(dataID)) then
--Iterate through each item object and set its properties
for i = 1, 30, 1 do
--Check for a valid object (that it exists, and that it has a name)
if(dataSource[dataID][i] ~= nil and dataSource[dataID][i][4] ~= "") then
if string.sub(dataSource[dataID][i][2], 1, 1) == "s" then
isItem = false;
else
isItem = true;
end
if isItem then
itemName, itemLink, itemQuality, itemLevel, itemMinLevel, itemType, itemSubType, itemCount, itemEquipLoc, itemTexture = GetItemInfo(dataSource[dataID][i][2]);
--If the client has the name of the item in cache, use that instead.
--This is poor man's localisation, English is replaced be whatever is needed
if(GetItemInfo(dataSource[dataID][i][2])) then
_, _, _, itemColor = GetItemQualityColor(itemQuality);
text = itemColor..itemName;
else
if(GetItemInfo(dataSource[dataID][i][2])) then
_, _, _, itemColor = GetItemQualityColor(itemQuality);
text = itemColor..itemName;
else
--If the item is not in cache, use the saved value and process it
text = dataSource[dataID][i][4];
text = AtlasLoot_FixText(text);
end
end
else
spellName, _, spellIcon, _, _, _, _, _, _ = GetSpellInfo(string.sub(dataSource[dataID][i][2], 2));
if spellName then
text = AtlasLoot_FixText(string.sub(dataSource[dataID][i][4], 1, 4)..spellName);
else
text = dataSource[dataID][i][4];
text = AtlasLoot_FixText(text);
end
end
--Store data about the state of the items frame to allow minor tweaks or a recall of the current loot page
AtlasLootItemsFrame.refresh = {dataID, dataSource_backup, boss, pFrame};
if dataID ~= "FilterList" then
AtlasLootItemsFrame.refreshOri = {dataID, dataSource_backup, boss, pFrame}
end
--Insert the item description
if dataSource[dataID][i][6] and dataSource[dataID][i][6] ~= "" then
extra = dataSource[dataID][i][6];
elseif dataSource[dataID][i][5] then
extra = dataSource[dataID][i][5];
else
extra = "";
end
extra = AtlasLoot_FixText(extra);
--Use shortcuts for easier reference to parts of the item button
itemButton = getglobal("AtlasLootItem_"..dataSource[dataID][i][1]);
iconFrame = getglobal("AtlasLootItem_"..dataSource[dataID][i][1].."_Icon");
nameFrame = getglobal("AtlasLootItem_"..dataSource[dataID][i][1].."_Name");
extraFrame = getglobal("AtlasLootItem_"..dataSource[dataID][i][1].."_Extra");
--If there is no data on the texture an item should have, show a big red question mark
if dataSource[dataID][i][3] == "?" then
iconFrame:SetTexture("Interface\\Icons\\INV_Misc_QuestionMark");
elseif dataSource[dataID][i][3] == "" then
iconFrame:SetTexture(GetItemIcon(dataSource[dataID][i][2]));
elseif (not isItem) and (spellIcon) then
if tonumber(dataSource[dataID][i][3]) then
iconFrame:SetTexture(GetItemIcon(tonumber(dataSource[dataID][i][3])));
elseif dataSource[dataID][i][3] == "" then
iconFrame:SetTexture(spellIcon);
elseif type(dataSource[dataID][i][3]) == "string" then
iconFrame:SetTexture("Interface\\Icons\\"..dataSource[dataID][i][3]);
else
iconFrame:SetTexture(spellIcon);
end
else
--else show the texture
iconFrame:SetTexture("Interface\\Icons\\"..dataSource[dataID][i][3]);
end
itemButton.itemTexture = dataSource[dataID][i][3];
if iconFrame:GetTexture() == nil then
iconFrame:SetTexture("Interface\\Icons\\INV_Misc_QuestionMark");
end
itemButton.name = text;
itemButton.extra = extra;
--Highlight items in the wishlist
if dataSource[dataID][i][2] ~= "" and dataSource[dataID][i][2] ~= 0 and dataID ~= "WishList" and AtlasLootWishList["Options"][UnitName("player")]["Mark"] == true then
local xitemexistwish, itemwishicons = AtlasLoot_WishListCheck(dataSource[dataID][i][2], true)
if xitemexistwish then
text = itemwishicons.." "..text;
end
end
--Set the name and description of the item
nameFrame:SetText(text);
extraFrame:SetText(extra);
extraFrame:Show();
--For convenience, we store information about the objects in the objects so that it can be easily accessed later
if((string.sub(dataSource[dataID][i][2], 1, 1) == "s") and (AtlasLoot.db.profile.CraftingLink ~= 1) and (tonumber(dataSource[dataID][i][3]))) then
itemButton.itemID = dataSource[dataID][i][3];
itemButton.spellitemID = dataSource[dataID][i][3];
else
itemButton.itemID = dataSource[dataID][i][2];
if tonumber(dataSource[dataID][i][3]) then
itemButton.spellitemID = dataSource[dataID][i][3];
else
itemButton.spellitemID = 0;
end
end
itemButton.iteminfo = {};
if isItem then
itemButton.iteminfo.idcore = dataSource[dataID][i][2];
itemButton.iteminfo.icontexture = GetItemIcon(dataSource[dataID][i][2]);
itemButton.storeID = dataSource[dataID][i][2];
itemButton.dressingroomID = dataSource[dataID][i][2];
else
itemButton.iteminfo.idcore = dataSource[dataID][i][3];
itemButton.iteminfo.icontexture = GetItemIcon(dataSource[dataID][i][3]);
itemButton.storeID = dataSource[dataID][i][3];
itemButton.dressingroomID = dataSource[dataID][i][3];
end
if dataSource[dataID][i][5] then
itemButton.desc = dataSource[dataID][i][5];
else
itemButton.desc = nil;
end
if dataSource[dataID][i][6] then
itemButton.price = dataSource[dataID][i][6];
else
itemButton.price = nil;
end
if dataSource[dataID][i][7] and dataSource[dataID][i][7] ~= "" then
itemButton.droprate = dataSource[dataID][i][7];
else
itemButton.droprate = nil;
end
if (dataID == "SearchResult" or dataID == "WishList") and dataSource[dataID][i][8] then
itemButton.sourcePage = dataSource[dataID][i][8];
end
itemButton.i = 1;
itemButton:Show();
if dataSource[dataID][i][2] == 0 then getglobal("AtlasLootItem_"..i.."_Unsafe"):Hide(); end
end
end
AtlasLootItemsFrame.refresh = {dataID, dataSource_backup, boss, pFrame};
if dataID ~= "FilterList" then
AtlasLootItemsFrame.refreshOri = {dataID, dataSource_backup, boss, pFrame}
end
--If the item is not in cache, querying the server may cause a disconnect
--Show a red box around the item to indicate this to the user
--((dataSource[dataID][i][2] ~= 0) and (not GetItemInfo(dataSource[dataID][i][2]))
for i = 1, 30, 1 do
itemID = getglobal("AtlasLootItem_"..i).itemID;
if itemID and itemID ~= 0 and (string.sub(itemID, 1, 1) ~= "s") then
if GetItemInfo(itemID) then
getglobal("AtlasLootItem_"..i.."_Unsafe"):Hide();
else
getglobal("AtlasLootItem_"..i.."_Unsafe"):Show();
end
else
getglobal("AtlasLootItem_"..i.."_Unsafe"):Hide();
end
end
--This is a valid QuickLook, so show the UI objects
AtlasLoot_QuickLooks:Show();
AtlasLootQuickLooksButton:Show();
-- Show the Filter Check-Box
if dataID ~= "WishList" and dataID ~= "SearchResult" and dataSource_backup ~= "AtlasLootCrafting" then
AtlasLootFilterCheck:Show();
end
--Decide whether to show the Heroic mode toggle
--Checks if a heroic version of the loot table is available.
NormalID, HeroicID, Normal25ID, Heroic25ID = AtlasLoot_GetLoottableHeroic(AtlasLootItemsFrame.refreshOri[1])
if AtlasLoot.db.profile.Bigraid and Normal25ID and NormalID then
AtlasLoot10Man25ManSwitch:SetText(AL["Show Normal Loot"])
AtlasLoot10Man25ManSwitch.lootpage = NormalID
AtlasLoot10Man25ManSwitch:Show()
elseif AtlasLoot.db.profile.BigraidHeroic and Heroic25ID and HeroicID then
AtlasLoot10Man25ManSwitch:SetText(AL["Show Normal Loot"])
AtlasLoot10Man25ManSwitch.lootpage = HeroicID
AtlasLoot10Man25ManSwitch:Show()
elseif AtlasLoot.db.profile.HeroicMode and HeroicID and Heroic25ID then
AtlasLoot10Man25ManSwitch:SetText(AL["Show Heroic/Ascended Loot"]);
AtlasLoot10Man25ManSwitch.lootpage = Heroic25ID
AtlasLoot10Man25ManSwitch:Show();
elseif not AtlasLoot.db.profile.Bigraid and NormalID and Normal25ID then
AtlasLoot10Man25ManSwitch:SetText(AL["Show Heroic/Ascended Loot"]);
AtlasLoot10Man25ManSwitch.lootpage = Normal25ID;
AtlasLoot10Man25ManSwitch:Show();
end
-- Heroic check
if AtlasLoot.db.profile.Bigraid and Normal25ID and Heroic25ID then
AtlasLootItemsFrame_Heroic:Show()
AtlasLootItemsFrame_Heroic:SetChecked(false)
AtlasLootItemsFrame_Heroic:Enable()
elseif AtlasLoot.db.profile.BigraidHeroic and Heroic25ID then
AtlasLoot10Man25ManSwitch:SetText(AL["Show Normal Loot"])
AtlasLootItemsFrame_Heroic:Show()
AtlasLootItemsFrame_Heroic:SetChecked(true)
if Normal25ID then
AtlasLootItemsFrame_Heroic:Enable()
else
AtlasLootItemsFrame_Heroic:Disable()
end
elseif AtlasLoot.db.profile.HeroicMode and HeroicID then
AtlasLootItemsFrame_Heroic:Show()
AtlasLootItemsFrame_Heroic:SetChecked(true)
AtlasLootItemsFrame_Heroic:Enable()
if NormalID then
AtlasLootItemsFrame_Heroic:Enable()
else
AtlasLootItemsFrame_Heroic:Disable()
end
elseif NormalID and HeroicID then
AtlasLootItemsFrame_Heroic:Show()
AtlasLootItemsFrame_Heroic:SetChecked(false)
AtlasLootItemsFrame_Heroic:Enable()
end
--Hide navigation buttons by default, only show what we need
getglobal("AtlasLootItemsFrame_BACK"):Hide();
getglobal("AtlasLootItemsFrame_NEXT"):Hide();
getglobal("AtlasLootItemsFrame_PREV"):Hide();
if dataID ~= "SearchResult" and dataID ~= "WishList" then
AtlasLoot_BossName:SetText(AtlasLoot_TableNames[dataID][1]);
else
AtlasLoot_BossName:SetText(boss);
end
--Consult the button registry to determine what nav buttons are required
if dataID == "SearchResult" or dataID == "WishList" then
if wlPage < wlPageMax then
getglobal("AtlasLootItemsFrame_NEXT"):Show();
getglobal("AtlasLootItemsFrame_NEXT").lootpage = dataID.."Page"..(wlPage + 1);
end
if wlPage > 1 then
getglobal("AtlasLootItemsFrame_PREV"):Show();
getglobal("AtlasLootItemsFrame_PREV").lootpage = dataID.."Page"..(wlPage - 1);
end
else
local tablebase = dataSource[dataID];
if tablebase.Next then
getglobal("AtlasLootItemsFrame_NEXT"):Show();
getglobal("AtlasLootItemsFrame_NEXT").lootpage = tablebase.Next;
end
if tablebase.Prev then
getglobal("AtlasLootItemsFrame_PREV"):Show();
getglobal("AtlasLootItemsFrame_PREV").lootpage = tablebase.Prev;
end
if tablebase.Back then
getglobal("AtlasLootItemsFrame_BACK"):Show();
getglobal("AtlasLootItemsFrame_BACK").lootpage = tablebase.Back;
end
end
end
--For Alphamap and Atlas integration, show a 'close' button to hide the loot table and restore the map view
if (AtlasLootItemsFrame:GetParent() == AlphaMapAlphaMapFrame or AtlasLootItemsFrame:GetParent() == AtlasFrame) then
AtlasLootItemsFrame_CloseButton:Show();
else
AtlasLootItemsFrame_CloseButton:Hide();
end
--Anchor the item frame where it is supposed to be
AtlasLoot_SetItemInfoFrame(pFrame);
if ATLASLOOT_FILTER_ENABLE == true and dataID ~= "FilterList" then
AtlasLoot_HideNoUsableItems()
end
if AtlasLoot.db.profile.ItemAutoQuery then AtlasLoot_QueryLootPage(); end
end
--[[
AtlasLoot_GenerateAtlasMenu(dataID, pFrame)
dataID - Identifier of the loot table to show
pFrame - Where to anchor the menu
This function allows menus to be defined in essentially the same way as
normal loot tables
]]
function AtlasLoot_GenerateAtlasMenu(dataID, pFrame)
local extra;
local text;
local dataSource = AtlasLoot_Data;
--Hide UI objects so that only needed ones are shown
for i = 1, 30, 1 do
getglobal("AtlasLootItem_"..i.."_Unsafe"):Hide();
getglobal("AtlasLootMenuItem_"..i):Hide();
getglobal("AtlasLootItem_"..i):Hide();
end
for i = 1, 30, 1 do
--Check for a valid object (that it exists, and that it has a name)
if(AtlasLoot_Data[dataID][i] ~= nil and AtlasLoot_Data[dataID][i][4] ~= "") then
text = AtlasLoot_Data[dataID][i][4];
text = AtlasLoot_FixText(text);
--Store data about the state of the items frame to allow minor tweaks or a recall of the current loot page
AtlasLootItemsFrame.refresh = {dataID, "", "", pFrame};
--Insert the item description
if AtlasLoot_Data[dataID][i][5] then
extra = AtlasLoot_Data[dataID][i][5];
else
extra = "";
end
extra = AtlasLoot_FixText(extra);
--Use shortcuts for easier reference to parts of the item button
itemButton = getglobal("AtlasLootMenuItem_"..AtlasLoot_Data[dataID][i][1]);
iconFrame = getglobal("AtlasLootMenuItem_"..AtlasLoot_Data[dataID][i][1].."_Icon");
nameFrame = getglobal("AtlasLootMenuItem_"..AtlasLoot_Data[dataID][i][1].."_Name");
extraFrame = getglobal("AtlasLootMenuItem_"..AtlasLoot_Data[dataID][i][1].."_Extra");
--If there is no data on the texture an item should have, show a big red question mark
if AtlasLoot_Data[dataID][i][3] == "?" then
iconFrame:SetTexture("Interface\\Icons\\INV_Misc_QuestionMark");
else
iconFrame:SetTexture("Interface\\Icons\\"..AtlasLoot_Data[dataID][i][3]);
end
itemButton.itemTexture = AtlasLoot_Data[dataID][i][3];
if iconFrame:GetTexture() == nil then
iconFrame:SetTexture("Interface\\Icons\\INV_Misc_QuestionMark");
end
itemButton.name = text;
itemButton.extra = extra;
--Store where we want the menu button to link to
itemButton.lootpage = AtlasLoot_Data[dataID][i][2];
--Set the name and description of the item
nameFrame:SetText(text);
extraFrame:SetText(extra);
extraFrame:Show();
itemButton.i = 1;
itemButton:Show();
end
end
AtlasLoot_BossName:SetText(AtlasLoot_TableNames[dataID][1]);
--This is not a valid QuickLook, so hide the UI objects
AtlasLoot_QuickLooks:Hide();
AtlasLootQuickLooksButton:Hide();
AtlasLootFilterCheck:Hide();
AtlasLootItemsFrame_Heroic:Hide();
AtlasLoot10Man25ManSwitch:Hide();
BigraidCheck=string.sub(dataID, string.len(dataID)-4, string.len(dataID));
BigraiddataID=dataID.."25Man";
if BigraidCheck=="25Man" then
AtlasLoot10Man25ManSwitch:SetText(AL["Show Normal Loot"]);
AtlasLoot10Man25ManSwitch.lootpage = string.sub(dataID, 1, string.len(dataID)-5);
AtlasLoot10Man25ManSwitch:Show();
else
if dataSource[BigraiddataID] then
AtlasLoot10Man25ManSwitch:SetText(AL["Show Heroic/Ascended Loot"]);
AtlasLoot10Man25ManSwitch.lootpage = BigraiddataID;
AtlasLoot10Man25ManSwitch:Show();
end
end
--Hide navigation buttons by default, only show what we need
getglobal("AtlasLootItemsFrame_BACK"):Hide();
getglobal("AtlasLootItemsFrame_NEXT"):Hide();
getglobal("AtlasLootItemsFrame_PREV"):Hide();
local tablebase = AtlasLoot_Data[dataID];
if tablebase.Next then
getglobal("AtlasLootItemsFrame_NEXT"):Show();
getglobal("AtlasLootItemsFrame_NEXT").lootpage = tablebase.Next;
end
if tablebase.Prev then
getglobal("AtlasLootItemsFrame_PREV"):Show();
getglobal("AtlasLootItemsFrame_PREV").lootpage = tablebase.Prev;
end
if tablebase.Back then
getglobal("AtlasLootItemsFrame_BACK"):Show();
getglobal("AtlasLootItemsFrame_BACK").lootpage = tablebase.Back;
end
--For Alphamap and Atlas integration, show a 'close' button to hide the loot table and restore the map view
if (AtlasLootItemsFrame:GetParent() == AlphaMapAlphaMapFrame or AtlasLootItemsFrame:GetParent() == AtlasFrame) then
AtlasLootItemsFrame_CloseButton:Show();
else
AtlasLootItemsFrame_CloseButton:Hide();
end
--Anchor the item frame where it is supposed to be
AtlasLoot_SetItemInfoFrame(pFrame);
end
--[[
AtlasLoot_SetItemInfoFrame(pFrame):
pFrame - Data structure with anchor info. Format: {Anchor Point, Relative Frame, Relative Point, X Offset, Y Offset }
This function anchors the item frame where appropriate. The main Atlas frame can be passed instead of a custom pFrame.
If no pFrame is specified, the Atlas Frame is used if Atlas is installed.
]]
function AtlasLoot_SetItemInfoFrame(pFrame)
if ( pFrame ) then
--If a pFrame is specified, use it
if(pFrame==AtlasFrame and AtlasFrame) then
AtlasLootItemsFrame:ClearAllPoints();
AtlasLootItemsFrame:SetParent(AtlasFrame);
AtlasLootItemsFrame:SetPoint("TOPLEFT", "AtlasFrame", "TOPLEFT", 18, -84);
else
AtlasLootItemsFrame:ClearAllPoints();
AtlasLootItemsFrame:SetParent(pFrame[2]);
AtlasLootItemsFrame:ClearAllPoints();
AtlasLootItemsFrame:SetPoint(pFrame[1], pFrame[2], pFrame[3], pFrame[4], pFrame[5]);
end
elseif ( AtlasFrame ) then
--If no pFrame is specified and Atlas is installed, anchor in Atlas
AtlasLootItemsFrame:ClearAllPoints();
AtlasLootItemsFrame:SetParent(AtlasFrame);
AtlasLootItemsFrame:SetPoint("TOPLEFT", "AtlasFrame", "TOPLEFT", 18, -84);
else
--Last resort, dump the items frame in the middle of the screen
AtlasLootItemsFrame:ClearAllPoints();
AtlasLootItemsFrame:SetParent(UIParent);
AtlasLootItemsFrame:SetPoint("CENTER", "UIParent", "CENTER", 0, 0);
end
AtlasLootItemsFrame:Show();
end
--[[
AtlasLootItemsFrame_OnCloseButton:
Called when the close button on the item frame is clicked
]]
function AtlasLootItemsFrame_OnCloseButton()
--Set no loot table as currently selected
AtlasLootItemsFrame.activeBoss = nil;
--Fix the boss buttons so the correct icons are displayed
if AtlasFrame and AtlasFrame:IsVisible() then
if ATLAS_CUR_LINES then
for i=1,ATLAS_CUR_LINES do
if getglobal("AtlasBossLine"..i.."_Selected"):IsVisible() then
getglobal("AtlasBossLine"..i.."_Selected"):Hide();
getglobal("AtlasBossLine"..i.."_Loot"):Show();
end
end
end
end
--Hide the item frame
AtlasLootItemsFrame:Hide();
end
--[[
AtlasLootMenuItem_OnClick:
Requests the relevant loot page from a menu screen
]]
function AtlasLootMenuItem_OnClick()
if this.lootpage ~= nil and this.lootpage ~= "" then
AtlasLoot_ShowBossLoot(this.lootpage, "", AtlasLoot_AnchorFrame);
end
end
--[[
AtlasLoot_NavButton_OnClick:
Called when <-, -> or 'Back' are pressed and calls up the appropriate loot page
]]
function AtlasLoot_NavButton_OnClick()
if AtlasLootItemsFrame.refresh and AtlasLootItemsFrame.refresh[4] then
if strsub(this.lootpage, 1, 16) == "SearchResultPage" then
AtlasLoot_ShowItemsFrame("SearchResult", this.lootpage, (AL["Search Result: %s"]):format(AtlasLootCharDB.LastSearchedText or ""), AtlasLootItemsFrame.refresh[4]);
elseif strsub(this.lootpage, 1, 12) == "WishListPage" then
AtlasLoot_ShowItemsFrame("WishList", this.lootpage, AL["Wishlist"], AtlasLootItemsFrame.refresh[4]);
else
AtlasLoot_ShowItemsFrame(this.lootpage, AtlasLootItemsFrame.refresh[2], "", AtlasLootItemsFrame.refresh[4]);
end
else
--Fallback for if the requested loot page is a menu and does not have a .refresh instance
AtlasLoot_ShowItemsFrame(this.lootpage, "", "", AtlasFrame);
end
end
--[[
AtlasLoot_HeroicModeToggle:
Switches between the heroic and normal versions of a loot page
]]
function AtlasLoot_HeroicModeToggle()
local Heroic
local dataID
if ATLASLOOT_FILTER_ENABLE then
dataID = AtlasLootItemsFrame.refreshOri[1]
else
dataID = AtlasLootItemsFrame.refresh[1]
end
local NormalID, HeroicID, Normal25ID, Heroic25ID = AtlasLoot_GetLoottableHeroic(dataID)
if AtlasLoot.db.profile.Bigraid and Heroic25ID then
AtlasLoot.db.profile.Bigraid = false
AtlasLoot.db.profile.BigraidHeroic = true
dataID = Heroic25ID
elseif AtlasLoot.db.profile.HeroicMode and NormalID then
AtlasLoot.db.profile.HeroicMode = false
dataID = NormalID
elseif AtlasLoot.db.profile.BigraidHeroic and Normal25ID then
AtlasLoot.db.profile.Bigraid = true
AtlasLoot.db.profile.BigraidHeroic = false
dataID = Normal25ID
else
AtlasLoot.db.profile.HeroicMode = true
AtlasLoot.db.profile.Bigraid = false
AtlasLoot.db.profile.BigraidHeroic = false
dataID = HeroicID
end
AtlasLoot_ShowItemsFrame(dataID, AtlasLootItemsFrame.refresh[2], "", AtlasLootItemsFrame.refresh[4]);
end
--[[
AtlasLoot_10Man25ManToggle:
Switches between the heroic and normal versions of a loot page
]]
function AtlasLoot_10Man25ManToggle()
local Lootpage = AtlasLoot10Man25ManSwitch.lootpage;
--Deal with loot filter issue
if ATLASLOOT_FILTER_ENABLE == true then
Lootpage = AtlasLootItemsFrame.refreshOri[1];
end
local NormalID, HeroicID, Normal25ID, Heroic25ID = AtlasLoot_GetLoottableHeroic(Lootpage)
if AtlasLoot.db.profile.Bigraid and Normal25ID then
AtlasLoot.db.profile.Bigraid = false
elseif AtlasLoot.db.profile.BigraidHeroic and Heroic25ID then
AtlasLoot.db.profile.BigraidHeroic = false
AtlasLoot.db.profile.HeroicMode = true
elseif AtlasLoot.db.profile.HeroicMode and HeroicID then
AtlasLoot.db.profile.HeroicMode = false
AtlasLoot.db.profile.BigraidHeroic = true
else
AtlasLoot.db.profile.Bigraid = true
AtlasLoot.db.profile.BigraidHeroic = false
AtlasLoot.db.profile.HeroicMode = false
end
if AtlasLootItemsFrame.refresh then
AtlasLoot_ShowItemsFrame(Lootpage, AtlasLootItemsFrame.refresh[2], "", AtlasLootItemsFrame.refresh[4]);
elseif AtlasLootDefaultFrame:IsVisible() then
AtlasLoot_ShowItemsFrame(Lootpage, AtlasLootItemsFrame.refresh[2], "", { "TOPLEFT", "AtlasLootDefaultFrame_LootBackground", "TOPLEFT", "2", "-2" });
else
AtlasLoot_ShowItemsFrame(Lootpage, AtlasLootItemsFrame.refresh[2], "", nil);
end
end
--[[
AtlasLoot_IsLootTableAvailable(dataID):
Checks if a loot table is in memory and attempts to load the correct LoD module if it isn't
dataID: Loot table dataID
]]
function AtlasLoot_IsLootTableAvailable(dataID)
local menu_check=false;
local moduleName=nil;
for k,v in pairs(AtlasLoot_MenuList) do
if v == dataID then
menu_check=true;
end
end
if menu_check then
return true;
else
if not AtlasLoot_TableNames[dataID] then
DEFAULT_CHAT_FRAME:AddMessage(RED..AL["AtlasLoot Error!"].." "..WHITE..dataID..AL[" not listed in loot table registry, please report this message to the AtlasLoot forums at https://discord.gg/uYCE2X2FgA"]);
return false;
end
local dataSource = AtlasLoot_TableNames[dataID][2];
moduleName = AtlasLoot_GetLODModule(dataSource);
if AtlasLoot_Data[dataID] then
return true;
else
if moduleName then
if not IsAddOnLoaded(moduleName) then
loaded, reason=LoadAddOn(moduleName);
if not loaded then
if (reason == "MISSING") or (reason == "DISABLED") then
DEFAULT_CHAT_FRAME:AddMessage(GREEN..AL["AtlasLoot"]..": "..ORANGE..AtlasLoot_TableNames[dataID][1]..WHITE..AL[" is unavailable, the following load on demand module is required: "]..ORANGE..moduleName);
return false;
else
DEFAULT_CHAT_FRAME:AddMessage(RED..AL["AtlasLoot Error!"].." "..WHITE..AL["Status of the following module could not be determined: "]..ORANGE..moduleName);
return false;
end
end
end
if AtlasLoot_Data[dataID] then
if ATLASLOOT_DEBUGMESSAGES then
DEFAULT_CHAT_FRAME:AddMessage(GREEN..AL["AtlasLoot"]..": "..ORANGE..moduleName..WHITE.." "..AL["sucessfully loaded."]);
end
collectgarbage("collect");
return true;
else
DEFAULT_CHAT_FRAME:AddMessage(RED..AL["AtlasLoot Error!"].." "..ORANGE..AtlasLoot_TableNames[dataID][1]..WHITE..AL[" could not be accessed, the following module may be out of date: "]..ORANGE..moduleName);
return false;
end
else
DEFAULT_CHAT_FRAME:AddMessage(RED..AL["AtlasLoot Error!"].." "..ORANGE..AL["Loot module returned as nil!"]);
return false;
end
end
end
end
--[[
AtlasLoot_GetLODModule(dataSource)
Returns the name of the module that needs to be loaded
dataSource: Location of the loot table
]]
function AtlasLoot_GetLODModule(dataSource)
if (dataSource=="AtlasLootOriginalWoW") then
return "AtlasLoot_OriginalWoW";
elseif (dataSource=="AtlasLootBurningCrusade") then
return "AtlasLoot_BurningCrusade";
elseif (dataSource=="AtlasLootCrafting") then
return "AtlasLoot_Crafting";
elseif (dataSource=="AtlasLootWorldEvents") then
return "AtlasLoot_WorldEvents";
elseif (dataSource=="AtlasLootWotLK") then
return "AtlasLoot_WrathoftheLichKing";
end
end
--[[
AtlasLoot_LoadAllModules()
Used to load all available LoD modules
]]
function AtlasLoot_LoadAllModules()
local orig, bc, wotlk, craft, world;
orig, _ = LoadAddOn("AtlasLoot_OriginalWoW");
bc, _ = LoadAddOn("AtlasLoot_BurningCrusade");
craft, _ = LoadAddOn("AtlasLoot_Crafting");
world, _ = LoadAddOn("AtlasLoot_WorldEvents");
wotlk, _ = LoadAddOn("AtlasLoot_WrathoftheLichKing");
local flag=0;
if not orig then
LoadAddOn("AtlasLoot_OriginalWoW");
flag=1;
end
if not bc then
LoadAddOn("AtlasLoot_BurningCrusade");
flag=1;
end
if not craft then
LoadAddOn("AtlasLoot_Crafting");
flag=1;
end
if not world then
LoadAddOn("AtlasLoot_WorldEvents");
flag=1;
end
if not wotlk then
LoadAddOn("AtlasLoot_WrathoftheLichKing");
flag=1;
end
if flag == 1 then
if ATLASLOOT_DEBUGMESSAGES then
DEFAULT_CHAT_FRAME:AddMessage(GREEN..AL["AtlasLoot"]..": "..WHITE..AL["All Available Modules Loaded"]);
end
collectgarbage("collect");
end
end
--[[
AtlasLoot_ShowQuickLooks(button)
button: Identity of the button pressed to trigger the function
Shows the GUI for setting Quicklooks
]]
function AtlasLoot_ShowQuickLooks(button)
local dewdrop = AceLibrary("Dewdrop-2.0");
if dewdrop:IsOpen(button) then
dewdrop:Close(1);
else
local setOptions = function()
dewdrop:AddLine(
"text", AL["QuickLook"].." 1",
"tooltipTitle", AL["QuickLook"].." 1",
"tooltipText", AL["Assign this loot table\n to QuickLook"].." 1",
"func", function()
AtlasLootCharDB["QuickLooks"][1]={AtlasLootItemsFrame.refreshOri[1], AtlasLootItemsFrame.refreshOri[2], AtlasLootItemsFrame.refreshOri[3], AtlasLootItemsFrame.refreshOri[4]};
AtlasLoot_RefreshQuickLookButtons();
dewdrop:Close(1);
end
);
dewdrop:AddLine(
"text", AL["QuickLook"].." 2",
"tooltipTitle", AL["QuickLook"].." 2",
"tooltipText", AL["Assign this loot table\n to QuickLook"].." 2",
"func", function()
AtlasLootCharDB["QuickLooks"][2]={AtlasLootItemsFrame.refreshOri[1], AtlasLootItemsFrame.refreshOri[2], AtlasLootItemsFrame.refreshOri[3], AtlasLootItemsFrame.refreshOri[4]};
AtlasLoot_RefreshQuickLookButtons();
dewdrop:Close(1);
end
);
dewdrop:AddLine(
"text", AL["QuickLook"].." 3",
"tooltipTitle", AL["QuickLook"].." 3",
"tooltipText", AL["Assign this loot table\n to QuickLook"].." 3",
"func", function()
AtlasLootCharDB["QuickLooks"][3]={AtlasLootItemsFrame.refreshOri[1], AtlasLootItemsFrame.refreshOri[2], AtlasLootItemsFrame.refreshOri[3], AtlasLootItemsFrame.refreshOri[4]};
AtlasLoot_RefreshQuickLookButtons();
dewdrop:Close(1);
end
);
dewdrop:AddLine(
"text", AL["QuickLook"].." 4",
"tooltipTitle", AL["QuickLook"].." 4",
"tooltipText", AL["Assign this loot table\n to QuickLook"].." 4",
"func", function()
AtlasLootCharDB["QuickLooks"][4]={AtlasLootItemsFrame.refreshOri[1], AtlasLootItemsFrame.refreshOri[2], AtlasLootItemsFrame.refreshOri[3], AtlasLootItemsFrame.refreshOri[4]};
AtlasLoot_RefreshQuickLookButtons();
dewdrop:Close(1);
end
);
end;
dewdrop:Open(button,
'point', function(parent)
return "BOTTOMLEFT", "BOTTOMRIGHT";
end,
"children", setOptions
);
end
end
--[[
AtlasLoot_RefreshQuickLookButtons()
Enables/disables the quicklook buttons depending on what is assigned
]]
function AtlasLoot_RefreshQuickLookButtons()
i=1;
while i<5 do
if ((not AtlasLootCharDB["QuickLooks"][i]) or (not AtlasLootCharDB["QuickLooks"][i][1])) or (AtlasLootCharDB["QuickLooks"][i][1]==nil) then
getglobal("AtlasLootPanel_Preset"..i):Disable();
getglobal("AtlasLootDefaultFrame_Preset"..i):Disable();
else
getglobal("AtlasLootPanel_Preset"..i):Enable();
getglobal("AtlasLootDefaultFrame_Preset"..i):Enable();
end
i=i+1;
end
end
--[[
AtlasLoot_QueryLootPage()
Querys all valid items on the current loot page.
]]
function AtlasLoot_QueryLootPage()
i=1;
local querytime = 0;
local now = 0;
while i<31 do
now = GetTime();
if now - querytime > 0.01 then
querytime = GetTime();
button = getglobal("AtlasLootItem_"..i);
queryitem = button.itemID;
if (queryitem) and (queryitem ~= nil) and (queryitem ~= "") and (queryitem ~= 0) and (string.sub(queryitem, 1, 1) ~= "s") then
AtlasLootTooltip:SetHyperlink("item:"..queryitem..":0:0:0:0:0:0:0");
AtlasLootTooltip:SetHyperlink("item:60"..queryitem..":0:0:0:0:0:0:0");
end
i=i+1;
end
end
end
--[[
AtlasLoot_AddTooltip(frameb, tooltiptext)
Adds explanatory tooltips to UI objects.
]]
function AtlasLoot_AddTooltip(frameb, tooltiptext)
if not tooltiptext or not frameb then return end
local frame = getglobal(frameb)
frame:SetScript("OnEnter", function()
GameTooltip:SetOwner(this, "ANCHOR_RIGHT")
GameTooltip:SetText(tooltiptext)
GameTooltip:Show()
end)
frame:SetScript("OnLeave", function() GameTooltip:Hide() end)
end
ItemIDsDatabase = {
{"Destiny", {6000647, 647, 102304, 200647, 1002963, 1010578, 1017246, 1023859, 1030423, 1036986, 1043549, 1050112, 1056675, 1063238} },
{"Shortsword of Vengeance", {6000754, 754, 131089, 131090, 131091, 131092, 131093, 131094, 131095, 131096, 131097, 131098, 131099, 131100} },
{"Bloodrazor", {6000809, 809, 100375, 200809, 1002964, 1010579, 1017247, 1023860, 1030424, 1036987, 1043550, 1050113, 1056676, 1063239} },
{"Hammer of the Northern Wind", {6000810, 810, 120449, 100014, 1002965, 1010580, 1017248, 1023861, 1030425, 1036988, 1043551, 1050114, 1056677, 1063240} },
{"Axe of the Deep Woods", {6000811, 811, 100185, 200811, 1002966, 1010581, 1017249, 1023862, 1030426, 1036989, 1043552, 1050115, 1056678, 1063241} },
{"Glowing Brightwood Staff", {6000812, 812, 120098, 200812, 1002967, 1010582, 1017250, 1023863, 1030427, 1036990, 1043553, 1050116, 1056679, 1063242} },
{"Lifestone", {6000833, 833, 120974, 200833, 1002968, 1010583, 1017251, 1023864, 1030428, 1036991, 1043554, 1050117, 1056680, 1063243} },
{"Runed Ring", {6000862, 862, 131976, 131977, 131978, 131979, 131980, 131981, 131982, 131983, 131984, 131985, 131986, 131987} },
{"Flurry Axe", {6000871, 871, 132105, 132108, 132109, 132121, 132131, 132133, 132134, 132135, 132136, 132137, 132143, 132144} },
{"Robes of Insight", {6000940, 940, 132707, 132708, 132709, 132710, 132711, 132712, 132713, 132714, 132715, 132716, 132717, 132718} },
{"Freezing Band", {6000942, 942, 116145, 200942, 1002969, 1010584, 1017252, 1023865, 1030429, 1036992, 1043555, 1050118, 1056681, 1063244} },
{"Warden Staff", {6000943, 943, 132719, 132720, 132721, 132722, 132723, 132724, 132725, 132726, 132727, 132728, 132729, 132730} },
{"Elemental Mage Staff", {6000944, 944, 300944, 200944, 1002970, 1010585, 1017253, 1023866, 1030430, 1036993, 1043556, 1050119, 1056682, 1063245} },
{"Skullflame Shield", {6001168, 1168, 301168, 201168, 1002971, 1010586, 1017254, 1023867, 1030431, 1036994, 1043557, 1050120, 1056683, 1063246} },
{"Blackskull Shield", {6001169, 1169, 133383, 133384, 133423, 133425, 133426, 133427, 133429, 133443, 133483, 133484, 133509, 133551} },
{"Aegis of Stormwind", {6001203, 1203, 301203, 201203, 1002972, 1010587, 1017255, 1023868, 1030432, 1036995, 1043558, 1050121, 1056684, 1063247} },
{"Brain Hacker", {6001263, 1263, 301263, 201263, 1002973, 1010588, 1017256, 1023869, 1030433, 1036996, 1043559, 1050122, 1056685, 1063248} },
{"Lei of Lilies", {6001315, 1315, 120913, 201315, 1002974, 1010589, 1017257, 1023870, 1030434, 1036997, 1043560, 1050123, 1056686, 1063249} },
{"Tidal Charm", {6001404, 1404, 135288, 135289, 135290, 135291, 135292, 135293, 135294, 135295, 135296, 135297, 135298, 135299} },
{"Jeweled Amulet of Cainwyn", {6001443, 1443, 301443, 201443, 1002975, 1010590, 1017258, 1023871, 1030435, 1036998, 1043561, 1050124, 1056687, 1063250} },
{"Ring of Saviors", {6001447, 1447, 135365, 135366, 135367, 135368, 135369, 135370, 135371, 135372, 135373, 135374, 135375, 135376} },
{"Soulkeeper", {6001607, 1607, 301607, 201607, 1002976, 1010591, 1017259, 1023872, 1030436, 1036999, 1043562, 1050125, 1056688, 1063251} },
{"Skullcrusher Mace", {138005, 1608, 138002, 138008, 138025, 138096, 138101, 138103, 138104, 138105, 138106, 138107, 138108, 138109} },
{"Grinning Axe", {138286, 1639, 138284, 138287, 138288, 138289, 138304, 138305, 138306, 138409, 138434, 138436, 138437, 138438} },
{"Drake-scale Vest", {139051, 1677, 139050, 139052, 139053, 139054, 139176, 139291, 139309, 139354, 139355, 139356, 139357, 139359} },
{"Ankh of Life", {6001713, 1713, 140570, 140585, 140586, 140633, 140666, 140673, 140674, 140675, 140676, 140677, 140678, 140684} },
{"Tanglewood Staff", {6001720, 1720, 141730, 141731, 141732, 141733, 141734, 141735, 141736, 141737, 141738, 141739, 141740, 141741} },
{"Viking Warhammer", {6001721, 1721, 301721, 201721, 1002977, 1010592, 1017260, 1023873, 1030437, 1037000, 1043563, 1050126, 1056689, 1063252} },
{"Teebu's Blazing Longsword", {6001728, 1728, 301728, 201728, 1002978, 1010593, 1017261, 1023874, 1030438, 1037001, 1043564, 1050127, 1056690, 1063253} },
{"Orb of Deception", {6001973, 1973, 301973, 201973, 1002979, 1010594, 1017262, 1023875, 1030439, 1037002, 1043565, 1050128, 1056691, 1063254} },
{"Wall of the Dead", {6001979, 1979, 130754, 201979, 1002980, 1010595, 1017263, 1023876, 1030440, 1037003, 1043566, 1050129, 1056692, 1063255} },
{"Ebonclaw Reaver", {147490, 1994, 147489, 147523, 147524, 147577, 147620, 147671, 147672, 147699, 147700, 147701, 147702, 147703} },
{"Troll Protector", {6002040, 2040, 152261, 152262, 152263, 152264, 152265, 152266, 152267, 152268, 152269, 152270, 152271, 152272} },
{"Dwarven Hand Cannon", {6002099, 2099, 302099, 202099, 1002981, 1010596, 1017264, 1023877, 1030441, 1037004, 1043567, 1050130, 1056693, 1063256} },
{"Precisely Calibrated Boomstick", {6002100, 2100, 154357, 154358, 154359, 154360, 154361, 154362, 154363, 154364, 154365, 154366, 154367, 154400} },
{"Shadowblade", {6002163, 2163, 123780, 202163, 1002982, 1010597, 1017265, 1023878, 1030442, 1037005, 1043568, 1050131, 1056694, 1063257} },
{"Gut Ripper", {6002164, 2164, 154491, 154492, 154493, 154496, 154497, 154499, 154501, 154502, 154503, 154504, 154505, 154506} },
{"Hand of Edward the Odd", {6002243, 2243, 302243, 202243, 1002983, 1010598, 1017266, 1023879, 1030443, 1037006, 1043569, 1050132, 1056695, 1063258} },
{"Krol Blade", {6002244, 2244, 120813, 202244, 1002984, 1010599, 1017267, 1023880, 1030444, 1037007, 1043570, 1050133, 1056696, 1063259} },
{"Helm of Narv", {6002245, 2245, 302245, 202245, 1002985, 1010600, 1017268, 1023881, 1030445, 1037008, 1043571, 1050134, 1056697, 1063260} },
{"Myrmidon's Signet", {6002246, 2246, 302246, 202246, 1002986, 1010601, 1017269, 1023882, 1030446, 1037009, 1043572, 1050135, 1056698, 1063261} },
{"Kang the Decapitator", {6002291, 2291, 157259, 157260, 157261, 157262, 157263, 157264, 157265, 157266, 157267, 157268, 157269, 157270} },
{"Elven Spirit Claws", {6002564, 2564, 302564, 202564, 1002987, 1010602, 1017270, 1023883, 1030447, 1037010, 1043573, 1050136, 1056699, 1063262} },
{"Blade of Hanna", {6002801, 2801, 302801, 202801, 1002988, 1010603, 1017271, 1023884, 1030448, 1037011, 1043574, 1050137, 1056700, 1063263} },
{"Curve-bladed Ripper", {6002815, 2815, 160487, 160492, 160493, 160494, 160495, 160496, 160497, 160498, 160503, 160504, 160505, 160506} },
{"Hurricane", {6002824, 2824, 120610, 202824, 1002989, 1010604, 1017272, 1023885, 1030449, 1037012, 1043575, 1050138, 1056701, 1063264} },
{"Taran Icebreaker", {6002915, 2915, 130036, 202915, 1002990, 1010605, 1017273, 1023886, 1030450, 1037013, 1043576, 1050139, 1056702, 1063265} },
{"Eye of Flame", {6003075, 3075, 113503, 203075, 1002991, 1010606, 1017274, 1023887, 1030451, 1037014, 1043577, 1050140, 1056703, 1063266} },
{"Conk Hammer", {174578, 3208, 174577, 174579, 174580, 174581, 174582, 174583, 174584, 174585, 174586, 174587, 174588, 174589} },
{"Cloak of Flames", {6003475, 3475, 303475, 203475, 1002992, 1010607, 1017275, 1023888, 1030452, 1037015, 1043578, 1050141, 1056704, 1063267} },
{"Blackforge Buckler", {185348, 4069, 185347, 185349, 185350, 185351, 185352, 185353, 185354, 185355, 185356, 185357, 185358, 185359} },
{"Blackforge Breastplate", {185504, 4082, 185503, 185505, 185506, 185507, 185508, 185509, 185510, 185511, 185512, 185513, 185514, 185515} },
{"Blackforge Leggings", {185530, 4084, 185529, 185531, 185532, 185533, 185534, 185535, 185536, 185537, 185538, 185539, 185540, 185541} },
{"Dreadblade", {185569, 4088, 185568, 185570, 185571, 185572, 185573, 185574, 185575, 185576, 185577, 185578, 185579, 185580} },
{"Ricochet Blunderbuss", {185582, 4089, 185581, 185583, 185584, 185585, 185586, 185587, 185588, 185589, 185590, 185591, 185592, 185593} },
{"Mug O' Hurt", {6004090, 4090, 185594, 185595, 185596, 185597, 185598, 185599, 185600, 185601, 185602, 185603, 185604, 185605} },
{"Widowmaker", {6004091, 4091, 185606, 185607, 185608, 185609, 185610, 185611, 185612, 185613, 185614, 185615, 185616, 185617} },
{"Poobah's Nose Ring", {185762, 4118, 185761, 185763, 185764, 185765, 185766, 185767, 185768, 185769, 185770, 185771, 185772, 185773} },
{"Nimboya's Mystical Staff", {6004134, 4134, 185969, 185970, 185971, 185972, 185973, 185974, 185975, 185976, 185977, 185978, 185979, 185980} },
{"Lapidis Tankard of Tidesippe", {6004696, 4696, 304696, 204696, 1002993, 1010608, 1017276, 1023889, 1030453, 1037016, 1043579, 1050142, 1056705, 1063268} },
{"Blackforge Pauldrons", {187996, 4733, 187995, 187997, 187998, 187999, 188000, 188001, 188002, 188003, 188004, 188005, 188006, 188007} },
{"Pulsating Crystalline Shard", {6004743, 4743, 188086, 188087, 188088, 188089, 188090, 188091, 188092, 188093, 188094, 188095, 188096, 188097} },
{"Lord Sakrasis' Scepter", {189180, 5028, 189179, 189181, 189182, 189183, 189184, 189185, 189186, 189187, 189188, 189189, 189190, 189191} },
{"Talisman of the Naga Lord", {189193, 5029, 189192, 189194, 189195, 189196, 189197, 189198, 189199, 189200, 189201, 189202, 189203, 189204} },
{"Eye of Adaegus", {6005266, 5266, 305266, 205266, 1002994, 1010609, 1017277, 1023890, 1030454, 1037017, 1043580, 1050143, 1056706, 1063269} },
{"Scarlet Kris", {6005267, 5267, 305267, 205267, 1002995, 1010610, 1017278, 1023891, 1030455, 1037018, 1043581, 1050144, 1056707, 1063270} },
{"Gutwrencher", {6005616, 5616, 190424, 190425, 190426, 190427, 190428, 190429, 190430, 190431, 190432, 190433, 190434, 190435} },
{"Mistscape Robe", {192473, 6427, 192472, 192474, 192475, 192476, 192477, 192478, 192479, 192480, 192481, 192482, 192483, 192484} },
{"Imperial Leather Breastplate", {192512, 6430, 192511, 192513, 192514, 192515, 192516, 192517, 192518, 192519, 192520, 192521, 192522, 192523} },
{"Brainlash", {6006440, 6440, 192563, 192564, 192565, 192566, 192567, 192568, 192569, 192570, 192571, 192572, 192573, 192574} },
{"Sword of Zeal", {6006622, 6622, 306622, 206622, 1002996, 1010611, 1017279, 1023892, 1030456, 1037019, 1043582, 1050145, 1056708, 1063271} },
{"Julie's Dagger", {6006660, 6660, 306660, 206660, 1002997, 1010612, 1017280, 1023893, 1030457, 1037020, 1043583, 1050146, 1056709, 1063272} },
{"Medal of Courage", {6006723, 6723, 194427, 194428, 194429, 194430, 194431, 194432, 194433, 194434, 194435, 194436, 194437, 194438} },
{"Mistscape Armor", {195790, 7113, 195789, 195791, 195792, 195793, 195794, 195795, 195796, 195797, 195798, 195799, 195800, 195801} },
{"Gossamer Tunic", {197705, 7517, 197704, 197706, 197707, 197708, 197709, 197710, 197711, 197712, 197713, 197714, 197715, 197716} },
{"Gossamer Robe", {197718, 7518, 197717, 197719, 197720, 197721, 197722, 197723, 197724, 197725, 197726, 197727, 197728, 197729} },
{"Gossamer Pants", {197731, 7519, 197730, 197732, 197733, 197734, 197735, 197736, 197737, 197738, 197739, 197740, 197741, 197742} },
{"Gossamer Headpiece", {197744, 7520, 197743, 197745, 197746, 197747, 197748, 197749, 197750, 197751, 197752, 197753, 197754, 197755} },
{"Gossamer Gloves", {197757, 7521, 197756, 197758, 197759, 197760, 197761, 197762, 197763, 197764, 197765, 197766, 197767, 197768} },
{"Gossamer Shoulderpads", {197783, 7523, 197782, 197784, 197785, 197786, 197787, 197788, 197789, 197790, 197791, 197792, 197793, 197794} },
{"Gossamer Belt", {197822, 7526, 197821, 197823, 197824, 197825, 197826, 197827, 197828, 197829, 197830, 197831, 197832, 197833} },
{"Cabalist Chestpiece", {197835, 7527, 197834, 197836, 197837, 197838, 197839, 197840, 197841, 197842, 197843, 197844, 197845, 197846} },
{"Cabalist Leggings", {197848, 7528, 197847, 197849, 197850, 197851, 197852, 197853, 197854, 197855, 197856, 197857, 197858, 197859} },
{"Cabalist Helm", {197861, 7529, 197860, 197862, 197863, 197864, 197865, 197866, 197867, 197868, 197869, 197870, 197871, 197872} },
{"Cabalist Gloves", {197874, 7530, 197873, 197875, 197876, 197877, 197878, 197879, 197880, 197881, 197882, 197883, 197884, 197885} },
{"Cabalist Boots", {197887, 7531, 197886, 197888, 197889, 197890, 197891, 197892, 197893, 197894, 197895, 197896, 197897, 197898} },
{"Cabalist Spaulders", {197900, 7532, 197899, 197901, 197902, 197903, 197904, 197905, 197906, 197907, 197908, 197909, 197910, 197911} },
{"Cabalist Belt", {197939, 7535, 197938, 197940, 197941, 197942, 197943, 197944, 197945, 197946, 197947, 197948, 197949, 197950} },
{"Champion's Wall Shield", {197952, 7536, 197951, 197953, 197954, 197955, 197956, 197957, 197958, 197959, 197960, 197961, 197962, 197963} },
{"Gothic Shield", {197965, 7537, 197964, 197966, 197967, 197968, 197969, 197970, 197971, 197972, 197973, 197974, 197975, 197976} },
{"Champion's Armor", {197978, 7538, 197977, 197979, 197980, 197981, 197982, 197983, 197984, 197985, 197986, 197987, 197988, 197989} },
{"Champion's Leggings", {197991, 7539, 197990, 197992, 197993, 197994, 197995, 197996, 197997, 197998, 197999, 198000, 198001, 198002} },
{"Champion's Helmet", {198004, 7540, 198003, 198005, 198006, 198007, 198008, 198009, 198010, 198011, 198012, 198013, 198014, 198015} },
{"Champion's Gauntlets", {198017, 7541, 198016, 198018, 198019, 198020, 198021, 198022, 198023, 198024, 198025, 198026, 198027, 198028} },
{"Champion's Greaves", {198030, 7542, 198029, 198031, 198032, 198033, 198034, 198035, 198036, 198037, 198038, 198039, 198040, 198041} },
{"Champion's Pauldrons", {198043, 7543, 198042, 198044, 198045, 198046, 198047, 198048, 198049, 198050, 198051, 198052, 198053, 198054} },
{"Champion's Girdle", {198082, 7546, 198081, 198083, 198084, 198085, 198086, 198087, 198088, 198089, 198090, 198091, 198092, 198093} },
{"Onyx Ring", {198095, 7547, 198094, 198096, 198097, 198098, 198099, 198100, 198101, 198102, 198103, 198104, 198105, 198106} },
{"Onyx Choker", {198108, 7548, 198107, 198109, 198110, 198111, 198112, 198113, 198114, 198115, 198116, 198117, 198118, 198119} },
{"Fairy's Embrace", {198121, 7549, 198120, 198122, 198123, 198124, 198125, 198126, 198127, 198128, 198129, 198130, 198131, 198132} },
{"Warrior's Honor", {198134, 7550, 198133, 198135, 198136, 198137, 198138, 198139, 198140, 198141, 198142, 198143, 198144, 198145} },
{"Entwined Opaline Talisman", {198147, 7551, 198146, 198148, 198149, 198150, 198151, 198152, 198153, 198154, 198155, 198156, 198157, 198158} },
{"Band of the Unicorn", {198173, 7553, 198172, 198174, 198175, 198176, 198177, 198178, 198179, 198180, 198181, 198182, 198183, 198184} },
{"Gossamer Rod", {198225, 7557, 198224, 198226, 198227, 198228, 198229, 198230, 198231, 198232, 198233, 198234, 198235, 198236} },
{"Mistscape Stave", {198329, 7611, 198328, 198330, 198331, 198332, 198333, 198334, 198335, 198336, 198337, 198338, 198339, 198340} },
{"Talvash's Enhancing Necklace", {6007673, 7673, 198341, 198342, 198343, 198344, 198345, 198346, 198347, 198348, 198349, 198350, 198351, 198352} },
{"Six Demon Bag", {6007734, 7734, 307734, 207734, 1002998, 1010613, 1017281, 1023894, 1030458, 1037021, 1043584, 1050147, 1056710, 1063273} },
{"Jarkal's Enhancing Necklace", {6007888, 7888, 198985, 198986, 198987, 198988, 198989, 198990, 198991, 198992, 198993, 198994, 198995, 198996} },
{"Heavy Mithril Breastplate", {199206, 7930, 199205, 199207, 199208, 199209, 199210, 199211, 199212, 199213, 199214, 199215, 199216, 199217} },
{"Mithril Coif", {199219, 7931, 199218, 199220, 199221, 199222, 199223, 199224, 199225, 199226, 199227, 199228, 199229, 199230} },
{"Mithril Scale Shoulders", {199232, 7932, 199231, 199233, 199234, 199235, 199236, 199237, 199238, 199239, 199240, 199241, 199242, 199243} },
{"Heavy Mithril Boots", {199245, 7933, 199244, 199246, 199247, 199248, 199249, 199250, 199251, 199252, 199253, 199254, 199255, 199256} },
{"Heavy Mithril Helm", {199258, 7934, 199257, 199259, 199260, 199261, 199262, 199263, 199264, 199265, 199266, 199267, 199268, 199269} },
{"Ornate Mithril Breastplate", {199271, 7935, 199270, 199272, 199273, 199274, 199275, 199276, 199277, 199278, 199279, 199280, 199281, 199282} },
{"Ornate Mithril Boots", {199284, 7936, 199283, 199285, 199286, 199287, 199288, 199289, 199290, 199291, 199292, 199293, 199294, 199295} },
{"Ornate Mithril Helm", {199297, 7937, 199296, 199298, 199299, 199300, 199301, 199302, 199303, 199304, 199305, 199306, 199307, 199308} },
{"Truesilver Gauntlets", {6007938, 7938, 199309, 199310, 199311, 199312, 199313, 199314, 199315, 199316, 199317, 199318, 199319, 199320} },
{"Truesilver Breastplate", {6007939, 7939, 199321, 199322, 199323, 199324, 199325, 199326, 199327, 199328, 199329, 199330, 199331, 199332} },
{"Dazzling Mithril Rapier", {199373, 7944, 199372, 199374, 199375, 199376, 199377, 199378, 199379, 199380, 199381, 199382, 199383, 199384} },
{"Big Black Mace", {199386, 7945, 199385, 199387, 199388, 199389, 199390, 199391, 199392, 199393, 199394, 199395, 199396, 199397} },
{"Runed Mithril Hammer", {199399, 7946, 199398, 199400, 199401, 199402, 199403, 199404, 199405, 199406, 199407, 199408, 199409, 199410} },
{"Ebon Shiv", {199412, 7947, 199411, 199413, 199414, 199415, 199416, 199417, 199418, 199419, 199420, 199421, 199422, 199423} },
{"The Shatterer", {6007954, 7954, 199502, 199503, 199504, 199505, 199506, 199507, 199508, 199509, 199510, 199511, 199512, 199513} },
{"Blight", {6007959, 7959, 199553, 199554, 199555, 199556, 199557, 199558, 199559, 199560, 199561, 199562, 199563, 199564} },
{"Truesilver Champion", {6007960, 7960, 199565, 199566, 199567, 199568, 199569, 199570, 199571, 199572, 199573, 199574, 199575, 199576} },
{"Phantom Blade", {6007961, 7961, 199577, 199578, 199579, 199580, 199581, 199582, 199583, 199584, 199585, 199586, 199587, 199588} },
{"Hibernal Armor", {199629, 8106, 199628, 199630, 199631, 199632, 199633, 199634, 199635, 199636, 199637, 199638, 199639, 199640} },
{"Hibernal Boots", {199642, 8107, 199641, 199643, 199644, 199645, 199646, 199647, 199648, 199649, 199650, 199651, 199652, 199653} },
{"Hibernal Bracers", {199655, 8108, 199654, 199656, 199657, 199658, 199659, 199660, 199661, 199662, 199663, 199664, 199665, 199666} },
{"Hibernal Cloak", {199668, 8109, 199667, 199669, 199670, 199671, 199672, 199673, 199674, 199675, 199676, 199677, 199678, 199679} },
{"Hibernal Gloves", {199681, 8110, 199680, 199682, 199683, 199684, 199685, 199686, 199687, 199688, 199689, 199690, 199691, 199692} },
{"Hibernal Mantle", {199694, 8111, 199693, 199695, 199696, 199697, 199698, 199699, 199700, 199701, 199702, 199703, 199704, 199705} },
{"Hibernal Pants", {199707, 8112, 199706, 199708, 199709, 199710, 199711, 199712, 199713, 199714, 199715, 199716, 199717, 199718} },
{"Hibernal Robe", {199720, 8113, 199719, 199721, 199722, 199723, 199724, 199725, 199726, 199727, 199728, 199729, 199730, 199731} },
{"Hibernal Sash", {199733, 8114, 199732, 199734, 199735, 199736, 199737, 199738, 199739, 199740, 199741, 199742, 199743, 199744} },
{"Hibernal Cowl", {199746, 8115, 199745, 199747, 199748, 199749, 199750, 199751, 199752, 199753, 199754, 199755, 199756, 199757} },
{"Heraldic Belt", {199759, 8116, 199758, 199760, 199761, 199762, 199763, 199764, 199765, 199766, 199767, 199768, 199769, 199770} },
{"Heraldic Boots", {199772, 8117, 199771, 199773, 199774, 199775, 199776, 199777, 199778, 199779, 199780, 199781, 199782, 199783} },
{"Heraldic Bracers", {199785, 8118, 199784, 199786, 199787, 199788, 199789, 199790, 199791, 199792, 199793, 199794, 199795, 199796} },
{"Heraldic Breastplate", {199799, 8119, 199798, 199800, 199801, 199802, 199803, 199804, 199805, 199806, 199807, 199808, 199809, 199810} },
{"Heraldic Gloves", {199825, 8121, 199824, 199826, 199827, 199828, 199829, 199830, 199831, 199832, 199833, 199834, 199835, 199836} },
{"Heraldic Headpiece", {199838, 8122, 199837, 199839, 199840, 199841, 199842, 199843, 199844, 199845, 199846, 199847, 199848, 199849} },
{"Heraldic Leggings", {199851, 8123, 199850, 199852, 199853, 199854, 199855, 199856, 199857, 199858, 199859, 199860, 199861, 199862} },
{"Heraldic Spaulders", {199864, 8124, 199863, 199865, 199866, 199867, 199868, 199869, 199870, 199871, 199872, 199873, 199874, 199875} },
{"Myrmidon's Bracers", {199877, 8125, 199876, 199878, 199879, 199880, 199881, 199882, 199883, 199884, 199885, 199886, 199887, 199888} },
{"Myrmidon's Breastplate", {199890, 8126, 199889, 199891, 199892, 199893, 199894, 199895, 199896, 199897, 199898, 199899, 199900, 199901} },
{"Myrmidon's Cape", {199903, 8127, 199902, 199904, 199905, 199906, 199907, 199908, 199909, 199910, 199911, 199919, 199920, 199921} },
{"Myrmidon's Gauntlets", {199923, 8128, 199922, 199924, 199925, 199926, 199927, 199928, 199929, 199930, 199931, 199932, 199933, 199934} },
{"Myrmidon's Girdle", {199936, 8129, 199935, 199937, 199938, 199939, 199940, 199941, 199942, 199943, 199944, 199945, 199946, 199947} },
{"Myrmidon's Greaves", {199949, 8130, 199948, 199950, 199951, 199952, 199953, 199954, 199955, 199956, 199957, 199958, 199959, 199960} },
{"Myrmidon's Helm", {199962, 8131, 199961, 199963, 199964, 199965, 199966, 199967, 199968, 199969, 199970, 199971, 199972, 199973} },
{"Myrmidon's Leggings", {199975, 8132, 199974, 199976, 199977, 199978, 199979, 199980, 199981, 199982, 199983, 199984, 199985, 199986} },
{"Myrmidon's Pauldrons", {199988, 8133, 199987, 199989, 199990, 199991, 199992, 199993, 199994, 199995, 199996, 199997, 199998, 199999} },
{"Myrmidon's Defender", {200003, 8134, 200002, 200004, 200005, 200006, 200007, 200008, 200009, 200010, 200011, 200012, 200013, 200014} },
{"Chromite Shield", {200016, 8135, 200015, 200017, 200018, 200019, 200020, 200021, 200022, 200023, 200024, 200025, 200026, 200027} },
{"Chromite Chestplate", {200042, 8138, 200041, 200043, 200044, 200045, 200046, 200047, 200048, 200049, 200050, 200051, 200052, 200053} },
{"Chromite Legplates", {200107, 8143, 200106, 200108, 200109, 200110, 200111, 200112, 200113, 200114, 200115, 200116, 200117, 200118} },
{"Turtle Scale Leggings", {200328, 8185, 200327, 200329, 200330, 200331, 200332, 200333, 200334, 200335, 200336, 200337, 200338, 200339} },
{"Hanzo Sword", {6008190, 8190, 308190, 208190, 1002999, 1010614, 1017282, 1023895, 1030459, 1037022, 1043585, 1050148, 1056711, 1063274} },
{"Turtle Scale Helm", {200393, 8191, 200392, 200394, 200395, 200396, 200397, 200398, 200399, 200400, 200401, 200402, 200403, 200404} },
{"Nightscape Pants", {200419, 8193, 200418, 200420, 200421, 200422, 200423, 200424, 200425, 200426, 200427, 200428, 200429, 200430} },
{"Nightscape Cloak", {200445, 8195, 200444, 200446, 200447, 200448, 200449, 200450, 200451, 200452, 200453, 200454, 200455, 200456} },
{"Nightscape Boots", {200471, 8197, 200470, 200472, 200473, 200474, 200475, 200476, 200477, 200478, 200479, 200480, 200481, 200482} },
{"Battlefield Destroyer", {200497, 8199, 200496, 200498, 200499, 200500, 200501, 200502, 200503, 200504, 200505, 200506, 200507, 200508} },
{"Big Voodoo Pants", {200536, 8202, 200535, 200537, 200538, 200539, 200540, 200541, 200542, 200543, 200544, 200545, 200546, 200547} },
{"Tough Scorpid Leggings", {200588, 8206, 200587, 200589, 200590, 200591, 200592, 200593, 200594, 200595, 200596, 200597, 200598, 200599} },
{"Tough Scorpid Shoulders", {200601, 8207, 200600, 200602, 200603, 200604, 200605, 200606, 200607, 200608, 200609, 200610, 200611, 200612} },
{"Tough Scorpid Helm", {200614, 8208, 200613, 200615, 200616, 200617, 200618, 200619, 200620, 200621, 200622, 200623, 200624, 200625} },
{"Tough Scorpid Boots", {200627, 8209, 200626, 200628, 200629, 200630, 200631, 200632, 200633, 200634, 200635, 200636, 200637, 200638} },
{"Wild Leather Leggings", {200667, 8212, 200666, 200668, 200669, 200670, 200671, 200672, 200673, 200674, 200675, 200676, 200677, 200678} },
{"Wild Leather Boots", {200680, 8213, 200679, 200681, 200682, 200683, 200684, 200685, 200686, 200687, 200688, 200689, 200690, 200691} },
{"Wild Leather Cloak", {200706, 8215, 200705, 200707, 200708, 200709, 200710, 200711, 200712, 200713, 200714, 200715, 200716, 200717} },
{"Big Voodoo Cloak", {200719, 8216, 200718, 200720, 200721, 200722, 200723, 200724, 200725, 200726, 200727, 200728, 200729, 200730} },
{"Imperial Red Tunic", {200782, 8245, 200781, 200783, 200784, 200785, 200786, 200787, 200788, 200789, 200790, 200791, 200792, 200793} },
{"Imperial Red Boots", {200795, 8246, 200794, 200796, 200797, 200798, 200799, 200800, 200801, 200802, 200803, 200804, 200805, 200806} },
{"Imperial Red Bracers", {200808, 8247, 200807, 200813, 200814, 200815, 200816, 200817, 200818, 200819, 200820, 200821, 200822, 200823} },
{"Imperial Red Cloak", {200825, 8248, 200824, 200826, 200827, 200828, 200829, 200830, 200831, 200832, 200834, 200835, 200836, 200837} },
{"Imperial Red Gloves", {200839, 8249, 200838, 200840, 200841, 200842, 200843, 200844, 200845, 200846, 200847, 200848, 200849, 200850} },
{"Imperial Red Mantle", {200852, 8250, 200851, 200853, 200854, 200855, 200856, 200857, 200858, 200859, 200860, 200861, 200862, 200863} },
{"Imperial Red Pants", {200865, 8251, 200864, 200866, 200867, 200868, 200869, 200870, 200871, 200872, 200873, 200874, 200875, 200876} },
{"Imperial Red Robe", {200878, 8252, 200877, 200879, 200880, 200881, 200882, 200883, 200884, 200885, 200886, 200887, 200888, 200889} },
{"Imperial Red Sash", {200891, 8253, 200890, 200892, 200893, 200894, 200895, 200896, 200897, 200898, 200899, 200900, 200901, 200902} },
{"Imperial Red Circlet", {200904, 8254, 200903, 200905, 200906, 200907, 200908, 200909, 200910, 200911, 200912, 200913, 200914, 200915} },
{"Serpentskin Girdle", {200917, 8255, 200916, 200918, 200919, 200920, 200921, 200922, 200923, 200924, 200925, 200926, 200927, 200928} },
{"Serpentskin Boots", {200930, 8256, 200929, 200931, 200932, 200933, 200934, 200935, 200936, 200937, 200938, 200939, 200940, 200941} },
{"Serpentskin Bracers", {200945, 8257, 200943, 200946, 200947, 200948, 200949, 200950, 200951, 200952, 200953, 200954, 200955, 200956} },
{"Serpentskin Armor", {200958, 8258, 200957, 200959, 200960, 200961, 200962, 200963, 200964, 200965, 200966, 200967, 200968, 200969} },
{"Serpentskin Cloak", {200971, 8259, 200970, 200972, 200973, 200974, 200975, 200976, 200977, 200978, 200979, 200980, 200981, 200982} },
{"Serpentskin Gloves", {200984, 8260, 200983, 200985, 200986, 200987, 200988, 200989, 200990, 200991, 200992, 200993, 200994, 200995} },
{"Serpentskin Helm", {200997, 8261, 200996, 200998, 200999, 201000, 201001, 201002, 201003, 201004, 201005, 201006, 201007, 201008} },
{"Serpentskin Leggings", {201010, 8262, 201009, 201011, 201012, 201013, 201014, 201015, 201016, 201017, 201018, 201019, 201020, 201021} },
{"Serpentskin Spaulders", {201023, 8263, 201022, 201024, 201025, 201026, 201027, 201028, 201029, 201030, 201031, 201032, 201033, 201034} },
{"Ebonhold Wristguards", {201036, 8264, 201035, 201037, 201038, 201039, 201040, 201041, 201042, 201043, 201044, 201045, 201046, 201047} },
{"Ebonhold Armor", {201049, 8265, 201048, 201050, 201051, 201052, 201053, 201054, 201055, 201056, 201057, 201058, 201059, 201060} },
{"Ebonhold Cloak", {201062, 8266, 201061, 201063, 201064, 201065, 201066, 201067, 201068, 201069, 201070, 201071, 201072, 201073} },
{"Ebonhold Gauntlets", {201075, 8267, 201074, 201076, 201077, 201078, 201079, 201080, 201081, 201082, 201083, 201084, 201085, 201086} },
{"Ebonhold Girdle", {201088, 8268, 201087, 201089, 201090, 201091, 201092, 201093, 201094, 201095, 201096, 201097, 201098, 201099} },
{"Ebonhold Boots", {201101, 8269, 201100, 201102, 201103, 201104, 201105, 201106, 201107, 201108, 201109, 201110, 201111, 201112} },
{"Ebonhold Helmet", {201114, 8270, 201113, 201115, 201116, 201117, 201118, 201119, 201120, 201121, 201122, 201123, 201124, 201125} },
{"Ebonhold Leggings", {201127, 8271, 201126, 201128, 201129, 201130, 201131, 201132, 201133, 201134, 201135, 201136, 201137, 201138} },
{"Ebonhold Shoulderpads", {201140, 8272, 201139, 201141, 201142, 201143, 201144, 201145, 201146, 201147, 201148, 201149, 201150, 201151} },
{"Valorous Wristguards", {201153, 8273, 201152, 201154, 201155, 201156, 201157, 201158, 201159, 201160, 201161, 201162, 201163, 201164} },
{"Valorous Chestguard", {201166, 8274, 201165, 201167, 201169, 201170, 201171, 201172, 201173, 201174, 201175, 201176, 201177, 201178} },
{"Ebonhold Buckler", {201180, 8275, 201179, 201181, 201182, 201183, 201184, 201185, 201186, 201187, 201188, 201189, 201190, 201191} },
{"Valorous Gauntlets", {201193, 8276, 201192, 201194, 201195, 201196, 201197, 201198, 201199, 201200, 201201, 201202, 201204, 201205} },
{"Valorous Girdle", {201207, 8277, 201206, 201208, 201209, 201210, 201211, 201212, 201213, 201214, 201215, 201216, 201217, 201218} },
{"Valorous Greaves", {201220, 8278, 201219, 201221, 201222, 201223, 201224, 201225, 201226, 201227, 201228, 201229, 201230, 201231} },
{"Valorous Helm", {201233, 8279, 201232, 201234, 201235, 201236, 201237, 201238, 201239, 201240, 201241, 201242, 201243, 201244} },
{"Valorous Legguards", {201246, 8280, 201245, 201247, 201248, 201249, 201250, 201251, 201252, 201253, 201254, 201255, 201256, 201257} },
{"Valorous Pauldrons", {201259, 8281, 201258, 201260, 201261, 201262, 201264, 201265, 201266, 201267, 201268, 201269, 201270, 201271} },
{"Valorous Shield", {201273, 8282, 201272, 201274, 201275, 201276, 201277, 201278, 201279, 201280, 201281, 201282, 201283, 201284} },
{"Arcane Armor", {201286, 8283, 201285, 201287, 201288, 201289, 201290, 201291, 201292, 201293, 201294, 201295, 201296, 201297} },
{"Arcane Boots", {201299, 8284, 201298, 201300, 201301, 201302, 201303, 201304, 201305, 201306, 201307, 201308, 201309, 201310} },
{"Arcane Bands", {201312, 8285, 201311, 201313, 201314, 201316, 201317, 201318, 201319, 201320, 201321, 201322, 201323, 201324} },
{"Arcane Cloak", {201326, 8286, 201325, 201327, 201328, 201329, 201330, 201331, 201332, 201333, 201334, 201335, 201336, 201337} },
{"Arcane Gloves", {201339, 8287, 201338, 201340, 201341, 201342, 201343, 201344, 201345, 201346, 201347, 201348, 201349, 201350} },
{"Arcane Pads", {201352, 8288, 201351, 201353, 201354, 201355, 201356, 201357, 201358, 201359, 201360, 201361, 201362, 201363} },
{"Arcane Leggings", {201365, 8289, 201364, 201366, 201367, 201368, 201369, 201370, 201371, 201372, 201373, 201374, 201375, 201376} },
{"Arcane Robe", {201378, 8290, 201377, 201379, 201380, 201381, 201382, 201383, 201384, 201385, 201386, 201387, 201388, 201389} },
{"Arcane Sash", {201391, 8291, 201390, 201392, 201393, 201394, 201395, 201396, 201397, 201398, 201399, 201400, 201401, 201402} },
{"Arcane Cover", {201404, 8292, 201403, 201405, 201406, 201407, 201408, 201409, 201410, 201411, 201412, 201413, 201414, 201415} },
{"Traveler's Belt", {201417, 8293, 201416, 201418, 201419, 201420, 201421, 201422, 201423, 201424, 201425, 201426, 201427, 201428} },
{"Traveler's Boots", {201430, 8294, 201429, 201431, 201432, 201433, 201434, 201435, 201436, 201437, 201438, 201439, 201440, 201441} },
{"Traveler's Bracers", {201444, 8295, 201442, 201445, 201446, 201447, 201448, 201449, 201450, 201451, 201452, 201453, 201454, 201455} },
{"Traveler's Jerkin", {201457, 8296, 201456, 201458, 201459, 201460, 201461, 201462, 201463, 201464, 201465, 201466, 201467, 201468} },
{"Traveler's Cloak", {201470, 8297, 201469, 201471, 201472, 201473, 201474, 201475, 201476, 201477, 201478, 201479, 201480, 201481} },
{"Traveler's Gloves", {201483, 8298, 201482, 201484, 201485, 201486, 201487, 201488, 201489, 201490, 201491, 201492, 201493, 201494} },
{"Traveler's Helm", {201496, 8299, 201495, 201497, 201498, 201499, 201500, 201501, 201502, 201503, 201504, 201505, 201506, 201507} },
{"Traveler's Leggings", {201509, 8300, 201508, 201510, 201511, 201512, 201513, 201514, 201515, 201516, 201517, 201518, 201519, 201520} },
{"Traveler's Spaulders", {201522, 8301, 201521, 201523, 201524, 201525, 201526, 201527, 201528, 201529, 201530, 201531, 201532, 201533} },
{"Hero's Bracers", {201535, 8302, 201534, 201536, 201537, 201538, 201539, 201540, 201541, 201542, 201543, 201544, 201545, 201546} },
{"Hero's Breastplate", {201548, 8303, 201547, 201549, 201550, 201551, 201552, 201553, 201554, 201555, 201556, 201557, 201558, 201559} },
{"Hero's Cape", {201561, 8304, 201560, 201562, 201563, 201564, 201565, 201566, 201567, 201568, 201569, 201570, 201571, 201572} },
{"Hero's Gauntlets", {201574, 8305, 201573, 201575, 201576, 201577, 201578, 201579, 201580, 201581, 201582, 201583, 201584, 201585} },
{"Hero's Belt", {201587, 8306, 201586, 201588, 201589, 201590, 201591, 201592, 201593, 201594, 201595, 201596, 201597, 201598} },
{"Hero's Boots", {201600, 8307, 201599, 201601, 201602, 201603, 201604, 201605, 201606, 201608, 201609, 201610, 201611, 201612} },
{"Hero's Band", {201614, 8308, 201613, 201615, 201616, 201617, 201618, 201619, 201620, 201621, 201622, 201623, 201624, 201625} },
{"Hero's Leggings", {201627, 8309, 201626, 201628, 201629, 201630, 201631, 201632, 201633, 201634, 201635, 201636, 201637, 201638} },
{"Hero's Pauldrons", {201640, 8310, 201639, 201641, 201642, 201643, 201644, 201645, 201646, 201647, 201648, 201649, 201650, 201651} },
{"Alabaster Plate Vambraces", {201653, 8311, 201652, 201654, 201655, 201656, 201657, 201658, 201659, 201660, 201661, 201662, 201663, 201664} },
{"Alabaster Breastplate", {201666, 8312, 201665, 201667, 201668, 201669, 201670, 201671, 201672, 201673, 201674, 201675, 201676, 201677} },
{"Hero's Buckler", {201679, 8313, 201678, 201680, 201681, 201682, 201683, 201684, 201685, 201686, 201687, 201688, 201689, 201690} },
{"Alabaster Plate Gauntlets", {201692, 8314, 201691, 201693, 201694, 201695, 201696, 201697, 201698, 201699, 201700, 201701, 201702, 201703} },
{"Alabaster Plate Girdle", {201705, 8315, 201704, 201706, 201707, 201708, 201709, 201710, 201711, 201712, 201713, 201714, 201715, 201716} },
{"Alabaster Plate Greaves", {201718, 8316, 201717, 201719, 201720, 201722, 201723, 201724, 201725, 201726, 201727, 201729, 201730, 201731} },
{"Alabaster Plate Helmet", {201733, 8317, 201732, 201734, 201735, 201736, 201737, 201738, 201739, 201740, 201741, 201742, 201743, 201744} },
{"Alabaster Plate Leggings", {201746, 8318, 201745, 201747, 201748, 201749, 201750, 201751, 201752, 201753, 201754, 201755, 201756, 201757} },
{"Alabaster Plate Pauldrons", {201759, 8319, 201758, 201760, 201761, 201762, 201763, 201764, 201765, 201766, 201767, 201768, 201769, 201770} },
{"Alabaster Shield", {201772, 8320, 201771, 201773, 201774, 201775, 201776, 201777, 201778, 201779, 201780, 201781, 201782, 201783} },
{"Wolfshead Helm", {6008345, 8345, 201784, 201785, 201786, 201787, 201788, 201789, 201790, 201791, 201792, 201793, 201794, 201795} },
{"Gauntlets of the Sea", {6008346, 8346, 201796, 201797, 201798, 201799, 201800, 201801, 201802, 201803, 201804, 201805, 201806, 201807} },
{"Dragonscale Gauntlets", {6008347, 8347, 201808, 201809, 201810, 201811, 201812, 201813, 201814, 201815, 201816, 201817, 201818, 201819} },
{"Helm of Fire", {6008348, 8348, 201820, 201821, 201822, 201823, 201824, 201825, 201826, 201827, 201828, 201829, 201830, 201831} },
{"Feathered Breastplate", {6008349, 8349, 201832, 201833, 201834, 201835, 201836, 201837, 201838, 201839, 201840, 201841, 201842, 201843} },
{"Dragonscale Breastplate", {6008367, 8367, 201857, 201858, 201859, 201860, 201861, 201862, 201863, 201864, 201865, 201866, 201867, 201868} },
{"Hammer of Expertise", {6008708, 8708, 201895, 201896, 201897, 201898, 201899, 201900, 201901, 201902, 201903, 201904, 201905, 201906} },
{"Mallet of Zul'Farrak", {6009240, 9240, 201920, 201921, 201922, 201923, 201924, 201925, 201926, 201927, 201928, 201929, 201930, 201931} },
{"Wirt's Third Leg", {6009359, 9359, 202050, 202051, 202052, 202053, 202054, 202055, 202056, 202057, 202058, 202059, 202060, 202061} },
{"Sul'thraze the Lasher", {6009372, 9372, 202088, 202089, 202090, 202091, 202092, 202093, 202094, 202095, 202096, 202097, 202098, 202100} },
{"Sang'thraze the Deflector", {6009379, 9379, 202125, 202126, 202127, 202128, 202129, 202130, 202131, 202132, 202133, 202134, 202135, 202136} },
{"Jang'thraze the Protector", {6009380, 9380, 202137, 202138, 202139, 202140, 202141, 202142, 202143, 202144, 202145, 202146, 202147, 202148} },
{"Earthborn Kilt", {6009402, 9402, 309402, 209402, 1003000, 1010615, 1017283, 1023896, 1030460, 1037023, 1043586, 1050149, 1056712, 1063275} },
{"Cragfists", {6009410, 9410, 202481, 202482, 202483, 202484, 202485, 202486, 202487, 202488, 202489, 202490, 202491, 202492} },
{"Rockshard Pauldrons", {6009411, 9411, 202493, 202494, 202495, 202496, 202497, 202498, 202499, 202500, 202501, 202502, 202503, 202504} },
{"Galgann's Fireblaster", {6009412, 9412, 202505, 202506, 202507, 202508, 202509, 202510, 202511, 202512, 202513, 202514, 202515, 202516} },
{"The Rockpounder", {6009413, 9413, 202517, 202518, 202519, 202520, 202521, 202522, 202523, 202524, 202525, 202526, 202527, 202528} },
{"Oilskin Leggings", {6009414, 9414, 202529, 202530, 202531, 202532, 202533, 202534, 202535, 202536, 202537, 202538, 202539, 202540} },
{"Grimlok's Tribal Vestments", {6009415, 9415, 202541, 202542, 202543, 202544, 202545, 202546, 202547, 202548, 202549, 202550, 202551, 202552} },
{"Grimlok's Charge", {6009416, 9416, 202553, 202554, 202555, 202556, 202557, 202558, 202559, 202560, 202561, 202562, 202563, 202565} },
{"Archaedic Shard", {6009417, 9417, 202566, 202567, 202568, 202569, 202570, 202571, 202572, 202573, 202574, 202575, 202576, 202577} },
{"Stoneslayer", {6009418, 9418, 202578, 202579, 202580, 202581, 202582, 202583, 202584, 202585, 202586, 202587, 202588, 202589} },
{"Galgann's Firehammer", {6009419, 9419, 202590, 202591, 202592, 202593, 202594, 202595, 202596, 202597, 202598, 202599, 202600, 202601} },
{"The Jackhammer", {6009423, 9423, 202626, 202627, 202628, 202629, 202630, 202631, 202632, 202633, 202634, 202635, 202636, 202637} },
{"Spaulders of a Lost Age", {6009430, 9430, 202710, 202711, 202712, 202713, 202714, 202715, 202716, 202717, 202718, 202719, 202720, 202721} },
{"Forgotten Wraps", {6009433, 9433, 202746, 202747, 202748, 202749, 202750, 202751, 202752, 202753, 202754, 202755, 202756, 202757} },
{"Digmaster 5000", {6009465, 9465, 202968, 202969, 202970, 202971, 202972, 202973, 202974, 202975, 202976, 202977, 202978, 202979} },
{"Gahz'rilla Fang", {6009467, 9467, 202980, 202981, 202982, 202983, 202984, 202985, 202986, 202987, 202988, 202989, 202990, 202991} },
{"Gahz'rilla Scale Armor", {6009469, 9469, 202992, 202993, 202994, 202995, 202996, 202997, 202998, 202999, 203000, 203001, 203002, 203003} },
{"Bad Mojo Mask", {6009470, 9470, 203004, 203005, 203006, 203007, 203008, 203009, 203010, 203011, 203012, 203013, 203014, 203015} },
{"Jinxed Hoodoo Skin", {6009473, 9473, 203016, 203017, 203018, 203019, 203020, 203021, 203022, 203023, 203024, 203025, 203026, 203027} },
{"Jinxed Hoodoo Kilt", {6009474, 9474, 203028, 203029, 203030, 203031, 203032, 203033, 203034, 203035, 203036, 203037, 203038, 203039} },
{"Diabolic Skiver", {6009475, 9475, 203040, 203041, 203042, 203043, 203044, 203045, 203046, 203047, 203048, 203049, 203050, 203051} },
{"Big Bad Pauldrons", {6009476, 9476, 203052, 203053, 203054, 203055, 203056, 203057, 203058, 203059, 203060, 203061, 203062, 203063} },
{"The Chief's Enforcer", {6009477, 9477, 203064, 203065, 203066, 203067, 203068, 203069, 203070, 203071, 203072, 203073, 203074, 203076} },
{"Ripsaw", {6009478, 9478, 203077, 203078, 203079, 203080, 203081, 203082, 203083, 203084, 203085, 203086, 203087, 203088} },
{"Embrace of the Lycan", {6009479, 9479, 203089, 203090, 203091, 203092, 203093, 203094, 203095, 203096, 203097, 203098, 203099, 203100} },
{"Eyegouger", {6009480, 9480, 203101, 203102, 203103, 203104, 203105, 203106, 203107, 203108, 203109, 203110, 203111, 203112} },
{"The Minotaur", {6009481, 9481, 203113, 203114, 203115, 203116, 203117, 203118, 203119, 203120, 203121, 203122, 203123, 203124} },
{"Witch Doctor's Cane", {6009482, 9482, 203125, 203126, 203127, 203128, 203129, 203130, 203131, 203132, 203133, 203134, 203135, 203136} },
{"Flaming Incinerator", {6009483, 9483, 203137, 203138, 203139, 203140, 203141, 203142, 203143, 203144, 203145, 203146, 203147, 203148} },
{"Spellshock Leggings", {6009484, 9484, 203149, 203150, 203151, 203152, 203153, 203154, 203155, 203156, 203157, 203158, 203159, 203160} },
{"Bloodletter Scalpel", {6009511, 9511, 203294, 203295, 203296, 203297, 203298, 203299, 203300, 203301, 203302, 203303, 203304, 203305} },
{"Blackmetal Cape", {6009512, 9512, 203306, 203307, 203308, 203309, 203310, 203311, 203312, 203313, 203314, 203315, 203316, 203317} },
{"Masons Fraternity Ring", {6009533, 9533, 203474, 203476, 203477, 203478, 203479, 203480, 203481, 203482, 203483, 203484, 203485, 203486} },
{"Engineer's Guild Headpiece", {6009534, 9534, 203487, 203488, 203489, 203490, 203491, 203492, 203493, 203494, 203495, 203496, 203497, 203498} },
{"The Hand of Antu'sul", {6009639, 9639, 203863, 203864, 203865, 203866, 203867, 203868, 203869, 203870, 203871, 203872, 203873, 203874} },
{"Vice Grips", {6009640, 9640, 203875, 203876, 203877, 203878, 203879, 203880, 203881, 203882, 203883, 203884, 203885, 203886} },
{"Lifeblood Amulet", {6009641, 9641, 203887, 203888, 203889, 203890, 203891, 203892, 203893, 203894, 203895, 203896, 203897, 203898} },
{"Optomatic Deflector", {203913, 9643, 203912, 203914, 203915, 203916, 203917, 203918, 203919, 203920, 203921, 203922, 203923, 203924} },
{"Thermotastic Egg Timer", {203926, 9644, 203925, 203927, 203928, 203929, 203930, 203931, 203932, 203933, 203934, 203935, 203936, 203937} },
{"Gnomish Inventor Boots", {203939, 9645, 203938, 203940, 203941, 203942, 203943, 203944, 203945, 203946, 203947, 203948, 203949, 203950} },
{"Gnomish Water Sinking Device", {203952, 9646, 203951, 203953, 203954, 203955, 203956, 203957, 203958, 203959, 203960, 203961, 203962, 203963} },
{"Royal Highmark Vestments", {6009649, 9649, 203990, 203991, 203992, 203993, 203994, 203995, 203996, 203997, 203998, 203999, 204000, 204001} },
{"Honorguard Chestpiece", {6009650, 9650, 204002, 204003, 204004, 204005, 204006, 204007, 204008, 204009, 204010, 204011, 204012, 204013} },
{"Gryphon Rider's Stormhammer", {6009651, 9651, 204014, 204015, 204016, 204017, 204018, 204019, 204020, 204021, 204022, 204023, 204024, 204025} },
{"Gryphon Rider's Leggings", {6009652, 9652, 204026, 204027, 204028, 204029, 204030, 204031, 204032, 204033, 204034, 204035, 204036, 204037} },
{"Cairnstone Sliver", {204052, 9654, 204051, 204053, 204054, 204055, 204056, 204057, 204058, 204059, 204060, 204061, 204062, 204063} },
{"Seedtime Hoop", {204065, 9655, 204064, 204066, 204067, 204068, 204069, 204070, 204071, 204072, 204073, 204074, 204075, 204076} },
{"Granite Grips", {204078, 9656, 204077, 204079, 204080, 204081, 204082, 204083, 204084, 204085, 204086, 204087, 204088, 204089} },
{"Vinehedge Cinch", {204091, 9657, 204090, 204092, 204093, 204094, 204095, 204096, 204097, 204098, 204099, 204100, 204101, 204102} },
{"Wingcrest Gloves", {204182, 9665, 204181, 204183, 204184, 204185, 204186, 204187, 204188, 204189, 204190, 204191, 204192, 204193} },
{"Stronghorn Girdle", {204195, 9666, 204194, 204196, 204197, 204198, 204199, 204200, 204201, 204202, 204203, 204204, 204205, 204206} },
{"Strength of the Treant", {6009683, 9683, 204259, 204260, 204261, 204262, 204263, 204264, 204265, 204266, 204267, 204268, 204269, 204270} },
{"Force of the Hippogryph", {6009684, 9684, 204271, 204272, 204273, 204274, 204275, 204276, 204277, 204278, 204279, 204280, 204281, 204282} },
{"Will of the Mountain Giant", {204284, 9685, 204283, 204285, 204286, 204287, 204288, 204289, 204290, 204291, 204292, 204293, 204294, 204295} },
{"Spirit of the Faerie Dragon", {6009686, 9686, 204296, 204297, 204298, 204299, 204300, 204301, 204302, 204303, 204304, 204305, 204306, 204307} },
{"Royal Blouse", {206354, 9905, 206353, 206355, 206356, 206357, 206358, 206359, 206360, 206361, 206362, 206363, 206364, 206365} },
{"Royal Trousers", {206432, 9911, 206431, 206433, 206434, 206435, 206436, 206437, 206438, 206439, 206440, 206441, 206442, 206443} },
{"Royal Gown", {206458, 9913, 206457, 206459, 206460, 206461, 206462, 206463, 206464, 206465, 206466, 206467, 206468, 206469} },
{"Royal Scepter", {206471, 9914, 206470, 206472, 206473, 206474, 206475, 206476, 206477, 206478, 206479, 206480, 206481, 206482} },
{"Tracker's Leggings", {206564, 9922, 206563, 206565, 206566, 206567, 206568, 206569, 206570, 206571, 206572, 206573, 206574, 206575} },
{"Tracker's Tunic", {206590, 9924, 206589, 206591, 206592, 206593, 206594, 206595, 206596, 206597, 206598, 206599, 206600, 206601} },
{"Abjurer's Boots", {206773, 9936, 206772, 206774, 206775, 206776, 206777, 206778, 206779, 206780, 206781, 206782, 206783, 206784} },
{"Abjurer's Bands", {206786, 9937, 206785, 206787, 206788, 206789, 206790, 206791, 206792, 206793, 206794, 206795, 206796, 206797} },
{"Abjurer's Cloak", {206799, 9938, 206798, 206800, 206801, 206802, 206803, 206804, 206805, 206806, 206807, 206808, 206809, 206810} },
{"Abjurer's Gloves", {206812, 9939, 206811, 206813, 206814, 206815, 206816, 206817, 206818, 206819, 206820, 206821, 206822, 206823} },
{"Abjurer's Hood", {206825, 9940, 206824, 206826, 206827, 206828, 206829, 206830, 206831, 206832, 206833, 206834, 206835, 206836} },
{"Abjurer's Mantle", {206838, 9941, 206837, 206839, 206840, 206841, 206842, 206843, 206844, 206845, 206846, 206847, 206848, 206849} },
{"Abjurer's Pants", {206851, 9942, 206850, 206852, 206853, 206854, 206855, 206856, 206857, 206858, 206859, 206860, 206861, 206862} },
{"Abjurer's Robe", {206864, 9943, 206863, 206865, 206866, 206867, 206868, 206869, 206870, 206871, 206872, 206873, 206874, 206875} },
{"Abjurer's Crystal", {206877, 9944, 206876, 206878, 206879, 206880, 206881, 206882, 206883, 206884, 206885, 206886, 206887, 206888} },
{"Abjurer's Sash", {206890, 9945, 206889, 206891, 206892, 206893, 206894, 206895, 206896, 206897, 206898, 206899, 206900, 206901} },
{"Abjurer's Tunic", {206903, 9946, 206902, 206904, 206905, 206906, 206907, 206908, 206909, 206910, 206911, 206912, 206913, 206914} },
{"Chieftain's Belt", {206916, 9947, 206915, 206917, 206918, 206919, 206920, 206921, 206922, 206923, 206924, 206925, 206926, 206927} },
{"Chieftain's Boots", {206929, 9948, 206928, 206930, 206931, 206932, 206933, 206934, 206935, 206936, 206937, 206938, 206939, 206940} },
{"Chieftain's Bracers", {206942, 9949, 206941, 206943, 206944, 206945, 206946, 206947, 206948, 206949, 206950, 206951, 206952, 206953} },
{"Chieftain's Breastplate", {206955, 9950, 206954, 206956, 206957, 206958, 206959, 206960, 206961, 206962, 206963, 206964, 206965, 206966} },
{"Chieftain's Cloak", {206968, 9951, 206967, 206969, 206970, 206971, 206972, 206973, 206974, 206975, 206976, 206977, 206978, 206979} },
{"Chieftain's Gloves", {206981, 9952, 206980, 206982, 206983, 206984, 206985, 206986, 206987, 206988, 206989, 206990, 206991, 206992} },
{"Chieftain's Headdress", {206994, 9953, 206993, 206995, 206996, 206997, 206998, 206999, 207000, 207001, 207002, 207003, 207004, 207005} },
{"Chieftain's Leggings", {207007, 9954, 207006, 207008, 207009, 207010, 207011, 207012, 207013, 207014, 207015, 207016, 207017, 207018} },
{"Chieftain's Shoulders", {207020, 9955, 207019, 207021, 207022, 207023, 207024, 207025, 207026, 207027, 207028, 207029, 207030, 207031} },
{"Warmonger's Bracers", {207033, 9956, 207032, 207034, 207035, 207036, 207037, 207038, 207039, 207040, 207041, 207042, 207043, 207044} },
{"Warmonger's Chestpiece", {207046, 9957, 207045, 207047, 207048, 207049, 207050, 207051, 207052, 207053, 207054, 207055, 207056, 207057} },
{"Warmonger's Buckler", {207059, 9958, 207058, 207060, 207061, 207062, 207063, 207064, 207065, 207066, 207067, 207068, 207069, 207070} },
{"Warmonger's Gauntlets", {207085, 9960, 207084, 207086, 207087, 207088, 207089, 207090, 207091, 207092, 207093, 207094, 207095, 207096} },
{"Warmonger's Belt", {207098, 9961, 207097, 207099, 207100, 207101, 207102, 207103, 207104, 207105, 207106, 207107, 207108, 207109} },
{"Warmonger's Greaves", {207111, 9962, 207110, 207112, 207113, 207114, 207115, 207116, 207117, 207118, 207119, 207120, 207121, 207122} },
{"Warmonger's Circlet", {207124, 9963, 207123, 207125, 207126, 207127, 207128, 207129, 207130, 207131, 207132, 207133, 207134, 207135} },
{"Warmonger's Leggings", {207137, 9964, 207136, 207138, 207139, 207140, 207141, 207142, 207143, 207144, 207145, 207146, 207147, 207148} },
{"Warmonger's Pauldrons", {207150, 9965, 207149, 207151, 207152, 207153, 207154, 207155, 207156, 207157, 207158, 207159, 207160, 207161} },
{"Overlord's Shield", {207267, 9974, 207266, 207268, 207269, 207270, 207271, 207272, 207273, 207274, 207275, 207276, 207277, 207278} },
{"Dreamweave Gloves", {6010019, 10019, 207435, 207436, 207437, 207438, 207439, 207440, 207441, 207442, 207443, 207444, 207445, 207446} },
{"Dreamweave Vest", {6010021, 10021, 207460, 207461, 207462, 207463, 207464, 207465, 207466, 207467, 207468, 207469, 207470, 207471} },
{"Black Mageweave Headband", {207486, 10024, 207485, 207487, 207488, 207489, 207490, 207491, 207492, 207493, 207494, 207495, 207496, 207497} },
{"Shadoweave Mask", {207499, 10025, 207498, 207500, 207501, 207502, 207503, 207504, 207505, 207506, 207507, 207508, 207509, 207510} },
{"Black Mageweave Boots", {207512, 10026, 207511, 207513, 207514, 207515, 207516, 207517, 207518, 207519, 207520, 207521, 207522, 207523} },
{"Black Mageweave Shoulders", {207525, 10027, 207524, 207526, 207527, 207528, 207529, 207530, 207531, 207532, 207533, 207534, 207535, 207536} },
{"Shadoweave Shoulders", {207538, 10028, 207537, 207539, 207540, 207541, 207542, 207543, 207544, 207545, 207546, 207547, 207548, 207549} },
{"Red Mageweave Shoulders", {207551, 10029, 207550, 207552, 207553, 207554, 207555, 207556, 207557, 207558, 207559, 207560, 207561, 207562} },
{"Admiral's Hat", {207564, 10030, 207563, 207565, 207566, 207567, 207568, 207569, 207570, 207571, 207572, 207573, 207574, 207575} },
{"Shadoweave Boots", {207577, 10031, 207576, 207578, 207579, 207580, 207581, 207582, 207583, 207584, 207585, 207586, 207587, 207588} },
{"Stormcloth Headband", {207590, 10032, 207589, 207591, 207592, 207593, 207594, 207595, 207596, 207597, 207598, 207599, 207600, 207601} },
{"Red Mageweave Headband", {207603, 10033, 207602, 207604, 207605, 207606, 207607, 207608, 207609, 207610, 207611, 207612, 207613, 207614} },
{"Stormcloth Shoulders", {207616, 10038, 207615, 207617, 207618, 207619, 207620, 207621, 207622, 207623, 207624, 207625, 207626, 207627} },
{"Stormcloth Boots", {207629, 10039, 207628, 207630, 207631, 207632, 207633, 207634, 207635, 207636, 207637, 207638, 207639, 207640} },
{"Dreamweave Circlet", {6010041, 10041, 207641, 207642, 207643, 207644, 207645, 207646, 207647, 207648, 207649, 207650, 207651, 207652} },
{"Cindercloth Boots", {207680, 10044, 207679, 207681, 207682, 207683, 207684, 207685, 207686, 207687, 207688, 207689, 207690, 207691} },
{"Duskwoven Tunic", {207732, 10057, 207731, 207733, 207735, 207736, 207737, 207738, 207739, 207740, 207741, 207742, 207743, 207744} },
{"Duskwoven Sandals", {207746, 10058, 207745, 207747, 207748, 207749, 207750, 207751, 207752, 207753, 207754, 207755, 207756, 207757} },
{"Duskwoven Bracers", {207759, 10059, 207758, 207760, 207761, 207762, 207763, 207764, 207765, 207766, 207767, 207768, 207769, 207770} },
{"Duskwoven Cape", {207772, 10060, 207771, 207773, 207774, 207775, 207776, 207777, 207778, 207779, 207780, 207781, 207782, 207783} },
{"Duskwoven Turban", {207785, 10061, 207784, 207786, 207787, 207788, 207789, 207790, 207791, 207792, 207793, 207794, 207795, 207796} },
{"Duskwoven Gloves", {207798, 10062, 207797, 207799, 207800, 207801, 207802, 207803, 207804, 207805, 207806, 207807, 207808, 207809} },
{"Duskwoven Amice", {207811, 10063, 207810, 207812, 207813, 207814, 207815, 207816, 207817, 207818, 207819, 207820, 207821, 207822} },
{"Duskwoven Pants", {207824, 10064, 207823, 207825, 207826, 207827, 207828, 207829, 207830, 207831, 207832, 207833, 207834, 207835} },
{"Duskwoven Robe", {207837, 10065, 207836, 207838, 207839, 207840, 207841, 207842, 207843, 207844, 207845, 207846, 207847, 207848} },
{"Duskwoven Sash", {207850, 10066, 207849, 207851, 207852, 207853, 207854, 207855, 207856, 207857, 207858, 207859, 207860, 207861} },
{"Righteous Waistguard", {207863, 10067, 207862, 207864, 207865, 207866, 207867, 207868, 207869, 207870, 207871, 207872, 207873, 207874} },
{"Righteous Boots", {207876, 10068, 207875, 207877, 207878, 207879, 207880, 207881, 207882, 207883, 207884, 207885, 207886, 207887} },
{"Righteous Bracers", {207889, 10069, 207888, 207890, 207891, 207892, 207893, 207894, 207895, 207896, 207897, 207898, 207899, 207900} },
{"Righteous Armor", {207902, 10070, 207901, 207903, 207904, 207905, 207906, 207907, 207908, 207909, 207910, 207911, 207912, 207913} },
{"Righteous Cloak", {207915, 10071, 207914, 207916, 207917, 207918, 207919, 207920, 207921, 207922, 207923, 207924, 207925, 207926} },
{"Righteous Gloves", {207928, 10072, 207927, 207929, 207930, 207931, 207932, 207933, 207934, 207935, 207936, 207937, 207938, 207939} },
{"Righteous Helmet", {207941, 10073, 207940, 207942, 207943, 207944, 207945, 207946, 207947, 207948, 207949, 207950, 207951, 207952} },
{"Righteous Leggings", {207954, 10074, 207953, 207955, 207956, 207957, 207958, 207959, 207960, 207961, 207962, 207963, 207964, 207965} },
{"Righteous Spaulders", {207967, 10075, 207966, 207968, 207969, 207970, 207971, 207972, 207973, 207974, 207975, 207976, 207977, 207978} },
{"Lord's Armguards", {207980, 10076, 207979, 207981, 207982, 207983, 207984, 207985, 207986, 207987, 207988, 207989, 207990, 207991} },
{"Lord's Breastplate", {207993, 10077, 207992, 207994, 207995, 207996, 207997, 207998, 207999, 208000, 208001, 208002, 208003, 208004} },
{"Lord's Crest", {208006, 10078, 208005, 208007, 208008, 208009, 208010, 208011, 208012, 208013, 208014, 208015, 208016, 208017} },
{"Lord's Cape", {208019, 10079, 208018, 208020, 208021, 208022, 208023, 208024, 208025, 208026, 208027, 208028, 208029, 208030} },
{"Lord's Gauntlets", {208032, 10080, 208031, 208033, 208034, 208035, 208036, 208037, 208038, 208039, 208040, 208041, 208042, 208043} },
{"Lord's Girdle", {208045, 10081, 208044, 208046, 208047, 208048, 208049, 208050, 208051, 208052, 208053, 208054, 208055, 208056} },
{"Lord's Boots", {208058, 10082, 208057, 208059, 208060, 208061, 208062, 208063, 208064, 208065, 208066, 208067, 208068, 208069} },
{"Lord's Crown", {208071, 10083, 208070, 208072, 208073, 208074, 208075, 208076, 208077, 208078, 208079, 208080, 208081, 208082} },
{"Lord's Legguards", {208084, 10084, 208083, 208085, 208086, 208087, 208088, 208089, 208090, 208091, 208092, 208093, 208094, 208095} },
{"Lord's Pauldrons", {208097, 10085, 208096, 208098, 208099, 208100, 208101, 208102, 208103, 208104, 208105, 208106, 208107, 208108} },
{"Gothic Plate Armor", {208110, 10086, 208109, 208111, 208112, 208113, 208114, 208115, 208116, 208117, 208118, 208119, 208120, 208121} },
{"Gothic Plate Gauntlets", {208123, 10087, 208122, 208124, 208125, 208126, 208127, 208128, 208129, 208130, 208131, 208132, 208133, 208134} },
{"Gothic Plate Helmet", {208162, 10090, 208161, 208163, 208164, 208165, 208166, 208167, 208168, 208169, 208170, 208171, 208172, 208173} },
{"Gothic Plate Leggings", {208175, 10091, 208174, 208176, 208177, 208178, 208179, 208180, 208181, 208182, 208183, 208184, 208185, 208186} },
{"Gothic Plate Spaulders", {208188, 10092, 208187, 208189, 208191, 208192, 208193, 208194, 208195, 208196, 208197, 208198, 208199, 208200} },
{"Revenant Deflector", {208202, 10093, 208201, 208203, 208204, 208205, 208206, 208207, 208208, 208209, 208210, 208211, 208212, 208213} },
{"Councillor's Boots", {208228, 10095, 208227, 208229, 208230, 208231, 208232, 208233, 208234, 208235, 208236, 208237, 208238, 208239} },
{"Councillor's Cuffs", {208241, 10096, 208240, 208242, 208243, 208244, 208245, 208246, 208247, 208248, 208249, 208250, 208251, 208252} },
{"Councillor's Circlet", {208254, 10097, 208253, 208255, 208256, 208257, 208258, 208259, 208260, 208261, 208262, 208263, 208264, 208265} },
{"Councillor's Cloak", {208267, 10098, 208266, 208268, 208269, 208270, 208271, 208272, 208273, 208274, 208275, 208276, 208277, 208278} },
{"Councillor's Gloves", {208280, 10099, 208279, 208281, 208282, 208283, 208284, 208285, 208286, 208287, 208288, 208289, 208290, 208291} },
{"Councillor's Shoulders", {208293, 10100, 208292, 208294, 208295, 208296, 208297, 208298, 208299, 208300, 208301, 208302, 208303, 208304} },
{"Councillor's Pants", {208306, 10101, 208305, 208307, 208308, 208309, 208310, 208311, 208312, 208313, 208314, 208315, 208316, 208317} },
{"Councillor's Robes", {208319, 10102, 208318, 208320, 208321, 208322, 208323, 208324, 208325, 208326, 208327, 208328, 208329, 208330} },
{"Councillor's Sash", {208332, 10103, 208331, 208333, 208334, 208335, 208336, 208337, 208338, 208339, 208340, 208341, 208342, 208343} },
{"Councillor's Tunic", {208345, 10104, 208344, 208346, 208347, 208348, 208349, 208350, 208351, 208352, 208353, 208354, 208355, 208356} },
{"Wanderer's Armor", {208358, 10105, 208357, 208359, 208360, 208361, 208362, 208363, 208364, 208365, 208366, 208367, 208368, 208369} },
{"Wanderer's Boots", {208371, 10106, 208370, 208372, 208373, 208374, 208375, 208376, 208377, 208378, 208379, 208380, 208381, 208382} },
{"Wanderer's Bracers", {208384, 10107, 208383, 208385, 208386, 208387, 208388, 208389, 208390, 208391, 208392, 208393, 208394, 208395} },
{"Wanderer's Cloak", {208397, 10108, 208396, 208398, 208399, 208400, 208401, 208402, 208403, 208404, 208405, 208406, 208407, 208408} },
{"Wanderer's Belt", {208410, 10109, 208409, 208411, 208412, 208413, 208414, 208415, 208416, 208417, 208418, 208419, 208420, 208421} },
{"Wanderer's Gloves", {208423, 10110, 208422, 208424, 208425, 208426, 208427, 208428, 208429, 208430, 208431, 208432, 208433, 208434} },
{"Wanderer's Hat", {208436, 10111, 208435, 208437, 208438, 208439, 208440, 208441, 208442, 208443, 208444, 208445, 208446, 208447} },
{"Wanderer's Leggings", {208449, 10112, 208448, 208450, 208451, 208452, 208453, 208454, 208455, 208456, 208457, 208458, 208459, 208460} },
{"Wanderer's Shoulders", {208462, 10113, 208461, 208463, 208464, 208465, 208466, 208467, 208468, 208469, 208470, 208471, 208472, 208473} },
{"Ornate Breastplate", {208475, 10118, 208474, 208476, 208477, 208478, 208479, 208480, 208481, 208482, 208483, 208484, 208485, 208486} },
{"Ornate Greaves", {208488, 10119, 208487, 208489, 208490, 208491, 208492, 208493, 208494, 208495, 208496, 208497, 208498, 208499} },
{"Ornate Cloak", {208501, 10120, 208500, 208502, 208503, 208504, 208505, 208506, 208507, 208508, 208509, 208510, 208511, 208512} },
{"Ornate Gauntlets", {208514, 10121, 208513, 208515, 208516, 208517, 208518, 208519, 208520, 208521, 208522, 208523, 208524, 208525} },
{"Ornate Girdle", {208527, 10122, 208526, 208528, 208529, 208530, 208531, 208532, 208533, 208534, 208535, 208536, 208537, 208538} },
{"Ornate Circlet", {208540, 10123, 208539, 208541, 208542, 208543, 208544, 208545, 208546, 208547, 208548, 208549, 208550, 208551} },
{"Ornate Legguards", {208553, 10124, 208552, 208554, 208555, 208556, 208557, 208558, 208559, 208560, 208561, 208562, 208563, 208564} },
{"Ornate Pauldrons", {208566, 10125, 208565, 208567, 208568, 208569, 208570, 208571, 208572, 208573, 208574, 208575, 208576, 208577} },
{"Ornate Bracers", {208579, 10126, 208578, 208580, 208581, 208582, 208583, 208584, 208585, 208586, 208587, 208588, 208589, 208590} },
{"Revenant Bracers", {208592, 10127, 208591, 208593, 208594, 208595, 208596, 208597, 208598, 208599, 208600, 208601, 208602, 208603} },
{"Revenant Chestplate", {208605, 10128, 208604, 208606, 208607, 208608, 208609, 208610, 208611, 208612, 208613, 208614, 208615, 208616} },
{"Revenant Gauntlets", {208618, 10129, 208617, 208619, 208620, 208621, 208622, 208623, 208624, 208625, 208626, 208627, 208628, 208629} },
{"Revenant Girdle", {208631, 10130, 208630, 208632, 208633, 208634, 208635, 208636, 208637, 208638, 208639, 208640, 208641, 208642} },
{"Revenant Boots", {208644, 10131, 208643, 208645, 208646, 208647, 208648, 208649, 208650, 208651, 208652, 208653, 208654, 208655} },
{"Revenant Helmet", {208657, 10132, 208656, 208658, 208659, 208660, 208661, 208662, 208663, 208664, 208665, 208666, 208667, 208668} },
{"Revenant Leggings", {208670, 10133, 208669, 208671, 208672, 208673, 208674, 208675, 208676, 208677, 208678, 208679, 208680, 208681} },
{"Revenant Shoulders", {208683, 10134, 208682, 208684, 208685, 208686, 208687, 208688, 208689, 208690, 208691, 208692, 208693, 208694} },
{"High Councillor's Tunic", {208696, 10135, 208695, 208697, 208698, 208699, 208700, 208701, 208702, 208703, 208704, 208705, 208706, 208707} },
{"High Councillor's Bracers", {208709, 10136, 208708, 208710, 208711, 208712, 208713, 208714, 208715, 208716, 208717, 208718, 208719, 208720} },
{"High Councillor's Boots", {208722, 10137, 208721, 208723, 208724, 208725, 208726, 208727, 208728, 208729, 208730, 208731, 208732, 208733} },
{"High Councillor's Cloak", {208735, 10138, 208734, 208736, 208737, 208738, 208739, 208740, 208741, 208742, 208743, 208744, 208745, 208746} },
{"High Councillor's Circlet", {208748, 10139, 208747, 208749, 208750, 208751, 208752, 208753, 208754, 208755, 208756, 208757, 208758, 208759} },
{"High Councillor's Gloves", {208761, 10140, 208760, 208762, 208763, 208764, 208765, 208766, 208767, 208768, 208769, 208770, 208771, 208772} },
{"High Councillor's Pants", {208774, 10141, 208773, 208775, 208776, 208777, 208778, 208779, 208780, 208781, 208782, 208783, 208784, 208785} },
{"High Councillor's Mantle", {208787, 10142, 208786, 208788, 208789, 208790, 208791, 208792, 208793, 208794, 208795, 208796, 208797, 208798} },
{"High Councillor's Robe", {208800, 10143, 208799, 208801, 208802, 208803, 208804, 208805, 208806, 208807, 208808, 208809, 208810, 208811} },
{"High Councillor's Sash", {208813, 10144, 208812, 208814, 208815, 208816, 208817, 208818, 208819, 208820, 208821, 208822, 208823, 208824} },
{"Mighty Girdle", {208826, 10145, 208825, 208827, 208828, 208829, 208830, 208831, 208832, 208833, 208834, 208835, 208836, 208837} },
{"Mighty Boots", {208839, 10146, 208838, 208840, 208841, 208842, 208843, 208844, 208845, 208846, 208847, 208848, 208849, 208850} },
{"Mighty Armsplints", {208852, 10147, 208851, 208853, 208854, 208855, 208856, 208857, 208858, 208859, 208860, 208861, 208862, 208863} },
{"Mighty Cloak", {208865, 10148, 208864, 208866, 208867, 208868, 208869, 208870, 208871, 208872, 208873, 208874, 208875, 208876} },
{"Mighty Gauntlets", {208878, 10149, 208877, 208879, 208880, 208881, 208882, 208883, 208884, 208885, 208886, 208887, 208888, 208889} },
{"Mighty Helmet", {208891, 10150, 208890, 208892, 208893, 208894, 208895, 208896, 208897, 208898, 208899, 208900, 208901, 208902} },
{"Mighty Tunic", {208904, 10151, 208903, 208905, 208906, 208907, 208908, 208909, 208910, 208911, 208912, 208913, 208914, 208915} },
{"Mighty Leggings", {208917, 10152, 208916, 208918, 208919, 208920, 208921, 208922, 208923, 208924, 208925, 208926, 208927, 208928} },
{"Mighty Spaulders", {208930, 10153, 208929, 208931, 208932, 208933, 208934, 208935, 208936, 208937, 208938, 208939, 208940, 208941} },
{"Mercurial Girdle", {208943, 10154, 208942, 208944, 208945, 208946, 208947, 208948, 208949, 208950, 208951, 208952, 208953, 208954} },
{"Mercurial Greaves", {208956, 10155, 208955, 208957, 208958, 208959, 208960, 208961, 208962, 208963, 208964, 208965, 208966, 208967} },
{"Mercurial Bracers", {208969, 10156, 208968, 208970, 208971, 208972, 208973, 208974, 208975, 208976, 208977, 208978, 208979, 208980} },
{"Mercurial Breastplate", {208982, 10157, 208981, 208983, 208984, 208985, 208986, 208987, 208988, 208989, 208990, 208991, 208992, 208993} },
{"Mercurial Guard", {208995, 10158, 208994, 208996, 208997, 208998, 208999, 209000, 209001, 209002, 209003, 209004, 209005, 209006} },
{"Mercurial Cloak", {209008, 10159, 209007, 209009, 209010, 209011, 209012, 209013, 209014, 209015, 209016, 209017, 209018, 209019} },
{"Mercurial Circlet", {209021, 10160, 209020, 209022, 209023, 209024, 209025, 209026, 209027, 209028, 209029, 209030, 209031, 209032} },
{"Mercurial Gauntlets", {209034, 10161, 209033, 209035, 209036, 209037, 209038, 209039, 209040, 209041, 209042, 209043, 209044, 209045} },
{"Mercurial Legguards", {209047, 10162, 209046, 209048, 209049, 209050, 209051, 209052, 209053, 209054, 209055, 209056, 209057, 209058} },
{"Mercurial Pauldrons", {209060, 10163, 209059, 209061, 209062, 209063, 209064, 209065, 209066, 209067, 209068, 209069, 209070, 209071} },
{"Templar Chestplate", {209073, 10164, 209072, 209074, 209075, 209076, 209077, 209078, 209079, 209080, 209081, 209082, 209083, 209084} },
{"Templar Gauntlets", {209086, 10165, 209085, 209087, 209088, 209089, 209090, 209091, 209092, 209093, 209094, 209095, 209096, 209097} },
{"Templar Girdle", {209099, 10166, 209098, 209100, 209101, 209102, 209103, 209104, 209105, 209106, 209107, 209108, 209109, 209110} },
{"Templar Boots", {209112, 10167, 209111, 209113, 209114, 209115, 209116, 209117, 209118, 209119, 209120, 209121, 209122, 209123} },
{"Templar Crown", {209125, 10168, 209124, 209126, 209127, 209128, 209129, 209130, 209131, 209132, 209133, 209134, 209135, 209136} },
{"Templar Legplates", {209138, 10169, 209137, 209139, 209140, 209141, 209142, 209143, 209144, 209145, 209146, 209147, 209148, 209149} },
{"Templar Pauldrons", {209151, 10170, 209150, 209152, 209153, 209154, 209155, 209156, 209157, 209158, 209159, 209160, 209161, 209162} },
{"Templar Bracers", {209164, 10171, 209163, 209165, 209166, 209167, 209168, 209169, 209170, 209171, 209172, 209173, 209174, 209175} },
{"Mystical Mantle", {209177, 10172, 209176, 209178, 209179, 209180, 209181, 209182, 209183, 209184, 209185, 209186, 209187, 209188} },
{"Mystical Bracers", {209190, 10173, 209189, 209191, 209192, 209193, 209194, 209195, 209196, 209197, 209198, 209199, 209200, 209201} },
{"Mystical Cape", {209203, 10174, 209202, 209204, 209205, 209206, 209207, 209208, 209209, 209210, 209211, 209212, 209213, 209214} },
{"Mystical Headwrap", {209216, 10175, 209215, 209217, 209218, 209219, 209220, 209221, 209222, 209223, 209224, 209225, 209226, 209227} },
{"Mystical Gloves", {209229, 10176, 209228, 209230, 209231, 209232, 209233, 209234, 209235, 209236, 209237, 209238, 209239, 209240} },
{"Mystical Leggings", {209242, 10177, 209241, 209243, 209244, 209245, 209246, 209247, 209248, 209249, 209250, 209251, 209252, 209253} },
{"Mystical Robe", {209255, 10178, 209254, 209256, 209257, 209258, 209259, 209260, 209261, 209262, 209263, 209264, 209265, 209266} },
{"Mystical Boots", {209268, 10179, 209267, 209269, 209270, 209271, 209272, 209273, 209274, 209275, 209276, 209277, 209278, 209279} },
{"Mystical Belt", {209281, 10180, 209280, 209282, 209283, 209284, 209285, 209286, 209287, 209288, 209289, 209290, 209291, 209292} },
{"Mystical Armor", {209294, 10181, 209293, 209295, 209296, 209297, 209298, 209299, 209300, 209301, 209302, 209303, 209304, 209305} },
{"Swashbuckler's Breastplate", {209307, 10182, 209306, 209308, 209309, 209310, 209311, 209312, 209313, 209314, 209315, 209316, 209317, 209318} },
{"Swashbuckler's Boots", {209320, 10183, 209319, 209321, 209322, 209323, 209324, 209325, 209326, 209327, 209328, 209329, 209330, 209331} },
{"Swashbuckler's Bracers", {209333, 10184, 209332, 209334, 209335, 209336, 209337, 209338, 209339, 209340, 209341, 209342, 209343, 209344} },
{"Swashbuckler's Cape", {209346, 10185, 209345, 209347, 209348, 209349, 209350, 209351, 209352, 209353, 209354, 209355, 209356, 209357} },
{"Swashbuckler's Gloves", {209359, 10186, 209358, 209360, 209361, 209362, 209363, 209364, 209365, 209366, 209367, 209368, 209369, 209370} },
{"Swashbuckler's Eyepatch", {209372, 10187, 209371, 209373, 209374, 209375, 209376, 209377, 209378, 209379, 209380, 209381, 209382, 209383} },
{"Swashbuckler's Leggings", {209385, 10188, 209384, 209386, 209387, 209388, 209389, 209390, 209391, 209392, 209393, 209394, 209395, 209396} },
{"Swashbuckler's Shoulderpads", {209398, 10189, 209397, 209399, 209400, 209401, 209403, 209404, 209405, 209406, 209407, 209408, 209409, 209410} },
{"Swashbuckler's Belt", {209412, 10190, 209411, 209413, 209414, 209415, 209416, 209417, 209418, 209419, 209420, 209421, 209422, 209423} },
{"Crusader's Armguards", {209425, 10191, 209424, 209426, 209427, 209428, 209429, 209430, 209431, 209432, 209433, 209434, 209435, 209436} },
{"Crusader's Boots", {209438, 10192, 209437, 209439, 209440, 209441, 209442, 209443, 209444, 209445, 209446, 209447, 209448, 209449} },
{"Crusader's Armor", {209451, 10193, 209450, 209452, 209453, 209454, 209455, 209456, 209457, 209458, 209459, 209460, 209461, 209462} },
{"Crusader's Cloak", {209464, 10194, 209463, 209465, 209466, 209467, 209468, 209469, 209470, 209471, 209472, 209473, 209474, 209475} },
{"Crusader's Shield", {209477, 10195, 209476, 209478, 209479, 209480, 209481, 209482, 209483, 209484, 209485, 209486, 209487, 209488} },
{"Crusader's Gauntlets", {209490, 10196, 209489, 209491, 209492, 209493, 209494, 209495, 209496, 209497, 209498, 209499, 209500, 209501} },
{"Crusader's Belt", {209503, 10197, 209502, 209504, 209505, 209506, 209507, 209508, 209509, 209510, 209511, 209512, 209513, 209514} },
{"Crusader's Helm", {209516, 10198, 209515, 209517, 209518, 209519, 209520, 209521, 209522, 209523, 209524, 209525, 209526, 209527} },
{"Crusader's Leggings", {209529, 10199, 209528, 209530, 209531, 209532, 209533, 209534, 209535, 209536, 209537, 209538, 209539, 209540} },
{"Crusader's Pauldrons", {209542, 10200, 209541, 209543, 209544, 209545, 209546, 209547, 209548, 209549, 209550, 209551, 209552, 209553} },
{"Overlord's Greaves", {209555, 10201, 209554, 209556, 209557, 209558, 209559, 209560, 209561, 209562, 209563, 209564, 209565, 209566} },
{"Overlord's Vambraces", {209568, 10202, 209567, 209569, 209570, 209571, 209572, 209573, 209574, 209575, 209576, 209577, 209578, 209579} },
{"Overlord's Chestplate", {209581, 10203, 209580, 209582, 209583, 209584, 209585, 209586, 209587, 209588, 209589, 209590, 209591, 209592} },
{"Heavy Lamellar Shield", {209594, 10204, 209593, 209595, 209596, 209597, 209598, 209599, 209600, 209601, 209602, 209603, 209604, 209605} },
{"Overlord's Gauntlets", {209607, 10205, 209606, 209608, 209609, 209610, 209611, 209612, 209613, 209614, 209615, 209616, 209617, 209618} },
{"Overlord's Girdle", {209620, 10206, 209619, 209621, 209622, 209623, 209624, 209625, 209626, 209627, 209628, 209629, 209630, 209631} },
{"Overlord's Crown", {209633, 10207, 209632, 209634, 209635, 209636, 209637, 209638, 209639, 209640, 209641, 209642, 209643, 209644} },
{"Overlord's Legplates", {209646, 10208, 209645, 209647, 209648, 209649, 209650, 209651, 209652, 209653, 209654, 209655, 209656, 209657} },
{"Overlord's Spaulders", {209659, 10209, 209658, 209660, 209661, 209662, 209663, 209664, 209665, 209666, 209667, 209668, 209669, 209670} },
{"Elegant Mantle", {209672, 10210, 209671, 209673, 209674, 209675, 209676, 209677, 209678, 209679, 209680, 209681, 209682, 209683} },
{"Elegant Boots", {209685, 10211, 209684, 209686, 209687, 209688, 209689, 209690, 209691, 209692, 209693, 209694, 209695, 209696} },
{"Elegant Cloak", {209698, 10212, 209697, 209699, 209700, 209701, 209702, 209703, 209704, 209705, 209706, 209707, 209708, 209709} },
{"Elegant Bracers", {209711, 10213, 209710, 209712, 209713, 209714, 209715, 209716, 209717, 209718, 209719, 209720, 209721, 209722} },
{"Elegant Gloves", {209724, 10214, 209723, 209725, 209726, 209727, 209728, 209729, 209730, 209731, 209732, 209733, 209734, 209735} },
{"Elegant Robes", {209737, 10215, 209736, 209738, 209739, 209740, 209741, 209742, 209743, 209744, 209745, 209746, 209747, 209748} },
{"Elegant Belt", {209750, 10216, 209749, 209751, 209752, 209753, 209754, 209755, 209756, 209757, 209758, 209759, 209760, 209761} },
{"Elegant Leggings", {209763, 10217, 209762, 209764, 209765, 209766, 209767, 209768, 209769, 209770, 209771, 209772, 209773, 209774} },
{"Elegant Tunic", {209776, 10218, 209775, 209777, 209778, 209779, 209780, 209781, 209782, 209783, 209784, 209785, 209786, 209787} },
{"Elegant Circlet", {209789, 10219, 209788, 209790, 209791, 209792, 209793, 209794, 209795, 209796, 209797, 209798, 209799, 209800} },
{"Nightshade Tunic", {209802, 10220, 209801, 209803, 209804, 209805, 209806, 209807, 209808, 209809, 209810, 209811, 209812, 209813} },
{"Nightshade Girdle", {209815, 10221, 209814, 209816, 209817, 209818, 209819, 209820, 209821, 209822, 209823, 209824, 209825, 209826} },
{"Nightshade Boots", {209828, 10222, 209827, 209829, 209830, 209831, 209832, 209833, 209834, 209835, 209836, 209837, 209838, 209839} },
{"Nightshade Armguards", {209841, 10223, 209840, 209842, 209843, 209844, 209845, 209846, 209847, 209848, 209849, 209850, 209851, 209852} },
{"Nightshade Cloak", {209854, 10224, 209853, 209855, 209856, 209857, 209858, 209859, 209860, 209861, 209862, 209863, 209864, 209865} },
{"Nightshade Gloves", {209867, 10225, 209866, 209868, 209869, 209870, 209871, 209872, 209873, 209874, 209875, 209876, 209877, 209878} },
{"Nightshade Helmet", {209880, 10226, 209879, 209881, 209882, 209883, 209884, 209885, 209886, 209887, 209888, 209889, 209890, 209891} },
{"Nightshade Leggings", {209893, 10227, 209892, 209894, 209895, 209896, 209897, 209898, 209899, 209900, 209901, 209902, 209903, 209904} },
{"Nightshade Spaulders", {209906, 10228, 209905, 209907, 209908, 209909, 209910, 209911, 209912, 209913, 209914, 209915, 209916, 209917} },
{"Engraved Bracers", {209919, 10229, 209918, 209920, 209921, 209922, 209923, 209924, 209925, 209926, 209927, 209928, 209929, 209930} },
{"Engraved Breastplate", {209932, 10230, 209931, 209933, 209934, 209935, 209936, 209937, 209938, 209939, 209940, 209941, 209942, 209943} },
{"Engraved Cape", {209945, 10231, 209944, 209946, 209947, 209948, 209949, 209950, 209951, 209952, 209953, 209954, 209955, 209956} },
{"Engraved Gauntlets", {209958, 10232, 209957, 209959, 209960, 209961, 209962, 209963, 209964, 209965, 209966, 209967, 209968, 209969} },
{"Engraved Girdle", {209971, 10233, 209970, 209972, 209973, 209974, 209975, 209976, 209977, 209978, 209979, 209980, 209981, 209982} },
{"Engraved Boots", {209984, 10234, 209983, 209985, 209986, 209987, 209988, 209989, 209990, 209991, 209992, 209993, 209994, 209995} },
{"Engraved Helm", {209997, 10235, 209996, 209998, 209999, 210000, 210001, 210002, 210003, 210004, 210005, 210006, 210007, 210008} },
{"Engraved Leggings", {210010, 10236, 210009, 210011, 210012, 210013, 210014, 210015, 210016, 210017, 210018, 210019, 210020, 210021} },
{"Engraved Pauldrons", {210023, 10237, 210022, 210024, 210025, 210026, 210027, 210028, 210029, 210030, 210031, 210032, 210033, 210034} },
{"Heavy Lamellar Boots", {210036, 10238, 210035, 210037, 210038, 210039, 210040, 210041, 210042, 210043, 210044, 210045, 210046, 210047} },
{"Heavy Lamellar Vambraces", {210049, 10239, 210048, 210050, 210051, 210052, 210053, 210054, 210055, 210056, 210057, 210058, 210059, 210060} },
{"Heavy Lamellar Chestpiece", {210062, 10240, 210061, 210063, 210064, 210065, 210066, 210067, 210068, 210069, 210070, 210071, 210072, 210073} },
{"Heavy Lamellar Helm", {210075, 10241, 210074, 210076, 210077, 210078, 210079, 210080, 210081, 210082, 210083, 210084, 210085, 210086} },
{"Heavy Lamellar Gauntlets", {210088, 10242, 210087, 210089, 210090, 210091, 210092, 210093, 210094, 210095, 210096, 210097, 210098, 210099} },
{"Heavy Lamellar Girdle", {210101, 10243, 210100, 210102, 210103, 210104, 210105, 210106, 210107, 210108, 210109, 210110, 210111, 210112} },
{"Heavy Lamellar Leggings", {210114, 10244, 210113, 210115, 210116, 210117, 210118, 210119, 210120, 210121, 210122, 210123, 210124, 210125} },
{"Heavy Lamellar Pauldrons", {210127, 10245, 210126, 210128, 210129, 210130, 210131, 210132, 210133, 210134, 210135, 210136, 210137, 210138} },
{"Master's Vest", {210140, 10246, 210139, 210141, 210142, 210143, 210144, 210145, 210146, 210147, 210148, 210149, 210150, 210151} },
{"Master's Boots", {210153, 10247, 210152, 210154, 210155, 210156, 210157, 210158, 210159, 210160, 210161, 210162, 210163, 210164} },
{"Master's Bracers", {210166, 10248, 210165, 210167, 210168, 210169, 210170, 210171, 210172, 210173, 210174, 210175, 210176, 210177} },
{"Master's Cloak", {210179, 10249, 210178, 210180, 210181, 210182, 210183, 210184, 210185, 210186, 210187, 210188, 210189, 210190} },
{"Master's Hat", {210192, 10250, 210191, 210193, 210194, 210195, 210196, 210197, 210198, 210199, 210200, 210201, 210202, 210203} },
{"Master's Gloves", {210205, 10251, 210204, 210206, 210207, 210208, 210209, 210210, 210211, 210212, 210213, 210214, 210215, 210216} },
{"Master's Leggings", {210218, 10252, 210217, 210219, 210220, 210221, 210222, 210223, 210224, 210225, 210226, 210227, 210228, 210229} },
{"Master's Mantle", {210231, 10253, 210230, 210232, 210233, 210234, 210235, 210236, 210237, 210238, 210239, 210240, 210241, 210242} },
{"Master's Robe", {210244, 10254, 210243, 210245, 210246, 210247, 210248, 210249, 210250, 210251, 210252, 210253, 210254, 210255} },
{"Master's Belt", {210257, 10255, 210256, 210258, 210259, 210260, 210261, 210262, 210263, 210264, 210265, 210266, 210267, 210268} },
{"Adventurer's Bracers", {210270, 10256, 210269, 210271, 210272, 210273, 210274, 210275, 210276, 210277, 210278, 210279, 210280, 210281} },
{"Adventurer's Boots", {210283, 10257, 210282, 210284, 210285, 210286, 210287, 210288, 210289, 210290, 210291, 210292, 210293, 210294} },
{"Adventurer's Cape", {210296, 10258, 210295, 210297, 210298, 210299, 210300, 210301, 210302, 210303, 210304, 210305, 210306, 210307} },
{"Adventurer's Belt", {210309, 10259, 210308, 210310, 210311, 210312, 210313, 210314, 210315, 210316, 210317, 210318, 210319, 210320} },
{"Adventurer's Gloves", {210322, 10260, 210321, 210323, 210324, 210325, 210326, 210327, 210328, 210329, 210330, 210331, 210332, 210333} },
{"Adventurer's Bandana", {210335, 10261, 210334, 210336, 210337, 210338, 210339, 210340, 210341, 210342, 210343, 210344, 210345, 210346} },
{"Adventurer's Legguards", {210348, 10262, 210347, 210349, 210350, 210351, 210352, 210353, 210354, 210355, 210356, 210357, 210358, 210359} },
{"Adventurer's Shoulders", {210361, 10263, 210360, 210362, 210363, 210364, 210365, 210366, 210367, 210368, 210369, 210370, 210371, 210372} },
{"Adventurer's Tunic", {210374, 10264, 210373, 210375, 210376, 210377, 210378, 210379, 210380, 210381, 210382, 210383, 210384, 210385} },
{"Masterwork Bracers", {210387, 10265, 210386, 210388, 210389, 210390, 210391, 210392, 210393, 210394, 210395, 210396, 210397, 210398} },
{"Masterwork Breastplate", {210400, 10266, 210399, 210401, 210402, 210403, 210404, 210405, 210406, 210407, 210408, 210409, 210410, 210411} },
{"Masterwork Cape", {210413, 10267, 210412, 210414, 210415, 210416, 210417, 210418, 210419, 210420, 210421, 210422, 210423, 210424} },
{"Masterwork Gauntlets", {210426, 10268, 210425, 210427, 210428, 210429, 210430, 210431, 210432, 210433, 210434, 210435, 210436, 210437} },
{"Masterwork Girdle", {210439, 10269, 210438, 210440, 210441, 210442, 210443, 210444, 210445, 210446, 210447, 210448, 210449, 210450} },
{"Masterwork Boots", {210452, 10270, 210451, 210453, 210454, 210455, 210456, 210457, 210458, 210459, 210460, 210461, 210462, 210463} },
{"Masterwork Shield", {210465, 10271, 210464, 210466, 210467, 210468, 210469, 210470, 210471, 210472, 210473, 210474, 210475, 210476} },
{"Masterwork Circlet", {210478, 10272, 210477, 210479, 210497, 210498, 210499, 210500, 210501, 210502, 210503, 210504, 210505, 210506} },
{"Masterwork Legplates", {210508, 10273, 210507, 210509, 210510, 210511, 210512, 210513, 210514, 210515, 210516, 210517, 210518, 210519} },
{"Masterwork Pauldrons", {210521, 10274, 210520, 210522, 210523, 210524, 210525, 210526, 210527, 210528, 210529, 210530, 210531, 210532} },
{"Emerald Breastplate", {210534, 10275, 210533, 210535, 210536, 210537, 210538, 210539, 210540, 210541, 210542, 210543, 210544, 210545} },
{"Emerald Sabatons", {210547, 10276, 210546, 210548, 210549, 210550, 210551, 210552, 210553, 210554, 210555, 210556, 210557, 210558} },
{"Emerald Gauntlets", {210560, 10277, 210559, 210561, 210562, 210563, 210564, 210565, 210566, 210567, 210568, 210569, 210570, 210571} },
{"Emerald Girdle", {210573, 10278, 210572, 210574, 210575, 210576, 210577, 210578, 210579, 210580, 210581, 210582, 210583, 210584} },
{"Emerald Helm", {210586, 10279, 210585, 210587, 210588, 210589, 210590, 210591, 210592, 210593, 210594, 210595, 210596, 210597} },
{"Emerald Legplates", {210599, 10280, 210598, 210600, 210601, 210602, 210603, 210604, 210605, 210606, 210607, 210608, 210609, 210610} },
{"Emerald Pauldrons", {210612, 10281, 210611, 210613, 210614, 210615, 210616, 210617, 210618, 210619, 210620, 210621, 210622, 210623} },
{"Emerald Vambraces", {210625, 10282, 210624, 210626, 210627, 210628, 210629, 210630, 210631, 210632, 210633, 210634, 210635, 210636} },
{"Ornate Shield", {210801, 10362, 210800, 210802, 210803, 210804, 210805, 210806, 210807, 210808, 210809, 210810, 210811, 210812} },
{"Engraved Wall", {210814, 10363, 210813, 210815, 210816, 210817, 210818, 210819, 210820, 210821, 210822, 210823, 210824, 210825} },
{"Templar Shield", {210827, 10364, 210826, 210828, 210829, 210830, 210831, 210832, 210833, 210834, 210835, 210836, 210837, 210838} },
{"Emerald Shield", {210840, 10365, 210839, 210841, 210842, 210843, 210844, 210845, 210846, 210847, 210848, 210849, 210850, 210851} },
{"Demon Guard", {210853, 10366, 210852, 210854, 210855, 210856, 210857, 210858, 210859, 210860, 210861, 210862, 210863, 210864} },
{"Hyperion Shield", {210866, 10367, 210865, 210867, 210868, 210869, 210870, 210871, 210872, 210873, 210874, 210875, 210876, 210877} },
{"Imbued Plate Armor", {210879, 10368, 210878, 210880, 210881, 210882, 210883, 210884, 210885, 210886, 210887, 210888, 210889, 210890} },
{"Imbued Plate Gauntlets", {210892, 10369, 210891, 210893, 210894, 210895, 210896, 210897, 210898, 210899, 210908, 210909, 210915, 210916} },
{"Imbued Plate Girdle", {210918, 10370, 210917, 210919, 210920, 210921, 210922, 210923, 210924, 210925, 210926, 210927, 210928, 210929} },
{"Imbued Plate Greaves", {210931, 10371, 210930, 210932, 210933, 210934, 210935, 210936, 210937, 210938, 210939, 210940, 210941, 210942} },
{"Imbued Plate Helmet", {210944, 10372, 210943, 210945, 210946, 210947, 210948, 210949, 210950, 210951, 210952, 210953, 210954, 210955} },
{"Imbued Plate Leggings", {210957, 10373, 210956, 210958, 210959, 210960, 210961, 210962, 210963, 210964, 210965, 210966, 210967, 210968} },
{"Imbued Plate Pauldrons", {210970, 10374, 210969, 210971, 210972, 210973, 210974, 210975, 210976, 210977, 210978, 210979, 210980, 210981} },
{"Imbued Plate Vambraces", {210983, 10375, 210982, 210984, 210985, 210986, 210987, 210988, 210989, 210990, 210991, 210992, 210993, 210994} },
{"Commander's Boots", {210996, 10376, 210995, 210997, 210998, 210999, 211000, 211001, 211002, 211003, 211004, 211005, 211006, 211007} },
{"Commander's Vambraces", {211009, 10377, 211008, 211010, 211011, 211012, 211013, 211014, 211015, 211016, 211017, 211018, 211019, 211020} },
{"Commander's Armor", {211022, 10378, 211021, 211023, 211024, 211025, 211026, 211027, 211028, 211029, 211030, 211031, 211032, 211033} },
{"Commander's Helm", {211035, 10379, 211034, 211036, 211037, 211038, 211039, 211040, 211041, 211042, 211043, 211044, 211045, 211046} },
{"Commander's Gauntlets", {211048, 10380, 211047, 211049, 211050, 211051, 211052, 211053, 211054, 211055, 211056, 211057, 211058, 211059} },
{"Commander's Girdle", {211061, 10381, 211060, 211062, 211063, 211064, 211065, 211066, 211067, 211068, 211069, 211070, 211071, 211072} },
{"Commander's Leggings", {211074, 10382, 211073, 211075, 211076, 211077, 211078, 211079, 211080, 211081, 211082, 211083, 211084, 211085} },
{"Commander's Pauldrons", {211087, 10383, 211086, 211088, 211089, 211090, 211091, 211092, 211093, 211094, 211095, 211096, 211097, 211098} },
{"Hyperion Armor", {211100, 10384, 211099, 211101, 211102, 211103, 211104, 211105, 211106, 211107, 211108, 211109, 211110, 211111} },
{"Hyperion Greaves", {211113, 10385, 211112, 211114, 211115, 211116, 211117, 211118, 211119, 211120, 211121, 211122, 211123, 211124} },
{"Hyperion Gauntlets", {211126, 10386, 211125, 211127, 211128, 211129, 211130, 211131, 211132, 211133, 211134, 211135, 211136, 211137} },
{"Hyperion Girdle", {211139, 10387, 211138, 211140, 211141, 211142, 211143, 211144, 211145, 211146, 211147, 211148, 211149, 211150} },
{"Hyperion Helm", {211152, 10388, 211151, 211153, 211154, 211155, 211156, 211157, 211158, 211159, 211160, 211161, 211162, 211163} },
{"Hyperion Legplates", {211165, 10389, 211164, 211166, 211167, 211168, 211169, 211170, 211171, 211172, 211173, 211174, 211175, 211176} },
{"Hyperion Pauldrons", {211178, 10390, 211177, 211179, 211180, 211181, 211182, 211183, 211184, 211185, 211186, 211187, 211188, 211189} },
{"Hyperion Vambraces", {211191, 10391, 211190, 211192, 211193, 211194, 211195, 211196, 211197, 211198, 211199, 211200, 211201, 211202} },
{"Chained Essence of Eranikus", {211395, 10455, 211394, 211396, 211397, 211398, 211399, 211400, 211401, 211402, 211403, 211404, 211405, 211406} },
{"Faceguard of Might", {6010480, 10480, 310480, 210480, 1003001, 1010616, 1017284, 1023897, 1030461, 1037024, 1043587, 1050150, 1056713, 1063276} },
{"Shoulderpads of Might", {6010481, 10481, 310481, 210481, 1003002, 1010617, 1017285, 1023898, 1030462, 1037025, 1043588, 1050151, 1056714, 1063277} },
{"Chestplate of Might", {6010482, 10482, 310482, 210482, 1003004, 1010618, 1017286, 1023899, 1030463, 1037026, 1043589, 1050152, 1056715, 1063278} },
{"Wristguards of Might", {6010483, 10483, 130971, 210483, 1003006, 1010619, 1017287, 1023900, 1030464, 1037027, 1043590, 1050153, 1056716, 1063279} },
{"Handguards of Might", {6010484, 10484, 310484, 210484, 1003007, 1010620, 1017288, 1023901, 1030465, 1037028, 1043591, 1050154, 1056717, 1063280} },
{"Girdle of Might", {6010485, 10485, 117444, 210485, 1003009, 1010621, 1017289, 1023902, 1030466, 1037029, 1043592, 1050155, 1056718, 1063281} },
{"Legguards of Might", {6010486, 10486, 310486, 210486, 1003011, 1010622, 1017290, 1023903, 1030467, 1037030, 1043593, 1050156, 1056719, 1063282} },
{"Stompers of Might", {6010487, 10487, 310487, 210487, 1003012, 1010623, 1017291, 1023904, 1030468, 1037031, 1043594, 1050157, 1056720, 1063283} },
{"Dreadborne Breastplate", {6010488, 10488, 310488, 210488, 1003013, 1010624, 1017292, 1023905, 1030469, 1037032, 1043595, 1050158, 1056721, 1063284} },
{"Dreadborne Legplates", {6010489, 10489, 310489, 210489, 1003014, 1010625, 1017293, 1023906, 1030470, 1037033, 1043596, 1050159, 1056722, 1063285} },
{"Dreadborne Helmet", {6010490, 10490, 310490, 210490, 1003017, 1010626, 1017294, 1023907, 1030471, 1037034, 1043597, 1050160, 1056723, 1063286} },
{"Dreadborne Pauldrons", {6010491, 10491, 310491, 210491, 1003018, 1010627, 1017295, 1023908, 1030472, 1037035, 1043598, 1050161, 1056724, 1063287} },
{"Dreadborne Sabatons", {6010492, 10492, 310492, 210492, 1003019, 1010628, 1017296, 1023909, 1030473, 1037036, 1043599, 1050162, 1056725, 1063288} },
{"Dreadborne Gauntlets", {6010493, 10493, 310493, 210493, 1003020, 1010629, 1017297, 1023910, 1030474, 1037037, 1043600, 1050163, 1056726, 1063289} },
{"Dreadborne Waistguard", {6010494, 10494, 310494, 210494, 1003023, 1010630, 1017298, 1023911, 1030475, 1037038, 1043601, 1050164, 1056727, 1063290} },
{"Dreadborne Bracers", {6010495, 10495, 310495, 210495, 1003025, 1010631, 1017299, 1023912, 1030476, 1037039, 1043602, 1050165, 1056728, 1063291} },
{"Dreadborne Ring", {6010496, 10496, 310496, 210496, 1003027, 1010632, 1017300, 1023913, 1030477, 1037040, 1043603, 1050166, 1056729, 1063292} },
{"Green Lens", {6010504, 10504, 211498, 211499, 211500, 211501, 211502, 211503, 211504, 211505, 211506, 211507, 211508, 211509} },
{"Goblin Rocket Helmet", {6010588, 10588, 211798, 211799, 211800, 211801, 211802, 211803, 211804, 211805, 211806, 211807, 211808, 211809} },
{"Winter's Bite", {6010623, 10623, 211810, 211811, 211812, 211813, 211814, 211815, 211816, 211817, 211818, 211819, 211820, 211821} },
{"Stinging Bow", {6010624, 10624, 211822, 211823, 211824, 211825, 211826, 211827, 211828, 211829, 211830, 211831, 211832, 211833} },
{"Stealthblade", {6010625, 10625, 211834, 211835, 211836, 211837, 211838, 211839, 211840, 211841, 211842, 211843, 211844, 211845} },
{"Ragehammer", {6010626, 10626, 211846, 211847, 211848, 211849, 211850, 211851, 211852, 211853, 211854, 211855, 211856, 211857} },
{"Bludgeon of the Grinning Dog", {6010627, 10627, 211858, 211859, 211860, 211861, 211862, 211863, 211864, 211865, 211866, 211867, 211868, 211869} },
{"Deathblow", {6010628, 10628, 211870, 211871, 211872, 211873, 211874, 211875, 211876, 211877, 211878, 211879, 211880, 211881} },
{"Mistwalker Boots", {6010629, 10629, 211882, 211883, 211884, 211885, 211886, 211887, 211888, 211889, 211890, 211891, 211892, 211893} },
{"Soulcatcher Halo", {6010630, 10630, 211894, 211895, 211896, 211897, 211898, 211899, 211900, 211901, 211902, 211903, 211904, 211905} },
{"Murkwater Gauntlets", {6010631, 10631, 211906, 211907, 211908, 211909, 211910, 211911, 211912, 211913, 211914, 211915, 211916, 211917} },
{"Slimescale Bracers", {6010632, 10632, 211918, 211919, 211924, 211928, 211930, 211931, 211932, 211933, 211934, 211935, 211936, 211937} },
{"Silvershell Leggings", {6010633, 10633, 211938, 211939, 211940, 211941, 211942, 211943, 211944, 211945, 211946, 211947, 211948, 211949} },
{"Mindseye Circle", {6010634, 10634, 211950, 211951, 211952, 211953, 211954, 211955, 211956, 211957, 211958, 211959, 211960, 211961} },
{"Will of the Mountain Giant", {6010652, 10652, 211988, 211989, 211990, 211991, 211992, 211993, 211994, 211995, 211996, 211997, 211998, 211999} },
{"Shard of Afrasa", {212053, 10659, 212052, 212054, 212055, 212056, 212057, 212058, 212059, 212060, 212061, 212062, 212063, 212064} },
{"Aegis of Battle", {6010686, 10686, 212065, 212066, 212067, 212068, 212069, 212070, 212071, 212072, 212073, 212074, 212075, 212076} },
{"Enchanted Azsharite Felbane Sword", {212078, 10696, 212077, 212079, 212080, 212081, 212082, 212083, 212084, 212085, 212086, 212087, 212088, 212089} },
{"Enchanted Azsharite Felbane Dagger", {212091, 10697, 212090, 212092, 212093, 212094, 212095, 212096, 212097, 212098, 212099, 212100, 212101, 212102} },
{"Enchanted Azsharite Felbane Staff", {212104, 10698, 212103, 212105, 212106, 212107, 212108, 212109, 212110, 212111, 212112, 212113, 212114, 212115} },
{"Steelsmith Greaves", {212208, 10707, 212207, 212209, 212210, 212211, 212212, 212213, 212214, 212215, 212216, 212217, 212218, 212219} },
{"Skullspell Orb", {212221, 10708, 212220, 212222, 212223, 212224, 212225, 212226, 212227, 212228, 212229, 212230, 212231, 212232} },
{"Pyrestone Orb", {212234, 10709, 212233, 212235, 212236, 212237, 212238, 212239, 212240, 212241, 212242, 212243, 212244, 212245} },
{"Gnomish Rocket Boots", {6010724, 10724, 212311, 212312, 212313, 212314, 212315, 212316, 212317, 212318, 212319, 212320, 212321, 212322} },
{"Avenguard Helm", {6010749, 10749, 212499, 212500, 212501, 212502, 212503, 212504, 212505, 212506, 212507, 212508, 212509, 212510} },
{"Lifeforce Dirk", {6010750, 10750, 212511, 212512, 212513, 212514, 212515, 212516, 212517, 212518, 212519, 212520, 212521, 212522} },
{"Gemburst Circlet", {6010751, 10751, 212523, 212524, 212525, 212526, 212527, 212528, 212529, 212530, 212531, 212532, 212533, 212534} },
{"Necklace of Sanctuary", {212772, 10778, 212771, 212773, 212774, 212775, 212776, 212777, 212778, 212779, 212780, 212781, 212782, 212783} },
{"Demon's Blood", {212785, 10779, 212784, 212786, 212787, 212788, 212789, 212790, 212791, 212792, 212793, 212794, 212795, 212796} },
{"Atal'ai Spaulders", {6010783, 10783, 212836, 212837, 212838, 212839, 212840, 212841, 212842, 212843, 212844, 212845, 212846, 212847} },
{"Atal'ai Breastplate", {6010784, 10784, 212848, 212849, 212850, 212851, 212852, 212853, 212854, 212855, 212856, 212857, 212858, 212859} },
{"Atal'ai Leggings", {6010785, 10785, 212860, 212861, 212862, 212863, 212864, 212865, 212866, 212867, 212868, 212869, 212870, 212871} },
{"Atal'ai Boots", {6010786, 10786, 212872, 212873, 212874, 212875, 212876, 212877, 212878, 212879, 212880, 212881, 212882, 212883} },
{"Atal'ai Gloves", {6010787, 10787, 212884, 212885, 212886, 212887, 212888, 212889, 212890, 212891, 212892, 212893, 212894, 212895} },
{"Atal'ai Girdle", {6010788, 10788, 212896, 212897, 212898, 212899, 212900, 212901, 212902, 212903, 212904, 212906, 212907, 212908} },
{"Drakeclaw Band", {6010795, 10795, 212909, 212910, 212911, 212912, 212913, 212914, 212915, 212916, 212917, 212918, 212919, 212920} },
{"Drakestone", {6010796, 10796, 212921, 212922, 212923, 212924, 212925, 212928, 212931, 212932, 212933, 212934, 212937, 212938} },
{"Firebreather", {6010797, 10797, 212941, 212942, 212943, 212944, 212945, 212946, 212947, 212948, 212949, 212950, 212951, 212954} },
{"Atal'alarion's Tusk Ring", {6010798, 10798, 212955, 212956, 212957, 212958, 212959, 212961, 212962, 212970, 212971, 212972, 212973, 212974} },
{"Headspike", {6010799, 10799, 212975, 212976, 212977, 212978, 212979, 212980, 212981, 212982, 212983, 212984, 212985, 212986} },
{"Darkwater Bracers", {6010800, 10800, 212987, 212988, 212989, 212990, 212991, 212992, 212993, 212994, 212995, 212996, 212997, 212998} },
{"Slitherscale Boots", {6010801, 10801, 212999, 213005, 213010, 213011, 213012, 213016, 213017, 213018, 213019, 213020, 213021, 213024} },
{"Wingveil Cloak", {6010802, 10802, 213025, 213026, 213029, 213031, 213032, 213033, 213034, 213035, 213037, 213038, 213039, 213041} },
{"Blade of the Wretched", {6010803, 10803, 213042, 213043, 213045, 213048, 213049, 213050, 213051, 213054, 213055, 213057, 213058, 213061} },
{"Fist of the Damned", {6010804, 10804, 213062, 213063, 213064, 213068, 213069, 213071, 213074, 213076, 213078, 213079, 213080, 213081} },
{"Eater of the Dead", {6010805, 10805, 213082, 213084, 213086, 213087, 213088, 213089, 213090, 213092, 213093, 213094, 213095, 213097} },
{"Vestments of the Atal'ai Prophet", {6010806, 10806, 213099, 213100, 213102, 213103, 213104, 213105, 213106, 213108, 213109, 213110, 213112, 213114} },
{"Kilt of the Atal'ai Prophet", {6010807, 10807, 213115, 213117, 213119, 213121, 213124, 213127, 213128, 213129, 213131, 213132, 213134, 213136} },
{"Gloves of the Atal'ai Prophet", {6010808, 10808, 213137, 213138, 213140, 213145, 213147, 213148, 213149, 213150, 213151, 213152, 213153, 213154} },
{"Staff of Lore", {213233, 10826, 213232, 213234, 213235, 213236, 213237, 213238, 213239, 213240, 213241, 213242, 213243, 213245} },
{"Surveyor's Tunic", {213247, 10827, 213246, 213248, 213249, 213250, 213251, 213254, 213256, 213263, 213264, 213265, 213266, 213267} },
{"Dire Nail", {6010828, 10828, 213268, 213269, 213270, 213271, 213272, 213273, 213274, 213275, 213276, 213277, 213278, 213279} },
{"The Dragon's Eye", {6010829, 10829, 213280, 213281, 213287, 213288, 213289, 213290, 213291, 213292, 213293, 213294, 213295, 213296} },
{"Horns of Eranikus", {6010833, 10833, 213297, 213298, 213299, 213300, 213301, 213302, 213303, 213304, 213305, 213306, 213307, 213308} },
{"Crest of Supremacy", {6010835, 10835, 213309, 213310, 213311, 213312, 213313, 213314, 213315, 213316, 213317, 213318, 213319, 213320} },
{"Rod of Corrosion", {6010836, 10836, 213321, 213322, 213323, 213324, 213325, 213326, 213327, 213328, 213329, 213330, 213331, 213332} },
{"Tooth of Eranikus", {6010837, 10837, 213333, 213334, 213335, 213336, 213337, 213338, 213339, 213340, 213341, 213342, 213343, 213344} },
{"Might of Hakkar", {6010838, 10838, 213345, 213346, 213347, 213348, 213349, 213350, 213351, 213352, 213353, 213354, 213355, 213356} },
{"Windscale Sarong", {6010842, 10842, 213357, 213358, 213359, 213360, 213361, 213362, 213363, 213364, 213365, 213366, 213367, 213368} },
{"Featherskin Cape", {6010843, 10843, 213369, 213370, 213371, 213372, 213373, 213374, 213375, 213376, 213377, 213378, 213379, 213380} },
{"Spire of Hakkar", {6010844, 10844, 213381, 213382, 213383, 213384, 213385, 213386, 213387, 213388, 213389, 213390, 213391, 213392} },
{"Warrior's Embrace", {6010845, 10845, 213393, 213394, 213395, 213396, 213397, 213398, 213399, 213400, 213401, 213402, 213403, 213404} },
{"Bloodshot Greaves", {6010846, 10846, 213405, 213406, 213407, 213408, 213409, 213410, 213411, 213412, 213413, 213414, 213415, 213416} },
{"Dragon's Call", {6010847, 10847, 213417, 213418, 213419, 213420, 213421, 213422, 213423, 213424, 213425, 213426, 213427, 213428} },
{"Wristguards of Wrath", {6010900, 10900, 310900, 210900, 1003028, 1010633, 1017301, 1023914, 1030478, 1037041, 1043604, 1050167, 1056730, 1063293} },
{"Belt of Wrath", {6010901, 10901, 310901, 210901, 1003029, 1010634, 1017302, 1023915, 1030479, 1037042, 1043605, 1050168, 1056731, 1063294} },
{"Shoulderpads of Wrath", {6010902, 10902, 310902, 210902, 1003030, 1010635, 1017303, 1023916, 1030480, 1037043, 1043606, 1050169, 1056732, 1063295} },
{"Legguards of Wrath", {6010903, 10903, 310903, 210903, 1003031, 1010636, 1017304, 1023917, 1030481, 1037044, 1043607, 1050170, 1056733, 1063296} },
{"Faceguard of Wrath", {6010904, 10904, 310904, 210904, 1003032, 1010637, 1017305, 1023918, 1030482, 1037045, 1043608, 1050171, 1056734, 1063297} },
{"Grippers of Wrath", {6010905, 10905, 310905, 210905, 1003033, 1010638, 1017306, 1023919, 1030483, 1037046, 1043609, 1050172, 1056735, 1063298} },
{"Stompers of Wrath", {6010906, 10906, 310906, 210906, 1003034, 1010639, 1017307, 1023920, 1030484, 1037047, 1043610, 1050173, 1056736, 1063299} },
{"Chestplate of Wrath", {6010907, 10907, 310907, 210907, 1003036, 1010640, 1017308, 1023921, 1030485, 1037048, 1043611, 1050174, 1056737, 1063300} },
{"Conqueror's Headguard", {6010910, 10910, 310910, 210910, 1003037, 1010641, 1017309, 1023922, 1030486, 1037049, 1043612, 1050175, 1056738, 1063301} },
{"Conqueror's Shoulderpads", {6010911, 10911, 310911, 210911, 1003038, 1010642, 1017310, 1023923, 1030487, 1037050, 1043613, 1050176, 1056739, 1063302} },
{"Conqueror's Chestplate", {6010912, 10912, 310912, 210912, 1003039, 1010643, 1017311, 1023924, 1030488, 1037051, 1043614, 1050177, 1056740, 1063303} },
{"Conqueror's Platelegs", {6010913, 10913, 310913, 210913, 1003040, 1010644, 1017312, 1023925, 1030489, 1037052, 1043615, 1050178, 1056741, 1063304} },
{"Conqueror's War Stompers", {6010914, 10914, 310914, 210914, 1003042, 1010645, 1017313, 1023926, 1030490, 1037053, 1043616, 1050179, 1056742, 1063305} },
{"Jang'thraze the Protector", {6011086, 11086, 213442, 213443, 213444, 213445, 213446, 213447, 213448, 213449, 213450, 213451, 213452, 213453} },
{"Archaedic Stone", {6011118, 11118, 213454, 213455, 213456, 213457, 213458, 213459, 213460, 213461, 213462, 213463, 213464, 213465} },
{"Belgrom's Hammer", {213467, 11120, 213466, 213468, 213469, 213470, 213471, 213472, 213473, 213474, 213475, 213476, 213477, 213478} },
{"Rainstrider Leggings", {6011123, 11123, 213493, 213494, 213495, 213496, 213497, 213499, 213500, 213501, 213503, 213504, 213505, 213506} },
{"Helm of Exile", {6011124, 11124, 213507, 213508, 213509, 213510, 213511, 213512, 213513, 213514, 213515, 213516, 213517, 213518} },
{"Uther's Strength", {6011302, 11302, 311302, 211302, 1003043, 1010646, 1017314, 1023927, 1030491, 1037054, 1043617, 1050180, 1056743, 1063306} },
{"Massive Longbow", {213728, 11307, 213727, 213729, 213730, 213731, 213732, 213733, 213734, 213735, 213736, 213737, 213738, 213739} },
{"Sylvan Shortbow", {213741, 11308, 213740, 213742, 213743, 213744, 213745, 213746, 213747, 213748, 213749, 213750, 213751, 213752} },
{"Flameseer Mantle", {6011310, 11310, 213753, 213754, 213755, 213756, 213757, 213758, 213759, 213760, 213761, 213762, 213763, 213764} },
{"Emberscale Cape", {6011311, 11311, 213765, 213766, 213767, 213768, 213769, 213770, 213771, 213772, 213773, 213774, 213775, 213776} },
{"Vilerend Slicer", {6011603, 11603, 213803, 213804, 213805, 213806, 213807, 213808, 213809, 213810, 213811, 213812, 213813, 213814} },
{"Dark Iron Plate", {6011604, 11604, 213815, 213816, 213817, 213818, 213819, 213820, 213821, 213822, 213823, 213824, 213825, 213826} },
{"Dark Iron Shoulders", {213828, 11605, 213827, 213829, 213830, 213831, 213832, 213833, 213834, 213835, 213836, 213837, 213838, 213839} },
{"Dark Iron Mail", {213841, 11606, 213840, 213842, 213843, 213844, 213845, 213846, 213847, 213848, 213849, 213850, 213851, 213852} },
{"Dark Iron Sunderer", {6011607, 11607, 213853, 213854, 213855, 213856, 213857, 213858, 213859, 213860, 213861, 213862, 213863, 213864} },
{"Dark Iron Pulverizer", {6011608, 11608, 213865, 213866, 213867, 213868, 213869, 213870, 213871, 213872, 213873, 213874, 213875, 213876} },
{"Spritecaster Cape", {6011623, 11623, 213877, 213878, 213879, 213880, 213881, 213882, 213883, 213884, 213885, 213886, 213887, 213888} },
{"Kentic Amice", {6011624, 11624, 213889, 213890, 213891, 213892, 213893, 213894, 213895, 213896, 213897, 213898, 213899, 213900} },
{"Enthralled Sphere", {6011625, 11625, 213901, 213902, 213903, 213904, 213905, 213906, 213907, 213908, 213909, 213910, 213911, 213912} },
{"Blackveil Cape", {6011626, 11626, 213913, 213914, 213915, 213916, 213917, 213918, 213919, 213920, 213921, 213922, 213923, 213924} },
{"Fleetfoot Greaves", {6011627, 11627, 213925, 213926, 213927, 213928, 213929, 213930, 213931, 213932, 213933, 213934, 213935, 213936} },
{"Houndmaster's Bow", {6011628, 11628, 213937, 213938, 213939, 213940, 213941, 213942, 213943, 213944, 213945, 213946, 213947, 213948} },
{"Houndmaster's Rifle", {6011629, 11629, 213949, 213950, 213951, 213952, 213953, 213954, 213955, 213956, 213957, 213958, 213959, 213960} },
{"Stoneshell Guard", {6011631, 11631, 213961, 213962, 213963, 213964, 213965, 213966, 213967, 213968, 213969, 213970, 213971, 213972} },
{"Earthslag Shoulders", {6011632, 11632, 213973, 213974, 213975, 213976, 213977, 213978, 213979, 213980, 213981, 213982, 213983, 213984} },
{"Spiderfang Carapace", {6011633, 11633, 213985, 213986, 213987, 213988, 213989, 213990, 213991, 213992, 213993, 213994, 213995, 213996} },
{"Silkweb Gloves", {6011634, 11634, 213997, 213998, 213999, 214002, 214003, 214004, 214005, 214006, 214007, 214008, 214009, 214010} },
{"Hookfang Shanker", {6011635, 11635, 214011, 214012, 214013, 214014, 214015, 214016, 214017, 214018, 214019, 214020, 214021, 214022} },
{"Ban'thok Sash", {6011662, 11662, 214023, 214024, 214025, 214026, 214027, 214028, 214029, 214030, 214031, 214032, 214033, 214034} },
{"Ogreseer Fists", {6011665, 11665, 214035, 214036, 214037, 214038, 214039, 214040, 214041, 214042, 214043, 214044, 214045, 214046} },
{"Naglering", {6011669, 11669, 214047, 214048, 214049, 214050, 214051, 214052, 214053, 214054, 214055, 214056, 214057, 214058} },
{"Shadefiend Boots", {6011675, 11675, 214059, 214060, 214061, 214062, 214063, 214064, 214065, 214066, 214067, 214068, 214069, 214070} },
{"Graverot Cape", {6011677, 11677, 214071, 214072, 214073, 214074, 214075, 214076, 214077, 214078, 214079, 214080, 214081, 214082} },
{"Carapace of Anub'shiah", {6011678, 11678, 214083, 214084, 214085, 214086, 214087, 214088, 214089, 214090, 214091, 214092, 214093, 214094} },
{"Rubicund Armguards", {6011679, 11679, 214095, 214096, 214097, 214098, 214099, 214100, 214101, 214102, 214103, 214104, 214105, 214106} },
{"Ironfoe", {6011684, 11684, 214107, 214108, 214109, 214110, 214111, 214112, 214113, 214114, 214115, 214116, 214117, 214118} },
{"Splinthide Shoulders", {6011685, 11685, 214119, 214120, 214121, 214122, 214123, 214124, 214125, 214126, 214127, 214128, 214129, 214130} },
{"Girdle of Beastial Fury", {6011686, 11686, 214131, 214132, 214133, 214134, 214135, 214136, 214137, 214138, 214139, 214140, 214141, 214142} },
{"Grizzle's Skinner", {6011702, 11702, 214143, 214144, 214145, 214146, 214147, 214148, 214149, 214150, 214151, 214152, 214153, 214154} },
{"Stonewall Girdle", {6011703, 11703, 214155, 214156, 214157, 214158, 214159, 214160, 214161, 214162, 214163, 214164, 214165, 214166} },
{"Dregmetal Spaulders", {6011722, 11722, 214167, 214168, 214169, 214170, 214171, 214172, 214173, 214174, 214175, 214176, 214177, 214178} },
{"Savage Gladiator Chain", {6011726, 11726, 214179, 214180, 214181, 214182, 214183, 214184, 214185, 214186, 214187, 214188, 214189, 214190} },
{"Savage Gladiator Leggings", {6011728, 11728, 214191, 214192, 214193, 214194, 214195, 214196, 214197, 214198, 214199, 214200, 214201, 214202} },
{"Savage Gladiator Helm", {6011729, 11729, 214203, 214204, 214205, 214206, 214207, 214208, 214209, 214210, 214211, 214212, 214213, 214214} },
{"Savage Gladiator Grips", {6011730, 11730, 214215, 214216, 214217, 214218, 214219, 214220, 214221, 214222, 214223, 214224, 214225, 214226} },
{"Savage Gladiator Greaves", {6011731, 11731, 214227, 214228, 214229, 214230, 214231, 214232, 214233, 214234, 214235, 214236, 214237, 214238} },
{"Ragefury Eyepatch", {6011735, 11735, 214239, 214240, 214241, 214242, 214243, 214244, 214245, 214246, 214247, 214248, 214249, 214250} },
{"Rockfist", {6011743, 11743, 214251, 214252, 214253, 214254, 214255, 214256, 214257, 214258, 214259, 214260, 214261, 214262} },
{"Bloodfist", {6011744, 11744, 214263, 214264, 214265, 214266, 214267, 214268, 214269, 214270, 214271, 214272, 214273, 214274} },
{"Fists of Phalanx", {6011745, 11745, 214275, 214276, 214277, 214278, 214279, 214280, 214281, 214282, 214283, 214284, 214285, 214286} },
{"Golem Skull Helm", {6011746, 11746, 214287, 214288, 214289, 214290, 214291, 214292, 214293, 214294, 214295, 214296, 214297, 214298} },
{"Flamestrider Robes", {6011747, 11747, 214299, 214300, 214301, 214302, 214303, 214304, 214305, 214306, 214307, 214308, 214309, 214310} },
{"Pyric Caduceus", {6011748, 11748, 214311, 214312, 214313, 214314, 214315, 214316, 214317, 214318, 214319, 214320, 214321, 214322} },
{"Searingscale Leggings", {6011749, 11749, 214323, 214324, 214325, 214326, 214327, 214328, 214329, 214330, 214331, 214332, 214333, 214334} },
{"Kindling Stave", {6011750, 11750, 214335, 214336, 214337, 214338, 214339, 214340, 214341, 214343, 214344, 214345, 214346, 214347} },
{"Verek's Collar", {6011755, 11755, 214348, 214349, 214350, 214351, 214352, 214353, 214354, 214355, 214356, 214357, 214358, 214359} },
{"Cinderhide Armsplints", {6011764, 11764, 214360, 214361, 214362, 214363, 214364, 214365, 214366, 214367, 214368, 214369, 214370, 214371} },
{"Pyremail Wristguards", {6011765, 11765, 214372, 214373, 214374, 214375, 214376, 214377, 214378, 214379, 214380, 214381, 214382, 214383} },
{"Flameweave Cuffs", {6011766, 11766, 214384, 214385, 214386, 214387, 214388, 214389, 214390, 214391, 214392, 214393, 214394, 214395} },
{"Emberplate Armguards", {6011767, 11767, 214396, 214397, 214398, 214399, 214400, 214401, 214402, 214403, 214404, 214405, 214406, 214407} },
{"Incendic Bracers", {6011768, 11768, 214408, 214409, 214410, 214411, 214412, 214413, 214414, 214415, 214416, 214417, 214418, 214419} },
{"Boreal Mantle", {6011782, 11782, 214420, 214421, 214422, 214423, 214424, 214425, 214426, 214427, 214428, 214429, 214430, 214431} },
{"Chillsteel Girdle", {6011783, 11783, 214432, 214433, 214434, 214435, 214436, 214437, 214438, 214439, 214440, 214441, 214442, 214443} },
{"Arbiter's Blade", {6011784, 11784, 214444, 214445, 214446, 214447, 214448, 214449, 214450, 214451, 214452, 214453, 214454, 214455} },
{"Rock Golem Bulwark", {6011785, 11785, 214456, 214457, 214458, 214459, 214460, 214461, 214462, 214463, 214464, 214465, 214466, 214467} },
{"Stone of the Earth", {6011786, 11786, 214468, 214469, 214470, 214471, 214472, 214473, 214474, 214475, 214476, 214477, 214478, 214479} },
{"Shalehusk Boots", {6011787, 11787, 214480, 214481, 214482, 214483, 214484, 214485, 214486, 214487, 214488, 214489, 214490, 214491} },
{"Lavacrest Leggings", {6011802, 11802, 214492, 214493, 214494, 214495, 214496, 214497, 214498, 214499, 214500, 214501, 214502, 214503} },
{"Force of Magma", {6011803, 11803, 214504, 214505, 214506, 214507, 214508, 214509, 214510, 214511, 214512, 214513, 214514, 214515} },
{"Rubidium Hammer", {6011805, 11805, 214516, 214517, 214518, 214519, 214520, 214521, 214522, 214523, 214524, 214525, 214526, 214527} },
{"Sash of the Burning Heart", {6011807, 11807, 214528, 214529, 214530, 214531, 214532, 214533, 214534, 214535, 214536, 214537, 214538, 214539} },
{"Circle of Flame", {6011808, 11808, 214540, 214541, 214542, 214543, 214544, 214545, 214546, 214547, 214548, 214549, 214550, 214551} },
{"Flame Wrath", {6011809, 11809, 214556, 214559, 214560, 214561, 214562, 214563, 214564, 214565, 214566, 214567, 214568, 214569} },
{"Force of Will", {6011810, 11810, 214570, 214571, 214572, 214573, 214574, 214575, 214576, 214577, 214578, 214579, 214580, 214581} },
{"Smoking Heart of the Mountain", {6011811, 11811, 214582, 214583, 214584, 214585, 214586, 214587, 214588, 214589, 214590, 214591, 214592, 214593} },
{"Cape of the Fire Salamander", {6011812, 11812, 214594, 214595, 214596, 214597, 214598, 214599, 214600, 214601, 214602, 214603, 214604, 214605} },
{"Molten Fists", {6011814, 11814, 214606, 214607, 214608, 214609, 214610, 214611, 214612, 214613, 214614, 214615, 214616, 214617} },
{"Hand of Justice", {6011815, 11815, 214618, 214619, 214620, 214621, 214622, 214623, 214624, 214625, 214626, 214627, 214628, 214629} },
{"Angerforge's Battle Axe", {6011816, 11816, 214630, 214631, 214632, 214633, 214634, 214635, 214636, 214637, 214638, 214639, 214640, 214641} },
{"Lord General's Sword", {6011817, 11817, 214642, 214643, 214644, 214645, 214646, 214647, 214648, 214649, 214650, 214651, 214652, 214653} },
{"Second Wind", {6011819, 11819, 214654, 214655, 214656, 214657, 214658, 214659, 214660, 214661, 214662, 214664, 214665, 214666} },
{"Royal Decorated Armor", {6011820, 11820, 214667, 214668, 214669, 214670, 214671, 214672, 214673, 214674, 214675, 214676, 214677, 214678} },
{"Warstrife Leggings", {6011821, 11821, 214679, 214680, 214681, 214682, 214683, 214684, 214685, 214686, 214687, 214688, 214689, 214690} },
{"Omnicast Boots", {6011822, 11822, 214691, 214692, 214693, 214694, 214695, 214696, 214697, 214698, 214699, 214700, 214701, 214702} },
{"Luminary Kilt", {6011823, 11823, 214703, 214704, 214705, 214706, 214707, 214708, 214709, 214715, 214716, 214717, 214718, 214719} },
{"Cyclopean Band", {6011824, 11824, 214720, 214721, 214722, 214723, 214724, 214725, 214726, 214727, 214728, 214729, 214730, 214731} },
{"Burst of Knowledge", {6011832, 11832, 214732, 214733, 214734, 214735, 214736, 214737, 214738, 214739, 214740, 214741, 214742, 214743} },
{"Chief Architect's Monocle", {6011839, 11839, 214744, 214745, 214746, 214747, 214748, 214749, 214750, 214751, 214752, 214753, 214754, 214755} },
{"Senior Designer's Pantaloons", {6011841, 11841, 214756, 214757, 214758, 214759, 214760, 214761, 214762, 214763, 214764, 214765, 214766, 214767} },
{"Lead Surveyor's Mantle", {6011842, 11842, 214768, 214769, 214770, 214771, 214772, 214773, 214774, 214775, 214776, 214777, 214778, 214779} },
{"Charged Lightning Rod", {214872, 11860, 214871, 214873, 214874, 214875, 214876, 214877, 214878, 214879, 214880, 214881, 214882, 214883} },
{"Girdle of Reprisal", {214885, 11861, 214884, 214886, 214887, 214888, 214889, 214890, 214891, 214892, 214893, 214894, 214895, 214896} },
{"White Bone Band", {214898, 11862, 214897, 214899, 214900, 214901, 214902, 214903, 214904, 214905, 214906, 214907, 214908, 214909} },
{"White Bone Shredder", {214911, 11863, 214910, 214912, 214913, 214914, 214915, 214916, 214917, 214918, 214919, 214920, 214921, 214922} },
{"White Bone Spear", {214924, 11864, 214923, 214925, 214926, 214927, 214928, 214929, 214930, 214931, 214932, 214933, 214934, 214935} },
{"Rancor Boots", {214937, 11865, 214936, 214938, 214939, 214940, 214941, 214942, 214943, 214944, 214945, 214946, 214947, 214948} },
{"Nagmara's Whipping Belt", {6011866, 11866, 214949, 214950, 214951, 214952, 214953, 214954, 214955, 214956, 214957, 214958, 214959, 214960} },
{"Maddening Gauntlets", {214962, 11867, 214961, 214963, 214964, 214965, 214966, 214967, 214968, 214969, 214970, 214971, 214972, 214973} },
{"Choking Band", {214975, 11868, 214974, 214976, 214977, 214978, 214979, 214980, 214981, 214982, 214983, 214986, 214995, 214996} },
{"Sha'ni's Ring", {214998, 11869, 214997, 214999, 215000, 215001, 215002, 215003, 215004, 215005, 215006, 215007, 215008, 215009} },
{"Oblivion Orb", {215011, 11870, 215010, 215012, 215013, 215014, 215015, 215016, 215017, 215018, 215019, 215020, 215021, 215022} },
{"Snarkshaw Spaulders", {215024, 11871, 215023, 215025, 215026, 215027, 215028, 215029, 215030, 215031, 215032, 215033, 215034, 215035} },
{"Eschewal Greaves", {215037, 11872, 215036, 215038, 215039, 215040, 215041, 215042, 215043, 215044, 215045, 215046, 215047, 215048} },
{"Ethereal Mist Cape", {215050, 11873, 215049, 215051, 215052, 215053, 215054, 215055, 215056, 215057, 215058, 215059, 215060, 215061} },
{"Clouddrift Mantle", {215063, 11874, 215062, 215064, 215065, 215066, 215067, 215068, 215069, 215070, 215071, 215072, 215073, 215074} },
{"Breezecloud Bracers", {215076, 11875, 215075, 215077, 215078, 215079, 215080, 215081, 215082, 215083, 215084, 215085, 215086, 215087} },
{"Plainstalker Tunic", {215089, 11876, 215088, 215090, 215091, 215092, 215093, 215094, 215095, 215096, 215097, 215098, 215099, 215100} },
{"Outrider Leggings", {215102, 11882, 215101, 215103, 215104, 215105, 215106, 215107, 215108, 215109, 215110, 215111, 215112, 215113} },
{"Quintis' Research Gloves", {215128, 11888, 215127, 215129, 215130, 215131, 215132, 215133, 215134, 215135, 215136, 215137, 215138, 215139} },
{"Bark Iron Pauldrons", {215141, 11889, 215140, 215142, 215143, 215144, 215145, 215146, 215147, 215148, 215149, 215150, 215151, 215152} },
{"Linken's Sword of Mastery", {215154, 11902, 215153, 215155, 215156, 215157, 215158, 215159, 215160, 215161, 215162, 215163, 215164, 215165} },
{"Spirit of Aquementas", {215167, 11904, 215166, 215168, 215169, 215170, 215171, 215172, 215173, 215174, 215175, 215176, 215177, 215178} },
{"Linken's Boomerang", {215180, 11905, 215179, 215181, 215182, 215183, 215184, 215185, 215186, 215187, 215188, 215189, 215190, 215191} },
{"Beastsmasher", {215193, 11906, 215192, 215194, 215195, 215196, 215197, 215198, 215199, 215200, 215201, 215202, 215203, 215204} },
{"Beastslayer", {215206, 11907, 215205, 215207, 215208, 215209, 215210, 215211, 215212, 215213, 215214, 215215, 215216, 215217} },
{"Archaeologist's Quarry Boots", {215219, 11908, 215218, 215220, 215221, 215222, 215223, 215224, 215225, 215226, 215227, 215228, 215229, 215230} },
{"Excavator's Utility Belt", {215232, 11909, 215231, 215233, 215234, 215235, 215236, 215237, 215238, 215239, 215240, 215241, 215242, 215243} },
{"Bejeweled Legguards", {215245, 11910, 215244, 215246, 215247, 215248, 215249, 215250, 215251, 215252, 215253, 215254, 215255, 215256} },
{"Treetop Leggings", {215258, 11911, 215257, 215259, 215260, 215261, 215262, 215263, 215264, 215265, 215266, 215267, 215268, 215269} },
{"Clayridge Helm", {215271, 11913, 215270, 215272, 215273, 215274, 215275, 215276, 215277, 215278, 215279, 215280, 215281, 215282} },
{"Shizzle's Drizzle Blocker", {215284, 11915, 215283, 215285, 215286, 215287, 215288, 215289, 215290, 215291, 215292, 215293, 215294, 215295} },
{"Shizzle's Muzzle", {215297, 11916, 215296, 215298, 215299, 215300, 215301, 215302, 215303, 215304, 215305, 215306, 215307, 215308} },
{"Shizzle's Nozzle Wiper", {215310, 11917, 215309, 215311, 215312, 215313, 215314, 215315, 215316, 215317, 215318, 215319, 215320, 215321} },
{"Grotslab Gloves", {215323, 11918, 215322, 215324, 215325, 215326, 215327, 215328, 215329, 215330, 215331, 215332, 215333, 215334} },
{"Cragplate Greaves", {215336, 11919, 215335, 215337, 215338, 215339, 215340, 215341, 215342, 215343, 215344, 215345, 215346, 215347} },
{"Wraith Scythe", {6011920, 11920, 311920, 211920, 1003044, 1010647, 1017315, 1023928, 1030492, 1037055, 1043618, 1050181, 1056744, 1063307} },
{"Impervious Giant", {6011921, 11921, 311921, 211921, 1003046, 1010648, 1017316, 1023929, 1030493, 1037056, 1043619, 1050182, 1056745, 1063308} },
{"Blood-etched Blade", {6011922, 11922, 311922, 211922, 1003047, 1010649, 1017317, 1023930, 1030494, 1037057, 1043620, 1050183, 1056746, 1063309} },
{"The Hammer of Grace", {6011923, 11923, 311923, 211923, 1003048, 1010650, 1017318, 1023931, 1030495, 1037058, 1043621, 1050184, 1056747, 1063310} },
{"Robes of the Royal Crown", {6011924, 11924, 215348, 215349, 215350, 215351, 215352, 215353, 215354, 215355, 215356, 215357, 215358, 215359} },
{"Ghostshroud", {6011925, 11925, 311925, 211925, 1003049, 1010651, 1017319, 1023932, 1030496, 1037059, 1043622, 1050185, 1056748, 1063311} },
{"Deathdealer Breastplate", {6011926, 11926, 311926, 211926, 1003050, 1010652, 1017320, 1023933, 1030497, 1037060, 1043623, 1050186, 1056749, 1063312} },
{"Legplates of the Eternal Guardian", {6011927, 11927, 311927, 211927, 1003051, 1010653, 1017321, 1023934, 1030498, 1037061, 1043624, 1050187, 1056750, 1063313} },
{"Thaurissan's Royal Scepter", {6011928, 11928, 215360, 215361, 215362, 215363, 215364, 215365, 215366, 215367, 215368, 215369, 215370, 215371} },
{"Haunting Specter Leggings", {6011929, 11929, 311929, 211929, 1003052, 1010654, 1017322, 1023935, 1030499, 1037062, 1043625, 1050188, 1056751, 1063314} },
{"The Emperor's New Cape", {6011930, 11930, 215372, 215373, 215374, 215375, 215376, 215377, 215378, 215379, 215380, 215381, 215382, 215383} },
{"Dreadforge Retaliator", {6011931, 11931, 215384, 215385, 215386, 215387, 215388, 215389, 215390, 215391, 215392, 215393, 215394, 215395} },
{"Guiding Stave of Wisdom", {6011932, 11932, 215396, 215397, 215398, 215399, 215400, 215401, 215402, 215403, 215404, 215405, 215406, 215408} },
{"Imperial Jewel", {6011933, 11933, 215409, 215410, 215411, 215412, 215413, 215414, 215415, 215416, 215417, 215418, 215419, 215420} },
{"Emperor's Seal", {6011934, 11934, 215421, 215422, 215423, 215424, 215425, 215426, 215427, 215428, 215429, 215430, 215431, 215432} },
{"Magmus Stone", {6011935, 11935, 215433, 215434, 215435, 215436, 215437, 215438, 215439, 215440, 215441, 215442, 215443, 215444} },
{"Dark Iron Ring", {6011945, 11945, 215458, 215459, 215460, 215461, 215462, 215463, 215464, 215465, 215466, 215467, 215468, 215469} },
{"Fire Opal Necklace", {6011946, 11946, 215470, 215471, 215472, 215473, 215474, 215475, 215476, 215477, 215478, 215479, 215480, 215481} },
{"Manacle Cuffs", {6011962, 11962, 215482, 215483, 215484, 215485, 215486, 215487, 215488, 215489, 215490, 215491, 215492, 215493} },
{"Penance Spaulders", {215495, 11963, 215494, 215496, 215497, 215498, 215499, 215500, 215501, 215502, 215503, 215504, 215505, 215506} },
{"Swiftstrike Cudgel", {215508, 11964, 215507, 215509, 215510, 215511, 215512, 215513, 215514, 215515, 215516, 215517, 215518, 215519} },
{"Aquamarine Ring", {215625, 11974, 215624, 215626, 215627, 215628, 215629, 215630, 215631, 215632, 215633, 215634, 215635, 215636} },
{"Topaz Ring", {215638, 11975, 215637, 215639, 215640, 215641, 215642, 215643, 215644, 215645, 215646, 215647, 215648, 215649} },
{"Sardonyx Knuckle", {215651, 11976, 215650, 215652, 215653, 215654, 215655, 215656, 215657, 215658, 215659, 215662, 215663, 215664} },
{"Serpentine Loop", {215666, 11977, 215665, 215667, 215668, 215669, 215670, 215671, 215672, 215673, 215674, 215675, 215676, 215677} },
{"Jasper Link", {215679, 11978, 215678, 215680, 215681, 215682, 215683, 215684, 215685, 215686, 215687, 215688, 215689, 215690} },
{"Peridot Circle", {215692, 11979, 215691, 215693, 215694, 215695, 215696, 215697, 215698, 215699, 215700, 215701, 215702, 215703} },
{"Opal Ring", {215705, 11980, 215704, 215706, 215707, 215708, 215709, 215710, 215711, 215712, 215713, 215714, 215715, 215716} },
{"Tellurium Band", {215809, 11988, 215808, 215810, 215811, 215812, 215813, 215814, 215815, 215816, 215817, 215818, 215819, 215820} },
{"Vanadium Loop", {215822, 11989, 215821, 215823, 215824, 215825, 215826, 215827, 215828, 215829, 215830, 215831, 215832, 215833} },
{"Selenium Loop", {215835, 11990, 215834, 215836, 215837, 215838, 215839, 215840, 215841, 215842, 215843, 215844, 215845, 215846} },
{"Quicksilver Ring", {215848, 11991, 215847, 215849, 215850, 215851, 215852, 215853, 215854, 215855, 215856, 215857, 215858, 215859} },
{"Vermilion Band", {215861, 11992, 215860, 215862, 215863, 215864, 215865, 215866, 215867, 215868, 215869, 215870, 215871, 215872} },
{"Lodestone Hoop", {215952, 11999, 215951, 215953, 215954, 215955, 215956, 215957, 215958, 215959, 215960, 215961, 215962, 215963} },
{"Limb Cleaver", {215965, 12000, 215964, 215966, 215967, 215968, 215969, 215970, 215971, 215972, 215973, 215974, 215975, 215976} },
{"Onyx Ring", {215978, 12001, 215977, 215979, 215980, 215981, 215982, 215983, 215984, 215985, 215986, 215987, 215988, 215989} },
{"Marble Circle", {215991, 12002, 215990, 215992, 215993, 215994, 215995, 215996, 215997, 215998, 215999, 216000, 216001, 216002} },
{"Obsidian Band", {216004, 12004, 216003, 216005, 216006, 216007, 216008, 216009, 216010, 216011, 216012, 216013, 216014, 216015} },
{"Granite Ring", {216017, 12005, 216016, 216018, 216019, 216020, 216021, 216022, 216023, 216024, 216025, 216026, 216027, 216028} },
{"Desert Ring", {216121, 12013, 216120, 216122, 216123, 216124, 216125, 216126, 216127, 216128, 216129, 216130, 216131, 216132} },
{"Arctic Ring", {216134, 12014, 216133, 216135, 216136, 216137, 216138, 216139, 216140, 216141, 216142, 216143, 216144, 216145} },
{"Swamp Ring", {216147, 12015, 216146, 216148, 216149, 216150, 216151, 216152, 216153, 216154, 216155, 216156, 216157, 216158} },
{"Jungle Ring", {216160, 12016, 216159, 216161, 216162, 216163, 216164, 216165, 216166, 216167, 216168, 216169, 216170, 216171} },
{"Prismatic Band", {216173, 12017, 216172, 216174, 216175, 216176, 216177, 216178, 216179, 216180, 216181, 216182, 216183, 216184} },
{"Conservator Helm", {216186, 12018, 216185, 216187, 216188, 216189, 216190, 216191, 216192, 216193, 216194, 216195, 216196, 216197} },
{"Shieldplate Sabatons", {216225, 12021, 216224, 216226, 216227, 216228, 216229, 216230, 216231, 216232, 216233, 216234, 216235, 216236} },
{"Vanadium Talisman", {216264, 12024, 216263, 216265, 216266, 216267, 216268, 216269, 216270, 216271, 216272, 216273, 216274, 216275} },
{"Selenium Chain", {216277, 12025, 216276, 216278, 216279, 216280, 216281, 216282, 216283, 216284, 216285, 216286, 216287, 216288} },
{"Quicksilver Pendant", {216290, 12026, 216289, 216291, 216292, 216293, 216294, 216295, 216296, 216297, 216298, 216299, 216300, 216301} },
{"Vermilion Necklace", {216303, 12027, 216302, 216304, 216305, 216306, 216307, 216308, 216309, 216310, 216311, 216312, 216313, 216314} },
{"Onyx Choker", {216368, 12032, 216367, 216369, 216370, 216371, 216372, 216373, 216374, 216375, 216376, 216377, 216378, 216379} },
{"Marble Necklace", {216381, 12034, 216380, 216382, 216383, 216384, 216385, 216386, 216387, 216388, 216389, 216390, 216391, 216392} },
{"Obsidian Pendant", {216394, 12035, 216393, 216395, 216396, 216397, 216398, 216399, 216400, 216401, 216402, 216403, 216404, 216405} },
{"Granite Necklace", {216407, 12036, 216406, 216408, 216409, 216410, 216411, 216412, 216413, 216414, 216415, 216416, 216417, 216418} },
{"Lagrave's Seal", {216420, 12038, 216419, 216421, 216422, 216423, 216424, 216425, 216426, 216427, 216428, 216429, 216430, 216431} },
{"Windshear Leggings", {216459, 12041, 216458, 216460, 216461, 216462, 216463, 216464, 216465, 216466, 216467, 216468, 216469, 216470} },
{"Desert Choker", {216485, 12043, 216484, 216486, 216487, 216488, 216489, 216490, 216491, 216492, 216493, 216494, 216495, 216496} },
{"Arctic Pendant", {216498, 12044, 216497, 216499, 216500, 216501, 216502, 216503, 216504, 216505, 216506, 216507, 216508, 216509} },
{"Swamp Pendant", {216511, 12045, 216510, 216512, 216513, 216514, 216515, 216516, 216517, 216518, 216519, 216520, 216521, 216522} },
{"Jungle Necklace", {216524, 12046, 216523, 216525, 216526, 216527, 216528, 216529, 216530, 216531, 216532, 216533, 216534, 216535} },
{"Prismatic Pendant", {216550, 12048, 216549, 216551, 216552, 216553, 216554, 216555, 216556, 216557, 216558, 216559, 216560, 216561} },
{"Splintsteel Armor", {216563, 12049, 216562, 216564, 216565, 216566, 216567, 216568, 216569, 216570, 216571, 216572, 216573, 216574} },
{"Hazecover Boots", {216576, 12050, 216575, 216577, 216578, 216579, 216580, 216581, 216582, 216583, 216584, 216585, 216586, 216587} },
{"Brazen Gauntlets", {216589, 12051, 216588, 216590, 216591, 216592, 216593, 216594, 216595, 216596, 216597, 216598, 216599, 216600} },
{"Stardust Band", {216641, 12055, 216640, 216642, 216643, 216644, 216645, 216646, 216647, 216648, 216649, 216650, 216651, 216652} },
{"Ring of the Heavens", {216654, 12056, 216653, 216655, 216656, 216657, 216658, 216659, 216660, 216661, 216662, 216663, 216664, 216665} },
{"Dragonscale Band", {216668, 12057, 216667, 216671, 216675, 216677, 216678, 216682, 216684, 216686, 216687, 216689, 216691, 216692} },
{"Demonic Bone Ring", {216694, 12058, 216693, 216697, 216698, 216699, 216701, 216702, 216704, 216705, 216707, 216708, 216709, 216711} },
{"Conqueror's Medallion", {6012059, 12059, 216714, 216719, 216720, 216722, 216723, 216724, 216725, 216727, 216728, 216731, 216732, 216734} },
{"Blade of Reckoning", {216738, 12061, 216737, 216739, 216740, 216741, 216742, 216743, 216744, 216745, 216746, 216747, 216748, 216749} },
{"Skilled Fighting Blade", {216751, 12062, 216750, 216752, 216753, 216754, 216755, 216756, 216757, 216758, 216759, 216760, 216761, 216762} },
{"Ward of the Elements", {216764, 12065, 216763, 216765, 216766, 216767, 216768, 216769, 216770, 216771, 216772, 216773, 216774, 216775} },
{"Shaleskin Cape", {216777, 12066, 216776, 216778, 216779, 216780, 216781, 216782, 216783, 216784, 216785, 216786, 216787, 216788} },
{"Wyrmhide Spaulders", {216790, 12082, 216789, 216791, 216792, 216793, 216794, 216869, 216870, 216871, 216872, 216873, 216874, 216875} },
{"Valconian Sash", {216877, 12083, 216876, 216878, 216879, 216880, 216881, 216882, 216883, 216884, 216885, 216886, 216887, 216888} },
{"Ring of the Aristocrat", {216890, 12102, 216889, 216891, 216892, 216893, 216894, 216895, 216896, 216967, 216968, 216969, 216970, 216971} },
{"Star of Mystaria", {6012103, 12103, 216972, 216973, 216974, 216975, 216976, 216977, 216978, 216979, 216980, 216981, 216982, 216983} },
{"Brindlethorn Tunic", {216985, 12104, 216984, 216986, 216987, 216988, 216989, 216990, 216991, 216992, 216993, 216994, 216995, 216996} },
{"Pridemail Leggings", {6012105, 12105, 216997, 216998, 216999, 217000, 217001, 217002, 217003, 217004, 217005, 217006, 217008, 217009} },
{"Boulderskin Breastplate", {217011, 12106, 217010, 217012, 217013, 217014, 217015, 217016, 217017, 217018, 217019, 217020, 217021, 217022} },
{"Whispersilk Leggings", {217024, 12107, 217023, 217025, 217026, 217027, 217028, 217029, 217030, 217031, 217032, 217033, 217034, 217035} },
{"Basaltscale Armor", {217037, 12108, 217036, 217038, 217039, 217040, 217041, 217042, 217043, 217044, 217045, 217046, 217047, 217048} },
{"Azure Moon Amice", {217050, 12109, 217049, 217051, 217052, 217053, 217054, 217055, 217056, 217057, 217058, 217059, 217060, 217061} },
{"Raincaster Drape", {217070, 12110, 217062, 217079, 217080, 217081, 217083, 217084, 217085, 217086, 217087, 217088, 217089, 217090} },
{"Lavaplate Gauntlets", {217092, 12111, 217091, 217093, 217094, 217095, 217096, 217097, 217098, 217099, 217100, 217101, 217108, 217111} },
{"Crypt Demon Bracers", {217113, 12112, 217112, 217114, 217115, 217116, 217117, 217118, 217119, 217120, 217121, 217122, 217123, 217124} },
{"Sunborne Cape", {217126, 12113, 217125, 217127, 217128, 217129, 217130, 217131, 217132, 217133, 217134, 217135, 217136, 217137} },
{"Nightfall Gloves", {217139, 12114, 217138, 217140, 217141, 217142, 217143, 217144, 217145, 217146, 217147, 217148, 217149, 217150} },
{"Stalwart Clutch", {217152, 12115, 217151, 217153, 217154, 217155, 217156, 217157, 217158, 217159, 217160, 217161, 217162, 217163} },
{"Bloodsail Admiral's Hat", {217165, 12185, 217164, 217166, 217167, 217168, 217169, 217170, 217171, 217172, 217173, 217174, 217175, 217176} },
{"Smoldering Claw", {6012243, 12243, 217177, 217178, 217179, 217180, 217181, 217183, 217184, 217185, 217186, 217187, 217188, 217189} },
{"Pale Leggings", {217297, 12255, 217296, 217298, 217299, 217300, 217301, 217302, 217303, 217304, 217305, 217306, 217307, 217308} },
{"Cindercloth Leggings", {217310, 12256, 217309, 217311, 217312, 217313, 217314, 217315, 217316, 217317, 217318, 217319, 217320, 217321} },
{"Seal of Ascension", {217401, 12344, 217400, 217402, 217403, 217404, 217405, 217406, 217407, 217408, 217409, 217410, 217411, 217412} },
{"Thorium Armor", {217414, 12405, 217413, 217415, 217416, 217417, 217418, 217419, 217420, 217421, 217422, 217423, 217424, 217425} },
{"Thorium Belt", {217427, 12406, 217426, 217428, 217429, 217430, 217431, 217432, 217433, 217434, 217435, 217436, 217437, 217438} },
{"Thorium Bracers", {217440, 12408, 217439, 217441, 217442, 217443, 217444, 217445, 217446, 217447, 217448, 217449, 217450, 217451} },
{"Thorium Boots", {217453, 12409, 217452, 217454, 217455, 217456, 217457, 217458, 217459, 217460, 217461, 217462, 217463, 217464} },
{"Thorium Helm", {217466, 12410, 217465, 217467, 217468, 217469, 217470, 217471, 217472, 217473, 217474, 217475, 217476, 217477} },
{"Thorium Leggings", {217479, 12414, 217478, 217480, 217481, 217482, 217483, 217484, 217485, 217486, 217487, 217488, 217489, 217490} },
{"Radiant Breastplate", {217492, 12415, 217491, 217493, 217494, 217495, 217496, 217497, 217498, 217499, 217500, 217501, 217502, 217503} },
{"Radiant Belt", {217505, 12416, 217504, 217506, 217507, 217508, 217509, 217510, 217511, 217512, 217513, 217514, 217515, 217516} },
{"Radiant Circlet", {217518, 12417, 217517, 217519, 217520, 217521, 217522, 217523, 217524, 217525, 217526, 217527, 217528, 217529} },
{"Radiant Gloves", {217531, 12418, 217530, 217532, 217533, 217534, 217535, 217536, 217537, 217538, 217539, 217540, 217541, 217542} },
{"Radiant Boots", {217544, 12419, 217543, 217545, 217546, 217547, 217548, 217549, 217550, 217551, 217552, 217553, 217554, 217555} },
{"Radiant Leggings", {217557, 12420, 217556, 217558, 217559, 217560, 217561, 217562, 217563, 217564, 217565, 217566, 217567, 217568} },
{"Imperial Plate Chest", {217570, 12422, 217569, 217571, 217572, 217573, 217574, 217575, 217576, 217577, 217578, 217579, 217580, 217581} },
{"Imperial Plate Belt", {217583, 12424, 217582, 217584, 217585, 217586, 217587, 217588, 217589, 217590, 217591, 217592, 217593, 217594} },
{"Imperial Plate Bracers", {217596, 12425, 217595, 217597, 217598, 217599, 217600, 217601, 217602, 217603, 217604, 217605, 217606, 217607} },
{"Imperial Plate Boots", {217609, 12426, 217608, 217610, 217611, 217612, 217613, 217614, 217615, 217616, 217617, 217618, 217619, 217620} },
{"Imperial Plate Helm", {217622, 12427, 217621, 217623, 217624, 217625, 217626, 217627, 217628, 217629, 217630, 217631, 217632, 217633} },
{"Imperial Plate Shoulders", {217635, 12428, 217634, 217636, 217637, 217638, 217639, 217640, 217641, 217642, 217643, 217644, 217645, 217646} },
{"Imperial Plate Leggings", {217648, 12429, 217647, 217649, 217650, 217651, 217652, 217653, 217654, 217655, 217656, 217657, 217658, 217659} },
{"Embrace of the Wind Serpent", {6012462, 12462, 217660, 217661, 217662, 217663, 217664, 217665, 217666, 217667, 217668, 217669, 217670, 217671} },
{"Drakefang Butcher", {6012463, 12463, 217672, 217673, 217674, 217675, 217676, 217677, 217678, 217679, 217680, 217681, 217682, 217683} },
{"Bloodfire Talons", {6012464, 12464, 217684, 217685, 217686, 217687, 217688, 217689, 217690, 217691, 217692, 217693, 217694, 217695} },
{"Nightfall Drape", {6012465, 12465, 217696, 217697, 217698, 217699, 217700, 217701, 217702, 217703, 217704, 217705, 217706, 217707} },
{"Dawnspire Cord", {6012466, 12466, 217708, 217709, 217710, 217711, 217712, 217713, 217714, 217715, 217716, 217717, 217718, 217719} },
{"Mutilator", {6012469, 12469, 217720, 217721, 217722, 217723, 217724, 217725, 217726, 217727, 217728, 217729, 217730, 217731} },
{"Sandstalker Ankleguards", {6012470, 12470, 217732, 217733, 217734, 217735, 217736, 217737, 217738, 217739, 217740, 217741, 217742, 217743} },
{"Desertwalker Cane", {6012471, 12471, 217744, 217745, 217746, 217747, 217748, 217749, 217750, 217751, 217752, 217753, 217754, 217755} },
{"Ribsplitter", {6012527, 12527, 217769, 217770, 217771, 217772, 217773, 217774, 217775, 217776, 217777, 217778, 217779, 217780} },
{"The Judge's Gavel", {6012528, 12528, 217781, 217783, 217784, 217785, 217786, 217787, 217788, 217789, 217790, 217791, 217792, 217793} },
{"Searing Needle", {6012531, 12531, 217794, 217795, 217796, 217797, 217798, 217799, 217800, 217801, 217802, 217803, 217804, 217805} },
{"Spire of the Stoneshaper", {6012532, 12532, 217806, 217807, 217808, 217809, 217810, 217811, 217812, 217813, 217814, 217815, 217816, 217817} },
{"Doomforged Straightedge", {6012535, 12535, 217818, 217819, 217820, 217821, 217822, 217823, 217824, 217825, 217826, 217827, 217828, 217829} },
{"Funeral Pyre Vestment", {6012542, 12542, 217830, 217831, 217832, 217833, 217834, 217835, 217836, 217837, 217838, 217839, 217840, 217841} },
{"Songstone of Ironforge", {6012543, 12543, 217842, 217843, 217844, 217845, 217846, 217847, 217848, 217849, 217850, 217851, 217852, 217853} },
{"Thrall's Resolve", {6012544, 12544, 217854, 217855, 217856, 217857, 217858, 217859, 217860, 217861, 217862, 217863, 217864, 217865} },
{"Eye of Orgrimmar", {6012545, 12545, 217866, 217867, 217868, 217869, 217870, 217871, 217872, 217873, 217874, 217875, 217876, 217877} },
{"Aristocratic Cuffs", {6012546, 12546, 217878, 217879, 217880, 217881, 217882, 217883, 217884, 217885, 217886, 217887, 217888, 217889} },
{"Mar Alom's Grip", {6012547, 12547, 217890, 217891, 217892, 217893, 217894, 217895, 217896, 217897, 217898, 217899, 217900, 217901} },
{"Magni's Will", {6012548, 12548, 217902, 217903, 217904, 217905, 217906, 217907, 217908, 217909, 217910, 217911, 217912, 217913} },
{"Braincage", {6012549, 12549, 217914, 217915, 217916, 217917, 217918, 217919, 217920, 217921, 217922, 217923, 217924, 217925} },
{"Runed Golem Shackles", {6012550, 12550, 217926, 217927, 217928, 217929, 217930, 217931, 217932, 217933, 217934, 217935, 217936, 217937} },
{"Stoneshield Cloak", {6012551, 12551, 217938, 217939, 217940, 217941, 217942, 217943, 217944, 217945, 217946, 217947, 217948, 217949} },
{"Blisterbane Wrap", {6012552, 12552, 217950, 217951, 217952, 217953, 217954, 217955, 217956, 217957, 217958, 217959, 217960, 217961} },
{"Swiftwalker Boots", {6012553, 12553, 217962, 217963, 217964, 217965, 217966, 217967, 217968, 217969, 217970, 217971, 217972, 217973} },
{"Hands of the Exalted Herald", {6012554, 12554, 217974, 217975, 217976, 217977, 217978, 217979, 217980, 217981, 217982, 217983, 217984, 217985} },
{"Battlechaser's Greaves", {6012555, 12555, 217986, 217987, 217988, 217989, 217990, 217991, 217992, 217993, 217994, 217995, 217996, 217997} },
{"High Priestess Boots", {6012556, 12556, 217998, 217999, 218000, 218001, 218002, 218003, 218004, 218005, 218006, 218007, 218008, 218009} },
{"Ebonsteel Spaulders", {6012557, 12557, 218010, 218011, 218012, 218013, 218014, 218015, 218016, 218017, 218018, 218019, 218020, 218021} },
{"Keris of Zul'Serak", {6012582, 12582, 120742, 212582, 1003053, 1010655, 1017323, 1023936, 1030500, 1037063, 1043626, 1050189, 1056752, 1063315} },
{"Blackhand Doomsaw", {6012583, 12583, 100304, 212583, 1003054, 1010656, 1017324, 1023937, 1030501, 1037064, 1043627, 1050190, 1056753, 1063316} },
{"Eye of Rend", {6012587, 12587, 113507, 212587, 1003055, 1010657, 1017325, 1023938, 1030502, 1037065, 1043628, 1050191, 1056754, 1063317} },
{"Bonespike Shoulder", {6012588, 12588, 218034, 218035, 218036, 218037, 218038, 218039, 218040, 218041, 218042, 218043, 218044, 218045} },
{"Dustfeather Sash", {6012589, 12589, 103877, 212589, 1003056, 1010658, 1017326, 1023939, 1030503, 1037066, 1043629, 1050192, 1056755, 1063318} },
{"Felstriker", {6012590, 12590, 114140, 212590, 1003057, 1010659, 1017327, 1023940, 1030504, 1037067, 1043630, 1050193, 1056756, 1063319} },
{"Blackblade of Shahram", {6012592, 12592, 100297, 212592, 1003059, 1010660, 1017328, 1023941, 1030505, 1037068, 1043631, 1050194, 1056757, 1063320} },
{"Draconian Deflector", {6012602, 12602, 102336, 212602, 1003060, 1010661, 1017329, 1023942, 1030506, 1037069, 1043632, 1050195, 1056758, 1063321} },
{"Nightbrace Tunic", {6012603, 12603, 123071, 212603, 1003062, 1010662, 1017330, 1023943, 1030507, 1037070, 1043633, 1050196, 1056759, 1063322} },
{"Starfire Tiara", {6012604, 12604, 128504, 212604, 1003063, 1010663, 1017331, 1023944, 1030508, 1037071, 1043634, 1050197, 1056760, 1063323} },
{"Serpentine Skuller", {6012605, 12605, 123741, 212605, 1003064, 1010664, 1017332, 1023945, 1030509, 1037072, 1043635, 1050198, 1056761, 1063324} },
{"Crystallized Girdle", {6012606, 12606, 100954, 212606, 1003069, 1010665, 1017333, 1023946, 1030510, 1037073, 1043636, 1050199, 1056762, 1063325} },
{"Butcher's Apron", {6012608, 12608, 100703, 212608, 1003073, 1010666, 1017334, 1023947, 1030511, 1037074, 1043637, 1050200, 1056763, 1063326} },
{"Polychromatic Visionwrap", {6012609, 12609, 123427, 212609, 1003074, 1010667, 1017335, 1023948, 1030512, 1037075, 1043638, 1050201, 1056764, 1063327} },
{"Runic Plate Shoulders", {218049, 12610, 218046, 218050, 218051, 218052, 218053, 218054, 218055, 218056, 218057, 218058, 218059, 218060} },
{"Runic Plate Boots", {218062, 12611, 218061, 218063, 218064, 218065, 218066, 218067, 218068, 218069, 218070, 218071, 218072, 218073} },
{"Runic Plate Helm", {218075, 12612, 218074, 218076, 218077, 218078, 218079, 218080, 218081, 218082, 218083, 218084, 218085, 218086} },
{"Runic Breastplate", {218088, 12613, 218087, 218089, 218090, 218091, 218092, 218093, 218094, 218095, 218096, 218097, 218098, 218099} },
{"Runic Plate Leggings", {218101, 12614, 218100, 218105, 218106, 218107, 218108, 218109, 218110, 218111, 218112, 218113, 218114, 218115} },
{"Savage Mail Tunic", {218117, 12615, 218116, 218118, 218119, 218120, 218121, 218122, 218123, 218124, 218125, 218126, 218127, 218128} },
{"Savage Mail Boots", {218130, 12616, 218129, 218131, 218132, 218133, 218134, 218135, 218136, 218137, 218138, 218139, 218140, 218141} },
{"Savage Mail Shoulders", {218143, 12617, 218142, 218144, 218145, 218146, 218147, 218148, 218149, 218150, 218151, 218152, 218153, 218154} },
{"Enchanted Thorium Breastplate", {6012618, 12618, 218155, 218156, 218157, 218158, 218159, 218160, 218161, 218162, 218163, 218164, 218165, 218166} },
{"Enchanted Thorium Leggings", {6012619, 12619, 218167, 218168, 218169, 218170, 218171, 218172, 218173, 218174, 218175, 218176, 218177, 218178} },
{"Enchanted Thorium Helm", {6012620, 12620, 218179, 218180, 218181, 218182, 218183, 218184, 218185, 218186, 218187, 218188, 218189, 218190} },
{"Demonfork", {6012621, 12621, 102233, 212621, 1003075, 1010668, 1017336, 1023949, 1030513, 1037076, 1043639, 1050202, 1056765, 1063328} },
{"Wildthorn Mail", {6012624, 12624, 218191, 218192, 218193, 218194, 218195, 218196, 218197, 218198, 218199, 218200, 218201, 218202} },
{"Dawnbringer Shoulders", {6012625, 12625, 218204, 218206, 218207, 218208, 218209, 218210, 218211, 218212, 218213, 218214, 218215, 218216} },
{"Funeral Cuffs", {6012626, 12626, 116221, 212626, 1003076, 1010669, 1017337, 1023950, 1030514, 1037077, 1043640, 1050203, 1056766, 1063329} },
{"Demon Forged Breastplate", {6012628, 12628, 218217, 218218, 218219, 218220, 218221, 218222, 218223, 218224, 218225, 218226, 218227, 218228} },
{"Fiery Plate Gauntlets", {6012631, 12631, 218229, 218230, 218231, 218232, 218233, 218234, 218235, 218236, 218237, 218238, 218239, 218240} },
{"Storm Gauntlets", {6012632, 12632, 218241, 218242, 218243, 218244, 218245, 218246, 218247, 218248, 218249, 218250, 218251, 218252} },
{"Whitesoul Helm", {6012633, 12633, 218253, 218254, 218255, 218256, 218257, 218258, 218259, 218260, 218261, 218262, 218263, 218264} },
{"Chiselbrand Girdle", {6012634, 12634, 100763, 212634, 1003077, 1010670, 1017338, 1023951, 1030515, 1037078, 1043641, 1050204, 1056767, 1063330} },
{"Helm of the Great Chief", {6012636, 12636, 218265, 218266, 218267, 218268, 218269, 218270, 218271, 218272, 218273, 218274, 218275, 218276} },
{"Backusarian Gauntlets", {6012637, 12637, 100195, 212637, 1003078, 1010671, 1017339, 1023952, 1030516, 1037079, 1043642, 1050205, 1056768, 1063331} },
{"Stronghold Gauntlets", {6012639, 12639, 218277, 218278, 218279, 218280, 218281, 218282, 218283, 218284, 218285, 218286, 218287, 218288} },
{"Lionheart Helm", {6012640, 12640, 218289, 218290, 218291, 218292, 218293, 218294, 218295, 218296, 218297, 218298, 218299, 218300} },
{"Invulnerable Mail", {6012641, 12641, 218301, 218302, 218303, 218304, 218305, 218306, 218307, 218308, 218309, 218310, 218311, 218312} },
{"Blackcrow", {6012651, 12651, 100298, 212651, 1003079, 1010672, 1017340, 1023953, 1030517, 1037080, 1043643, 1050206, 1056769, 1063332} },
{"Riphook", {6012653, 12653, 123612, 212653, 1003081, 1010673, 1017341, 1023954, 1030518, 1037081, 1043644, 1050207, 1056770, 1063333} },
{"Finkle's Skinner", {6012709, 12709, 114660, 212709, 1003082, 1010674, 1017342, 1023955, 1030519, 1037082, 1043645, 1050208, 1056771, 1063334} },
{"Cap of the Scarlet Savant", {6012752, 12752, 218313, 218314, 218315, 218316, 218317, 218318, 218319, 218320, 218321, 218322, 218323, 218324} },
{"Leggings of Arcana", {6012756, 12756, 218325, 218326, 218327, 218328, 218329, 218330, 218331, 218332, 218333, 218334, 218335, 218336} },
{"Breastplate of Bloodthirst", {6012757, 12757, 218337, 218338, 218339, 218340, 218341, 218342, 218343, 218344, 218345, 218346, 218347, 218348} },
{"Thorium Greatsword", {218350, 12764, 218349, 218351, 218352, 218353, 218354, 218355, 218356, 218357, 218358, 218359, 218360, 218361} },
{"Bleakwood Hew", {6012769, 12769, 218362, 218363, 218364, 218365, 218366, 218367, 218368, 218369, 218370, 218371, 218372, 218373} },
{"Inlaid Thorium Hammer", {218375, 12772, 218374, 218376, 218377, 218378, 218379, 218380, 218381, 218382, 218383, 218384, 218385, 218386} },
{"Ornate Thorium Handaxe", {218388, 12773, 218387, 218389, 218390, 218391, 218392, 218393, 218394, 218395, 218396, 218397, 218398, 218399} },
{"Dawn's Edge", {6012774, 12774, 218400, 218401, 218402, 218405, 218407, 218408, 218409, 218410, 218411, 218412, 218413, 218414} },
{"Huge Thorium Battleaxe", {218416, 12775, 218415, 218417, 218418, 218419, 218420, 218421, 218422, 218423, 218424, 218425, 218426, 218427} },
{"Enchanted Battlehammer", {6012776, 12776, 218428, 218429, 218430, 218431, 218432, 218433, 218434, 218435, 218436, 218437, 218438, 218439} },
{"Blazing Rapier", {6012777, 12777, 218440, 218441, 218442, 218443, 218444, 218445, 218446, 218447, 218448, 218449, 218450, 218451} },
{"Rune Edge", {218453, 12779, 218452, 218454, 218455, 218456, 218457, 218458, 218459, 218460, 218461, 218462, 218463, 218464} },
{"Serenity", {6012781, 12781, 218465, 218466, 218467, 218468, 218469, 218470, 218471, 218472, 218473, 218474, 218475, 218476} },
{"Corruption", {6012782, 12782, 218477, 218478, 218479, 218480, 218481, 218482, 218483, 218484, 218485, 218486, 218487, 218488} },
{"Heartseeker", {6012783, 12783, 218489, 218490, 218491, 218492, 218493, 218494, 218495, 218496, 218497, 218498, 218499, 218500} },
{"Arcanite Reaper", {6012784, 12784, 218501, 218502, 218503, 218504, 218505, 218506, 218507, 218508, 218509, 218510, 218511, 218512} },
{"Arcanite Champion", {6012790, 12790, 218513, 218514, 218515, 218516, 218517, 218518, 218519, 218520, 218521, 218522, 218523, 218524} },
{"Barman Shanker", {6012791, 12791, 218525, 218526, 218527, 218528, 218529, 218530, 218531, 218532, 218533, 218534, 218535, 218536} },
{"Volcanic Hammer", {218538, 12792, 218537, 218539, 218540, 218541, 218542, 218543, 218544, 218545, 218546, 218547, 218548, 218549} },
{"Mixologist's Tunic", {6012793, 12793, 218550, 218551, 218552, 218553, 218554, 218555, 218556, 218557, 218558, 218559, 218560, 218561} },
{"Masterwork Stormhammer", {6012794, 12794, 218562, 218565, 218566, 218567, 218568, 218569, 218570, 218571, 218572, 218573, 218574, 218575} },
{"Blood Talon", {6012795, 12795, 218576, 218577, 218578, 218579, 218580, 218581, 218582, 218583, 218584, 218585, 218586, 218587} },
{"Hammer of the Titans", {6012796, 12796, 218588, 218589, 218590, 218591, 218592, 218593, 218594, 218595, 218596, 218597, 218598, 218599} },
{"Frostguard", {6012797, 12797, 218600, 218601, 218602, 218603, 218604, 218605, 218606, 218607, 218610, 218611, 218612, 218613} },
{"Annihilator", {6012798, 12798, 218614, 218615, 218616, 218617, 218618, 218619, 218620, 218621, 218622, 218623, 218624, 218625} },
{"Darkspear", {6012802, 12802, 218626, 218627, 218628, 218629, 218630, 218631, 218632, 218633, 218634, 218635, 218636, 218637} },
{"Breastplate of the Chromatic Flight", {6012895, 12895, 218652, 218653, 218654, 218655, 218656, 218657, 218658, 218659, 218660, 218661, 218662, 218663} },
{"Legguards of the Chromatic Defier", {6012903, 12903, 218664, 218665, 218666, 218667, 218668, 218669, 218670, 218671, 218672, 218673, 218674, 218675} },
{"Shawn's Super Special Swami Hat", {218677, 12904, 218676, 218678, 218679, 218680, 218681, 218682, 218683, 218684, 218685, 218686, 218687, 218688} },
{"Wildfire Cape", {6012905, 12905, 130837, 212905, 1003084, 1010675, 1017343, 1023956, 1030520, 1037083, 1043646, 1050209, 1056772, 1063335} },
{"Flaming Band", {6012926, 12926, 115486, 212926, 1003085, 1010676, 1017344, 1023957, 1030521, 1037084, 1043647, 1050210, 1056773, 1063336} },
{"Truestrike Shoulders", {6012927, 12927, 130475, 212927, 1003086, 1010677, 1017345, 1023958, 1030522, 1037085, 1043648, 1050211, 1056774, 1063337} },
{"Emberfury Talisman", {6012929, 12929, 112956, 212929, 1003087, 1010678, 1017346, 1023959, 1030523, 1037086, 1043649, 1050212, 1056775, 1063338} },
{"Briarwood Reed", {6012930, 12930, 100690, 212930, 1003090, 1010679, 1017347, 1023960, 1030524, 1037087, 1043650, 1050213, 1056776, 1063339} },
{"Warmaster Legguards", {6012935, 12935, 130779, 212935, 1003091, 1010680, 1017348, 1023961, 1030525, 1037088, 1043651, 1050214, 1056777, 1063340} },
{"Battleborn Armbraces", {6012936, 12936, 100235, 212936, 1003093, 1010681, 1017349, 1023962, 1030526, 1037089, 1043652, 1050215, 1056778, 1063341} },
{"Dal'Rend's Tribal Guardian", {6012939, 12939, 100981, 212939, 1003094, 1010682, 1017350, 1023963, 1030527, 1037090, 1043653, 1050216, 1056779, 1063342} },
{"Dal'Rend's Sacred Charge", {6012940, 12940, 100980, 212940, 1003096, 1010683, 1017351, 1023964, 1030528, 1037091, 1043654, 1050217, 1056780, 1063343} },
{"Legplates of the Chromatic Defier", {6012945, 12945, 218689, 218690, 218691, 218692, 218693, 218694, 218695, 218696, 218697, 218698, 218699, 218700} },
{"Alex's Ring of Audacity", {218702, 12947, 218701, 218704, 218705, 218706, 218707, 218708, 218709, 218710, 218711, 218712, 218714, 218716} },
{"Gyth's Skull", {6012952, 12952, 120407, 212952, 1003097, 1010684, 1017352, 1023965, 1030529, 1037092, 1043655, 1050218, 1056781, 1063344} },
{"Dragoneye Coif", {6012953, 12953, 102353, 212953, 1003098, 1010685, 1017353, 1023966, 1030530, 1037093, 1043656, 1050219, 1056782, 1063345} },
{"Tribal War Feathers", {6012960, 12960, 130469, 212960, 1003100, 1010686, 1017354, 1023967, 1030531, 1037094, 1043657, 1050220, 1056783, 1063346} },
{"Blademaster Leggings", {6012963, 12963, 100317, 212963, 1003101, 1010687, 1017355, 1023968, 1030532, 1037095, 1043658, 1050221, 1056784, 1063347} },
{"Tristam Legguards", {6012964, 12964, 130471, 212964, 1003102, 1010688, 1017356, 1023969, 1030533, 1037096, 1043659, 1050222, 1056785, 1063348} },
{"Spiritshroud Leggings", {6012965, 12965, 128241, 212965, 1003104, 1010689, 1017357, 1023970, 1030534, 1037097, 1043660, 1050223, 1056786, 1063349} },
{"Blackmist Armguards", {6012966, 12966, 100306, 212966, 1003105, 1010690, 1017358, 1023971, 1030535, 1037098, 1043661, 1050224, 1056787, 1063350} },
{"Bloodmoon Cloak", {6012967, 12967, 100373, 212967, 1003106, 1010691, 1017359, 1023972, 1030536, 1037099, 1043662, 1050225, 1056788, 1063351} },
{"Frostweaver Cape", {6012968, 12968, 116162, 212968, 1003108, 1010692, 1017360, 1023973, 1030537, 1037100, 1043663, 1050226, 1056789, 1063352} },
{"Seeping Willow", {6012969, 12969, 123734, 212969, 1003109, 1010693, 1017361, 1023974, 1030538, 1037101, 1043664, 1050227, 1056790, 1063353} },
{"General's Ceremonial Plate", {6012970, 12970, 218717, 218718, 218719, 218720, 218721, 218722, 218723, 218724, 218725, 218726, 218727, 218728} },
{"Staff of Hale Magefire", {6013000, 13000, 313000, 213000, 1003110, 1010694, 1017362, 1023975, 1030539, 1037102, 1043665, 1050228, 1056791, 1063354} },
{"Maiden's Circle", {6013001, 13001, 313001, 213001, 1003113, 1010695, 1017363, 1023976, 1030540, 1037103, 1043666, 1050229, 1056792, 1063355} },
{"Lady Alizabeth's Pendant", {6013002, 13002, 313002, 213002, 1003114, 1010696, 1017364, 1023977, 1030541, 1037104, 1043667, 1050230, 1056793, 1063356} },
{"Lord Alexander's Battle Axe", {6013003, 13003, 313003, 213003, 1003115, 1010697, 1017365, 1023978, 1030542, 1037105, 1043668, 1050231, 1056794, 1063357} },
{"Torch of Austen", {6013004, 13004, 313004, 213004, 1003116, 1010698, 1017366, 1023979, 1030543, 1037106, 1043669, 1050232, 1056795, 1063358} },
{"Mass of McGowan", {6013006, 13006, 313006, 213006, 1003118, 1010699, 1017367, 1023980, 1030544, 1037107, 1043670, 1050233, 1056796, 1063359} },
{"Mageflame Cloak", {6013007, 13007, 313007, 213007, 1003119, 1010700, 1017368, 1023981, 1030545, 1037108, 1043671, 1050234, 1056797, 1063360} },
{"Dalewind Trousers", {6013008, 13008, 313008, 213008, 1003120, 1010701, 1017369, 1023982, 1030546, 1037109, 1043672, 1050235, 1056798, 1063361} },
{"Cow King's Hide", {6013009, 13009, 313009, 213009, 1003121, 1010702, 1017370, 1023983, 1030547, 1037110, 1043673, 1050236, 1056799, 1063362} },
{"Elder Wizard's Mantle", {6013013, 13013, 313013, 213013, 1003122, 1010703, 1017371, 1023984, 1030548, 1037111, 1043674, 1050237, 1056800, 1063363} },
{"Axe of Rin'ji", {6013014, 13014, 100183, 213014, 1003124, 1010704, 1017372, 1023985, 1030549, 1037112, 1043675, 1050238, 1056801, 1063364} },
{"Serathil", {6013015, 13015, 313015, 213015, 1003125, 1010705, 1017373, 1023986, 1030550, 1037113, 1043676, 1050239, 1056802, 1063365} },
{"Executioner's Cleaver", {6013018, 13018, 219098, 219099, 219100, 219101, 219102, 219103, 219104, 219105, 219106, 219107, 219108, 219109} },
{"Needle Threader", {6013021, 13021, 219141, 219148, 219149, 219150, 219151, 219152, 219153, 219154, 219155, 219156, 219157, 219158} },
{"Gryphonwing Long Bow", {6013022, 13022, 313022, 213022, 1003126, 1010706, 1017374, 1023987, 1030551, 1037114, 1043677, 1050240, 1056803, 1063366} },
{"Eaglehorn Long Bow", {6013023, 13023, 313023, 213023, 1003128, 1010707, 1017375, 1023988, 1030552, 1037115, 1043678, 1050241, 1056804, 1063367} },
{"Heaven's Light", {6013026, 13026, 219185, 219186, 219187, 219188, 219189, 219190, 219191, 219192, 219193, 219194, 219195, 219196} },
{"Bonesnapper", {6013027, 13027, 100445, 213027, 1003129, 1010708, 1017376, 1023989, 1030553, 1037116, 1043679, 1050242, 1056805, 1063368} },
{"Bludstone Hammer", {6013028, 13028, 313028, 213028, 1003130, 1010709, 1017377, 1023990, 1030554, 1037117, 1043680, 1050243, 1056806, 1063369} },
{"Basilisk Bone", {6013030, 13030, 313030, 213030, 1003131, 1010710, 1017378, 1023991, 1030555, 1037118, 1043681, 1050244, 1056807, 1063370} },
{"Serpent Slicer", {6013035, 13035, 219262, 219263, 219264, 219265, 219266, 219267, 219268, 219269, 219270, 219271, 219272, 219273} },
{"Assassination Blade", {6013036, 13036, 313036, 213036, 1003132, 1010711, 1017379, 1023992, 1030556, 1037119, 1043682, 1050245, 1056808, 1063371} },
{"Skull Splitting Crossbow", {6013039, 13039, 219300, 219301, 219302, 219303, 219304, 219305, 219306, 219307, 219308, 219309, 219310, 219311} },
{"Heartseeking Crossbow", {6013040, 13040, 313040, 213040, 1003133, 1010712, 1017380, 1023993, 1030557, 1037120, 1043683, 1050246, 1056809, 1063372} },
{"Blade of the Titans", {6013043, 13043, 219409, 219410, 219411, 219412, 219413, 219414, 219415, 219416, 219417, 219418, 219419, 219420} },
{"Demonslayer", {6013044, 13044, 313044, 213044, 1003135, 1010713, 1017381, 1023994, 1030558, 1037121, 1043684, 1050247, 1056810, 1063373} },
{"Blanchard's Stout", {6013046, 13046, 100321, 213046, 1003136, 1010714, 1017382, 1023995, 1030559, 1037122, 1043685, 1050248, 1056811, 1063374} },
{"Twig of the World Tree", {6013047, 13047, 313047, 213047, 1003137, 1010715, 1017383, 1023996, 1030560, 1037123, 1043686, 1050249, 1056812, 1063375} },
{"Warmonger", {6013052, 13052, 130797, 213052, 1003140, 1010716, 1017384, 1023997, 1030561, 1037124, 1043687, 1050250, 1056813, 1063376} },
{"Doombringer", {6013053, 13053, 313053, 213053, 1003141, 1010717, 1017385, 1023998, 1030562, 1037125, 1043688, 1050251, 1056814, 1063377} },
{"Bonechewer", {6013055, 13055, 219496, 219497, 219498, 219499, 219500, 219501, 219502, 219503, 219504, 219505, 219506, 219507} },
{"Frenzied Striker", {6013056, 13056, 313056, 213056, 1003142, 1010718, 1017386, 1023999, 1030563, 1037126, 1043689, 1050252, 1056815, 1063378} },
{"Stoneraven", {6013059, 13059, 128682, 213059, 1003143, 1010719, 1017387, 1024000, 1030564, 1037127, 1043690, 1050253, 1056816, 1063379} },
{"The Needler", {6013060, 13060, 313060, 213060, 1003145, 1010720, 1017388, 1024001, 1030565, 1037128, 1043691, 1050254, 1056817, 1063380} },
{"Wand of Allistarj", {6013065, 13065, 130755, 213065, 1003147, 1010721, 1017389, 1024002, 1030566, 1037129, 1043692, 1050255, 1056818, 1063381} },
{"Wyrmslayer Spaulders", {6013066, 13066, 313066, 213066, 1003148, 1010722, 1017390, 1024003, 1030567, 1037130, 1043693, 1050256, 1056819, 1063382} },
{"Hydralick Armor", {6013067, 13067, 313067, 213067, 1003149, 1010723, 1017391, 1024004, 1030568, 1037131, 1043694, 1050257, 1056820, 1063383} },
{"Sapphiron's Scale Boots", {6013070, 13070, 313070, 213070, 1003151, 1010724, 1017392, 1024005, 1030569, 1037132, 1043695, 1050258, 1056821, 1063384} },
{"Plated Fist of Hakoo", {6013071, 13071, 219586, 219587, 219588, 219589, 219590, 219591, 219592, 219593, 219594, 219595, 219596, 219597} },
{"Stonegrip Gauntlets", {6013072, 13072, 313072, 213072, 1003152, 1010725, 1017393, 1024006, 1030570, 1037133, 1043696, 1050259, 1056822, 1063385} },
{"Mugthol's Helm", {6013073, 13073, 313073, 213073, 1003153, 1010726, 1017394, 1024007, 1030571, 1037134, 1043697, 1050260, 1056823, 1063386} },
{"Golem Shard Leggings", {6013074, 13074, 219598, 219599, 219600, 219601, 219602, 219603, 219604, 219605, 219606, 219607, 219608, 219609} },
{"Direwing Legguards", {6013075, 13075, 313075, 213075, 1003154, 1010727, 1017395, 1024008, 1030572, 1037135, 1043698, 1050261, 1056824, 1063387} },
{"Giantslayer Bracers", {6013076, 13076, 219610, 219611, 219612, 219613, 219614, 219615, 219616, 219617, 219618, 219619, 219620, 219621} },
{"Girdle of Uther", {6013077, 13077, 313077, 213077, 1003155, 1010728, 1017396, 1024009, 1030573, 1037136, 1043699, 1050262, 1056825, 1063388} },
{"Widow's Clutch", {6013080, 13080, 219635, 219636, 219637, 219638, 219639, 219640, 219641, 219642, 219643, 219644, 219645, 219646} },
{"Mountainside Buckler", {6013082, 13082, 219660, 219661, 219662, 219663, 219664, 219665, 219666, 219667, 219668, 219669, 219670, 219671} },
{"Garrett Family Crest", {6013083, 13083, 313083, 213083, 1003157, 1010729, 1017397, 1024010, 1030574, 1037137, 1043700, 1050263, 1056826, 1063389} },
{"Horizon Choker", {6013085, 13085, 313085, 213085, 1003160, 1010730, 1017398, 1024011, 1030575, 1037138, 1043701, 1050264, 1056827, 1063390} },
{"Skibi's Pendant", {6013089, 13089, 219711, 219712, 219713, 219714, 219715, 219725, 219726, 219727, 219728, 219729, 219730, 219731} },
{"Breastplate of the Chosen", {6013090, 13090, 219732, 219733, 219734, 219735, 219736, 219737, 219738, 219739, 219740, 219741, 219742, 219743} },
{"Medallion of Grand Marshal Morris", {6013091, 13091, 313091, 213091, 1003161, 1010731, 1017399, 1024012, 1030576, 1037139, 1043702, 1050265, 1056828, 1063391} },
{"Dragonstalker Tunic", {6013092, 13092, 219744, 219745, 219746, 219747, 219748, 219749, 219750, 219751, 219752, 219753, 219754, 219755} },
{"Band of the Hierophant", {6013096, 13096, 313096, 213096, 1003164, 1010732, 1017400, 1024013, 1030577, 1037140, 1043703, 1050266, 1056829, 1063392} },
{"Painweaver Band", {6013098, 13098, 123180, 213098, 1003165, 1010733, 1017401, 1024014, 1030578, 1037141, 1043704, 1050267, 1056830, 1063393} },
{"Wolfrunner Shoes", {6013101, 13101, 313101, 213101, 1003166, 1010734, 1017402, 1024015, 1030579, 1037142, 1043705, 1050268, 1056831, 1063394} },
{"Cassandra's Grace", {6013102, 13102, 219883, 219902, 219911, 219914, 219916, 219917, 219924, 219926, 219931, 219932, 219933, 219934} },
{"Magiskull Cuffs", {6013107, 13107, 313107, 213107, 1003167, 1010735, 1017403, 1024016, 1030580, 1037143, 1043706, 1050269, 1056832, 1063395} },
{"Blackflame Cape", {6013109, 13109, 220011, 220012, 220013, 220014, 220015, 220016, 220017, 220018, 220019, 220020, 220021, 220022} },
{"Sandals of the Insurgent", {6013111, 13111, 313111, 213111, 1003169, 1010736, 1017404, 1024017, 1030581, 1037144, 1043707, 1050270, 1056833, 1063396} },
{"Winged Helm", {6013112, 13112, 220040, 220041, 220042, 220043, 220044, 220045, 220046, 220047, 220048, 220049, 220050, 220051} },
{"Feathermoon Headdress", {6013113, 13113, 313113, 213113, 1003172, 1010737, 1017405, 1024018, 1030582, 1037145, 1043708, 1050271, 1056834, 1063397} },
{"Sheepshear Mantle", {6013115, 13115, 220065, 220066, 220067, 220068, 220069, 220070, 220071, 220072, 220073, 220074, 220075, 220076} },
{"Spaulders of the Unseen", {6013116, 13116, 313116, 213116, 1003173, 1010738, 1017406, 1024019, 1030583, 1037146, 1043709, 1050272, 1056835, 1063398} },
{"Serpentine Sash", {6013118, 13118, 313118, 213118, 1003174, 1010739, 1017407, 1024020, 1030584, 1037147, 1043710, 1050273, 1056836, 1063399} },
{"Deepfury Bracers", {6013120, 13120, 313120, 213120, 1003175, 1010740, 1017408, 1024021, 1030585, 1037148, 1043711, 1050274, 1056837, 1063400} },
{"Dark Phantom Cape", {6013122, 13122, 313122, 213122, 1003176, 1010741, 1017409, 1024022, 1030586, 1037149, 1043712, 1050275, 1056838, 1063401} },
{"Dreamwalker Armor", {6013123, 13123, 313123, 213123, 1003177, 1010742, 1017410, 1024023, 1030587, 1037150, 1043713, 1050276, 1056839, 1063402} },
{"Elven Chain Boots", {6013125, 13125, 313125, 213125, 1003178, 1010743, 1017411, 1024024, 1030588, 1037151, 1043714, 1050277, 1056840, 1063403} },
{"Battlecaller Gauntlets", {6013126, 13126, 313126, 213126, 1003179, 1010744, 1017412, 1024025, 1030589, 1037152, 1043715, 1050278, 1056841, 1063404} },
{"High Bergg Helm", {6013128, 13128, 220142, 220143, 220144, 220145, 220146, 220147, 220148, 220149, 220150, 220151, 220152, 220153} },
{"Windrunner Legguards", {6013130, 13130, 313130, 213130, 1003180, 1010745, 1017413, 1024026, 1030590, 1037153, 1043716, 1050279, 1056842, 1063405} },
{"Drakesfire Epaulets", {6013133, 13133, 313133, 213133, 1003181, 1010746, 1017414, 1024027, 1030591, 1037154, 1043717, 1050280, 1056843, 1063406} },
{"Belt of the Gladiator", {6013134, 13134, 220193, 220194, 220195, 220196, 220197, 220198, 220199, 220200, 220201, 220202, 220203, 220204} },
{"Lordly Armguards", {6013135, 13135, 313135, 213135, 1003183, 1010747, 1017415, 1024028, 1030592, 1037155, 1043718, 1050281, 1056844, 1063407} },
{"Guttbuster", {6013139, 13139, 120405, 213139, 1003184, 1010748, 1017416, 1024029, 1030593, 1037156, 1043719, 1050282, 1056845, 1063408} },
{"Tooth of Gnarr", {6013141, 13141, 130435, 213141, 1003186, 1010749, 1017417, 1024030, 1030594, 1037157, 1043720, 1050283, 1056846, 1063409} },
{"Brigam Girdle", {6013142, 13142, 100691, 213142, 1003187, 1010750, 1017418, 1024031, 1030595, 1037158, 1043721, 1050284, 1056847, 1063410} },
{"Mark of the Dragon Lord", {6013143, 13143, 122744, 213143, 1003188, 1010751, 1017419, 1024032, 1030596, 1037159, 1043722, 1050285, 1056848, 1063411} },
{"Serenity Belt", {6013144, 13144, 313144, 213144, 1003189, 1010752, 1017420, 1024033, 1030597, 1037160, 1043723, 1050286, 1056849, 1063412} },
{"Shell Launcher Shotgun", {6013146, 13146, 313146, 213146, 1003192, 1010753, 1017421, 1024034, 1030598, 1037161, 1043724, 1050287, 1056850, 1063413} },
{"Chillpike", {6013148, 13148, 220267, 220268, 220269, 220270, 220271, 220272, 220273, 220274, 220275, 220276, 220277, 220278} },
{"Trindlehaven Staff", {6013161, 13161, 130470, 213161, 1003194, 1010754, 1017422, 1024035, 1030599, 1037162, 1043725, 1050288, 1056851, 1063414} },
{"Reiver Claws", {6013162, 13162, 123568, 213162, 1003195, 1010755, 1017423, 1024036, 1030600, 1037163, 1043726, 1050289, 1056852, 1063415} },
{"Relentless Scythe", {6013163, 13163, 123569, 213163, 1003197, 1010756, 1017424, 1024037, 1030601, 1037164, 1043727, 1050290, 1056853, 1063416} },
{"Heart of the Scale", {6013164, 13164, 220279, 220280, 220281, 220282, 220283, 220284, 220285, 220286, 220287, 220288, 220289, 220290} },
{"Slamshot Shoulders", {6013166, 13166, 124537, 213166, 1003198, 1010757, 1017425, 1024038, 1030602, 1037165, 1043728, 1050291, 1056854, 1063417} },
{"Fist of Omokk", {6013167, 13167, 115452, 213167, 1003199, 1010758, 1017426, 1024039, 1030603, 1037166, 1043729, 1050292, 1056855, 1063418} },
{"Plate of the Shaman King", {6013168, 13168, 123416, 213168, 1003201, 1010759, 1017427, 1024040, 1030604, 1037167, 1043730, 1050293, 1056856, 1063419} },
{"Tressermane Leggings", {6013169, 13169, 130468, 213169, 1003202, 1010760, 1017428, 1024041, 1030605, 1037168, 1043731, 1050294, 1056857, 1063420} },
{"Skyshroud Leggings", {6013170, 13170, 124532, 213170, 1003203, 1010761, 1017429, 1024042, 1030606, 1037169, 1043732, 1050295, 1056858, 1063421} },
{"Smokey's Lighter", {220292, 13171, 220291, 220293, 220294, 220295, 220296, 220297, 220298, 220299, 220300, 220301, 220302, 220303} },
{"Voone's Twitchbow", {220305, 13175, 220304, 220306, 220307, 220308, 220309, 220310, 220311, 220312, 220313, 220314, 220315, 220316} },
{"Talisman of Evasion", {6013177, 13177, 129745, 213177, 1003205, 1010762, 1017430, 1024043, 1030607, 1037170, 1043733, 1050296, 1056859, 1063422} },
{"Rosewine Circle", {6013178, 13178, 123644, 213178, 1003206, 1010763, 1017431, 1024044, 1030608, 1037171, 1043734, 1050297, 1056860, 1063423} },
{"Brazecore Armguards", {6013179, 13179, 100669, 213179, 1003207, 1010764, 1017432, 1024045, 1030609, 1037172, 1043735, 1050298, 1056861, 1063424} },
{"Demonskin Gloves", {6013181, 13181, 220317, 220318, 220319, 220320, 220321, 220322, 220323, 220324, 220325, 220326, 220327, 220328} },
{"Phase Blade", {6013182, 13182, 220329, 220330, 220331, 220332, 220333, 220334, 220335, 220336, 220337, 220338, 220339, 220340} },
{"Venomspitter", {6013183, 13183, 130613, 213183, 1003208, 1010765, 1017433, 1024046, 1030610, 1037173, 1043736, 1050299, 1056862, 1063425} },
{"Fallbrush Handgrips", {6013184, 13184, 113539, 213184, 1003209, 1010766, 1017434, 1024047, 1030611, 1037174, 1043737, 1050300, 1056863, 1063426} },
{"Sunderseer Mantle", {6013185, 13185, 128974, 213185, 1003211, 1010767, 1017435, 1024048, 1030612, 1037175, 1043738, 1050301, 1056864, 1063427} },
{"Hurd Smasher", {6013198, 13198, 120609, 213198, 1003212, 1010768, 1017436, 1024049, 1030613, 1037176, 1043739, 1050302, 1056865, 1063428} },
{"Armswake Cloak", {6013203, 13203, 100139, 213203, 1003213, 1010769, 1017437, 1024050, 1030614, 1037177, 1043740, 1050303, 1056866, 1063429} },
{"Bashguuder", {6013204, 13204, 100226, 213204, 1003214, 1010770, 1017438, 1024051, 1030615, 1037178, 1043741, 1050304, 1056867, 1063430} },
{"Rhombeard Protector", {6013205, 13205, 123588, 213205, 1003215, 1010771, 1017439, 1024052, 1030616, 1037179, 1043742, 1050305, 1056868, 1063431} },
{"Wolfshear Leggings", {6013206, 13206, 130941, 213206, 1003216, 1010772, 1017440, 1024053, 1030617, 1037180, 1043743, 1050306, 1056869, 1063432} },
{"Bleak Howler Armguards", {6013208, 13208, 100322, 213208, 1003217, 1010773, 1017441, 1024054, 1030618, 1037181, 1043744, 1050307, 1056870, 1063433} },
{"Seal of the Dawn", {6013209, 13209, 220354, 220355, 220356, 220357, 220358, 220359, 220360, 220361, 220362, 220363, 220364, 220365} },
{"Pads of the Dread Wolf", {6013210, 13210, 123179, 213210, 1003219, 1010774, 1017442, 1024055, 1030619, 1037182, 1043745, 1050308, 1056871, 1063434} },
{"Slashclaw Bracers", {6013211, 13211, 124538, 213211, 1003220, 1010775, 1017443, 1024056, 1030620, 1037183, 1043746, 1050309, 1056872, 1063435} },
{"Halycon's Spiked Collar", {6013212, 13212, 120446, 213212, 1003221, 1010776, 1017444, 1024057, 1030621, 1037184, 1043747, 1050310, 1056873, 1063436} },
{"Smolderweb's Eye", {6013213, 13213, 127391, 213213, 1003222, 1010777, 1017445, 1024058, 1030622, 1037185, 1043748, 1050311, 1056874, 1063437} },
{"Crown of the Penitent", {220367, 13216, 220366, 220368, 220369, 220370, 220371, 220372, 220373, 220374, 220375, 220376, 220377, 220378} },
{"Band of the Penitent", {220380, 13217, 220379, 220381, 220382, 220383, 220384, 220385, 220386, 220387, 220388, 220389, 220390, 220391} },
{"Fang of the Crystal Spider", {6013218, 13218, 113572, 213218, 1003224, 1010778, 1017446, 1024059, 1030623, 1037186, 1043749, 1050312, 1056875, 1063438} },
{"Deprecated Stormrage Boots", {220393, 13242, 220392, 220394, 220395, 220396, 220397, 220398, 220399, 220400, 220401, 220402, 220403, 220404} },
{"Argent Defender", {6013243, 13243, 220405, 220406, 220407, 220408, 220409, 220410, 220411, 220412, 220413, 220414, 220415, 220416} },
{"Gilded Gauntlets", {6013244, 13244, 117427, 213244, 1003225, 1010779, 1017447, 1024060, 1030624, 1037187, 1043750, 1050313, 1056876, 1063439} },
{"Argent Avenger", {6013246, 13246, 220429, 220430, 220431, 220432, 220433, 220434, 220435, 220436, 220437, 220438, 220439, 220440} },
{"Burstshot Harquebus", {6013248, 13248, 220441, 220442, 220443, 220444, 220445, 220446, 220447, 220448, 220449, 220450, 220451, 220452} },
{"Argent Crusader", {6013249, 13249, 220453, 220454, 220455, 220456, 220457, 220458, 220459, 220460, 220461, 220462, 220463, 220464} },
{"Cloudrunner Girdle", {6013252, 13252, 100820, 213252, 1003226, 1010780, 1017448, 1024061, 1030625, 1037188, 1043751, 1050314, 1056877, 1063440} },
{"Hands of Power", {6013253, 13253, 120461, 213253, 1003227, 1010781, 1017449, 1024062, 1030626, 1037189, 1043752, 1050315, 1056878, 1063441} },
{"Astral Guard", {6013254, 13254, 220465, 220466, 220467, 220468, 220469, 220470, 220471, 220472, 220473, 220474, 220475, 220476} },
{"Trueaim Gauntlets", {6013255, 13255, 130474, 213255, 1003228, 1010782, 1017450, 1024063, 1030627, 1037190, 1043753, 1050316, 1056879, 1063442} },
{"Demonic Runed Spaulders", {6013257, 13257, 102236, 213257, 1003230, 1010783, 1017451, 1024064, 1030628, 1037191, 1043754, 1050317, 1056880, 1063443} },
{"Slaghide Gauntlets", {6013258, 13258, 124536, 213258, 1003232, 1010784, 1017452, 1024065, 1030629, 1037192, 1043755, 1050318, 1056881, 1063444} },
{"Ribsteel Footguards", {6013259, 13259, 123589, 213259, 1003233, 1010785, 1017453, 1024066, 1030630, 1037193, 1043756, 1050319, 1056882, 1063445} },
{"Wind Dancer Boots", {6013260, 13260, 130849, 213260, 1003234, 1010786, 1017454, 1024067, 1030631, 1037194, 1043757, 1050320, 1056883, 1063446} },
{"Globe of D'sak", {6013261, 13261, 118581, 213261, 1003238, 1010787, 1017455, 1024068, 1030632, 1037195, 1043758, 1050321, 1056884, 1063447} },
{"Ashbringer", {100146, 13262, 100145, 213262, 1003239, 1010788, 1017456, 1024069, 1030633, 1037196, 1043759, 1050322, 1056885, 1063448} },
{"Ogreseer Tower Boots", {6013282, 13282, 123135, 213282, 1003240, 1010789, 1017457, 1024070, 1030634, 1037197, 1043760, 1050323, 1056886, 1063449} },
{"Magus Ring", {6013283, 13283, 122563, 213283, 1003241, 1010790, 1017458, 1024071, 1030635, 1037198, 1043761, 1050324, 1056887, 1063450} },
{"Swiftdart Battleboots", {6013284, 13284, 129242, 213284, 1003242, 1010791, 1017459, 1024072, 1030636, 1037199, 1043762, 1050325, 1056888, 1063451} },
{"The Blackrock Slicer", {6013285, 13285, 130332, 213285, 1003243, 1010792, 1017460, 1024073, 1030637, 1037200, 1043763, 1050326, 1056889, 1063452} },
{"Rivenspike", {6013286, 13286, 123615, 213286, 1003249, 1010793, 1017461, 1024074, 1030638, 1037201, 1043764, 1050327, 1056890, 1063453} },
{"Alanna's Embrace", {6013314, 13314, 220477, 220478, 220479, 220480, 220481, 220482, 220483, 220484, 220485, 220486, 220487, 220489} },
{"Testament of Hope", {220491, 13315, 220490, 220492, 220493, 220494, 220495, 220496, 220497, 220498, 220499, 220500, 220501, 220502} },
{"Cape of the Black Baron", {6013340, 13340, 220503, 220504, 220505, 220506, 220507, 220508, 220509, 220510, 220511, 220512, 220513, 220514} },
{"Dracorian Gauntlets", {6013344, 13344, 220515, 220516, 220517, 220518, 220519, 220520, 220521, 220522, 220523, 220524, 220525, 220526} },
{"Seal of Rivendare", {6013345, 13345, 220527, 220528, 220529, 220530, 220531, 220532, 220533, 220534, 220535, 220536, 220537, 220538} },
{"Robes of the Exalted", {6013346, 13346, 220539, 220540, 220541, 220542, 220543, 220544, 220545, 220546, 220547, 220548, 220549, 220550} },
{"Demonshear", {6013348, 13348, 220551, 220552, 220553, 220554, 220555, 220556, 220557, 220558, 220559, 220560, 220561, 220562} },
{"Scepter of the Unholy", {6013349, 13349, 220563, 220564, 220565, 220566, 220567, 220568, 220569, 220570, 220571, 220572, 220573, 220574} },
{"Book of the Dead", {6013353, 13353, 220575, 220576, 220577, 220578, 220579, 220580, 220581, 220582, 220583, 220584, 220585, 220586} },
{"Wyrmtongue Shoulders", {6013358, 13358, 220587, 220588, 220589, 220590, 220591, 220592, 220593, 220594, 220595, 220596, 220597, 220598} },
{"Crown of Tyranny", {6013359, 13359, 220599, 220600, 220601, 220602, 220603, 220604, 220605, 220606, 220607, 220608, 220609, 220610} },
{"Gift of the Elven Magi", {6013360, 13360, 220611, 220612, 220613, 220614, 220615, 220616, 220617, 220618, 220619, 220620, 220621, 220622} },
{"Skullforge Reaver", {6013361, 13361, 220623, 220624, 220625, 220626, 220627, 220628, 220629, 220630, 220631, 220632, 220633, 220634} },
{"Bonescraper", {6013368, 13368, 220635, 220636, 220637, 220638, 220639, 220640, 220641, 220642, 220643, 220644, 220645, 220646} },
{"Fire Striders", {6013369, 13369, 220647, 220648, 220649, 220650, 220651, 220652, 220653, 220654, 220655, 220656, 220657, 220658} },
{"Slavedriver's Cane", {6013372, 13372, 220672, 220673, 220674, 220675, 220676, 220677, 220678, 220679, 220680, 220681, 220682, 220683} },
{"Band of Flesh", {6013373, 13373, 220684, 220685, 220686, 220687, 220688, 220689, 220690, 220691, 220692, 220693, 220694, 220695} },
{"Soulstealer Mantle", {6013374, 13374, 220696, 220697, 220698, 220699, 220700, 220701, 220702, 220703, 220704, 220705, 220706, 220707} },
{"Crest of Retribution", {6013375, 13375, 220708, 220709, 220710, 220711, 220712, 220713, 220714, 220715, 220716, 220717, 220718, 220719} },
{"Royal Tribunal Cloak", {6013376, 13376, 220720, 220721, 220722, 220723, 220724, 220726, 220727, 220728, 220729, 220730, 220731, 220732} },
{"Songbird Blouse", {6013378, 13378, 220733, 220734, 220735, 220736, 220737, 220738, 220739, 220740, 220741, 220742, 220743, 220744} },
{"Piccolo of the Flaming Fire", {6013379, 13379, 220745, 220746, 220747, 220748, 220749, 220750, 220751, 220752, 220753, 220754, 220755, 220756} },
{"Willey's Portable Howitzer", {6013380, 13380, 220757, 220758, 220759, 220760, 220761, 220762, 220763, 220764, 220765, 220766, 220767, 220768} },
{"Master Cannoneer Boots", {6013381, 13381, 220769, 220770, 220771, 220772, 220773, 220774, 220775, 220776, 220777, 220778, 220779, 220780} },
{"Cannonball Runner", {6013382, 13382, 220781, 220782, 220783, 220784, 220785, 220786, 220787, 220788, 220789, 220790, 220791, 220792} },
{"Woollies of the Prancing Minstrel", {6013383, 13383, 220793, 220794, 220795, 220796, 220797, 220798, 220799, 220800, 220801, 220802, 220803, 220804} },
{"Rainbow Girdle", {6013384, 13384, 220805, 220806, 220807, 220808, 220809, 220810, 220811, 220812, 220813, 220814, 220815, 220816} },
{"Tome of Knowledge", {6013385, 13385, 220817, 220818, 220819, 220820, 220821, 220822, 220823, 220824, 220825, 220826, 220827, 220828} },
{"Archivist Cape", {6013386, 13386, 220829, 220830, 220831, 220832, 220833, 220834, 220835, 220836, 220837, 220838, 220839, 220840} },
{"Foresight Girdle", {6013387, 13387, 220841, 220842, 220843, 220844, 220845, 220846, 220847, 220848, 220849, 220850, 220851, 220852} },
{"The Postmaster's Tunic", {6013388, 13388, 220853, 220854, 220855, 220856, 220857, 220866, 220867, 220868, 220869, 220870, 220871, 220872} },
{"The Postmaster's Trousers", {6013389, 13389, 220873, 220880, 220883, 220884, 220885, 220886, 220887, 220888, 220889, 220890, 220891, 220892} },
{"The Postmaster's Band", {6013390, 13390, 220893, 220894, 220895, 220896, 220897, 220898, 220899, 220900, 220901, 220902, 220903, 220904} },
{"The Postmaster's Treads", {6013391, 13391, 220905, 220906, 220907, 220908, 220909, 220910, 220911, 220912, 220913, 220914, 220915, 220916} },
{"The Postmaster's Seal", {6013392, 13392, 220917, 220918, 220919, 220920, 220921, 220922, 220923, 220924, 220925, 220934, 220935, 220936} },
{"Malown's Slam", {6013393, 13393, 220937, 220938, 220939, 220940, 220941, 220942, 220943, 220944, 220945, 220946, 220947, 220948} },
{"Skul's Cold Embrace", {6013394, 13394, 220949, 220950, 220951, 220952, 220953, 220954, 220955, 220956, 220957, 220958, 220959, 220960} },
{"Skul's Fingerbone Claws", {6013395, 13395, 220961, 220962, 220963, 220964, 220965, 220966, 220967, 220968, 220969, 220970, 220971, 220972} },
{"Skul's Ghastly Touch", {6013396, 13396, 220973, 220974, 220975, 220976, 220977, 220978, 220979, 220980, 220981, 220982, 220983, 220984} },
{"Stoneskin Gargoyle Cape", {6013397, 13397, 220985, 220986, 220987, 220988, 220989, 220990, 220991, 220992, 220993, 220994, 220995, 220996} },
{"Boots of the Shrieker", {6013398, 13398, 220997, 220998, 220999, 221000, 221001, 221002, 221003, 221004, 221005, 221006, 221007, 221008} },
{"Gargoyle Shredder Talons", {6013399, 13399, 221009, 221010, 221011, 221012, 221013, 221014, 221015, 221016, 221017, 221018, 221019, 221020} },
{"Vambraces of the Sadist", {6013400, 13400, 221021, 221022, 221023, 221024, 221025, 221026, 221027, 221028, 221029, 221030, 221031, 221032} },
{"The Cruel Hand of Timmy", {6013401, 13401, 221033, 221034, 221035, 221036, 221037, 221038, 221039, 221040, 221041, 221042, 221043, 221044} },
{"Timmy's Galoshes", {6013402, 13402, 221045, 221046, 221047, 221048, 221049, 221050, 221051, 221052, 221053, 221054, 221055, 221056} },
{"Grimgore Noose", {6013403, 13403, 221057, 221058, 221059, 221060, 221061, 221062, 221063, 221064, 221065, 221066, 221067, 221068} },
{"Mask of the Unforgiven", {6013404, 13404, 221069, 221070, 221071, 221072, 221073, 221074, 221075, 221076, 221077, 221078, 221079, 221080} },
{"Wailing Nightbane Pauldrons", {6013405, 13405, 221081, 221082, 221083, 221084, 221085, 221086, 221087, 221088, 221089, 221090, 221091, 221092} },
{"Soul Breaker", {6013408, 13408, 221093, 221094, 221095, 221096, 221097, 221098, 221099, 221100, 221101, 221102, 221103, 221104} },
{"Tearfall Bracers", {6013409, 13409, 221105, 221106, 221107, 221108, 221109, 221110, 221111, 221112, 221113, 221114, 221115, 221116} },
{"Felstone Good Luck Charm", {221118, 13473, 221117, 221119, 221120, 221121, 221122, 221123, 221124, 221125, 221127, 221129, 221130, 221131} },
{"Farmer Dalson's Shotgun", {221133, 13474, 221132, 221135, 221136, 221137, 221138, 221139, 221140, 221141, 221142, 221143, 221144, 221145} },
{"Dalson Family Wedding Ring", {221147, 13475, 221146, 221148, 221149, 221150, 221151, 221152, 221153, 221154, 221155, 221157, 221158, 221159} },
{"Handcrafted Mastersmith Leggings", {6013498, 13498, 120455, 213498, 1003250, 1010794, 1017462, 1024075, 1030639, 1037202, 1043765, 1050328, 1056891, 1063454} },
{"Handcrafted Mastersmith Girdle", {6013502, 13502, 120454, 213502, 1003252, 1010795, 1017463, 1024076, 1030640, 1037203, 1043766, 1050329, 1056892, 1063455} },
{"Alchemist's Stone", {221161, 13503, 221160, 221162, 221163, 221164, 221165, 221166, 221167, 221168, 221169, 221170, 221171, 221172} },
{"Runeblade of Baron Rivendare", {6013505, 13505, 221173, 221174, 221175, 221176, 221177, 221178, 221179, 221180, 221181, 221182, 221183, 221184} },
{"Ramstein's Lightning Bolts", {6013515, 13515, 221185, 221186, 221187, 221188, 221189, 221190, 221191, 221192, 221193, 221194, 221195, 221196} },
{"Skull of Burning Shadows", {6013524, 13524, 221197, 221198, 221199, 221200, 221201, 221202, 221203, 221204, 221205, 221206, 221207, 221208} },
{"Darkbind Fingers", {221210, 13525, 221209, 221211, 221212, 221213, 221214, 221215, 221216, 221217, 221218, 221219, 221222, 221223} },
{"Flamescarred Girdle", {221225, 13526, 221224, 221226, 221227, 221228, 221229, 221230, 221231, 221232, 221233, 221234, 221235, 221236} },
{"Lavawalker Greaves", {221238, 13527, 221237, 221239, 221240, 221241, 221243, 221245, 221246, 221247, 221248, 221249, 221250, 221251} },
{"Twilight Void Bracers", {221253, 13528, 221252, 221254, 221255, 221256, 221257, 221258, 221259, 221260, 221261, 221262, 221263, 221264} },
{"Husk of Nerub'enkan", {6013529, 13529, 221265, 221266, 221267, 221270, 221271, 221274, 221276, 221277, 221278, 221279, 221280, 221281} },
{"Fangdrip Runners", {221283, 13530, 221282, 221284, 221285, 221286, 221287, 221288, 221289, 221290, 221291, 221292, 221293, 221294} },
{"Crypt Stalker Leggings", {221296, 13531, 221295, 221297, 221298, 221299, 221300, 221301, 221302, 221303, 221304, 221305, 221306, 221307} },
{"Darkspinner Claws", {221309, 13532, 221308, 221310, 221311, 221312, 221313, 221314, 221315, 221316, 221317, 221318, 221319, 221320} },
{"Acid-etched Pauldrons", {221322, 13533, 221321, 221323, 221324, 221325, 221326, 221327, 221328, 221339, 221340, 221341, 221342, 221358} },
{"Banshee Finger", {6013534, 13534, 221363, 221369, 221371, 221377, 221378, 221379, 221380, 221381, 221382, 221383, 221384, 221385} },
{"Coldtouch Phantom Wraps", {221419, 13535, 221386, 221420, 221421, 221422, 221423, 221424, 221425, 221426, 221427, 221428, 221429, 221430} },
{"Chillhide Bracers", {221432, 13537, 221431, 221433, 221434, 221435, 221436, 221437, 221438, 221439, 221440, 221441, 221442, 221443} },
{"Windshrieker Pauldrons", {221445, 13538, 221444, 221446, 221447, 221448, 221449, 221450, 221451, 221465, 221508, 221509, 221510, 221511} },
{"Banshee's Touch", {221513, 13539, 221512, 221514, 221515, 221516, 221517, 221518, 221519, 221520, 221521, 221522, 221523, 221524} },
{"Spectral Essence", {221526, 13544, 221525, 221527, 221528, 221529, 221530, 221531, 221532, 221533, 221534, 221535, 221536, 221537} },
{"Ring of the Dawn", {221539, 13812, 221538, 221540, 221541, 221542, 221543, 221544, 221545, 221546, 221547, 221548, 221549, 221550} },
{"Runecloth Belt", {221552, 13856, 221551, 221553, 221554, 221555, 221556, 221557, 221558, 221559, 221560, 221561, 221562, 221563} },
{"Runecloth Tunic", {221565, 13857, 221564, 221566, 221567, 221568, 221569, 221570, 221571, 221572, 221573, 221574, 221575, 221576} },
{"Runecloth Robe", {221578, 13858, 221577, 221580, 221584, 221587, 221588, 221589, 221590, 221591, 221592, 221593, 221594, 221595} },
{"Runecloth Cloak", {221613, 13860, 221612, 221614, 221628, 221629, 221630, 221631, 221632, 221633, 221634, 221636, 221637, 221638} },
{"Runecloth Gloves", {221641, 13863, 221640, 221642, 221643, 221644, 221646, 221649, 221653, 221654, 221655, 221656, 221657, 221658} },
{"Runecloth Boots", {221660, 13864, 221659, 221661, 221662, 221711, 221713, 221714, 221716, 221717, 221718, 221719, 221720, 221721} },
{"Runecloth Pants", {221723, 13865, 221722, 221724, 221725, 221726, 221727, 221728, 221729, 221730, 221731, 221732, 221733, 221734} },
{"Runecloth Headband", {221736, 13866, 221735, 221737, 221738, 221739, 221740, 221741, 221742, 221743, 221744, 221745, 221746, 221747} },
{"Runecloth Shoulders", {221749, 13867, 221748, 221750, 221751, 221752, 221753, 221754, 221755, 221756, 221757, 221758, 221759, 221760} },
{"Frostweave Robe", {221762, 13868, 221761, 221763, 221764, 221765, 221766, 221767, 221768, 221769, 221770, 221771, 221772, 221773} },
{"Frostweave Tunic", {221775, 13869, 221774, 221776, 221777, 221778, 221779, 221780, 221781, 221782, 221783, 221784, 221785, 221786} },
{"Frostweave Gloves", {221788, 13870, 221787, 221789, 221790, 221791, 221792, 221793, 221794, 221795, 221796, 221797, 221798, 221799} },
{"Frostweave Pants", {221808, 13871, 221807, 221811, 221812, 221813, 221815, 221816, 221817, 221818, 221819, 221820, 221821, 221822} },
{"Dreadmaster's Shroud", {6013936, 13936, 221823, 221824, 221825, 221826, 221827, 221828, 221829, 221830, 221831, 221832, 221833, 221834} },
{"Headmaster's Charge", {6013937, 13937, 221835, 221840, 221841, 221842, 221843, 221844, 221845, 221846, 221847, 221848, 221849, 221850} },
{"Bonecreeper Stylus", {6013938, 13938, 221851, 221852, 221853, 221854, 221855, 221857, 221858, 221859, 221860, 221861, 221862, 221863} },
{"Tombstone Breastplate", {6013944, 13944, 221864, 221865, 221866, 221867, 221868, 221869, 221870, 221871, 221872, 221873, 221874, 221875} },
{"Detention Strap", {6013950, 13950, 221876, 221877, 221878, 221879, 221880, 221881, 221882, 221883, 221884, 221885, 221886, 221887} },
{"Vigorsteel Vambraces", {6013951, 13951, 221890, 221892, 221893, 221894, 221895, 221896, 221897, 221898, 221899, 221900, 221901, 221902} },
{"Iceblade Hacker", {6013952, 13952, 221903, 221904, 221905, 221906, 221907, 221908, 221909, 221910, 221911, 221912, 221913, 221914} },
{"Silent Fang", {6013953, 13953, 221915, 221916, 221917, 221918, 221919, 221920, 221921, 221922, 221923, 221924, 221925, 221926} },
{"Verdant Footpads", {6013954, 13954, 221927, 221928, 221929, 221930, 221931, 221932, 221933, 221934, 221935, 221936, 221937, 221938} },
{"Stoneform Shoulders", {6013955, 13955, 221939, 221940, 221941, 221942, 221943, 221944, 221945, 221946, 221947, 221948, 221949, 221950} },
{"Clutch of Andros", {6013956, 13956, 221951, 221952, 221953, 221954, 221955, 221956, 221957, 221958, 221959, 221960, 221961, 221962} },
{"Gargoyle Slashers", {6013957, 13957, 221963, 221964, 221965, 221966, 221967, 221968, 221969, 221970, 221971, 221972, 221973, 221974} },
{"Wyrmthalak's Shackles", {6013958, 13958, 221975, 221976, 221977, 221978, 221979, 221980, 221981, 221982, 221983, 221984, 221985, 221986} },
{"Omokk's Girth Restrainer", {6013959, 13959, 221987, 221988, 221990, 221991, 221992, 221993, 221994, 221995, 221996, 221997, 221998, 221999} },
{"Heart of the Fiend", {6013960, 13960, 222000, 222001, 222002, 222003, 222004, 222005, 222006, 222007, 222008, 222009, 222010, 222011} },
{"Halycon's Muzzle", {6013961, 13961, 222012, 222013, 222014, 222015, 222016, 222017, 222018, 222019, 222020, 222021, 222022, 222023} },
{"Vosh'gajin's Strand", {6013962, 13962, 222024, 222025, 222026, 222027, 222028, 222029, 222030, 222031, 222032, 222033, 222034, 222035} },
{"Voone's Vice Grips", {6013963, 13963, 222036, 222037, 222038, 222039, 222040, 222041, 222042, 222043, 222044, 222045, 222046, 222047} },
{"Witchblade", {6013964, 13964, 222048, 222049, 222050, 222051, 222052, 222053, 222054, 222055, 222056, 222057, 222058, 222059} },
{"Blackhand's Breadth", {6013965, 13965, 222060, 222061, 222062, 222063, 222064, 222065, 222066, 222067, 222068, 222069, 222070, 222071} },
{"Mark of Tyranny", {6013966, 13966, 222072, 222073, 222074, 222075, 222076, 222077, 222078, 222079, 222080, 222081, 222082, 222083} },
{"Windreaver Greaves", {6013967, 13967, 222084, 222085, 222086, 222087, 222088, 222089, 222090, 222091, 222092, 222093, 222094, 222095} },
{"Eye of the Beast", {6013968, 13968, 222096, 222097, 222098, 222099, 222100, 222101, 222102, 222103, 222104, 222105, 222106, 222107} },
{"Loomguard Armbraces", {6013969, 13969, 222108, 222109, 222110, 222111, 222112, 222113, 222114, 222115, 222116, 222117, 222118, 222119} },
{"Warblade of Caer Darrow", {6013982, 13982, 222120, 222121, 222122, 222123, 222124, 222125, 222126, 222127, 222128, 222129, 222130, 222131} },
{"Gravestone War Axe", {6013983, 13983, 222132, 222133, 222134, 222135, 222136, 222137, 222138, 222139, 222140, 222141, 222142, 222143} },
{"Darrowspike", {6013984, 13984, 222144, 222145, 222146, 222147, 222148, 222149, 222150, 222151, 222152, 222153, 222154, 222155} },
{"Crown of Caer Darrow", {6013986, 13986, 222156, 222157, 222158, 222159, 222160, 222161, 222162, 222163, 222164, 222165, 222166, 222167} },
{"Ring of Trinity Force", {6014000, 14000, 314000, 214000, 1003257, 1010796, 1017464, 1024077, 1030641, 1037204, 1043767, 1050330, 1056893, 1063456} },
{"Archimtiros' Ring of Armageddon", {6014001, 14001, 314001, 214001, 1003259, 1010797, 1017465, 1024078, 1030642, 1037205, 1043768, 1050331, 1056894, 1063457} },
{"Darrowshire Strongguard", {6014002, 14002, 222168, 222169, 222170, 222171, 222172, 222173, 222174, 222175, 222176, 222177, 222178, 222179} },
{"Barov Peasant Caller", {6014022, 14022, 222180, 222181, 222182, 222183, 222184, 222185, 222186, 222187, 222188, 222189, 222190, 222191} },
{"Barov Peasant Caller", {6014023, 14023, 222192, 222193, 222194, 222195, 222196, 222197, 222198, 222199, 222200, 222201, 222202, 222203} },
{"Frightalon", {6014024, 14024, 222204, 222205, 222206, 222207, 222208, 222209, 222210, 222211, 222212, 222213, 222214, 222215} },
{"Cindercloth Vest", {222233, 14042, 222230, 222234, 222235, 222236, 222237, 222238, 222239, 222240, 222241, 222242, 222243, 222244} },
{"Cindercloth Gloves", {222246, 14043, 222245, 222248, 222249, 222250, 222251, 222252, 222254, 222255, 222256, 222257, 222258, 222259} },
{"Cindercloth Cloak", {222261, 14044, 222260, 222262, 222263, 222264, 222265, 222266, 222270, 222271, 222272, 222273, 222274, 222275} },
{"Cindercloth Pants", {222277, 14045, 222276, 222278, 222279, 222280, 222281, 222282, 222283, 222284, 222285, 222286, 222287, 222288} },
{"Brightcloth Robe", {222386, 14100, 222385, 222387, 222388, 222389, 222390, 222391, 222392, 222393, 222394, 222395, 222397, 222398} },
{"Brightcloth Gloves", {222401, 14101, 222400, 222403, 222404, 222405, 222406, 222407, 222408, 222409, 222410, 222411, 222412, 222413} },
{"Brightcloth Cloak", {222415, 14103, 222414, 222432, 222433, 222434, 222435, 222444, 222445, 222446, 222447, 222448, 222449, 222450} },
{"Brightcloth Pants", {222452, 14104, 222451, 222453, 222454, 222455, 222456, 222457, 222458, 222459, 222460, 222461, 222462, 222463} },
{"Felcloth Robe", {222473, 14106, 222472, 222474, 222475, 222484, 222485, 222486, 222487, 222520, 222521, 222522, 222523, 222524} },
{"Felcloth Pants", {222526, 14107, 222525, 222527, 222528, 222529, 222530, 222531, 222532, 222533, 222534, 222535, 222536, 222537} },
{"Felcloth Boots", {222539, 14108, 222538, 222540, 222541, 222542, 222543, 222544, 222545, 222546, 222547, 222548, 222549, 222550} },
{"Felcloth Hood", {222565, 14111, 222564, 222566, 222567, 222568, 222569, 222570, 222571, 222572, 222573, 222574, 222575, 222576} },
{"Felcloth Shoulders", {222578, 14112, 222577, 222579, 222580, 222581, 222582, 222583, 222584, 222585, 222586, 222587, 222588, 222590} },
{"Wizardweave Robe", {222756, 14128, 222755, 222757, 222758, 222759, 222760, 222761, 222762, 222763, 222764, 222765, 222766, 222767} },
{"Wizardweave Turban", {222782, 14130, 222781, 222783, 222784, 222785, 222786, 222787, 222788, 222789, 222790, 222791, 222792, 222793} },
{"Wizardweave Leggings", {222829, 14132, 222828, 222830, 222831, 222832, 222833, 222834, 222835, 222836, 222837, 222838, 222839, 222840} },
{"Cloak of Fire", {6014134, 14134, 222854, 222855, 222856, 222857, 222858, 222859, 222860, 222861, 222862, 222863, 222864, 222865} },
{"Robe of Winter Night", {6014136, 14136, 222866, 222867, 222868, 222869, 222870, 222871, 222872, 222873, 222874, 222875, 222876, 222877} },
{"Mooncloth Leggings", {6014137, 14137, 222878, 222879, 222880, 222881, 222882, 222883, 222884, 222885, 222886, 222887, 222888, 222889} },
{"Mooncloth Vest", {6014138, 14138, 222890, 222891, 222892, 222893, 222894, 222895, 222896, 222897, 222898, 222899, 222900, 222901} },
{"Mooncloth Shoulders", {6014139, 14139, 222902, 222903, 222904, 222905, 222906, 222907, 222908, 222909, 222910, 222911, 222912, 222913} },
{"Mooncloth Circlet", {6014140, 14140, 222914, 222915, 222916, 222917, 222918, 222919, 222920, 222921, 222922, 222923, 222924, 222925} },
{"Ghostweave Vest", {222927, 14141, 222926, 222928, 222929, 222930, 222931, 222932, 222933, 222934, 222944, 222945, 222946, 222948} },
{"Ghostweave Gloves", {222950, 14142, 222949, 222951, 222952, 222953, 222955, 222956, 222957, 222958, 222959, 222962, 222963, 222964} },
{"Ghostweave Belt", {222966, 14143, 222965, 222969, 222970, 222971, 222972, 222973, 222974, 222975, 222976, 222977, 222978, 222979} },
{"Ghostweave Pants", {222982, 14144, 222980, 222984, 222985, 222986, 222987, 222989, 222990, 222991, 222992, 222993, 222995, 222996} },
{"Gloves of Spell Mastery", {6014146, 14146, 223016, 223022, 223024, 223026, 223034, 223051, 223052, 223055, 223058, 223074, 223076, 223077} },
{"Robe of the Archmage", {6014152, 14152, 223138, 223139, 223140, 223141, 223142, 223143, 223144, 223145, 223146, 223147, 223148, 223149} },
{"Robe of the Void", {6014153, 14153, 223150, 223151, 223152, 223153, 223154, 223155, 223156, 223157, 223158, 223159, 223160, 223161} },
{"Truefaith Vestments", {6014154, 14154, 223162, 223163, 223164, 223165, 223166, 223167, 223168, 223169, 223170, 223171, 223172, 223173} },
{"Darkmist Armor", {224186, 14237, 224185, 224187, 224188, 224189, 224190, 224191, 224192, 224193, 224194, 224195, 224196, 224197} },
{"Darkmist Wraps", {224278, 14244, 224277, 224279, 224280, 224281, 224282, 224283, 224284, 224285, 224286, 224287, 224288, 224289} },
{"Lunar Vest", {224343, 14249, 224342, 224344, 224345, 224346, 224347, 224348, 224349, 224350, 224351, 224352, 224353, 224354} },
{"Lunar Raiment", {224408, 14254, 224407, 224409, 224410, 224411, 224412, 224413, 224414, 224415, 224416, 224417, 224418, 224419} },
{"Bloodwoven Boots", {224460, 14259, 224459, 224461, 224462, 224463, 224464, 224465, 224466, 224467, 224468, 224469, 224470, 224471} },
{"Bloodwoven Mask", {224512, 14263, 224511, 224513, 224514, 224515, 224516, 224517, 224518, 224519, 224520, 224521, 224522, 224523} },
{"Bloodwoven Pants", {224525, 14264, 224524, 224526, 224527, 224528, 224529, 224530, 224531, 224532, 224533, 224534, 224535, 224536} },
{"Bloodwoven Wraps", {224538, 14265, 224537, 224539, 224540, 224541, 224542, 224543, 224548, 224550, 224551, 224557, 224558, 224559} },
{"Bloodwoven Pads", {224561, 14266, 224560, 224562, 224563, 224564, 224565, 224566, 224567, 224568, 224569, 224570, 224571, 224572} },
{"Bloodwoven Jerkin", {224574, 14267, 224573, 224575, 224576, 224577, 224578, 224579, 224580, 224581, 224582, 224583, 224584, 224585} },
{"Gaea's Cuffs", {224587, 14268, 224586, 224588, 224589, 224590, 224591, 224592, 224593, 224594, 224595, 224596, 224597, 224598} },
{"Gaea's Slippers", {224600, 14269, 224599, 224601, 224602, 224603, 224604, 224605, 224606, 224607, 224608, 224609, 224610, 224611} },
{"Gaea's Circlet", {224626, 14271, 224625, 224627, 224628, 224629, 224630, 224631, 224632, 224633, 224634, 224635, 224636, 224637} },
{"Gaea's Handwraps", {224639, 14272, 224638, 224640, 224641, 224642, 224643, 224644, 224645, 224646, 224647, 224648, 224649, 224650} },
{"Gaea's Amice", {224652, 14273, 224651, 224653, 224654, 224655, 224656, 224657, 224658, 224659, 224660, 224661, 224662, 224663} },
{"Gaea's Leggings", {224665, 14274, 224664, 224666, 224667, 224668, 224669, 224670, 224671, 224672, 224673, 224674, 224675, 224676} },
{"Gaea's Raiment", {224678, 14275, 224677, 224679, 224680, 224681, 224682, 224683, 224684, 224685, 224686, 224687, 224688, 224689} },
{"Gaea's Belt", {224691, 14276, 224690, 224692, 224693, 224694, 224695, 224696, 224697, 224698, 224699, 224700, 224701, 224702} },
{"Gaea's Tunic", {224704, 14277, 224703, 224705, 224706, 224707, 224708, 224709, 224710, 224711, 224712, 224713, 224714, 224715} },
{"Opulent Mantle", {224717, 14278, 224716, 224718, 224719, 224720, 224721, 224722, 224723, 224724, 224725, 224726, 224727, 224728} },
{"Opulent Bracers", {224730, 14279, 224729, 224731, 224732, 224733, 224734, 224735, 224736, 224737, 224738, 224739, 224740, 224741} },
{"Opulent Cape", {224743, 14280, 224742, 224744, 224745, 224746, 224747, 224748, 224749, 224750, 224751, 224752, 224753, 224754} },
{"Opulent Crown", {224756, 14281, 224755, 224757, 224758, 224759, 224760, 224761, 224762, 224763, 224764, 224765, 224766, 224767} },
{"Opulent Gloves", {224769, 14282, 224768, 224770, 224771, 224772, 224773, 224774, 224775, 224776, 224777, 224778, 224779, 224780} },
{"Opulent Leggings", {224782, 14283, 224781, 224783, 224784, 224785, 224786, 224787, 224788, 224789, 224790, 224791, 224792, 224793} },
{"Opulent Robes", {224795, 14284, 224794, 224796, 224797, 224798, 224799, 224800, 224801, 224802, 224803, 224804, 224805, 224806} },
{"Opulent Boots", {224808, 14285, 224807, 224809, 224810, 224811, 224812, 224813, 224814, 224815, 224816, 224817, 224818, 224819} },
{"Opulent Belt", {224821, 14286, 224820, 224822, 224823, 224824, 224825, 224826, 224827, 224828, 224829, 224830, 224831, 224832} },
{"Opulent Tunic", {224834, 14287, 224833, 224835, 224836, 224837, 224838, 224839, 224840, 224841, 224842, 224843, 224844, 224845} },
{"Arachnidian Armor", {224847, 14288, 224846, 224848, 224849, 224850, 224851, 224852, 224853, 224854, 224855, 224856, 224857, 224858} },
{"Arachnidian Girdle", {224860, 14289, 224859, 224861, 224862, 224863, 224864, 224865, 224866, 224867, 224868, 224869, 224870, 224871} },
{"Arachnidian Footpads", {224873, 14290, 224872, 224874, 224875, 224876, 224877, 224878, 224879, 224880, 224881, 224882, 224883, 224884} },
{"Arachnidian Bracelets", {224886, 14291, 224885, 224887, 224888, 224889, 224890, 224891, 224892, 224893, 224894, 224895, 224896, 224897} },
{"Arachnidian Cape", {224899, 14292, 224898, 224900, 224901, 224902, 224903, 224904, 224905, 224906, 224907, 224908, 224909, 224910} },
{"Arachnidian Circlet", {224912, 14293, 224911, 224913, 224914, 224915, 224916, 224917, 224918, 224919, 224920, 224921, 224922, 224923} },
{"Arachnidian Gloves", {224925, 14294, 224924, 224926, 224927, 224928, 224929, 224930, 224931, 224932, 224933, 224934, 224935, 224936} },
{"Arachnidian Legguards", {224938, 14295, 224937, 224939, 224940, 224941, 224942, 224943, 224944, 224945, 224946, 224947, 224948, 224949} },
{"Arachnidian Pauldrons", {224951, 14296, 224950, 224952, 224953, 224954, 224955, 224956, 224957, 224958, 224959, 224960, 224961, 224962} },
{"Arachnidian Robes", {224964, 14297, 224963, 224965, 224966, 224967, 224968, 224969, 224970, 224971, 224972, 224973, 224974, 224975} },
{"Bonecaster's Spaulders", {224977, 14298, 224976, 224978, 224979, 224980, 224981, 224982, 224983, 224984, 224985, 224986, 224987, 224988} },
{"Bonecaster's Boots", {224990, 14299, 224989, 224991, 224992, 224993, 224994, 224995, 224996, 224997, 224998, 224999, 225000, 225001} },
{"Bonecaster's Cape", {225003, 14300, 225002, 225004, 225005, 225006, 225007, 225008, 225009, 225010, 225011, 225012, 225013, 225014} },
{"Bonecaster's Bindings", {225016, 14301, 225015, 225017, 225018, 225019, 225020, 225021, 225022, 225023, 225024, 225025, 225026, 225027} },
{"Bonecaster's Gloves", {225029, 14302, 225028, 225030, 225031, 225032, 225033, 225034, 225035, 225036, 225037, 225038, 225039, 225040} },
{"Bonecaster's Shroud", {225042, 14303, 225041, 225043, 225044, 225045, 225046, 225047, 225048, 225049, 225050, 225051, 225052, 225053} },
{"Bonecaster's Belt", {225055, 14304, 225054, 225056, 225057, 225058, 225059, 225060, 225061, 225062, 225063, 225064, 225065, 225066} },
{"Bonecaster's Sarong", {225068, 14305, 225067, 225069, 225070, 225071, 225072, 225073, 225074, 225075, 225076, 225077, 225078, 225079} },
{"Bonecaster's Vest", {225081, 14306, 225080, 225082, 225083, 225084, 225085, 225086, 225087, 225088, 225089, 225090, 225091, 225092} },
{"Bonecaster's Crown", {225094, 14307, 225093, 225095, 225096, 225097, 225098, 225099, 225100, 225101, 225102, 225103, 225104, 225105} },
{"Celestial Tunic", {225107, 14308, 225106, 225108, 225109, 225110, 225111, 225112, 225113, 225114, 225115, 225116, 225117, 225118} },
{"Celestial Belt", {225120, 14309, 225119, 225121, 225122, 225123, 225124, 225125, 225126, 225127, 225128, 225129, 225130, 225131} },
{"Celestial Slippers", {225133, 14310, 225132, 225134, 225135, 225136, 225137, 225138, 225139, 225140, 225141, 225142, 225143, 225144} },
{"Celestial Bindings", {225146, 14311, 225145, 225147, 225148, 225149, 225150, 225151, 225152, 225153, 225154, 225155, 225156, 225157} },
{"Celestial Crown", {225159, 14312, 225158, 225160, 225161, 225162, 225163, 225164, 225165, 225166, 225167, 225168, 225169, 225170} },
{"Celestial Cape", {225172, 14313, 225171, 225173, 225174, 225175, 225176, 225177, 225178, 225179, 225180, 225181, 225182, 225183} },
{"Celestial Handwraps", {225185, 14314, 225184, 225186, 225187, 225188, 225189, 225190, 225191, 225192, 225193, 225194, 225195, 225196} },
{"Celestial Kilt", {225198, 14315, 225197, 225199, 225200, 225201, 225202, 225203, 225204, 225205, 225206, 225207, 225208, 225209} },
{"Celestial Pauldrons", {225211, 14316, 225210, 225212, 225213, 225214, 225215, 225216, 225217, 225218, 225219, 225220, 225221, 225222} },
{"Celestial Silk Robes", {225224, 14317, 225223, 225225, 225226, 225227, 225228, 225229, 225230, 225231, 225232, 225233, 225234, 225235} },
{"Resplendent Tunic", {225237, 14318, 225236, 225238, 225239, 225240, 225241, 225242, 225243, 225244, 225245, 225246, 225247, 225248} },
{"Resplendent Boots", {225250, 14319, 225249, 225251, 225252, 225253, 225254, 225255, 225256, 225257, 225258, 225259, 225260, 225261} },
{"Resplendent Bracelets", {225263, 14320, 225262, 225264, 225265, 225266, 225267, 225268, 225269, 225270, 225271, 225272, 225273, 225274} },
{"Resplendent Cloak", {225276, 14321, 225275, 225277, 225278, 225279, 225280, 225281, 225282, 225283, 225284, 225285, 225286, 225287} },
{"Resplendent Circlet", {225289, 14322, 225288, 225290, 225291, 225292, 225293, 225294, 225295, 225296, 225297, 225298, 225299, 225300} },
{"Resplendent Gauntlets", {225302, 14323, 225301, 225303, 225304, 225305, 225306, 225307, 225308, 225309, 225310, 225311, 225312, 225313} },
{"Resplendent Sarong", {225315, 14324, 225314, 225316, 225317, 225318, 225319, 225320, 225321, 225322, 225323, 225324, 225325, 225326} },
{"Resplendent Epaulets", {225328, 14325, 225327, 225329, 225330, 225331, 225332, 225333, 225334, 225335, 225336, 225337, 225338, 225339} },
{"Resplendent Robes", {225341, 14326, 225340, 225342, 225343, 225344, 225345, 225346, 225347, 225348, 225349, 225350, 225351, 225352} },
{"Resplendent Belt", {225354, 14327, 225353, 225355, 225356, 225357, 225358, 225359, 225360, 225361, 225362, 225363, 225364, 225365} },
{"Eternal Chestguard", {225367, 14328, 225366, 225368, 225369, 225370, 225371, 225372, 225373, 225374, 225375, 225376, 225377, 225378} },
{"Eternal Boots", {225380, 14329, 225379, 225381, 225382, 225383, 225384, 225385, 225386, 225387, 225388, 225389, 225390, 225391} },
{"Eternal Bindings", {225393, 14330, 225392, 225394, 225395, 225396, 225397, 225398, 225399, 225400, 225401, 225402, 225403, 225404} },
{"Eternal Cloak", {225406, 14331, 225405, 225407, 225408, 225409, 225410, 225411, 225412, 225413, 225414, 225415, 225416, 225417} },
{"Eternal Crown", {225419, 14332, 225418, 225420, 225421, 225422, 225423, 225424, 225425, 225426, 225427, 225428, 225429, 225430} },
{"Eternal Gloves", {225432, 14333, 225431, 225433, 225434, 225435, 225436, 225437, 225438, 225439, 225440, 225441, 225442, 225443} },
{"Eternal Sarong", {225445, 14334, 225444, 225446, 225447, 225448, 225449, 225450, 225451, 225452, 225453, 225454, 225455, 225456} },
{"Eternal Spaulders", {225458, 14335, 225457, 225459, 225460, 225461, 225462, 225463, 225464, 225465, 225466, 225467, 225468, 225469} },
{"Eternal Wraps", {225471, 14336, 225470, 225472, 225473, 225474, 225475, 225476, 225477, 225478, 225479, 225480, 225481, 225482} },
{"Eternal Cord", {225484, 14337, 225483, 225485, 225486, 225487, 225488, 225489, 225490, 225491, 225492, 225493, 225494, 225495} },
{"Freezing Lich Robes", {6014340, 14340, 225496, 225497, 225498, 225499, 225500, 225501, 225502, 225503, 225504, 225505, 225506, 225507} },
{"Windchaser Wraps", {226122, 14427, 226121, 226123, 226124, 226125, 226126, 226127, 226128, 226129, 226130, 226131, 226132, 226133} },
{"Windchaser Woolies", {226200, 14433, 226199, 226201, 226202, 226203, 226204, 226205, 226206, 226207, 226208, 226209, 226210, 226211} },
{"Windchaser Robes", {226213, 14434, 226212, 226214, 226215, 226216, 226217, 226218, 226219, 226220, 226221, 226222, 226223, 226224} },
{"Windchaser Coronet", {226239, 14436, 226238, 226240, 226241, 226242, 226243, 226244, 226245, 226246, 226247, 226248, 226249, 226250} },
{"Venomshroud Vest", {226252, 14437, 226251, 226253, 226254, 226255, 226256, 226257, 226258, 226259, 226260, 226261, 226262, 226263} },
{"Venomshroud Boots", {226265, 14438, 226264, 226266, 226267, 226268, 226269, 226270, 226271, 226272, 226273, 226274, 226275, 226276} },
{"Venomshroud Armguards", {226278, 14439, 226277, 226279, 226280, 226281, 226282, 226283, 226284, 226285, 226286, 226287, 226288, 226289} },
{"Venomshroud Cape", {226291, 14440, 226290, 226292, 226293, 226294, 226295, 226296, 226297, 226298, 226299, 226300, 226301, 226302} },
{"Venomshroud Mask", {226304, 14441, 226303, 226305, 226306, 226307, 226308, 226309, 226310, 226311, 226312, 226313, 226314, 226315} },
{"Venomshroud Mitts", {226317, 14442, 226316, 226318, 226319, 226320, 226321, 226322, 226323, 226324, 226325, 226326, 226327, 226328} },
{"Venomshroud Mantle", {226330, 14443, 226329, 226331, 226332, 226333, 226334, 226335, 226336, 226337, 226338, 226339, 226340, 226341} },
{"Venomshroud Leggings", {226343, 14444, 226342, 226344, 226345, 226346, 226347, 226348, 226349, 226350, 226351, 226352, 226353, 226354} },
{"Venomshroud Silk Robes", {226356, 14445, 226355, 226357, 226358, 226359, 226360, 226361, 226362, 226363, 226364, 226365, 226366, 226367} },
{"Venomshroud Belt", {226369, 14446, 226368, 226370, 226371, 226372, 226373, 226374, 226375, 226376, 226377, 226378, 226379, 226380} },
{"Highborne Footpads", {226382, 14447, 226381, 226383, 226384, 226385, 226386, 226387, 226388, 226389, 226390, 226391, 226392, 226393} },
{"Highborne Bracelets", {226395, 14448, 226394, 226396, 226397, 226398, 226399, 226400, 226401, 226402, 226403, 226404, 226405, 226406} },
{"Highborne Crown", {226408, 14449, 226407, 226409, 226410, 226411, 226412, 226413, 226414, 226415, 226416, 226417, 226418, 226419} },
{"Highborne Cloak", {226421, 14450, 226420, 226422, 226423, 226424, 226425, 226426, 226427, 226428, 226429, 226430, 226431, 226432} },
{"Highborne Gloves", {226434, 14451, 226433, 226435, 226436, 226437, 226438, 226439, 226440, 226441, 226442, 226443, 226444, 226445} },
{"Highborne Pauldrons", {226447, 14452, 226446, 226448, 226449, 226450, 226451, 226452, 226453, 226454, 226455, 226456, 226457, 226458} },
{"Highborne Robes", {226460, 14453, 226459, 226461, 226462, 226463, 226464, 226465, 226466, 226467, 226468, 226469, 226470, 226471} },
{"Highborne Cord", {226473, 14454, 226472, 226474, 226475, 226476, 226477, 226478, 226479, 226480, 226481, 226482, 226483, 226484} },
{"Highborne Padded Armor", {226486, 14455, 226485, 226487, 226488, 226489, 226490, 226491, 226492, 226493, 226494, 226495, 226496, 226497} },
{"Elunarian Vest", {226499, 14456, 226498, 226500, 226501, 226502, 226503, 226504, 226505, 226506, 226507, 226508, 226509, 226510} },
{"Elunarian Cuffs", {226512, 14457, 226511, 226513, 226514, 226515, 226516, 226517, 226518, 226519, 226520, 226521, 226522, 226523} },
{"Elunarian Boots", {226525, 14458, 226524, 226526, 226527, 226528, 226529, 226530, 226531, 226532, 226533, 226534, 226535, 226536} },
{"Elunarian Cloak", {226538, 14459, 226537, 226539, 226540, 226541, 226542, 226543, 226544, 226545, 226546, 226547, 226548, 226549} },
{"Elunarian Diadem", {226551, 14460, 226550, 226552, 226553, 226554, 226555, 226556, 226557, 226558, 226559, 226560, 226561, 226562} },
{"Elunarian Handgrips", {226564, 14461, 226563, 226565, 226566, 226567, 226568, 226569, 226570, 226571, 226572, 226573, 226574, 226575} },
{"Elunarian Sarong", {226577, 14462, 226576, 226578, 226579, 226580, 226581, 226582, 226583, 226584, 226585, 226586, 226587, 226588} },
{"Elunarian Spaulders", {226590, 14463, 226589, 226591, 226592, 226593, 226594, 226595, 226596, 226597, 226598, 226599, 226600, 226601} },
{"Elunarian Silk Robes", {226603, 14464, 226602, 226604, 226605, 226606, 226607, 226608, 226609, 226610, 226611, 226612, 226613, 226614} },
{"Elunarian Belt", {226616, 14465, 226615, 226617, 226618, 226619, 226620, 226621, 226622, 226623, 226624, 226625, 226626, 226627} },
{"Bonechill Hammer", {6014487, 14487, 226628, 226629, 226630, 226631, 226632, 226633, 226634, 226635, 226636, 226637, 226638, 226639} },
{"Frostbite Girdle", {6014502, 14502, 226640, 226641, 226642, 226643, 226644, 226645, 226646, 226647, 226648, 226649, 226650, 226651} },
{"Death's Clutch", {6014503, 14503, 226652, 226653, 226654, 226655, 226656, 226657, 226658, 226659, 226660, 226661, 226662, 226663} },
{"Maelstrom Leggings", {6014522, 14522, 226664, 226665, 226666, 226667, 226668, 226669, 226670, 226671, 226672, 226673, 226674, 226675} },
{"Boneclenched Gauntlets", {6014525, 14525, 226676, 226677, 226678, 226679, 226680, 226681, 226682, 226683, 226684, 226685, 226686, 226687} },
{"Rattlecage Buckler", {6014528, 14528, 226688, 226689, 226690, 226691, 226692, 226693, 226694, 226695, 226696, 226697, 226698, 226699} },
{"Frightskull Shaft", {6014531, 14531, 226700, 226701, 226702, 226703, 226704, 226705, 226706, 226707, 226708, 226709, 226710, 226711} },
{"Bonebrace Hauberk", {6014536, 14536, 226712, 226713, 226714, 226715, 226716, 226717, 226718, 226719, 226720, 226721, 226722, 226723} },
{"Corpselight Greaves", {6014537, 14537, 226724, 226725, 226726, 226727, 226728, 226729, 226730, 226731, 226732, 226733, 226734, 226735} },
{"Deadwalker Mantle", {6014538, 14538, 226736, 226737, 226738, 226739, 226740, 226741, 226742, 226743, 226744, 226745, 226746, 226747} },
{"Bone Ring Helm", {6014539, 14539, 226748, 226749, 226750, 226751, 226752, 226753, 226754, 226755, 226756, 226757, 226758, 226759} },
{"Barovian Family Sword", {6014541, 14541, 226760, 226761, 226762, 226763, 226764, 226765, 226766, 226767, 226768, 226769, 226770, 226771} },
{"Darkshade Gloves", {6014543, 14543, 226772, 226773, 226774, 226775, 226776, 226777, 226778, 226779, 226780, 226781, 226782, 226783} },
{"Ghostloom Leggings", {6014545, 14545, 226784, 226785, 226786, 226787, 226788, 226789, 226790, 226791, 226792, 226793, 226794, 226795} },
{"Royal Cap Spaulders", {6014548, 14548, 226796, 226797, 226798, 226799, 226800, 226801, 226802, 226803, 226804, 226805, 226806, 226807} },
{"Boots of Avoidance", {6014549, 14549, 226808, 226809, 226810, 226811, 226812, 226813, 226814, 226815, 226816, 226817, 226818, 226819} },
{"Bladebane Armguards", {6014550, 14550, 226820, 226821, 226822, 226823, 226824, 226825, 226826, 226827, 226828, 226829, 226830, 226831} },
{"Stockade Pauldrons", {6014552, 14552, 128656, 214552, 1003261, 1010799, 1017467, 1024080, 1030644, 1037207, 1043770, 1050333, 1056896, 1063459} },
{"Sash of Mercy", {6014553, 14553, 314553, 214553, 1003262, 1010800, 1017468, 1024081, 1030645, 1037208, 1043771, 1050334, 1056897, 1063460} },
{"Cloudkeeper Legplates", {6014554, 14554, 314554, 214554, 1003263, 1010801, 1017469, 1024082, 1030646, 1037209, 1043772, 1050335, 1056898, 1063461} },
{"Alcor's Sunrazor", {6014555, 14555, 314555, 214555, 1003268, 1010802, 1017470, 1024083, 1030647, 1037210, 1043773, 1050336, 1056899, 1063462} },
{"The Lion Horn of Stormwind", {6014557, 14557, 314557, 214557, 1003270, 1010803, 1017471, 1024084, 1030648, 1037211, 1043774, 1050337, 1056900, 1063463} },
{"Lady Maye's Pendant", {6014558, 14558, 314558, 214558, 1003272, 1010804, 1017472, 1024085, 1030649, 1037212, 1043775, 1050338, 1056901, 1063464} },
{"Ebon Hilt of Marduk", {6014576, 14576, 227052, 227053, 227054, 227055, 227056, 227057, 227058, 227059, 227060, 227061, 227062, 227063} },
{"Skullsmoke Pants", {6014577, 14577, 227064, 227065, 227066, 227067, 227068, 227069, 227070, 227071, 227072, 227073, 227074, 227075} },
{"Bloodmail Hauberk", {6014611, 14611, 227453, 227454, 227455, 227456, 227457, 227458, 227459, 227460, 227461, 227462, 227463, 227464} },
{"Bloodmail Legguards", {6014612, 14612, 227465, 227466, 227467, 227468, 227474, 227475, 227476, 227477, 227478, 227479, 227480, 227481} },
{"Bloodmail Belt", {6014614, 14614, 227482, 227483, 227484, 227485, 227486, 227487, 227488, 227489, 227490, 227491, 227492, 227493} },
{"Bloodmail Gauntlets", {6014615, 14615, 227494, 227495, 227496, 227497, 227498, 227499, 227500, 227501, 227502, 227503, 227504, 227505} },
{"Bloodmail Boots", {6014616, 14616, 227506, 227507, 227508, 227509, 227510, 227511, 227512, 227513, 227514, 227515, 227516, 227517} },
{"Deathbone Girdle", {6014620, 14620, 227518, 227519, 227520, 227521, 227522, 227523, 227524, 227525, 227526, 227527, 227528, 227529} },
{"Deathbone Sabatons", {6014621, 14621, 227530, 227531, 227532, 227533, 227534, 227535, 227536, 227537, 227538, 227539, 227540, 227541} },
{"Deathbone Gauntlets", {6014622, 14622, 227542, 227543, 227544, 227545, 227546, 227547, 227548, 227549, 227550, 227551, 227552, 227553} },
{"Deathbone Legguards", {6014623, 14623, 227554, 227555, 227556, 227557, 227558, 227559, 227560, 227561, 227562, 227563, 227564, 227565} },
{"Deathbone Chestplate", {6014624, 14624, 227566, 227567, 227568, 227569, 227570, 227571, 227572, 227573, 227574, 227575, 227576, 227577} },
{"Necropile Robe", {6014626, 14626, 227578, 227579, 227580, 227581, 227582, 227583, 227584, 227585, 227586, 227587, 227588, 227589} },
{"Necropile Cuffs", {6014629, 14629, 227590, 227591, 227592, 227593, 227594, 227595, 227596, 227597, 227598, 227599, 227600, 227601} },
{"Necropile Boots", {6014631, 14631, 227602, 227603, 227604, 227605, 227606, 227607, 227608, 227609, 227610, 227611, 227612, 227613} },
{"Necropile Leggings", {6014632, 14632, 227614, 227615, 227616, 227617, 227618, 227619, 227620, 227621, 227622, 227623, 227624, 227625} },
{"Necropile Mantle", {6014633, 14633, 227626, 227627, 227628, 227629, 227630, 227631, 227632, 227633, 227634, 227635, 227636, 227637} },
{"Cadaverous Belt", {6014636, 14636, 227638, 227639, 227640, 227641, 227642, 227643, 227644, 227645, 227646, 227647, 227648, 227649} },
{"Cadaverous Armor", {6014637, 14637, 227650, 227651, 227652, 227653, 227654, 227655, 227656, 227657, 227658, 227659, 227660, 227661} },
{"Cadaverous Leggings", {6014638, 14638, 227662, 227663, 227664, 227665, 227666, 227667, 227668, 227669, 227670, 227671, 227672, 227673} },
{"Cadaverous Gloves", {6014640, 14640, 227674, 227675, 227676, 227677, 227678, 227679, 227680, 227681, 227682, 227683, 227684, 227685} },
{"Cadaverous Walkers", {6014641, 14641, 227686, 227687, 227688, 227689, 227690, 227691, 227692, 227693, 227694, 227695, 227696, 227697} },
{"Scorpashi Slippers", {227722, 14653, 227721, 227723, 227724, 227725, 227726, 227727, 227728, 227729, 227730, 227731, 227732, 227733} },
{"Scorpashi Breastplate", {227748, 14655, 227747, 227749, 227750, 227751, 227752, 227753, 227754, 227755, 227756, 227757, 227758, 227759} },
{"Scorpashi Gloves", {227774, 14657, 227773, 227775, 227776, 227777, 227778, 227779, 227780, 227781, 227782, 227783, 227784, 227785} },
{"Scorpashi Skullcap", {227787, 14658, 227786, 227788, 227789, 227790, 227791, 227792, 227793, 227794, 227795, 227796, 227797, 227798} },
{"Scorpashi Leggings", {227800, 14659, 227799, 227801, 227802, 227803, 227804, 227805, 227806, 227807, 227808, 227809, 227810, 227811} },
{"Scorpashi Shoulder Pads", {227813, 14660, 227812, 227814, 227815, 227816, 227817, 227818, 227819, 227820, 227821, 227822, 227823, 227824} },
{"Keeper's Cord", {227826, 14661, 227825, 227827, 227828, 227829, 227830, 227831, 227832, 227833, 227834, 227835, 227836, 227837} },
{"Keeper's Hooves", {227839, 14662, 227838, 227840, 227841, 227842, 227843, 227844, 227845, 227846, 227847, 227848, 227849, 227850} },
{"Keeper's Bindings", {227852, 14663, 227851, 227853, 227854, 227855, 227856, 227857, 227858, 227859, 227860, 227861, 227862, 227863} },
{"Keeper's Armor", {227865, 14664, 227864, 227866, 227867, 227868, 227869, 227870, 227871, 227872, 227873, 227874, 227875, 227876} },
{"Keeper's Cloak", {227878, 14665, 227877, 227884, 227885, 227886, 227887, 227888, 227889, 227890, 227891, 227892, 227893, 227894} },
{"Keeper's Gloves", {227896, 14666, 227895, 227897, 227898, 227899, 227900, 227901, 227902, 227903, 227904, 227905, 227906, 227907} },
{"Keeper's Wreath", {227909, 14667, 227908, 227910, 227911, 227912, 227913, 227914, 227915, 227916, 227917, 227918, 227919, 227920} },
{"Keeper's Woolies", {227922, 14668, 227921, 227923, 227924, 227925, 227926, 227927, 227928, 227929, 227930, 227931, 227932, 227933} },
{"Keeper's Mantle", {227935, 14669, 227934, 227936, 227937, 227938, 227939, 227940, 227941, 227942, 227943, 227944, 227945, 227946} },
{"Pridelord Armor", {227948, 14670, 227947, 227949, 227950, 227951, 227952, 227953, 227954, 227955, 227956, 227957, 227958, 227959} },
{"Pridelord Boots", {227961, 14671, 227960, 227962, 227963, 227964, 227965, 227966, 227967, 227968, 227969, 227970, 227971, 227972} },
{"Pridelord Bands", {227974, 14672, 227973, 227975, 227976, 227977, 227978, 227979, 227980, 227981, 227982, 227983, 227984, 227985} },
{"Pridelord Cape", {227987, 14673, 227986, 227988, 227989, 227990, 227991, 227992, 227993, 227994, 227995, 227996, 227997, 227998} },
{"Pridelord Girdle", {228000, 14674, 227999, 228001, 228002, 228003, 228004, 228005, 228006, 228007, 228008, 228009, 228010, 228011} },
{"Pridelord Gloves", {228013, 14675, 228012, 228014, 228015, 228016, 228017, 228018, 228019, 228020, 228021, 228022, 228023, 228024} },
{"Pridelord Halo", {228026, 14676, 228025, 228027, 228028, 228029, 228030, 228031, 228032, 228033, 228034, 228035, 228036, 228037} },
{"Pridelord Pants", {228039, 14677, 228038, 228040, 228041, 228042, 228043, 228044, 228045, 228046, 228047, 228048, 228049, 228050} },
{"Pridelord Pauldrons", {228052, 14678, 228051, 228053, 228054, 228055, 228056, 228057, 228058, 228059, 228060, 228061, 228062, 228063} },
{"Indomitable Vest", {228065, 14680, 228064, 228066, 228067, 228068, 228069, 228070, 228071, 228072, 228073, 228074, 228075, 228076} },
{"Indomitable Boots", {228078, 14681, 228077, 228079, 228080, 228081, 228082, 228083, 228084, 228085, 228086, 228087, 228088, 228089} },
{"Indomitable Armguards", {228091, 14682, 228090, 228092, 228093, 228094, 228095, 228096, 228097, 228098, 228099, 228100, 228101, 228102} },
{"Indomitable Cloak", {228104, 14683, 228103, 228105, 228106, 228107, 228108, 228109, 228110, 228111, 228112, 228113, 228114, 228115} },
{"Indomitable Belt", {228117, 14684, 228116, 228118, 228119, 228120, 228121, 228122, 228123, 228124, 228125, 228131, 228132, 228133} },
{"Indomitable Gauntlets", {228135, 14685, 228134, 228141, 228142, 228143, 228144, 228145, 228146, 228147, 228148, 228149, 228150, 228151} },
{"Indomitable Headdress", {228153, 14686, 228152, 228154, 228155, 228156, 228157, 228158, 228159, 228160, 228161, 228162, 228163, 228164} },
{"Indomitable Leggings", {228166, 14687, 228165, 228167, 228168, 228169, 228170, 228171, 228172, 228173, 228174, 228175, 228176, 228177} },
{"Indomitable Epaulets", {228179, 14688, 228178, 228180, 228181, 228182, 228183, 228184, 228185, 228186, 228187, 228188, 228189, 228190} },
{"Breastplate of Malorne", {100674, 14710, 314710, 214710, 1003273, 1010805, 1017473, 1024086, 1030650, 1037213, 1043776, 1050339, 1056902, 1063465} },
{"Gauntlets of Malorne", {116902, 14711, 314711, 214711, 1003274, 1010806, 1017474, 1024087, 1030651, 1037214, 1043777, 1050340, 1056903, 1063466} },
{"Stag-Helm of Malorne", {128381, 14712, 314712, 214712, 1003275, 1010807, 1017475, 1024088, 1030652, 1037215, 1043778, 1050341, 1056904, 1063467} },
{"Greaves of Malorne", {120174, 14713, 314713, 214713, 1003276, 1010808, 1017476, 1024089, 1030653, 1037216, 1043779, 1050342, 1056905, 1063468} },
{"Mantle of Malorne", {122722, 14714, 314714, 214714, 1003277, 1010809, 1017477, 1024090, 1030654, 1037217, 1043780, 1050343, 1056906, 1063469} },
{"Khan's Chestpiece", {228948, 14779, 228947, 228949, 228950, 228951, 228952, 228953, 228954, 228955, 228956, 228957, 228958, 228959} },
{"Khan's Buckler", {228961, 14780, 228960, 228962, 228965, 228969, 228970, 228971, 228973, 228974, 228975, 228976, 228977, 228978} },
{"Khan's Belt", {229006, 14783, 229005, 229007, 229008, 229009, 229010, 229013, 229014, 229018, 229024, 229025, 229026, 229027} },
{"Khan's Greaves", {229051, 14784, 229041, 229052, 229101, 229102, 229103, 229104, 229105, 229106, 229107, 229108, 229109, 229110} },
{"Khan's Helmet", {229112, 14785, 229111, 229113, 229114, 229115, 229116, 229117, 229118, 229119, 229120, 229121, 229122, 229123} },
{"Khan's Legguards", {229125, 14786, 229124, 229126, 229127, 229128, 229129, 229130, 229131, 229132, 229133, 229134, 229135, 229136} },
{"Khan's Mantle", {229138, 14787, 229137, 229139, 229140, 229141, 229142, 229143, 229144, 229145, 229146, 229147, 229148, 229149} },
{"Protector Armguards", {229151, 14788, 229150, 229152, 229153, 229154, 229155, 229156, 229157, 229158, 229159, 229160, 229161, 229162} },
{"Protector Breastplate", {229164, 14789, 229163, 229165, 229166, 229167, 229168, 229169, 229170, 229171, 229172, 229173, 229174, 229175} },
{"Protector Buckler", {229177, 14790, 229176, 229178, 229179, 229180, 229181, 229182, 229183, 229184, 229185, 229186, 229187, 229188} },
{"Protector Cape", {229190, 14791, 229189, 229191, 229192, 229193, 229194, 229195, 229196, 229197, 229198, 229199, 229200, 229201} },
{"Protector Gauntlets", {229203, 14792, 229202, 229204, 229205, 229206, 229207, 229208, 229209, 229210, 229211, 229212, 229213, 229214} },
{"Protector Waistband", {229216, 14793, 229215, 229217, 229218, 229219, 229220, 229221, 229222, 229223, 229224, 229225, 229226, 229227} },
{"Protector Ankleguards", {229229, 14794, 229228, 229230, 229231, 229232, 229233, 229234, 229235, 229236, 229237, 229238, 229239, 229240} },
{"Protector Helm", {229242, 14795, 229241, 229243, 229244, 229245, 229246, 229247, 229248, 229249, 229250, 229251, 229252, 229253} },
{"Protector Legguards", {229255, 14796, 229254, 229256, 229257, 229258, 229259, 229260, 229261, 229262, 229263, 229264, 229265, 229266} },
{"Protector Pads", {229268, 14797, 229267, 229269, 229270, 229271, 229272, 229273, 229274, 229275, 229276, 229277, 229278, 229279} },
{"Bloodlust Breastplate", {229281, 14798, 229280, 229282, 229283, 229284, 229285, 229286, 229287, 229288, 229289, 229290, 229291, 229292} },
{"Bloodlust Boots", {229294, 14799, 229293, 229295, 229296, 229297, 229298, 229299, 229300, 229301, 229302, 229303, 229304, 229305} },
{"Bloodlust Buckler", {229307, 14800, 229306, 229308, 229309, 229310, 229311, 229312, 229313, 229314, 229315, 229316, 229317, 229318} },
{"Bloodlust Cape", {229320, 14801, 229319, 229321, 229322, 229323, 229324, 229325, 229326, 229327, 229328, 229329, 229330, 229331} },
{"Bloodlust Gauntlets", {229333, 14802, 229332, 229334, 229335, 229336, 229337, 229338, 229339, 229340, 229341, 229342, 229343, 229344} },
{"Bloodlust Belt", {229346, 14803, 229345, 229347, 229348, 229349, 229350, 229351, 229352, 229353, 229354, 229355, 229356, 229357} },
{"Bloodlust Helm", {229359, 14804, 229358, 229360, 229361, 229362, 229363, 229364, 229365, 229366, 229367, 229368, 229369, 229370} },
{"Bloodlust Britches", {229372, 14805, 229371, 229373, 229374, 229375, 229376, 229377, 229378, 229379, 229380, 229381, 229382, 229383} },
{"Bloodlust Epaulets", {229385, 14806, 229384, 229386, 229387, 229388, 229389, 229390, 229391, 229392, 229393, 229394, 229395, 229396} },
{"Bloodlust Bracelets", {229398, 14807, 229397, 229399, 229400, 229401, 229402, 229403, 229404, 229405, 229406, 229407, 229408, 229409} },
{"Warstrike Belt", {229411, 14808, 229410, 229412, 229413, 229414, 229415, 229416, 229417, 229418, 229419, 229420, 229421, 229422} },
{"Warstrike Sabatons", {229424, 14809, 229423, 229425, 229426, 229427, 229428, 229429, 229430, 229431, 229432, 229433, 229434, 229435} },
{"Warstrike Armsplints", {229437, 14810, 229436, 229438, 229439, 229440, 229441, 229442, 229443, 229444, 229445, 229446, 229447, 229448} },
{"Warstrike Chestguard", {229450, 14811, 229449, 229451, 229452, 229453, 229454, 229455, 229456, 229457, 229459, 229460, 229461, 229462} },
{"Warstrike Buckler", {229464, 14812, 229463, 229465, 229466, 229467, 229468, 229469, 229470, 229471, 229472, 229473, 229474, 229475} },
{"Warstrike Cape", {229477, 14813, 229476, 229478, 229479, 229480, 229481, 229482, 229483, 229484, 229485, 229486, 229487, 229488} },
{"Warstrike Helmet", {229490, 14814, 229489, 229491, 229492, 229493, 229494, 229495, 229496, 229497, 229498, 229499, 229500, 229501} },
{"Warstrike Gauntlets", {229503, 14815, 229502, 229504, 229505, 229506, 229507, 229508, 229509, 229510, 229511, 229512, 229513, 229514} },
{"Warstrike Legguards", {229516, 14816, 229515, 229517, 229518, 229519, 229520, 229521, 229522, 229523, 229524, 229525, 229526, 229527} },
{"Warstrike Shoulder Pads", {229529, 14817, 229528, 229530, 229531, 229532, 229533, 229534, 229535, 229536, 229537, 229538, 229539, 229540} },
{"Tyrant's Chestpiece", {229685, 14835, 229684, 229686, 229687, 229688, 229689, 229690, 229691, 229692, 229693, 229694, 229695, 229696} },
{"Tyrant's Legplates", {229724, 14840, 229723, 229725, 229726, 229727, 229728, 229729, 229730, 229731, 229732, 229733, 229734, 229735} },
{"Tyrant's Shield", {229750, 14842, 229749, 229751, 229752, 229768, 229769, 229770, 229771, 229772, 229773, 229774, 229775, 229776} },
{"Tyrant's Helm", {229778, 14843, 229777, 229779, 229780, 229781, 229782, 229783, 229784, 229785, 229786, 229787, 229788, 229789} },
{"Sunscale Chestguard", {229791, 14844, 229790, 229792, 229793, 229794, 229795, 229796, 229797, 229798, 229799, 229800, 229801, 229802} },
{"Sunscale Gauntlets", {229804, 14846, 229803, 229805, 229806, 229807, 229808, 229809, 229810, 229811, 229812, 229813, 229814, 229815} },
{"Sunscale Belt", {229817, 14847, 229816, 229818, 229819, 229820, 229821, 229822, 229823, 229824, 229825, 229826, 229827, 229828} },
{"Sunscale Sabatons", {229830, 14848, 229829, 229831, 229832, 229833, 229834, 229835, 229836, 229837, 229838, 229839, 229840, 229841} },
{"Sunscale Helmet", {229843, 14849, 229842, 229844, 229845, 229846, 229847, 229848, 229849, 229850, 229851, 229852, 229853, 229854} },
{"Sunscale Legplates", {229856, 14850, 229855, 229857, 229858, 229859, 229860, 229861, 229862, 229863, 229864, 229865, 229866, 229867} },
{"Sunscale Spaulders", {229869, 14851, 229868, 229870, 229871, 229872, 229873, 229874, 229875, 229876, 229877, 229878, 229879, 229880} },
{"Sunscale Shield", {229882, 14852, 229881, 229883, 229884, 229885, 229886, 229887, 229888, 229889, 229890, 229891, 229892, 229893} },
{"Sunscale Wristguards", {229895, 14853, 229894, 229896, 229897, 229898, 229899, 229900, 229901, 229902, 229903, 229904, 229905, 229906} },
{"Vanguard Breastplate", {229908, 14854, 229907, 229909, 229910, 229911, 229912, 229913, 229914, 229915, 229916, 229917, 229919, 229926} },
{"Vanguard Gauntlets", {229928, 14855, 229927, 229929, 229930, 229931, 229932, 229933, 229934, 229935, 229936, 229937, 229938, 229939} },
{"Vanguard Girdle", {229941, 14856, 229940, 229942, 229943, 229944, 229945, 229946, 229952, 229953, 229954, 229955, 229956, 229957} },
{"Vanguard Sabatons", {229959, 14857, 229958, 229960, 229961, 229963, 229964, 229967, 229968, 229969, 229970, 229971, 229973, 229974} },
{"Vanguard Headdress", {229978, 14858, 229975, 229979, 229980, 229999, 230000, 230001, 230002, 230003, 230004, 230005, 230006, 230007} },
{"Vanguard Legplates", {230010, 14859, 230009, 230011, 230012, 230013, 230014, 230015, 230016, 230017, 230018, 230019, 230031, 230032} },
{"Vanguard Pauldrons", {230034, 14860, 230033, 230035, 230036, 230037, 230038, 230039, 230040, 230041, 230042, 230043, 230044, 230045} },
{"Vanguard Vambraces", {230069, 14861, 230046, 230070, 230071, 230072, 230073, 230074, 230076, 230077, 230078, 230086, 230087, 230088} },
{"Warleader's Breastplate", {230093, 14862, 230089, 230094, 230128, 230147, 230155, 230156, 230157, 230158, 230174, 230175, 230176, 230177} },
{"Warleader's Gauntlets", {230179, 14863, 230178, 230180, 230181, 230182, 230183, 230184, 230191, 230193, 230195, 230197, 230198, 230199} },
{"Warleader's Belt", {230203, 14864, 230202, 230204, 230208, 230209, 230218, 230224, 230225, 230226, 230227, 230251, 230252, 230253} },
{"Warleader's Greaves", {230255, 14865, 230254, 230256, 230257, 230258, 230259, 230260, 230261, 230262, 230263, 230264, 230265, 230266} },
{"Warleader's Crown", {230268, 14866, 230267, 230269, 230270, 230271, 230272, 230273, 230274, 230275, 230276, 230277, 230278, 230279} },
{"Warleader's Leggings", {230281, 14867, 230280, 230282, 230283, 230284, 230285, 230286, 230287, 230288, 230289, 230290, 230291, 230292} },
{"Warleader's Shoulders", {230294, 14868, 230293, 230295, 230296, 230297, 230298, 230299, 230300, 230301, 230302, 230303, 230304, 230305} },
{"Warleader's Bracers", {230307, 14869, 230306, 230308, 230309, 230310, 230311, 230312, 230313, 230314, 230315, 230316, 230317, 230318} },
{"Brutish Breastplate", {230437, 14904, 230436, 230438, 230439, 230440, 230441, 230442, 230443, 230444, 230445, 230448, 230451, 230452} },
{"Brutish Helmet", {230480, 14907, 230479, 230481, 230482, 230483, 230484, 230485, 230491, 230492, 230493, 230494, 230495, 230496} },
{"Brutish Legguards", {230498, 14908, 230497, 230499, 230500, 230501, 230502, 230503, 230504, 230505, 230506, 230507, 230508, 230509} },
{"Brutish Boots", {230537, 14911, 230536, 230538, 230539, 230540, 230541, 230542, 230543, 230544, 230545, 230546, 230547, 230548} },
{"Brutish Shield", {230550, 14912, 230549, 230551, 230552, 230553, 230554, 230555, 230556, 230557, 230558, 230559, 230560, 230561} },
{"Jade Greaves", {230563, 14913, 230562, 230564, 230565, 230566, 230567, 230568, 230569, 230570, 230571, 230572, 230573, 230574} },
{"Jade Bracers", {230576, 14914, 230575, 230577, 230578, 230579, 230580, 230581, 230582, 230583, 230584, 230585, 230586, 230587} },
{"Jade Breastplate", {230589, 14915, 230588, 230590, 230591, 230592, 230593, 230594, 230595, 230596, 230597, 230598, 230599, 230600} },
{"Jade Deflector", {230602, 14916, 230601, 230603, 230604, 230605, 230606, 230607, 230608, 230609, 230610, 230611, 230612, 230613} },
{"Jade Gauntlets", {230615, 14917, 230614, 230616, 230617, 230618, 230622, 230623, 230624, 230625, 230628, 230630, 230631, 230632} },
{"Jade Belt", {230634, 14918, 230633, 230635, 230636, 230637, 230638, 230639, 230640, 230645, 230646, 230647, 230648, 230649} },
{"Jade Circlet", {230651, 14919, 230650, 230652, 230653, 230654, 230655, 230656, 230657, 230658, 230659, 230660, 230661, 230662} },
{"Jade Legplates", {230670, 14920, 230669, 230671, 230672, 230679, 230688, 230689, 230690, 230691, 230692, 230693, 230694, 230695} },
{"Jade Epaulets", {230697, 14921, 230696, 230698, 230699, 230700, 230701, 230702, 230703, 230704, 230705, 230706, 230707, 230708} },
{"Lofty Sabatons", {230710, 14922, 230709, 230711, 230712, 230713, 230714, 230715, 230716, 230717, 230718, 230719, 230721, 230722} },
{"Lofty Armguards", {230724, 14923, 230723, 230725, 230726, 230727, 230728, 230729, 230730, 230731, 230732, 230733, 230734, 230735} },
{"Lofty Breastplate", {230737, 14924, 230736, 230738, 230739, 230740, 230741, 230742, 230743, 230744, 230745, 230746, 230747, 230748} },
{"Lofty Helm", {230750, 14925, 230749, 230751, 230752, 230753, 230754, 230755, 230756, 230757, 230758, 230759, 230760, 230761} },
{"Lofty Gauntlets", {230763, 14926, 230762, 230764, 230765, 230766, 230767, 230768, 230769, 230770, 230771, 230772, 230773, 230774} },
{"Lofty Belt", {230776, 14927, 230775, 230777, 230778, 230779, 230780, 230781, 230782, 230783, 230784, 230785, 230786, 230787} },
{"Lofty Legguards", {230789, 14928, 230788, 230790, 230791, 230792, 230793, 230794, 230795, 230796, 230797, 230798, 230799, 230800} },
{"Lofty Shoulder Pads", {230802, 14929, 230801, 230803, 230804, 230805, 230806, 230807, 230808, 230809, 230810, 230811, 230812, 230813} },
{"Lofty Shield", {230815, 14930, 230814, 230816, 230817, 230818, 230819, 230820, 230821, 230822, 230823, 230824, 230825, 230826} },
{"Heroic Armor", {230828, 14931, 230827, 230829, 230830, 230831, 230832, 230833, 230834, 230835, 230836, 230837, 230838, 230839} },
{"Heroic Greaves", {230841, 14932, 230840, 230842, 230843, 230844, 230845, 230846, 230847, 230848, 230849, 230850, 230851, 230852} },
{"Heroic Gauntlets", {230854, 14933, 230853, 230855, 230856, 230857, 230858, 230859, 230860, 230867, 230875, 230876, 230877, 230890} },
{"Heroic Girdle", {230921, 14934, 230920, 230922, 230923, 230924, 230925, 230926, 230927, 230928, 230929, 230930, 230931, 230932} },
{"Heroic Skullcap", {230934, 14935, 230933, 230935, 230936, 230937, 230938, 230939, 230940, 230941, 230942, 230943, 230944, 230945} },
{"Heroic Legplates", {230947, 14936, 230946, 230948, 230949, 230950, 230951, 230952, 230953, 230954, 230955, 230956, 230957, 230958} },
{"Heroic Pauldrons", {230960, 14937, 230959, 230961, 230962, 230963, 230964, 230965, 230966, 230967, 230968, 230971, 230973, 230981} },
{"Heroic Bracers", {230986, 14938, 230984, 230999, 231000, 231002, 231009, 231010, 231013, 231025, 231031, 231033, 231036, 231038} },
{"Warbringer's Chestguard", {231071, 14939, 231062, 231072, 231073, 231074, 231075, 231076, 231077, 231078, 231079, 231080, 231081, 231082} },
{"Warbringer's Shield", {231192, 14947, 231191, 231193, 231194, 231195, 231196, 231197, 231198, 231199, 231200, 231201, 231202, 231203} },
{"Bloodforged Chestpiece", {231205, 14948, 231204, 231206, 231207, 231208, 231209, 231210, 231211, 231212, 231213, 231214, 231215, 231216} },
{"Bloodforged Gauntlets", {231218, 14949, 231217, 231219, 231220, 231221, 231222, 231223, 231224, 231225, 231226, 231227, 231228, 231229} },
{"Bloodforged Belt", {231231, 14950, 231230, 231232, 231233, 231234, 231235, 231236, 231237, 231238, 231239, 231240, 231241, 231242} },
{"Bloodforged Sabatons", {231244, 14951, 231243, 231245, 231246, 231247, 231248, 231249, 231250, 231251, 231252, 231253, 231254, 231255} },
{"Bloodforged Helmet", {231257, 14952, 231256, 231258, 231259, 231260, 231261, 231262, 231263, 231264, 231265, 231266, 231267, 231268} },
{"Bloodforged Legplates", {231270, 14953, 231269, 231271, 231272, 231273, 231274, 231275, 231276, 231277, 231278, 231279, 231280, 231281} },
{"Bloodforged Shield", {231283, 14954, 231282, 231296, 231300, 231301, 231302, 231307, 231309, 231310, 231311, 231312, 231313, 231314} },
{"Bloodforged Shoulder Pads", {231316, 14955, 231315, 231317, 231324, 231325, 231327, 231337, 231341, 231344, 231345, 231346, 231347, 231348} },
{"High Chief's Sabatons", {231363, 14957, 231362, 231364, 231365, 231366, 231367, 231368, 231369, 231370, 231371, 231372, 231373, 231374} },
{"High Chief's Armor", {231381, 14958, 231380, 231382, 231383, 231384, 231385, 231386, 231387, 231388, 231389, 231390, 231391, 231392} },
{"High Chief's Gauntlets", {231394, 14959, 231393, 231395, 231398, 231399, 231401, 231402, 231403, 231404, 231405, 231408, 231414, 231415} },
{"High Chief's Belt", {231417, 14960, 231416, 231418, 231419, 231420, 231421, 231422, 231423, 231424, 231425, 231426, 231427, 231428} },
{"High Chief's Crown", {231430, 14961, 231429, 231431, 231432, 231433, 231434, 231435, 231436, 231437, 231438, 231439, 231440, 231441} },
{"High Chief's Legguards", {231443, 14962, 231442, 231444, 231445, 231446, 231447, 231448, 231449, 231450, 231451, 231452, 231453, 231454} },
{"High Chief's Pauldrons", {231456, 14963, 231455, 231457, 231458, 231459, 231460, 231461, 231462, 231463, 231464, 231465, 231466, 231467} },
{"High Chief's Shield", {231469, 14964, 231468, 231470, 231471, 231472, 231473, 231474, 231475, 231476, 231477, 231478, 231479, 231480} },
{"High Chief's Bindings", {231482, 14965, 231481, 231483, 231484, 231485, 231486, 231487, 231488, 231489, 231490, 231491, 231492, 231493} },
{"Glorious Breastplate", {231495, 14966, 231494, 231496, 231497, 231498, 231499, 231500, 231501, 231502, 231503, 231504, 231505, 231506} },
{"Glorious Gauntlets", {231508, 14967, 231507, 231509, 231510, 231511, 231512, 231513, 231514, 231515, 231516, 231517, 231518, 231519} },
{"Glorious Belt", {231521, 14968, 231520, 231522, 231523, 231524, 231525, 231526, 231527, 231528, 231529, 231530, 231531, 231532} },
{"Glorious Headdress", {231534, 14969, 231533, 231535, 231536, 231537, 231538, 231539, 231540, 231541, 231542, 231543, 231544, 231545} },
{"Glorious Legplates", {231547, 14970, 231546, 231548, 231549, 231550, 231551, 231552, 231553, 231554, 231555, 231556, 231557, 231558} },
{"Glorious Shoulder Pads", {231560, 14971, 231559, 231561, 231562, 231563, 231564, 231565, 231566, 231567, 231568, 231569, 231570, 231571} },
{"Glorious Sabatons", {231573, 14972, 231572, 231574, 231575, 231576, 231577, 231578, 231579, 231580, 231581, 231582, 231583, 231584} },
{"Glorious Shield", {231586, 14973, 231585, 231587, 231588, 231589, 231590, 231591, 231592, 231593, 231594, 231595, 231596, 231597} },
{"Glorious Bindings", {231599, 14974, 231598, 231600, 231601, 231602, 231603, 231604, 231605, 231606, 231607, 231608, 231609, 231610} },
{"Exalted Harness", {231612, 14975, 231611, 231615, 231617, 231620, 231621, 231623, 231624, 231625, 231626, 231627, 231628, 231629} },
{"Exalted Gauntlets", {231631, 14976, 231630, 231632, 231633, 231634, 231635, 231636, 231637, 231638, 231639, 231640, 231641, 231642} },
{"Exalted Girdle", {231644, 14977, 231643, 231645, 231646, 231647, 231648, 231649, 231650, 231651, 231652, 231653, 231654, 231655} },
{"Exalted Sabatons", {231657, 14978, 231656, 231658, 231659, 231660, 231661, 231662, 231663, 231664, 231665, 231666, 231667, 231668} },
{"Exalted Helmet", {231670, 14979, 231669, 231671, 231672, 231673, 231674, 231675, 231676, 231677, 231678, 231679, 231680, 231681} },
{"Exalted Legplates", {231683, 14980, 231682, 231684, 231685, 231686, 231687, 231688, 231689, 231690, 231691, 231692, 231693, 231694} },
{"Exalted Epaulets", {231696, 14981, 231695, 231697, 231698, 231699, 231700, 231701, 231702, 231703, 231704, 231705, 231706, 231707} },
{"Exalted Shield", {231709, 14982, 231708, 231710, 231711, 231712, 231713, 231714, 231715, 231716, 231717, 231718, 231719, 231720} },
{"Exalted Armsplints", {231722, 14983, 231721, 231723, 231724, 231725, 231726, 231727, 231728, 231729, 231730, 231731, 231732, 231733} },
{"Warbringer Helmet", {6014984, 14984, 314984, 214984, 1003278, 1010810, 1017478, 1024091, 1030655, 1037218, 1043781, 1050344, 1056907, 1063470} },
{"Warbringer Hauberk", {6014985, 14985, 314985, 214985, 1003279, 1010811, 1017479, 1024092, 1030656, 1037219, 1043782, 1050345, 1056908, 1063471} },
{"Warbringer Leggings", {6014987, 14987, 314987, 214987, 1003280, 1010812, 1017480, 1024093, 1030657, 1037220, 1043783, 1050346, 1056909, 1063472} },
{"Warbringer Pauldrons", {6014988, 14988, 314988, 214988, 1003281, 1010813, 1017481, 1024094, 1030658, 1037221, 1043784, 1050347, 1056910, 1063473} },
{"Warbringer Gloves", {6014989, 14989, 314989, 214989, 1003282, 1010814, 1017482, 1024095, 1030659, 1037222, 1043785, 1050348, 1056911, 1063474} },
{"Destroyer Hauberk", {6014990, 14990, 314990, 214990, 1003283, 1010815, 1017483, 1024096, 1030660, 1037223, 1043786, 1050349, 1056912, 1063475} },
{"Destroyer Gloves", {6014991, 14991, 314991, 214991, 1003284, 1010816, 1017484, 1024097, 1030661, 1037224, 1043787, 1050350, 1056913, 1063476} },
{"Destroyer Helmet", {6014992, 14992, 314992, 214992, 1003286, 1010817, 1017485, 1024098, 1030662, 1037225, 1043788, 1050351, 1056914, 1063477} },
{"Destroyer Leggings", {6014993, 14993, 314993, 214993, 1003288, 1010818, 1017486, 1024099, 1030663, 1037226, 1043789, 1050352, 1056915, 1063478} },
{"Destroyer Pauldrons", {6014994, 14994, 314994, 214994, 1003289, 1010819, 1017487, 1024100, 1030664, 1037227, 1043790, 1050353, 1056916, 1063479} },
{"Green Dragonscale Breastplate", {6015045, 15045, 231838, 231839, 231840, 231841, 231842, 231843, 231844, 231845, 231846, 231847, 231848, 231849} },
{"Green Dragonscale Leggings", {6015046, 15046, 231850, 231851, 231852, 231853, 231854, 231855, 231856, 231857, 231858, 231859, 231860, 231861} },
{"Red Dragonscale Breastplate", {6015047, 15047, 231862, 231863, 231864, 231865, 231866, 231867, 231868, 231869, 231870, 231871, 231872, 231873} },
{"Blue Dragonscale Breastplate", {6015048, 15048, 231874, 231875, 231876, 231877, 231878, 231879, 231880, 231881, 231882, 231883, 231884, 231885} },
{"Blue Dragonscale Shoulders", {6015049, 15049, 231886, 231887, 231888, 231889, 231890, 231891, 231892, 231893, 231894, 231895, 231896, 231897} },
{"Black Dragonscale Breastplate", {6015050, 15050, 231898, 231899, 231900, 231901, 231902, 231903, 231904, 231905, 231906, 231907, 231908, 231909} },
{"Black Dragonscale Shoulders", {6015051, 15051, 231910, 231911, 231912, 231913, 231914, 231915, 231916, 231917, 231918, 231919, 231920, 231921} },
{"Black Dragonscale Leggings", {6015052, 15052, 231922, 231923, 231924, 231925, 231926, 231927, 231928, 231929, 231930, 231931, 231932, 231933} },
{"Volcanic Breastplate", {231935, 15053, 231934, 231936, 231937, 231938, 231939, 231940, 231941, 231942, 231943, 231944, 231945, 231946} },
{"Volcanic Leggings", {231948, 15054, 231947, 231949, 231950, 231951, 231952, 231953, 231954, 231955, 231956, 231957, 231958, 231959} },
{"Volcanic Shoulders", {231966, 15055, 231965, 231970, 231978, 231984, 231985, 231986, 231994, 232003, 232014, 232025, 232026, 232027} },
{"Stormshroud Armor", {6015056, 15056, 232028, 232044, 232045, 232046, 232052, 232053, 232054, 232055, 232061, 232062, 232063, 232064} },
{"Stormshroud Pants", {6015057, 15057, 232065, 232066, 232067, 232068, 232069, 232070, 232071, 232072, 232073, 232074, 232075, 232076} },
{"Stormshroud Shoulders", {6015058, 15058, 232077, 232078, 232079, 232080, 232081, 232082, 232083, 232084, 232085, 232086, 232087, 232088} },
{"Living Breastplate", {6015059, 15059, 232089, 232090, 232091, 232092, 232093, 232094, 232095, 232096, 232097, 232098, 232099, 232100} },
{"Living Leggings", {6015060, 15060, 232101, 232102, 232103, 232104, 232105, 232106, 232107, 232108, 232109, 232110, 232111, 232112} },
{"Living Shoulders", {6015061, 15061, 232113, 232114, 232115, 232116, 232117, 232118, 232119, 232120, 232121, 232122, 232123, 232124} },
{"Devilsaur Leggings", {6015062, 15062, 232125, 232126, 232127, 232128, 232129, 232130, 232131, 232132, 232133, 232134, 232135, 232136} },
{"Devilsaur Gauntlets", {6015063, 15063, 232137, 232138, 232139, 232140, 232141, 232142, 232143, 232144, 232145, 232146, 232147, 232148} },
{"Warbear Harness", {6015064, 15064, 232149, 232150, 232151, 232152, 232153, 232154, 232155, 232156, 232157, 232158, 232159, 232160} },
{"Warbear Woolies", {6015065, 15065, 232161, 232162, 232163, 232164, 232165, 232166, 232167, 232168, 232169, 232170, 232171, 232172} },
{"Ironfeather Breastplate", {6015066, 15066, 232173, 232174, 232175, 232176, 232177, 232178, 232179, 232180, 232181, 232182, 232183, 232184} },
{"Ironfeather Shoulders", {6015067, 15067, 232185, 232186, 232187, 232188, 232189, 232190, 232191, 232192, 232193, 232194, 232195, 232196} },
{"Frostsaber Tunic", {232198, 15068, 232197, 232199, 232200, 232201, 232202, 232203, 232204, 232205, 232206, 232207, 232208, 232209} },
{"Frostsaber Leggings", {232211, 15069, 232210, 232212, 232213, 232214, 232215, 232216, 232217, 232218, 232219, 232220, 232221, 232222} },
{"Frostsaber Gloves", {232224, 15070, 232223, 232225, 232226, 232227, 232228, 232229, 232230, 232231, 232233, 232244, 232246, 232249} },
{"Frostsaber Boots", {232274, 15071, 232272, 232277, 232281, 232282, 232283, 232284, 232285, 232286, 232287, 232288, 232289, 232290} },
{"Chimeric Leggings", {232292, 15072, 232291, 232293, 232294, 232295, 232296, 232297, 232298, 232299, 232300, 232301, 232302, 232303} },
{"Chimeric Boots", {232305, 15073, 232304, 232306, 232307, 232308, 232309, 232310, 232311, 232312, 232313, 232314, 232315, 232316} },
{"Chimeric Gloves", {232318, 15074, 232317, 232319, 232320, 232321, 232322, 232355, 232356, 232357, 232358, 232359, 232360, 232364} },
{"Chimeric Vest", {232372, 15075, 232371, 232378, 232379, 232380, 232381, 232382, 232383, 232384, 232386, 232387, 232388, 232389} },
{"Heavy Scorpid Vest", {232391, 15076, 232390, 232392, 232393, 232394, 232395, 232396, 232397, 232398, 232399, 232400, 232401, 232402} },
{"Heavy Scorpid Bracers", {232404, 15077, 232403, 232405, 232406, 232407, 232408, 232409, 232410, 232411, 232412, 232413, 232414, 232415} },
{"Heavy Scorpid Gauntlets", {232417, 15078, 232416, 232418, 232419, 232420, 232421, 232422, 232423, 232424, 232425, 232426, 232427, 232428} },
{"Heavy Scorpid Leggings", {232430, 15079, 232429, 232431, 232432, 232433, 232434, 232435, 232436, 232437, 232438, 232439, 232440, 232441} },
{"Heavy Scorpid Helm", {232443, 15080, 232442, 232444, 232445, 232446, 232447, 232448, 232449, 232450, 232451, 232452, 232453, 232454} },
{"Heavy Scorpid Shoulders", {232456, 15081, 232455, 232457, 232458, 232459, 232460, 232461, 232462, 232463, 232464, 232465, 232466, 232467} },
{"Heavy Scorpid Belt", {232469, 15082, 232468, 232470, 232472, 232473, 232474, 232475, 232476, 232477, 232478, 232479, 232480, 232481} },
{"Wicked Leather Gauntlets", {232484, 15083, 232482, 232485, 232486, 232487, 232488, 232489, 232490, 232491, 232492, 232493, 232494, 232495} },
{"Wicked Leather Bracers", {232499, 15084, 232498, 232502, 232503, 232504, 232506, 232507, 232508, 232509, 232511, 232514, 232520, 232522} },
{"Wicked Leather Armor", {232529, 15085, 232523, 232530, 232531, 232532, 232533, 232534, 232535, 232536, 232537, 232538, 232539, 232540} },
{"Wicked Leather Headband", {232542, 15086, 232541, 232543, 232544, 232545, 232546, 232547, 232548, 232549, 232550, 232551, 232552, 232553} },
{"Wicked Leather Pants", {232555, 15087, 232554, 232556, 232557, 232558, 232559, 232560, 232561, 232562, 232563, 232564, 232565, 232566} },
{"Wicked Leather Belt", {232568, 15088, 232567, 232569, 232570, 232571, 232572, 232573, 232574, 232575, 232576, 232577, 232578, 232579} },
{"Runic Leather Armor", {232581, 15090, 232580, 232582, 232583, 232584, 232585, 232586, 232587, 232588, 232594, 232595, 232596, 232597} },
{"Runic Leather Gauntlets", {232599, 15091, 232598, 232600, 232601, 232602, 232603, 232604, 232605, 232607, 232610, 232611, 232612, 232613} },
{"Runic Leather Bracers", {232615, 15092, 232614, 232616, 232617, 232618, 232619, 232620, 232621, 232622, 232623, 232624, 232625, 232626} },
{"Runic Leather Belt", {232628, 15093, 232627, 232629, 232630, 232631, 232632, 232633, 232634, 232635, 232636, 232637, 232638, 232639} },
{"Runic Leather Headband", {232641, 15094, 232640, 232642, 232643, 232644, 232645, 232646, 232647, 232648, 232649, 232650, 232651, 232652} },
{"Runic Leather Pants", {232654, 15095, 232653, 232655, 232656, 232657, 232658, 232659, 232660, 232661, 232662, 232663, 232664, 232665} },
{"Runic Leather Shoulders", {232667, 15096, 232666, 232668, 232669, 232670, 232671, 232672, 232673, 232674, 232675, 232676, 232677, 232678} },
{"Highborne Pants", {232913, 15119, 232912, 232914, 232915, 232916, 232917, 232918, 232919, 232920, 232921, 232922, 232923, 232924} },
{"Onyxia Scale Cloak", {6015138, 15138, 233176, 233177, 233178, 233179, 233180, 233181, 233182, 233183, 233184, 233185, 233186, 233187} },
{"Onyxia Scale Breastplate", {6015141, 15141, 233221, 233222, 233223, 233224, 233225, 233226, 233227, 233228, 233229, 233230, 233231, 233232} },
{"Imposing Vest", {233560, 15164, 233559, 233561, 233562, 233563, 233564, 233565, 233566, 233567, 233568, 233569, 233570, 233571} },
{"Imposing Bandana", {233600, 15167, 233599, 233601, 233602, 233603, 233604, 233605, 233606, 233607, 233608, 233609, 233610, 233611} },
{"Potent Armor", {233639, 15170, 233638, 233646, 233647, 233648, 233649, 233650, 233651, 233652, 233653, 233654, 233655, 233656} },
{"Potent Boots", {233658, 15171, 233657, 233659, 233660, 233661, 233662, 233663, 233664, 233665, 233666, 233667, 233668, 233669} },
{"Potent Bands", {233671, 15172, 233670, 233672, 233673, 233674, 233675, 233676, 233677, 233678, 233679, 233680, 233681, 233682} },
{"Potent Cape", {233684, 15173, 233683, 233685, 233686, 233687, 233688, 233689, 233690, 233691, 233692, 233693, 233694, 233695} },
{"Potent Gloves", {233697, 15174, 233696, 233698, 233699, 233700, 233701, 233702, 233703, 233704, 233705, 233706, 233707, 233708} },
{"Potent Helmet", {233710, 15175, 233709, 233711, 233712, 233713, 233714, 233715, 233716, 233717, 233718, 233719, 233720, 233721} },
{"Potent Pants", {233723, 15176, 233722, 233724, 233725, 233726, 233727, 233728, 233729, 233730, 233731, 233732, 233733, 233734} },
{"Potent Shoulders", {233736, 15177, 233735, 233737, 233738, 233739, 233740, 233741, 233742, 233743, 233744, 233745, 233746, 233747} },
{"Potent Belt", {233749, 15178, 233748, 233750, 233751, 233752, 233753, 233754, 233755, 233756, 233757, 233758, 233759, 233760} },
{"Praetorian Padded Armor", {233762, 15179, 233761, 233763, 233764, 233765, 233766, 233767, 233768, 233769, 233770, 233771, 233772, 233773} },
{"Praetorian Girdle", {233775, 15180, 233774, 233776, 233777, 233778, 233779, 233780, 233781, 233782, 233783, 233784, 233785, 233786} },
{"Praetorian Boots", {233788, 15181, 233787, 233789, 233790, 233791, 233792, 233793, 233794, 233795, 233796, 233797, 233798, 233799} },
{"Praetorian Wristbands", {233801, 15182, 233800, 233802, 233803, 233804, 233805, 233806, 233807, 233808, 233809, 233810, 233814, 233815} },
{"Praetorian Cloak", {233817, 15183, 233816, 233818, 233819, 233820, 233821, 233822, 233823, 233824, 233825, 233826, 233827, 233832} },
{"Praetorian Gloves", {233834, 15184, 233833, 233835, 233836, 233837, 233838, 233839, 233840, 233841, 233842, 233843, 233844, 233845} },
{"Praetorian Coif", {233847, 15185, 233846, 233848, 233849, 233850, 233851, 233852, 233853, 233854, 233855, 233856, 233857, 233858} },
{"Praetorian Leggings", {233860, 15186, 233859, 233861, 233862, 233863, 233864, 233865, 233866, 233867, 233868, 233869, 233870, 233871} },
{"Praetorian Pauldrons", {233873, 15187, 233872, 233874, 233875, 233918, 233919, 233920, 233921, 233922, 233923, 233924, 233925, 233926} },
{"Grand Armguards", {233928, 15188, 233927, 233929, 233930, 233931, 233932, 233933, 233934, 233935, 233936, 233937, 233938, 233939} },
{"Grand Boots", {233941, 15189, 233940, 233942, 233943, 233944, 233945, 233946, 233947, 233948, 233949, 233950, 233951, 233952} },
{"Grand Cloak", {233954, 15190, 233953, 233955, 233956, 233957, 233958, 233959, 233960, 233961, 233962, 233963, 233964, 233965} },
{"Grand Belt", {233967, 15191, 233966, 233968, 233969, 233970, 233971, 233972, 233973, 233974, 233975, 233976, 233977, 233978} },
{"Grand Gauntlets", {233980, 15192, 233979, 233981, 233982, 233983, 233984, 233985, 233986, 233987, 233988, 233989, 233990, 233991} },
{"Grand Crown", {233993, 15193, 233992, 233994, 233995, 233996, 233997, 233998, 233999, 234000, 234001, 234002, 234003, 234004} },
{"Grand Legguards", {234006, 15194, 234005, 234007, 234008, 234013, 234014, 234015, 234016, 234017, 234018, 234019, 234020, 234021} },
{"Grand Breastplate", {234023, 15195, 234022, 234024, 234025, 234026, 234027, 234028, 234030, 234031, 234032, 234033, 234034, 234035} },
{"Rune Sword", {234262, 15216, 234261, 234263, 234264, 234265, 234266, 234267, 234268, 234269, 234270, 234271, 234272, 234273} },
{"Widow Blade", {234275, 15217, 234274, 234276, 234277, 234278, 234279, 234280, 234281, 234282, 234283, 234284, 234285, 234286} },
{"Crystal Sword", {234288, 15218, 234287, 234289, 234290, 234291, 234292, 234293, 234294, 234295, 234296, 234297, 234298, 234299} },
{"Dimensional Blade", {234301, 15219, 234300, 234302, 234303, 234304, 234305, 234306, 234307, 234308, 234309, 234310, 234311, 234312} },
{"Battlefell Sabre", {234314, 15220, 234313, 234315, 234316, 234317, 234318, 234319, 234320, 234321, 234322, 234323, 234324, 234325} },
{"Holy War Sword", {234327, 15221, 234326, 234328, 234330, 234335, 234338, 234353, 234354, 234355, 234356, 234357, 234358, 234359} },
{"Diamond-Tip Bludgeon", {234475, 15227, 234474, 234476, 234477, 234478, 234479, 234480, 234481, 234482, 234483, 234484, 234486, 234489} },
{"Smashing Star", {234491, 15228, 234490, 234492, 234493, 234494, 234495, 234496, 234497, 234498, 234499, 234500, 234501, 234502} },
{"Blesswind Hammer", {234504, 15229, 234503, 234505, 234506, 234507, 234508, 234509, 234510, 234511, 234512, 234513, 234514, 234515} },
{"Crescent Edge", {234613, 15235, 234612, 234614, 234615, 234616, 234617, 234618, 234619, 234620, 234621, 234622, 234623, 234624} },
{"Moon Cleaver", {234626, 15236, 234625, 234627, 234628, 234629, 234630, 234631, 234632, 234634, 234635, 234636, 234637, 234638} },
{"Corpse Harvester", {234640, 15237, 234639, 234641, 234642, 234643, 234644, 234645, 234646, 234647, 234648, 234649, 234650, 234651} },
{"Warlord's Axe", {234653, 15238, 234652, 234654, 234655, 234656, 234657, 234658, 234659, 234660, 234661, 234662, 234663, 234665} },
{"Felstone Reaver", {234667, 15239, 234666, 234668, 234669, 234670, 234671, 234672, 234673, 234674, 234676, 234677, 234678, 234679} },
{"Demon's Claw", {234681, 15240, 234680, 234682, 234683, 234684, 234685, 234686, 234687, 234688, 234689, 234690, 234691, 234692} },
{"Vorpal Dagger", {234746, 15245, 234745, 234747, 234748, 234749, 234750, 234751, 234752, 234753, 234754, 234755, 234756, 234757} },
{"Demon Blade", {234759, 15246, 234758, 234760, 234761, 234762, 234763, 234764, 234765, 234766, 234767, 234768, 234769, 234770} },
{"Bloodstrike Dagger", {234772, 15247, 234771, 234773, 234774, 234775, 234776, 234777, 234778, 234779, 234780, 234781, 234782, 234783} },
{"Tusker Sword", {234837, 15252, 234836, 234838, 234839, 234840, 234841, 234842, 234843, 234844, 234845, 234846, 234847, 234849} },
{"Beheading Blade", {234859, 15253, 234850, 234860, 234861, 234862, 234863, 234864, 234865, 234866, 234867, 234868, 234869, 234870} },
{"Dark Espadon", {234872, 15254, 234871, 234873, 234874, 234875, 234876, 234877, 234878, 234879, 234880, 234881, 234882, 234883} },
{"Gallant Flamberge", {234885, 15255, 234884, 234886, 234887, 234888, 234889, 234890, 234891, 234892, 234893, 234894, 234895, 234896} },
{"Massacre Sword", {234898, 15256, 234897, 234899, 234900, 234901, 234902, 234903, 234904, 234905, 234906, 234907, 234908, 234909} },
{"Shin Blade", {234911, 15257, 234910, 234912, 234913, 234914, 234915, 234916, 234917, 234918, 234919, 234920, 234921, 234922} },
{"Divine Warblade", {234924, 15258, 234923, 234925, 234926, 234927, 234928, 234929, 234930, 234931, 234932, 234933, 234934, 234935} },
{"Greater Maul", {234976, 15262, 234975, 234977, 234978, 234979, 234980, 234981, 234982, 234983, 234984, 234985, 234986, 234987} },
{"Royal Mallet", {234989, 15263, 234988, 234990, 234991, 234992, 234993, 234994, 234995, 234996, 234997, 234998, 234999, 235000} },
{"Backbreaker", {235002, 15264, 235001, 235003, 235004, 235005, 235006, 235007, 235008, 235009, 235010, 235011, 235012, 235013} },
{"Painbringer", {235015, 15265, 235014, 235016, 235017, 235018, 235019, 235020, 235021, 235022, 235023, 235024, 235025, 235026} },
{"Fierce Mauler", {235028, 15266, 235027, 235029, 235030, 235031, 235032, 235033, 235034, 235035, 235036, 235037, 235038, 235039} },
{"Brutehammer", {235041, 15267, 235040, 235042, 235043, 235044, 235045, 235046, 235047, 235048, 235049, 235050, 235051, 235052} },
{"Gigantic War Axe", {235080, 15270, 235079, 235081, 235082, 235083, 235084, 235085, 235086, 235087, 235088, 235089, 235090, 235091} },
{"Colossal Great Axe", {235093, 15271, 235092, 235094, 235095, 235096, 235097, 235098, 235099, 235100, 235101, 235102, 235103, 235104} },
{"Razor Axe", {235106, 15272, 235105, 235107, 235108, 235109, 235110, 235111, 235112, 235113, 235114, 235115, 235116, 235117} },
{"Death Striker", {235119, 15273, 235118, 235120, 235121, 235122, 235123, 235124, 235125, 235126, 235127, 235128, 235129, 235130} },
{"Diviner Long Staff", {235132, 15274, 235131, 235133, 235134, 235135, 235136, 235137, 235138, 235139, 235140, 235141, 235142, 235143} },
{"Thaumaturgist Staff", {235145, 15275, 235144, 235146, 235147, 235148, 235149, 235150, 235151, 235152, 235153, 235154, 235155, 235156} },
{"Magus Long Staff", {235158, 15276, 235157, 235159, 235160, 235161, 235162, 235163, 235164, 235165, 235166, 235167, 235168, 235169} },
{"Solstice Staff", {235171, 15278, 235170, 235172, 235173, 235174, 235175, 235176, 235177, 235178, 235179, 235180, 235181, 235182} },
{"Ivory Wand", {235184, 15279, 235183, 235185, 235186, 235187, 235188, 235189, 235190, 235191, 235192, 235193, 235194, 235195} },
{"Wizard's Hand", {235197, 15280, 235196, 235198, 235199, 235200, 235201, 235202, 235203, 235204, 235205, 235206, 235207, 235208} },
{"Glowstar Rod", {235210, 15281, 235209, 235211, 235212, 235213, 235214, 235215, 235216, 235217, 235218, 235219, 235220, 235221} },
{"Dragon Finger", {235223, 15282, 235222, 235224, 235225, 235226, 235227, 235228, 235229, 235230, 235231, 235232, 235233, 235235} },
{"Lunar Wand", {235237, 15283, 235236, 235238, 235239, 235240, 235241, 235242, 235243, 235244, 235245, 235246, 235247, 235248} },
{"Blasthorn Bow", {235305, 15288, 235304, 235306, 235307, 235308, 235309, 235310, 235311, 235312, 235313, 235314, 235315, 235316} },
{"Archstrike Bow", {235318, 15289, 235317, 235319, 235320, 235321, 235322, 235323, 235324, 235325, 235326, 235327, 235328, 235329} },
{"Harpy Needler", {235331, 15291, 235330, 235332, 235333, 235334, 235335, 235336, 235337, 235338, 235339, 235340, 235341, 235342} },
{"Siege Bow", {235344, 15294, 235343, 235345, 235346, 235347, 235348, 235349, 235350, 235351, 235352, 235353, 235354, 235355} },
{"Quillfire Bow", {235357, 15295, 235356, 235358, 235359, 235360, 235361, 235362, 235363, 235364, 235365, 235366, 235367, 235368} },
{"Hawkeye Bow", {235370, 15296, 235369, 235371, 235372, 235373, 235374, 235375, 235376, 235377, 235378, 235379, 235380, 235381} },
{"Percussion Shotgun", {235539, 15323, 235538, 235540, 235541, 235542, 235543, 235544, 235545, 235546, 235547, 235548, 235549, 235550} },
{"Burnside Rifle", {235552, 15324, 235551, 235553, 235554, 235555, 235556, 235557, 235558, 235559, 235560, 235561, 235562, 235563} },
{"Sharpshooter Harquebus", {235565, 15325, 235564, 235566, 235567, 235568, 235569, 235570, 235571, 235572, 235573, 235574, 235575, 235576} },
{"Wolf Rider's Headgear", {236199, 15373, 236198, 236200, 236201, 236202, 236203, 236204, 236205, 236206, 236207, 236208, 236209, 236210} },
{"Wolf Rider's Padded Armor", {236238, 15376, 236237, 236239, 236240, 236241, 236242, 236243, 236244, 236245, 236246, 236247, 236248, 236249} },
{"Rageclaw Belt", {236264, 15378, 236263, 236265, 236266, 236267, 236268, 236269, 236270, 236271, 236272, 236273, 236274, 236275} },
{"Rageclaw Boots", {236277, 15379, 236276, 236278, 236279, 236280, 236281, 236282, 236283, 236284, 236285, 236286, 236287, 236288} },
{"Rageclaw Bracers", {236290, 15380, 236289, 236291, 236292, 236293, 236294, 236295, 236296, 236297, 236298, 236299, 236300, 236301} },
{"Rageclaw Chestguard", {236303, 15381, 236302, 236304, 236305, 236306, 236307, 236308, 236309, 236310, 236311, 236312, 236313, 236314} },
{"Rageclaw Gloves", {236329, 15383, 236328, 236330, 236331, 236332, 236333, 236334, 236335, 236336, 236337, 236338, 236339, 236340} },
{"Rageclaw Helm", {236342, 15384, 236341, 236343, 236344, 236345, 236346, 236347, 236348, 236349, 236350, 236351, 236352, 236353} },
{"Rageclaw Leggings", {236355, 15385, 236354, 236356, 236357, 236358, 236359, 236360, 236361, 236362, 236363, 236364, 236365, 236366} },
{"Rageclaw Shoulder Pads", {236368, 15386, 236367, 236369, 236370, 236371, 236372, 236373, 236374, 236375, 236376, 236377, 236378, 236379} },
{"Jadefire Bracelets", {236381, 15387, 236380, 236382, 236383, 236384, 236385, 236386, 236387, 236388, 236389, 236390, 236391, 236392} },
{"Jadefire Belt", {236394, 15388, 236393, 236395, 236396, 236397, 236398, 236399, 236400, 236401, 236402, 236403, 236404, 236405} },
{"Jadefire Sabatons", {236407, 15389, 236406, 236408, 236409, 236410, 236411, 236412, 236413, 236414, 236415, 236416, 236417, 236418} },
{"Jadefire Chestguard", {236420, 15390, 236419, 236421, 236422, 236423, 236424, 236425, 236426, 236427, 236428, 236429, 236430, 236431} },
{"Jadefire Cap", {236433, 15391, 236432, 236434, 236435, 236436, 236437, 236438, 236439, 236440, 236441, 236442, 236443, 236444} },
{"Jadefire Cloak", {236446, 15392, 236445, 236447, 236448, 236449, 236450, 236451, 236452, 236453, 236454, 236455, 236456, 236457} },
{"Jadefire Gloves", {236459, 15393, 236458, 236460, 236461, 236462, 236463, 236464, 236465, 236466, 236467, 236468, 236469, 236470} },
{"Jadefire Pants", {236472, 15394, 236471, 236473, 236474, 236475, 236476, 236477, 236478, 236479, 236480, 236481, 236482, 236483} },
{"Jadefire Epaulets", {236485, 15395, 236484, 236486, 236487, 236488, 236489, 236490, 236491, 236492, 236493, 236494, 236495, 236496} },
{"Mark of Fordring", {6015411, 15411, 236588, 236589, 236590, 236591, 236592, 236593, 236594, 236595, 236596, 236597, 236598, 236599} },
{"Ornate Adamantium Breastplate", {6015413, 15413, 236600, 236601, 236602, 236603, 236604, 236605, 236606, 236607, 236608, 236609, 236610, 236611} },
{"Shimmering Platinum Warhammer", {6015418, 15418, 236612, 236613, 236614, 236615, 236616, 236617, 236618, 236619, 236620, 236621, 236622, 236623} },
{"Shroud of the Exile", {6015421, 15421, 236624, 236625, 236626, 236627, 236628, 236629, 236630, 236631, 236632, 236633, 236634, 236635} },
{"Peerless Bracers", {236650, 15425, 236649, 236651, 236652, 236653, 236654, 236655, 236656, 236657, 236658, 236659, 236660, 236661} },
{"Peerless Boots", {236663, 15426, 236662, 236664, 236665, 236666, 236667, 236668, 236669, 236670, 236671, 236672, 236673, 236674} },
{"Peerless Cloak", {236676, 15427, 236675, 236677, 236678, 236679, 236680, 236681, 236682, 236683, 236684, 236685, 236686, 236687} },
{"Peerless Belt", {236689, 15428, 236688, 236690, 236691, 236692, 236693, 236694, 236695, 236696, 236697, 236698, 236699, 236700} },
{"Peerless Gloves", {236702, 15429, 236701, 236703, 236704, 236705, 236706, 236707, 236708, 236709, 236710, 236711, 236712, 236713} },
{"Peerless Headband", {236715, 15430, 236714, 236716, 236717, 236718, 236719, 236720, 236721, 236722, 236723, 236724, 236725, 236726} },
{"Peerless Leggings", {236728, 15431, 236727, 236729, 236730, 236731, 236732, 236733, 236734, 236735, 236736, 236737, 236738, 236739} },
{"Peerless Shoulders", {236741, 15432, 236740, 236742, 236743, 236744, 236745, 236746, 236747, 236748, 236749, 236750, 236751, 236752} },
{"Peerless Armor", {236754, 15433, 236753, 236755, 236756, 236757, 236758, 236759, 236760, 236761, 236762, 236763, 236764, 236765} },
{"Supreme Sash", {236767, 15434, 236766, 236768, 236769, 236770, 236771, 236772, 236773, 236774, 236775, 236776, 236777, 236778} },
{"Supreme Shoes", {236780, 15435, 236779, 236781, 236782, 236783, 236784, 236785, 236786, 236787, 236788, 236789, 236790, 236791} },
{"Supreme Bracers", {236793, 15436, 236792, 236794, 236795, 236796, 236797, 236798, 236799, 236800, 236801, 236802, 236803, 236804} },
{"Supreme Cape", {236806, 15437, 236805, 236807, 236808, 236809, 236810, 236811, 236812, 236813, 236816, 236817, 236818, 236819} },
{"Supreme Gloves", {236821, 15438, 236820, 236822, 236823, 236824, 236825, 236826, 236827, 236828, 236829, 236830, 236831, 236832} },
{"Supreme Crown", {236834, 15439, 236833, 236835, 236836, 236837, 236838, 236839, 236840, 236841, 236842, 236843, 236844, 236845} },
{"Supreme Leggings", {236847, 15440, 236846, 236848, 236849, 236850, 236851, 236852, 236853, 236854, 236855, 236856, 236857, 236858} },
{"Supreme Shoulders", {236860, 15441, 236859, 236861, 236862, 236863, 236864, 236865, 236866, 236867, 236868, 236869, 236870, 236871} },
{"Supreme Breastplate", {236873, 15442, 236872, 236874, 236875, 236876, 236877, 236878, 236879, 236880, 236881, 236882, 236883, 236884} },
{"Ancient Chestpiece", {238669, 15601, 238668, 238670, 238671, 238672, 238673, 238674, 238675, 238676, 238677, 238678, 238679, 238680} },
{"Ancient Defender", {238708, 15604, 238707, 238709, 238710, 238711, 238712, 238713, 238714, 238715, 238716, 238717, 238718, 238719} },
{"Bonelink Armor", {238773, 15609, 238772, 238774, 238775, 238776, 238777, 238778, 238779, 238780, 238781, 238782, 238783, 238784} },
{"Bonelink Helmet", {238851, 15615, 238850, 238852, 238853, 238854, 238855, 238856, 238857, 238858, 238859, 238860, 238861, 238862} },
{"Bonelink Legplates", {238864, 15616, 238863, 238865, 238866, 238867, 238868, 238869, 238870, 238871, 238872, 238873, 238874, 238875} },
{"Bonelink Wall Shield", {238890, 15618, 238889, 238891, 238892, 238893, 238894, 238895, 238896, 238897, 238898, 238899, 238900, 238901} },
{"Gryphon Mail Belt", {238903, 15619, 238902, 238904, 238905, 238906, 238907, 238908, 238909, 238910, 238911, 238912, 238913, 238914} },
{"Gryphon Mail Bracelets", {238916, 15620, 238915, 238917, 238918, 238919, 238920, 238921, 238922, 238923, 238924, 238925, 238926, 238927} },
{"Gryphon Mail Buckler", {238929, 15621, 238928, 238930, 238931, 238932, 238933, 238934, 238935, 238936, 238937, 238938, 238939, 238940} },
{"Gryphon Mail Breastplate", {238942, 15622, 238941, 238943, 238944, 238945, 238946, 238947, 238948, 238949, 238950, 238951, 238952, 238953} },
{"Gryphon Mail Crown", {238955, 15623, 238954, 238956, 238957, 238958, 238959, 238960, 238961, 238962, 238963, 238964, 238965, 238966} },
{"Gryphon Mail Gauntlets", {238981, 15625, 238980, 238982, 238983, 238984, 238985, 238986, 238987, 238988, 238989, 238990, 238991, 238992} },
{"Gryphon Mail Greaves", {238994, 15626, 238993, 238995, 238996, 238997, 238998, 238999, 239000, 239001, 239002, 239003, 239004, 239005} },
{"Gryphon Mail Legguards", {239007, 15627, 239006, 239008, 239009, 239010, 239011, 239012, 239013, 239014, 239015, 239016, 239017, 239018} },
{"Gryphon Mail Pauldrons", {239020, 15628, 239019, 239021, 239022, 239023, 239024, 239025, 239026, 239027, 239028, 239029, 239030, 239031} },
{"Formidable Bracers", {239033, 15629, 239032, 239034, 239035, 239036, 239037, 239038, 239039, 239040, 239041, 239042, 239043, 239044} },
{"Formidable Sabatons", {239046, 15630, 239045, 239047, 239048, 239049, 239050, 239051, 239052, 239053, 239054, 239055, 239056, 239057} },
{"Formidable Chestpiece", {239059, 15631, 239058, 239060, 239061, 239062, 239063, 239064, 239065, 239066, 239067, 239068, 239069, 239070} },
{"Formidable Cape", {239072, 15632, 239071, 239073, 239074, 239075, 239076, 239077, 239078, 239079, 239080, 239081, 239082, 239083} },
{"Formidable Crest", {239085, 15633, 239084, 239086, 239087, 239088, 239089, 239090, 239091, 239092, 239093, 239094, 239095, 239096} },
{"Formidable Circlet", {239098, 15634, 239097, 239099, 239100, 239101, 239102, 239103, 239104, 239105, 239106, 239107, 239108, 239109} },
{"Formidable Gauntlets", {239111, 15635, 239110, 239112, 239113, 239114, 239115, 239116, 239117, 239118, 239119, 239120, 239121, 239122} },
{"Formidable Belt", {239124, 15636, 239123, 239125, 239126, 239127, 239128, 239129, 239130, 239131, 239132, 239133, 239134, 239135} },
{"Formidable Legguards", {239137, 15637, 239136, 239138, 239139, 239140, 239141, 239142, 239143, 239144, 239145, 239146, 239147, 239148} },
{"Formidable Shoulder Pads", {239150, 15638, 239149, 239151, 239152, 239153, 239154, 239155, 239156, 239157, 239158, 239159, 239160, 239161} },
{"Ironhide Bracers", {239163, 15639, 239162, 239164, 239165, 239166, 239167, 239168, 239169, 239170, 239171, 239172, 239173, 239174} },
{"Ironhide Breastplate", {239176, 15640, 239175, 239177, 239178, 239179, 239180, 239181, 239182, 239183, 239184, 239185, 239186, 239187} },
{"Ironhide Belt", {239189, 15641, 239188, 239190, 239191, 239192, 239193, 239194, 239195, 239196, 239197, 239198, 239199, 239200} },
{"Ironhide Greaves", {239202, 15642, 239201, 239203, 239204, 239205, 239206, 239207, 239208, 239209, 239210, 239211, 239212, 239213} },
{"Ironhide Cloak", {239215, 15643, 239214, 239216, 239217, 239218, 239219, 239220, 239221, 239222, 239223, 239224, 239225, 239226} },
{"Ironhide Gauntlets", {239228, 15644, 239227, 239229, 239230, 239231, 239232, 239233, 239234, 239235, 239236, 239237, 239238, 239239} },
{"Ironhide Helmet", {239241, 15645, 239240, 239242, 239243, 239244, 239245, 239246, 239247, 239248, 239249, 239250, 239251, 239252} },
{"Ironhide Legguards", {239254, 15646, 239253, 239255, 239256, 239257, 239258, 239259, 239260, 239261, 239262, 239263, 239264, 239265} },
{"Ironhide Pauldrons", {239267, 15647, 239266, 239268, 239269, 239270, 239271, 239272, 239273, 239274, 239275, 239276, 239277, 239278} },
{"Ironhide Shield", {239280, 15648, 239279, 239281, 239282, 239283, 239284, 239285, 239286, 239287, 239288, 239289, 239290, 239291} },
{"Merciless Bracers", {239293, 15649, 239292, 239294, 239295, 239296, 239297, 239298, 239299, 239300, 239301, 239302, 239303, 239304} },
{"Merciless Surcoat", {239306, 15650, 239305, 239307, 239308, 239309, 239310, 239311, 239312, 239313, 239314, 239315, 239316, 239317} },
{"Merciless Crown", {239319, 15651, 239318, 239320, 239321, 239322, 239323, 239324, 239325, 239326, 239327, 239328, 239329, 239330} },
{"Merciless Cloak", {239332, 15652, 239331, 239333, 239334, 239335, 239336, 239337, 239338, 239339, 239340, 239341, 239342, 239343} },
{"Merciless Gauntlets", {239345, 15653, 239344, 239346, 239347, 239348, 239349, 239350, 239351, 239352, 239353, 239354, 239355, 239356} },
{"Merciless Belt", {239358, 15654, 239357, 239359, 239360, 239361, 239362, 239363, 239364, 239365, 239366, 239367, 239368, 239369} },
{"Merciless Legguards", {239371, 15655, 239370, 239372, 239373, 239374, 239375, 239376, 239377, 239378, 239379, 239380, 239381, 239382} },
{"Merciless Epaulets", {239384, 15656, 239383, 239385, 239386, 239387, 239388, 239389, 239390, 239391, 239392, 239393, 239394, 239395} },
{"Merciless Shield", {239397, 15657, 239396, 239398, 239399, 239400, 239401, 239402, 239403, 239404, 239405, 239406, 239407, 239408} },
{"Impenetrable Sabatons", {239410, 15658, 239409, 239411, 239412, 239413, 239414, 239415, 239416, 239417, 239418, 239419, 239420, 239421} },
{"Impenetrable Bindings", {239423, 15659, 239422, 239424, 239425, 239426, 239427, 239428, 239429, 239430, 239431, 239432, 239433, 239434} },
{"Impenetrable Breastplate", {239436, 15660, 239435, 239437, 239438, 239439, 239440, 239441, 239442, 239443, 239444, 239445, 239446, 239447} },
{"Impenetrable Cloak", {239449, 15661, 239448, 239450, 239451, 239452, 239453, 239454, 239455, 239456, 239457, 239458, 239459, 239460} },
{"Impenetrable Gauntlets", {239462, 15662, 239461, 239463, 239464, 239465, 239466, 239467, 239468, 239469, 239470, 239471, 239472, 239473} },
{"Impenetrable Belt", {239475, 15663, 239474, 239476, 239477, 239478, 239479, 239480, 239481, 239482, 239483, 239484, 239485, 239486} },
{"Impenetrable Helmet", {239488, 15664, 239487, 239489, 239490, 239491, 239492, 239493, 239494, 239495, 239496, 239497, 239498, 239499} },
{"Impenetrable Legguards", {239501, 15665, 239500, 239502, 239503, 239504, 239505, 239506, 239507, 239508, 239509, 239510, 239511, 239512} },
{"Impenetrable Pauldrons", {239514, 15666, 239513, 239515, 239516, 239517, 239518, 239519, 239520, 239521, 239522, 239523, 239524, 239525} },
{"Impenetrable Wall", {239527, 15667, 239526, 239528, 239529, 239530, 239531, 239532, 239533, 239534, 239535, 239536, 239537, 239538} },
{"Magnificent Bracers", {239540, 15668, 239539, 239541, 239542, 239543, 239544, 239545, 239546, 239547, 239548, 239549, 239550, 239551} },
{"Magnificent Breastplate", {239553, 15669, 239552, 239554, 239555, 239556, 239557, 239558, 239559, 239560, 239561, 239562, 239563, 239564} },
{"Magnificent Helmet", {239566, 15670, 239565, 239567, 239568, 239569, 239570, 239571, 239572, 239573, 239574, 239575, 239576, 239577} },
{"Magnificent Cloak", {239579, 15671, 239578, 239580, 239581, 239582, 239583, 239584, 239585, 239586, 239587, 239588, 239589, 239590} },
{"Magnificent Gauntlets", {239592, 15672, 239591, 239593, 239594, 239595, 239596, 239597, 239598, 239599, 239600, 239601, 239602, 239603} },
{"Magnificent Belt", {239605, 15673, 239604, 239606, 239607, 239608, 239609, 239610, 239611, 239612, 239613, 239614, 239615, 239616} },
{"Magnificent Greaves", {239618, 15674, 239617, 239619, 239620, 239621, 239622, 239623, 239624, 239625, 239626, 239627, 239628, 239629} },
{"Magnificent Guard", {239631, 15675, 239630, 239632, 239633, 239634, 239635, 239636, 239637, 239638, 239639, 239640, 239641, 239642} },
{"Magnificent Leggings", {239644, 15676, 239643, 239645, 239646, 239647, 239648, 239649, 239650, 239651, 239652, 239653, 239654, 239655} },
{"Magnificent Shoulders", {239657, 15677, 239656, 239658, 239659, 239660, 239661, 239662, 239663, 239664, 239665, 239666, 239667, 239668} },
{"Triumphant Sabatons", {239670, 15678, 239669, 239671, 239672, 239673, 239674, 239675, 239676, 239677, 239678, 239679, 239680, 239681} },
{"Triumphant Bracers", {239683, 15679, 239682, 239684, 239685, 239686, 239687, 239688, 239689, 239690, 239691, 239692, 239693, 239694} },
{"Triumphant Chestpiece", {239696, 15680, 239695, 239697, 239698, 239699, 239700, 239701, 239702, 239703, 239704, 239705, 239706, 239707} },
{"Triumphant Cloak", {239709, 15681, 239708, 239710, 239711, 239712, 239713, 239714, 239715, 239716, 239717, 239718, 239719, 239720} },
{"Triumphant Gauntlets", {239722, 15682, 239721, 239723, 239724, 239725, 239726, 239727, 239728, 239729, 239730, 239731, 239732, 239733} },
{"Triumphant Girdle", {239735, 15683, 239734, 239736, 239737, 239738, 239739, 239740, 239741, 239742, 239743, 239744, 239745, 239746} },
{"Triumphant Skullcap", {239748, 15684, 239747, 239749, 239750, 239751, 239752, 239753, 239754, 239755, 239756, 239757, 239758, 239759} },
{"Triumphant Legplates", {239761, 15685, 239760, 239762, 239763, 239764, 239765, 239766, 239767, 239768, 239769, 239770, 239771, 239772} },
{"Triumphant Shoulder Pads", {239774, 15686, 239773, 239775, 239776, 239777, 239778, 239779, 239780, 239781, 239782, 239783, 239784, 239785} },
{"Triumphant Shield", {239787, 15687, 239786, 239788, 239789, 239790, 239791, 239792, 239793, 239794, 239795, 239796, 239797, 239798} },
{"Grand Shoulders", {239852, 15693, 239851, 239853, 239854, 239855, 239856, 239857, 239858, 239859, 239860, 239861, 239862, 239863} },
{"Merciless Greaves", {239865, 15694, 239864, 239866, 239867, 239868, 239869, 239870, 239871, 239872, 239873, 239874, 239875, 239876} },
{"Chemist's Ring", {239917, 15702, 239916, 239918, 239919, 239920, 239921, 239922, 239923, 239924, 239925, 239926, 239927, 239928} },
{"Chemist's Smock", {239930, 15703, 239929, 239931, 239932, 239933, 239934, 239935, 239936, 239937, 239938, 239939, 239940, 239941} },
{"Hunter's Insignia Medal", {239943, 15704, 239942, 239944, 239945, 239946, 239947, 239948, 239949, 239950, 239951, 239952, 239953, 239954} },
{"Tidecrest Blade", {239956, 15705, 239955, 239957, 239958, 239959, 239960, 239961, 239962, 239963, 239964, 239965, 239966, 239967} },
{"Hunt Tracker Blade", {239969, 15706, 239968, 239970, 239971, 239972, 239973, 239974, 239975, 239976, 239977, 239978, 239979, 239980} },
{"Brantwood Sash", {239982, 15707, 239981, 239983, 239984, 239985, 239986, 239987, 239988, 239989, 239990, 239991, 239992, 239993} },
{"Blight Leather Gloves", {239995, 15708, 239994, 239996, 239997, 239998, 239999, 240000, 240001, 240002, 240003, 240004, 240005, 240006} },
{"Gearforge Girdle", {240008, 15709, 240007, 240009, 240010, 240011, 240012, 240013, 240014, 240015, 240016, 240017, 240018, 240019} },
{"Beaststalker Blade", {240021, 15782, 240020, 240022, 240023, 240024, 240025, 240026, 240027, 240028, 240029, 240030, 240031, 240032} },
{"Beasthunter Dagger", {240034, 15783, 240033, 240035, 240036, 240037, 240038, 240039, 240040, 240041, 240042, 240043, 240044, 240045} },
{"Crystal Breeze Mantle", {240047, 15784, 240046, 240048, 240049, 240050, 240051, 240052, 240053, 240054, 240055, 240056, 240057, 240058} },
{"Fernpulse Jerkin", {240060, 15786, 240059, 240061, 240062, 240063, 240064, 240065, 240066, 240067, 240068, 240069, 240070, 240071} },
{"Willow Band Hauberk", {240073, 15787, 240072, 240074, 240075, 240076, 240077, 240078, 240079, 240080, 240081, 240082, 240083, 240084} },
{"Deep River Cloak", {240086, 15789, 240085, 240087, 240088, 240089, 240090, 240091, 240092, 240093, 240094, 240095, 240096, 240097} },
{"Turquoise Sash", {240099, 15791, 240098, 240100, 240101, 240102, 240103, 240104, 240105, 240106, 240107, 240108, 240109, 240110} },
{"Plow Wood Spaulders", {240112, 15792, 240111, 240113, 240114, 240115, 240116, 240117, 240118, 240119, 240120, 240121, 240122, 240123} },
{"Emerald Mist Gauntlets", {240125, 15795, 240124, 240126, 240127, 240128, 240129, 240130, 240131, 240132, 240133, 240134, 240135, 240136} },
{"Seaspray Bracers", {240138, 15796, 240137, 240139, 240140, 240141, 240142, 240143, 240144, 240145, 240146, 240147, 240148, 240149} },
{"Shining Armplates", {240151, 15797, 240150, 240152, 240153, 240154, 240155, 240156, 240157, 240158, 240159, 240160, 240161, 240162} },
{"Heroic Commendation Medal", {6015799, 15799, 240163, 240164, 240165, 240166, 240167, 240168, 240169, 240170, 240171, 240172, 240173, 240174} },
{"Intrepid Shortsword", {6015800, 15800, 240175, 240176, 240177, 240178, 240179, 240180, 240181, 240182, 240183, 240184, 240185, 240186} },
{"Valiant Shortsword", {6015801, 15801, 240187, 240188, 240189, 240190, 240191, 240192, 240193, 240194, 240195, 240196, 240197, 240198} },
{"Mooncloth Boots", {6015802, 15802, 240199, 240200, 240201, 240202, 240203, 240204, 240205, 240206, 240207, 240208, 240209, 240210} },
{"Cerise Drape", {240212, 15804, 240211, 240213, 240214, 240215, 240216, 240217, 240218, 240219, 240220, 240221, 240222, 240223} },
{"Penelope's Rose", {6015805, 15805, 240224, 240225, 240226, 240227, 240228, 240229, 240230, 240231, 240232, 240233, 240234, 240235} },
{"Mirah's Song", {6015806, 15806, 240236, 240237, 240238, 240239, 240240, 240241, 240242, 240243, 240244, 240245, 240246, 240247} },
{"Orchid Amice", {240249, 15812, 240248, 240250, 240251, 240252, 240253, 240254, 240255, 240256, 240257, 240258, 240259, 240260} },
{"Gold Link Belt", {240262, 15813, 240261, 240263, 240264, 240265, 240266, 240267, 240268, 240269, 240270, 240271, 240272, 240273} },
{"Hameya's Slayer", {240275, 15814, 240274, 240276, 240277, 240278, 240279, 240280, 240281, 240282, 240283, 240284, 240285, 240286} },
{"Hameya's Cloak", {240288, 15815, 240287, 240289, 240290, 240291, 240292, 240293, 240294, 240295, 240296, 240297, 240298, 240299} },
{"Shadowskin Spaulders", {240301, 15822, 240300, 240302, 240303, 240304, 240305, 240306, 240307, 240308, 240309, 240310, 240311, 240312} },
{"Bricksteel Gauntlets", {240314, 15823, 240313, 240315, 240316, 240317, 240318, 240319, 240320, 240321, 240322, 240323, 240324, 240325} },
{"Astoria Robes", {240327, 15824, 240326, 240328, 240329, 240330, 240331, 240332, 240333, 240334, 240335, 240336, 240337, 240338} },
{"Traphook Jerkin", {240340, 15825, 240339, 240341, 240342, 240343, 240344, 240345, 240346, 240347, 240348, 240349, 240350, 240351} },
{"Jadescale Breastplate", {240353, 15827, 240352, 240354, 240355, 240356, 240357, 240358, 240359, 240360, 240361, 240362, 240363, 240364} },
{"Windreaper", {6015853, 15853, 240365, 240366, 240367, 240368, 240369, 240370, 240371, 240372, 240373, 240374, 240375, 240376} },
{"Dancing Sliver", {6015854, 15854, 240377, 240378, 240379, 240380, 240381, 240382, 240383, 240384, 240385, 240386, 240387, 240388} },
{"Ring of Protection", {6015855, 15855, 240389, 240390, 240391, 240392, 240393, 240394, 240395, 240396, 240397, 240398, 240399, 240400} },
{"Archlight Talisman", {6015856, 15856, 240401, 240402, 240403, 240404, 240405, 240406, 240407, 240408, 240409, 240410, 240411, 240412} },
{"Magebane Scion", {6015857, 15857, 240413, 240414, 240415, 240416, 240417, 240418, 240419, 240420, 240421, 240422, 240423, 240424} },
{"Freewind Gloves", {240426, 15858, 240425, 240427, 240428, 240429, 240430, 240431, 240432, 240433, 240434, 240435, 240436, 240437} },
{"Seapost Girdle", {240439, 15859, 240438, 240440, 240441, 240442, 240443, 240444, 240445, 240446, 240447, 240448, 240449, 240450} },
{"Blinkstrike Armguards", {240452, 15860, 240451, 240453, 240454, 240455, 240456, 240457, 240458, 240459, 240460, 240461, 240462, 240463} },
{"Swiftfoot Treads", {240465, 15861, 240464, 240466, 240467, 240468, 240469, 240470, 240471, 240472, 240473, 240474, 240475, 240476} },
{"Blitzcleaver", {240478, 15862, 240477, 240479, 240480, 240481, 240482, 240483, 240484, 240485, 240486, 240487, 240488, 240489} },
{"Grave Scepter", {240491, 15863, 240490, 240492, 240493, 240494, 240495, 240496, 240497, 240498, 240499, 240500, 240501, 240502} },
{"Prismcharm", {240543, 15867, 240542, 240544, 240545, 240546, 240547, 240548, 240549, 240550, 240551, 240552, 240553, 240554} },
{"Ragged John's Neverending Cup", {6015873, 15873, 240555, 240556, 240557, 240558, 240559, 240560, 240561, 240562, 240563, 240564, 240565, 240566} },
{"Heroic Guard", {240568, 15887, 240567, 240569, 240570, 240571, 240572, 240573, 240574, 240575, 240576, 240577, 240578, 240579} },
{"Vanguard Shield", {240581, 15890, 240580, 240582, 240583, 240584, 240585, 240586, 240587, 240588, 240589, 240590, 240591, 240592} },
{"Imperial Red Scepter", {240737, 15930, 240736, 240738, 240739, 240740, 240741, 240742, 240743, 240744, 240745, 240746, 240747, 240748} },
{"Arcane Star", {240750, 15931, 240749, 240751, 240752, 240753, 240754, 240755, 240756, 240757, 240758, 240759, 240760, 240761} },
{"Duskwoven Branch", {240815, 15936, 240814, 240816, 240817, 240818, 240819, 240820, 240821, 240822, 240823, 240824, 240825, 240826} },
{"Hibernal Sphere", {240828, 15937, 240827, 240829, 240830, 240831, 240832, 240833, 240834, 240835, 240836, 240837, 240838, 240839} },
{"Mystical Orb", {240841, 15938, 240840, 240842, 240843, 240844, 240845, 240846, 240847, 240848, 240849, 240850, 240851, 240852} },
{"Councillor's Scepter", {240854, 15939, 240853, 240855, 240856, 240857, 240858, 240859, 240860, 240861, 240862, 240863, 240864, 240865} },
{"Elegant Scepter", {240867, 15940, 240866, 240868, 240869, 240870, 240871, 240872, 240873, 240874, 240875, 240876, 240877, 240878} },
{"High Councillor's Scepter", {240880, 15941, 240879, 240881, 240882, 240883, 240884, 240885, 240886, 240887, 240888, 240889, 240890, 240891} },
{"Master's Rod", {240893, 15942, 240892, 240894, 240895, 240896, 240897, 240898, 240899, 240900, 240901, 240902, 240903, 240904} },
{"Imbued Shield", {240906, 15943, 240905, 240907, 240908, 240909, 240910, 240911, 240912, 240913, 240914, 240915, 240916, 240917} },
{"Windchaser Orb", {241010, 15965, 241009, 241011, 241012, 241013, 241014, 241015, 241016, 241017, 241018, 241019, 241020, 241021} },
{"Venomshroud Orb", {241023, 15966, 241022, 241024, 241025, 241026, 241027, 241028, 241029, 241030, 241031, 241032, 241033, 241034} },
{"Highborne Star", {241036, 15967, 241035, 241037, 241038, 241039, 241040, 241041, 241042, 241043, 241044, 241045, 241046, 241047} },
{"Elunarian Sphere", {241049, 15968, 241048, 241050, 241051, 241052, 241053, 241054, 241055, 241056, 241057, 241058, 241059, 241060} },
{"Darkmist Orb", {241205, 15980, 241204, 241206, 241207, 241208, 241209, 241210, 241211, 241212, 241213, 241214, 241215, 241216} },
{"Lunar Sphere", {241218, 15981, 241217, 241219, 241220, 241221, 241222, 241223, 241224, 241225, 241226, 241227, 241228, 241229} },
{"Bloodwoven Rod", {241231, 15982, 241230, 241232, 241233, 241234, 241235, 241236, 241237, 241238, 241239, 241240, 241241, 241242} },
{"Gaea's Scepter", {241244, 15983, 241243, 241245, 241246, 241247, 241248, 241249, 241250, 241251, 241252, 241253, 241254, 241255} },
{"Opulent Scepter", {241257, 15984, 241256, 241258, 241259, 241260, 241261, 241262, 241263, 241264, 241265, 241266, 241267, 241268} },
{"Arachnidian Branch", {241270, 15985, 241269, 241271, 241272, 241273, 241274, 241275, 241276, 241277, 241278, 241279, 241280, 241281} },
{"Bonecaster's Star", {241283, 15986, 241282, 241284, 241285, 241286, 241287, 241288, 241289, 241290, 241291, 241292, 241293, 241294} },
{"Astral Orb", {241296, 15987, 241295, 241297, 241298, 241299, 241300, 241301, 241302, 241303, 241304, 241305, 241306, 241307} },
{"Resplendent Orb", {241309, 15988, 241308, 241310, 241311, 241312, 241313, 241314, 241315, 241316, 241317, 241318, 241319, 241320} },
{"Eternal Rod", {241322, 15989, 241321, 241323, 241324, 241325, 241326, 241327, 241328, 241329, 241330, 241331, 241332, 241333} },
{"Warleader's Shield", {241348, 15991, 241347, 241349, 241350, 241351, 241352, 241353, 241354, 241355, 241356, 241357, 241358, 241359} },
{"Thorium Rifle", {241361, 15995, 241360, 241362, 241363, 241364, 241365, 241366, 241367, 241368, 241369, 241370, 241371, 241372} },
{"Dark Iron Rifle", {6016004, 16004, 241386, 241387, 241388, 241389, 241390, 241391, 241392, 241393, 241394, 241395, 241396, 241397} },
{"Flawless Arcanite Rifle", {6016007, 16007, 241398, 241399, 241400, 241401, 241402, 241403, 241404, 241405, 241406, 241407, 241408, 241409} },
{"Arcanite Dragonling", {6016022, 16022, 241436, 241437, 241438, 241439, 241440, 241441, 241442, 241443, 241444, 241445, 241446, 241447} },
{"Ta'Kierthan Songblade", {6016039, 16039, 241448, 241449, 241450, 241451, 241452, 241453, 241454, 241455, 241456, 241457, 241458, 241459} },
{"Fordring's Seal", {6016058, 16058, 241460, 241461, 241462, 241463, 241464, 241465, 241466, 241467, 241468, 241469, 241470, 241471} },
{"Drakefire Amulet", {241486, 16309, 241485, 241487, 241488, 241489, 241490, 241491, 241492, 241493, 241494, 241495, 241496, 241497} },
{"Sergeant's Insignia", {6016334, 16334, 241511, 241512, 241513, 241514, 241515, 241516, 241517, 241518, 241519, 241520, 241521, 241522} },
{"Sergeant Major's Cape", {6016336, 16336, 241535, 241536, 241537, 241538, 241539, 241540, 241541, 241542, 241543, 241544, 241545, 241546} },
{"Sergeant Major's Cape", {6016337, 16337, 241547, 241548, 241549, 241550, 241551, 241552, 241553, 241554, 241555, 241556, 241557, 241558} },
{"First Sergeant's Cloak", {6016340, 16340, 241559, 241560, 241561, 241562, 241563, 241564, 241565, 241566, 241567, 241568, 241569, 241570} },
{"Thornflinger", {243437, 16622, 243436, 243438, 243439, 243440, 243441, 243442, 243443, 243444, 243445, 243446, 243447, 243448} },
{"Opaline Medallion", {243450, 16623, 243449, 243451, 243452, 243453, 243454, 243455, 243456, 243457, 243458, 243459, 243460, 243461} },
{"Ornate Bracers", {243515, 16664, 243514, 243516, 243517, 243518, 243519, 243520, 243521, 243522, 243523, 243524, 243525, 243526} },
{"Vest of Elements", {6016666, 16666, 130619, 216666, 1003291, 1010821, 1017489, 1024102, 1030666, 1037229, 1043792, 1050355, 1056918, 1063481} },
{"Coif of Elements", {6016667, 16667, 243527, 243528, 243529, 243530, 243531, 243532, 243533, 243534, 243535, 243536, 243537, 243538} },
{"Kilt of Elements", {6016668, 16668, 243539, 243540, 243541, 243542, 243543, 243544, 243545, 243546, 243547, 243548, 243549, 243550} },
{"Pauldrons of Elements", {6016669, 16669, 123194, 216669, 1003292, 1010822, 1017490, 1024103, 1030667, 1037230, 1043793, 1050356, 1056919, 1063482} },
{"Boots of Elements", {6016670, 16670, 100453, 216670, 1003294, 1010823, 1017491, 1024104, 1030668, 1037231, 1043794, 1050357, 1056920, 1063483} },
{"Bindings of Elements", {6016671, 16671, 243551, 243552, 243553, 243554, 243555, 243556, 243557, 243558, 243559, 243560, 243561, 243562} },
{"Gauntlets of Elements", {6016672, 16672, 116900, 216672, 1003297, 1010824, 1017492, 1024105, 1030669, 1037232, 1043795, 1050358, 1056921, 1063484} },
{"Cord of Elements", {6016673, 16673, 100894, 216673, 1003298, 1010825, 1017493, 1024106, 1030670, 1037233, 1043796, 1050359, 1056922, 1063485} },
{"Beaststalker's Tunic", {6016674, 16674, 100252, 216674, 1003299, 1010826, 1017494, 1024107, 1030671, 1037234, 1043797, 1050360, 1056923, 1063486} },
{"Beaststalker's Boots", {6016675, 16675, 243563, 243564, 243565, 243566, 243567, 243568, 243569, 243570, 243571, 243572, 243573, 243574} },
{"Beaststalker's Gloves", {6016676, 16676, 100250, 216676, 1003302, 1010827, 1017495, 1024108, 1030672, 1037235, 1043798, 1050361, 1056924, 1063487} },
{"Beaststalker's Cap", {6016677, 16677, 243575, 243576, 243577, 243578, 243579, 243580, 243581, 243582, 243583, 243584, 243585, 243586} },
{"Beaststalker's Pants", {6016678, 16678, 243587, 243588, 243589, 243590, 243591, 243592, 243593, 243594, 243595, 243596, 243597, 243598} },
{"Beaststalker's Mantle", {6016679, 16679, 100251, 216679, 1003303, 1010828, 1017496, 1024109, 1030673, 1037236, 1043799, 1050362, 1056925, 1063488} },
{"Beaststalker's Belt", {6016680, 16680, 100248, 216680, 1003306, 1010829, 1017497, 1024110, 1030674, 1037237, 1043800, 1050363, 1056926, 1063489} },
{"Beaststalker's Bindings", {6016681, 16681, 100249, 216681, 1003307, 1010830, 1017498, 1024111, 1030675, 1037238, 1043801, 1050364, 1056927, 1063490} },
{"Magister's Boots", {6016682, 16682, 243599, 243600, 243601, 243602, 243603, 243604, 243605, 243606, 243607, 243608, 243609, 243610} },
{"Magister's Bindings", {6016683, 16683, 122465, 216683, 1003308, 1010831, 1017499, 1024112, 1030676, 1037239, 1043802, 1050365, 1056928, 1063491} },
{"Magister's Gloves", {6016684, 16684, 243611, 243612, 243613, 243614, 243615, 243616, 243617, 243618, 243619, 243620, 243621, 243622} },
{"Magister's Belt", {6016685, 16685, 122464, 216685, 1003311, 1010832, 1017500, 1024113, 1030677, 1037240, 1043803, 1050366, 1056929, 1063492} },
{"Magister's Crown", {6016686, 16686, 243623, 243624, 243625, 243626, 243627, 243628, 243629, 243630, 243631, 243632, 243633, 243634} },
{"Magister's Leggings", {6016687, 16687, 243635, 243636, 243637, 243638, 243639, 243640, 243641, 243642, 243643, 243644, 243645, 243646} },
{"Magister's Robes", {6016688, 16688, 122471, 216688, 1003314, 1010833, 1017501, 1024114, 1030678, 1037241, 1043804, 1050367, 1056930, 1063493} },
{"Magister's Mantle", {6016689, 16689, 243647, 243648, 243649, 243650, 243651, 243652, 243653, 243654, 243655, 243656, 243657, 243658} },
{"Devout Robe", {6016690, 16690, 102311, 216690, 1003315, 1010834, 1017502, 1024115, 1030679, 1037242, 1043805, 1050368, 1056931, 1063494} },
{"Devout Sandals", {6016691, 16691, 243659, 243660, 243661, 243662, 243663, 243664, 243665, 243666, 243667, 243668, 243669, 243670} },
{"Devout Gloves", {6016692, 16692, 243671, 243672, 243673, 243674, 243675, 243676, 243677, 243678, 243679, 243680, 243681, 243682} },
{"Devout Crown", {6016693, 16693, 243683, 243684, 243685, 243686, 243687, 243688, 243689, 243690, 243691, 243692, 243693, 243694} },
{"Devout Skirt", {6016694, 16694, 243695, 243696, 243697, 243698, 243699, 243700, 243701, 243702, 243703, 243704, 243705, 243706} },
{"Devout Mantle", {6016695, 16695, 102310, 216695, 1003316, 1010835, 1017503, 1024116, 1030680, 1037243, 1043806, 1050369, 1056932, 1063495} },
{"Devout Belt", {6016696, 16696, 102309, 216696, 1003321, 1010836, 1017504, 1024117, 1030681, 1037244, 1043807, 1050370, 1056933, 1063496} },
{"Devout Bracers", {6016697, 16697, 243707, 243708, 243709, 243710, 243711, 243712, 243713, 243714, 243715, 243716, 243717, 243718} },
{"Dreadmist Mask", {6016698, 16698, 243719, 243720, 243721, 243722, 243723, 243724, 243725, 243726, 243727, 243728, 243729, 243730} },
{"Dreadmist Leggings", {6016699, 16699, 243731, 243732, 243733, 243734, 243735, 243736, 243737, 243738, 243739, 243740, 243741, 243742} },
{"Dreadmist Robe", {6016700, 16700, 102387, 216700, 1003322, 1010837, 1017505, 1024118, 1030682, 1037245, 1043808, 1050371, 1056934, 1063497} },
{"Dreadmist Mantle", {6016701, 16701, 243743, 243744, 243745, 243746, 243747, 243748, 243749, 243750, 243751, 243752, 243753, 243754} },
{"Dreadmist Belt", {6016702, 16702, 243755, 243756, 243757, 243758, 243759, 243760, 243761, 243762, 243763, 243764, 243765, 243766} },
{"Dreadmist Bracers", {6016703, 16703, 102386, 216703, 1003323, 1010838, 1017506, 1024119, 1030683, 1037246, 1043809, 1050372, 1056935, 1063498} },
{"Dreadmist Sandals", {6016704, 16704, 243767, 243768, 243769, 243770, 243771, 243772, 243773, 243774, 243775, 243776, 243777, 243778} },
{"Dreadmist Wraps", {6016705, 16705, 243779, 243780, 243781, 243782, 243783, 243784, 243785, 243786, 243787, 243788, 243789, 243790} },
{"Wildheart Vest", {6016706, 16706, 130845, 216706, 1003324, 1010839, 1017507, 1024120, 1030684, 1037247, 1043810, 1050373, 1056936, 1063499} },
{"Shadowcraft Cap", {6016707, 16707, 243791, 243792, 243793, 243794, 243795, 243796, 243797, 243798, 243799, 243800, 243801, 243802} },
{"Shadowcraft Spaulders", {6016708, 16708, 243803, 243804, 243805, 243806, 243807, 243808, 243809, 243810, 243811, 243812, 243813, 243814} },
{"Shadowcraft Pants", {6016709, 16709, 243815, 243816, 243817, 243818, 243819, 243820, 243821, 243822, 243823, 243824, 243825, 243826} },
{"Shadowcraft Bracers", {6016710, 16710, 123783, 216710, 1003328, 1010840, 1017508, 1024121, 1030685, 1037248, 1043811, 1050374, 1056937, 1063500} },
{"Shadowcraft Boots", {6016711, 16711, 243827, 243828, 243829, 243830, 243831, 243832, 243833, 243834, 243835, 243836, 243837, 243838} },
{"Shadowcraft Gloves", {6016712, 16712, 123784, 216712, 1003331, 1010841, 1017509, 1024122, 1030686, 1037249, 1043812, 1050375, 1056938, 1063501} },
{"Shadowcraft Belt", {6016713, 16713, 123782, 216713, 1003332, 1010842, 1017510, 1024123, 1030687, 1037250, 1043813, 1050376, 1056939, 1063502} },
{"Wildheart Bracers", {6016714, 16714, 243839, 243840, 243841, 243842, 243843, 243844, 243845, 243846, 243847, 243848, 243849, 243850} },
{"Wildheart Boots", {6016715, 16715, 130842, 216715, 1003333, 1010843, 1017511, 1024124, 1030688, 1037251, 1043814, 1050377, 1056940, 1063503} },
{"Wildheart Belt", {6016716, 16716, 130841, 216716, 1003335, 1010844, 1017512, 1024125, 1030689, 1037252, 1043815, 1050378, 1056941, 1063504} },
{"Wildheart Gloves", {6016717, 16717, 130843, 216717, 1003338, 1010845, 1017513, 1024126, 1030690, 1037253, 1043816, 1050379, 1056942, 1063505} },
{"Wildheart Spaulders", {6016718, 16718, 130844, 216718, 1003339, 1010846, 1017514, 1024127, 1030691, 1037254, 1043817, 1050380, 1056943, 1063506} },
{"Wildheart Kilt", {6016719, 16719, 243851, 243852, 243853, 243854, 243855, 243856, 243857, 243858, 243859, 243860, 243861, 243862} },
{"Wildheart Cowl", {6016720, 16720, 243863, 243864, 243865, 243866, 243867, 243868, 243869, 243870, 243871, 243872, 243873, 243874} },
{"Shadowcraft Tunic", {6016721, 16721, 123785, 216721, 1003345, 1010847, 1017515, 1024128, 1030692, 1037255, 1043818, 1050381, 1056944, 1063507} },
{"Lightforge Bracers", {6016722, 16722, 243875, 243876, 243877, 243878, 243879, 243880, 243881, 243882, 243883, 243884, 243885, 243886} },
{"Lightforge Belt", {6016723, 16723, 243887, 243888, 243889, 243890, 243891, 243892, 243893, 243894, 243895, 243896, 243897, 243898} },
{"Lightforge Gauntlets", {6016724, 16724, 243899, 243900, 243901, 243902, 243903, 243904, 243905, 243906, 243907, 243908, 243909, 243910} },
{"Lightforge Boots", {6016725, 16725, 243911, 243912, 243913, 243914, 243915, 243916, 243917, 243918, 243919, 243920, 243921, 243922} },
{"Lightforge Breastplate", {6016726, 16726, 122143, 216726, 1003346, 1010848, 1017516, 1024129, 1030693, 1037256, 1043819, 1050382, 1056945, 1063508} },
{"Lightforge Helm", {6016727, 16727, 243923, 243924, 243925, 243926, 243927, 243928, 243929, 243930, 243931, 243932, 243933, 243934} },
{"Lightforge Legplates", {6016728, 16728, 243935, 243936, 243937, 243938, 243939, 243940, 243941, 243942, 243943, 243944, 243945, 243946} },
{"Lightforge Spaulders", {6016729, 16729, 122148, 216729, 1003347, 1010849, 1017517, 1024130, 1030694, 1037257, 1043820, 1050383, 1056946, 1063509} },
{"Breastplate of Valor", {6016730, 16730, 100684, 216730, 1003349, 1010850, 1017518, 1024131, 1030695, 1037258, 1043821, 1050384, 1056947, 1063510} },
{"Helm of Valor", {6016731, 16731, 243947, 243948, 243949, 243950, 243951, 243952, 243953, 243954, 243955, 243956, 243957, 243958} },
{"Legplates of Valor", {6016732, 16732, 243959, 243960, 243961, 243962, 243963, 243964, 243965, 243966, 243967, 243968, 243969, 243970} },
{"Spaulders of Valor", {6016733, 16733, 128157, 216733, 1003352, 1010851, 1017519, 1024132, 1030696, 1037259, 1043822, 1050385, 1056948, 1063511} },
{"Boots of Valor", {6016734, 16734, 243971, 243972, 243973, 243974, 243975, 243976, 243977, 243978, 243979, 243980, 243981, 243982} },
{"Bracers of Valor", {6016735, 16735, 100665, 216735, 1003356, 1010852, 1017520, 1024133, 1030697, 1037260, 1043823, 1050386, 1056949, 1063512} },
{"Belt of Valor", {6016736, 16736, 100284, 216736, 1003359, 1010853, 1017521, 1024134, 1030698, 1037261, 1043824, 1050387, 1056950, 1063513} },
{"Gauntlets of Valor", {6016737, 16737, 243983, 243984, 243985, 243986, 243987, 243988, 243989, 243990, 243991, 243992, 243993, 243994} },
{"Witherseed Gloves", {243996, 16738, 243995, 243997, 243998, 243999, 244000, 244001, 244002, 244003, 244004, 244005, 244006, 244007} },
{"Rugwood Mantle", {244009, 16739, 244008, 244010, 244011, 244012, 244013, 244014, 244015, 244016, 244017, 244018, 244019, 244020} },
{"Furbolg Medicine Totem", {244061, 16769, 244060, 244062, 244063, 244064, 244065, 244066, 244067, 244068, 244069, 244070, 244071, 244072} },
{"Arcanist Crown", {6016795, 16795, 316795, 216795, 1003361, 1010854, 1017522, 1024135, 1030699, 1037262, 1043825, 1050388, 1056951, 1063514} },
{"Arcanist Leggings", {6016796, 16796, 316796, 216796, 1003362, 1010855, 1017523, 1024136, 1030700, 1037263, 1043826, 1050389, 1056952, 1063515} },
{"Arcanist Mantle", {6016797, 16797, 316797, 216797, 1003363, 1010856, 1017524, 1024137, 1030701, 1037264, 1043827, 1050390, 1056953, 1063516} },
{"Arcanist Robes", {6016798, 16798, 316798, 216798, 1003365, 1010857, 1017525, 1024138, 1030702, 1037265, 1043828, 1050391, 1056954, 1063517} },
{"Arcanist Bindings", {6016799, 16799, 316799, 216799, 1003366, 1010858, 1017526, 1024139, 1030703, 1037266, 1043829, 1050392, 1056955, 1063518} },
{"Arcanist Boots", {6016800, 16800, 316800, 216800, 1003369, 1010859, 1017527, 1024140, 1030704, 1037267, 1043830, 1050393, 1056956, 1063519} },
{"Arcanist Gloves", {6016801, 16801, 316801, 216801, 1003371, 1010860, 1017528, 1024141, 1030705, 1037268, 1043831, 1050394, 1056957, 1063520} },
{"Arcanist Belt", {6016802, 16802, 316802, 216802, 1003372, 1010861, 1017529, 1024142, 1030706, 1037269, 1043832, 1050395, 1056958, 1063521} },
{"Felheart Slippers", {6016803, 16803, 316803, 216803, 1003373, 1010862, 1017530, 1024143, 1030707, 1037270, 1043833, 1050396, 1056959, 1063522} },
{"Felheart Bracers", {6016804, 16804, 316804, 216804, 1003374, 1010863, 1017531, 1024144, 1030708, 1037271, 1043834, 1050397, 1056960, 1063523} },
{"Felheart Gloves", {6016805, 16805, 316805, 216805, 1003375, 1010864, 1017532, 1024145, 1030709, 1037272, 1043835, 1050398, 1056961, 1063524} },
{"Felheart Belt", {6016806, 16806, 316806, 216806, 1003376, 1010865, 1017533, 1024146, 1030710, 1037273, 1043836, 1050399, 1056962, 1063525} },
{"Felheart Shoulder Pads", {6016807, 16807, 316807, 216807, 1003377, 1010866, 1017534, 1024147, 1030711, 1037274, 1043837, 1050400, 1056963, 1063526} },
{"Felheart Horns", {6016808, 16808, 316808, 216808, 1003378, 1010867, 1017535, 1024148, 1030712, 1037275, 1043838, 1050401, 1056964, 1063527} },
{"Felheart Robes", {6016809, 16809, 316809, 216809, 1003379, 1010868, 1017536, 1024149, 1030713, 1037276, 1043839, 1050402, 1056965, 1063528} },
{"Felheart Pants", {6016810, 16810, 316810, 216810, 1003380, 1010869, 1017537, 1024150, 1030714, 1037277, 1043840, 1050403, 1056966, 1063529} },
{"Boots of Prophecy", {6016811, 16811, 316811, 216811, 1003381, 1010870, 1017538, 1024151, 1030715, 1037278, 1043841, 1050404, 1056967, 1063530} },
{"Gloves of Prophecy", {6016812, 16812, 316812, 216812, 1003382, 1010871, 1017539, 1024152, 1030716, 1037279, 1043842, 1050405, 1056968, 1063531} },
{"Circlet of Prophecy", {6016813, 16813, 316813, 216813, 1003383, 1010872, 1017540, 1024153, 1030717, 1037280, 1043843, 1050406, 1056969, 1063532} },
{"Pants of Prophecy", {6016814, 16814, 316814, 216814, 1003384, 1010873, 1017541, 1024154, 1030718, 1037281, 1043844, 1050407, 1056970, 1063533} },
{"Robes of Prophecy", {6016815, 16815, 316815, 216815, 1003385, 1010874, 1017542, 1024155, 1030719, 1037282, 1043845, 1050408, 1056971, 1063534} },
{"Mantle of Prophecy", {6016816, 16816, 316816, 216816, 1003386, 1010875, 1017543, 1024156, 1030720, 1037283, 1043846, 1050409, 1056972, 1063535} },
{"Girdle of Prophecy", {6016817, 16817, 316817, 216817, 1003387, 1010876, 1017544, 1024157, 1030721, 1037284, 1043847, 1050410, 1056973, 1063536} },
{"Netherwind Belt", {6016818, 16818, 316818, 216818, 1003388, 1010877, 1017545, 1024158, 1030722, 1037285, 1043848, 1050411, 1056974, 1063537} },
{"Vambraces of Prophecy", {6016819, 16819, 316819, 216819, 1003389, 1010878, 1017546, 1024159, 1030723, 1037286, 1043849, 1050412, 1056975, 1063538} },
{"Nightslayer Chestpiece", {6016820, 16820, 316820, 216820, 1003390, 1010879, 1017547, 1024160, 1030724, 1037287, 1043850, 1050413, 1056976, 1063539} },
{"Nightslayer Cover", {6016821, 16821, 316821, 216821, 1003391, 1010880, 1017548, 1024161, 1030725, 1037288, 1043851, 1050414, 1056977, 1063540} },
{"Nightslayer Pants", {6016822, 16822, 316822, 216822, 1003392, 1010881, 1017549, 1024162, 1030726, 1037289, 1043852, 1050415, 1056978, 1063541} },
{"Nightslayer Shoulder Pads", {6016823, 16823, 316823, 216823, 1003397, 1010882, 1017550, 1024163, 1030727, 1037290, 1043853, 1050416, 1056979, 1063542} },
{"Nightslayer Boots", {6016824, 16824, 316824, 216824, 1003398, 1010883, 1017551, 1024164, 1030728, 1037291, 1043854, 1050417, 1056980, 1063543} },
{"Nightslayer Bracelets", {6016825, 16825, 316825, 216825, 1003402, 1010884, 1017552, 1024165, 1030729, 1037292, 1043855, 1050418, 1056981, 1063544} },
{"Nightslayer Gloves", {6016826, 16826, 316826, 216826, 1003407, 1010885, 1017553, 1024166, 1030730, 1037293, 1043856, 1050419, 1056982, 1063545} },
{"Nightslayer Belt", {6016827, 16827, 316827, 216827, 1003408, 1010886, 1017554, 1024167, 1030731, 1037294, 1043857, 1050420, 1056983, 1063546} },
{"Cenarion Belt", {6016828, 16828, 316828, 216828, 1003411, 1010887, 1017555, 1024168, 1030732, 1037295, 1043858, 1050421, 1056984, 1063547} },
{"Cenarion Boots", {6016829, 16829, 316829, 216829, 1003415, 1010888, 1017556, 1024169, 1030733, 1037296, 1043859, 1050422, 1056985, 1063548} },
{"Cenarion Bracers", {6016830, 16830, 316830, 216830, 1003417, 1010889, 1017557, 1024170, 1030734, 1037297, 1043860, 1050423, 1056986, 1063549} },
{"Cenarion Gloves", {6016831, 16831, 316831, 216831, 1003418, 1010890, 1017558, 1024171, 1030735, 1037298, 1043861, 1050424, 1056987, 1063550} },
{"Bloodfang Spaulders", {6016832, 16832, 316832, 216832, 1003419, 1010891, 1017559, 1024172, 1030736, 1037299, 1043862, 1050425, 1056988, 1063551} },
{"Cenarion Vestments", {6016833, 16833, 316833, 216833, 1003420, 1010892, 1017560, 1024173, 1030737, 1037300, 1043863, 1050426, 1056989, 1063552} },
{"Cenarion Helm", {6016834, 16834, 316834, 216834, 1003421, 1010893, 1017561, 1024174, 1030738, 1037301, 1043864, 1050427, 1056990, 1063553} },
{"Cenarion Leggings", {6016835, 16835, 316835, 216835, 1003422, 1010894, 1017562, 1024175, 1030739, 1037302, 1043865, 1050428, 1056991, 1063554} },
{"Cenarion Spaulders", {6016836, 16836, 316836, 216836, 1003428, 1010895, 1017563, 1024176, 1030740, 1037303, 1043866, 1050429, 1056992, 1063555} },
{"Earthfury Boots", {6016837, 16837, 316837, 216837, 1003429, 1010896, 1017564, 1024177, 1030741, 1037304, 1043867, 1050430, 1056993, 1063556} },
{"Earthfury Belt", {6016838, 16838, 316838, 216838, 1003430, 1010897, 1017565, 1024178, 1030742, 1037305, 1043868, 1050431, 1056994, 1063557} },
{"Earthfury Gauntlets", {6016839, 16839, 316839, 216839, 1003431, 1010898, 1017566, 1024179, 1030743, 1037306, 1043869, 1050432, 1056995, 1063558} },
{"Earthfury Bracers", {6016840, 16840, 316840, 216840, 1003433, 1010899, 1017567, 1024180, 1030744, 1037307, 1043870, 1050433, 1056996, 1063559} },
{"Earthfury Vestments", {6016841, 16841, 316841, 216841, 1003434, 1010900, 1017568, 1024181, 1030745, 1037308, 1043871, 1050434, 1056997, 1063560} },
{"Earthfury Helmet", {6016842, 16842, 316842, 216842, 1003436, 1010901, 1017569, 1024182, 1030746, 1037309, 1043872, 1050435, 1056998, 1063561} },
{"Earthfury Legguards", {6016843, 16843, 316843, 216843, 1003437, 1010902, 1017570, 1024183, 1030747, 1037310, 1043873, 1050436, 1056999, 1063562} },
{"Earthfury Epaulets", {6016844, 16844, 316844, 216844, 1003438, 1010903, 1017571, 1024184, 1030748, 1037311, 1043874, 1050437, 1057000, 1063563} },
{"Giantstalker's Breastplate", {6016845, 16845, 316845, 216845, 1003439, 1010904, 1017572, 1024185, 1030749, 1037312, 1043875, 1050438, 1057001, 1063564} },
{"Giantstalker's Helmet", {6016846, 16846, 316846, 216846, 1003440, 1010905, 1017573, 1024186, 1030750, 1037313, 1043876, 1050439, 1057002, 1063565} },
{"Giantstalker's Leggings", {6016847, 16847, 316847, 216847, 1003441, 1010906, 1017574, 1024187, 1030751, 1037314, 1043877, 1050440, 1057003, 1063566} },
{"Giantstalker's Epaulets", {6016848, 16848, 316848, 216848, 1003442, 1010907, 1017575, 1024188, 1030752, 1037315, 1043878, 1050441, 1057004, 1063567} },
{"Giantstalker's Boots", {6016849, 16849, 316849, 216849, 1003444, 1010908, 1017576, 1024189, 1030753, 1037316, 1043879, 1050442, 1057005, 1063568} },
{"Giantstalker's Bracers", {6016850, 16850, 316850, 216850, 1003445, 1010909, 1017577, 1024190, 1030754, 1037317, 1043880, 1050443, 1057006, 1063569} },
{"Giantstalker's Belt", {6016851, 16851, 316851, 216851, 1003446, 1010910, 1017578, 1024191, 1030755, 1037318, 1043881, 1050444, 1057007, 1063570} },
{"Giantstalker's Gloves", {6016852, 16852, 316852, 216852, 1003447, 1010911, 1017579, 1024192, 1030756, 1037319, 1043882, 1050445, 1057008, 1063571} },
{"Lawbringer Chestguard", {6016853, 16853, 316853, 216853, 1003448, 1010912, 1017580, 1024193, 1030757, 1037320, 1043883, 1050446, 1057009, 1063572} },
{"Lawbringer Helm", {6016854, 16854, 316854, 216854, 1003449, 1010913, 1017581, 1024194, 1030758, 1037321, 1043884, 1050447, 1057010, 1063573} },
{"Lawbringer Legplates", {6016855, 16855, 316855, 216855, 1003456, 1010914, 1017582, 1024195, 1030759, 1037322, 1043885, 1050448, 1057011, 1063574} },
{"Lawbringer Spaulders", {6016856, 16856, 316856, 216856, 1003458, 1010915, 1017583, 1024196, 1030760, 1037323, 1043886, 1050449, 1057012, 1063575} },
{"Lawbringer Bracers", {6016857, 16857, 316857, 216857, 1003459, 1010916, 1017584, 1024197, 1030761, 1037324, 1043887, 1050450, 1057013, 1063576} },
{"Lawbringer Belt", {6016858, 16858, 316858, 216858, 1003461, 1010917, 1017585, 1024198, 1030762, 1037325, 1043888, 1050451, 1057014, 1063577} },
{"Lawbringer Boots", {6016859, 16859, 316859, 216859, 1003462, 1010918, 1017586, 1024199, 1030763, 1037326, 1043889, 1050452, 1057015, 1063578} },
{"Lawbringer Gauntlets", {6016860, 16860, 316860, 216860, 1003464, 1010919, 1017587, 1024200, 1030764, 1037327, 1043890, 1050453, 1057016, 1063579} },
{"Bracers of Might", {6016861, 16861, 316861, 216861, 1003469, 1010920, 1017588, 1024201, 1030765, 1037328, 1043891, 1050454, 1057017, 1063580} },
{"Sabatons of Might", {6016862, 16862, 316862, 216862, 1003472, 1010921, 1017589, 1024202, 1030766, 1037329, 1043892, 1050455, 1057018, 1063581} },
{"Gauntlets of Might", {6016863, 16863, 316863, 216863, 1003473, 1010922, 1017590, 1024203, 1030767, 1037330, 1043893, 1050456, 1057019, 1063582} },
{"Belt of Might", {6016864, 16864, 316864, 216864, 1003474, 1010923, 1017591, 1024204, 1030768, 1037331, 1043894, 1050457, 1057020, 1063583} },
{"Breastplate of Might", {6016865, 16865, 316865, 216865, 1003475, 1010924, 1017592, 1024205, 1030769, 1037332, 1043895, 1050458, 1057021, 1063584} },
{"Helm of Might", {6016866, 16866, 316866, 216866, 1003478, 1010925, 1017593, 1024206, 1030770, 1037333, 1043896, 1050459, 1057022, 1063585} },
{"Legplates of Might", {6016867, 16867, 316867, 216867, 1003480, 1010926, 1017594, 1024207, 1030771, 1037334, 1043897, 1050460, 1057023, 1063586} },
{"Pauldrons of Might", {6016868, 16868, 316868, 216868, 1003481, 1010927, 1017595, 1024208, 1030772, 1037335, 1043898, 1050461, 1057024, 1063587} },
{"Stormrage Chestguard", {6016897, 16897, 316897, 216897, 1003482, 1010928, 1017596, 1024209, 1030773, 1037336, 1043899, 1050462, 1057025, 1063588} },
{"Stormrage Boots", {6016898, 16898, 316898, 216898, 1003484, 1010929, 1017597, 1024210, 1030774, 1037337, 1043900, 1050463, 1057026, 1063589} },
{"Stormrage Handguards", {6016899, 16899, 316899, 216899, 1003485, 1010930, 1017598, 1024211, 1030775, 1037338, 1043901, 1050464, 1057027, 1063590} },
{"Stormrage Cover", {6016900, 16900, 316900, 216900, 1003486, 1010931, 1017599, 1024212, 1030776, 1037339, 1043902, 1050465, 1057028, 1063591} },
{"Stormrage Legguards", {6016901, 16901, 316901, 216901, 1003487, 1010932, 1017600, 1024213, 1030777, 1037340, 1043903, 1050466, 1057029, 1063592} },
{"Stormrage Pauldrons", {6016902, 16902, 316902, 216902, 1003492, 1010933, 1017601, 1024214, 1030778, 1037341, 1043904, 1050467, 1057030, 1063593} },
{"Stormrage Belt", {6016903, 16903, 316903, 216903, 1003496, 1010934, 1017602, 1024215, 1030779, 1037342, 1043905, 1050468, 1057031, 1063594} },
{"Stormrage Bracers", {6016904, 16904, 316904, 216904, 1003498, 1010935, 1017603, 1024216, 1030780, 1037343, 1043906, 1050469, 1057032, 1063595} },
{"Bloodfang Chestpiece", {6016905, 16905, 316905, 216905, 1003500, 1010936, 1017604, 1024217, 1030781, 1037344, 1043907, 1050470, 1057033, 1063596} },
{"Bloodfang Boots", {6016906, 16906, 316906, 216906, 1003502, 1010937, 1017605, 1024218, 1030782, 1037345, 1043908, 1050471, 1057034, 1063597} },
{"Bloodfang Gloves", {6016907, 16907, 316907, 216907, 1003503, 1010938, 1017606, 1024219, 1030783, 1037346, 1043909, 1050472, 1057035, 1063598} },
{"Bloodfang Hood", {6016908, 16908, 316908, 216908, 1003504, 1010939, 1017607, 1024220, 1030784, 1037347, 1043910, 1050473, 1057036, 1063599} },
{"Bloodfang Pants", {6016909, 16909, 316909, 216909, 1003507, 1010940, 1017608, 1024221, 1030785, 1037348, 1043911, 1050474, 1057037, 1063600} },
{"Bloodfang Belt", {6016910, 16910, 316910, 216910, 1003509, 1010941, 1017609, 1024222, 1030786, 1037349, 1043912, 1050475, 1057038, 1063601} },
{"Bloodfang Bracers", {6016911, 16911, 316911, 216911, 1003513, 1010942, 1017610, 1024223, 1030787, 1037350, 1043913, 1050476, 1057039, 1063602} },
{"Netherwind Boots", {6016912, 16912, 316912, 216912, 1003516, 1010943, 1017611, 1024224, 1030788, 1037351, 1043914, 1050477, 1057040, 1063603} },
{"Netherwind Gloves", {6016913, 16913, 316913, 216913, 1003517, 1010944, 1017612, 1024225, 1030789, 1037352, 1043915, 1050478, 1057041, 1063604} },
{"Netherwind Crown", {6016914, 16914, 316914, 216914, 1003518, 1010945, 1017613, 1024226, 1030790, 1037353, 1043916, 1050479, 1057042, 1063605} },
{"Netherwind Pants", {6016915, 16915, 316915, 216915, 1003519, 1010946, 1017614, 1024227, 1030791, 1037354, 1043917, 1050480, 1057043, 1063606} },
{"Netherwind Robes", {6016916, 16916, 316916, 216916, 1003521, 1010947, 1017615, 1024228, 1030792, 1037355, 1043918, 1050481, 1057044, 1063607} },
{"Netherwind Mantle", {6016917, 16917, 316917, 216917, 1003522, 1010948, 1017616, 1024229, 1030793, 1037356, 1043919, 1050482, 1057045, 1063608} },
{"Netherwind Bindings", {6016918, 16918, 316918, 216918, 1003523, 1010949, 1017617, 1024230, 1030794, 1037357, 1043920, 1050483, 1057046, 1063609} },
{"Boots of Transcendence", {6016919, 16919, 316919, 216919, 1003524, 1010950, 1017618, 1024231, 1030795, 1037358, 1043921, 1050484, 1057047, 1063610} },
{"Handguards of Transcendence", {6016920, 16920, 316920, 216920, 1003525, 1010951, 1017619, 1024232, 1030796, 1037359, 1043922, 1050485, 1057048, 1063611} },
{"Halo of Transcendence", {6016921, 16921, 316921, 216921, 1003526, 1010952, 1017620, 1024233, 1030797, 1037360, 1043923, 1050486, 1057049, 1063612} },
{"Leggings of Transcendence", {6016922, 16922, 316922, 216922, 1003527, 1010953, 1017621, 1024234, 1030798, 1037361, 1043924, 1050487, 1057050, 1063613} },
{"Robes of Transcendence", {6016923, 16923, 316923, 216923, 1003528, 1010954, 1017622, 1024235, 1030799, 1037362, 1043925, 1050488, 1057051, 1063614} },
{"Pauldrons of Transcendence", {6016924, 16924, 316924, 216924, 1003529, 1010955, 1017623, 1024236, 1030800, 1037363, 1043926, 1050489, 1057052, 1063615} },
{"Belt of Transcendence", {6016925, 16925, 316925, 216925, 1003530, 1010956, 1017624, 1024237, 1030801, 1037364, 1043927, 1050490, 1057053, 1063616} },
{"Bindings of Transcendence", {6016926, 16926, 316926, 216926, 1003531, 1010957, 1017625, 1024238, 1030802, 1037365, 1043928, 1050491, 1057054, 1063617} },
{"Nemesis Boots", {6016927, 16927, 316927, 216927, 1003532, 1010958, 1017626, 1024239, 1030803, 1037366, 1043929, 1050492, 1057055, 1063618} },
{"Nemesis Gloves", {6016928, 16928, 316928, 216928, 1003533, 1010959, 1017627, 1024240, 1030804, 1037367, 1043930, 1050493, 1057056, 1063619} },
{"Nemesis Skullcap", {6016929, 16929, 316929, 216929, 1003534, 1010960, 1017628, 1024241, 1030805, 1037368, 1043931, 1050494, 1057057, 1063620} },
{"Nemesis Leggings", {6016930, 16930, 316930, 216930, 1003535, 1010961, 1017629, 1024242, 1030806, 1037369, 1043932, 1050495, 1057058, 1063621} },
{"Nemesis Robes", {6016931, 16931, 316931, 216931, 1003536, 1010962, 1017630, 1024243, 1030807, 1037370, 1043933, 1050496, 1057059, 1063622} },
{"Nemesis Spaulders", {6016932, 16932, 316932, 216932, 1003537, 1010963, 1017631, 1024244, 1030808, 1037371, 1043934, 1050497, 1057060, 1063623} },
{"Nemesis Belt", {6016933, 16933, 316933, 216933, 1003538, 1010964, 1017632, 1024245, 1030809, 1037372, 1043935, 1050498, 1057061, 1063624} },
{"Nemesis Bracers", {6016934, 16934, 316934, 216934, 1003539, 1010965, 1017633, 1024246, 1030810, 1037373, 1043936, 1050499, 1057062, 1063625} },
{"Dragonstalker's Bracers", {6016935, 16935, 316935, 216935, 1003540, 1010966, 1017634, 1024247, 1030811, 1037374, 1043937, 1050500, 1057063, 1063626} },
{"Dragonstalker's Belt", {6016936, 16936, 316936, 216936, 1003541, 1010967, 1017635, 1024248, 1030812, 1037375, 1043938, 1050501, 1057064, 1063627} },
{"Dragonstalker's Spaulders", {6016937, 16937, 316937, 216937, 1003542, 1010968, 1017636, 1024249, 1030813, 1037376, 1043939, 1050502, 1057065, 1063628} },
{"Dragonstalker's Legguards", {6016938, 16938, 316938, 216938, 1003543, 1010969, 1017637, 1024250, 1030814, 1037377, 1043940, 1050503, 1057066, 1063629} },
{"Dragonstalker's Helm", {6016939, 16939, 316939, 216939, 1003544, 1010970, 1017638, 1024251, 1030815, 1037378, 1043941, 1050504, 1057067, 1063630} },
{"Dragonstalker's Gauntlets", {6016940, 16940, 316940, 216940, 1003545, 1010971, 1017639, 1024252, 1030816, 1037379, 1043942, 1050505, 1057068, 1063631} },
{"Dragonstalker's Greaves", {6016941, 16941, 316941, 216941, 1003546, 1010972, 1017640, 1024253, 1030817, 1037380, 1043943, 1050506, 1057069, 1063632} },
{"Dragonstalker's Breastplate", {6016942, 16942, 316942, 216942, 1003547, 1010973, 1017641, 1024254, 1030818, 1037381, 1043944, 1050507, 1057070, 1063633} },
{"Bracers of Ten Storms", {6016943, 16943, 316943, 216943, 1003548, 1010974, 1017642, 1024255, 1030819, 1037382, 1043945, 1050508, 1057071, 1063634} },
{"Belt of Ten Storms", {6016944, 16944, 316944, 216944, 1003549, 1010975, 1017643, 1024256, 1030820, 1037383, 1043946, 1050509, 1057072, 1063635} },
{"Epaulets of Ten Storms", {6016945, 16945, 316945, 216945, 1003550, 1010976, 1017644, 1024257, 1030821, 1037384, 1043947, 1050510, 1057073, 1063636} },
{"Legplates of Ten Storms", {6016946, 16946, 316946, 216946, 1003551, 1010977, 1017645, 1024258, 1030822, 1037385, 1043948, 1050511, 1057074, 1063637} },
{"Helmet of Ten Storms", {6016947, 16947, 316947, 216947, 1003552, 1010978, 1017646, 1024259, 1030823, 1037386, 1043949, 1050512, 1057075, 1063638} },
{"Gauntlets of Ten Storms", {6016948, 16948, 316948, 216948, 1003553, 1010979, 1017647, 1024260, 1030824, 1037387, 1043950, 1050513, 1057076, 1063639} },
{"Greaves of Ten Storms", {6016949, 16949, 316949, 216949, 1003554, 1010980, 1017648, 1024261, 1030825, 1037388, 1043951, 1050514, 1057077, 1063640} },
{"Breastplate of Ten Storms", {6016950, 16950, 316950, 216950, 1003555, 1010981, 1017649, 1024262, 1030826, 1037389, 1043952, 1050515, 1057078, 1063641} },
{"Judgement Bindings", {6016951, 16951, 316951, 216951, 1003556, 1010982, 1017650, 1024263, 1030827, 1037390, 1043953, 1050516, 1057079, 1063642} },
{"Judgement Belt", {6016952, 16952, 316952, 216952, 1003557, 1010983, 1017651, 1024264, 1030828, 1037391, 1043954, 1050517, 1057080, 1063643} },
{"Judgement Spaulders", {6016953, 16953, 316953, 216953, 1003558, 1010984, 1017652, 1024265, 1030829, 1037392, 1043955, 1050518, 1057081, 1063644} },
{"Judgement Legplates", {6016954, 16954, 316954, 216954, 1003559, 1010985, 1017653, 1024266, 1030830, 1037393, 1043956, 1050519, 1057082, 1063645} },
{"Judgement Crown", {6016955, 16955, 316955, 216955, 1003560, 1010986, 1017654, 1024267, 1030831, 1037394, 1043957, 1050520, 1057083, 1063646} },
{"Judgement Gauntlets", {6016956, 16956, 316956, 216956, 1003561, 1010987, 1017655, 1024268, 1030832, 1037395, 1043958, 1050521, 1057084, 1063647} },
{"Judgement Sabatons", {6016957, 16957, 316957, 216957, 1003562, 1010988, 1017656, 1024269, 1030833, 1037396, 1043959, 1050522, 1057085, 1063648} },
{"Judgement Breastplate", {6016958, 16958, 316958, 216958, 1003563, 1010989, 1017657, 1024270, 1030834, 1037397, 1043960, 1050523, 1057086, 1063649} },
{"Bracelets of Wrath", {6016959, 16959, 316959, 216959, 1003564, 1010990, 1017658, 1024271, 1030835, 1037398, 1043961, 1050524, 1057087, 1063650} },
{"Waistband of Wrath", {6016960, 16960, 316960, 216960, 1003565, 1010991, 1017659, 1024272, 1030836, 1037399, 1043962, 1050525, 1057088, 1063651} },
{"Pauldrons of Wrath", {6016961, 16961, 316961, 216961, 1003566, 1010992, 1017660, 1024273, 1030837, 1037400, 1043963, 1050526, 1057089, 1063652} },
{"Legplates of Wrath", {6016962, 16962, 316962, 216962, 1003567, 1010993, 1017661, 1024274, 1030838, 1037401, 1043964, 1050527, 1057090, 1063653} },
{"Helm of Wrath", {6016963, 16963, 316963, 216963, 1003568, 1010994, 1017662, 1024275, 1030839, 1037402, 1043965, 1050528, 1057091, 1063654} },
{"Gauntlets of Wrath", {6016964, 16964, 316964, 216964, 1003569, 1010995, 1017663, 1024276, 1030840, 1037403, 1043966, 1050529, 1057092, 1063655} },
{"Sabatons of Wrath", {6016965, 16965, 316965, 216965, 1003570, 1010996, 1017664, 1024277, 1030841, 1037404, 1043967, 1050530, 1057093, 1063656} },
{"Breastplate of Wrath", {6016966, 16966, 316966, 216966, 1003571, 1010997, 1017665, 1024278, 1030842, 1037405, 1043968, 1050531, 1057094, 1063657} },
{"Flarecore Gloves", {6016979, 16979, 244259, 244260, 244261, 244262, 244263, 244264, 244265, 244266, 244267, 244268, 244269, 244270} },
{"Flarecore Mantle", {6016980, 16980, 244271, 244272, 244273, 244274, 244275, 244276, 244277, 244278, 244279, 244280, 244281, 244282} },
{"Corehound Boots", {6016982, 16982, 244296, 244297, 244298, 244299, 244300, 244301, 244302, 244303, 244304, 244305, 244306, 244307} },
{"Molten Helm", {6016983, 16983, 244308, 244309, 244310, 244311, 244312, 244313, 244314, 244315, 244316, 244317, 244318, 244319} },
{"Black Dragonscale Boots", {6016984, 16984, 244320, 244321, 244322, 244323, 244324, 244325, 244326, 244327, 244328, 244329, 244330, 244331} },
{"Fiery Chain Shoulders", {6016988, 16988, 244371, 244372, 244373, 244374, 244375, 244376, 244377, 244378, 244379, 244380, 244381, 244382} },
{"Fiery Chain Girdle", {6016989, 16989, 244383, 244384, 244385, 244386, 244387, 244388, 244389, 244390, 244391, 244392, 244393, 244394} },
{"Smokey's Explosive Launcher", {244409, 16992, 244408, 244410, 244411, 244412, 244413, 244414, 244415, 244416, 244417, 244418, 244419, 244420} },
{"Smokey's Fireshooter", {244422, 16993, 244421, 244423, 244424, 244425, 244426, 244427, 244428, 244429, 244430, 244431, 244432, 244433} },
{"Duskwing Gloves", {244435, 16994, 244434, 244436, 244437, 244438, 244439, 244440, 244441, 244442, 244443, 244444, 244445, 244446} },
{"Duskwing Mantle", {244448, 16995, 244447, 244449, 244450, 244451, 244452, 244453, 244454, 244455, 244456, 244457, 244458, 244459} },
{"Gorewood Bow", {6016996, 16996, 244460, 244461, 244462, 244463, 244464, 244465, 244466, 244467, 244468, 244469, 244470, 244471} },
{"Stormrager", {6016997, 16997, 244472, 244473, 244474, 244475, 244476, 244477, 244478, 244479, 244480, 244481, 244482, 244483} },
{"Sacred Protector", {6016998, 16998, 244484, 244485, 244486, 244487, 244488, 244489, 244490, 244491, 244492, 244493, 244494, 244495} },
{"Royal Seal of Alexis", {6016999, 16999, 244496, 244497, 244498, 244499, 244500, 244501, 244502, 244503, 244504, 244505, 244506, 244507} },
{"Elemental Circle", {244509, 17001, 244508, 244510, 244511, 244512, 244513, 244514, 244515, 244516, 244517, 244518, 244519, 244520} },
{"Ichor Spitter", {244522, 17002, 244521, 244523, 244524, 244525, 244526, 244527, 244528, 244529, 244530, 244531, 244532, 244533} },
{"Skullstone Hammer", {244535, 17003, 244534, 244536, 244537, 244538, 244539, 244540, 244541, 244542, 244543, 244544, 244545, 244546} },
{"Sarah's Guide", {244548, 17004, 244547, 244549, 244550, 244551, 244552, 244553, 244554, 244555, 244556, 244557, 244558, 244559} },
{"Stonerender Gauntlets", {6017007, 17007, 128683, 217007, 1003572, 1010998, 1017666, 1024279, 1030843, 1037406, 1043969, 1050532, 1057095, 1063658} },
{"Dark Iron Leggings", {6017013, 17013, 244586, 244587, 244588, 244589, 244590, 244591, 244592, 244593, 244594, 244595, 244596, 244597} },
{"Dark Iron Bracers", {6017014, 17014, 244598, 244599, 244600, 244601, 244602, 244603, 244604, 244605, 244606, 244607, 244608, 244609} },
{"Dark Iron Reaver", {6017015, 17015, 244610, 244611, 244612, 244613, 244614, 244615, 244616, 244617, 244618, 244619, 244620, 244621} },
{"Dark Iron Destroyer", {6017016, 17016, 244622, 244623, 244624, 244625, 244626, 244627, 244628, 244629, 244630, 244631, 244632, 244633} },
{"Will of the Martyr", {6017044, 17044, 244673, 244674, 244675, 244676, 244677, 244678, 244679, 244680, 244681, 244682, 244683, 244684} },
{"Blood of the Martyr", {6017045, 17045, 244685, 244686, 244687, 244688, 244689, 244690, 244691, 244692, 244693, 244694, 244695, 244696} },
{"Chan's Imperial Robes", {6017050, 17050, 244723, 244724, 244725, 244726, 244727, 244728, 244729, 244730, 244731, 244732, 244733, 244734} },
{"Joonho's Mercy", {6017054, 17054, 244735, 244736, 244737, 244738, 244739, 244740, 244741, 244742, 244743, 244744, 244745, 244746} },
{"Changuk Smasher", {6017055, 17055, 244747, 244748, 244749, 244750, 244751, 244752, 244753, 244754, 244755, 244756, 244757, 244758} },
{"Juno's Shadow", {6017061, 17061, 244759, 244760, 244761, 244762, 244763, 244764, 244765, 244766, 244767, 244768, 244769, 244770} },
{"Band of Accuria", {6017063, 17063, 317063, 217063, 1003573, 1010999, 1017667, 1024280, 1030844, 1037407, 1043970, 1050533, 1057096, 1063659} },
{"Shard of the Scale", {6017064, 17064, 317064, 217064, 1003574, 1011000, 1017668, 1024281, 1030845, 1037408, 1043971, 1050534, 1057097, 1063660} },
{"Medallion of Steadfast Might", {6017065, 17065, 317065, 217065, 1003575, 1011001, 1017669, 1024282, 1030846, 1037409, 1043972, 1050535, 1057098, 1063661} },
{"Drillborer Disk", {6017066, 17066, 317066, 217066, 1003576, 1011002, 1017670, 1024283, 1030847, 1037410, 1043973, 1050536, 1057099, 1063662} },
{"Ancient Cornerstone Grimoire", {6017067, 17067, 317067, 217067, 1003577, 1011003, 1017671, 1024284, 1030848, 1037411, 1043974, 1050537, 1057100, 1063663} },
{"Deathbringer", {6017068, 17068, 317068, 217068, 1003578, 1011004, 1017672, 1024285, 1030849, 1037412, 1043975, 1050538, 1057101, 1063664} },
{"Striker's Mark", {6017069, 17069, 317069, 217069, 1003579, 1011006, 1017673, 1024286, 1030850, 1037413, 1043976, 1050539, 1057102, 1063665} },
{"Fang of the Mystics", {1017070, 17070, 244771, 244772, 244773, 244774, 244775, 244776, 244777, 244778, 244779, 244780, 244781, 244782} },
{"Gutgore Ripper", {6017071, 17071, 317071, 217071, 1003580, 1011007, 1017674, 1024287, 1030851, 1037414, 1043977, 1050540, 1057103, 1063666} },
{"Blastershot Launcher", {6017072, 17072, 317072, 217072, 1003581, 1011008, 1017675, 1024288, 1030852, 1037415, 1043978, 1050541, 1057104, 1063667} },
{"Earthshaker", {6017073, 17073, 317073, 217073, 1003582, 1011009, 1017676, 1024289, 1030853, 1037416, 1043979, 1050542, 1057105, 1063668} },
{"Shadowstrike", {6017074, 17074, 317074, 217074, 1003583, 1011010, 1017677, 1024290, 1030854, 1037417, 1043980, 1050543, 1057106, 1063669} },
{"Vis'kag the Bloodletter", {6017075, 17075, 317075, 217075, 1003584, 1011011, 1017678, 1024291, 1030855, 1037418, 1043981, 1050544, 1057107, 1063670} },
{"Bonereaver's Edge", {6017076, 17076, 317076, 217076, 1003585, 1011012, 1017679, 1024292, 1030856, 1037419, 1043982, 1050545, 1057108, 1063671} },
{"Crimson Shocker", {6017077, 17077, 317077, 217077, 1003586, 1011013, 1017680, 1024293, 1030857, 1037420, 1043983, 1050546, 1057109, 1063672} },
{"Sapphiron Drape", {6017078, 17078, 317078, 217078, 1003587, 1011014, 1017681, 1024294, 1030858, 1037421, 1043984, 1050547, 1057110, 1063673} },
{"Shard of the Flame", {6017082, 17082, 317082, 217082, 1003588, 1011015, 1017682, 1024295, 1030859, 1037422, 1043985, 1050548, 1057111, 1063674} },
{"Cloak of the Shrouded Mists", {6017102, 17102, 317102, 217102, 1003589, 1011016, 1017683, 1024296, 1030860, 1037423, 1043986, 1050549, 1057112, 1063675} },
{"Azuresong Mageblade", {6017103, 17103, 317103, 217103, 1003590, 1011017, 1017684, 1024297, 1030861, 1037424, 1043987, 1050550, 1057113, 1063676} },
{"Spinal Reaper", {6017104, 17104, 317104, 217104, 1003591, 1011018, 1017685, 1024298, 1030862, 1037425, 1043988, 1050551, 1057114, 1063677} },
{"Malistar's Defender", {6017106, 17106, 317106, 217106, 1003593, 1011020, 1017687, 1024300, 1030864, 1037427, 1043990, 1050553, 1057116, 1063679} },
{"Dragon's Blood Cape", {6017107, 17107, 317107, 217107, 1003594, 1011021, 1017688, 1024301, 1030865, 1037428, 1043991, 1050554, 1057117, 1063680} },
{"Choker of Enlightenment", {6017109, 17109, 317109, 217109, 1003595, 1011022, 1017689, 1024302, 1030866, 1037429, 1043992, 1050555, 1057118, 1063681} },
{"Seal of the Archmagus", {6017110, 17110, 317110, 217110, 1003596, 1011023, 1017690, 1024303, 1030867, 1037430, 1043993, 1050556, 1057119, 1063682} },
{"Blazefury Medallion", {1017111, 17111, 244783, 244784, 244785, 244786, 244787, 244788, 244789, 244790, 244791, 244792, 244793, 244794} },
{"Empyrean Demolisher", {1017112, 17112, 244795, 244796, 244797, 244798, 244799, 244800, 244801, 244802, 244803, 244804, 244805, 244806} },
{"Amberseal Keeper", {1017113, 17113, 244807, 244808, 244809, 244810, 244811, 244812, 244813, 244814, 244815, 244816, 244817, 244818} },
{"Shard of the Defiler", {244820, 17142, 244819, 244821, 244822, 244823, 244824, 244825, 244826, 244827, 244828, 244829, 244830, 244831} },
{"Sulfuras, Hand of Ragnaros", {6017182, 17182, 128913, 217182, 1003597, 1011024, 1017691, 1024304, 1030868, 1037431, 1043994, 1050557, 1057120, 1063683} },
{"Scepter of Celebras", {6017191, 17191, 244832, 244833, 244834, 244835, 244836, 244837, 244838, 244839, 244840, 244841, 244842, 244843} },
{"Sulfuron Hammer", {6017193, 17193, 244844, 244845, 244846, 244847, 244848, 244849, 244850, 244851, 244852, 244853, 244854, 244855} },
{"Thunderstrike", {6017223, 17223, 317223, 217223, 1003599, 1011026, 1017693, 1024306, 1030870, 1037433, 1043996, 1050559, 1057122, 1063685} },
{"Smokey's Drape", {244870, 17523, 244869, 244871, 244872, 244873, 244874, 244875, 244876, 244877, 244878, 244879, 244880, 244881} },
{"Frostwolf Insignia Rank 1", {245498, 17690, 245497, 245499, 245500, 245501, 245502, 245503, 245504, 245505, 245506, 245507, 245508, 245509} },
{"Stormpike Insignia Rank 1", {245511, 17691, 245510, 245512, 245513, 245514, 245515, 245516, 245517, 245518, 245519, 245520, 245521, 245522} },
{"Thrash Blade", {6017705, 17705, 245575, 245576, 245577, 245578, 245579, 245580, 245581, 245582, 245583, 245584, 245585, 245586} },
{"Gemshard Heart", {6017707, 17707, 245587, 245588, 245589, 245590, 245591, 245592, 245593, 245594, 245595, 245596, 245597, 245598} },
{"Charstone Dirk", {6017710, 17710, 245599, 245600, 245601, 245602, 245603, 245604, 245605, 245606, 245607, 245608, 245609, 245610} },
{"Elemental Rockridge Leggings", {6017711, 17711, 245611, 245612, 245613, 245614, 245615, 245616, 245617, 245618, 245619, 245620, 245621, 245622} },
{"Blackstone Ring", {6017713, 17713, 245623, 245624, 245625, 245626, 245627, 245628, 245629, 245630, 245631, 245632, 245633, 245634} },
{"Bracers of the Stone Princess", {6017714, 17714, 245635, 245636, 245637, 245638, 245639, 245640, 245641, 245642, 245643, 245644, 245645, 245646} },
{"Eye of Theradras", {6017715, 17715, 245647, 245648, 245649, 245650, 245651, 245652, 245653, 245654, 245655, 245656, 245657, 245658} },
{"Megashot Rifle", {6017717, 17717, 245659, 245660, 245661, 245662, 245663, 245664, 245665, 245666, 245667, 245668, 245669, 245670} },
{"Gizlock's Hypertech Buckler", {6017718, 17718, 245671, 245672, 245673, 245674, 245675, 245676, 245677, 245678, 245679, 245680, 245681, 245682} },
{"Inventor's Focal Sword", {6017719, 17719, 245683, 245684, 245685, 245686, 245687, 245688, 245689, 245690, 245691, 245692, 245693, 245694} },
{"Albino Crocscale Boots", {6017728, 17728, 245708, 245709, 245710, 245711, 245712, 245713, 245714, 245715, 245716, 245717, 245718, 245719} },
{"Gatorbite Axe", {6017730, 17730, 245720, 245721, 245722, 245723, 245724, 245725, 245726, 245727, 245728, 245729, 245730, 245731} },
{"Rotgrip Mantle", {6017732, 17732, 245732, 245733, 245734, 245735, 245736, 245737, 245738, 245739, 245740, 245741, 245742, 245743} },
{"Fist of Stone", {6017733, 17733, 245744, 245745, 245746, 245747, 245748, 245749, 245750, 245751, 245752, 245753, 245754, 245755} },
{"Helm of the Mountain", {6017734, 17734, 245756, 245757, 245758, 245759, 245760, 245761, 245762, 245763, 245764, 245765, 245766, 245767} },
{"Rockgrip Gauntlets", {6017736, 17736, 245768, 245769, 245770, 245771, 245772, 245773, 245774, 245775, 245776, 245777, 245778, 245779} },
{"Cloud Stone", {6017737, 17737, 245780, 245781, 245782, 245783, 245784, 245785, 245786, 245787, 245788, 245789, 245790, 245791} },
{"Claw of Celebras", {6017738, 17738, 245792, 245793, 245794, 245795, 245796, 245797, 245798, 245799, 245800, 245801, 245802, 245803} },
{"Grovekeeper's Drape", {6017739, 17739, 245804, 245805, 245806, 245807, 245808, 245809, 245810, 245811, 245812, 245813, 245814, 245815} },
{"Soothsayer's Headdress", {6017740, 17740, 245816, 245817, 245818, 245819, 245820, 245821, 245822, 245823, 245824, 245825, 245826, 245827} },
{"Nature's Embrace", {6017741, 17741, 245828, 245829, 245830, 245831, 245832, 245833, 245834, 245835, 245836, 245837, 245838, 245839} },
{"Fungus Shroud Armor", {6017742, 17742, 245840, 245841, 245842, 245843, 245844, 245845, 245846, 245847, 245848, 245849, 245850, 245851} },
{"Resurgence Rod", {6017743, 17743, 245852, 245853, 245854, 245855, 245856, 245857, 245858, 245859, 245860, 245861, 245862, 245863} },
{"Heart of Noxxion", {6017744, 17744, 245864, 245865, 245866, 245867, 245868, 245869, 245870, 245871, 245872, 245873, 245874, 245875} },
{"Noxious Shooter", {6017745, 17745, 245876, 245877, 245878, 245879, 245880, 245881, 245882, 245883, 245884, 245885, 245886, 245887} },
{"Noxxion's Shackles", {6017746, 17746, 245888, 245889, 245890, 245891, 245892, 245893, 245894, 245895, 245896, 245897, 245898, 245899} },
{"Vinerot Sandals", {6017748, 17748, 245900, 245901, 245902, 245903, 245904, 245905, 245906, 245907, 245908, 245909, 245910, 245911} },
{"Phytoskin Spaulders", {6017749, 17749, 245912, 245913, 245914, 245915, 245916, 245917, 245918, 245919, 245920, 245921, 245922, 245923} },
{"Chloromesh Girdle", {6017750, 17750, 245924, 245925, 245926, 245927, 245928, 245929, 245930, 245931, 245932, 245933, 245934, 245935} },
{"Brusslehide Leggings", {6017751, 17751, 245936, 245937, 245938, 245939, 245940, 245941, 245942, 245943, 245944, 245945, 245946, 245947} },
{"Satyr's Lash", {6017752, 17752, 245948, 245949, 245950, 245951, 245952, 245953, 245954, 245955, 245956, 245957, 245958, 245959} },
{"Verdant Keeper's Aim", {6017753, 17753, 245960, 245961, 245962, 245963, 245964, 245965, 245966, 245967, 245968, 245969, 245970, 245971} },
{"Infernal Trickster Leggings", {6017754, 17754, 245972, 245973, 245974, 245975, 245976, 245977, 245978, 245979, 245980, 245981, 245982, 245983} },
{"Satyrmane Sash", {6017755, 17755, 245984, 245985, 245986, 245987, 245988, 245989, 245990, 245991, 245992, 245993, 245994, 245995} },
{"Mark of Resolution", {6017759, 17759, 245996, 245997, 245998, 245999, 246000, 246001, 246002, 246003, 246004, 246005, 246006, 246007} },
{"Princess Theradras' Scepter", {6017766, 17766, 246008, 246009, 246010, 246011, 246012, 246013, 246014, 246015, 246016, 246017, 246018, 246019} },
{"Bloomsprout Headpiece", {6017767, 17767, 246020, 246021, 246022, 246023, 246024, 246025, 246026, 246027, 246028, 246029, 246030, 246031} },
{"Woodseed Hoop", {246033, 17768, 246032, 246034, 246035, 246036, 246037, 246038, 246039, 246040, 246041, 246042, 246043, 246044} },
{"Branchclaw Gauntlets", {246059, 17770, 246058, 246060, 246061, 246062, 246063, 246064, 246065, 246066, 246067, 246068, 246069, 246070} },
{"Acumen Robes", {246111, 17775, 246110, 246112, 246113, 246114, 246115, 246116, 246117, 246118, 246119, 246120, 246121, 246122} },
{"Sprightring Helm", {246124, 17776, 246123, 246125, 246126, 246127, 246128, 246129, 246130, 246131, 246132, 246133, 246134, 246135} },
{"Relentless Chain", {246137, 17777, 246136, 246138, 246139, 246140, 246141, 246142, 246143, 246144, 246145, 246146, 246147, 246148} },
{"Sagebrush Girdle", {246150, 17778, 246149, 246151, 246152, 246153, 246154, 246155, 246156, 246157, 246158, 246159, 246160, 246161} },
{"Hulkstone Pauldrons", {246163, 17779, 246162, 246164, 246165, 246166, 246167, 246168, 246169, 246170, 246171, 246172, 246173, 246174} },
{"Blade of Eternal Darkness", {6017780, 17780, 246175, 246176, 246177, 246178, 246179, 246180, 246181, 246182, 246183, 246184, 246185, 246186} },
{"Talisman of Binding Shard", {6017782, 17782, 317782, 217782, 1003600, 1011027, 1017694, 1024307, 1030871, 1037434, 1043997, 1050560, 1057123, 1063686} },
{"Stormpike Insignia Rank 2", {246213, 17900, 246212, 246214, 246215, 246216, 246217, 246218, 246219, 246220, 246221, 246222, 246223, 246224} },
{"Stormpike Insignia Rank 3", {246226, 17901, 246225, 246227, 246228, 246229, 246230, 246231, 246232, 246233, 246234, 246235, 246236, 246237} },
{"Stormpike Insignia Rank 4", {6017902, 17902, 246238, 246239, 246240, 246241, 246242, 246243, 246244, 246245, 246246, 246247, 246248, 246249} },
{"Stormpike Insignia Rank 5", {6017903, 17903, 246250, 246251, 246252, 246253, 246254, 246255, 246256, 246257, 246258, 246259, 246260, 246261} },
{"Stormpike Insignia Rank 6", {6017904, 17904, 246262, 246263, 246264, 246265, 246266, 246267, 246268, 246269, 246270, 246271, 246272, 246273} },
{"Frostwolf Insignia Rank 2", {246275, 17905, 246274, 246276, 246277, 246278, 246279, 246280, 246281, 246282, 246283, 246284, 246285, 246286} },
{"Frostwolf Insignia Rank 3", {246288, 17906, 246287, 246289, 246290, 246291, 246292, 246293, 246294, 246295, 246296, 246297, 246298, 246299} },
{"Frostwolf Insignia Rank 4", {6017907, 17907, 246300, 246301, 246302, 246303, 246304, 246305, 246306, 246307, 246308, 246309, 246310, 246311} },
{"Frostwolf Insignia Rank 5", {6017908, 17908, 246312, 246313, 246314, 246315, 246316, 246317, 246318, 246319, 246320, 246321, 246322, 246323} },
{"Frostwolf Insignia Rank 6", {6017909, 17909, 246324, 246325, 246326, 246327, 246328, 246329, 246330, 246331, 246332, 246333, 246334, 246335} },
{"Fist of Stone", {6017943, 17943, 246349, 246350, 246351, 246352, 246353, 246354, 246355, 246356, 246357, 246358, 246359, 246360} },
{"Ragnaros Core", {6017982, 17982, 246361, 246362, 246363, 246364, 246365, 246366, 246367, 246368, 246369, 246370, 246371, 246372} },
{"Royal Seal of Alexis", {6018022, 18022, 246373, 246374, 246375, 246376, 246377, 246378, 246379, 246380, 246381, 246382, 246383, 246384} },
{"Coal Miner Boots", {6018043, 18043, 246385, 246386, 246387, 246388, 246389, 246390, 246391, 246392, 246393, 246394, 246395, 246396} },
{"Hurley's Tankard", {6018044, 18044, 246397, 246398, 246399, 246400, 246401, 246402, 246403, 246404, 246405, 246406, 246407, 246408} },
{"Flame Walkers", {6018047, 18047, 115457, 218047, 1003601, 1011028, 1017695, 1024308, 1030872, 1037435, 1043998, 1050561, 1057124, 1063687} },
{"Mastersmith's Hammer", {6018048, 18048, 122775, 218048, 1003602, 1011029, 1017696, 1024309, 1030873, 1037436, 1043999, 1050562, 1057125, 1063688} },
{"Zum'rah's Vexing Cane", {6018082, 18082, 246409, 246410, 246411, 246412, 246413, 246414, 246415, 246416, 246417, 246418, 246419, 246420} },
{"Jumanza Grips", {6018083, 18083, 246421, 246422, 246423, 246424, 246425, 246426, 246427, 246428, 246429, 246430, 246431, 246432} },
{"Dragonrider Boots", {6018102, 18102, 102373, 218102, 1003603, 1011030, 1017697, 1024310, 1030874, 1037437, 1044000, 1050563, 1057126, 1063689} },
{"Band of Rumination", {6018103, 18103, 100209, 218103, 1003604, 1011031, 1017698, 1024311, 1030875, 1037438, 1044001, 1050564, 1057127, 1063690} },
{"Feralsurge Girdle", {6018104, 18104, 114651, 218104, 1003605, 1011032, 1017699, 1024312, 1030876, 1037439, 1044002, 1050565, 1057128, 1063691} },
{"Force Reactive Disk", {6018168, 18168, 246433, 246434, 246435, 246436, 246437, 246438, 246439, 246440, 246441, 246442, 246443, 246444} },
{"Eskhandar's Left Claw", {1018202, 18202, 246445, 246446, 246447, 246448, 246449, 246450, 246451, 246452, 246453, 246454, 246455, 246456} },
{"Eskhandar's Right Claw", {6018203, 18203, 318203, 218203, 1003606, 1011033, 1017700, 1024313, 1030877, 1037440, 1044003, 1050566, 1057129, 1063692} },
{"Eskhandar's Pelt", {1018204, 18204, 246457, 246458, 246459, 246460, 246461, 246462, 246463, 246464, 246465, 246466, 246467, 246468} },
{"Eskhandar's Collar", {6018205, 18205, 318205, 218205, 1003607, 1011034, 1017701, 1024314, 1030878, 1037441, 1044004, 1050567, 1057130, 1063693} },
{"Drape of Benediction", {246470, 18208, 246469, 246471, 246472, 246473, 246474, 246475, 246476, 246477, 246478, 246479, 246480, 246481} },
{"Flarecore Wraps", {6018263, 18263, 246495, 246496, 246497, 246498, 246499, 246500, 246501, 246502, 246503, 246504, 246505, 246506} },
{"Core Marksman Rifle", {6018282, 18282, 246507, 246508, 246509, 246510, 246511, 246512, 246513, 246514, 246515, 246516, 246517, 246518} },
{"Barbed Thorn Necklace", {6018289, 18289, 246519, 246520, 246521, 246522, 246523, 246524, 246525, 246526, 246527, 246528, 246529, 246530} },
{"Phasing Boots", {6018295, 18295, 246531, 246532, 246533, 246534, 246535, 246536, 246537, 246538, 246539, 246540, 246541, 246542} },
{"Marksman Bands", {6018296, 18296, 246543, 246544, 246545, 246546, 246547, 246548, 246549, 246550, 246551, 246552, 246553, 246554} },
{"Unbridled Leggings", {6018298, 18298, 246555, 246556, 246557, 246558, 246559, 246560, 246561, 246562, 246563, 246564, 246565, 246566} },
{"Lethtendris's Wand", {246568, 18301, 246567, 246569, 246570, 246571, 246572, 246573, 246574, 246575, 246576, 246577, 246578, 246579} },
{"Band of Vigor", {246581, 18302, 246580, 246582, 246583, 246584, 246585, 246586, 246587, 246588, 246589, 246590, 246591, 246592} },
{"Nimble Buckler", {6018303, 18303, 246593, 246594, 246595, 246596, 246597, 246598, 246599, 246600, 246601, 246602, 246603, 246604} },
{"Greenroot Mail", {6018304, 18304, 246605, 246606, 246607, 246608, 246609, 246610, 246611, 246612, 246613, 246614, 246615, 246616} },
{"Breakwater Legguards", {246618, 18305, 246617, 246619, 246620, 246621, 246622, 246623, 246624, 246625, 246626, 246627, 246628, 246629} },
{"Gloves of Shadowy Mist", {246631, 18306, 246630, 246632, 246633, 246634, 246635, 246636, 246637, 246638, 246639, 246640, 246641, 246642} },
{"Riptide Shoes", {246644, 18307, 246643, 246645, 246646, 246647, 246648, 246649, 246650, 246651, 246652, 246653, 246654, 246655} },
{"Clever Hat", {246657, 18308, 246656, 246658, 246659, 246660, 246661, 246662, 246663, 246664, 246665, 246666, 246667, 246668} },
{"Gloves of Restoration", {6018309, 18309, 246669, 246670, 246671, 246672, 246673, 246674, 246675, 246676, 246677, 246678, 246679, 246680} },
{"Fiendish Machete", {6018310, 18310, 246681, 246682, 246683, 246684, 246685, 246686, 246687, 246688, 246689, 246690, 246691, 246692} },
{"Quel'dorei Channeling Rod", {6018311, 18311, 246693, 246694, 246695, 246696, 246697, 246698, 246699, 246700, 246701, 246702, 246703, 246704} },
{"Energized Chestplate", {6018312, 18312, 246705, 246706, 246707, 246708, 246709, 246710, 246711, 246712, 246713, 246714, 246715, 246716} },
{"Helm of Awareness", {6018313, 18313, 246717, 246718, 246719, 246720, 246721, 246722, 246723, 246724, 246725, 246726, 246727, 246728} },
{"Ring of Demonic Guile", {6018314, 18314, 246729, 246730, 246731, 246732, 246733, 246734, 246735, 246736, 246737, 246738, 246739, 246740} },
{"Ring of Demonic Potency", {6018315, 18315, 246741, 246742, 246743, 246744, 246745, 246746, 246747, 246748, 246749, 246750, 246751, 246752} },
{"Tempest Talisman", {6018317, 18317, 246753, 246754, 246755, 246756, 246757, 246758, 246759, 246760, 246761, 246762, 246763, 246764} },
{"Merciful Greaves", {6018318, 18318, 246765, 246766, 246767, 246768, 246769, 246770, 246771, 246772, 246773, 246774, 246775, 246776} },
{"Fervent Helm", {6018319, 18319, 246777, 246778, 246779, 246780, 246781, 246782, 246783, 246784, 246785, 246786, 246787, 246788} },
{"Demonheart Spaulders", {6018320, 18320, 246789, 246790, 246791, 246792, 246793, 246794, 246795, 246796, 246797, 246798, 246799, 246800} },
{"Energetic Rod", {6018321, 18321, 246801, 246802, 246803, 246804, 246805, 246806, 246807, 246808, 246809, 246810, 246811, 246812} },
{"Waterspout Boots", {6018322, 18322, 246813, 246814, 246815, 246816, 246817, 246818, 246819, 246820, 246821, 246822, 246823, 246824} },
{"Satyr's Bow", {6018323, 18323, 246825, 246826, 246827, 246828, 246829, 246830, 246831, 246832, 246833, 246834, 246835, 246836} },
{"Waveslicer", {6018324, 18324, 246837, 246838, 246839, 246840, 246841, 246842, 246843, 246844, 246845, 246846, 246847, 246848} },
{"Felhide Cap", {6018325, 18325, 246849, 246850, 246851, 246852, 246853, 246854, 246855, 246856, 246857, 246858, 246859, 246860} },
{"Razor Gauntlets", {6018326, 18326, 246861, 246862, 246863, 246864, 246865, 246866, 246867, 246868, 246869, 246870, 246871, 246872} },
{"Whipvine Cord", {6018327, 18327, 246873, 246874, 246875, 246876, 246877, 246878, 246879, 246880, 246881, 246882, 246883, 246884} },
{"Shadewood Cloak", {6018328, 18328, 246885, 246886, 246887, 246888, 246889, 246890, 246891, 246892, 246893, 246894, 246895, 246896} },
{"Orphic Bracers", {246898, 18337, 246897, 246899, 246900, 246901, 246902, 246903, 246904, 246905, 246906, 246907, 246908, 246909} },
{"Wand of Arcane Potency", {6018338, 18338, 246910, 246911, 246912, 246913, 246914, 246915, 246916, 246917, 246918, 246919, 246920, 246921} },
{"Eidolon Cloak", {246923, 18339, 246922, 246924, 246925, 246926, 246927, 246928, 246929, 246930, 246931, 246932, 246933, 246934} },
{"Eidolon Talisman", {6018340, 18340, 246935, 246936, 246937, 246938, 246939, 246940, 246941, 246942, 246943, 246944, 246945, 246946} },
{"Quel'dorei Sash", {6018341, 18341, 246947, 246948, 246949, 246950, 246951, 246952, 246953, 246954, 246955, 246956, 246957, 246958} },
{"Quel'dorei Guard", {6018342, 18342, 246959, 246960, 246961, 246962, 246963, 246964, 246965, 246966, 246967, 246968, 246969, 246970} },
{"Petrified Band", {246972, 18343, 246971, 246973, 246974, 246975, 246976, 246977, 246978, 246979, 246980, 246981, 246982, 246983} },
{"Stonebark Gauntlets", {6018344, 18344, 246984, 246985, 246986, 246987, 246988, 246989, 246990, 246991, 246992, 246993, 246994, 246995} },
{"Murmuring Ring", {246997, 18345, 246996, 246998, 246999, 247000, 247001, 247002, 247003, 247004, 247005, 247006, 247007, 247008} },
{"Threadbare Trousers", {247010, 18346, 247009, 247011, 247012, 247013, 247014, 247015, 247016, 247017, 247018, 247019, 247020, 247021} },
{"Well Balanced Axe", {247023, 18347, 247022, 247024, 247025, 247026, 247027, 247028, 247029, 247030, 247031, 247032, 247033, 247034} },
{"Quel'Serrar", {6018348, 18348, 247035, 247036, 247037, 247038, 247039, 247040, 247041, 247042, 247043, 247044, 247045, 247046} },
{"Gauntlets of Accuracy", {247048, 18349, 247047, 247049, 247050, 247051, 247052, 247053, 247054, 247055, 247056, 247057, 247058, 247059} },
{"Amplifying Cloak", {247061, 18350, 247060, 247062, 247063, 247064, 247065, 247066, 247067, 247068, 247069, 247070, 247071, 247072} },
{"Magically Sealed Bracers", {247074, 18351, 247073, 247075, 247076, 247077, 247078, 247079, 247080, 247081, 247082, 247083, 247084, 247085} },
{"Petrified Bark Shield", {247087, 18352, 247086, 247088, 247089, 247090, 247091, 247092, 247093, 247094, 247095, 247096, 247097, 247098} },
{"Stoneflower Staff", {247100, 18353, 247099, 247101, 247102, 247103, 247104, 247105, 247106, 247107, 247108, 247109, 247110, 247111} },
{"Pimgib's Collar", {6018354, 18354, 247112, 247113, 247114, 247115, 247116, 247117, 247118, 247119, 247120, 247121, 247122, 247123} },
{"Gordok's Handguards", {6018366, 18366, 247124, 247125, 247126, 247127, 247128, 247129, 247130, 247131, 247132, 247133, 247134, 247135} },
{"Gordok's Gauntlets", {6018367, 18367, 247136, 247137, 247138, 247139, 247140, 247141, 247142, 247143, 247144, 247145, 247146, 247147} },
{"Gordok's Gloves", {6018368, 18368, 247148, 247149, 247150, 247151, 247152, 247153, 247154, 247155, 247156, 247157, 247158, 247159} },
{"Gordok's Handwraps", {6018369, 18369, 247160, 247161, 247162, 247163, 247164, 247165, 247166, 247167, 247168, 247169, 247170, 247171} },
{"Vigilance Charm", {6018370, 18370, 247172, 247173, 247174, 247175, 247176, 247177, 247178, 247179, 247180, 247181, 247182, 247183} },
{"Mindtap Talisman", {6018371, 18371, 247184, 247185, 247186, 247187, 247188, 247189, 247190, 247191, 247192, 247193, 247194, 247195} },
{"Blade of the New Moon", {6018372, 18372, 247196, 247197, 247198, 247199, 247200, 247201, 247202, 247203, 247204, 247205, 247206, 247207} },
{"Chestplate of Tranquility", {6018373, 18373, 247208, 247209, 247210, 247211, 247212, 247213, 247214, 247215, 247216, 247217, 247218, 247219} },
{"Flamescarred Shoulders", {6018374, 18374, 247220, 247221, 247222, 247223, 247224, 247225, 247226, 247227, 247228, 247229, 247230, 247231} },
{"Bracers of the Eclipse", {6018375, 18375, 247232, 247233, 247234, 247235, 247236, 247237, 247238, 247239, 247240, 247241, 247242, 247243} },
{"Timeworn Mace", {6018376, 18376, 247244, 247245, 247246, 247247, 247248, 247249, 247250, 247251, 247252, 247253, 247254, 247255} },
{"Quickdraw Gloves", {6018377, 18377, 247256, 247257, 247258, 247259, 247260, 247261, 247262, 247263, 247264, 247265, 247266, 247267} },
{"Silvermoon Leggings", {6018378, 18378, 247268, 247269, 247270, 247271, 247272, 247273, 247274, 247275, 247276, 247277, 247278, 247279} },
{"Odious Greaves", {6018379, 18379, 247280, 247281, 247282, 247283, 247284, 247285, 247286, 247287, 247288, 247289, 247290, 247291} },
{"Eldritch Reinforced Legplates", {6018380, 18380, 247292, 247293, 247294, 247295, 247296, 247297, 247298, 247299, 247300, 247301, 247302, 247303} },
{"Evil Eye Pendant", {6018381, 18381, 247304, 247305, 247306, 247307, 247308, 247309, 247310, 247311, 247312, 247313, 247314, 247315} },
{"Fluctuating Cloak", {6018382, 18382, 247316, 247317, 247318, 247319, 247320, 247321, 247322, 247323, 247324, 247325, 247326, 247327} },
{"Force Imbued Gauntlets", {6018383, 18383, 247328, 247329, 247330, 247331, 247332, 247333, 247334, 247335, 247336, 247337, 247338, 247339} },
{"Bile-etched Spaulders", {6018384, 18384, 247340, 247341, 247342, 247343, 247344, 247345, 247346, 247347, 247348, 247349, 247350, 247351} },
{"Robe of Everlasting Night", {6018385, 18385, 247352, 247353, 247354, 247355, 247356, 247357, 247358, 247359, 247360, 247361, 247362, 247363} },
{"Padre's Trousers", {6018386, 18386, 247364, 247365, 247366, 247367, 247368, 247369, 247370, 247371, 247372, 247373, 247374, 247375} },
{"Brightspark Gloves", {6018387, 18387, 247376, 247377, 247378, 247379, 247380, 247381, 247382, 247383, 247384, 247385, 247386, 247387} },
{"Stoneshatter", {6018388, 18388, 247388, 247389, 247390, 247391, 247392, 247393, 247394, 247395, 247396, 247397, 247398, 247399} },
{"Cloak of the Cosmos", {6018389, 18389, 247400, 247401, 247402, 247403, 247404, 247405, 247406, 247407, 247408, 247409, 247410, 247411} },
{"Tanglemoss Leggings", {6018390, 18390, 247412, 247413, 247414, 247415, 247416, 247417, 247418, 247419, 247420, 247421, 247422, 247423} },
{"Eyestalk Cord", {6018391, 18391, 247424, 247425, 247426, 247427, 247428, 247429, 247430, 247431, 247432, 247433, 247434, 247435} },
{"Distracting Dagger", {6018392, 18392, 247436, 247437, 247438, 247439, 247440, 247441, 247442, 247443, 247444, 247445, 247446, 247447} },
{"Warpwood Binding", {6018393, 18393, 247448, 247449, 247450, 247451, 247452, 247453, 247454, 247455, 247456, 247457, 247458, 247459} },
{"Demon Howl Wristguards", {6018394, 18394, 247460, 247461, 247462, 247463, 247464, 247465, 247466, 247467, 247468, 247469, 247470, 247471} },
{"Emerald Flame Ring", {6018395, 18395, 247472, 247473, 247474, 247475, 247476, 247477, 247478, 247479, 247480, 247481, 247482, 247483} },
{"Mind Carver", {6018396, 18396, 247484, 247485, 247486, 247487, 247488, 247489, 247490, 247491, 247492, 247493, 247494, 247495} },
{"Elder Magus Pendant", {6018397, 18397, 247496, 247497, 247498, 247499, 247500, 247501, 247502, 247503, 247504, 247505, 247506, 247507} },
{"Tidal Loop", {6018398, 18398, 247508, 247509, 247510, 247511, 247512, 247513, 247514, 247515, 247516, 247517, 247518, 247519} },
{"Ocean's Breeze", {6018399, 18399, 247520, 247521, 247522, 247523, 247524, 247525, 247526, 247527, 247528, 247529, 247530, 247531} },
{"Ring of Living Stone", {247533, 18400, 247532, 247534, 247535, 247536, 247537, 247538, 247539, 247540, 247541, 247542, 247543, 247544} },
{"Glowing Crystal Ring", {247546, 18402, 247545, 247547, 247548, 247549, 247550, 247551, 247552, 247553, 247554, 247555, 247556, 247557} },
{"Dragonslayer's Signet", {6018403, 18403, 102379, 218403, 1003608, 1011035, 1017702, 1024315, 1030879, 1037442, 1044005, 1050568, 1057131, 1063694} },
{"Onyxia Tooth Pendant", {6018404, 18404, 123165, 218404, 1003609, 1011036, 1017703, 1024316, 1030880, 1037443, 1044006, 1050569, 1057132, 1063695} },
{"Belt of the Archmage", {6018405, 18405, 247558, 247559, 247560, 247561, 247562, 247563, 247564, 247565, 247566, 247567, 247568, 247569} },
{"Onyxia Blood Talisman", {6018406, 18406, 123164, 218406, 1003610, 1011037, 1017704, 1024317, 1030881, 1037444, 1044007, 1050570, 1057133, 1063696} },
{"Felcloth Gloves", {6018407, 18407, 247570, 247571, 247572, 247573, 247574, 247575, 247576, 247577, 247578, 247579, 247580, 247581} },
{"Inferno Gloves", {6018408, 18408, 247582, 247583, 247584, 247585, 247586, 247587, 247588, 247589, 247590, 247591, 247592, 247593} },
{"Mooncloth Gloves", {6018409, 18409, 247594, 247595, 247596, 247597, 247598, 247599, 247600, 247601, 247602, 247603, 247604, 247605} },
{"Sprinter's Sword", {247607, 18410, 247606, 247608, 247609, 247610, 247611, 247612, 247613, 247614, 247615, 247616, 247617, 247618} },
{"Spry Boots", {247620, 18411, 247619, 247621, 247622, 247623, 247624, 247625, 247626, 247627, 247628, 247629, 247630, 247631} },
{"Cloak of Warding", {6018413, 18413, 247632, 247633, 247634, 247635, 247636, 247637, 247638, 247639, 247640, 247641, 247642, 247643} },
{"Bonecrusher", {6018420, 18420, 247644, 247645, 247646, 247647, 247648, 247649, 247650, 247651, 247652, 247653, 247654, 247655} },
{"Backwood Helm", {6018421, 18421, 247656, 247657, 247658, 247659, 247660, 247661, 247662, 247663, 247664, 247665, 247666, 247667} },
{"Sedge Boots", {6018424, 18424, 247668, 247669, 247670, 247671, 247672, 247673, 247674, 247675, 247676, 247677, 247678, 247679} },
{"Kreeg's Mug", {247681, 18425, 247680, 247682, 247683, 247684, 247685, 247686, 247687, 247688, 247689, 247690, 247691, 247692} },
{"Robe of Combustion", {247911, 18450, 247910, 247912, 247913, 247914, 247915, 247916, 247917, 247918, 247919, 247920, 247921, 247922} },
{"Hyena Hide Belt", {247924, 18451, 247923, 247925, 247926, 247927, 247928, 247929, 247930, 247931, 247932, 247933, 247934, 247935} },
{"Modest Armguards", {248009, 18458, 248008, 248010, 248011, 248012, 248013, 248014, 248015, 248016, 248017, 248018, 248019, 248020} },
{"Gallant's Wristguards", {248022, 18459, 248021, 248023, 248024, 248025, 248026, 248027, 248028, 248029, 248030, 248031, 248032, 248033} },
{"Unsophisticated Hand Cannon", {248035, 18460, 248034, 248036, 248037, 248038, 248039, 248040, 248041, 248042, 248043, 248044, 248045, 248046} },
{"Jagged Bone Fist", {248060, 18462, 248059, 248061, 248062, 248063, 248064, 248065, 248066, 248067, 248068, 248069, 248070, 248071} },
{"Ogre Pocket Knife", {248073, 18463, 248072, 248074, 248075, 248076, 248077, 248078, 248079, 248080, 248081, 248082, 248083, 248084} },
{"Gordok Nose Ring", {248086, 18464, 248085, 248087, 248088, 248089, 248090, 248091, 248092, 248093, 248094, 248095, 248096, 248097} },
{"Royal Seal of Eldre'Thalas", {6018465, 18465, 248098, 248099, 248100, 248101, 248102, 248103, 248104, 248105, 248106, 248107, 248108, 248109} },
{"Royal Seal of Eldre'Thalas", {6018466, 18466, 248110, 248111, 248112, 248113, 248114, 248115, 248116, 248117, 248118, 248119, 248120, 248121} },
{"Royal Seal of Eldre'Thalas", {6018467, 18467, 248122, 248123, 248124, 248125, 248126, 248127, 248128, 248129, 248130, 248131, 248132, 248133} },
{"Royal Seal of Eldre'Thalas", {6018468, 18468, 248134, 248135, 248136, 248137, 248138, 248139, 248140, 248141, 248142, 248143, 248144, 248145} },
{"Royal Seal of Eldre'Thalas", {6018469, 18469, 248146, 248147, 248148, 248149, 248150, 248151, 248152, 248153, 248154, 248155, 248156, 248157} },
{"Royal Seal of Eldre'Thalas", {6018470, 18470, 248158, 248159, 248160, 248161, 248162, 248163, 248164, 248165, 248166, 248167, 248168, 248169} },
{"Royal Seal of Eldre'Thalas", {6018471, 18471, 248170, 248171, 248172, 248173, 248174, 248175, 248176, 248177, 248178, 248179, 248180, 248181} },
{"Royal Seal of Eldre'Thalas", {6018472, 18472, 248182, 248183, 248184, 248185, 248186, 248187, 248188, 248189, 248190, 248191, 248192, 248193} },
{"Royal Seal of Eldre'Thalas", {6018473, 18473, 248194, 248195, 248196, 248197, 248198, 248199, 248200, 248201, 248202, 248203, 248204, 248205} },
{"Oddly Magical Belt", {248207, 18475, 248206, 248208, 248209, 248210, 248211, 248212, 248213, 248214, 248215, 248216, 248217, 248218} },
{"Mud Stained Boots", {248220, 18476, 248219, 248221, 248222, 248223, 248224, 248225, 248226, 248227, 248228, 248229, 248230, 248231} },
{"Shaggy Leggings", {248233, 18477, 248232, 248234, 248235, 248236, 248237, 248238, 248239, 248240, 248241, 248242, 248243, 248244} },
{"Hyena Hide Jerkin", {248246, 18478, 248245, 248247, 248248, 248249, 248250, 248251, 248252, 248253, 248254, 248255, 248256, 248257} },
{"Carrion Scorpid Helm", {248259, 18479, 248258, 248260, 248261, 248262, 248263, 248264, 248265, 248266, 248267, 248268, 248269, 248270} },
{"Scarab Plate Helm", {248272, 18480, 248271, 248273, 248274, 248275, 248276, 248277, 248278, 248279, 248280, 248281, 248282, 248283} },
{"Skullcracking Mace", {248285, 18481, 248284, 248286, 248287, 248288, 248289, 248290, 248291, 248292, 248293, 248294, 248295, 248296} },
{"Ogre Toothpick Shooter", {248298, 18482, 248297, 248299, 248300, 248301, 248302, 248303, 248304, 248305, 248306, 248307, 248308, 248309} },
{"Mana Channeling Wand", {6018483, 18483, 248310, 248311, 248312, 248313, 248314, 248315, 248316, 248317, 248318, 248319, 248320, 248321} },
{"Cho'Rush's Blade", {6018484, 18484, 248322, 248323, 248324, 248325, 248326, 248327, 248328, 248329, 248330, 248331, 248332, 248333} },
{"Observer's Shield", {6018485, 18485, 248334, 248335, 248336, 248337, 248338, 248339, 248340, 248341, 248342, 248343, 248344, 248345} },
{"Mooncloth Robe", {6018486, 18486, 248346, 248347, 248348, 248349, 248350, 248351, 248352, 248353, 248354, 248355, 248356, 248357} },
{"Insightful Hood", {6018490, 18490, 248358, 248359, 248360, 248361, 248362, 248363, 248364, 248365, 248366, 248367, 248368, 248369} },
{"Lorespinner", {6018491, 18491, 248370, 248371, 248372, 248373, 248374, 248375, 248376, 248377, 248378, 248379, 248380, 248381} },
{"Bulky Iron Spaulders", {6018493, 18493, 248382, 248383, 248384, 248385, 248386, 248387, 248388, 248389, 248390, 248391, 248392, 248393} },
{"Denwatcher's Shoulders", {6018494, 18494, 248394, 248395, 248396, 248397, 248398, 248399, 248400, 248401, 248402, 248403, 248404, 248405} },
{"Redoubt Cloak", {6018495, 18495, 248406, 248407, 248408, 248409, 248410, 248411, 248412, 248413, 248414, 248415, 248416, 248417} },
{"Heliotrope Cloak", {6018496, 18496, 248418, 248419, 248420, 248421, 248422, 248423, 248424, 248425, 248426, 248427, 248428, 248429} },
{"Sublime Wristguards", {6018497, 18497, 248430, 248431, 248432, 248433, 248434, 248435, 248436, 248437, 248438, 248439, 248440, 248441} },
{"Hedgecutter", {6018498, 18498, 248442, 248443, 248444, 248445, 248446, 248447, 248448, 248449, 248450, 248451, 248452, 248453} },
{"Barrier Shield", {6018499, 18499, 248454, 248455, 248456, 248457, 248458, 248459, 248460, 248461, 248462, 248463, 248464, 248465} },
{"Tarnished Elven Ring", {6018500, 18500, 248466, 248467, 248468, 248469, 248470, 248471, 248472, 248473, 248474, 248475, 248476, 248477} },
{"Monstrous Glaive", {6018502, 18502, 248478, 248479, 248480, 248481, 248482, 248483, 248484, 248485, 248486, 248487, 248488, 248489} },
{"Kromcrush's Chestplate", {6018503, 18503, 248490, 248491, 248492, 248493, 248494, 248495, 248496, 248497, 248498, 248499, 248500, 248501} },
{"Girdle of Insight", {6018504, 18504, 248502, 248503, 248504, 248505, 248506, 248507, 248508, 248509, 248510, 248511, 248512, 248513} },
{"Mugger's Belt", {6018505, 18505, 248514, 248515, 248516, 248517, 248518, 248519, 248520, 248521, 248522, 248523, 248524, 248525} },
{"Mongoose Boots", {6018506, 18506, 248526, 248527, 248528, 248529, 248530, 248531, 248532, 248533, 248534, 248535, 248536, 248537} },
{"Boots of the Full Moon", {6018507, 18507, 248538, 248539, 248540, 248541, 248542, 248543, 248544, 248545, 248546, 248547, 248548, 248549} },
{"Swift Flight Bracers", {6018508, 18508, 248550, 248551, 248552, 248553, 248554, 248555, 248556, 248557, 248558, 248559, 248560, 248561} },
{"Chromatic Cloak", {6018509, 18509, 248562, 248563, 248564, 248565, 248566, 248567, 248568, 248569, 248570, 248571, 248572, 248573} },
{"Hide of the Wild", {6018510, 18510, 248574, 248575, 248576, 248577, 248578, 248579, 248580, 248581, 248582, 248583, 248584, 248585} },
{"Shifting Cloak", {6018511, 18511, 248586, 248587, 248588, 248589, 248590, 248591, 248592, 248593, 248594, 248595, 248596, 248597} },
{"Barbarous Blade", {6018520, 18520, 248598, 248599, 248600, 248601, 248602, 248603, 248604, 248605, 248606, 248607, 248608, 248609} },
{"Grimy Metal Boots", {6018521, 18521, 248610, 248611, 248612, 248613, 248614, 248615, 248616, 248617, 248618, 248619, 248620, 248621} },
{"Band of the Ogre King", {6018522, 18522, 248622, 248623, 248624, 248625, 248626, 248627, 248628, 248629, 248630, 248631, 248632, 248633} },
{"Brightly Glowing Stone", {6018523, 18523, 248634, 248635, 248636, 248637, 248638, 248639, 248640, 248641, 248642, 248643, 248644, 248645} },
{"Leggings of Destruction", {6018524, 18524, 248646, 248647, 248648, 248649, 248650, 248651, 248652, 248653, 248654, 248655, 248656, 248657} },
{"Bracers of Prosperity", {6018525, 18525, 248658, 248659, 248660, 248661, 248662, 248663, 248664, 248665, 248666, 248667, 248668, 248669} },
{"Crown of the Ogre King", {6018526, 18526, 248670, 248671, 248672, 248673, 248674, 248675, 248676, 248677, 248678, 248679, 248680, 248681} },
{"Harmonious Gauntlets", {6018527, 18527, 248682, 248683, 248684, 248685, 248686, 248687, 248688, 248689, 248690, 248691, 248692, 248693} },
{"Cyclone Spaulders", {6018528, 18528, 248694, 248695, 248696, 248697, 248698, 248699, 248700, 248701, 248702, 248703, 248704, 248705} },
{"Elemental Plate Girdle", {6018529, 18529, 248706, 248707, 248708, 248709, 248710, 248711, 248712, 248713, 248714, 248715, 248716, 248717} },
{"Ogre Forged Hauberk", {6018530, 18530, 248718, 248719, 248720, 248721, 248722, 248723, 248724, 248725, 248726, 248727, 248728, 248729} },
{"Unyielding Maul", {6018531, 18531, 248730, 248731, 248732, 248733, 248734, 248735, 248736, 248737, 248738, 248739, 248740, 248741} },
{"Mindsurge Robe", {6018532, 18532, 248742, 248743, 248744, 248745, 248746, 248747, 248748, 248749, 248750, 248751, 248752, 248753} },
{"Gordok Bracers of Power", {6018533, 18533, 248754, 248755, 248756, 248757, 248758, 248759, 248760, 248761, 248762, 248763, 248764, 248765} },
{"Rod of the Ogre Magi", {6018534, 18534, 248766, 248767, 248768, 248769, 248770, 248771, 248772, 248773, 248774, 248775, 248776, 248777} },
{"Milli's Shield", {6018535, 18535, 248778, 248779, 248780, 248781, 248782, 248783, 248784, 248785, 248786, 248787, 248788, 248789} },
{"Milli's Lexicon", {6018536, 18536, 248790, 248791, 248792, 248793, 248794, 248795, 248796, 248797, 248798, 248799, 248800, 248801} },
{"Counterattack Lodestone", {6018537, 18537, 248802, 248803, 248804, 248805, 248806, 248807, 248808, 248809, 248810, 248811, 248812, 248813} },
{"Treant's Bane", {6018538, 18538, 248814, 248815, 248816, 248817, 248818, 248819, 248820, 248821, 248822, 248823, 248824, 248825} },
{"Puissant Cape", {1018541, 18541, 248826, 248827, 248828, 248829, 248830, 248831, 248832, 248833, 248834, 248835, 248836, 248837} },
{"Typhoon", {1018542, 18542, 248838, 248839, 248840, 248841, 248842, 248843, 248844, 248845, 248846, 248847, 248848, 248849} },
{"Ring of Entropy", {1018543, 18543, 248850, 248851, 248852, 248853, 248854, 248855, 248856, 248857, 248858, 248859, 248860, 248861} },
{"Doomhide Gauntlets", {1018544, 18544, 248862, 248863, 248864, 248865, 248866, 248867, 248868, 248869, 248870, 248871, 248872, 248873} },
{"Leggings of Arcane Supremacy", {1018545, 18545, 248874, 248875, 248876, 248877, 248878, 248879, 248880, 248881, 248882, 248883, 248884, 248885} },
{"Infernal Headcage", {1018546, 18546, 248886, 248887, 248888, 248889, 248890, 248891, 248892, 248893, 248894, 248895, 248896, 248897} },
{"Unmelting Ice Girdle", {1018547, 18547, 248898, 248899, 248900, 248901, 248902, 248903, 248904, 248905, 248906, 248907, 248908, 248909} },
{"The Twin Blades of Azzinoth", {248911, 18582, 248910, 248912, 248913, 248914, 248915, 248916, 248917, 248918, 248919, 248920, 248921, 248922} },
{"Warglaive of Azzinoth (Right)", {248924, 18583, 248923, 248925, 248926, 248927, 248928, 248929, 248930, 248931, 248932, 248933, 248934, 248935} },
{"Warglaive of Azzinoth (Left)", {248937, 18584, 248936, 248938, 248939, 248940, 248941, 248942, 248943, 248944, 248945, 248946, 248947, 248948} },
{"Tome of Sacrifice", {6018602, 18602, 248975, 248976, 248977, 248978, 248979, 248980, 248981, 248982, 248983, 248984, 248985, 248986} },
{"Benediction", {6018608, 18608, 318608, 218608, 1003613, 1011040, 1017707, 1024320, 1030884, 1037447, 1044010, 1050573, 1057136, 1063699} },
{"Anathema", {6018609, 18609, 318609, 218609, 1003614, 1011041, 1017708, 1024321, 1030885, 1037448, 1044011, 1050574, 1057137, 1063700} },
{"Gyrofreeze Ice Reflector", {6018634, 18634, 248987, 248988, 248989, 248990, 248991, 248992, 248993, 248994, 248995, 248996, 248997, 248998} },
{"Hyper-Radiant Flame Reflector", {6018638, 18638, 249012, 249013, 249014, 249015, 249016, 249017, 249018, 249019, 249020, 249021, 249022, 249023} },
{"Ultra-Flash Shadow Reflector", {6018639, 18639, 249024, 249025, 249026, 249027, 249028, 249029, 249030, 249031, 249032, 249033, 249034, 249035} },
{"The Eye of Divinity", {6018646, 18646, 130334, 218646, 1003615, 1011042, 1017709, 1024322, 1030886, 1037449, 1044012, 1050575, 1057138, 1063701} },
{"The Eye of Shadow", {6018665, 18665, 249036, 249037, 249038, 249039, 249040, 249041, 249042, 249043, 249044, 249045, 249046, 249047} },
{"Baron Charr's Sceptre", {6018671, 18671, 249048, 249049, 249050, 249051, 249052, 249053, 249054, 249055, 249056, 249057, 249058, 249059} },
{"Elemental Ember", {249061, 18672, 249060, 249062, 249063, 249064, 249065, 249066, 249067, 249068, 249069, 249070, 249071, 249072} },
{"Avalanchion's Stony Hide", {6018673, 18673, 249073, 249074, 249075, 249076, 249077, 249078, 249079, 249080, 249081, 249082, 249083, 249084} },
{"Hardened Stone Band", {249086, 18674, 249085, 249087, 249088, 249089, 249090, 249091, 249092, 249093, 249094, 249095, 249096, 249097} },
{"Sash of the Windreaver", {6018676, 18676, 249098, 249099, 249100, 249101, 249102, 249103, 249104, 249105, 249106, 249107, 249108, 249109} },
{"Zephyr Cloak", {249111, 18677, 249110, 249112, 249113, 249114, 249115, 249116, 249117, 249118, 249119, 249120, 249121, 249122} },
{"Tempestria's Frozen Necklace", {6018678, 18678, 249123, 249124, 249125, 249126, 249127, 249128, 249129, 249130, 249131, 249132, 249133, 249134} },
{"Frigid Ring", {249136, 18679, 249135, 249137, 249138, 249139, 249140, 249141, 249142, 249143, 249144, 249145, 249146, 249147} },
{"Ancient Bone Bow", {6018680, 18680, 249148, 249149, 249150, 249151, 249152, 249153, 249154, 249155, 249156, 249157, 249158, 249159} },
{"Burial Shawl", {6018681, 18681, 249160, 249161, 249162, 249163, 249164, 249165, 249166, 249167, 249168, 249169, 249170, 249171} },
{"Ghoul Skin Leggings", {6018682, 18682, 249172, 249173, 249174, 249175, 249176, 249177, 249178, 249179, 249180, 249181, 249182, 249183} },
{"Hammer of the Vesper", {6018683, 18683, 249184, 249185, 249186, 249187, 249188, 249189, 249190, 249191, 249192, 249193, 249194, 249195} },
{"Dimly Opalescent Ring", {6018684, 18684, 249196, 249197, 249198, 249199, 249200, 249201, 249202, 249203, 249204, 249205, 249206, 249207} },
{"Bone Golem Shoulders", {6018686, 18686, 249208, 249209, 249210, 249211, 249212, 249213, 249214, 249215, 249216, 249217, 249218, 249219} },
{"Phantasmal Cloak", {6018689, 18689, 249220, 249221, 249222, 249223, 249224, 249225, 249226, 249227, 249228, 249229, 249230, 249231} },
{"Wraithplate Leggings", {6018690, 18690, 249232, 249233, 249234, 249235, 249236, 249237, 249238, 249239, 249240, 249241, 249242, 249243} },
{"Dark Advisor's Pendant", {6018691, 18691, 249244, 249245, 249246, 249247, 249248, 249249, 249250, 249251, 249252, 249253, 249254, 249255} },
{"Death Knight Sabatons", {6018692, 18692, 249256, 249257, 249258, 249259, 249260, 249261, 249262, 249263, 249264, 249265, 249266, 249267} },
{"Shivery Handwraps", {6018693, 18693, 249268, 249269, 249270, 249271, 249272, 249273, 249274, 249275, 249276, 249277, 249278, 249279} },
{"Shadowy Mail Greaves", {6018694, 18694, 249280, 249281, 249282, 249283, 249284, 249285, 249286, 249287, 249288, 249289, 249290, 249291} },
{"Spellbound Tome", {6018695, 18695, 249292, 249293, 249294, 249295, 249296, 249297, 249298, 249299, 249300, 249301, 249302, 249303} },
{"Intricately Runed Shield", {6018696, 18696, 249304, 249305, 249306, 249307, 249308, 249309, 249310, 249311, 249312, 249313, 249314, 249315} },
{"Coldstone Slippers", {6018697, 18697, 249316, 249317, 249318, 249319, 249320, 249321, 249322, 249323, 249324, 249325, 249326, 249327} },
{"Tattered Leather Hood", {6018698, 18698, 249328, 249329, 249330, 249331, 249332, 249333, 249334, 249335, 249336, 249337, 249338, 249339} },
{"Icy Tomb Spaulders", {6018699, 18699, 249340, 249341, 249342, 249343, 249344, 249345, 249346, 249347, 249348, 249349, 249350, 249351} },
{"Malefic Bracers", {6018700, 18700, 249352, 249353, 249354, 249355, 249356, 249357, 249358, 249359, 249360, 249361, 249362, 249363} },
{"Innervating Band", {6018701, 18701, 249364, 249365, 249366, 249367, 249368, 249369, 249370, 249371, 249372, 249373, 249374, 249375} },
{"Belt of the Ordained", {6018702, 18702, 249376, 249377, 249378, 249379, 249380, 249381, 249382, 249383, 249384, 249385, 249386, 249387} },
{"Arena Wristguards", {6018709, 18709, 249401, 249402, 249403, 249404, 249405, 249406, 249407, 249408, 249409, 249410, 249411, 249412} },
{"Arena Bracers", {6018710, 18710, 249413, 249414, 249415, 249416, 249417, 249418, 249419, 249420, 249421, 249422, 249423, 249424} },
{"Arena Bands", {6018711, 18711, 249425, 249426, 249427, 249428, 249429, 249430, 249431, 249432, 249433, 249434, 249435, 249436} },
{"Arena Vambraces", {6018712, 18712, 249437, 249438, 249439, 249440, 249441, 249442, 249443, 249444, 249445, 249446, 249447, 249448} },
{"Rhok'delar, Longbow of the Ancient Keepers", {6018713, 18713, 318713, 218713, 1003617, 1011044, 1017711, 1024324, 1030888, 1037451, 1044014, 1050577, 1057140, 1063703} },
{"Lok'delar, Stave of the Ancient Keepers", {6018715, 18715, 318715, 218715, 1003618, 1011046, 1017712, 1024325, 1030889, 1037452, 1044015, 1050578, 1057141, 1063704} },
{"Ash Covered Boots", {6018716, 18716, 249449, 249450, 249451, 249452, 249453, 249454, 249455, 249456, 249457, 249458, 249459, 249460} },
{"Hammer of the Grand Crusader", {6018717, 18717, 249461, 249462, 249463, 249485, 249486, 249487, 249497, 249502, 249503, 249504, 249505, 249506} },
{"Grand Crusader's Helm", {6018718, 18718, 249507, 249508, 249509, 249510, 249511, 249512, 249513, 249514, 249515, 249516, 249517, 249518} },
{"Shroud of the Nathrezim", {6018720, 18720, 249519, 249520, 249521, 249522, 249523, 249524, 249525, 249526, 249527, 249528, 249529, 249530} },
{"Barrage Girdle", {6018721, 18721, 249531, 249532, 249533, 249534, 249535, 249536, 249537, 249538, 249539, 249540, 249541, 249542} },
{"Death Grips", {6018722, 18722, 249543, 249544, 249545, 249546, 249547, 249548, 249549, 249550, 249551, 249552, 249553, 249554} },
{"Animated Chain Necklace", {6018723, 18723, 249555, 249556, 249557, 249558, 249559, 249560, 249561, 249562, 249563, 249564, 249565, 249566} },
{"Peacemaker", {6018725, 18725, 249567, 249568, 249569, 249570, 249571, 249572, 249573, 249574, 249575, 249576, 249577, 249578} },
{"Magistrate's Cuffs", {6018726, 18726, 249579, 249580, 249581, 249582, 249583, 249584, 249585, 249586, 249587, 249588, 249589, 249590} },
{"Crimson Felt Hat", {6018727, 18727, 249591, 249592, 249593, 249594, 249595, 249596, 249597, 249598, 249599, 249600, 249601, 249602} },
{"Anastari Heirloom", {6018728, 18728, 249603, 249604, 249605, 249606, 249607, 249608, 249609, 249610, 249611, 249612, 249613, 249614} },
{"Screeching Bow", {6018729, 18729, 249615, 249616, 249617, 249618, 249619, 249620, 249621, 249622, 249623, 249624, 249625, 249626} },
{"Shadowy Laced Handwraps", {6018730, 18730, 249627, 249628, 249629, 249630, 249631, 249632, 249633, 249634, 249635, 249636, 249637, 249638} },
{"Pale Moon Cloak", {6018734, 18734, 249639, 249640, 249641, 249642, 249643, 249644, 249645, 249646, 249647, 249648, 249649, 249650} },
{"Maleki's Footwraps", {6018735, 18735, 249651, 249652, 249653, 249654, 249655, 249656, 249657, 249658, 249659, 249660, 249661, 249662} },
{"Plaguehound Leggings", {6018736, 18736, 249663, 249664, 249665, 249666, 249667, 249668, 249669, 249670, 249671, 249672, 249673, 249674} },
{"Bone Slicing Hatchet", {6018737, 18737, 249675, 249676, 249677, 249678, 249679, 249680, 249681, 249682, 249683, 249684, 249685, 249686} },
{"Carapace Spine Crossbow", {6018738, 18738, 249687, 249688, 249689, 249690, 249691, 249692, 249693, 249694, 249695, 249696, 249697, 249698} },
{"Chitinous Plate Legguards", {6018739, 18739, 249699, 249700, 249701, 249702, 249703, 249704, 249705, 249706, 249707, 249708, 249709, 249710} },
{"Thuzadin Sash", {6018740, 18740, 249711, 249712, 249713, 249714, 249715, 249716, 249717, 249718, 249719, 249720, 249721, 249722} },
{"Morlune's Bracer", {6018741, 18741, 249723, 249724, 249725, 249726, 249727, 249728, 249729, 249730, 249731, 249732, 249733, 249734} },
{"Stratholme Militia Shoulderguard", {6018742, 18742, 249735, 249736, 249737, 249738, 249739, 249740, 249741, 249742, 249743, 249744, 249745, 249746} },
{"Gracious Cape", {6018743, 18743, 249747, 249748, 249749, 249750, 249751, 249752, 249753, 249754, 249755, 249756, 249757, 249758} },
{"Plaguebat Fur Gloves", {6018744, 18744, 249759, 249760, 249761, 249762, 249763, 249764, 249765, 249766, 249767, 249768, 249769, 249770} },
{"Sacred Cloth Leggings", {6018745, 18745, 249771, 249772, 249773, 249774, 249775, 249776, 249777, 249778, 249779, 249780, 249781, 249782} },
{"Fel Hardened Bracers", {6018754, 18754, 249783, 249784, 249785, 249786, 249787, 249788, 249789, 249790, 249791, 249792, 249793, 249794} },
{"Xorothian Firestick", {6018755, 18755, 249795, 249796, 249797, 249798, 249799, 249800, 249801, 249802, 249803, 249804, 249805, 249806} },
{"Dreadguard's Protector", {6018756, 18756, 249807, 249808, 249809, 249810, 249811, 249812, 249813, 249814, 249815, 249816, 249817, 249818} },
{"Diabolic Mantle", {6018757, 18757, 249819, 249820, 249821, 249822, 249823, 249824, 249825, 249826, 249827, 249828, 249829, 249830} },
{"Specter's Blade", {6018758, 18758, 249831, 249832, 249833, 249834, 249835, 249836, 249837, 249838, 249839, 249840, 249841, 249842} },
{"Malicious Axe", {6018759, 18759, 249843, 249844, 249845, 249846, 249847, 249848, 249849, 249850, 249851, 249852, 249853, 249854} },
{"Necromantic Band", {6018760, 18760, 249855, 249856, 249857, 249858, 249859, 249860, 249861, 249862, 249863, 249864, 249865, 249866} },
{"Oblivion's Touch", {6018761, 18761, 249867, 249868, 249869, 249870, 249871, 249872, 249873, 249874, 249875, 249876, 249877, 249878} },
{"Shard of the Green Flame", {6018762, 18762, 249879, 249880, 249881, 249882, 249883, 249884, 249885, 249886, 249887, 249888, 249889, 249890} },
{"Finkle's Lava Dredger", {6018803, 18803, 318803, 218803, 1003619, 1011047, 1017713, 1024326, 1030890, 1037453, 1044016, 1050579, 1057142, 1063705} },
{"Core Hound Tooth", {6018805, 18805, 318805, 218805, 1003620, 1011048, 1017714, 1024327, 1030891, 1037454, 1044017, 1050580, 1057143, 1063706} },
{"Core Forged Greaves", {6018806, 18806, 318806, 218806, 1003621, 1011049, 1017715, 1024328, 1030892, 1037455, 1044018, 1050581, 1057144, 1063707} },
{"Helm of Latent Power", {6018807, 18807, 249891, 249892, 249893, 249894, 249895, 249896, 249897, 249898, 249899, 249900, 249901, 249902} },
{"Gloves of the Hypnotic Flame", {6018808, 18808, 318808, 218808, 1003622, 1011050, 1017716, 1024329, 1030893, 1037456, 1044019, 1050582, 1057145, 1063708} },
{"Sash of Whispered Secrets", {6018809, 18809, 318809, 218809, 1003623, 1011051, 1017717, 1024330, 1030894, 1037457, 1044020, 1050583, 1057146, 1063709} },
{"Wild Growth Spaulders", {6018810, 18810, 318810, 218810, 1003624, 1011052, 1017718, 1024331, 1030895, 1037458, 1044021, 1050584, 1057147, 1063710} },
{"Fireproof Cloak", {6018811, 18811, 318811, 218811, 1003625, 1011053, 1017719, 1024332, 1030896, 1037459, 1044022, 1050585, 1057148, 1063711} },
{"Wristguards of True Flight", {6018812, 18812, 318812, 218812, 1003626, 1011054, 1017720, 1024333, 1030897, 1037460, 1044023, 1050586, 1057149, 1063712} },
{"Ring of Binding", {6018813, 18813, 318813, 218813, 1003627, 1011055, 1017721, 1024334, 1030898, 1037461, 1044024, 1050587, 1057150, 1063713} },
{"Choker of the Fire Lord", {6018814, 18814, 318814, 218814, 1003628, 1011056, 1017722, 1024335, 1030899, 1037462, 1044025, 1050588, 1057151, 1063714} },
{"Essence of the Pure Flame", {6018815, 18815, 318815, 218815, 1003629, 1011057, 1017723, 1024336, 1030900, 1037463, 1044026, 1050589, 1057152, 1063715} },
{"Perdition's Blade", {6018816, 18816, 318816, 218816, 1003630, 1011058, 1017724, 1024337, 1030901, 1037464, 1044027, 1050590, 1057153, 1063716} },
{"Crown of Destruction", {6018817, 18817, 318817, 218817, 1003631, 1011059, 1017725, 1024338, 1030902, 1037465, 1044028, 1050591, 1057154, 1063717} },
{"Talisman of Ephemeral Power", {6018820, 18820, 318820, 218820, 1003632, 1011060, 1017726, 1024339, 1030903, 1037466, 1044029, 1050592, 1057155, 1063718} },
{"Quick Strike Ring", {6018821, 18821, 318821, 218821, 1003633, 1011061, 1017727, 1024340, 1030904, 1037467, 1044030, 1050593, 1057156, 1063719} },
{"Obsidian Edged Blade", {6018822, 18822, 318822, 218822, 1003634, 1011062, 1017728, 1024341, 1030905, 1037468, 1044031, 1050594, 1057157, 1063720} },
{"Aged Core Leather Gloves", {6018823, 18823, 318823, 218823, 1003635, 1011063, 1017729, 1024342, 1030906, 1037469, 1044032, 1050595, 1057158, 1063721} },
{"Magma Tempered Boots", {6018824, 18824, 318824, 218824, 1003636, 1011064, 1017730, 1024343, 1030907, 1037470, 1044033, 1050596, 1057159, 1063722} },
{"Deep Earth Spaulders", {6018829, 18829, 318829, 78743, 1002919, 1010534, 1017202, 1023815, 1030379, 1036942, 1043505, 1050068, 1056631, 1063194} },
{"Brutality Blade", {6018832, 18832, 318832, 218832, 1003638, 1011066, 1017732, 1024345, 1030909, 1037472, 1044035, 1050598, 1057161, 1063724} },
{"Staff of Dominance", {6018842, 18842, 318842, 218842, 1003639, 1011067, 1017733, 1024346, 1030910, 1037473, 1044036, 1050599, 1057162, 1063725} },
{"Flamewaker Legplates", {6018861, 18861, 318861, 218861, 1003640, 1011069, 1017734, 1024347, 1030911, 1037474, 1044037, 1050600, 1057163, 1063726} },
{"Helm of the Lifegiver", {6018870, 18870, 318870, 218870, 1003641, 1011070, 1017735, 1024348, 1030912, 1037475, 1044038, 1050601, 1057164, 1063727} },
{"Manastorm Leggings", {6018872, 18872, 318872, 218872, 1003642, 1011071, 1017736, 1024349, 1030913, 1037476, 1044039, 1050602, 1057165, 1063728} },
{"Salamander Scale Pants", {6018875, 18875, 318875, 218875, 1003643, 1011072, 1017737, 1024350, 1030914, 1037477, 1044040, 1050603, 1057166, 1063729} },
{"Sorcerous Dagger", {6018878, 18878, 318878, 218878, 1003644, 1011073, 1017738, 1024351, 1030915, 1037478, 1044041, 1050604, 1057167, 1063730} },
{"Heavy Dark Iron Ring", {6018879, 18879, 318879, 218879, 1003645, 1011074, 1017739, 1024352, 1030916, 1037479, 1044042, 1050605, 1057168, 1063731} },
{"TEST Ragnaros Hammer", {250437, 18881, 250436, 250438, 250439, 250440, 250441, 250442, 250443, 250444, 250445, 250446, 250447, 250448} },
{"Evonice's Landin' Pilla", {250463, 18951, 250462, 250464, 250465, 250466, 250467, 250468, 250469, 250470, 250471, 250472, 250473, 250474} },
{"Ring of Critical Testing 2", {6018970, 18970, 250488, 250489, 250490, 250491, 250492, 250493, 250494, 250495, 250496, 250497, 250498, 250499} },
{"Thunderfury, Blessed Blade of the Windseeker", {6019019, 19019, 130392, 219019, 1003649, 1011078, 1017743, 1024356, 1030920, 1037483, 1044046, 1050609, 1057172, 1063735} },
{"Arena Grand Master", {6019024, 19024, 250513, 250514, 250515, 250516, 250517, 250518, 250519, 250520, 250521, 250522, 250523, 250524} },
{"Zorbin's Water Resistant Hat", {250552, 19039, 250551, 250553, 250554, 250555, 250556, 250557, 250558, 250559, 250560, 250561, 250562, 250563} },
{"Zorbin's Mega-Slicer", {250565, 19040, 250564, 250566, 250567, 250568, 250569, 250570, 250571, 250572, 250573, 250574, 250575, 250576} },
{"Heavy Timbermaw Belt", {6019043, 19043, 250603, 250604, 250605, 250606, 250607, 250608, 250609, 250610, 250611, 250612, 250613, 250614} },
{"Might of the Timbermaw", {6019044, 19044, 250615, 250616, 250617, 250618, 250619, 250620, 250621, 250622, 250623, 250624, 250625, 250626} },
{"Wisdom of the Timbermaw", {6019047, 19047, 250627, 250628, 250629, 250630, 250631, 250632, 250633, 250634, 250635, 250636, 250637, 250638} },
{"Heavy Timbermaw Boots", {6019048, 19048, 250639, 250640, 250641, 250642, 250643, 250644, 250645, 250646, 250647, 250648, 250649, 250650} },
{"Timbermaw Brawlers", {6019049, 19049, 250651, 250652, 250653, 250654, 250655, 250656, 250657, 250658, 250659, 250660, 250661, 250662} },
{"Mantle of the Timbermaw", {6019050, 19050, 250663, 250664, 250665, 250666, 250667, 250668, 250669, 250670, 250671, 250672, 250673, 250674} },
{"Girdle of the Dawn", {6019051, 19051, 250675, 250676, 250677, 250678, 250679, 250680, 250681, 250682, 250683, 250684, 250685, 250686} },
{"Dawn Treaders", {6019052, 19052, 250687, 250688, 250689, 250690, 250691, 250692, 250693, 250694, 250695, 250696, 250697, 250698} },
{"Argent Boots", {6019056, 19056, 250699, 250700, 250701, 250702, 250703, 250704, 250705, 250706, 250707, 250708, 250709, 250710} },
{"Gloves of the Dawn", {6019057, 19057, 250711, 250712, 250713, 250714, 250715, 250716, 250717, 250718, 250719, 250720, 250721, 250722} },
{"Golden Mantle of the Dawn", {6019058, 19058, 250723, 250724, 250725, 250726, 250727, 250728, 250729, 250730, 250731, 250732, 250733, 250734} },
{"Argent Shoulders", {6019059, 19059, 250735, 250736, 250737, 250738, 250739, 250740, 250741, 250742, 250743, 250744, 250745, 250746} },
{"Emerald Circle", {6019065, 19065, 250747, 250748, 250749, 250750, 250751, 250752, 250753, 250754, 250755, 250756, 250757, 250758} },
{"Frost Runed Headdress", {6019105, 19105, 251023, 251024, 251025, 251026, 251027, 251028, 251029, 251030, 251031, 251032, 251033, 251034} },
{"Ice Barbed Spear", {6019106, 19106, 251035, 251036, 251037, 251038, 251039, 251040, 251041, 251042, 251043, 251044, 251045, 251046} },
{"Bloodseeker", {6019107, 19107, 251047, 251048, 251049, 251050, 251051, 251052, 251053, 251054, 251055, 251056, 251057, 251058} },
{"Wand of Biting Cold", {6019108, 19108, 251059, 251060, 251061, 251062, 251063, 251064, 251065, 251066, 251067, 251068, 251069, 251070} },
{"Deep Rooted Ring", {6019109, 19109, 251071, 251072, 251073, 251074, 251075, 251076, 251077, 251078, 251079, 251080, 251081, 251082} },
{"Cold Forged Blade", {6019110, 19110, 251083, 251084, 251085, 251086, 251087, 251088, 251089, 251090, 251091, 251092, 251093, 251094} },
{"Winteraxe Epaulets", {6019111, 19111, 251095, 251096, 251097, 251098, 251099, 251100, 251101, 251102, 251103, 251104, 251105, 251106} },
{"Frozen Steel Vambraces", {6019112, 19112, 251107, 251108, 251109, 251110, 251111, 251112, 251113, 251114, 251115, 251116, 251117, 251118} },
{"Yeti Hide Bracers", {6019113, 19113, 251119, 251120, 251121, 251122, 251123, 251124, 251125, 251126, 251127, 251128, 251129, 251130} },
{"Highland Bow", {251132, 19114, 251131, 251133, 251134, 251135, 251136, 251137, 251138, 251139, 251140, 251141, 251142, 251143} },
{"Flask of Forest Mojo", {251145, 19115, 251144, 251146, 251147, 251148, 251149, 251150, 251151, 251152, 251153, 251154, 251155, 251156} },
{"Greenleaf Handwraps", {251158, 19116, 251157, 251159, 251160, 251161, 251162, 251163, 251164, 251165, 251166, 251167, 251168, 251169} },
{"Laquered Wooden Plate Legguards", {251171, 19117, 251170, 251172, 251173, 251174, 251175, 251176, 251177, 251178, 251179, 251180, 251181, 251182} },
{"Nature's Breath", {251184, 19118, 251183, 251185, 251186, 251187, 251188, 251189, 251190, 251191, 251192, 251193, 251194, 251195} },
{"Owlbeast Hide Gloves", {251197, 19119, 251196, 251198, 251199, 251200, 251201, 251202, 251203, 251204, 251205, 251206, 251207, 251208} },
{"Rune of the Guard Captain", {251210, 19120, 251209, 251211, 251212, 251213, 251214, 251215, 251216, 251217, 251218, 251219, 251220, 251221} },
{"Deep Woodlands Cloak", {6019121, 19121, 251222, 251223, 251224, 251225, 251226, 251227, 251228, 251229, 251230, 251231, 251232, 251233} },
{"Everwarm Handwraps", {251235, 19123, 251234, 251236, 251237, 251238, 251239, 251240, 251241, 251242, 251243, 251244, 251245, 251246} },
{"Slagplate Leggings", {251248, 19124, 251247, 251249, 251250, 251251, 251252, 251253, 251254, 251255, 251256, 251257, 251258, 251259} },
{"Seared Mail Girdle", {251261, 19125, 251260, 251262, 251263, 251264, 251265, 251266, 251267, 251268, 251269, 251270, 251271, 251272} },
{"Slagplate Gauntlets", {251274, 19126, 251273, 251275, 251276, 251277, 251278, 251279, 251280, 251281, 251282, 251283, 251284, 251285} },
{"Charred Leather Tunic", {251287, 19127, 251286, 251288, 251289, 251290, 251291, 251292, 251293, 251294, 251295, 251296, 251297, 251298} },
{"Seared Mail Vest", {251300, 19128, 251299, 251301, 251302, 251303, 251304, 251305, 251306, 251307, 251308, 251309, 251310, 251311} },
{"Cold Snap", {1019130, 19130, 251325, 251326, 251327, 251328, 251329, 251330, 251331, 251332, 251333, 251334, 251335, 251336} },
{"Snowblind Shoes", {1019131, 19131, 251337, 251338, 251339, 251340, 251341, 251342, 251343, 251344, 251345, 251346, 251347, 251348} },
{"Crystal Adorned Crown", {1019132, 19132, 251349, 251350, 251351, 251352, 251353, 251354, 251355, 251356, 251357, 251358, 251359, 251360} },
{"Fel Infused Leggings", {1019133, 19133, 251361, 251362, 251363, 251364, 251365, 251366, 251367, 251368, 251369, 251370, 251371, 251372} },
{"Flayed Doomguard Belt", {1019134, 19134, 251373, 251374, 251375, 251376, 251377, 251378, 251379, 251380, 251381, 251382, 251383, 251384} },
{"Blacklight Bracer", {1019135, 19135, 251385, 251386, 251387, 251388, 251389, 251390, 251391, 251392, 251393, 251394, 251395, 251396} },
{"Mana Igniting Cord", {6019136, 19136, 319136, 219136, 1003650, 1011079, 1017744, 1024357, 1030921, 1037484, 1044047, 1050610, 1057173, 1063736} },
{"Onslaught Girdle", {6019137, 19137, 319137, 219137, 1003651, 1011080, 1017745, 1024358, 1030922, 1037485, 1044048, 1050611, 1057174, 1063737} },
{"Band of Sulfuras", {6019138, 19138, 319138, 219138, 1003652, 1011081, 1017746, 1024359, 1030923, 1037486, 1044049, 1050612, 1057175, 1063738} },
{"Fireguard Shoulders", {6019139, 19139, 319139, 219139, 1003653, 1011082, 1017747, 1024360, 1030924, 1037487, 1044050, 1050613, 1057176, 1063739} },
{"Cauterizing Band", {6019140, 19140, 319140, 219140, 1003654, 1011083, 1017748, 1024361, 1030925, 1037488, 1044051, 1050614, 1057177, 1063740} },
{"Luffa", {251398, 19141, 251397, 251399, 251400, 251401, 251402, 251403, 251404, 251405, 251406, 251407, 251408, 251409} },
{"Fire Runed Grimoire", {6019142, 19142, 319142, 219142, 1003655, 1011084, 1017749, 1024362, 1030926, 1037489, 1044052, 1050615, 1057178, 1063741} },
{"Flameguard Gauntlets", {6019143, 19143, 319143, 219143, 1003656, 1011085, 1017750, 1024363, 1030927, 1037490, 1044053, 1050616, 1057179, 1063742} },
{"Sabatons of the Flamewalker", {6019144, 19144, 319144, 219144, 1003657, 1011086, 1017751, 1024364, 1030928, 1037491, 1044054, 1050617, 1057180, 1063743} },
{"Robe of Volatile Power", {6019145, 19145, 319145, 219145, 1003658, 1011087, 1017752, 1024365, 1030929, 1037492, 1044055, 1050618, 1057181, 1063744} },
{"Wristguards of Stability", {6019146, 19146, 319146, 219146, 1003659, 1011088, 1017753, 1024366, 1030930, 1037493, 1044056, 1050619, 1057182, 1063745} },
{"Ring of Spell Power", {6019147, 19147, 319147, 219147, 1003660, 1011089, 1017754, 1024367, 1030931, 1037494, 1044057, 1050620, 1057183, 1063746} },
{"Dark Iron Helm", {6019148, 19148, 251410, 251411, 251412, 251413, 251414, 251415, 251416, 251417, 251418, 251419, 251420, 251421} },
{"Lava Belt", {6019149, 19149, 251422, 251423, 251424, 251425, 251426, 251427, 251428, 251429, 251430, 251431, 251432, 251433} },
{"Flarecore Robe", {6019156, 19156, 251434, 251435, 251436, 251437, 251438, 251439, 251440, 251441, 251442, 251443, 251444, 251445} },
{"Chromatic Gauntlets", {6019157, 19157, 251446, 251447, 251448, 251449, 251450, 251451, 251452, 251453, 251454, 251455, 251456, 251457} },
{"TEST Sulfuras, Hand of Ragnaros", {251459, 19158, 251458, 251460, 251461, 251462, 251463, 251464, 251465, 251466, 251467, 251468, 251469, 251470} },
{"Woven Ivy Necklace", {6019159, 19159, 251471, 251472, 251473, 251474, 251475, 251476, 251477, 251478, 251479, 251480, 251481, 251482} },
{"Corehound Belt", {6019162, 19162, 251483, 251484, 251485, 251486, 251487, 251488, 251489, 251490, 251491, 251492, 251493, 251494} },
{"Molten Belt", {6019163, 19163, 251495, 251496, 251497, 251498, 251499, 251500, 251501, 251502, 251503, 251504, 251505, 251506} },
{"Dark Iron Gauntlets", {6019164, 19164, 251507, 251508, 251509, 251510, 251511, 251512, 251513, 251514, 251515, 251516, 251517, 251518} },
{"Flarecore Leggings", {6019165, 19165, 251519, 251520, 251521, 251522, 251523, 251524, 251525, 251526, 251527, 251528, 251529, 251530} },
{"Black Amnesty", {6019166, 19166, 251531, 251532, 251533, 251534, 251535, 251536, 251537, 251538, 251539, 251540, 251541, 251542} },
{"Blackfury", {6019167, 19167, 251543, 251544, 251545, 251546, 251547, 251548, 251549, 251550, 251551, 251552, 251553, 251554} },
{"Blackguard", {6019168, 19168, 251555, 251556, 251557, 251558, 251559, 251560, 251561, 251562, 251563, 251564, 251565, 251566} },
{"Nightfall", {6019169, 19169, 251567, 251568, 251569, 251570, 251571, 251572, 251573, 251574, 251575, 251576, 251577, 251578} },
{"Ebon Hand", {6019170, 19170, 251579, 251580, 251581, 251582, 251583, 251584, 251585, 251586, 251587, 251588, 251589, 251590} },
{"Darkmoon Card: Heroism", {6019287, 19287, 251591, 251592, 251593, 251594, 251595, 251596, 251597, 251598, 251599, 251600, 251601, 251602} },
{"Darkmoon Card: Blue Dragon", {6019288, 19288, 251603, 251604, 251605, 251606, 251607, 251608, 251609, 251610, 251611, 251612, 251613, 251614} },
{"Darkmoon Card: Maelstrom", {6019289, 19289, 251615, 251616, 251617, 251618, 251619, 251620, 251621, 251622, 251623, 251624, 251625, 251626} },
{"Darkmoon Card: Twisting Nether", {6019290, 19290, 251627, 251628, 251629, 251630, 251631, 251632, 251633, 251634, 251635, 251636, 251637, 251638} },
{"Darkmoon Ring", {6019302, 19302, 251639, 251640, 251641, 251642, 251643, 251644, 251645, 251646, 251647, 251648, 251649, 251650} },
{"Darkmoon Necklace", {251652, 19303, 251651, 251653, 251654, 251655, 251656, 251657, 251658, 251659, 251660, 251661, 251662, 251663} },
{"The Untamed Blade", {6019334, 19334, 319334, 219334, 1003661, 1011090, 1017755, 1024368, 1030932, 1037495, 1044058, 1050621, 1057184, 1063747} },
{"Spineshatter", {6019335, 19335, 319335, 219335, 1003662, 1011091, 1017756, 1024369, 1030933, 1037496, 1044059, 1050622, 1057185, 1063748} },
{"Arcane Infused Gem", {6019336, 19336, 319336, 219336, 1003663, 1011092, 1017757, 1024370, 1030934, 1037497, 1044060, 1050623, 1057186, 1063749} },
{"The Black Book", {6019337, 19337, 319337, 219337, 1003664, 1011093, 1017758, 1024371, 1030935, 1037498, 1044061, 1050624, 1057187, 1063750} },
{"Mind Quickening Gem", {6019339, 19339, 319339, 219339, 1003665, 1011094, 1017759, 1024372, 1030936, 1037499, 1044062, 1050625, 1057188, 1063751} },
{"Rune of Metamorphosis", {6019340, 19340, 319340, 219340, 1003666, 1011095, 1017760, 1024373, 1030937, 1037500, 1044063, 1050626, 1057189, 1063752} },
{"Lifegiving Gem", {6019341, 19341, 319341, 219341, 1003667, 1011096, 1017761, 1024374, 1030938, 1037501, 1044064, 1050627, 1057190, 1063753} },
{"Venomous Totem", {6019342, 19342, 319342, 219342, 1003668, 1011097, 1017762, 1024375, 1030939, 1037502, 1044065, 1050628, 1057191, 1063754} },
{"Scrolls of Blinding Light", {6019343, 19343, 319343, 219343, 1003669, 1011098, 1017763, 1024376, 1030940, 1037503, 1044066, 1050629, 1057192, 1063755} },
{"Natural Alignment Crystal", {6019344, 19344, 319344, 219344, 1003670, 1011099, 1017764, 1024377, 1030941, 1037504, 1044067, 1050630, 1057193, 1063756} },
{"Aegis of Preservation", {6019345, 19345, 319345, 219345, 1003671, 1011100, 1017765, 1024378, 1030942, 1037505, 1044068, 1050631, 1057194, 1063757} },
{"Dragonfang Blade", {6019346, 19346, 319346, 219346, 1003672, 1011101, 1017766, 1024379, 1030943, 1037506, 1044069, 1050632, 1057195, 1063758} },
{"Claw of Chromaggus", {6019347, 19347, 319347, 219347, 1003673, 1011102, 1017767, 1024380, 1030944, 1037507, 1044070, 1050633, 1057196, 1063759} },
{"Red Dragonscale Protector", {6019348, 19348, 319348, 219348, 1003674, 1011103, 1017768, 1024381, 1030945, 1037508, 1044071, 1050634, 1057197, 1063760} },
{"Elementium Reinforced Bulwark", {6019349, 19349, 319349, 219349, 1003675, 1011104, 1017769, 1024382, 1030946, 1037509, 1044072, 1050635, 1057198, 1063761} },
{"Heartstriker", {6019350, 19350, 319350, 219350, 1003676, 1011105, 1017770, 1024383, 1030947, 1037510, 1044073, 1050636, 1057199, 1063762} },
{"Maladath, Runed Blade of the Black Flight", {6019351, 19351, 319351, 219351, 1003677, 1011106, 1017771, 1024384, 1030948, 1037511, 1044074, 1050637, 1057200, 1063763} },
{"Chromatically Tempered Sword", {6019352, 19352, 319352, 219352, 1003678, 1011107, 1017772, 1024385, 1030949, 1037512, 1044075, 1050638, 1057201, 1063764} },
{"Drake Talon Cleaver", {6019353, 19353, 319353, 219353, 1003679, 1011108, 1017773, 1024386, 1030950, 1037513, 1044076, 1050639, 1057202, 1063765} },
{"Draconic Avenger", {6019354, 19354, 319354, 219354, 1003680, 1011109, 1017774, 1024387, 1030951, 1037514, 1044077, 1050640, 1057203, 1063766} },
{"Shadow Wing Focus Staff", {6019355, 19355, 319355, 219355, 1003681, 1011110, 1017775, 1024388, 1030952, 1037515, 1044078, 1050641, 1057204, 1063767} },
{"Staff of the Shadow Flame", {6019356, 19356, 319356, 219356, 1003682, 1011111, 1017776, 1024389, 1030953, 1037516, 1044079, 1050642, 1057205, 1063768} },
{"Herald of Woe", {6019357, 19357, 319357, 219357, 1003683, 1011112, 1017777, 1024390, 1030954, 1037517, 1044080, 1050643, 1057206, 1063769} },
{"Draconic Maul", {6019358, 19358, 319358, 219358, 1003684, 1011113, 1017778, 1024391, 1030955, 1037518, 1044081, 1050644, 1057207, 1063770} },
{"Lok'amir il Romathis", {6019360, 19360, 319360, 219360, 1003685, 1011114, 1017779, 1024392, 1030956, 1037519, 1044082, 1050645, 1057208, 1063771} },
{"Ashjre'thul, Crossbow of Smiting", {6019361, 19361, 319361, 219361, 1003686, 1011115, 1017780, 1024393, 1030957, 1037520, 1044083, 1050646, 1057209, 1063772} },
{"Doom's Edge", {6019362, 19362, 319362, 219362, 1003687, 1011116, 1017781, 1024394, 1030958, 1037521, 1044084, 1050647, 1057210, 1063773} },
{"Crul'shorukh, Edge of Chaos", {6019363, 19363, 319363, 219363, 1003688, 1011117, 1017782, 1024395, 1030959, 1037522, 1044085, 1050648, 1057211, 1063774} },
{"Ashkandi, Greatsword of the Brotherhood", {6019364, 19364, 319364, 219364, 1003689, 1011118, 1017783, 1024396, 1030960, 1037523, 1044086, 1050649, 1057212, 1063775} },
{"Claw of the Black Drake", {6019365, 19365, 319365, 219365, 1003690, 1011119, 1017784, 1024397, 1030961, 1037524, 1044087, 1050650, 1057213, 1063776} },
{"Master Dragonslayer's Orb", {6019366, 19366, 122772, 219366, 1003691, 1011120, 1017785, 1024398, 1030962, 1037525, 1044088, 1050651, 1057214, 1063777} },
{"Dragon's Touch", {6019367, 19367, 319367, 219367, 1003692, 1011121, 1017786, 1024399, 1030963, 1037526, 1044089, 1050652, 1057215, 1063778} },
{"Dragonbreath Hand Cannon", {6019368, 19368, 319368, 219368, 1003693, 1011122, 1017787, 1024400, 1030964, 1037527, 1044090, 1050653, 1057216, 1063779} },
{"Gloves of Rapid Evolution", {6019369, 19369, 319369, 219369, 1003694, 1011123, 1017788, 1024401, 1030965, 1037528, 1044091, 1050654, 1057217, 1063780} },
{"Mantle of the Blackwing Cabal", {6019370, 19370, 319370, 219370, 1003695, 1011124, 1017789, 1024402, 1030966, 1037529, 1044092, 1050655, 1057218, 1063781} },
{"Pendant of the Fallen Dragon", {6019371, 19371, 319371, 219371, 1003696, 1011125, 1017790, 1024403, 1030967, 1037530, 1044093, 1050656, 1057219, 1063782} },
{"Helm of Endless Rage", {6019372, 19372, 319372, 219372, 1003697, 1011126, 1017791, 1024404, 1030968, 1037531, 1044094, 1050657, 1057220, 1063783} },
{"Black Brood Pauldrons", {6019373, 19373, 319373, 219373, 1003698, 1011127, 1017792, 1024405, 1030969, 1037532, 1044095, 1050658, 1057221, 1063784} },
{"Bracers of Arcane Accuracy", {6019374, 19374, 319374, 219374, 1003699, 1011128, 1017793, 1024406, 1030970, 1037533, 1044096, 1050659, 1057222, 1063785} },
{"Mish'undare, Circlet of the Mind Flayer", {6019375, 19375, 319375, 219375, 1003700, 1011129, 1017794, 1024407, 1030971, 1037534, 1044097, 1050660, 1057223, 1063786} },
{"Archimtiros' Ring of Reckoning", {6019376, 19376, 319376, 219376, 1003701, 1011130, 1017795, 1024408, 1030972, 1037535, 1044098, 1050661, 1057224, 1063787} },
{"Prestor's Talisman of Connivery", {6019377, 19377, 319377, 219377, 1003702, 1011131, 1017796, 1024409, 1030973, 1037536, 1044099, 1050662, 1057225, 1063788} },
{"Cloak of the Brood Lord", {6019378, 19378, 319378, 219378, 1003703, 1011132, 1017797, 1024410, 1030974, 1037537, 1044100, 1050663, 1057226, 1063789} },
{"Neltharion's Tear", {6019379, 19379, 319379, 219379, 1003704, 1011133, 1017798, 1024411, 1030975, 1037538, 1044101, 1050664, 1057227, 1063790} },
{"Therazane's Link", {6019380, 19380, 319380, 219380, 1003705, 1011134, 1017799, 1024412, 1030976, 1037539, 1044102, 1050665, 1057228, 1063791} },
{"Boots of the Shadow Flame", {6019381, 19381, 319381, 219381, 1003706, 1011135, 1017800, 1024413, 1030977, 1037540, 1044103, 1050666, 1057229, 1063792} },
{"Pure Elementium Band", {6019382, 19382, 319382, 219382, 1003707, 1011136, 1017801, 1024414, 1030978, 1037541, 1044104, 1050667, 1057230, 1063793} },
{"Master Dragonslayer's Medallion", {6019383, 19383, 122771, 219383, 1003708, 1011137, 1017802, 1024415, 1030979, 1037542, 1044105, 1050668, 1057231, 1063794} },
{"Master Dragonslayer's Ring", {6019384, 19384, 122773, 219384, 1003709, 1011138, 1017803, 1024416, 1030980, 1037543, 1044106, 1050669, 1057232, 1063795} },
{"Empowered Leggings", {6019385, 19385, 319385, 219385, 1003710, 1011139, 1017804, 1024417, 1030981, 1037544, 1044107, 1050670, 1057233, 1063796} },
{"Elementium Threaded Cloak", {6019386, 19386, 319386, 219386, 1003711, 1011140, 1017805, 1024418, 1030982, 1037545, 1044108, 1050671, 1057234, 1063797} },
{"Chromatic Boots", {6019387, 19387, 319387, 219387, 1003712, 1011141, 1017806, 1024419, 1030983, 1037546, 1044109, 1050672, 1057235, 1063798} },
{"Angelista's Grasp", {6019388, 19388, 319388, 219388, 1003713, 1011142, 1017807, 1024420, 1030984, 1037547, 1044110, 1050673, 1057236, 1063799} },
{"Taut Dragonhide Shoulderpads", {6019389, 19389, 319389, 219389, 1003714, 1011143, 1017808, 1024421, 1030985, 1037548, 1044111, 1050674, 1057237, 1063800} },
{"Taut Dragonhide Gloves", {6019390, 19390, 319390, 219390, 1003715, 1011144, 1017809, 1024422, 1030986, 1037549, 1044112, 1050675, 1057238, 1063801} },
{"Shimmering Geta", {6019391, 19391, 319391, 219391, 1003716, 1011145, 1017810, 1024423, 1030987, 1037550, 1044113, 1050676, 1057239, 1063802} },
{"Girdle of the Fallen Crusader", {6019392, 19392, 319392, 219392, 1003717, 1011146, 1017811, 1024424, 1030988, 1037551, 1044114, 1050677, 1057240, 1063803} },
{"Primalist's Linked Waistguard", {6019393, 19393, 319393, 219393, 1003718, 1011147, 1017812, 1024425, 1030989, 1037552, 1044115, 1050678, 1057241, 1063804} },
{"Drake Talon Pauldrons", {6019394, 19394, 319394, 219394, 1003719, 1011148, 1017813, 1024426, 1030990, 1037553, 1044116, 1050679, 1057242, 1063805} },
{"Rejuvenating Gem", {6019395, 19395, 319395, 219395, 1003720, 1011149, 1017814, 1024427, 1030991, 1037554, 1044117, 1050680, 1057243, 1063806} },
{"Taut Dragonhide Belt", {6019396, 19396, 319396, 219396, 1003721, 1011151, 1017815, 1024428, 1030992, 1037555, 1044118, 1050681, 1057244, 1063807} },
{"Ring of Blackrock", {6019397, 19397, 319397, 219397, 1003722, 1011152, 1017816, 1024429, 1030993, 1037556, 1044119, 1050682, 1057245, 1063808} },
{"Cloak of Firemaw", {6019398, 19398, 319398, 219398, 1003723, 1011153, 1017817, 1024430, 1030994, 1037557, 1044120, 1050683, 1057246, 1063809} },
{"Black Ash Robe", {6019399, 19399, 319399, 219399, 1003724, 1011154, 1017818, 1024431, 1030995, 1037558, 1044121, 1050684, 1057247, 1063810} },
{"Firemaw's Clutch", {6019400, 19400, 319400, 219400, 1003725, 1011155, 1017819, 1024432, 1030996, 1037559, 1044122, 1050685, 1057248, 1063811} },
{"Primalist's Linked Legguards", {6019401, 19401, 319401, 219401, 1003726, 1011156, 1017820, 1024433, 1030997, 1037560, 1044123, 1050686, 1057249, 1063812} },
{"Legguards of the Fallen Crusader", {6019402, 19402, 319402, 219402, 1003727, 1011157, 1017821, 1024434, 1030998, 1037561, 1044124, 1050687, 1057250, 1063813} },
{"Band of Forced Concentration", {6019403, 19403, 319403, 219403, 1003728, 1011158, 1017822, 1024435, 1030999, 1037562, 1044125, 1050688, 1057251, 1063814} },
{"Malfurion's Blessed Bulwark", {6019405, 19405, 319405, 219405, 1003729, 1011159, 1017823, 1024436, 1031000, 1037563, 1044126, 1050689, 1057252, 1063815} },
{"Drake Fang Talisman", {6019406, 19406, 319406, 219406, 1003730, 1011160, 1017824, 1024437, 1031001, 1037564, 1044127, 1050690, 1057253, 1063816} },
{"Ebony Flame Gloves", {6019407, 19407, 319407, 219407, 1003731, 1011161, 1017825, 1024438, 1031002, 1037565, 1044128, 1050691, 1057254, 1063817} },
{"Orb of the Darkmoon", {6019426, 19426, 251784, 251785, 251786, 251787, 251788, 251789, 251790, 251791, 251792, 251793, 251794, 251795} },
{"Shroud of Pure Thought", {6019430, 19430, 319430, 219430, 1003732, 1011162, 1017826, 1024439, 1031003, 1037566, 1044129, 1050692, 1057255, 1063818} },
{"Styleen's Impeding Scarab", {6019431, 19431, 319431, 219431, 1003733, 1011163, 1017827, 1024440, 1031004, 1037567, 1044130, 1050693, 1057256, 1063819} },
{"Circle of Applied Force", {6019432, 19432, 319432, 219432, 1003734, 1011164, 1017828, 1024441, 1031005, 1037568, 1044131, 1050694, 1057257, 1063820} },
{"Emberweave Leggings", {6019433, 19433, 319433, 219433, 1003735, 1011165, 1017829, 1024442, 1031006, 1037569, 1044132, 1050695, 1057258, 1063821} },
{"Band of Dark Dominion", {6019434, 19434, 319434, 219434, 1003736, 1011166, 1017830, 1024443, 1031007, 1037570, 1044133, 1050696, 1057259, 1063822} },
{"Essence Gatherer", {6019435, 19435, 319435, 219435, 1003737, 1011167, 1017831, 1024444, 1031008, 1037571, 1044134, 1050697, 1057260, 1063823} },
{"Cloak of Draconic Might", {6019436, 19436, 319436, 219436, 1003738, 1011168, 1017832, 1024445, 1031009, 1037572, 1044135, 1050698, 1057261, 1063824} },
{"Boots of Pure Thought", {6019437, 19437, 319437, 219437, 1003739, 1011169, 1017833, 1024446, 1031010, 1037573, 1044136, 1050699, 1057262, 1063825} },
{"Ringo's Blizzard Boots", {6019438, 19438, 319438, 219438, 1003740, 1011170, 1017834, 1024447, 1031011, 1037574, 1044137, 1050700, 1057263, 1063826} },
{"Interlaced Shadow Jerkin", {6019439, 19439, 319439, 219439, 1003741, 1011171, 1017835, 1024448, 1031012, 1037575, 1044138, 1050701, 1057264, 1063827} },
{"Amulet of the Darkmoon", {6019491, 19491, 251796, 251797, 251798, 251799, 251800, 251801, 251802, 251803, 251804, 251805, 251806, 251807} },
{"Strength of Mugamba", {252613, 19574, 252612, 252614, 252615, 252616, 252617, 252618, 252619, 252620, 252621, 252622, 252623, 252624} },
{"Strength of Mugamba", {6019575, 19575, 252625, 252626, 252627, 252628, 252629, 252630, 252631, 252632, 252633, 252634, 252635, 252636} },
{"Strength of Mugamba", {6019576, 19576, 252637, 252638, 252639, 252640, 252641, 252642, 252643, 252644, 252645, 252646, 252647, 252648} },
{"Rage of Mugamba", {6019577, 19577, 252649, 252650, 252651, 252652, 252653, 252654, 252655, 252656, 252657, 252658, 252659, 252660} },
{"Heathen's Brand", {252674, 19579, 252673, 252675, 252676, 252677, 252678, 252679, 252680, 252681, 252682, 252683, 252684, 252685} },
{"Berserker Bracers", {6019580, 19580, 252686, 252687, 252688, 252689, 252690, 252691, 252692, 252693, 252694, 252695, 252696, 252697} },
{"Berserker Bracers", {6019581, 19581, 252698, 252699, 252700, 252701, 252702, 252703, 252704, 252705, 252706, 252707, 252708, 252709} },
{"Windtalker's Wristguards", {6019583, 19583, 252722, 252723, 252724, 252725, 252726, 252727, 252728, 252729, 252730, 252731, 252732, 252733} },
{"Windtalker's Wristguards", {6019584, 19584, 252734, 252735, 252736, 252737, 252738, 252739, 252740, 252741, 252742, 252743, 252744, 252745} },
{"Heathen's Brand", {6019585, 19585, 252746, 252747, 252748, 252749, 252750, 252751, 252752, 252753, 252754, 252755, 252756, 252757} },
{"Heathen's Brand", {6019586, 19586, 252758, 252759, 252760, 252761, 252762, 252763, 252764, 252765, 252766, 252767, 252768, 252769} },
{"Hero's Brand", {6019588, 19588, 252782, 252783, 252784, 252785, 252786, 252787, 252788, 252789, 252790, 252791, 252792, 252793} },
{"Forest Stalker's Bracers", {6019589, 19589, 252794, 252795, 252796, 252797, 252798, 252799, 252800, 252801, 252802, 252803, 252804, 252805} },
{"Forest Stalker's Bracers", {6019590, 19590, 252806, 252807, 252808, 252809, 252810, 252811, 252812, 252813, 252814, 252815, 252816, 252817} },
{"The Eye of Zuldazar", {252819, 19591, 252818, 252820, 252821, 252822, 252823, 252824, 252825, 252826, 252827, 252828, 252829, 252830} },
{"The Eye of Zuldazar", {6019592, 19592, 252831, 252832, 252833, 252834, 252835, 252836, 252837, 252838, 252839, 252840, 252841, 252842} },
{"The Eye of Zuldazar", {6019593, 19593, 252843, 252844, 252845, 252846, 252847, 252848, 252849, 252850, 252851, 252852, 252853, 252854} },
{"The All-Seeing Eye of Zuldazar", {6019594, 19594, 252855, 252856, 252857, 252858, 252859, 252860, 252861, 252862, 252863, 252864, 252865, 252866} },
{"Dryad's Wrist Bindings", {6019596, 19596, 252879, 252880, 252881, 252882, 252883, 252884, 252885, 252886, 252887, 252888, 252889, 252890} },
{"Dryad's Wrist Bindings", {6019597, 19597, 252891, 252892, 252893, 252894, 252895, 252896, 252897, 252898, 252899, 252900, 252901, 252902} },
{"Pebble of Kajaro", {252904, 19598, 252903, 252905, 252906, 252907, 252908, 252909, 252910, 252911, 252912, 252913, 252914, 252915} },
{"Pebble of Kajaro", {6019599, 19599, 252916, 252917, 252918, 252919, 252920, 252921, 252922, 252923, 252924, 252925, 252926, 252927} },
{"Pebble of Kajaro", {6019600, 19600, 252928, 252929, 252930, 252931, 252932, 252933, 252934, 252935, 252936, 252937, 252938, 252939} },
{"Jewel of Kajaro", {6019601, 19601, 252940, 252941, 252942, 252943, 252944, 252945, 252946, 252947, 252948, 252949, 252950, 252951} },
{"Kezan's Taint", {252953, 19602, 252952, 252954, 252955, 252956, 252957, 252958, 252959, 252960, 252961, 252962, 252963, 252964} },
{"Kezan's Taint", {6019603, 19603, 252965, 252966, 252967, 252968, 252969, 252970, 252971, 252972, 252973, 252974, 252975, 252976} },
{"Kezan's Taint", {6019604, 19604, 252977, 252978, 252979, 252980, 252981, 252982, 252983, 252984, 252985, 252986, 252987, 252988} },
{"Kezan's Unstoppable Taint", {6019605, 19605, 252989, 252990, 252991, 252992, 252993, 252994, 252995, 252996, 252997, 252998, 252999, 253000} },
{"Vision of Voodress", {253002, 19606, 253001, 253003, 253004, 253005, 253006, 253007, 253008, 253009, 253010, 253011, 253012, 253013} },
{"Vision of Voodress", {6019607, 19607, 253014, 253015, 253016, 253017, 253018, 253019, 253020, 253021, 253022, 253023, 253024, 253025} },
{"Vision of Voodress", {6019608, 19608, 253026, 253027, 253028, 253029, 253030, 253031, 253032, 253033, 253034, 253035, 253036, 253037} },
{"Unmarred Vision of Voodress", {6019609, 19609, 253038, 253039, 253040, 253041, 253042, 253043, 253044, 253045, 253046, 253047, 253048, 253049} },
{"Enchanted South Seas Kelp", {253051, 19610, 253050, 253052, 253053, 253054, 253055, 253056, 253057, 253058, 253059, 253060, 253061, 253062} },
{"Enchanted South Seas Kelp", {6019611, 19611, 253063, 253064, 253065, 253066, 253067, 253068, 253069, 253070, 253071, 253072, 253073, 253074} },
{"Enchanted South Seas Kelp", {6019612, 19612, 253075, 253076, 253077, 253078, 253079, 253080, 253081, 253082, 253083, 253084, 253085, 253086} },
{"Pristine Enchanted South Seas Kelp", {6019613, 19613, 253087, 253088, 253089, 253090, 253091, 253092, 253093, 253094, 253095, 253096, 253097, 253098} },
{"Zandalarian Shadow Talisman", {253100, 19614, 253099, 253101, 253102, 253103, 253104, 253105, 253106, 253107, 253108, 253109, 253110, 253111} },
{"Zandalarian Shadow Talisman", {6019615, 19615, 253112, 253113, 253114, 253115, 253116, 253117, 253118, 253119, 253120, 253121, 253122, 253123} },
{"Zandalarian Shadow Talisman", {6019616, 19616, 253124, 253125, 253126, 253127, 253128, 253129, 253130, 253131, 253132, 253133, 253134, 253135} },
{"Zandalarian Shadow Mastery Talisman", {6019617, 19617, 253136, 253137, 253138, 253139, 253140, 253141, 253142, 253143, 253144, 253145, 253146, 253147} },
{"Maelstrom's Tendril", {253149, 19618, 253148, 253150, 253151, 253152, 253153, 253154, 253155, 253156, 253157, 253158, 253159, 253160} },
{"Maelstrom's Tendril", {6019619, 19619, 253161, 253162, 253163, 253164, 253165, 253166, 253167, 253168, 253169, 253170, 253171, 253172} },
{"Maelstrom's Tendril", {6019620, 19620, 253173, 253174, 253175, 253176, 253177, 253178, 253179, 253180, 253181, 253182, 253183, 253184} },
{"Maelstrom's Wrath", {6019621, 19621, 253185, 253186, 253187, 253188, 253189, 253190, 253191, 253192, 253193, 253194, 253195, 253196} },
{"Bloodvine Vest", {6019682, 19682, 253197, 253198, 253199, 253200, 253201, 253202, 253203, 253204, 253205, 253206, 253207, 253208} },
{"Bloodvine Leggings", {6019683, 19683, 253209, 253210, 253211, 253212, 253213, 253214, 253215, 253216, 253217, 253218, 253219, 253220} },
{"Bloodvine Boots", {6019684, 19684, 253221, 253222, 253223, 253224, 253225, 253226, 253227, 253228, 253229, 253230, 253231, 253232} },
{"Primal Batskin Jerkin", {6019685, 19685, 253233, 253234, 253235, 253236, 253237, 253238, 253239, 253240, 253241, 253242, 253243, 253244} },
{"Primal Batskin Gloves", {6019686, 19686, 253245, 253246, 253247, 253248, 253249, 253250, 253251, 253252, 253253, 253254, 253255, 253256} },
{"Primal Batskin Bracers", {6019687, 19687, 253257, 253258, 253259, 253260, 253261, 253262, 253263, 253264, 253265, 253266, 253267, 253268} },
{"Blood Tiger Breastplate", {6019688, 19688, 253269, 253270, 253271, 253272, 253273, 253274, 253275, 253276, 253277, 253278, 253279, 253280} },
{"Blood Tiger Shoulders", {6019689, 19689, 253281, 253282, 253283, 253284, 253285, 253286, 253287, 253288, 253289, 253290, 253291, 253292} },
{"Bloodsoul Breastplate", {6019690, 19690, 253293, 253294, 253295, 253296, 253297, 253298, 253299, 253300, 253301, 253302, 253303, 253304} },
{"Bloodsoul Shoulders", {6019691, 19691, 253305, 253306, 253307, 253308, 253309, 253310, 253311, 253312, 253313, 253314, 253315, 253316} },
{"Bloodsoul Gauntlets", {6019692, 19692, 253317, 253318, 253319, 253320, 253321, 253322, 253323, 253324, 253325, 253326, 253327, 253328} },
{"Darksoul Breastplate", {6019693, 19693, 253329, 253330, 253331, 253332, 253333, 253334, 253335, 253336, 253337, 253338, 253339, 253340} },
{"Darksoul Leggings", {6019694, 19694, 253341, 253342, 253343, 253344, 253345, 253346, 253347, 253348, 253349, 253350, 253351, 253352} },
{"Darksoul Shoulders", {6019695, 19695, 253353, 253354, 253355, 253356, 253357, 253358, 253359, 253360, 253361, 253362, 253363, 253364} },
{"Fang of the Frost Wyrm", {113580, 19761, 319761, 219761, 1003751, 1011181, 1017845, 1024458, 1031022, 1037585, 1044148, 1050711, 1057274, 1063837} },
{"Rune of the Dawn", {6019812, 19812, 253378, 253379, 253380, 253381, 253382, 253383, 253384, 253385, 253386, 253387, 253388, 253389} },
{"Zandalar Vindicator's Breastplate", {6019822, 19822, 319822, 219822, 1003753, 1011183, 1017847, 1024460, 1031024, 1037587, 1044150, 1050713, 1057276, 1063839} },
{"Zandalar Vindicator's Belt", {6019823, 19823, 319823, 219823, 1003754, 1011184, 1017848, 1024461, 1031025, 1037588, 1044151, 1050714, 1057277, 1063840} },
{"Zandalar Vindicator's Armguards", {6019824, 19824, 319824, 219824, 1003755, 1011185, 1017849, 1024462, 1031026, 1037589, 1044152, 1050715, 1057278, 1063841} },
{"Zandalar Freethinker's Breastplate", {6019825, 19825, 319825, 219825, 1003756, 1011186, 1017850, 1024463, 1031027, 1037590, 1044153, 1050716, 1057279, 1063842} },
{"Zandalar Freethinker's Belt", {6019826, 19826, 319826, 219826, 1003757, 1011187, 1017851, 1024464, 1031028, 1037591, 1044154, 1050717, 1057280, 1063843} },
{"Zandalar Freethinker's Armguards", {6019827, 19827, 319827, 219827, 1003758, 1011188, 1017852, 1024465, 1031029, 1037592, 1044155, 1050718, 1057281, 1063844} },
{"Zandalar Augur's Hauberk", {6019828, 19828, 319828, 219828, 1003759, 1011189, 1017853, 1024466, 1031030, 1037593, 1044156, 1050719, 1057282, 1063845} },
{"Zandalar Augur's Belt", {6019829, 19829, 319829, 219829, 1003760, 1011190, 1017854, 1024467, 1031031, 1037594, 1044157, 1050720, 1057283, 1063846} },
{"Zandalar Augur's Bracers", {6019830, 19830, 319830, 219830, 1003761, 1011192, 1017855, 1024468, 1031032, 1037595, 1044158, 1050721, 1057284, 1063847} },
{"Zandalar Predator's Mantle", {6019831, 19831, 319831, 219831, 1003762, 1011193, 1017856, 1024469, 1031033, 1037596, 1044159, 1050722, 1057285, 1063848} },
{"Zandalar Predator's Belt", {6019832, 19832, 319832, 219832, 1003763, 1011194, 1017857, 1024470, 1031034, 1037597, 1044160, 1050723, 1057286, 1063849} },
{"Zandalar Predator's Bracers", {6019833, 19833, 319833, 219833, 1003764, 1011195, 1017858, 1024471, 1031035, 1037598, 1044161, 1050724, 1057287, 1063850} },
{"Zandalar Madcap's Tunic", {6019834, 19834, 319834, 219834, 1003765, 1011196, 1017859, 1024472, 1031036, 1037599, 1044162, 1050725, 1057288, 1063851} },
{"Zandalar Madcap's Mantle", {6019835, 19835, 319835, 219835, 1003766, 1011197, 1017860, 1024473, 1031037, 1037600, 1044163, 1050726, 1057289, 1063852} },
{"Zandalar Madcap's Bracers", {6019836, 19836, 319836, 219836, 1003767, 1011198, 1017861, 1024474, 1031038, 1037601, 1044164, 1050727, 1057290, 1063853} },
{"Zandalar Haruspex's Tunic", {6019838, 19838, 319838, 219838, 1003768, 1011199, 1017862, 1024475, 1031039, 1037602, 1044165, 1050728, 1057291, 1063854} },
{"Zandalar Haruspex's Belt", {6019839, 19839, 319839, 219839, 1003769, 1011201, 1017863, 1024476, 1031040, 1037603, 1044166, 1050729, 1057292, 1063855} },
{"Zandalar Haruspex's Bracers", {6019840, 19840, 319840, 219840, 1003770, 1011202, 1017864, 1024477, 1031041, 1037604, 1044167, 1050730, 1057293, 1063856} },
{"Zandalar Confessor's Mantle", {6019841, 19841, 319841, 219841, 1003771, 1011203, 1017865, 1024478, 1031042, 1037605, 1044168, 1050731, 1057294, 1063857} },
{"Zandalar Confessor's Bindings", {6019842, 19842, 319842, 219842, 1003772, 1011204, 1017866, 1024479, 1031043, 1037606, 1044169, 1050732, 1057295, 1063858} },
{"Zandalar Confessor's Wraps", {6019843, 19843, 319843, 219843, 1003773, 1011205, 1017867, 1024480, 1031044, 1037607, 1044170, 1050733, 1057296, 1063859} },
{"Zandalar Illusionist's Mantle", {6019845, 19845, 319845, 219845, 1003774, 1011206, 1017868, 1024481, 1031045, 1037608, 1044171, 1050734, 1057297, 1063860} },
{"Zandalar Illusionist's Wraps", {6019846, 19846, 319846, 219846, 1003775, 1011207, 1017869, 1024482, 1031046, 1037609, 1044172, 1050735, 1057298, 1063861} },
{"Zandalar Demoniac's Wraps", {6019848, 19848, 319848, 219848, 1003776, 1011208, 1017870, 1024483, 1031047, 1037610, 1044173, 1050736, 1057299, 1063862} },
{"Zandalar Demoniac's Mantle", {6019849, 19849, 319849, 219849, 1003777, 1011209, 1017871, 1024484, 1031048, 1037611, 1044174, 1050737, 1057300, 1063863} },
{"Ancient Hakkari Manslayer", {6019852, 19852, 319852, 219852, 1003778, 1011211, 1017872, 1024485, 1031049, 1037612, 1044175, 1050738, 1057301, 1063864} },
{"Gurubashi Dwarf Destroyer", {6019853, 19853, 319853, 219853, 1003779, 1011212, 1017873, 1024486, 1031050, 1037613, 1044176, 1050739, 1057302, 1063865} },
{"Zin'rokh, Destroyer of Worlds", {6019854, 19854, 319854, 219854, 1003780, 1011213, 1017874, 1024487, 1031051, 1037614, 1044177, 1050740, 1057303, 1063866} },
{"Bloodsoaked Legplates", {6019855, 19855, 319855, 219855, 1003781, 1011214, 1017875, 1024488, 1031052, 1037615, 1044178, 1050741, 1057304, 1063867} },
{"Cloak of Consumption", {6019857, 19857, 319857, 219857, 1003783, 1011216, 1017877, 1024490, 1031054, 1037617, 1044180, 1050743, 1057306, 1063869} },
{"Fang of the Faceless", {6019859, 19859, 319859, 219859, 1003784, 1011217, 1017878, 1024491, 1031055, 1037618, 1044181, 1050744, 1057307, 1063870} },
{"Touch of Chaos", {6019861, 19861, 319861, 219861, 1003785, 1011218, 1017879, 1024492, 1031056, 1037619, 1044182, 1050745, 1057308, 1063871} },
{"Aegis of the Blood God", {6019862, 19862, 319862, 219862, 1003786, 1011219, 1017880, 1024493, 1031057, 1037620, 1044183, 1050746, 1057309, 1063872} },
{"Primalist's Seal", {6019863, 19863, 319863, 219863, 1003787, 1011220, 1017881, 1024494, 1031058, 1037621, 1044184, 1050747, 1057310, 1063873} },
{"Bloodcaller", {6019864, 19864, 319864, 219864, 1003788, 1011221, 1017882, 1024495, 1031059, 1037622, 1044185, 1050748, 1057311, 1063874} },
{"Warblade of the Hakkari", {6019865, 19865, 319865, 219865, 1003789, 1011222, 1017883, 1024496, 1031060, 1037623, 1044186, 1050749, 1057312, 1063875} },
{"Bloodlord's Defender", {6019867, 19867, 319867, 219867, 1003791, 1011224, 1017885, 1024498, 1031062, 1037625, 1044188, 1050751, 1057314, 1063877} },
{"Blooddrenched Grips", {6019869, 19869, 319869, 219869, 1003792, 1011225, 1017886, 1024499, 1031063, 1037626, 1044189, 1050752, 1057315, 1063878} },
{"Hakkari Loa Cloak", {6019870, 19870, 319870, 219870, 1003793, 1011226, 1017887, 1024500, 1031064, 1037627, 1044190, 1050753, 1057316, 1063879} },
{"Talisman of Protection", {6019871, 19871, 319871, 219871, 1003794, 1011227, 1017888, 1024501, 1031065, 1037628, 1044191, 1050754, 1057317, 1063880} },
{"Overlord's Crimson Band", {6019873, 19873, 319873, 219873, 1003795, 1011228, 1017889, 1024502, 1031066, 1037629, 1044192, 1050755, 1057318, 1063881} },
{"Halberd of Smiting", {6019874, 19874, 319874, 219874, 1003796, 1011229, 1017890, 1024503, 1031067, 1037630, 1044193, 1050756, 1057319, 1063882} },
{"Bloodstained Coif", {6019875, 19875, 319875, 253390, 253391, 253392, 253393, 253394, 253395, 253396, 253397, 253398, 253399, 253400} },
{"Soul Corrupter's Necklace", {6019876, 19876, 319876, 219876, 1003797, 1011230, 1017891, 1024504, 1031068, 1037631, 1044194, 1050757, 1057320, 1063883} },
{"Animist's Leggings", {6019877, 19877, 319877, 219877, 1003798, 1011231, 1017892, 1024505, 1031069, 1037632, 1044195, 1050758, 1057321, 1063884} },
{"Bloodsoaked Pauldrons", {6019878, 19878, 319878, 219878, 1003799, 1011232, 1017893, 1024506, 1031070, 1037633, 1044196, 1050759, 1057322, 1063885} },
{"Alex's Test Beatdown Staff", {6019879, 19879, 253401, 253402, 253403, 253404, 253405, 253406, 253407, 253408, 253409, 253410, 253411, 253412} },
{"Jin'do's Judgement", {6019884, 19884, 319884, 219884, 1003800, 1011233, 1017894, 1024507, 1031071, 1037634, 1044197, 1050760, 1057323, 1063886} },
{"Jin'do's Evil Eye", {6019885, 19885, 319885, 219885, 1003801, 1011234, 1017895, 1024508, 1031072, 1037635, 1044198, 1050761, 1057324, 1063887} },
{"The Hexxer's Cover", {6019886, 19886, 319886, 219886, 1003802, 1011235, 1017896, 1024509, 1031073, 1037636, 1044199, 1050762, 1057325, 1063888} },
{"Bloodstained Legplates", {6019887, 19887, 319887, 219887, 1003803, 1011237, 1017897, 1024510, 1031074, 1037637, 1044200, 1050763, 1057326, 1063889} },
{"Overlord's Embrace", {6019888, 19888, 319888, 219888, 1003804, 1011238, 1017898, 1024511, 1031075, 1037638, 1044201, 1050764, 1057327, 1063890} },
{"Blooddrenched Leggings", {6019889, 19889, 319889, 219889, 1003805, 1011239, 1017899, 1024512, 1031076, 1037639, 1044202, 1050765, 1057328, 1063891} },
{"Jin'do's Hexxer", {6019890, 19890, 319890, 219890, 1003806, 1011240, 1017900, 1024513, 1031077, 1037640, 1044203, 1050766, 1057329, 1063892} },
{"Jin'do's Bag of Whammies", {6019891, 19891, 319891, 219891, 1003807, 1011241, 1017901, 1024514, 1031078, 1037641, 1044204, 1050767, 1057330, 1063893} },
{"Animist's Boots", {6019892, 19892, 319892, 219892, 1003808, 1011242, 1017902, 1024515, 1031079, 1037642, 1044205, 1050768, 1057331, 1063894} },
{"Zanzil's Seal", {6019893, 19893, 319893, 219893, 1003809, 1011243, 1017903, 1024516, 1031080, 1037643, 1044206, 1050769, 1057332, 1063895} },
{"Bloodsoaked Gauntlets", {6019894, 19894, 319894, 219894, 1003810, 1011244, 1017904, 1024517, 1031081, 1037644, 1044207, 1050770, 1057333, 1063896} },
{"Bloodtinged Kilt", {6019895, 19895, 319895, 219895, 1003811, 1011245, 1017905, 1024518, 1031082, 1037645, 1044208, 1050771, 1057334, 1063897} },
{"Thekal's Grasp", {6019896, 19896, 319896, 219896, 1003812, 1011246, 1017906, 1024519, 1031083, 1037646, 1044209, 1050772, 1057335, 1063898} },
{"Betrayer's Boots", {6019897, 19897, 319897, 219897, 1003813, 1011247, 1017907, 1024520, 1031084, 1037647, 1044210, 1050773, 1057336, 1063899} },
{"Seal of Jin", {6019898, 19898, 319898, 219898, 1003814, 1011248, 1017908, 1024521, 1031085, 1037648, 1044211, 1050774, 1057337, 1063900} },
{"Ritualistic Legguards", {6019899, 19899, 319899, 219899, 1003815, 1011249, 1017909, 1024522, 1031086, 1037649, 1044212, 1050775, 1057338, 1063901} },
{"Zulian Stone Axe", {6019900, 19900, 319900, 219900, 1003816, 1011250, 1017910, 1024523, 1031087, 1037650, 1044213, 1050776, 1057339, 1063902} },
{"Zulian Slicer", {6019901, 19901, 319901, 219901, 1003817, 1011251, 1017911, 1024524, 1031088, 1037651, 1044214, 1050777, 1057340, 1063903} },
{"Fang of Venoxis", {6019903, 19903, 319903, 219903, 1003818, 1011252, 1017912, 1024525, 1031089, 1037652, 1044215, 1050778, 1057341, 1063904} },
{"Runed Bloodstained Hauberk", {6019904, 19904, 319904, 219904, 1003819, 1011254, 1017913, 1024526, 1031090, 1037653, 1044216, 1050779, 1057342, 1063905} },
{"Zanzil's Band", {6019905, 19905, 319905, 219905, 1003820, 1011256, 1017914, 1024527, 1031091, 1037654, 1044217, 1050780, 1057343, 1063906} },
{"Blooddrenched Footpads", {6019906, 19906, 319906, 219906, 1003821, 1011257, 1017915, 1024528, 1031092, 1037655, 1044218, 1050781, 1057344, 1063907} },
{"Zulian Tigerhide Cloak", {6019907, 19907, 319907, 219907, 1003822, 1011259, 1017916, 1024529, 1031093, 1037656, 1044219, 1050782, 1057345, 1063908} },
{"Sceptre of Smiting", {6019908, 19908, 319908, 219908, 1003823, 1011260, 1017917, 1024530, 1031094, 1037657, 1044220, 1050783, 1057346, 1063909} },
{"Will of Arlokk", {6019909, 19909, 319909, 219909, 1003824, 1011261, 1017918, 1024531, 1031095, 1037658, 1044221, 1050784, 1057347, 1063910} },
{"Arlokk's Grasp", {6019910, 19910, 319910, 219910, 1003825, 1011262, 1017919, 1024532, 1031096, 1037659, 1044222, 1050785, 1057348, 1063911} },
{"Overlord's Onyx Band", {6019912, 19912, 319912, 219912, 1003826, 1011263, 1017920, 1024533, 1031097, 1037660, 1044223, 1050786, 1057349, 1063912} },
{"Bloodsoaked Greaves", {6019913, 19913, 319913, 219913, 1003827, 1011264, 1017921, 1024534, 1031098, 1037661, 1044224, 1050787, 1057350, 1063913} },
{"Zulian Defender", {6019915, 19915, 319915, 219915, 1003828, 1011265, 1017922, 1024535, 1031099, 1037662, 1044225, 1050788, 1057351, 1063914} },
{"Jeklik's Crusher", {6019918, 19918, 319918, 219918, 1003829, 1011266, 1017923, 1024536, 1031100, 1037663, 1044226, 1050789, 1057352, 1063915} },
{"Bloodstained Greaves", {6019919, 19919, 319919, 219919, 1003830, 1011268, 1017924, 1024537, 1031101, 1037664, 1044227, 1050790, 1057353, 1063916} },
{"Primalist's Band", {6019920, 19920, 319920, 219920, 1003831, 1011269, 1017925, 1024538, 1031102, 1037665, 1044228, 1050791, 1057354, 1063917} },
{"Zulian Hacker", {6019921, 19921, 319921, 219921, 1003832, 1011270, 1017926, 1024539, 1031103, 1037666, 1044229, 1050792, 1057355, 1063918} },
{"Arlokk's Hoodoo Stick", {6019922, 19922, 319922, 219922, 1003833, 1011271, 1017927, 1024540, 1031104, 1037667, 1044230, 1050793, 1057356, 1063919} },
{"Jeklik's Opaline Talisman", {6019923, 19923, 319923, 219923, 1003834, 1011272, 1017928, 1024541, 1031105, 1037668, 1044231, 1050794, 1057357, 1063920} },
{"Band of Jin", {6019925, 19925, 319925, 219925, 1003835, 1011273, 1017929, 1024542, 1031106, 1037669, 1044232, 1050795, 1057358, 1063921} },
{"Mar'li's Touch", {6019927, 19927, 319927, 219927, 1003836, 1011274, 1017930, 1024543, 1031107, 1037670, 1044233, 1050796, 1057359, 1063922} },
{"Animist's Spaulders", {6019928, 19928, 319928, 219928, 1003837, 1011275, 1017931, 1024544, 1031108, 1037671, 1044234, 1050797, 1057360, 1063923} },
{"Bloodtinged Gloves", {6019929, 19929, 319929, 219929, 1003838, 1011276, 1017932, 1024545, 1031109, 1037672, 1044235, 1050798, 1057361, 1063924} },
{"Mar'li's Eye", {6019930, 19930, 319930, 219930, 1003839, 1011277, 1017933, 1024546, 1031110, 1037673, 1044236, 1050799, 1057362, 1063925} },
{"Nat Pagle's Fish Terminator", {6019944, 19944, 319944, 219944, 1003840, 1011278, 1017934, 1024547, 1031111, 1037674, 1044237, 1050800, 1057363, 1063926} },
{"Foror's Eyepatch", {6019945, 19945, 319945, 219945, 1003841, 1011279, 1017935, 1024548, 1031112, 1037675, 1044238, 1050801, 1057364, 1063927} },
{"Tigule's Harpoon", {6019946, 19946, 319946, 219946, 1003842, 1011280, 1017936, 1024549, 1031113, 1037676, 1044239, 1050802, 1057365, 1063928} },
{"Nat Pagle's Broken Reel", {6019947, 19947, 319947, 219947, 1003843, 1011281, 1017937, 1024550, 1031114, 1037677, 1044240, 1050803, 1057366, 1063929} },
{"Zandalarian Hero Badge", {6019948, 19948, 131024, 219948, 1003844, 1011282, 1017938, 1024551, 1031115, 1037678, 1044241, 1050804, 1057367, 1063930} },
{"Zandalarian Hero Medallion", {6019949, 19949, 131026, 219949, 1003845, 1011283, 1017939, 1024552, 1031116, 1037679, 1044242, 1050805, 1057368, 1063931} },
{"Zandalarian Hero Charm", {6019950, 19950, 131025, 219950, 1003846, 1011284, 1017940, 1024553, 1031117, 1037680, 1044243, 1050806, 1057369, 1063932} },
{"Gri'lek's Charm of Might", {6019951, 19951, 319951, 219951, 1003847, 1011285, 1017941, 1024554, 1031118, 1037681, 1044244, 1050807, 1057370, 1063933} },
{"Gri'lek's Charm of Valor", {6019952, 19952, 319952, 219952, 1003848, 1011286, 1017942, 1024555, 1031119, 1037682, 1044245, 1050808, 1057371, 1063934} },
{"Renataki's Charm of Beasts", {6019953, 19953, 319953, 219953, 1003849, 1011287, 1017943, 1024556, 1031120, 1037683, 1044246, 1050809, 1057372, 1063935} },
{"Renataki's Charm of Trickery", {6019954, 19954, 319954, 219954, 1003850, 1011288, 1017944, 1024557, 1031121, 1037684, 1044247, 1050810, 1057373, 1063936} },
{"Wushoolay's Charm of Nature", {6019955, 19955, 319955, 219955, 1003851, 1011289, 1017945, 1024558, 1031122, 1037685, 1044248, 1050811, 1057374, 1063937} },
{"Wushoolay's Charm of Spirits", {6019956, 19956, 319956, 219956, 1003852, 1011290, 1017946, 1024559, 1031123, 1037686, 1044249, 1050812, 1057375, 1063938} },
{"Hazza'rah's Charm of Destruction", {6019957, 19957, 319957, 219957, 1003853, 1011291, 1017947, 1024560, 1031124, 1037687, 1044250, 1050813, 1057376, 1063939} },
{"Hazza'rah's Charm of Healing", {6019958, 19958, 319958, 219958, 1003854, 1011292, 1017948, 1024561, 1031125, 1037688, 1044251, 1050814, 1057377, 1063940} },
{"Hazza'rah's Charm of Magic", {6019959, 19959, 319959, 219959, 1003855, 1011293, 1017949, 1024562, 1031126, 1037689, 1044252, 1050815, 1057378, 1063941} },
{"Gri'lek's Grinder", {6019961, 19961, 319961, 219961, 1003856, 1011294, 1017950, 1024563, 1031127, 1037690, 1044253, 1050816, 1057379, 1063942} },
{"Gri'lek's Carver", {6019962, 19962, 319962, 219962, 1003857, 1011295, 1017951, 1024564, 1031128, 1037691, 1044254, 1050817, 1057380, 1063943} },
{"Pitchfork of Madness", {6019963, 19963, 319963, 219963, 1003858, 1011296, 1017952, 1024565, 1031129, 1037692, 1044255, 1050818, 1057381, 1063944} },
{"Renataki's Soul Conduit", {6019964, 19964, 319964, 219964, 1003859, 1011297, 1017953, 1024566, 1031130, 1037693, 1044256, 1050819, 1057382, 1063945} },
{"Wushoolay's Poker", {6019965, 19965, 319965, 219965, 1003860, 1011298, 1017954, 1024567, 1031131, 1037694, 1044257, 1050820, 1057383, 1063946} },
{"Thoughtblighter", {6019967, 19967, 319967, 219967, 1003861, 1011299, 1017955, 1024568, 1031132, 1037695, 1044258, 1050821, 1057384, 1063947} },
{"Fiery Retributer", {6019968, 19968, 319968, 219968, 1003862, 1011300, 1017956, 1024569, 1031133, 1037696, 1044259, 1050822, 1057385, 1063948} },
{"Hook of the Master Angler", {6019979, 19979, 253452, 253453, 253454, 253455, 253456, 253457, 253458, 253459, 253460, 253461, 253462, 253463} },
{"Duskbat Drape", {6019982, 19982, 253464, 253465, 253466, 253467, 253468, 253469, 253470, 253471, 253472, 253473, 253474, 253475} },
{"Ebon Mask", {6019984, 19984, 253476, 253477, 253478, 253479, 253480, 253481, 253482, 253483, 253484, 253485, 253486, 253487} },
{"Pirate's Eye Patch", {6019986, 19986, 253488, 253489, 253490, 253491, 253492, 253493, 253494, 253495, 253496, 253497, 253498, 253499} },
{"Blessed Prayer Beads", {6019990, 19990, 253500, 253501, 253502, 253503, 253504, 253505, 253506, 253507, 253508, 253509, 253510, 253511} },
{"Devilsaur Eye", {6019991, 19991, 253512, 253513, 253514, 253515, 253516, 253517, 253518, 253519, 253520, 253521, 253522, 253523} },
{"Devilsaur Tooth", {6019992, 19992, 253524, 253525, 253526, 253527, 253528, 253529, 253530, 253531, 253532, 253533, 253534, 253535} },
{"Hoodoo Hunting Bow", {6019993, 19993, 319993, 219993, 1003863, 1011301, 1017957, 1024570, 1031134, 1037697, 1044260, 1050823, 1057386, 1063949} },
{"Bloodvine Lens", {6019998, 19998, 253536, 253537, 253538, 253539, 253540, 253541, 253542, 253543, 253544, 253545, 253546, 253547} },
{"Bloodvine Goggles", {6019999, 19999, 253548, 253549, 253550, 253551, 253552, 253553, 253554, 253555, 253556, 253557, 253558, 253559} },
{"Devilsaur Claws", {6020003, 20003, 253560, 253561, 253562, 253563, 253564, 253565, 253566, 253567, 253568, 253569, 253570, 253571} },
{"Devilsaur Claws", {6020005, 20005, 253572, 253573, 253574, 253575, 253576, 253577, 253578, 253579, 253580, 253581, 253582, 253583} },
{"Circle of Hope", {6020006, 20006, 253584, 253585, 253586, 253587, 253588, 253589, 253590, 253591, 253592, 253593, 253594, 253595} },
{"Flowing Ritual Robes", {6020032, 20032, 320032, 220032, 1003864, 1011302, 1017958, 1024571, 1031135, 1037698, 1044261, 1050824, 1057387, 1063950} },
{"Zandalar Demoniac's Robe", {6020033, 20033, 320033, 220033, 1003865, 1011303, 1017959, 1024572, 1031136, 1037699, 1044262, 1050825, 1057388, 1063951} },
{"Zandalar Illusionist's Robe", {6020034, 20034, 320034, 220034, 1003866, 1011304, 1017960, 1024573, 1031137, 1037700, 1044263, 1050826, 1057389, 1063952} },
{"Glacial Spike", {6020035, 20035, 253596, 253597, 253598, 253599, 253600, 253601, 253602, 253603, 253604, 253605, 253606, 253607} },
{"Fire Ruby", {6020036, 20036, 253608, 253609, 253610, 253611, 253612, 253613, 253614, 253615, 253616, 253617, 253618, 253619} },
{"Arcane Crystal Pendant", {6020037, 20037, 253620, 253621, 253622, 253623, 253624, 253625, 253626, 253627, 253628, 253629, 253630, 253631} },
{"Mandokir's Sting", {6020038, 20038, 320038, 220038, 1003867, 1011305, 1017961, 1024574, 1031138, 1037701, 1044264, 1050827, 1057390, 1063953} },
{"Dark Iron Boots", {6020039, 20039, 253632, 253633, 253634, 253635, 253636, 253637, 253638, 253639, 253640, 253641, 253642, 253643} },
{"Sageclaw", {6020070, 20070, 253920, 253921, 253922, 253923, 253924, 253925, 253926, 253927, 253928, 253929, 253930, 253931} },
{"Woestave", {6020082, 20082, 253968, 253969, 253970, 253971, 253972, 253973, 253974, 253975, 253976, 253977, 253978, 253979} },
{"Hunting Spear", {6020083, 20083, 253980, 253981, 253982, 253983, 253984, 253985, 253986, 253987, 253988, 253989, 253990, 253991} },
{"Diamond Flask", {6020130, 20130, 254496, 254497, 254498, 254499, 254500, 254501, 254502, 254503, 254504, 254505, 254506, 254507} },
{"Skyfury Helm", {6020134, 20134, 254508, 254509, 254510, 254511, 254512, 254513, 254514, 254515, 254516, 254517, 254518, 254519} },
{"90 Epic Warrior Waistband", {6020142, 20142, 254520, 254521, 254522, 254523, 254524, 254525, 254526, 254527, 254528, 254529, 254530, 254531} },
{"Belt of Shrunken Heads", {6020213, 20213, 255288, 255289, 255290, 255291, 255292, 255293, 255294, 255295, 255296, 255297, 255298, 255299} },
{"Belt of Shriveled Heads", {6020215, 20215, 255312, 255313, 255314, 255315, 255316, 255317, 255318, 255319, 255320, 255321, 255322, 255323} },
{"Belt of Preserved Heads", {6020216, 20216, 255324, 255325, 255326, 255327, 255328, 255329, 255330, 255331, 255332, 255333, 255334, 255335} },
{"Belt of Tiny Heads", {6020217, 20217, 255336, 255337, 255338, 255339, 255340, 255341, 255342, 255343, 255344, 255345, 255346, 255347} },
{"Faded Hakkari Cloak", {6020218, 20218, 255348, 255349, 255350, 255351, 255352, 255353, 255354, 255355, 255356, 255357, 255358, 255359} },
{"Tattered Hakkari Cape", {6020219, 20219, 255360, 255361, 255362, 255363, 255364, 255365, 255366, 255367, 255368, 255369, 255370, 255371} },
{"Whisperwalk Boots", {6020255, 20255, 255384, 255385, 255386, 255387, 255388, 255389, 255390, 255391, 255392, 255393, 255394, 255395} },
{"Seafury Gauntlets", {6020257, 20257, 320257, 220257, 1003868, 1011306, 1017962, 1024575, 1031139, 1037702, 1044265, 1050828, 1057391, 1063954} },
{"Zulian Ceremonial Staff", {6020258, 20258, 320258, 220258, 1003869, 1011307, 1017963, 1024576, 1031140, 1037703, 1044266, 1050829, 1057392, 1063955} },
{"Shadow Panther Hide Gloves", {6020259, 20259, 320259, 220259, 1003870, 1011308, 1017964, 1024577, 1031141, 1037704, 1044267, 1050830, 1057393, 1063956} },
{"Seafury Leggings", {6020260, 20260, 320260, 220260, 1003871, 1011310, 1017965, 1024578, 1031142, 1037705, 1044268, 1050831, 1057394, 1063957} },
{"Shadow Panther Hide Belt", {6020261, 20261, 320261, 220261, 1003872, 1011311, 1017966, 1024579, 1031143, 1037706, 1044269, 1050832, 1057395, 1063958} },
{"Seafury Boots", {6020262, 20262, 320262, 220262, 1003873, 1011312, 1017967, 1024580, 1031144, 1037707, 1044270, 1050833, 1057396, 1063959} },
{"Gurubashi Helm", {6020263, 20263, 320263, 220263, 1003874, 1011313, 1017968, 1024581, 1031145, 1037708, 1044271, 1050834, 1057397, 1063960} },
{"Peacekeeper Gauntlets", {6020264, 20264, 320264, 220264, 1003875, 1011314, 1017969, 1024582, 1031146, 1037709, 1044272, 1050835, 1057398, 1063961} },
{"Peacekeeper Boots", {6020265, 20265, 320265, 220265, 1003876, 1011315, 1017970, 1024583, 1031147, 1037710, 1044273, 1050836, 1057399, 1063962} },
{"Peacekeeper Leggings", {6020266, 20266, 320266, 220266, 1003877, 1011316, 1017971, 1024584, 1031148, 1037711, 1044274, 1050837, 1057400, 1063963} },
{"Blue Dragonscale Leggings", {6020295, 20295, 255396, 255397, 255398, 255399, 255400, 255401, 255402, 255403, 255404, 255405, 255406, 255407} },
{"Green Dragonscale Gauntlets", {6020296, 20296, 255408, 255409, 255410, 255411, 255412, 255413, 255414, 255415, 255416, 255417, 255418, 255419} },
{"90 Epic Frost Leggings", {6020329, 20329, 255420, 255421, 255422, 255423, 255424, 255425, 255426, 255427, 255428, 255429, 255430, 255431} },
{"Bland Bow of Steadiness", {6020368, 20368, 255432, 255433, 255434, 255435, 255436, 255437, 255438, 255439, 255440, 255441, 255442, 255443} },
{"Azurite Fists", {6020369, 20369, 255444, 255445, 255446, 255447, 255448, 255449, 255450, 255451, 255452, 255453, 255454, 255455} },
{"Dreamscale Breastplate", {6020380, 20380, 255456, 255457, 255458, 255459, 255460, 255461, 255462, 255463, 255464, 255465, 255466, 255467} },
{"Twilight Cultist Mantle", {255469, 20406, 255468, 255470, 255471, 255472, 255473, 255474, 255475, 255476, 255477, 255478, 255479, 255480} },
{"Twilight Cultist Robe", {255482, 20407, 255481, 255483, 255484, 255485, 255486, 255487, 255488, 255489, 255490, 255491, 255492, 255493} },
{"Twilight Cultist Cowl", {255495, 20408, 255494, 255496, 255497, 255498, 255499, 255500, 255501, 255502, 255503, 255504, 255505, 255506} },
{"Sandstalker Bracers", {6020476, 20476, 255699, 255700, 255701, 255702, 255703, 255704, 255705, 255706, 255707, 255708, 255709, 255710} },
{"Sandstalker Gauntlets", {6020477, 20477, 255711, 255712, 255713, 255714, 255715, 255716, 255717, 255718, 255719, 255720, 255721, 255722} },
{"Sandstalker Breastplate", {6020478, 20478, 255723, 255724, 255725, 255726, 255727, 255728, 255729, 255730, 255731, 255732, 255733, 255734} },
{"Spitfire Breastplate", {6020479, 20479, 255735, 255736, 255737, 255738, 255739, 255740, 255741, 255742, 255743, 255744, 255745, 255746} },
{"Spitfire Gauntlets", {6020480, 20480, 255747, 255748, 255749, 255750, 255751, 255752, 255753, 255754, 255755, 255756, 255757, 255758} },
{"Spitfire Bracers", {6020481, 20481, 255759, 255760, 255761, 255762, 255763, 255764, 255765, 255766, 255767, 255768, 255769, 255770} },
{"Lok'delar, Stave of the Ancient Keepers DEP", {6020487, 20487, 255771, 255772, 255773, 255774, 255775, 255776, 255777, 255778, 255779, 255780, 255781, 255782} },
{"Rhok'delar, Longbow of the Ancient Keepers DEP", {6020488, 20488, 123587, 220488, 1003878, 1011317, 1017972, 1024585, 1031149, 1037712, 1044275, 1050838, 1057401, 1063964} },
{"Ironbark Shield", {6020502, 20502, 255783, 255784, 255785, 255786, 255787, 255788, 255789, 255790, 255791, 255792, 255793, 255794} },
{"Enamored Water Spirit", {6020503, 20503, 255795, 255796, 255797, 255798, 255799, 255800, 255801, 255802, 255803, 255804, 255805, 255806} },
{"Lightforged Blade", {6020504, 20504, 255807, 255808, 255809, 255810, 255811, 255812, 255813, 255814, 255815, 255816, 255817, 255818} },
{"Chivalrous Signet", {6020505, 20505, 255819, 255820, 255821, 255822, 255823, 255824, 255825, 255826, 255827, 255828, 255829, 255830} },
{"Sanctified Orb", {6020512, 20512, 255831, 255832, 255833, 255834, 255835, 255836, 255837, 255838, 255839, 255840, 255841, 255842} },
{"Razorsteel Shoulders", {6020517, 20517, 255843, 255844, 255845, 255846, 255847, 255848, 255849, 255850, 255851, 255852, 255853, 255854} },
{"Fury Visor", {6020521, 20521, 255855, 255856, 255857, 255858, 255859, 255860, 255861, 255862, 255863, 255864, 255865, 255866} },
{"Feral Staff", {6020522, 20522, 255867, 255868, 255869, 255870, 255871, 255872, 255873, 255874, 255875, 255876, 255877, 255878} },
{"Shadowhide Leggings", {6020524, 20524, 255879, 255880, 255881, 255882, 255883, 255884, 255885, 255886, 255887, 255888, 255889, 255890} },
{"Robes of Servitude", {6020530, 20530, 255891, 255892, 255893, 255894, 255895, 255896, 255897, 255898, 255899, 255900, 255901, 255902} },
{"Abyss Shard", {6020534, 20534, 255903, 255904, 255905, 255906, 255907, 255908, 255909, 255910, 255911, 255912, 255913, 255914} },
{"Soul Harvester", {6020536, 20536, 255915, 255916, 255917, 255918, 255919, 255920, 255921, 255922, 255923, 255924, 255925, 255926} },
{"Runed Stygian Boots", {6020537, 20537, 255927, 255928, 255929, 255930, 255931, 255932, 255933, 255934, 255935, 255936, 255937, 255938} },
{"Runed Stygian Leggings", {6020538, 20538, 255939, 255940, 255941, 255942, 255943, 255944, 255945, 255946, 255947, 255948, 255949, 255950} },
{"Runed Stygian Belt", {6020539, 20539, 255951, 255952, 255953, 255954, 255955, 255956, 255957, 255958, 255959, 255960, 255961, 255962} },
{"Darkrune Gauntlets", {6020549, 20549, 255963, 255964, 255965, 255966, 255967, 255968, 255969, 255970, 255971, 255972, 255973, 255974} },
{"Darkrune Breastplate", {6020550, 20550, 255975, 255976, 255977, 255978, 255979, 255980, 255981, 255982, 255983, 255984, 255985, 255986} },
{"Darkrune Helm", {6020551, 20551, 255987, 255988, 255989, 255990, 255991, 255992, 255993, 255994, 255995, 255996, 255997, 255998} },
{"Wildstaff", {6020556, 20556, 255999, 256000, 256001, 256002, 256003, 256004, 256005, 256006, 256007, 256008, 256009, 256010} },
{"Nightmare Blade", {1020577, 20577, 256024, 256025, 256026, 256027, 256028, 256029, 256030, 256031, 256032, 256033, 256034, 256035} },
{"Emerald Dragonfang", {1020578, 20578, 256036, 256037, 256038, 256039, 256040, 256041, 256042, 256043, 256044, 256045, 256046, 256047} },
{"Green Dragonskin Cloak", {1020579, 20579, 256048, 256049, 256050, 256051, 256052, 256053, 256054, 256055, 256056, 256057, 256058, 256059} },
{"Hammer of Bestial Fury", {1020580, 20580, 256060, 256061, 256062, 256063, 256064, 256065, 256066, 256067, 256068, 256069, 256070, 256071} },
{"Staff of Rampant Growth", {1020581, 20581, 256072, 256073, 256074, 256075, 256076, 256077, 256078, 256079, 256080, 256081, 256082, 256083} },
{"Trance Stone", {1020582, 20582, 256084, 256085, 256086, 256087, 256088, 256089, 256090, 256091, 256092, 256093, 256094, 256095} },
{"Polished Ironwood Crossbow", {1020599, 20599, 256122, 256123, 256124, 256125, 256126, 256127, 256128, 256129, 256130, 256131, 256132, 256133} },
{"Malfurion's Signet Ring", {6020600, 20600, 256134, 256135, 256136, 256137, 256138, 256139, 256140, 256141, 256142, 256143, 256144, 256145} },
{"Dragonspur Wraps", {1020615, 20615, 256146, 256147, 256148, 256149, 256150, 256151, 256152, 256153, 256154, 256155, 256156, 256157} },
{"Dragonbone Wristguards", {1020616, 20616, 256158, 256159, 256160, 256161, 256162, 256163, 256164, 256165, 256166, 256167, 256168, 256169} },
{"Ancient Corroded Leggings", {1020617, 20617, 256170, 256171, 256172, 256173, 256174, 256175, 256176, 256177, 256178, 256179, 256180, 256181} },
{"Gloves of Delusional Power", {1020618, 20618, 256182, 256183, 256184, 256185, 256186, 256187, 256188, 256189, 256190, 256191, 256192, 256193} },
{"Acid Inscribed Greaves", {1020619, 20619, 256194, 256195, 256196, 256197, 256198, 256199, 256200, 256201, 256202, 256203, 256204, 256205} },
{"Boots of the Endless Moor", {1020621, 20621, 256206, 256207, 256208, 256209, 256210, 256211, 256212, 256213, 256214, 256215, 256216, 256217} },
{"Dragonheart Necklace", {1020622, 20622, 256218, 256219, 256220, 256221, 256222, 256223, 256224, 256225, 256226, 256227, 256228, 256229} },
{"Circlet of Restless Dreams", {1020623, 20623, 256230, 256231, 256232, 256233, 256234, 256235, 256236, 256237, 256238, 256239, 256240, 256241} },
{"Ring of the Unliving", {1020624, 20624, 256242, 256243, 256244, 256245, 256246, 256247, 256248, 256249, 256250, 256251, 256252, 256253} },
{"Belt of the Dark Bog", {1020625, 20625, 256254, 256255, 256256, 256257, 256258, 256259, 256260, 256261, 256262, 256263, 256264, 256265} },
{"Black Bark Wristbands", {1020626, 20626, 256266, 256267, 256268, 256269, 256270, 256271, 256272, 256273, 256274, 256275, 256276, 256277} },
{"Dark Heart Pants", {1020627, 20627, 256278, 256279, 256280, 256281, 256282, 256283, 256284, 256285, 256286, 256287, 256288, 256289} },
{"Deviate Growth Cap", {1020628, 20628, 256290, 256291, 256292, 256293, 256294, 256295, 256296, 256297, 256298, 256299, 256300, 256301} },
{"Malignant Footguards", {1020629, 20629, 256302, 256303, 256304, 256305, 256306, 256307, 256308, 256309, 256310, 256311, 256312, 256313} },
{"Gauntlets of the Shining Light", {1020630, 20630, 256314, 256315, 256316, 256317, 256318, 256319, 256320, 256321, 256322, 256323, 256324, 256325} },
{"Mendicant's Slippers", {1020631, 20631, 256326, 256327, 256328, 256329, 256330, 256331, 256332, 256333, 256334, 256335, 256336, 256337} },
{"Mindtear Band", {1020632, 20632, 256338, 256339, 256340, 256341, 256342, 256343, 256344, 256345, 256346, 256347, 256348, 256349} },
{"Unnatural Leather Spaulders", {1020633, 20633, 256350, 256351, 256352, 256353, 256354, 256355, 256356, 256357, 256358, 256359, 256360, 256361} },
{"Boots of Fright", {1020634, 20634, 256362, 256363, 256364, 256365, 256366, 256367, 256368, 256369, 256370, 256371, 256372, 256373} },
{"Jade Inlaid Vestments", {1020635, 20635, 256374, 256375, 256376, 256377, 256378, 256379, 256380, 256381, 256382, 256383, 256384, 256385} },
{"Hibernation Crystal", {1020636, 20636, 256386, 256387, 256388, 256389, 256390, 256391, 256392, 256393, 256394, 256395, 256396, 256397} },
{"Acid Inscribed Pauldrons", {1020637, 20637, 256398, 256399, 256400, 256401, 256402, 256403, 256404, 256405, 256406, 256407, 256408, 256409} },
{"Leggings of the Demented Mind", {1020638, 20638, 256410, 256411, 256412, 256413, 256414, 256415, 256416, 256417, 256418, 256419, 256420, 256421} },
{"Strangely Glyphed Legplates", {1020639, 20639, 256422, 256423, 256424, 256425, 256426, 256427, 256428, 256429, 256430, 256431, 256432, 256433} },
{"Antiquated Nobleman's Tunic", {256461, 20642, 256460, 256462, 256463, 256464, 256465, 256466, 256467, 256468, 256469, 256470, 256471, 256472} },
{"Undercity Reservist's Cap", {256474, 20643, 256473, 256475, 256476, 256477, 256478, 256479, 256480, 256481, 256482, 256483, 256484, 256485} },
{"Nature's Whisper", {256487, 20645, 256486, 256488, 256489, 256490, 256491, 256492, 256493, 256494, 256495, 256496, 256497, 256498} },
{"Sandstrider's Mark", {6020646, 20646, 256499, 256500, 256501, 256502, 256503, 256504, 256505, 256506, 256507, 256508, 256509, 256510} },
{"Black Crystal Dagger", {6020647, 20647, 256511, 256512, 256513, 256514, 256515, 256516, 256517, 256518, 256519, 256520, 256521, 256522} },
{"Cold Forged Hammer", {6020648, 20648, 256523, 256524, 256525, 256526, 256527, 256528, 256529, 256530, 256531, 256532, 256533, 256534} },
{"Sunprism Pendant", {256536, 20649, 256535, 256537, 256538, 256539, 256540, 256541, 256542, 256543, 256544, 256545, 256546, 256547} },
{"Desert Wind Gauntlets", {256549, 20650, 256548, 256550, 256551, 256552, 256553, 256554, 256555, 256556, 256557, 256558, 256559, 256560} },
{"Abyssal Cloth Slippers", {256562, 20652, 256561, 256563, 256564, 256565, 256566, 256567, 256568, 256569, 256570, 256571, 256572, 256573} },
{"Abyssal Plate Gauntlets", {256575, 20653, 256574, 256576, 256577, 256578, 256579, 256580, 256581, 256582, 256583, 256584, 256585, 256586} },
{"Amethyst War Staff", {6020654, 20654, 256587, 256588, 256589, 256590, 256591, 256592, 256593, 256594, 256595, 256596, 256597, 256598} },
{"Abyssal Cloth Handwraps", {256600, 20655, 256599, 256601, 256602, 256603, 256604, 256605, 256606, 256607, 256608, 256609, 256610, 256611} },
{"Abyssal Mail Sabatons", {256613, 20656, 256612, 256614, 256615, 256616, 256617, 256618, 256619, 256620, 256621, 256622, 256623, 256624} },
{"Crystal Tipped Stiletto", {6020657, 20657, 256625, 256626, 256627, 256628, 256629, 256630, 256631, 256632, 256633, 256634, 256635, 256636} },
{"Abyssal Leather Boots", {256638, 20658, 256637, 256639, 256640, 256641, 256642, 256643, 256644, 256645, 256646, 256647, 256648, 256649} },
{"Abyssal Mail Handguards", {256651, 20659, 256650, 256652, 256653, 256654, 256655, 256656, 256657, 256658, 256659, 256660, 256661, 256662} },
{"Stonecutting Glaive", {6020660, 20660, 256663, 256664, 256665, 256666, 256667, 256668, 256669, 256670, 256671, 256672, 256673, 256674} },
{"Abyssal Leather Gloves", {256676, 20661, 256675, 256677, 256678, 256679, 256680, 256681, 256682, 256683, 256684, 256685, 256686, 256687} },
{"Abyssal Plate Greaves", {256689, 20662, 256688, 256690, 256691, 256692, 256693, 256694, 256695, 256696, 256697, 256698, 256699, 256700} },
{"Deep Strike Bow", {6020663, 20663, 256701, 256702, 256703, 256704, 256705, 256706, 256707, 256708, 256709, 256710, 256711, 256712} },
{"Abyssal Cloth Sash", {256714, 20664, 256713, 256715, 256716, 256717, 256718, 256719, 256720, 256721, 256722, 256723, 256724, 256725} },
{"Abyssal Leather Leggings", {6020665, 20665, 256726, 256727, 256728, 256729, 256730, 256731, 256732, 256733, 256734, 256735, 256736, 256737} },
{"Hardened Steel Warhammer", {6020666, 20666, 256738, 256739, 256740, 256741, 256742, 256743, 256744, 256745, 256746, 256747, 256748, 256749} },
{"Abyssal Leather Belt", {256751, 20667, 256750, 256752, 256753, 256754, 256755, 256756, 256757, 256758, 256759, 256760, 256761, 256762} },
{"Abyssal Mail Legguards", {6020668, 20668, 256763, 256764, 256765, 256766, 256767, 256768, 256769, 256770, 256771, 256772, 256773, 256774} },
{"Darkstone Claymore", {6020669, 20669, 256775, 256776, 256777, 256778, 256779, 256780, 256781, 256782, 256783, 256784, 256785, 256786} },
{"Abyssal Mail Clutch", {256788, 20670, 256787, 256789, 256790, 256791, 256792, 256793, 256794, 256795, 256796, 256797, 256798, 256799} },
{"Abyssal Plate Legguards", {6020671, 20671, 256800, 256801, 256802, 256803, 256804, 256805, 256806, 256807, 256808, 256809, 256810, 256811} },
{"Sparkling Crystal Wand", {6020672, 20672, 256812, 256813, 256814, 256815, 256816, 256817, 256818, 256819, 256820, 256821, 256822, 256823} },
{"Abyssal Plate Girdle", {256825, 20673, 256824, 256826, 256827, 256828, 256829, 256830, 256831, 256832, 256833, 256834, 256835, 256836} },
{"Abyssal Cloth Pants", {6020674, 20674, 256837, 256838, 256839, 256840, 256841, 256842, 256843, 256844, 256845, 256846, 256847, 256848} },
{"Soulrender", {6020675, 20675, 256849, 256850, 256851, 256852, 256853, 256854, 256855, 256856, 256857, 256858, 256859, 256860} },
{"Abyssal Mail Pauldrons", {6020680, 20680, 256861, 256862, 256863, 256864, 256865, 256866, 256867, 256868, 256869, 256870, 256871, 256872} },
{"Abyssal Leather Bracers", {6020681, 20681, 256873, 256874, 256875, 256876, 256877, 256878, 256879, 256880, 256881, 256882, 256883, 256884} },
{"Elemental Focus Band", {6020682, 20682, 256885, 256886, 256887, 256888, 256889, 256890, 256891, 256892, 256893, 256894, 256895, 256896} },
{"Abyssal Plate Epaulets", {6020683, 20683, 256897, 256898, 256899, 256900, 256901, 256902, 256903, 256904, 256905, 256906, 256907, 256908} },
{"Abyssal Mail Armguards", {6020684, 20684, 256909, 256910, 256911, 256912, 256913, 256914, 256915, 256916, 256917, 256918, 256919, 256920} },
{"Wavefront Necklace", {6020685, 20685, 256921, 256922, 256923, 256924, 256925, 256926, 256927, 256928, 256929, 256930, 256931, 256932} },
{"Abyssal Cloth Amice", {6020686, 20686, 256933, 256934, 256935, 256936, 256937, 256938, 256939, 256940, 256941, 256942, 256943, 256944} },
{"Abyssal Plate Vambraces", {6020687, 20687, 256945, 256946, 256947, 256948, 256949, 256950, 256951, 256952, 256953, 256954, 256955, 256956} },
{"Earthen Guard", {6020688, 20688, 256957, 256958, 256959, 256960, 256961, 256962, 256963, 256964, 256965, 256966, 256967, 256968} },
{"Abyssal Leather Shoulders", {6020689, 20689, 256969, 256970, 256971, 256972, 256973, 256974, 256975, 256976, 256977, 256978, 256979, 256980} },
{"Abyssal Cloth Wristbands", {6020690, 20690, 256981, 256982, 256983, 256984, 256985, 256986, 256987, 256988, 256989, 256990, 256991, 256992} },
{"Windshear Cape", {6020691, 20691, 256993, 256994, 256995, 256996, 256997, 256998, 256999, 257000, 257001, 257002, 257003, 257004} },
{"Multicolored Band", {257006, 20692, 257005, 257007, 257008, 257009, 257010, 257011, 257012, 257013, 257014, 257015, 257016, 257017} },
{"Weighted Cloak", {257019, 20693, 257018, 257020, 257021, 257022, 257023, 257024, 257025, 257026, 257027, 257028, 257029, 257030} },
{"Glowing Black Orb", {257032, 20694, 257031, 257033, 257034, 257035, 257036, 257037, 257038, 257039, 257040, 257041, 257042, 257043} },
{"Abyssal War Beads", {6020695, 20695, 257044, 257045, 257046, 257047, 257048, 257049, 257050, 257051, 257052, 257053, 257054, 257055} },
{"Crystal Spiked Maul", {6020696, 20696, 257056, 257057, 257058, 257059, 257060, 257061, 257062, 257063, 257064, 257065, 257066, 257067} },
{"Crystalline Threaded Cape", {6020697, 20697, 257068, 257069, 257070, 257071, 257072, 257073, 257074, 257075, 257076, 257077, 257078, 257079} },
{"Elemental Attuned Blade", {6020698, 20698, 257080, 257081, 257082, 257083, 257084, 257085, 257086, 257087, 257088, 257089, 257090, 257091} },
{"Cenarion Reservist's Legplates", {6020699, 20699, 257092, 257093, 257094, 257095, 257096, 257097, 257098, 257099, 257100, 257101, 257102, 257103} },
{"Cenarion Reservist's Legplates", {6020700, 20700, 257104, 257105, 257106, 257107, 257108, 257109, 257110, 257111, 257112, 257113, 257114, 257115} },
{"Cenarion Reservist's Legguards", {6020701, 20701, 257116, 257117, 257118, 257119, 257120, 257121, 257122, 257123, 257124, 257125, 257126, 257127} },
{"Cenarion Reservist's Legguards", {6020702, 20702, 257128, 257129, 257130, 257131, 257132, 257133, 257134, 257135, 257136, 257137, 257138, 257139} },
{"Cenarion Reservist's Leggings", {6020703, 20703, 257140, 257141, 257142, 257143, 257144, 257145, 257146, 257147, 257148, 257149, 257150, 257151} },
{"Cenarion Reservist's Leggings", {6020704, 20704, 257152, 257153, 257154, 257155, 257156, 257157, 257158, 257159, 257160, 257161, 257162, 257163} },
{"Cenarion Reservist's Pants", {6020705, 20705, 257164, 257165, 257166, 257167, 257168, 257169, 257170, 257171, 257172, 257173, 257174, 257175} },
{"Cenarion Reservist's Pants", {6020706, 20706, 257176, 257177, 257178, 257179, 257180, 257181, 257182, 257183, 257184, 257185, 257186, 257187} },
{"Cenarion Reservist's Pants", {6020707, 20707, 257188, 257189, 257190, 257191, 257192, 257193, 257194, 257195, 257196, 257197, 257198, 257199} },
{"Crystal Encrusted Greaves", {6020710, 20710, 257200, 257201, 257202, 257203, 257204, 257205, 257206, 257207, 257208, 257209, 257210, 257211} },
{"Crystal Lined Greaves", {6020711, 20711, 257212, 257213, 257214, 257215, 257216, 257217, 257218, 257219, 257220, 257221, 257222, 257223} },
{"Wastewalker's Gauntlets", {6020712, 20712, 257224, 257225, 257226, 257227, 257228, 257229, 257230, 257231, 257232, 257233, 257234, 257235} },
{"Desertstalkers's Gauntlets", {6020713, 20713, 257236, 257237, 257238, 257239, 257240, 257241, 257242, 257243, 257244, 257245, 257246, 257247} },
{"Sandstorm Boots", {6020714, 20714, 257248, 257249, 257250, 257251, 257252, 257253, 257254, 257255, 257256, 257257, 257258, 257259} },
{"Dunestalker's Boots", {6020715, 20715, 257260, 257261, 257262, 257263, 257264, 257265, 257266, 257267, 257268, 257269, 257270, 257271} },
{"Sandworm Skin Gloves", {6020716, 20716, 257272, 257273, 257274, 257275, 257276, 257277, 257278, 257279, 257280, 257281, 257282, 257283} },
{"Desert Bloom Gloves", {6020717, 20717, 257284, 257285, 257286, 257287, 257288, 257289, 257290, 257291, 257292, 257293, 257294, 257295} },
{"Dark Whisper Blade", {6020720, 20720, 257296, 257297, 257298, 257299, 257300, 257301, 257302, 257303, 257304, 257305, 257306, 257307} },
{"Band of the Cultist", {6020721, 20721, 257308, 257309, 257310, 257311, 257312, 257313, 257314, 257315, 257316, 257317, 257318, 257319} },
{"Crystal Slugthrower", {6020722, 20722, 257320, 257321, 257322, 257323, 257324, 257325, 257326, 257327, 257328, 257329, 257330, 257331} },
{"Brann's Trusty Pick", {257333, 20723, 257332, 257334, 257335, 257336, 257337, 257338, 257339, 257340, 257341, 257342, 257343, 257344} },
{"Corrupted Blackwood Staff", {257346, 20724, 257345, 257347, 257348, 257349, 257350, 257351, 257352, 257353, 257354, 257355, 257356, 257357} },
{"Ruby Crown of Restoration", {6020969, 20969, 257683, 257684, 257685, 257686, 257687, 257688, 257689, 257690, 257691, 257692, 257693, 257694} },
{"Ahn'Qiraj Wand [PH]", {6021124, 21124, 257767, 257768, 257769, 257770, 257771, 257772, 257773, 257774, 257775, 257776, 257777, 257778} },
{"Ahn'Qiraj Staff [PH]", {6021125, 21125, 257779, 257780, 257781, 257782, 257783, 257784, 257785, 257786, 257787, 257788, 257789, 257790} },
{"Death's Sting", {6021126, 21126, 321126, 221126, 1003904, 1011344, 1017998, 1024611, 1031175, 1037738, 1044301, 1050864, 1057427, 1063990} },
{"Ahn'Qiraj Mace [PH]", {6021127, 21127, 257791, 257792, 257793, 257794, 257795, 257796, 257797, 257798, 257799, 257800, 257801, 257802} },
{"Staff of the Qiraji Prophets", {6021128, 21128, 321128, 221128, 1003905, 1011345, 1017999, 1024612, 1031176, 1037739, 1044302, 1050865, 1057428, 1063991} },
{"Dark Edge of Insanity", {6021134, 21134, 321134, 221134, 1003906, 1011346, 1018000, 1024613, 1031177, 1037740, 1044303, 1050866, 1057429, 1063992} },
{"Gloves of Earthen Power", {6021178, 21178, 257803, 257804, 257805, 257806, 257807, 257808, 257809, 257810, 257811, 257812, 257813, 257814} },
{"Band of Earthen Wrath", {6021179, 21179, 257815, 257816, 257817, 257818, 257819, 257820, 257821, 257822, 257823, 257824, 257825, 257826} },
{"Earthstrike", {6021180, 21180, 257827, 257828, 257829, 257830, 257831, 257832, 257833, 257834, 257835, 257836, 257837, 257838} },
{"Grace of Earth", {6021181, 21181, 257839, 257840, 257841, 257842, 257843, 257844, 257845, 257846, 257847, 257848, 257849, 257850} },
{"Band of Earthen Might", {6021182, 21182, 257851, 257852, 257853, 257854, 257855, 257856, 257857, 257858, 257859, 257860, 257861, 257862} },
{"Earthpower Vest", {6021183, 21183, 257863, 257864, 257865, 257866, 257867, 257868, 257869, 257870, 257871, 257872, 257873, 257874} },
{"Deeprock Bracers", {6021184, 21184, 257875, 257876, 257877, 257878, 257879, 257880, 257881, 257882, 257883, 257884, 257885, 257886} },
{"Earthcalm Orb", {6021185, 21185, 257887, 257888, 257889, 257890, 257891, 257892, 257893, 257894, 257895, 257896, 257897, 257898} },
{"Rockfury Bracers", {6021186, 21186, 257899, 257900, 257901, 257902, 257903, 257904, 257905, 257906, 257907, 257908, 257909, 257910} },
{"Earthweave Cloak", {6021187, 21187, 257911, 257912, 257913, 257914, 257915, 257916, 257917, 257918, 257919, 257920, 257921, 257922} },
{"Fist of Cenarius", {6021188, 21188, 257923, 257924, 257925, 257926, 257927, 257928, 257929, 257930, 257931, 257932, 257933, 257934} },
{"Might of Cenarius", {6021189, 21189, 257935, 257936, 257937, 257938, 257939, 257940, 257941, 257942, 257943, 257944, 257945, 257946} },
{"Wrath of Cenarius", {6021190, 21190, 257947, 257948, 257949, 257950, 257951, 257952, 257953, 257954, 257955, 257956, 257957, 257958} },
{"Signet Ring of the Bronze Dragonflight", {6021196, 21196, 257959, 257960, 257961, 257962, 257963, 257964, 257965, 257966, 257967, 257968, 257969, 257970} },
{"Signet Ring of the Bronze Dragonflight", {6021197, 21197, 257971, 257972, 257973, 257974, 257975, 257976, 257977, 257978, 257979, 257980, 257981, 257982} },
{"Signet Ring of the Bronze Dragonflight", {6021198, 21198, 257983, 257984, 257985, 257986, 257987, 257988, 257989, 257990, 257991, 257992, 257993, 257994} },
{"Signet Ring of the Bronze Dragonflight", {6021199, 21199, 257995, 257996, 257997, 257998, 257999, 258000, 258001, 258002, 258003, 258004, 258005, 258006} },
{"Signet Ring of the Bronze Dragonflight", {6021200, 21200, 258007, 258008, 258009, 258010, 258011, 258012, 258013, 258014, 258015, 258016, 258017, 258018} },
{"Signet Ring of the Bronze Dragonflight", {6021201, 21201, 258019, 258020, 258021, 258022, 258023, 258024, 258025, 258026, 258027, 258028, 258029, 258030} },
{"Signet Ring of the Bronze Dragonflight", {6021202, 21202, 258031, 258032, 258033, 258034, 258035, 258036, 258037, 258038, 258039, 258040, 258041, 258042} },
{"Signet Ring of the Bronze Dragonflight", {6021203, 21203, 258043, 258044, 258045, 258046, 258047, 258048, 258049, 258050, 258051, 258052, 258053, 258054} },
{"Signet Ring of the Bronze Dragonflight", {6021204, 21204, 258055, 258056, 258057, 258058, 258059, 258060, 258061, 258062, 258063, 258064, 258065, 258066} },
{"Signet Ring of the Bronze Dragonflight", {6021205, 21205, 258067, 258068, 258069, 258070, 258071, 258072, 258073, 258074, 258075, 258076, 258077, 258078} },
{"Signet Ring of the Bronze Dragonflight", {6021206, 21206, 258079, 258080, 258081, 258082, 258083, 258084, 258085, 258086, 258087, 258088, 258089, 258090} },
{"Signet Ring of the Bronze Dragonflight", {6021207, 21207, 258091, 258092, 258093, 258094, 258095, 258096, 258097, 258098, 258099, 258100, 258101, 258102} },
{"Signet Ring of the Bronze Dragonflight", {6021208, 21208, 258103, 258104, 258105, 258106, 258107, 258108, 258109, 258110, 258111, 258112, 258113, 258114} },
{"Signet Ring of the Bronze Dragonflight", {6021209, 21209, 258115, 258116, 258117, 258118, 258119, 258120, 258121, 258122, 258123, 258124, 258125, 258126} },
{"Signet Ring of the Bronze Dragonflight", {6021210, 21210, 258127, 258128, 258129, 258130, 258131, 258132, 258133, 258134, 258135, 258136, 258137, 258138} },
{"Blessed Qiraji War Axe", {6021242, 21242, 321242, 221242, 1003910, 1011350, 1018004, 1024617, 1031181, 1037744, 1044307, 1050870, 1057433, 1063996} },
{"Blessed Qiraji Pugio", {6021244, 21244, 321244, 221244, 1003911, 1011351, 1018005, 1024618, 1031182, 1037745, 1044308, 1050871, 1057434, 1063997} },
{"Blessed Qiraji War Hammer", {6021268, 21268, 321268, 221268, 1003912, 1011352, 1018006, 1024619, 1031183, 1037746, 1044309, 1050872, 1057435, 1063998} },
{"Blessed Qiraji Bulwark", {6021269, 21269, 321269, 221269, 1003913, 1011353, 1018007, 1024620, 1031184, 1037747, 1044310, 1050873, 1057436, 1063999} },
{"Blessed Qiraji Musket", {6021272, 21272, 321272, 221272, 1003914, 1011354, 1018008, 1024621, 1031185, 1037748, 1044311, 1050874, 1057437, 1064000} },
{"Blessed Qiraji Acolyte Staff", {6021273, 21273, 321273, 221273, 1003915, 1011356, 1018009, 1024622, 1031186, 1037749, 1044312, 1050875, 1057438, 1064001} },
{"Blessed Qiraji Augur Staff", {6021275, 21275, 321275, 221275, 1003916, 1011357, 1018010, 1024623, 1031187, 1037750, 1044313, 1050876, 1057439, 1064002} },
{"Stormshroud Gloves", {6021278, 21278, 258139, 258140, 258141, 258142, 258143, 258144, 258145, 258146, 258147, 258148, 258149, 258150} },
{"Earth Warder's Vest", {258152, 21311, 258151, 258153, 258154, 258155, 258156, 258157, 258158, 258159, 258160, 258161, 258162, 258163} },
{"Belt of the Den Watcher", {258165, 21312, 258164, 258166, 258167, 258168, 258169, 258170, 258171, 258172, 258173, 258174, 258175, 258176} },
{"Leggings of the Ursa", {258178, 21316, 258177, 258179, 258180, 258181, 258182, 258183, 258184, 258185, 258186, 258187, 258188, 258189} },
{"Helm of the Pathfinder", {258191, 21317, 258190, 258192, 258193, 258194, 258195, 258196, 258197, 258198, 258199, 258200, 258201, 258202} },
{"Earth Warder's Gloves", {258204, 21318, 258203, 258205, 258206, 258207, 258208, 258209, 258210, 258211, 258212, 258213, 258214, 258215} },
{"Gloves of the Pathfinder", {258217, 21319, 258216, 258218, 258219, 258220, 258221, 258222, 258223, 258224, 258225, 258226, 258227, 258228} },
{"Vest of the Den Watcher", {258230, 21320, 258229, 258231, 258232, 258233, 258234, 258235, 258236, 258237, 258238, 258239, 258240, 258241} },
{"Ursa's Embrace", {258243, 21322, 258242, 258244, 258245, 258246, 258247, 258248, 258249, 258250, 258251, 258252, 258253, 258254} },
{"Defender of the Timbermaw", {6021326, 21326, 258255, 258256, 258257, 258258, 258259, 258260, 258261, 258262, 258263, 258264, 258265, 258266} },
{"Conqueror's Crown", {6021329, 21329, 321329, 221329, 1003917, 1011358, 1018011, 1024624, 1031188, 1037751, 1044314, 1050877, 1057440, 1064003} },
{"Conqueror's Spaulders", {6021330, 21330, 321330, 221330, 1003918, 1011359, 1018012, 1024625, 1031189, 1037752, 1044315, 1050878, 1057441, 1064004} },
{"Conqueror's Breastplate", {6021331, 21331, 321331, 221331, 1003919, 1011360, 1018013, 1024626, 1031190, 1037753, 1044316, 1050879, 1057442, 1064005} },
{"Conqueror's Legguards", {6021332, 21332, 321332, 221332, 1003920, 1011361, 1018014, 1024627, 1031191, 1037754, 1044317, 1050880, 1057443, 1064006} },
{"Conqueror's Greaves", {6021333, 21333, 321333, 221333, 1003921, 1011362, 1018015, 1024628, 1031192, 1037755, 1044318, 1050881, 1057444, 1064007} },
{"Doomcaller's Robes", {6021334, 21334, 321334, 221334, 1003922, 1011363, 1018016, 1024629, 1031193, 1037756, 1044319, 1050882, 1057445, 1064008} },
{"Doomcaller's Mantle", {6021335, 21335, 321335, 221335, 1003923, 1011364, 1018017, 1024630, 1031194, 1037757, 1044320, 1050883, 1057446, 1064009} },
{"Doomcaller's Trousers", {6021336, 21336, 321336, 221336, 1003924, 1011365, 1018018, 1024631, 1031195, 1037758, 1044321, 1050884, 1057447, 1064010} },
{"Doomcaller's Circlet", {6021337, 21337, 321337, 221337, 1003925, 1011366, 1018019, 1024632, 1031196, 1037759, 1044322, 1050885, 1057448, 1064011} },
{"Doomcaller's Footwraps", {6021338, 21338, 321338, 221338, 1003926, 1011367, 1018020, 1024633, 1031197, 1037760, 1044323, 1050886, 1057449, 1064012} },
{"Doomcaller's Handwraps [PH]", {6021339, 21339, 258267, 258268, 258269, 258270, 258271, 258272, 258273, 258274, 258275, 258276, 258277, 258278} },
{"Enigma Robes", {6021343, 21343, 321343, 221343, 1003927, 1011368, 1018021, 1024634, 1031198, 1037761, 1044324, 1050887, 1057450, 1064013} },
{"Enigma Boots", {6021344, 21344, 321344, 221344, 1003928, 1011369, 1018022, 1024635, 1031199, 1037762, 1044325, 1050888, 1057451, 1064014} },
{"Enigma Shoulderpads", {6021345, 21345, 321345, 221345, 1003929, 1011370, 1018023, 1024636, 1031200, 1037763, 1044326, 1050889, 1057452, 1064015} },
{"Enigma Leggings", {6021346, 21346, 321346, 221346, 1003930, 1011371, 1018024, 1024637, 1031201, 1037764, 1044327, 1050890, 1057453, 1064016} },
{"Enigma Circlet", {6021347, 21347, 321347, 221347, 1003931, 1011372, 1018025, 1024638, 1031202, 1037765, 1044328, 1050891, 1057454, 1064017} },
{"Tiara of the Oracle", {6021348, 21348, 321348, 221348, 1003932, 1011373, 1018026, 1024639, 1031203, 1037766, 1044329, 1050892, 1057455, 1064018} },
{"Footwraps of the Oracle", {6021349, 21349, 321349, 221349, 1003933, 1011374, 1018027, 1024640, 1031204, 1037767, 1044330, 1050893, 1057456, 1064019} },
{"Mantle of the Oracle", {6021350, 21350, 321350, 221350, 1003934, 1011375, 1018028, 1024641, 1031205, 1037768, 1044331, 1050894, 1057457, 1064020} },
{"Vestments of the Oracle", {6021351, 21351, 321351, 221351, 1003935, 1011376, 1018029, 1024642, 1031206, 1037769, 1044332, 1050895, 1057458, 1064021} },
{"Trousers of the Oracle", {6021352, 21352, 321352, 221352, 1003936, 1011377, 1018030, 1024643, 1031207, 1037770, 1044333, 1050896, 1057459, 1064022} },
{"Genesis Helm", {6021353, 21353, 321353, 221353, 1003937, 1011378, 1018031, 1024644, 1031208, 1037771, 1044334, 1050897, 1057460, 1064023} },
{"Genesis Shoulderpads", {6021354, 21354, 321354, 221354, 1003938, 1011379, 1018032, 1024645, 1031209, 1037772, 1044335, 1050898, 1057461, 1064024} },
{"Genesis Boots", {6021355, 21355, 321355, 221355, 1003939, 1011380, 1018033, 1024646, 1031210, 1037773, 1044336, 1050899, 1057462, 1064025} },
{"Genesis Trousers", {6021356, 21356, 321356, 221356, 1003940, 1011381, 1018034, 1024647, 1031211, 1037774, 1044337, 1050900, 1057463, 1064026} },
{"Genesis Vest", {6021357, 21357, 321357, 221357, 1003941, 1011382, 1018035, 1024648, 1031212, 1037775, 1044338, 1050901, 1057464, 1064027} },
{"Deathdealer's Boots", {6021359, 21359, 321359, 221359, 1003942, 1011383, 1018036, 1024649, 1031213, 1037776, 1044339, 1050902, 1057465, 1064028} },
{"Deathdealer's Helm", {6021360, 21360, 321360, 221360, 1003943, 1011384, 1018037, 1024650, 1031214, 1037777, 1044340, 1050903, 1057466, 1064029} },
{"Deathdealer's Spaulders", {6021361, 21361, 321361, 221361, 1003944, 1011385, 1018038, 1024651, 1031215, 1037778, 1044341, 1050904, 1057467, 1064030} },
{"Deathdealer's Leggings", {6021362, 21362, 321362, 221362, 1003945, 1011386, 1018039, 1024652, 1031216, 1037779, 1044342, 1050905, 1057468, 1064031} },
{"Deathdealer's Vest", {6021364, 21364, 321364, 221364, 1003946, 1011387, 1018040, 1024653, 1031217, 1037780, 1044343, 1050906, 1057469, 1064032} },
{"Striker's Footguards", {6021365, 21365, 321365, 221365, 1003947, 1011388, 1018041, 1024654, 1031218, 1037781, 1044344, 1050907, 1057470, 1064033} },
{"Striker's Diadem", {6021366, 21366, 321366, 221366, 1003948, 1011389, 1018042, 1024655, 1031219, 1037782, 1044345, 1050908, 1057471, 1064034} },
{"Striker's Pauldrons", {6021367, 21367, 321367, 221367, 1003949, 1011390, 1018043, 1024656, 1031220, 1037783, 1044346, 1050909, 1057472, 1064035} },
{"Striker's Leggings", {6021368, 21368, 321368, 221368, 1003950, 1011391, 1018044, 1024657, 1031221, 1037784, 1044347, 1050910, 1057473, 1064036} },
{"Striker's Hauberk", {6021370, 21370, 321370, 221370, 1003951, 1011392, 1018045, 1024658, 1031222, 1037785, 1044348, 1050911, 1057474, 1064037} },
{"Stormcaller's Diadem", {6021372, 21372, 321372, 221372, 1003952, 1011393, 1018046, 1024659, 1031223, 1037786, 1044349, 1050912, 1057475, 1064038} },
{"Stormcaller's Footguards", {6021373, 21373, 321373, 221373, 1003953, 1011394, 1018047, 1024660, 1031224, 1037787, 1044350, 1050913, 1057476, 1064039} },
{"Stormcaller's Hauberk", {6021374, 21374, 321374, 221374, 1003954, 1011396, 1018048, 1024661, 1031225, 1037788, 1044351, 1050914, 1057477, 1064040} },
{"Stormcaller's Leggings", {6021375, 21375, 321375, 221375, 1003955, 1011397, 1018049, 1024662, 1031226, 1037789, 1044352, 1050915, 1057478, 1064041} },
{"Stormcaller's Pauldrons", {6021376, 21376, 321376, 221376, 1003956, 1011398, 1018050, 1024663, 1031227, 1037790, 1044353, 1050916, 1057479, 1064042} },
{"Avenger's Crown", {6021387, 21387, 321387, 221387, 1003957, 1011399, 1018051, 1024664, 1031228, 1037791, 1044354, 1050917, 1057480, 1064043} },
{"Avenger's Greaves", {6021388, 21388, 321388, 221388, 1003958, 1011400, 1018052, 1024665, 1031229, 1037792, 1044355, 1050918, 1057481, 1064044} },
{"Avenger's Breastplate", {6021389, 21389, 321389, 221389, 1003959, 1011401, 1018053, 1024666, 1031230, 1037793, 1044356, 1050919, 1057482, 1064045} },
{"Avenger's Legguards", {6021390, 21390, 321390, 221390, 1003960, 1011402, 1018054, 1024667, 1031231, 1037794, 1044357, 1050920, 1057483, 1064046} },
{"Avenger's Pauldrons", {6021391, 21391, 321391, 221391, 1003961, 1011403, 1018055, 1024668, 1031232, 1037795, 1044358, 1050921, 1057484, 1064047} },
{"Sickle of Unyielding Strength", {6021392, 21392, 321392, 221392, 1003962, 1011404, 1018056, 1024669, 1031233, 1037796, 1044359, 1050922, 1057485, 1064048} },
{"Signet of Unyielding Strength", {6021393, 21393, 321393, 221393, 1003963, 1011406, 1018057, 1024670, 1031234, 1037797, 1044360, 1050923, 1057486, 1064049} },
{"Drape of Unyielding Strength", {6021394, 21394, 321394, 221394, 1003964, 1011407, 1018058, 1024671, 1031235, 1037798, 1044361, 1050924, 1057487, 1064050} },
{"Blade of Eternal Justice", {6021395, 21395, 321395, 221395, 1003965, 1011408, 1018059, 1024672, 1031236, 1037799, 1044362, 1050925, 1057488, 1064051} },
{"Ring of Eternal Justice", {6021396, 21396, 321396, 221396, 1003966, 1011409, 1018060, 1024673, 1031237, 1037800, 1044363, 1050926, 1057489, 1064052} },
{"Cape of Eternal Justice", {6021397, 21397, 321397, 221397, 1003967, 1011410, 1018061, 1024674, 1031238, 1037801, 1044364, 1050927, 1057490, 1064053} },
{"Hammer of the Gathering Storm", {6021398, 21398, 321398, 221398, 1003968, 1011411, 1018062, 1024675, 1031239, 1037802, 1044365, 1050928, 1057491, 1064054} },
{"Ring of the Gathering Storm", {6021399, 21399, 321399, 221399, 1003969, 1011412, 1018063, 1024676, 1031240, 1037803, 1044366, 1050929, 1057492, 1064055} },
{"Cloak of the Gathering Storm", {6021400, 21400, 321400, 221400, 1003970, 1011413, 1018064, 1024677, 1031241, 1037804, 1044367, 1050930, 1057493, 1064056} },
{"Scythe of the Unseen Path", {6021401, 21401, 321401, 221401, 1003971, 1011414, 1018065, 1024678, 1031242, 1037805, 1044368, 1050931, 1057494, 1064057} },
{"Signet of the Unseen Path", {6021402, 21402, 321402, 221402, 1003972, 1011415, 1018066, 1024679, 1031243, 1037806, 1044369, 1050932, 1057495, 1064058} },
{"Cloak of the Unseen Path", {6021403, 21403, 321403, 221403, 1003973, 1011416, 1018067, 1024680, 1031244, 1037807, 1044370, 1050933, 1057496, 1064059} },
{"Dagger of Veiled Shadows", {6021404, 21404, 321404, 221404, 1003974, 1011417, 1018068, 1024681, 1031245, 1037808, 1044371, 1050934, 1057497, 1064060} },
{"Band of Veiled Shadows", {6021405, 21405, 321405, 221405, 1003975, 1011418, 1018069, 1024682, 1031246, 1037809, 1044372, 1050935, 1057498, 1064061} },
{"Cloak of Veiled Shadows", {6021406, 21406, 321406, 221406, 1003976, 1011419, 1018070, 1024683, 1031247, 1037810, 1044373, 1050936, 1057499, 1064062} },
{"Mace of Unending Life", {6021407, 21407, 321407, 221407, 1003977, 1011420, 1018071, 1024684, 1031248, 1037811, 1044374, 1050937, 1057500, 1064063} },
{"Band of Unending Life", {6021408, 21408, 321408, 221408, 1003978, 1011421, 1018072, 1024685, 1031249, 1037812, 1044375, 1050938, 1057501, 1064064} },
{"Cloak of Unending Life", {6021409, 21409, 321409, 221409, 1003979, 1011422, 1018073, 1024686, 1031250, 1037813, 1044376, 1050939, 1057502, 1064065} },
{"Gavel of Infinite Wisdom", {6021410, 21410, 321410, 221410, 1003980, 1011423, 1018074, 1024687, 1031251, 1037814, 1044377, 1050940, 1057503, 1064066} },
{"Ring of Infinite Wisdom", {6021411, 21411, 321411, 221411, 1003981, 1011424, 1018075, 1024688, 1031252, 1037815, 1044378, 1050941, 1057504, 1064067} },
{"Shroud of Infinite Wisdom", {6021412, 21412, 321412, 221412, 1003982, 1011425, 1018076, 1024689, 1031253, 1037816, 1044379, 1050942, 1057505, 1064068} },
{"Blade of Vaulted Secrets", {6021413, 21413, 321413, 221413, 1003983, 1011426, 1018077, 1024690, 1031254, 1037817, 1044380, 1050943, 1057506, 1064069} },
{"Band of Vaulted Secrets", {6021414, 21414, 321414, 221414, 1003984, 1011427, 1018078, 1024691, 1031255, 1037818, 1044381, 1050944, 1057507, 1064070} },
{"Drape of Vaulted Secrets", {6021415, 21415, 321415, 221415, 1003985, 1011428, 1018079, 1024692, 1031256, 1037819, 1044382, 1050945, 1057508, 1064071} },
{"Kris of Unspoken Names", {6021416, 21416, 321416, 221416, 1003986, 1011429, 1018080, 1024693, 1031257, 1037820, 1044383, 1050946, 1057509, 1064072} },
{"Ring of Unspoken Names", {6021417, 21417, 321417, 221417, 1003987, 1011430, 1018081, 1024694, 1031258, 1037821, 1044384, 1050947, 1057510, 1064073} },
{"Shroud of Unspoken Names", {6021418, 21418, 321418, 221418, 1003988, 1011431, 1018082, 1024695, 1031259, 1037822, 1044385, 1050948, 1057511, 1064074} },
{"Staff of the Ruins", {6021452, 21452, 321452, 221452, 1003989, 1011432, 1018083, 1024696, 1031260, 1037823, 1044386, 1050949, 1057512, 1064075} },
{"Mantle of the Horusath", {6021453, 21453, 321453, 221453, 1003990, 1011433, 1018084, 1024697, 1031261, 1037824, 1044387, 1050950, 1057513, 1064076} },
{"Runic Stone Shoulders", {6021454, 21454, 321454, 221454, 1003991, 1011434, 1018085, 1024698, 1031262, 1037825, 1044388, 1050951, 1057514, 1064077} },
{"Southwind Helm", {6021455, 21455, 321455, 221455, 1003992, 1011435, 1018086, 1024699, 1031263, 1037826, 1044389, 1050952, 1057515, 1064078} },
{"Sandstorm Cloak", {6021456, 21456, 321456, 221456, 1003993, 1011436, 1018087, 1024700, 1031264, 1037827, 1044390, 1050953, 1057516, 1064079} },
{"Bracers of Brutality", {6021457, 21457, 321457, 221457, 1003994, 1011437, 1018088, 1024701, 1031265, 1037828, 1044391, 1050954, 1057517, 1064080} },
{"Gauntlets of New Life", {6021458, 21458, 321458, 221458, 1003995, 1011438, 1018089, 1024702, 1031266, 1037829, 1044392, 1050955, 1057518, 1064081} },
{"Crossbow of Imminent Doom", {6021459, 21459, 321459, 221459, 1003996, 1011439, 1018090, 1024703, 1031267, 1037830, 1044393, 1050956, 1057519, 1064082} },
{"Helm of Domination", {6021460, 21460, 321460, 221460, 1003997, 1011440, 1018091, 1024704, 1031268, 1037831, 1044394, 1050957, 1057520, 1064083} },
{"Leggings of the Black Blizzard", {6021461, 21461, 321461, 221461, 1003998, 1011441, 1018092, 1024705, 1031269, 1037832, 1044395, 1050958, 1057521, 1064084} },
{"Gloves of Dark Wisdom", {6021462, 21462, 321462, 221462, 1003999, 1011442, 1018093, 1024706, 1031270, 1037833, 1044396, 1050959, 1057522, 1064085} },
{"Ossirian's Binding", {6021463, 21463, 321463, 221463, 1004019, 1011443, 1018094, 1024707, 1031271, 1037834, 1044397, 1050960, 1057523, 1064086} },
{"Shackles of the Unscarred", {6021464, 21464, 321464, 221464, 1004020, 1011444, 1018095, 1024708, 1031272, 1037835, 1044398, 1050961, 1057524, 1064087} },
{"Stinger of Ayamiss", {6021466, 21466, 321466, 221466, 1004022, 1011445, 1018096, 1024709, 1031273, 1037836, 1044399, 1050962, 1057525, 1064088} },
{"Thick Silithid Chestguard", {6021467, 21467, 321467, 221467, 1004023, 1011446, 1018097, 1024710, 1031274, 1037837, 1044400, 1050963, 1057526, 1064089} },
{"Mantle of Maz'Nadir", {6021468, 21468, 321468, 221468, 1004025, 1011447, 1018098, 1024711, 1031275, 1037838, 1044401, 1050964, 1057527, 1064090} },
{"Gauntlets of Southwind", {6021469, 21469, 321469, 221469, 1004027, 1011448, 1018099, 1024712, 1031276, 1037839, 1044402, 1050965, 1057528, 1064091} },
{"Cloak of the Savior", {6021470, 21470, 321470, 221470, 1004028, 1011449, 1018100, 1024713, 1031277, 1037840, 1044403, 1050966, 1057529, 1064092} },
{"Talon of Furious Concentration", {6021471, 21471, 321471, 221471, 1004029, 1011450, 1018101, 1024714, 1031278, 1037841, 1044404, 1050967, 1057530, 1064093} },
{"Dustwind Turban", {6021472, 21472, 321472, 221472, 1004030, 1011451, 1018102, 1024715, 1031279, 1037842, 1044405, 1050968, 1057531, 1064094} },
{"Eye of Moam", {6021473, 21473, 321473, 221473, 1004031, 1011452, 1018103, 1024716, 1031280, 1037843, 1044406, 1050969, 1057532, 1064095} },
{"Chitinous Shoulderguards", {6021474, 21474, 321474, 221474, 1004032, 1011453, 1018104, 1024717, 1031281, 1037844, 1044407, 1050970, 1057533, 1064096} },
{"Legplates of the Destroyer", {6021475, 21475, 321475, 221475, 1004033, 1011454, 1018105, 1024718, 1031282, 1037845, 1044408, 1050971, 1057534, 1064097} },
{"Obsidian Scaled Leggings", {6021476, 21476, 321476, 221476, 1004034, 1011456, 1018106, 1024719, 1031283, 1037846, 1044409, 1050972, 1057535, 1064098} },
{"Ring of Fury", {6021477, 21477, 321477, 221477, 1004042, 1011457, 1018107, 1024720, 1031284, 1037847, 1044410, 1050973, 1057536, 1064099} },
{"Bow of Taut Sinew", {6021478, 21478, 321478, 221478, 1004043, 1011458, 1018108, 1024721, 1031285, 1037848, 1044411, 1050974, 1057537, 1064100} },
{"Gauntlets of the Immovable", {6021479, 21479, 321479, 221479, 1004044, 1011459, 1018109, 1024722, 1031286, 1037849, 1044412, 1050975, 1057538, 1064101} },
{"Scaled Silithid Gauntlets", {6021480, 21480, 321480, 221480, 1004046, 1011460, 1018110, 1024723, 1031287, 1037850, 1044413, 1050976, 1057539, 1064102} },
{"Boots of the Desert Protector", {6021481, 21481, 321481, 221481, 1004047, 1011461, 1018111, 1024724, 1031288, 1037851, 1044414, 1050977, 1057540, 1064103} },
{"Boots of the Fiery Sands", {6021482, 21482, 321482, 221482, 1004048, 1011462, 1018112, 1024725, 1031289, 1037852, 1044415, 1050978, 1057541, 1064104} },
{"Ring of the Desert Winds", {6021483, 21483, 321483, 221483, 1004049, 1011463, 1018113, 1024726, 1031290, 1037853, 1044416, 1050979, 1057542, 1064105} },
{"Helm of Regrowth", {6021484, 21484, 321484, 221484, 1004050, 1011464, 1018114, 1024727, 1031291, 1037854, 1044417, 1050980, 1057543, 1064106} },
{"Buru's Skull Fragment", {6021485, 21485, 321485, 221485, 1004051, 1011466, 1018115, 1024728, 1031292, 1037855, 1044418, 1050981, 1057544, 1064107} },
{"Gloves of the Swarm", {6021486, 21486, 321486, 221486, 1004052, 1011467, 1018116, 1024729, 1031293, 1037856, 1044419, 1050982, 1057545, 1064108} },
{"Slimy Scaled Gauntlets", {6021487, 21487, 321487, 221487, 1004053, 1011468, 1018117, 1024730, 1031294, 1037857, 1044420, 1050983, 1057546, 1064109} },
{"Fetish of Chitinous Spikes", {6021488, 21488, 321488, 221488, 1004054, 1011469, 1018118, 1024731, 1031295, 1037858, 1044421, 1050984, 1057547, 1064110} },
{"Quicksand Waders", {6021489, 21489, 321489, 221489, 1004055, 1011470, 1018119, 1024732, 1031296, 1037859, 1044422, 1050985, 1057548, 1064111} },
{"Slime Kickers", {6021490, 21490, 321490, 221490, 1004056, 1011472, 1018120, 1024733, 1031297, 1037860, 1044423, 1050986, 1057549, 1064112} },
{"Scaled Bracers of the Gorger", {6021491, 21491, 321491, 221491, 1004057, 1011473, 1018121, 1024734, 1031298, 1037861, 1044424, 1050987, 1057550, 1064113} },
{"Manslayer of the Qiraji", {6021492, 21492, 321492, 221492, 1004059, 1011474, 1018122, 1024735, 1031299, 1037862, 1044425, 1050988, 1057551, 1064114} },
{"Boots of the Vanguard", {6021493, 21493, 321493, 221493, 1004060, 1011475, 1018123, 1024736, 1031300, 1037863, 1044426, 1050989, 1057552, 1064115} },
{"Southwind's Grasp", {6021494, 21494, 321494, 221494, 1004062, 1011476, 1018124, 1024737, 1031301, 1037864, 1044427, 1050990, 1057553, 1064116} },
{"Legplates of the Qiraji Command", {6021495, 21495, 321495, 221495, 1004063, 1011477, 1018125, 1024738, 1031302, 1037865, 1044428, 1050991, 1057554, 1064117} },
{"Bracers of Qiraji Command", {6021496, 21496, 321496, 221496, 1004064, 1011478, 1018126, 1024739, 1031303, 1037866, 1044429, 1050992, 1057555, 1064118} },
{"Boots of the Qiraji General", {6021497, 21497, 321497, 221497, 1004069, 1011479, 1018127, 1024740, 1031304, 1037867, 1044430, 1050993, 1057556, 1064119} },
{"Qiraji Sacrificial Dagger", {6021498, 21498, 321498, 221498, 1004073, 1011480, 1018128, 1024741, 1031305, 1037868, 1044431, 1050994, 1057557, 1064120} },
{"Vestments of the Shifting Sands", {6021499, 21499, 321499, 221499, 1004074, 1011481, 1018129, 1024742, 1031306, 1037869, 1044432, 1050995, 1057558, 1064121} },
{"Belt of the Inquisition", {6021500, 21500, 321500, 221500, 1004075, 1011482, 1018130, 1024743, 1031307, 1037870, 1044433, 1050996, 1057559, 1064122} },
{"Toughened Silithid Hide Gloves", {6021501, 21501, 321501, 221501, 1004076, 1011483, 1018131, 1024744, 1031308, 1037871, 1044434, 1050997, 1057560, 1064123} },
{"Sand Reaver Wristguards", {6021502, 21502, 321502, 221502, 1004077, 1011484, 1018132, 1024745, 1031309, 1037872, 1044435, 1050998, 1057561, 1064124} },
{"Belt of the Sand Reaver", {6021503, 21503, 321503, 221503, 1004078, 1011485, 1018133, 1024746, 1031310, 1037873, 1044436, 1050999, 1057562, 1064125} },
{"Charm of the Shifting Sands", {6021504, 21504, 100726, 221504, 1004079, 1011486, 1018134, 1024747, 1031311, 1037874, 1044437, 1051000, 1057563, 1064126} },
{"Choker of the Shifting Sands", {6021505, 21505, 100766, 221505, 1004081, 1011487, 1018135, 1024748, 1031312, 1037875, 1044438, 1051001, 1057564, 1064127} },
{"Pendant of the Shifting Sands", {6021506, 21506, 123397, 221506, 1004082, 1011488, 1018136, 1024749, 1031313, 1037876, 1044439, 1051002, 1057565, 1064128} },
{"Amulet of the Shifting Sands", {6021507, 21507, 100067, 221507, 1004084, 1011489, 1018137, 1024750, 1031314, 1037877, 1044440, 1051003, 1057566, 1064129} },
{"Gnomish Turban of Psychic Might", {6021517, 21517, 258279, 258280, 258281, 258282, 258283, 258284, 258285, 258286, 258287, 258288, 258289, 258290} },
{"Ravencrest's Legacy", {6021520, 21520, 258291, 258292, 258293, 258294, 258295, 258296, 258297, 258298, 258299, 258300, 258301, 258302} },
{"Runesword of the Red", {6021521, 21521, 258303, 258304, 258305, 258306, 258307, 258308, 258309, 258310, 258311, 258312, 258313, 258314} },
{"Shadowsong's Sorrow", {6021522, 21522, 258315, 258316, 258317, 258318, 258319, 258320, 258321, 258322, 258323, 258324, 258325, 258326} },
{"Fang of Korialstrasz", {6021523, 21523, 258327, 258328, 258329, 258330, 258331, 258332, 258333, 258334, 258335, 258336, 258337, 258338} },
{"Band of Icy Depths", {6021526, 21526, 258339, 258340, 258341, 258342, 258343, 258344, 258345, 258346, 258347, 258348, 258349, 258350} },
{"Darkwater Robes", {6021527, 21527, 258351, 258352, 258353, 258354, 258355, 258356, 258357, 258358, 258359, 258360, 258361, 258362} },
{"Amulet of Shadow Shielding", {6021529, 21529, 258363, 258364, 258365, 258366, 258367, 258368, 258369, 258370, 258371, 258372, 258373, 258374} },
{"Onyx Embedded Leggings", {6021530, 21530, 258375, 258376, 258377, 258378, 258379, 258380, 258381, 258382, 258383, 258384, 258385, 258386} },
{"Drake Tooth Necklace", {6021531, 21531, 258387, 258388, 258389, 258390, 258391, 258392, 258393, 258394, 258395, 258396, 258397, 258398} },
{"Drudge Boots", {6021532, 21532, 258399, 258400, 258401, 258402, 258403, 258404, 258405, 258406, 258407, 258408, 258409, 258410} },
{"Vanquished Tentacle of C'Thun", {6021579, 21579, 321579, 221579, 1004085, 1011490, 1018138, 1024751, 1031315, 1037878, 1044441, 1051004, 1057567, 1064130} },
{"Gauntlets of Annihilation", {6021581, 21581, 321581, 221581, 1004086, 1011491, 1018139, 1024752, 1031316, 1037879, 1044442, 1051005, 1057568, 1064131} },
{"Grasp of the Old God", {6021582, 21582, 321582, 221582, 1004087, 1011492, 1018140, 1024753, 1031317, 1037880, 1044443, 1051006, 1057569, 1064132} },
{"Cloak of Clarity", {6021583, 21583, 321583, 221583, 1004090, 1011493, 1018141, 1024754, 1031318, 1037881, 1044444, 1051007, 1057570, 1064133} },
{"Bracers of Eternal Reckoning", {6021584, 21584, 258471, 258472, 258473, 258474, 258475, 258476, 258477, 258478, 258479, 258480, 258481, 258482} },
{"Dark Storm Gauntlets", {6021585, 21585, 321585, 221585, 1004091, 1011494, 1018142, 1024755, 1031319, 1037882, 1044445, 1051008, 1057571, 1064134} },
{"Belt of Never-ending Agony", {6021586, 21586, 321586, 221586, 1004093, 1011495, 1018143, 1024756, 1031320, 1037883, 1044446, 1051009, 1057572, 1064135} },
{"Wristguards of Castigation", {6021587, 21587, 258483, 258484, 258485, 258486, 258487, 258488, 258489, 258490, 258491, 258492, 258493, 258494} },
{"Wristguards of Elemental Fury", {6021588, 21588, 258495, 258496, 258497, 258498, 258499, 258500, 258501, 258502, 258503, 258504, 258505, 258506} },
{"Bracers of the Fallen Son", {6021594, 21594, 258507, 258508, 258509, 258510, 258511, 258512, 258513, 258514, 258515, 258516, 258517, 258518} },
{"Ring of the Godslayer", {6021596, 21596, 321596, 221596, 1004094, 1011496, 1018144, 1024757, 1031321, 1037884, 1044447, 1051010, 1057573, 1064136} },
{"Royal Scepter of Vek'lor", {6021597, 21597, 321597, 221597, 1004095, 1011497, 1018145, 1024758, 1031322, 1037885, 1044448, 1051011, 1057574, 1064137} },
{"Royal Qiraji Belt", {6021598, 21598, 321598, 221598, 1004096, 1011498, 1018146, 1024759, 1031323, 1037886, 1044449, 1051012, 1057575, 1064138} },
{"Vek'lor's Gloves of Devastation", {6021599, 21599, 321599, 221599, 1004097, 1011499, 1018147, 1024760, 1031324, 1037887, 1044450, 1051013, 1057576, 1064139} },
{"Boots of Epiphany", {6021600, 21600, 321600, 221600, 1004098, 1011500, 1018148, 1024761, 1031325, 1037888, 1044451, 1051014, 1057577, 1064140} },
{"Ring of Emperor Vek'lor", {6021601, 21601, 321601, 221601, 1004100, 1011501, 1018149, 1024762, 1031326, 1037889, 1044452, 1051015, 1057578, 1064141} },
{"Qiraji Execution Bracers", {6021602, 21602, 321602, 221602, 1004101, 1011502, 1018150, 1024763, 1031327, 1037890, 1044453, 1051016, 1057579, 1064142} },
{"Wand of Qiraji Nobility", {6021603, 21603, 321603, 221603, 1004102, 1011503, 1018151, 1024764, 1031328, 1037891, 1044454, 1051017, 1057580, 1064143} },
{"Bracelets of Royal Redemption", {6021604, 21604, 321604, 221604, 1004104, 1011504, 1018152, 1024765, 1031329, 1037892, 1044455, 1051018, 1057581, 1064144} },
{"Gloves of the Hidden Temple", {6021605, 21605, 321605, 221605, 1004105, 1011505, 1018153, 1024766, 1031330, 1037893, 1044456, 1051019, 1057582, 1064145} },
{"Belt of the Fallen Emperor", {6021606, 21606, 321606, 221606, 1004106, 1011507, 1018154, 1024767, 1031331, 1037894, 1044457, 1051020, 1057583, 1064146} },
{"Grasp of the Fallen Emperor", {6021607, 21607, 321607, 221607, 1004108, 1011508, 1018155, 1024768, 1031332, 1037895, 1044458, 1051021, 1057584, 1064147} },
{"Amulet of Vek'nilash", {6021608, 21608, 321608, 221608, 1004109, 1011509, 1018156, 1024769, 1031333, 1037896, 1044459, 1051022, 1057585, 1064148} },
{"Regenerating Belt of Vek'nilash", {6021609, 21609, 321609, 221609, 1004110, 1011510, 1018157, 1024770, 1031334, 1037897, 1044460, 1051023, 1057586, 1064149} },
{"Wormscale Blocker", {6021610, 21610, 321610, 221610, 1004113, 1011513, 1018158, 1024771, 1031335, 1037898, 1044461, 1051024, 1057587, 1064150} },
{"Burrower Bracers", {6021611, 21611, 321611, 221611, 1004114, 1011514, 1018159, 1024772, 1031336, 1037899, 1044462, 1051025, 1057588, 1064151} },
{"Wormscale Stompers", {6021612, 21612, 258519, 258520, 258521, 258522, 258523, 258524, 258525, 258526, 258527, 258528, 258529, 258530} },
{"Wormhide Boots", {6021613, 21613, 258531, 258532, 258533, 258534, 258535, 258536, 258537, 258538, 258539, 258540, 258541, 258542} },
{"Wormhide Protector", {6021614, 21614, 258543, 258544, 258545, 258546, 258547, 258548, 258549, 258550, 258551, 258552, 258553, 258554} },
{"Don Rigoberto's Lost Hat", {6021615, 21615, 321615, 221615, 1004115, 1011515, 1018160, 1024773, 1031337, 1037900, 1044463, 1051026, 1057589, 1064152} },
{"Huhuran's Stinger", {6021616, 21616, 321616, 221616, 1004116, 1011516, 1018161, 1024774, 1031338, 1037901, 1044464, 1051027, 1057590, 1064153} },
{"Wasphide Gauntlets", {6021617, 21617, 321617, 221617, 1004118, 1011517, 1018162, 1024775, 1031339, 1037902, 1044465, 1051028, 1057591, 1064154} },
{"Hive Defiler Wristguards", {6021618, 21618, 321618, 221618, 1004119, 1011518, 1018163, 1024776, 1031340, 1037903, 1044466, 1051029, 1057592, 1064155} },
{"Gloves of the Messiah", {6021619, 21619, 321619, 221619, 1004120, 1011519, 1018164, 1024777, 1031341, 1037904, 1044467, 1051030, 1057593, 1064156} },
{"Ring of the Martyr", {6021620, 21620, 321620, 221620, 1004121, 1011520, 1018165, 1024778, 1031342, 1037905, 1044468, 1051031, 1057594, 1064157} },
{"Cloak of the Golden Hive", {6021621, 21621, 321621, 221621, 1004122, 1011521, 1018166, 1024779, 1031343, 1037906, 1044469, 1051032, 1057595, 1064158} },
{"Sharpened Silithid Femur", {6021622, 21622, 321622, 221622, 1004124, 1011522, 1018167, 1024780, 1031344, 1037907, 1044470, 1051033, 1057596, 1064159} },
{"Gauntlets of the Righteous Champion", {6021623, 21623, 321623, 221623, 1004125, 1011523, 1018168, 1024781, 1031345, 1037908, 1044471, 1051034, 1057597, 1064160} },
{"Gauntlets of Kalimdor", {6021624, 21624, 321624, 221624, 1004126, 1011524, 1018169, 1024782, 1031346, 1037909, 1044472, 1051035, 1057598, 1064161} },
{"Scarab Brooch", {6021625, 21625, 321625, 221625, 1004127, 1011525, 1018170, 1024783, 1031347, 1037910, 1044473, 1051036, 1057599, 1064162} },
{"Slime-coated Leggings", {6021626, 21626, 321626, 221626, 1004128, 1011526, 1018171, 1024784, 1031348, 1037911, 1044474, 1051037, 1057600, 1064163} },
{"Cloak of Untold Secrets", {6021627, 21627, 321627, 221627, 1004129, 1011527, 1018172, 1024785, 1031349, 1037912, 1044475, 1051038, 1057601, 1064164} },
{"Barb of the Sand Reaver", {6021635, 21635, 321635, 221635, 1004130, 1011528, 1018173, 1024786, 1031350, 1037913, 1044476, 1051039, 1057602, 1064165} },
{"Pauldrons of the Unrelenting", {6021639, 21639, 321639, 221639, 1004131, 1011529, 1018174, 1024787, 1031351, 1037914, 1044477, 1051040, 1057603, 1064166} },
{"Hive Tunneler's Boots", {6021645, 21645, 321645, 221645, 1004132, 1011530, 1018175, 1024788, 1031352, 1037915, 1044478, 1051041, 1057604, 1064167} },
{"Fetish of the Sand Reaver", {6021647, 21647, 321647, 221647, 1004133, 1011531, 1018176, 1024789, 1031353, 1037916, 1044479, 1051042, 1057605, 1064168} },
{"Recomposed Boots", {6021648, 21648, 321648, 221648, 1004135, 1011532, 1018177, 1024790, 1031354, 1037917, 1044480, 1051043, 1057606, 1064169} },
{"Ancient Qiraji Ripper", {6021650, 21650, 321650, 221650, 1004136, 1011533, 1018178, 1024791, 1031355, 1037918, 1044481, 1051044, 1057607, 1064170} },
{"Scaled Sand Reaver Leggings", {6021651, 21651, 321651, 221651, 1004137, 1011534, 1018179, 1024792, 1031356, 1037919, 1044482, 1051045, 1057608, 1064171} },
{"Silithid Carapace Chestguard", {6021652, 21652, 321652, 221652, 1004140, 1011535, 1018180, 1024793, 1031357, 1037920, 1044483, 1051046, 1057609, 1064172} },
{"Robes of the Guardian Saint", {6021663, 21663, 321663, 221663, 1004141, 1011536, 1018181, 1024794, 1031358, 1037921, 1044484, 1051047, 1057610, 1064173} },
{"Barbed Choker", {6021664, 21664, 321664, 221664, 1004142, 1011537, 1018182, 1024795, 1031359, 1037922, 1044485, 1051048, 1057611, 1064174} },
{"Mantle of Wicked Revenge", {6021665, 21665, 321665, 221665, 1004143, 1011538, 1018183, 1024796, 1031360, 1037923, 1044486, 1051049, 1057612, 1064175} },
{"Sartura's Might", {6021666, 21666, 321666, 221666, 1004145, 1011539, 1018184, 1024797, 1031361, 1037924, 1044487, 1051050, 1057613, 1064176} },
{"Legplates of Blazing Light", {6021667, 21667, 321667, 221667, 1004147, 1011540, 1018185, 1024798, 1031362, 1037925, 1044488, 1051051, 1057614, 1064177} },
{"Scaled Leggings of Qiraji Fury", {6021668, 21668, 321668, 221668, 1004148, 1011541, 1018186, 1024799, 1031363, 1037926, 1044489, 1051052, 1057615, 1064178} },
{"Creeping Vine Helm", {6021669, 21669, 321669, 221669, 1004149, 1011542, 1018187, 1024800, 1031364, 1037927, 1044490, 1051053, 1057616, 1064179} },
{"Badge of the Swarmguard", {6021670, 21670, 321670, 221670, 1004151, 1011543, 1018188, 1024801, 1031365, 1037928, 1044491, 1051054, 1057617, 1064180} },
{"Robes of the Battleguard", {6021671, 21671, 321671, 221671, 1004152, 1011544, 1018189, 1024802, 1031366, 1037929, 1044492, 1051055, 1057618, 1064181} },
{"Gloves of Enforcement", {6021672, 21672, 321672, 221672, 1004153, 1011545, 1018190, 1024803, 1031367, 1037930, 1044493, 1051056, 1057619, 1064182} },
{"Silithid Claw", {6021673, 21673, 321673, 221673, 1004154, 1011546, 1018191, 1024804, 1031368, 1037931, 1044494, 1051057, 1057620, 1064183} },
{"Gauntlets of Steadfast Determination", {6021674, 21674, 321674, 221674, 1004155, 1011547, 1018192, 1024805, 1031369, 1037932, 1044495, 1051058, 1057621, 1064184} },
{"Thick Qirajihide Belt", {6021675, 21675, 321675, 221675, 1004157, 1011548, 1018193, 1024806, 1031370, 1037933, 1044496, 1051059, 1057622, 1064185} },
{"Leggings of the Festering Swarm", {6021676, 21676, 321676, 221676, 1004160, 1011549, 1018194, 1024807, 1031371, 1037934, 1044497, 1051060, 1057623, 1064186} },
{"Ring of the Qiraji Fury", {6021677, 21677, 321677, 221677, 1004161, 1011550, 1018195, 1024808, 1031372, 1037935, 1044498, 1051061, 1057624, 1064187} },
{"Necklace of Purity", {6021678, 21678, 321678, 221678, 1004162, 1011551, 1018196, 1024809, 1031373, 1037936, 1044499, 1051062, 1057625, 1064188} },
{"Kalimdor's Revenge", {6021679, 21679, 321679, 221679, 1004164, 1011552, 1018197, 1024810, 1031374, 1037937, 1044500, 1051063, 1057626, 1064189} },
{"Vest of Swift Execution", {6021680, 21680, 321680, 221680, 1004165, 1011553, 1018198, 1024811, 1031375, 1037938, 1044501, 1051064, 1057627, 1064190} },
{"Ring of the Devoured", {6021681, 21681, 321681, 221681, 1004166, 1011554, 1018199, 1024812, 1031376, 1037939, 1044502, 1051065, 1057628, 1064191} },
{"Bile-Covered Gauntlets", {6021682, 21682, 321682, 221682, 1004167, 1011555, 1018200, 1024813, 1031377, 1037940, 1044503, 1051066, 1057629, 1064192} },
{"Mantle of the Desert Crusade", {6021683, 21683, 321683, 221683, 1004169, 1011556, 1018201, 1024814, 1031378, 1037941, 1044504, 1051067, 1057630, 1064193} },
{"Mantle of the Desert's Fury", {6021684, 21684, 321684, 221684, 1004172, 1011557, 1018203, 1024815, 1031379, 1037942, 1044505, 1051068, 1057631, 1064194} },
{"Petrified Scarab", {6021685, 21685, 321685, 221685, 1004173, 1011558, 1018205, 1024816, 1031380, 1037943, 1044506, 1051069, 1057632, 1064195} },
{"Mantle of Phrenic Power", {6021686, 21686, 321686, 221686, 1004174, 1011559, 1018206, 1024817, 1031381, 1037944, 1044507, 1051070, 1057633, 1064196} },
{"Ukko's Ring of Darkness", {6021687, 21687, 321687, 221687, 1004175, 1011560, 1018207, 1024818, 1031382, 1037945, 1044508, 1051071, 1057634, 1064197} },
{"Boots of the Fallen Hero", {6021688, 21688, 321688, 221688, 1004176, 1011561, 1018208, 1024819, 1031383, 1037946, 1044509, 1051072, 1057635, 1064198} },
{"Gloves of Ebru", {6021689, 21689, 321689, 221689, 1004177, 1011562, 1018209, 1024820, 1031384, 1037947, 1044510, 1051073, 1057636, 1064199} },
{"Angelista's Charm", {6021690, 21690, 321690, 221690, 1004178, 1011563, 1018210, 1024821, 1031385, 1037948, 1044511, 1051074, 1057637, 1064200} },
{"Ooze-ridden Gauntlets", {6021691, 21691, 321691, 221691, 1004179, 1011564, 1018211, 1024822, 1031386, 1037949, 1044512, 1051075, 1057638, 1064201} },
{"Triad Girdle", {6021692, 21692, 321692, 221692, 1004180, 1011565, 1018212, 1024823, 1031387, 1037950, 1044513, 1051076, 1057639, 1064202} },
{"Guise of the Devourer", {6021693, 21693, 321693, 221693, 1004181, 1011566, 1018213, 1024824, 1031388, 1037951, 1044514, 1051077, 1057640, 1064203} },
{"Ternary Mantle", {6021694, 21694, 321694, 221694, 1004183, 1011567, 1018214, 1024825, 1031389, 1037952, 1044515, 1051078, 1057641, 1064204} },
{"Angelista's Touch", {6021695, 21695, 321695, 221695, 1004184, 1011568, 1018215, 1024826, 1031390, 1037953, 1044516, 1051079, 1057642, 1064205} },
{"Robes of the Triumvirate", {6021696, 21696, 321696, 221696, 1004186, 1011569, 1018216, 1024827, 1031391, 1037954, 1044517, 1051080, 1057643, 1064206} },
{"Cape of the Trinity", {6021697, 21697, 321697, 221697, 1004187, 1011570, 1018217, 1024828, 1031392, 1037955, 1044518, 1051081, 1057644, 1064207} },
{"Leggings of Immersion", {6021698, 21698, 321698, 221698, 1004188, 1011571, 1018218, 1024829, 1031393, 1037956, 1044519, 1051082, 1057645, 1064208} },
{"Barrage Shoulders", {6021699, 21699, 321699, 221699, 1004189, 1011572, 1018219, 1024830, 1031394, 1037957, 1044520, 1051083, 1057646, 1064209} },
{"Pendant of the Qiraji Guardian", {6021700, 21700, 321700, 221700, 1004190, 1011573, 1018220, 1024831, 1031395, 1037958, 1044521, 1051084, 1057647, 1064210} },
{"Cloak of Concentrated Hatred", {6021701, 21701, 321701, 221701, 1004192, 1011574, 1018221, 1024832, 1031396, 1037959, 1044522, 1051085, 1057648, 1064211} },
{"Amulet of Foul Warding", {6021702, 21702, 321702, 221702, 1004194, 1011575, 1018222, 1024833, 1031397, 1037960, 1044523, 1051086, 1057649, 1064212} },
{"Hammer of Ji'zhi", {6021703, 21703, 321703, 221703, 1004195, 1011576, 1018223, 1024834, 1031398, 1037961, 1044524, 1051087, 1057650, 1064213} },
{"Boots of the Redeemed Prophecy", {6021704, 21704, 321704, 221704, 1004197, 1011577, 1018224, 1024835, 1031399, 1037962, 1044525, 1051088, 1057651, 1064214} },
{"Boots of the Fallen Prophet", {6021705, 21705, 321705, 221705, 1004198, 1011578, 1018225, 1024836, 1031400, 1037963, 1044526, 1051089, 1057652, 1064215} },
{"Boots of the Unwavering Will", {6021706, 21706, 321706, 221706, 1004199, 1011579, 1018226, 1024837, 1031401, 1037964, 1044527, 1051090, 1057653, 1064216} },
{"Ring of Swarming Thought", {6021707, 21707, 321707, 221707, 1004201, 1011580, 1018227, 1024838, 1031402, 1037965, 1044528, 1051091, 1057654, 1064217} },
{"Beetle Scaled Wristguards", {6021708, 21708, 321708, 221708, 1004202, 1011581, 1018228, 1024839, 1031403, 1037966, 1044529, 1051092, 1057655, 1064218} },
{"Ring of the Fallen God", {6021709, 21709, 123602, 221709, 1004203, 1011582, 1018229, 1024840, 1031404, 1037967, 1044530, 1051093, 1057656, 1064219} },
{"Cloak of the Fallen God", {6021710, 21710, 100815, 221710, 1004205, 1011583, 1018230, 1024841, 1031405, 1037968, 1044531, 1051094, 1057657, 1064220} },
{"Amulet of the Fallen God", {6021712, 21712, 100065, 221712, 1004206, 1011584, 1018231, 1024842, 1031406, 1037969, 1044532, 1051095, 1057658, 1064221} },
{"Sand Polished Hammer", {6021715, 21715, 321715, 221715, 1004207, 1011585, 1018232, 1024843, 1031407, 1037970, 1044533, 1051096, 1057659, 1064222} },
{"Gem Studded Band", {6021753, 21753, 258568, 258569, 258570, 258571, 258572, 258573, 258574, 258575, 258576, 258577, 258578, 258579} },
{"The Aquamarine Ward", {258581, 21754, 258580, 258582, 258583, 258584, 258585, 258586, 258587, 258588, 258589, 258590, 258591, 258592} },
{"Figurine - Truesilver Boar", {258646, 21763, 258645, 258647, 258648, 258649, 258650, 258651, 258652, 258653, 258654, 258655, 258656, 258657} },
{"Ruby Pendant of Fire", {258659, 21764, 258658, 258660, 258661, 258662, 258663, 258664, 258665, 258666, 258667, 258668, 258669, 258670} },
{"Truesilver Healing Ring", {258672, 21765, 258671, 258673, 258674, 258675, 258676, 258677, 258678, 258679, 258680, 258681, 258682, 258683} },
{"Opal Necklace of Impact", {6021766, 21766, 258684, 258685, 258686, 258687, 258688, 258689, 258690, 258691, 258692, 258693, 258694, 258695} },
{"Simple Opal Ring", {258697, 21767, 258696, 258698, 258699, 258700, 258701, 258702, 258703, 258704, 258705, 258706, 258707, 258708} },
{"Sapphire Signet", {6021768, 21768, 258709, 258710, 258711, 258712, 258713, 258714, 258715, 258716, 258717, 258718, 258719, 258720} },
{"Figurine - Ruby Serpent", {258722, 21769, 258721, 258723, 258724, 258725, 258726, 258727, 258728, 258729, 258730, 258731, 258732, 258733} },
{"Emerald Crown of Destruction", {6021774, 21774, 258734, 258735, 258736, 258737, 258738, 258739, 258740, 258741, 258742, 258743, 258744, 258745} },
{"Onslaught Ring", {258747, 21775, 258746, 258748, 258749, 258750, 258751, 258752, 258753, 258754, 258755, 258756, 258757, 258758} },
{"Figurine - Emerald Owl", {258760, 21777, 258759, 258761, 258762, 258763, 258764, 258765, 258766, 258767, 258768, 258769, 258770, 258771} },
{"Ring of Bitter Shadows", {258773, 21778, 258772, 258774, 258775, 258776, 258777, 258778, 258779, 258780, 258781, 258782, 258783, 258784} },
{"Band of Natural Fire", {6021779, 21779, 258785, 258786, 258787, 258788, 258789, 258790, 258791, 258792, 258793, 258794, 258795, 258796} },
{"Blood Crown", {6021780, 21780, 258797, 258798, 258799, 258800, 258801, 258802, 258803, 258804, 258805, 258806, 258807, 258808} },
{"Figurine - Black Diamond Crab", {6021784, 21784, 258809, 258810, 258811, 258812, 258813, 258814, 258815, 258816, 258817, 258818, 258819, 258820} },
{"Figurine - Dark Iron Scorpid", {6021789, 21789, 258821, 258822, 258823, 258824, 258825, 258826, 258827, 258828, 258829, 258830, 258831, 258832} },
{"Sapphire Pendant of Winter Night", {258834, 21790, 258833, 258835, 258836, 258837, 258838, 258839, 258840, 258841, 258842, 258843, 258844, 258845} },
{"Living Emerald Pendant", {6021791, 21791, 258846, 258847, 258848, 258849, 258850, 258851, 258852, 258853, 258854, 258855, 258856, 258857} },
{"Necklace of the Diamond Tower", {6021792, 21792, 258858, 258859, 258860, 258861, 258862, 258863, 258864, 258865, 258866, 258867, 258868, 258869} },
{"Arcanite Sword Pendant", {6021793, 21793, 258870, 258871, 258872, 258873, 258874, 258875, 258876, 258877, 258878, 258879, 258880, 258881} },
{"Silithid Husked Launcher", {6021800, 21800, 321800, 221800, 1004208, 1011586, 1018233, 1024844, 1031408, 1037971, 1044534, 1051097, 1057660, 1064223} },
{"Antenna of Invigoration", {6021801, 21801, 321801, 221801, 1004209, 1011587, 1018234, 1024845, 1031409, 1037972, 1044535, 1051098, 1057661, 1064224} },
{"The Lost Kris of Zedd", {6021802, 21802, 321802, 221802, 1004211, 1011588, 1018235, 1024846, 1031410, 1037973, 1044536, 1051099, 1057662, 1064225} },
{"Helm of the Holy Avenger", {6021803, 21803, 321803, 221803, 1004212, 1011589, 1018236, 1024847, 1031411, 1037974, 1044537, 1051100, 1057663, 1064226} },
{"Coif of Elemental Fury", {6021804, 21804, 321804, 221804, 1004213, 1011590, 1018237, 1024848, 1031412, 1037975, 1044538, 1051101, 1057664, 1064227} },
{"Polished Obsidian Pauldrons", {6021805, 21805, 321805, 221805, 1004214, 1011591, 1018238, 1024849, 1031413, 1037976, 1044539, 1051102, 1057665, 1064228} },
{"Gavel of Qiraji Authority", {6021806, 21806, 321806, 221806, 1004215, 1011592, 1018239, 1024850, 1031414, 1037977, 1044540, 1051103, 1057666, 1064229} },
{"Fury of the Forgotten Swarm", {6021809, 21809, 321809, 221809, 1004216, 1011593, 1018240, 1024851, 1031415, 1037978, 1044541, 1051104, 1057667, 1064230} },
{"Treads of the Wandering Nomad", {6021810, 21810, 321810, 221810, 1004217, 1011594, 1018241, 1024852, 1031416, 1037979, 1044542, 1051105, 1057668, 1064231} },
{"Breastplate of Annihilation", {6021814, 21814, 321814, 221814, 1004219, 1011595, 1018242, 1024853, 1031417, 1037980, 1044543, 1051106, 1057669, 1064232} },
{"Ritssyn's Ring of Chaos", {6021836, 21836, 321836, 221836, 1004220, 1011596, 1018243, 1024854, 1031418, 1037981, 1044544, 1051107, 1057670, 1064233} },
{"Anubisath Warhammer", {6021837, 21837, 321837, 221837, 1004221, 1011597, 1018244, 1024855, 1031419, 1037982, 1044545, 1051108, 1057671, 1064234} },
{"Garb of Royal Ascension", {6021838, 21838, 321838, 221838, 1004222, 1011598, 1018245, 1024856, 1031420, 1037983, 1044546, 1051109, 1057672, 1064235} },
{"Scepter of the False Prophet", {6021839, 21839, 321839, 221839, 1004223, 1011599, 1018246, 1024857, 1031421, 1037984, 1044547, 1051110, 1057673, 1064236} },
{"Spellfire Belt", {6021846, 21846, 258882, 258883, 258884, 258885, 258886, 258887, 258888, 258889, 258890, 258891, 258892, 258893} },
{"Spellfire Gloves", {6021847, 21847, 258894, 258895, 258896, 258897, 258898, 258899, 258900, 258901, 258902, 258903, 258904, 258905} },
{"Spellfire Robe", {6021848, 21848, 258906, 258907, 258908, 258909, 258910, 258911, 258912, 258913, 258914, 258915, 258916, 258917} },
{"Netherweave Bracers", {258919, 21849, 258918, 258920, 258921, 258922, 258923, 258924, 258925, 258926, 258927, 258928, 258929, 258930} },
{"Netherweave Belt", {258932, 21850, 258931, 258933, 258934, 258935, 258936, 258937, 258938, 258939, 258940, 258941, 258942, 258943} },
{"Netherweave Gloves", {258945, 21851, 258944, 258946, 258947, 258948, 258949, 258950, 258951, 258952, 258953, 258954, 258955, 258956} },
{"Netherweave Pants", {258958, 21852, 258957, 258959, 258960, 258961, 258962, 258963, 258964, 258965, 258966, 258967, 258968, 258969} },
{"Netherweave Boots", {258971, 21853, 258970, 258972, 258973, 258974, 258975, 258976, 258977, 258978, 258979, 258980, 258981, 258982} },
{"Netherweave Robe", {258984, 21854, 258983, 258985, 258986, 258987, 258988, 258989, 258990, 258991, 258992, 258993, 258994, 258995} },
{"Netherweave Tunic", {258997, 21855, 258996, 258998, 258999, 259000, 259001, 259002, 259003, 259004, 259005, 259006, 259007, 259008} },
{"Neretzek, The Blood Drinker", {6021856, 21856, 321856, 221856, 1004224, 1011600, 1018247, 1024858, 1031422, 1037985, 1044548, 1051111, 1057674, 1064237} },
{"Imbued Netherweave Pants", {6021859, 21859, 259009, 259010, 259011, 259012, 259013, 259014, 259015, 259016, 259017, 259018, 259019, 259020} },
{"Imbued Netherweave Boots", {6021860, 21860, 259021, 259022, 259023, 259024, 259025, 259026, 259027, 259028, 259029, 259030, 259031, 259032} },
{"Imbued Netherweave Robe", {6021861, 21861, 259033, 259034, 259035, 259036, 259037, 259038, 259039, 259040, 259041, 259042, 259043, 259044} },
{"Imbued Netherweave Tunic", {6021862, 21862, 259045, 259046, 259047, 259048, 259049, 259050, 259051, 259052, 259053, 259054, 259055, 259056} },
{"Soulcloth Gloves", {6021863, 21863, 259057, 259058, 259059, 259060, 259061, 259062, 259063, 259064, 259065, 259066, 259067, 259068} },
{"Soulcloth Shoulders", {6021864, 21864, 259069, 259070, 259071, 259072, 259073, 259074, 259075, 259076, 259077, 259078, 259079, 259080} },
{"Soulcloth Vest", {6021865, 21865, 259081, 259082, 259083, 259084, 259085, 259086, 259087, 259088, 259089, 259090, 259091, 259092} },
{"Arcanoweave Bracers", {6021866, 21866, 259093, 259094, 259095, 259096, 259097, 259098, 259099, 259100, 259101, 259102, 259103, 259104} },
{"Arcanoweave Boots", {6021867, 21867, 259105, 259106, 259107, 259108, 259109, 259110, 259111, 259112, 259113, 259114, 259115, 259116} },
{"Arcanoweave Robe", {6021868, 21868, 259117, 259118, 259119, 259120, 259121, 259122, 259123, 259124, 259125, 259126, 259127, 259128} },
{"Frozen Shadoweave Shoulders", {6021869, 21869, 259129, 259130, 259131, 259132, 259133, 259134, 259135, 259136, 259137, 259138, 259139, 259140} },
{"Frozen Shadoweave Boots", {6021870, 21870, 259141, 259142, 259143, 259144, 259145, 259146, 259147, 259148, 259149, 259150, 259151, 259152} },
{"Frozen Shadoweave Robe", {6021871, 21871, 259153, 259154, 259155, 259156, 259157, 259158, 259159, 259160, 259161, 259162, 259163, 259164} },
{"Primal Mooncloth Belt", {6021873, 21873, 259165, 259166, 259167, 259168, 259169, 259170, 259171, 259172, 259173, 259174, 259175, 259176} },
{"Primal Mooncloth Shoulders", {6021874, 21874, 259177, 259178, 259179, 259180, 259181, 259182, 259183, 259184, 259185, 259186, 259187, 259188} },
{"Primal Mooncloth Robe", {6021875, 21875, 259189, 259190, 259191, 259192, 259193, 259194, 259195, 259196, 259197, 259198, 259199, 259200} },
{"Gloves of the Immortal", {6021888, 21888, 321888, 221888, 1004225, 1011601, 1018248, 1024859, 1031423, 1037986, 1044549, 1051112, 1057675, 1064238} },
{"Gloves of the Redeemed Prophecy", {6021889, 21889, 321889, 221889, 1004226, 1011602, 1018249, 1024860, 1031424, 1037987, 1044550, 1051113, 1057676, 1064239} },
{"Gloves of the Fallen Prophet", {6021890, 21890, 259201, 259202, 259203, 259204, 259205, 259206, 259207, 259208, 259209, 259210, 259211, 259212} },
{"Shard of the Fallen Star", {6021891, 21891, 321891, 221891, 1004227, 1011603, 1018250, 1024861, 1031425, 1037988, 1044551, 1051114, 1057677, 1064240} },
{"Belt of Heroism", {6021994, 21994, 259265, 259266, 259267, 259268, 259269, 259270, 259271, 259272, 259273, 259274, 259275, 259276} },
{"Boots of Heroism", {6021995, 21995, 259277, 259278, 259279, 259280, 259281, 259282, 259283, 259284, 259285, 259286, 259287, 259288} },
{"Bracers of Heroism", {6021996, 21996, 259289, 259290, 259291, 259292, 259293, 259294, 259295, 259296, 259297, 259298, 259299, 259300} },
{"Breastplate of Heroism", {6021997, 21997, 259301, 259302, 259303, 259304, 259305, 259306, 259307, 259308, 259309, 259310, 259311, 259312} },
{"Gauntlets of Heroism", {6021998, 21998, 259313, 259314, 259315, 259316, 259317, 259318, 259319, 259320, 259321, 259322, 259323, 259324} },
{"Helm of Heroism", {6021999, 21999, 259325, 259326, 259327, 259328, 259329, 259330, 259331, 259332, 259333, 259334, 259335, 259336} },
{"Legplates of Heroism", {6022000, 22000, 259337, 259338, 259339, 259340, 259341, 259342, 259343, 259344, 259345, 259346, 259347, 259348} },
{"Spaulders of Heroism", {6022001, 22001, 259349, 259350, 259351, 259352, 259353, 259354, 259355, 259356, 259357, 259358, 259359, 259360} },
{"Darkmantle Belt", {6022002, 22002, 259361, 259362, 259363, 259364, 259365, 259366, 259367, 259368, 259369, 259370, 259371, 259372} },
{"Darkmantle Boots", {6022003, 22003, 259373, 259374, 259375, 259376, 259377, 259378, 259379, 259380, 259381, 259382, 259383, 259384} },
{"Darkmantle Bracers", {6022004, 22004, 259385, 259386, 259387, 259388, 259389, 259390, 259391, 259392, 259393, 259394, 259395, 259396} },
{"Darkmantle Cap", {6022005, 22005, 259397, 259398, 259399, 259400, 259401, 259402, 259403, 259404, 259405, 259406, 259407, 259408} },
{"Darkmantle Gloves", {6022006, 22006, 259409, 259410, 259411, 259412, 259413, 259414, 259415, 259416, 259417, 259418, 259419, 259420} },
{"Darkmantle Pants", {6022007, 22007, 259421, 259422, 259423, 259424, 259425, 259426, 259427, 259428, 259429, 259430, 259431, 259432} },
{"Darkmantle Spaulders", {6022008, 22008, 259433, 259434, 259435, 259436, 259437, 259438, 259439, 259440, 259441, 259442, 259443, 259444} },
{"Darkmantle Tunic", {6022009, 22009, 259445, 259446, 259447, 259448, 259449, 259450, 259451, 259452, 259453, 259454, 259455, 259456} },
{"Beastmaster's Belt", {6022010, 22010, 259457, 259458, 259459, 259460, 259461, 259462, 259463, 259464, 259465, 259466, 259467, 259468} },
{"Beastmaster's Bindings", {6022011, 22011, 259469, 259470, 259471, 259472, 259473, 259474, 259475, 259476, 259477, 259478, 259479, 259480} },
{"Beastmaster's Cap", {6022013, 22013, 259481, 259482, 259483, 259484, 259485, 259486, 259487, 259488, 259489, 259490, 259491, 259492} },
{"Beastmaster's Gloves", {6022015, 22015, 259493, 259494, 259495, 259496, 259497, 259498, 259499, 259500, 259501, 259502, 259503, 259504} },
{"Beastmaster's Mantle", {6022016, 22016, 259505, 259506, 259507, 259508, 259509, 259510, 259511, 259512, 259513, 259514, 259515, 259516} },
{"Beastmaster's Pants", {6022017, 22017, 259517, 259518, 259519, 259520, 259521, 259522, 259523, 259524, 259525, 259526, 259527, 259528} },
{"Beastmaster's Tunic", {6022060, 22060, 259529, 259530, 259531, 259532, 259533, 259534, 259535, 259536, 259537, 259538, 259539, 259540} },
{"Beastmaster's Boots", {6022061, 22061, 259541, 259542, 259543, 259544, 259545, 259546, 259547, 259548, 259549, 259550, 259551, 259552} },
{"Sorcerer's Belt", {6022062, 22062, 259553, 259554, 259555, 259556, 259557, 259558, 259559, 259560, 259561, 259562, 259563, 259564} },
{"Sorcerer's Bindings", {6022063, 22063, 259565, 259566, 259567, 259568, 259569, 259570, 259571, 259572, 259573, 259574, 259575, 259576} },
{"Sorcerer's Boots", {6022064, 22064, 259577, 259578, 259579, 259580, 259581, 259582, 259583, 259584, 259585, 259586, 259587, 259588} },
{"Sorcerer's Crown", {6022065, 22065, 259589, 259590, 259591, 259592, 259593, 259594, 259595, 259596, 259597, 259598, 259599, 259600} },
{"Sorcerer's Gloves", {6022066, 22066, 259601, 259602, 259603, 259604, 259605, 259606, 259607, 259608, 259609, 259610, 259611, 259612} },
{"Sorcerer's Leggings", {6022067, 22067, 259613, 259614, 259615, 259616, 259617, 259618, 259619, 259620, 259621, 259622, 259623, 259624} },
{"Sorcerer's Mantle", {6022068, 22068, 259625, 259626, 259627, 259628, 259629, 259630, 259631, 259632, 259633, 259634, 259635, 259636} },
{"Sorcerer's Robes", {6022069, 22069, 259637, 259638, 259639, 259640, 259641, 259642, 259643, 259644, 259645, 259646, 259647, 259648} },
{"Deathmist Belt", {6022070, 22070, 259649, 259650, 259651, 259652, 259653, 259654, 259655, 259656, 259657, 259658, 259659, 259660} },
{"Deathmist Bracers", {6022071, 22071, 259661, 259662, 259663, 259664, 259665, 259666, 259667, 259668, 259669, 259670, 259671, 259672} },
{"Deathmist Leggings", {6022072, 22072, 259673, 259674, 259675, 259676, 259677, 259678, 259679, 259680, 259681, 259682, 259683, 259684} },
{"Deathmist Mantle", {6022073, 22073, 259685, 259686, 259687, 259688, 259689, 259690, 259691, 259692, 259693, 259694, 259695, 259696} },
{"Deathmist Mask", {6022074, 22074, 259697, 259698, 259699, 259700, 259701, 259702, 259703, 259704, 259705, 259706, 259707, 259708} },
{"Deathmist Robe", {6022075, 22075, 259709, 259710, 259711, 259712, 259713, 259714, 259715, 259716, 259717, 259718, 259719, 259720} },
{"Deathmist Sandals", {6022076, 22076, 259721, 259722, 259723, 259724, 259725, 259726, 259727, 259728, 259729, 259730, 259731, 259732} },
{"Deathmist Wraps", {6022077, 22077, 259733, 259734, 259735, 259736, 259737, 259738, 259739, 259740, 259741, 259742, 259743, 259744} },
{"Virtuous Belt", {6022078, 22078, 259745, 259746, 259747, 259748, 259749, 259750, 259751, 259752, 259753, 259754, 259755, 259756} },
{"Virtuous Bracers", {6022079, 22079, 259757, 259758, 259759, 259760, 259761, 259762, 259763, 259764, 259765, 259766, 259767, 259768} },
{"Virtuous Crown", {6022080, 22080, 259769, 259770, 259771, 259772, 259773, 259774, 259775, 259776, 259777, 259778, 259779, 259780} },
{"Virtuous Gloves", {6022081, 22081, 259781, 259782, 259783, 259784, 259785, 259786, 259787, 259788, 259789, 259790, 259791, 259792} },
{"Virtuous Mantle", {6022082, 22082, 259793, 259794, 259795, 259796, 259797, 259798, 259799, 259800, 259801, 259802, 259803, 259804} },
{"Virtuous Robe", {6022083, 22083, 259805, 259806, 259807, 259808, 259809, 259810, 259811, 259812, 259813, 259814, 259815, 259816} },
{"Virtuous Sandals", {6022084, 22084, 259817, 259818, 259819, 259820, 259821, 259822, 259823, 259824, 259825, 259826, 259827, 259828} },
{"Virtuous Skirt", {6022085, 22085, 259829, 259830, 259831, 259832, 259833, 259834, 259835, 259836, 259837, 259838, 259839, 259840} },
{"Soulforge Belt", {6022086, 22086, 259841, 259842, 259843, 259844, 259845, 259846, 259847, 259848, 259849, 259850, 259851, 259852} },
{"Soulforge Boots", {6022087, 22087, 259853, 259854, 259855, 259856, 259857, 259858, 259859, 259860, 259861, 259862, 259863, 259864} },
{"Soulforge Bracers", {6022088, 22088, 259865, 259866, 259867, 259868, 259869, 259870, 259871, 259872, 259873, 259874, 259875, 259876} },
{"Soulforge Breastplate", {6022089, 22089, 259877, 259878, 259879, 259880, 259881, 259882, 259883, 259884, 259885, 259886, 259887, 259888} },
{"Soulforge Gauntlets", {6022090, 22090, 259889, 259890, 259891, 259892, 259893, 259894, 259895, 259896, 259897, 259898, 259899, 259900} },
{"Soulforge Helm", {6022091, 22091, 259901, 259902, 259903, 259904, 259905, 259906, 259907, 259908, 259909, 259910, 259911, 259912} },
{"Soulforge Legplates", {6022092, 22092, 259913, 259914, 259915, 259916, 259917, 259918, 259919, 259920, 259921, 259922, 259923, 259924} },
{"Soulforge Spaulders", {6022093, 22093, 259925, 259926, 259927, 259928, 259929, 259930, 259931, 259932, 259933, 259934, 259935, 259936} },
{"Bindings of The Five Thunders", {6022095, 22095, 259937, 259938, 259939, 259940, 259941, 259942, 259943, 259944, 259945, 259946, 259947, 259948} },
{"Boots of The Five Thunders", {6022096, 22096, 259949, 259950, 259951, 259952, 259953, 259954, 259955, 259956, 259957, 259958, 259959, 259960} },
{"Coif of The Five Thunders", {6022097, 22097, 259961, 259962, 259963, 259964, 259965, 259966, 259967, 259968, 259969, 259970, 259971, 259972} },
{"Cord of The Five Thunders", {6022098, 22098, 259973, 259974, 259975, 259976, 259977, 259978, 259979, 259980, 259981, 259982, 259983, 259984} },
{"Gauntlets of The Five Thunders", {6022099, 22099, 259985, 259986, 259987, 259988, 259989, 259990, 259991, 259992, 259993, 259994, 259995, 259996} },
{"Kilt of The Five Thunders", {6022100, 22100, 259997, 259998, 259999, 260000, 260001, 260002, 260003, 260004, 260005, 260006, 260007, 260008} },
{"Pauldrons of The Five Thunders", {6022101, 22101, 260009, 260010, 260011, 260012, 260013, 260014, 260015, 260016, 260017, 260018, 260019, 260020} },
{"Vest of The Five Thunders", {6022102, 22102, 260021, 260022, 260023, 260024, 260025, 260026, 260027, 260028, 260029, 260030, 260031, 260032} },
{"Feralheart Belt", {6022106, 22106, 260033, 260034, 260035, 260036, 260037, 260038, 260039, 260040, 260041, 260042, 260043, 260044} },
{"Feralheart Boots", {6022107, 22107, 260045, 260046, 260047, 260048, 260049, 260050, 260051, 260052, 260053, 260054, 260055, 260056} },
{"Feralheart Bracers", {6022108, 22108, 260057, 260058, 260059, 260060, 260061, 260062, 260063, 260064, 260065, 260066, 260067, 260068} },
{"Feralheart Cowl", {6022109, 22109, 260069, 260070, 260071, 260072, 260073, 260074, 260075, 260076, 260077, 260078, 260079, 260080} },
{"Feralheart Gloves", {6022110, 22110, 260081, 260082, 260083, 260084, 260085, 260086, 260087, 260088, 260089, 260090, 260091, 260092} },
{"Feralheart Kilt", {6022111, 22111, 260093, 260094, 260095, 260096, 260097, 260098, 260099, 260100, 260101, 260102, 260103, 260104} },
{"Feralheart Spaulders", {6022112, 22112, 260105, 260106, 260107, 260108, 260109, 260110, 260111, 260112, 260113, 260114, 260115, 260116} },
{"Feralheart Vest", {6022113, 22113, 260117, 260118, 260119, 260120, 260121, 260122, 260123, 260124, 260125, 260126, 260127, 260128} },
{"Beads of Ogre Mojo", {6022149, 22149, 260129, 260130, 260131, 260132, 260133, 260134, 260135, 260136, 260137, 260138, 260139, 260140} },
{"Beads of Ogre Might", {6022150, 22150, 260141, 260142, 260143, 260144, 260145, 260146, 260147, 260148, 260149, 260150, 260151, 260152} },
{"Obsidian Mail Tunic", {6022191, 22191, 260153, 260154, 260155, 260156, 260157, 260158, 260159, 260160, 260161, 260162, 260163, 260164} },
{"Black Grasp of the Destroyer", {6022194, 22194, 260165, 260166, 260167, 260168, 260169, 260170, 260171, 260172, 260173, 260174, 260175, 260176} },
{"Light Obsidian Belt", {6022195, 22195, 260177, 260178, 260179, 260180, 260181, 260182, 260183, 260184, 260185, 260186, 260187, 260188} },
{"Thick Obsidian Breastplate", {6022196, 22196, 260189, 260190, 260191, 260192, 260193, 260194, 260195, 260196, 260197, 260198, 260199, 260200} },
{"Heavy Obsidian Belt", {6022197, 22197, 260201, 260202, 260203, 260204, 260205, 260206, 260207, 260208, 260209, 260210, 260211, 260212} },
{"Jagged Obsidian Shield", {6022198, 22198, 260213, 260214, 260215, 260216, 260217, 260218, 260219, 260220, 260221, 260222, 260223, 260224} },
{"Wristguards of Renown", {6022204, 22204, 260225, 260226, 260227, 260228, 260229, 260230, 260231, 260232, 260233, 260234, 260235, 260236} },
{"Black Steel Bindings", {6022205, 22205, 260237, 260238, 260239, 260240, 260241, 260242, 260243, 260244, 260245, 260246, 260247, 260248} },
{"Sash of the Grand Hunt", {6022207, 22207, 260262, 260263, 260264, 260265, 260266, 260267, 260268, 260269, 260270, 260271, 260272, 260273} },
{"Lavastone Hammer", {6022208, 22208, 260274, 260275, 260276, 260277, 260278, 260279, 260280, 260281, 260282, 260283, 260284, 260285} },
{"Golem Fitted Pauldrons", {6022212, 22212, 260286, 260287, 260288, 260289, 260290, 260291, 260292, 260293, 260294, 260295, 260296, 260297} },
{"Foreman's Head Protector", {6022223, 22223, 260298, 260299, 260300, 260301, 260302, 260303, 260304, 260305, 260306, 260307, 260308, 260309} },
{"Dragonskin Cowl", {6022225, 22225, 102378, 222225, 1004228, 1011604, 1018251, 1024862, 1031426, 1037989, 1044552, 1051115, 1057678, 1064241} },
{"Frightmaw Hide", {6022230, 22230, 260310, 260311, 260312, 260313, 260314, 260315, 260316, 260317, 260318, 260319, 260320, 260321} },
{"Kayser's Boots of Precision", {6022231, 22231, 120731, 222231, 1004230, 1011605, 1018252, 1024863, 1031427, 1037990, 1044553, 1051116, 1057679, 1064242} },
{"Marksman's Girdle", {6022232, 22232, 122748, 222232, 1004232, 1011606, 1018253, 1024864, 1031428, 1037991, 1044554, 1051117, 1057680, 1064243} },
{"Mantle of Lost Hope", {6022234, 22234, 260322, 260323, 260324, 260325, 260326, 260327, 260328, 260329, 260330, 260331, 260332, 260333} },
{"Greaves of Withering Despair", {6022240, 22240, 260334, 260335, 260336, 260337, 260338, 260339, 260340, 260341, 260342, 260343, 260344, 260345} },
{"Dark Warder's Pauldrons", {6022241, 22241, 260346, 260347, 260348, 260349, 260350, 260351, 260352, 260353, 260354, 260355, 260356, 260357} },
{"Verek's Leash", {6022242, 22242, 260358, 260359, 260360, 260361, 260362, 260363, 260364, 260365, 260366, 260367, 260368, 260369} },
{"Soot Encrusted Footwear", {6022245, 22245, 260370, 260371, 260372, 260373, 260374, 260375, 260376, 260377, 260378, 260379, 260380, 260381} },
{"Faith Healer's Boots", {6022247, 22247, 113537, 222247, 1004233, 1011607, 1018254, 1024865, 1031429, 1037992, 1044555, 1051118, 1057681, 1064244} },
{"Tome of the Lost", {6022253, 22253, 130434, 222253, 1004234, 1011608, 1018255, 1024866, 1031430, 1037993, 1044556, 1051119, 1057682, 1064245} },
{"Wand of Eternal Light", {6022254, 22254, 260382, 260383, 260384, 260385, 260386, 260387, 260388, 260389, 260390, 260391, 260392, 260393} },
{"Magma Forged Band", {6022255, 22255, 260394, 260395, 260396, 260397, 260398, 260399, 260400, 260401, 260402, 260403, 260404, 260405} },
{"Mana Shaping Handwraps", {6022256, 22256, 260406, 260407, 260408, 260409, 260410, 260411, 260412, 260413, 260414, 260415, 260416, 260417} },
{"Bloodclot Band", {6022257, 22257, 260418, 260419, 260420, 260421, 260422, 260423, 260424, 260425, 260426, 260427, 260428, 260429} },
{"Flarethorn", {6022266, 22266, 260430, 260431, 260432, 260433, 260434, 260435, 260436, 260437, 260438, 260439, 260440, 260441} },
{"Spellweaver's Turban", {6022267, 22267, 128166, 222267, 1004237, 1011609, 1018256, 1024867, 1031431, 1037994, 1044557, 1051120, 1057683, 1064246} },
{"Draconic Infused Emblem", {6022268, 22268, 102339, 222268, 1004238, 1011610, 1018257, 1024868, 1031432, 1037995, 1044558, 1051121, 1057684, 1064247} },
{"Shadow Prowler's Cloak", {6022269, 22269, 123777, 222269, 1004239, 1011611, 1018258, 1024869, 1031433, 1037996, 1044559, 1051122, 1057685, 1064248} },
{"Entrenching Boots", {6022270, 22270, 260442, 260443, 260444, 260445, 260446, 260447, 260448, 260449, 260450, 260451, 260452, 260453} },
{"Leggings of Frenzied Magic", {6022271, 22271, 260454, 260455, 260456, 260457, 260458, 260459, 260460, 260461, 260462, 260463, 260464, 260465} },
{"Forest's Embrace", {6022272, 22272, 260466, 260467, 260468, 260469, 260470, 260471, 260472, 260473, 260474, 260475, 260476, 260477} },
{"Moonshadow Hood", {6022273, 22273, 260478, 260479, 260480, 260481, 260482, 260483, 260484, 260485, 260486, 260487, 260488, 260489} },
{"Grizzled Pelt", {6022274, 22274, 260490, 260491, 260492, 260493, 260494, 260495, 260496, 260497, 260498, 260499, 260500, 260501} },
{"Firemoss Boots", {6022275, 22275, 260502, 260503, 260504, 260505, 260506, 260507, 260508, 260509, 260510, 260511, 260512, 260513} },
{"Ironweave Robe", {6022301, 22301, 260514, 260515, 260516, 260517, 260518, 260519, 260520, 260521, 260522, 260523, 260524, 260525} },
{"Ironweave Cowl", {6022302, 22302, 260526, 260527, 260528, 260529, 260530, 260531, 260532, 260533, 260534, 260535, 260536, 260537} },
{"Ironweave Pants", {6022303, 22303, 260538, 260539, 260540, 260541, 260542, 260543, 260544, 260545, 260546, 260547, 260548, 260549} },
{"Ironweave Gloves", {6022304, 22304, 260550, 260551, 260552, 260553, 260554, 260555, 260556, 260557, 260558, 260559, 260560, 260561} },
{"Ironweave Mantle", {6022305, 22305, 260562, 260563, 260564, 260565, 260566, 260567, 260568, 260569, 260570, 260571, 260572, 260573} },
{"Ironweave Belt", {6022306, 22306, 260574, 260575, 260576, 260577, 260578, 260579, 260580, 260581, 260582, 260583, 260584, 260585} },
{"Ironweave Boots", {6022311, 22311, 120701, 222311, 1004240, 1011612, 1018259, 1024870, 1031434, 1037997, 1044560, 1051123, 1057686, 1064249} },
{"Ironweave Bracers", {6022313, 22313, 120702, 222313, 1004241, 1011613, 1018260, 1024871, 1031435, 1037998, 1044561, 1051124, 1057687, 1064250} },
{"Huntsman's Harpoon", {6022314, 22314, 260586, 260587, 260588, 260589, 260590, 260591, 260592, 260593, 260594, 260595, 260596, 260597} },
{"Hammer of Revitalization", {6022315, 22315, 260598, 260599, 260600, 260601, 260602, 260603, 260604, 260605, 260606, 260607, 260608, 260609} },
{"Lefty's Brass Knuckle", {6022317, 22317, 260610, 260611, 260612, 260613, 260614, 260615, 260616, 260617, 260618, 260619, 260620, 260621} },
{"Malgen's Long Bow", {6022318, 22318, 260622, 260623, 260624, 260625, 260626, 260627, 260628, 260629, 260630, 260631, 260632, 260633} },
{"Tome of Divine Right", {6022319, 22319, 260634, 260635, 260636, 260637, 260638, 260639, 260640, 260641, 260642, 260643, 260644, 260645} },
{"Heart of Wyrmthalak", {6022321, 22321, 120504, 222321, 1004242, 1011614, 1018261, 1024872, 1031436, 1037999, 1044562, 1051125, 1057688, 1064251} },
{"The Jaw Breaker", {6022322, 22322, 260646, 260647, 260648, 260649, 260650, 260651, 260652, 260653, 260654, 260655, 260656, 260657} },
{"Belt of the Trickster", {6022325, 22325, 260658, 260659, 260660, 260661, 260662, 260663, 260664, 260665, 260666, 260667, 260668, 260669} },
{"Amalgam's Band", {6022326, 22326, 260670, 260671, 260672, 260673, 260674, 260675, 260676, 260677, 260678, 260679, 260680, 260681} },
{"Amulet of the Redeemed", {6022327, 22327, 260682, 260683, 260684, 260685, 260686, 260687, 260688, 260689, 260690, 260691, 260692, 260693} },
{"Legplates of Vigilance", {6022328, 22328, 260694, 260695, 260696, 260697, 260698, 260699, 260700, 260701, 260702, 260703, 260704, 260705} },
{"Scepter of Interminable Focus", {6022329, 22329, 260706, 260707, 260708, 260709, 260710, 260711, 260712, 260713, 260714, 260715, 260716, 260717} },
{"Shroud of Arcane Mastery", {6022330, 22330, 260718, 260719, 260720, 260721, 260722, 260723, 260724, 260725, 260726, 260727, 260728, 260729} },
{"Band of the Steadfast Hero", {6022331, 22331, 260730, 260731, 260732, 260733, 260734, 260735, 260736, 260737, 260738, 260739, 260740, 260741} },
{"Blade of Necromancy", {6022332, 22332, 260742, 260743, 260744, 260745, 260746, 260747, 260748, 260749, 260750, 260751, 260752, 260753} },
{"Hammer of Divine Might", {6022333, 22333, 260754, 260755, 260756, 260757, 260758, 260759, 260760, 260761, 260762, 260763, 260764, 260765} },
{"Band of Mending", {6022334, 22334, 260766, 260767, 260768, 260769, 260770, 260771, 260772, 260773, 260774, 260775, 260776, 260777} },
{"Lord Valthalak's Staff of Command", {6022335, 22335, 260778, 260779, 260780, 260781, 260782, 260783, 260784, 260785, 260786, 260787, 260788, 260789} },
{"Draconian Aegis of the Legion", {6022336, 22336, 260790, 260791, 260792, 260793, 260794, 260795, 260796, 260797, 260798, 260799, 260800, 260801} },
{"Shroud of Domination", {6022337, 22337, 260802, 260803, 260804, 260805, 260806, 260807, 260808, 260809, 260810, 260811, 260812, 260813} },
{"Rune Band of Wizardry", {6022339, 22339, 260814, 260815, 260816, 260817, 260818, 260819, 260820, 260821, 260822, 260823, 260824, 260825} },
{"Pendant of Celerity", {6022340, 22340, 260826, 260827, 260828, 260829, 260830, 260831, 260832, 260833, 260834, 260835, 260836, 260837} },
{"Leggings of Torment", {6022342, 22342, 260838, 260839, 260840, 260841, 260842, 260843, 260844, 260845, 260846, 260847, 260848, 260849} },
{"Handguards of Savagery", {6022343, 22343, 260850, 260851, 260852, 260853, 260854, 260855, 260856, 260857, 260858, 260859, 260860, 260861} },
{"Totem of Rebirth", {6022345, 22345, 260862, 260863, 260864, 260865, 260866, 260867, 260868, 260869, 260870, 260871, 260872, 260873} },
{"Fahrad's Reloading Repeater", {6022347, 22347, 260874, 260875, 260876, 260877, 260878, 260879, 260880, 260881, 260882, 260883, 260884, 260885} },
{"Doomulus Prime", {6022348, 22348, 260886, 260887, 260888, 260889, 260890, 260891, 260892, 260893, 260894, 260895, 260896, 260897} },
{"The Thunderwood Poker", {6022377, 22377, 260898, 260899, 260900, 260901, 260902, 260903, 260904, 260905, 260906, 260907, 260908, 260909} },
{"Ravenholdt Slicer", {6022378, 22378, 260910, 260911, 260912, 260913, 260914, 260915, 260916, 260917, 260918, 260919, 260920, 260921} },
{"Shivsprocket's Shiv", {6022379, 22379, 260922, 260923, 260924, 260925, 260926, 260927, 260928, 260929, 260930, 260931, 260932, 260933} },
{"Simone's Cultivating Hammer", {6022380, 22380, 260934, 260935, 260936, 260937, 260938, 260939, 260940, 260941, 260942, 260943, 260944, 260945} },
{"Sageblade", {6022383, 22383, 260946, 260947, 260948, 260949, 260950, 260951, 260952, 260953, 260954, 260955, 260956, 260957} },
{"Persuader", {6022384, 22384, 260958, 260959, 260960, 260961, 260962, 260963, 260964, 260965, 260966, 260967, 260968, 260969} },
{"Titanic Leggings", {6022385, 22385, 260970, 260971, 260972, 260973, 260974, 260975, 260976, 260977, 260978, 260979, 260980, 260981} },
{"Staff of Metanoia", {6022394, 22394, 260982, 260983, 260984, 260985, 260986, 260987, 260988, 260989, 260990, 260991, 260992, 260993} },
{"Totem of Rage", {6022395, 22395, 260994, 260995, 260996, 260997, 260998, 260999, 261000, 261001, 261002, 261003, 261004, 261005} },
{"Totem of Life", {6022396, 22396, 322396, 222396, 1004284, 1011643, 1018290, 1024901, 1031465, 1038028, 1044591, 1051154, 1057717, 1064280} },
{"Idol of Ferocity", {6022397, 22397, 261006, 261007, 261008, 261009, 261010, 261011, 261012, 261013, 261014, 261015, 261016, 261017} },
{"Idol of Rejuvenation", {6022398, 22398, 261018, 261019, 261020, 261021, 261022, 261023, 261024, 261025, 261026, 261027, 261028, 261029} },
{"Idol of Health", {6022399, 22399, 322399, 222399, 1004286, 1011644, 1018291, 1024902, 1031466, 1038029, 1044592, 1051155, 1057718, 1064281} },
{"Libram of Truth", {6022400, 22400, 261030, 261031, 261032, 261033, 261034, 261035, 261036, 261037, 261038, 261039, 261040, 261041} },
{"Libram of Hope", {6022401, 22401, 261042, 261043, 261044, 261045, 261046, 261047, 261048, 261049, 261050, 261051, 261052, 261053} },
{"Libram of Grace", {6022402, 22402, 322402, 222402, 1004287, 1011645, 1018292, 1024903, 1031467, 1038030, 1044593, 1051156, 1057719, 1064282} },
{"Diana's Pearl Necklace", {6022403, 22403, 261054, 261055, 261056, 261057, 261058, 261059, 261060, 261061, 261062, 261063, 261064, 261065} },
{"Willey's Back Scratcher", {6022404, 22404, 261066, 261067, 261068, 261069, 261070, 261071, 261072, 261073, 261074, 261075, 261076, 261077} },
{"Mantle of the Scarlet Crusade", {6022405, 22405, 261078, 261079, 261080, 261081, 261082, 261083, 261084, 261085, 261086, 261087, 261088, 261089} },
{"Redemption", {6022406, 22406, 261090, 261091, 261092, 261093, 261094, 261095, 261096, 261097, 261098, 261099, 261100, 261101} },
{"Helm of the New Moon", {6022407, 22407, 261102, 261103, 261104, 261105, 261106, 261107, 261108, 261109, 261110, 261111, 261112, 261113} },
{"Ritssyn's Wand of Bad Mojo", {6022408, 22408, 261114, 261115, 261116, 261117, 261118, 261119, 261120, 261121, 261122, 261123, 261124, 261125} },
{"Tunic of the Crescent Moon", {6022409, 22409, 261126, 261127, 261128, 261129, 261130, 261131, 261132, 261133, 261134, 261135, 261136, 261137} },
{"Gauntlets of Deftness", {6022410, 22410, 261138, 261139, 261140, 261141, 261142, 261143, 261144, 261145, 261146, 261147, 261148, 261149} },
{"Helm of the Executioner", {6022411, 22411, 261150, 261151, 261152, 261153, 261154, 261155, 261156, 261157, 261158, 261159, 261160, 261161} },
{"Thuzadin Mantle", {6022412, 22412, 261162, 261163, 261164, 261165, 261166, 261167, 261168, 261169, 261170, 261171, 261172, 261173} },
{"Dreadnaught Breastplate", {6022416, 22416, 322416, 222416, 1004288, 1011646, 1018293, 1024904, 1031468, 1038031, 1044594, 1051157, 1057720, 1064283} },
{"Dreadnaught Legplates", {6022417, 22417, 322417, 222417, 1004289, 1011647, 1018294, 1024905, 1031469, 1038032, 1044595, 1051158, 1057721, 1064284} },
{"Dreadnaught Helmet", {6022418, 22418, 322418, 222418, 1004290, 1011648, 1018295, 1024906, 1031470, 1038033, 1044596, 1051159, 1057722, 1064285} },
{"Dreadnaught Pauldrons", {6022419, 22419, 322419, 222419, 1004291, 1011649, 1018296, 1024907, 1031471, 1038034, 1044597, 1051160, 1057723, 1064286} },
{"Dreadnaught Sabatons", {6022420, 22420, 322420, 222420, 1004292, 1011650, 1018297, 1024908, 1031472, 1038035, 1044598, 1051161, 1057724, 1064287} },
{"Dreadnaught Gauntlets", {6022421, 22421, 322421, 222421, 1004293, 1011651, 1018298, 1024909, 1031473, 1038036, 1044599, 1051162, 1057725, 1064288} },
{"Dreadnaught Waistguard", {6022422, 22422, 322422, 222422, 1004294, 1011652, 1018299, 1024910, 1031474, 1038037, 1044600, 1051163, 1057726, 1064289} },
{"Dreadnaught Bracers", {6022423, 22423, 322423, 222423, 1004297, 1011653, 1018300, 1024911, 1031475, 1038038, 1044601, 1051164, 1057727, 1064290} },
{"Redemption Wristguards", {6022424, 22424, 322424, 222424, 1004298, 1011654, 1018301, 1024912, 1031476, 1038039, 1044602, 1051165, 1057728, 1064291} },
{"Redemption Tunic", {6022425, 22425, 322425, 222425, 1004299, 1011655, 1018302, 1024913, 1031477, 1038040, 1044603, 1051166, 1057729, 1064292} },
{"Redemption Handguards", {6022426, 22426, 322426, 222426, 1004302, 1011656, 1018303, 1024914, 1031478, 1038041, 1044604, 1051167, 1057730, 1064293} },
{"Redemption Legguards", {6022427, 22427, 322427, 222427, 1004303, 1011657, 1018304, 1024915, 1031479, 1038042, 1044605, 1051168, 1057731, 1064294} },
{"Redemption Headpiece", {6022428, 22428, 322428, 222428, 1004306, 1011658, 1018305, 1024916, 1031480, 1038043, 1044606, 1051169, 1057732, 1064295} },
{"Redemption Spaulders", {6022429, 22429, 322429, 222429, 1004307, 1011659, 1018306, 1024917, 1031481, 1038044, 1044607, 1051170, 1057733, 1064296} },
{"Redemption Boots", {6022430, 22430, 322430, 222430, 1004308, 1011660, 1018307, 1024918, 1031482, 1038045, 1044608, 1051171, 1057734, 1064297} },
{"Redemption Girdle", {6022431, 22431, 322431, 222431, 1004311, 1011661, 1018308, 1024919, 1031483, 1038046, 1044609, 1051172, 1057735, 1064298} },
{"Don Mauricio's Band of Domination", {6022433, 22433, 261174, 261175, 261176, 261177, 261178, 261179, 261180, 261181, 261182, 261183, 261184, 261185} },
{"Cryptstalker Tunic", {6022436, 22436, 322436, 222436, 1004314, 1011662, 1018309, 1024920, 1031484, 1038047, 1044610, 1051173, 1057736, 1064299} },
{"Cryptstalker Legguards", {6022437, 22437, 322437, 222437, 1004315, 1011663, 1018310, 1024921, 1031485, 1038048, 1044611, 1051174, 1057737, 1064300} },
{"Cryptstalker Headpiece", {6022438, 22438, 322438, 222438, 1004316, 1011664, 1018311, 1024922, 1031486, 1038049, 1044612, 1051175, 1057738, 1064301} },
{"Cryptstalker Spaulders", {6022439, 22439, 322439, 222439, 1004321, 1011665, 1018312, 1024923, 1031487, 1038050, 1044613, 1051176, 1057739, 1064302} },
{"Cryptstalker Boots", {6022440, 22440, 322440, 222440, 1004322, 1011666, 1018313, 1024924, 1031488, 1038051, 1044614, 1051177, 1057740, 1064303} },
{"Cryptstalker Handguards", {6022441, 22441, 322441, 222441, 1004323, 1011667, 1018314, 1024925, 1031489, 1038052, 1044615, 1051178, 1057741, 1064304} },
{"Cryptstalker Girdle", {6022442, 22442, 322442, 222442, 1004324, 1011668, 1018315, 1024926, 1031490, 1038053, 1044616, 1051179, 1057742, 1064305} },
{"Cryptstalker Wristguards", {6022443, 22443, 322443, 222443, 1004327, 1011669, 1018316, 1024927, 1031491, 1038054, 1044617, 1051180, 1057743, 1064306} },
{"Moonshadow Stave", {6022458, 22458, 261186, 261187, 261188, 261189, 261190, 261191, 261192, 261193, 261194, 261195, 261196, 261197} },
{"Earthshatter Tunic", {6022464, 22464, 322464, 222464, 1004328, 1011670, 1018317, 1024928, 1031492, 1038055, 1044618, 1051181, 1057744, 1064307} },
{"Earthshatter Legguards", {6022465, 22465, 322465, 222465, 1004331, 1011671, 1018318, 1024929, 1031493, 1038056, 1044619, 1051182, 1057745, 1064308} },
{"Earthshatter Headpiece", {6022466, 22466, 322466, 222466, 1004332, 1011672, 1018319, 1024930, 1031494, 1038057, 1044620, 1051183, 1057746, 1064309} },
{"Earthshatter Spaulders", {6022467, 22467, 322467, 222467, 1004333, 1011673, 1018320, 1024931, 1031495, 1038058, 1044621, 1051184, 1057747, 1064310} },
{"Earthshatter Boots", {6022468, 22468, 322468, 222468, 1004335, 1011674, 1018321, 1024932, 1031496, 1038059, 1044622, 1051185, 1057748, 1064311} },
{"Earthshatter Handguards", {6022469, 22469, 322469, 222469, 1004338, 1011675, 1018322, 1024933, 1031497, 1038060, 1044623, 1051186, 1057749, 1064312} },
{"Earthshatter Girdle", {6022470, 22470, 322470, 222470, 1004339, 1011676, 1018323, 1024934, 1031498, 1038061, 1044624, 1051187, 1057750, 1064313} },
{"Earthshatter Wristguards", {6022471, 22471, 322471, 222471, 1004345, 1011677, 1018324, 1024935, 1031499, 1038062, 1044625, 1051188, 1057751, 1064314} },
{"Boots of Ferocity", {6022472, 22472, 261198, 261199, 261200, 261201, 261202, 261203, 261204, 261205, 261206, 261207, 261208, 261209} },
{"Bonescythe Breastplate", {6022476, 22476, 322476, 222476, 1004346, 1011678, 1018325, 1024936, 1031500, 1038063, 1044626, 1051189, 1057752, 1064315} },
{"Bonescythe Legplates", {6022477, 22477, 322477, 222477, 1004347, 1011679, 1018326, 1024937, 1031501, 1038064, 1044627, 1051190, 1057753, 1064316} },
{"Bonescythe Helmet", {6022478, 22478, 322478, 222478, 1004349, 1011680, 1018327, 1024938, 1031502, 1038065, 1044628, 1051191, 1057754, 1064317} },
{"Bonescythe Pauldrons", {6022479, 22479, 322479, 222479, 1004351, 1011681, 1018328, 1024939, 1031503, 1038066, 1044629, 1051192, 1057755, 1064318} },
{"Bonescythe Sabatons", {6022480, 22480, 322480, 222480, 1004352, 1011682, 1018329, 1024940, 1031504, 1038067, 1044630, 1051193, 1057756, 1064319} },
{"Bonescythe Gauntlets", {6022481, 22481, 322481, 222481, 1004356, 1011683, 1018330, 1024941, 1031505, 1038068, 1044631, 1051194, 1057757, 1064320} },
{"Bonescythe Waistguard", {6022482, 22482, 322482, 222482, 1004359, 1011684, 1018331, 1024942, 1031506, 1038069, 1044632, 1051195, 1057758, 1064321} },
{"Bonescythe Bracers", {6022483, 22483, 322483, 222483, 1004361, 1011685, 1018332, 1024943, 1031507, 1038070, 1044633, 1051196, 1057759, 1064322} },
{"Dreamwalker Tunic", {6022488, 22488, 322488, 222488, 1004362, 1011686, 1018333, 1024944, 1031508, 1038071, 1044634, 1051197, 1057760, 1064323} },
{"Dreamwalker Legguards", {6022489, 22489, 322489, 222489, 1004363, 1011687, 1018334, 1024945, 1031509, 1038072, 1044635, 1051198, 1057761, 1064324} },
{"Dreamwalker Headpiece", {6022490, 22490, 322490, 222490, 1004365, 1011688, 1018335, 1024946, 1031510, 1038073, 1044636, 1051199, 1057762, 1064325} },
{"Dreamwalker Spaulders", {6022491, 22491, 322491, 222491, 1004366, 1011689, 1018336, 1024947, 1031511, 1038074, 1044637, 1051200, 1057763, 1064326} },
{"Dreamwalker Boots", {6022492, 22492, 322492, 222492, 1004369, 1011690, 1018337, 1024948, 1031512, 1038075, 1044638, 1051201, 1057764, 1064327} },
{"Dreamwalker Handguards", {6022493, 22493, 322493, 222493, 1004370, 1011691, 1018338, 1024949, 1031513, 1038076, 1044639, 1051202, 1057765, 1064328} },
{"Dreamwalker Girdle", {6022494, 22494, 322494, 222494, 1004371, 1011692, 1018339, 1024950, 1031514, 1038077, 1044640, 1051203, 1057766, 1064329} },
{"Dreamwalker Wristguards", {6022495, 22495, 322495, 222495, 1004372, 1011693, 1018340, 1024951, 1031515, 1038078, 1044641, 1051204, 1057767, 1064330} },
{"Frostfire Robe", {6022496, 22496, 322496, 222496, 1004373, 1011694, 1018341, 1024952, 1031516, 1038079, 1044642, 1051205, 1057768, 1064331} },
{"Frostfire Leggings", {6022497, 22497, 322497, 222497, 1004374, 1011695, 1018342, 1024953, 1031517, 1038080, 1044643, 1051206, 1057769, 1064332} },
{"Frostfire Circlet", {6022498, 22498, 322498, 222498, 1004375, 1011696, 1018343, 1024954, 1031518, 1038081, 1044644, 1051207, 1057770, 1064333} },
{"Frostfire Shoulderpads", {6022499, 22499, 322499, 222499, 1004376, 1011697, 1018344, 1024955, 1031519, 1038082, 1044645, 1051208, 1057771, 1064334} },
{"Frostfire Sandals", {6022500, 22500, 322500, 222500, 1004377, 1011698, 1018345, 1024956, 1031520, 1038083, 1044646, 1051209, 1057772, 1064335} },
{"Frostfire Gloves", {6022501, 22501, 322501, 222501, 1004378, 1011699, 1018346, 1024957, 1031521, 1038084, 1044647, 1051210, 1057773, 1064336} },
{"Frostfire Belt", {6022502, 22502, 322502, 222502, 1004380, 1011700, 1018347, 1024958, 1031522, 1038085, 1044648, 1051211, 1057774, 1064337} },
{"Frostfire Bindings", {6022503, 22503, 322503, 222503, 1004381, 1011701, 1018348, 1024959, 1031523, 1038086, 1044649, 1051212, 1057775, 1064338} },
{"Plagueheart Robe", {6022504, 22504, 322504, 222504, 1004382, 1011702, 1018349, 1024960, 1031524, 1038087, 1044650, 1051213, 1057776, 1064339} },
{"Plagueheart Leggings", {6022505, 22505, 322505, 222505, 1004383, 1011703, 1018350, 1024961, 1031525, 1038088, 1044651, 1051214, 1057777, 1064340} },
{"Plagueheart Circlet", {6022506, 22506, 322506, 222506, 1004384, 1011704, 1018351, 1024962, 1031526, 1038089, 1044652, 1051215, 1057778, 1064341} },
{"Plagueheart Shoulderpads", {6022507, 22507, 322507, 222507, 1004385, 1011705, 1018352, 1024963, 1031527, 1038090, 1044653, 1051216, 1057779, 1064342} },
{"Plagueheart Sandals", {6022508, 22508, 322508, 222508, 1004386, 1011706, 1018353, 1024964, 1031528, 1038091, 1044654, 1051217, 1057780, 1064343} },
{"Plagueheart Gloves", {6022509, 22509, 322509, 222509, 1004387, 1011707, 1018354, 1024965, 1031529, 1038092, 1044655, 1051218, 1057781, 1064344} },
{"Plagueheart Belt", {6022510, 22510, 322510, 222510, 1004388, 1011708, 1018355, 1024966, 1031530, 1038093, 1044656, 1051219, 1057782, 1064345} },
{"Plagueheart Bindings", {6022511, 22511, 322511, 222511, 1004389, 1011709, 1018356, 1024967, 1031531, 1038094, 1044657, 1051220, 1057783, 1064346} },
{"Robe of Faith", {6022512, 22512, 322512, 222512, 1004390, 1011710, 1018357, 1024968, 1031532, 1038095, 1044658, 1051221, 1057784, 1064347} },
{"Leggings of Faith", {6022513, 22513, 322513, 222513, 1004391, 1011711, 1018358, 1024969, 1031533, 1038096, 1044659, 1051222, 1057785, 1064348} },
{"Circlet of Faith", {6022514, 22514, 322514, 222514, 1004392, 1011712, 1018359, 1024970, 1031534, 1038097, 1044660, 1051223, 1057786, 1064349} },
{"Shoulderpads of Faith", {6022515, 22515, 322515, 222515, 1004397, 1011713, 1018360, 1024971, 1031535, 1038098, 1044661, 1051224, 1057787, 1064350} },
{"Sandals of Faith", {6022516, 22516, 322516, 222516, 1004398, 1011714, 1018361, 1024972, 1031536, 1038099, 1044662, 1051225, 1057788, 1064351} },
{"Gloves of Faith", {6022517, 22517, 322517, 222517, 1004402, 1011715, 1018362, 1024973, 1031537, 1038100, 1044663, 1051226, 1057789, 1064352} },
{"Belt of Faith", {6022518, 22518, 322518, 222518, 1004407, 1011716, 1018363, 1024974, 1031538, 1038101, 1044664, 1051227, 1057790, 1064353} },
{"Bindings of Faith", {6022519, 22519, 322519, 222519, 1004408, 1011717, 1018364, 1024975, 1031539, 1038102, 1044665, 1051228, 1057791, 1064354} },
{"Atiesh, Greatstaff of the Guardian", {6022589, 22589, 100174, 222589, 1004411, 1011718, 1018365, 1024976, 1031540, 1038103, 1044666, 1051229, 1057792, 1064355} },
{"Glacial Vest", {6022652, 22652, 261222, 261223, 261224, 261225, 261226, 261227, 261228, 261229, 261230, 261231, 261232, 261233} },
{"Glacial Gloves", {6022654, 22654, 261234, 261235, 261236, 261237, 261238, 261239, 261240, 261241, 261242, 261243, 261244, 261245} },
{"Glacial Wrists", {6022655, 22655, 261246, 261247, 261248, 261249, 261250, 261251, 261252, 261253, 261254, 261255, 261256, 261257} },
{"The Purifier", {6022656, 22656, 261258, 261259, 261260, 261261, 261262, 261263, 261264, 261265, 261266, 261267, 261268, 261269} },
{"Amulet of the Dawn", {6022657, 22657, 261270, 261271, 261272, 261273, 261274, 261275, 261276, 261277, 261278, 261279, 261280, 261281} },
{"Glacial Cloak", {6022658, 22658, 261282, 261283, 261284, 261285, 261286, 261287, 261288, 261289, 261290, 261291, 261292, 261293} },
{"Medallion of the Dawn", {6022659, 22659, 261294, 261295, 261296, 261297, 261298, 261299, 261300, 261301, 261302, 261303, 261304, 261305} },
{"Gaea's Embrace", {6022660, 22660, 261306, 261307, 261308, 261309, 261310, 261311, 261312, 261313, 261314, 261315, 261316, 261317} },
{"Polar Tunic", {6022661, 22661, 261318, 261319, 261320, 261321, 261322, 261323, 261324, 261325, 261326, 261327, 261328, 261329} },
{"Polar Gloves", {6022662, 22662, 261330, 261331, 261332, 261333, 261334, 261335, 261336, 261337, 261338, 261339, 261340, 261341} },
{"Polar Bracers", {6022663, 22663, 261342, 261343, 261344, 261345, 261346, 261347, 261348, 261349, 261350, 261351, 261352, 261353} },
{"Icy Scale Breastplate", {6022664, 22664, 261354, 261355, 261356, 261357, 261358, 261359, 261360, 261361, 261362, 261363, 261364, 261365} },
{"Icy Scale Bracers", {6022665, 22665, 261366, 261367, 261368, 261369, 261370, 261371, 261372, 261373, 261374, 261375, 261376, 261377} },
{"Icy Scale Gauntlets", {6022666, 22666, 261378, 261379, 261380, 261381, 261382, 261383, 261384, 261385, 261386, 261387, 261388, 261389} },
{"Bracers of Hope", {6022667, 22667, 261390, 261391, 261392, 261393, 261394, 261395, 261396, 261397, 261398, 261399, 261400, 261401} },
{"Bracers of Subterfuge", {6022668, 22668, 261402, 261403, 261404, 261405, 261406, 261407, 261408, 261409, 261410, 261411, 261412, 261413} },
{"Icebane Breastplate", {6022669, 22669, 261414, 261415, 261416, 261417, 261418, 261419, 261420, 261421, 261422, 261423, 261424, 261425} },
{"Icebane Gauntlets", {6022670, 22670, 261426, 261427, 261428, 261429, 261430, 261431, 261432, 261433, 261434, 261435, 261436, 261437} },
{"Icebane Bracers", {6022671, 22671, 261438, 261439, 261440, 261441, 261442, 261443, 261444, 261445, 261446, 261447, 261448, 261449} },
{"Talisman of Ascendance", {6022678, 22678, 261486, 261487, 261488, 261489, 261490, 261491, 261492, 261493, 261494, 261495, 261496, 261497} },
{"Band of Resolution", {6022680, 22680, 261498, 261499, 261500, 261501, 261502, 261503, 261504, 261505, 261506, 261507, 261508, 261509} },
{"Band of Piety", {6022681, 22681, 261510, 261511, 261512, 261513, 261514, 261515, 261516, 261517, 261518, 261519, 261520, 261521} },
{"Verimonde's Last Resort", {6022688, 22688, 261522, 261523, 261524, 261525, 261526, 261527, 261528, 261529, 261530, 261531, 261532, 261533} },
{"Sanctified Leather Helm", {6022689, 22689, 261534, 261535, 261536, 261537, 261538, 261539, 261540, 261541, 261542, 261543, 261544, 261545} },
{"Leggings of the Plague Hunter", {6022690, 22690, 261546, 261547, 261548, 261549, 261550, 261551, 261552, 261553, 261554, 261555, 261556, 261557} },
{"Corrupted Ashbringer", {6022691, 22691, 322691, 222691, 1004419, 1011722, 1018369, 1024980, 1031544, 1038107, 1044670, 1051233, 1057796, 1064359} },
{"Icebane Leggings", {6022699, 22699, 261558, 261559, 261560, 261561, 261562, 261563, 261564, 261565, 261566, 261567, 261568, 261569} },
{"Glacial Leggings", {6022700, 22700, 261570, 261571, 261572, 261573, 261574, 261575, 261576, 261577, 261578, 261579, 261580, 261581} },
{"Polar Leggings", {6022701, 22701, 261582, 261583, 261584, 261585, 261586, 261587, 261588, 261589, 261590, 261591, 261592, 261593} },
{"Icy Scale Leggings", {6022702, 22702, 261594, 261595, 261596, 261597, 261598, 261599, 261600, 261601, 261602, 261603, 261604, 261605} },
{"Ramaladni's Icy Grasp", {6022707, 22707, 261606, 261607, 261608, 261609, 261610, 261611, 261612, 261613, 261614, 261615, 261616, 261617} },
{"Cloak of the Hakkari Worshippers", {6022711, 22711, 322711, 222711, 1004420, 1011723, 1018370, 1024981, 1031545, 1038108, 1044671, 1051234, 1057797, 1064360} },
{"Might of the Tribe", {6022712, 22712, 322712, 222712, 1004421, 1011724, 1018371, 1024982, 1031546, 1038109, 1044672, 1051235, 1057798, 1064361} },
{"Zulian Scepter of Rites", {6022713, 22713, 322713, 222713, 1004422, 1011725, 1018372, 1024983, 1031547, 1038110, 1044673, 1051236, 1057799, 1064362} },
{"Sacrificial Gauntlets", {6022714, 22714, 322714, 222714, 1004428, 1011726, 1018373, 1024984, 1031548, 1038111, 1044674, 1051237, 1057800, 1064363} },
{"Gloves of the Tormented", {6022715, 22715, 322715, 222715, 1004429, 1011727, 1018374, 1024985, 1031549, 1038112, 1044675, 1051238, 1057801, 1064364} },
{"Belt of Untapped Power", {6022716, 22716, 322716, 222716, 1004430, 1011728, 1018375, 1024986, 1031550, 1038113, 1044676, 1051239, 1057802, 1064365} },
{"Blooddrenched Mask", {6022718, 22718, 322718, 222718, 1004431, 1011729, 1018376, 1024987, 1031551, 1038114, 1044677, 1051240, 1057803, 1064366} },
{"Zulian Headdress", {6022720, 22720, 322720, 222720, 1004432, 1011730, 1018377, 1024988, 1031552, 1038115, 1044678, 1051241, 1057804, 1064367} },
{"Band of Servitude", {6022721, 22721, 322721, 222721, 1004433, 1011731, 1018378, 1024989, 1031553, 1038116, 1044679, 1051242, 1057805, 1064368} },
{"Seal of the Gurubashi Berserker", {6022722, 22722, 322722, 222722, 1004434, 1011732, 1018379, 1024990, 1031554, 1038117, 1044680, 1051243, 1057806, 1064369} },
{"Band of Cenarius", {6022725, 22725, 261618, 261619, 261620, 261621, 261622, 261623, 261624, 261625, 261626, 261627, 261628, 261629} },
{"Eyestalk Waist Cord", {6022730, 22730, 322730, 222730, 1004436, 1011733, 1018380, 1024991, 1031555, 1038118, 1044681, 1051244, 1057807, 1064370} },
{"Cloak of the Devoured", {6022731, 22731, 322731, 222731, 1004437, 1011734, 1018381, 1024992, 1031556, 1038119, 1044682, 1051245, 1057808, 1064371} },
{"Mark of C'Thun", {6022732, 22732, 322732, 222732, 1004438, 1011735, 1018382, 1024993, 1031557, 1038120, 1044683, 1051246, 1057809, 1064372} },
{"Andonisus, Reaper of Souls", {261631, 22736, 261630, 261632, 261633, 261634, 261635, 261636, 261637, 261638, 261639, 261640, 261641, 261642} },
{"Sylvan Vest", {6022756, 22756, 261739, 261740, 261741, 261742, 261743, 261744, 261745, 261746, 261747, 261748, 261749, 261750} },
{"Sylvan Crown", {6022757, 22757, 261751, 261752, 261753, 261754, 261755, 261756, 261757, 261758, 261759, 261760, 261761, 261762} },
{"Sylvan Shoulders", {6022758, 22758, 261763, 261764, 261765, 261766, 261767, 261768, 261769, 261770, 261771, 261772, 261773, 261774} },
{"Bramblewood Helm", {6022759, 22759, 261775, 261776, 261777, 261778, 261779, 261780, 261781, 261782, 261783, 261784, 261785, 261786} },
{"Bramblewood Boots", {6022760, 22760, 261787, 261788, 261789, 261790, 261791, 261792, 261793, 261794, 261795, 261796, 261797, 261798} },
{"Bramblewood Belt", {6022761, 22761, 261799, 261800, 261801, 261802, 261803, 261804, 261805, 261806, 261807, 261808, 261809, 261810} },
{"Ironvine Breastplate", {6022762, 22762, 261811, 261812, 261813, 261814, 261815, 261816, 261817, 261818, 261819, 261820, 261821, 261822} },
{"Ironvine Gloves", {6022763, 22763, 261823, 261824, 261825, 261826, 261827, 261828, 261829, 261830, 261831, 261832, 261833, 261834} },
{"Ironvine Belt", {6022764, 22764, 261835, 261836, 261837, 261838, 261839, 261840, 261841, 261842, 261843, 261844, 261845, 261846} },
{"Might of Menethil", {6022798, 22798, 322798, 222798, 1004439, 1011736, 1018383, 1024994, 1031558, 1038121, 1044684, 1051247, 1057810, 1064373} },
{"Soulseeker", {6022799, 22799, 322799, 222799, 1004440, 1011737, 1018384, 1024995, 1031559, 1038122, 1044685, 1051248, 1057811, 1064374} },
{"Brimstone Staff", {6022800, 22800, 322800, 222800, 1004441, 1011738, 1018385, 1024996, 1031560, 1038123, 1044686, 1051249, 1057812, 1064375} },
{"Spire of Twilight", {6022801, 22801, 322801, 222801, 1004442, 1011739, 1018386, 1024997, 1031561, 1038124, 1044687, 1051250, 1057813, 1064376} },
{"Kingsfall", {6022802, 22802, 322802, 222802, 1004444, 1011740, 1018387, 1024998, 1031562, 1038125, 1044688, 1051251, 1057814, 1064377} },
{"Midnight Haze", {6022803, 22803, 322803, 222803, 1004445, 1011741, 1018388, 1024999, 1031563, 1038126, 1044689, 1051252, 1057815, 1064378} },
{"Maexxna's Fang", {6022804, 22804, 322804, 222804, 1004446, 1011742, 1018389, 1025000, 1031564, 1038127, 1044690, 1051253, 1057816, 1064379} },
{"Widow's Remorse", {6022806, 22806, 322806, 222806, 1004447, 1011743, 1018390, 1025001, 1031565, 1038128, 1044691, 1051254, 1057817, 1064380} },
{"Wraith Blade", {6022807, 22807, 322807, 222807, 1004448, 1011744, 1018391, 1025002, 1031566, 1038129, 1044692, 1051255, 1057818, 1064381} },
{"The Castigator", {6022808, 22808, 322808, 222808, 1004449, 1011745, 1018392, 1025003, 1031567, 1038130, 1044693, 1051256, 1057819, 1064382} },
{"Maul of the Redeemed Crusader", {6022809, 22809, 322809, 222809, 1004452, 1011746, 1018393, 1025004, 1031568, 1038131, 1044694, 1051257, 1057820, 1064383} },
{"Toxin Injector", {6022810, 22810, 322810, 222810, 1004456, 1011747, 1018394, 1025005, 1031569, 1038132, 1044695, 1051258, 1057821, 1064384} },
{"Soulstring", {6022811, 22811, 322811, 222811, 1004458, 1011748, 1018395, 1025006, 1031570, 1038133, 1044696, 1051259, 1057822, 1064385} },
{"Nerubian Slavemaker", {6022812, 22812, 322812, 222812, 1004459, 1011749, 1018396, 1025007, 1031571, 1038134, 1044697, 1051260, 1057823, 1064386} },
{"Claymore of Unholy Might", {6022813, 22813, 322813, 222813, 1004461, 1011750, 1018397, 1025008, 1031572, 1038135, 1044698, 1051261, 1057824, 1064387} },
{"Naxxramas Sword 2H 2 [PH]", {6022814, 22814, 261899, 261900, 261901, 261902, 261903, 261904, 261905, 261906, 261907, 261908, 261909, 261910} },
{"Severance", {6022815, 22815, 322815, 222815, 1004462, 1011751, 1018398, 1025009, 1031573, 1038136, 1044699, 1051262, 1057825, 1064388} },
{"Hatchet of Sundered Bone", {6022816, 22816, 322816, 222816, 1004464, 1011752, 1018399, 1025010, 1031574, 1038137, 1044700, 1051263, 1057826, 1064389} },
{"Naxxramas Polearm [PH]", {6022817, 22817, 261911, 261912, 261913, 261914, 261915, 261916, 261917, 261918, 261919, 261920, 261921, 261922} },
{"The Plague Bearer", {6022818, 22818, 322818, 222818, 1004467, 1011753, 1018400, 1025011, 1031575, 1038138, 1044701, 1051264, 1057827, 1064390} },
{"Shield of Condemnation", {6022819, 22819, 322819, 222819, 1004469, 1011754, 1018401, 1025012, 1031576, 1038139, 1044702, 1051265, 1057828, 1064391} },
{"Wand of Fates", {6022820, 22820, 322820, 222820, 1004472, 1011755, 1018402, 1025013, 1031577, 1038140, 1044703, 1051266, 1057829, 1064392} },
{"Doomfinger", {6022821, 22821, 322821, 222821, 1004473, 1011756, 1018403, 1025014, 1031578, 1038141, 1044704, 1051267, 1057830, 1064393} },
{"Touch of Frost", {6022935, 22935, 322935, 222935, 1004474, 1011757, 1018404, 1025015, 1031579, 1038142, 1044705, 1051268, 1057831, 1064394} },
{"Wristguards of Vengeance", {6022936, 22936, 322936, 222936, 1004475, 1011758, 1018405, 1025016, 1031580, 1038143, 1044706, 1051269, 1057832, 1064395} },
{"Gem of Nerubis", {6022937, 22937, 322937, 222937, 1004478, 1011759, 1018406, 1025017, 1031581, 1038144, 1044707, 1051270, 1057833, 1064396} },
{"Cryptfiend Silk Cloak", {6022938, 22938, 322938, 222938, 1004479, 1011760, 1018407, 1025018, 1031582, 1038145, 1044708, 1051271, 1057834, 1064397} },
{"Band of Unanswered Prayers", {6022939, 22939, 322939, 222939, 1004480, 1011761, 1018408, 1025019, 1031583, 1038146, 1044709, 1051272, 1057835, 1064398} },
{"Icebane Pauldrons", {6022940, 22940, 322940, 222940, 1004481, 1011762, 1018409, 1025020, 1031584, 1038147, 1044710, 1051273, 1057836, 1064399} },
{"Polar Shoulder Pads", {6022941, 22941, 322941, 222941, 1004482, 1011763, 1018410, 1025021, 1031585, 1038148, 1044711, 1051274, 1057837, 1064400} },
{"The Widow's Embrace", {6022942, 22942, 322942, 222942, 1004484, 1011764, 1018411, 1025022, 1031586, 1038149, 1044712, 1051275, 1057838, 1064401} },
{"Malice Stone Pendant", {6022943, 22943, 322943, 222943, 1004485, 1011765, 1018412, 1025023, 1031587, 1038150, 1044713, 1051276, 1057839, 1064402} },
{"Pendant of Forgotten Names", {6022947, 22947, 322947, 222947, 1004486, 1011766, 1018413, 1025024, 1031588, 1038151, 1044714, 1051277, 1057840, 1064403} },
{"Kiss of the Spider", {6022954, 22954, 322954, 222954, 1004487, 1011767, 1018414, 1025025, 1031589, 1038152, 1044715, 1051278, 1057841, 1064404} },
{"Cloak of Suturing", {6022960, 22960, 322960, 222960, 1004492, 1011768, 1018415, 1025026, 1031590, 1038153, 1044716, 1051279, 1057842, 1064405} },
{"Band of Reanimation", {6022961, 22961, 322961, 222961, 1004496, 1011769, 1018416, 1025027, 1031591, 1038154, 1044717, 1051280, 1057843, 1064406} },
{"Icy Scale Spaulders", {6022967, 22967, 322967, 222967, 1004498, 1011770, 1018417, 1025028, 1031592, 1038155, 1044718, 1051281, 1057844, 1064407} },
{"Glacial Mantle", {6022968, 22968, 322968, 222968, 1004500, 1011771, 1018418, 1025029, 1031593, 1038156, 1044719, 1051282, 1057845, 1064408} },
{"Gluth's Missing Collar", {6022981, 22981, 322981, 222981, 1004502, 1011772, 1018419, 1025030, 1031594, 1038157, 1044720, 1051283, 1057846, 1064409} },
{"Rime Covered Mantle", {6022983, 22983, 322983, 222983, 1004503, 1011773, 1018420, 1025031, 1031595, 1038158, 1044721, 1051284, 1057847, 1064410} },
{"The End of Dreams", {6022988, 22988, 322988, 222988, 1004504, 1011774, 1018421, 1025032, 1031596, 1038159, 1044722, 1051285, 1057848, 1064411} },
{"Digested Hand of Power", {6022994, 22994, 322994, 222994, 1004505, 1011775, 1018422, 1025033, 1031597, 1038160, 1044723, 1051286, 1057849, 1064412} },
{"Plated Abomination Ribcage", {6023000, 23000, 323000, 223000, 1004507, 1011776, 1018423, 1025034, 1031598, 1038161, 1044724, 1051287, 1057850, 1064413} },
{"Eye of the Scourge", {6023001, 23001, 323001, 223001, 1004509, 1011777, 1018424, 1025035, 1031599, 1038162, 1044725, 1051288, 1057851, 1064414} },
{"Idol of Longevity", {6023004, 23004, 323004, 223004, 1004513, 1011778, 1018425, 1025036, 1031600, 1038163, 1044726, 1051289, 1057852, 1064415} },
{"Totem of Flowing Water", {6023005, 23005, 323005, 223005, 1004516, 1011779, 1018426, 1025037, 1031601, 1038164, 1044727, 1051290, 1057853, 1064416} },
{"Libram of Light", {6023006, 23006, 323006, 223006, 1004517, 1011780, 1018427, 1025038, 1031602, 1038165, 1044728, 1051291, 1057854, 1064417} },
{"Wand of the Whispering Dead", {6023009, 23009, 323009, 223009, 1004518, 1011781, 1018428, 1025039, 1031603, 1038166, 1044729, 1051292, 1057855, 1064418} },
{"Iblis, Blade of the Fallen Seraph", {6023014, 23014, 323014, 223014, 1004519, 1011782, 1018429, 1025040, 1031604, 1038167, 1044730, 1051293, 1057856, 1064419} },
{"Veil of Eclipse", {6023017, 23017, 323017, 223017, 1004520, 1011783, 1018430, 1025041, 1031605, 1038168, 1044731, 1051294, 1057857, 1064420} },
{"Signet of the Fallen Defender", {6023018, 23018, 323018, 223018, 1004521, 1011784, 1018431, 1025042, 1031606, 1038169, 1044732, 1051295, 1057858, 1064421} },
{"Icebane Helmet", {6023019, 23019, 323019, 223019, 1004522, 1011785, 1018432, 1025043, 1031607, 1038170, 1044733, 1051296, 1057859, 1064422} },
{"Polar Helmet", {6023020, 23020, 323020, 223020, 1004523, 1011786, 1018433, 1025044, 1031608, 1038171, 1044734, 1051297, 1057860, 1064423} },
{"The Soul Harvester's Bindings", {6023021, 23021, 323021, 223021, 1004524, 1011787, 1018434, 1025045, 1031609, 1038172, 1044735, 1051298, 1057861, 1064424} },
{"Sadist's Collar", {6023023, 23023, 323023, 223023, 1004525, 1011788, 1018435, 1025046, 1031610, 1038173, 1044736, 1051299, 1057862, 1064425} },
{"Seal of the Damned", {6023025, 23025, 323025, 223025, 1004526, 1011789, 1018436, 1025047, 1031611, 1038174, 1044737, 1051300, 1057863, 1064426} },
{"Warmth of Forgiveness", {6023027, 23027, 323027, 223027, 1004527, 1011790, 1018437, 1025048, 1031612, 1038175, 1044738, 1051301, 1057864, 1064427} },
{"Hailstone Band", {6023028, 23028, 323028, 223028, 1004528, 1011791, 1018438, 1025049, 1031613, 1038176, 1044739, 1051302, 1057865, 1064428} },
{"Noth's Frigid Heart", {6023029, 23029, 323029, 223029, 1004529, 1011792, 1018439, 1025050, 1031614, 1038177, 1044740, 1051303, 1057866, 1064429} },
{"Cloak of the Scourge", {6023030, 23030, 323030, 223030, 1004530, 1011793, 1018440, 1025051, 1031615, 1038178, 1044741, 1051304, 1057867, 1064430} },
{"Band of the Inevitable", {6023031, 23031, 323031, 223031, 1004531, 1011794, 1018441, 1025052, 1031616, 1038179, 1044742, 1051305, 1057868, 1064431} },
{"Glacial Headdress", {6023032, 23032, 323032, 223032, 1004532, 1011795, 1018442, 1025053, 1031617, 1038180, 1044743, 1051306, 1057869, 1064432} },
{"Icy Scale Coif", {6023033, 23033, 323033, 223033, 1004533, 1011796, 1018443, 1025054, 1031618, 1038181, 1044744, 1051307, 1057870, 1064433} },
{"Nax PH Crit Plate Shoulders", {6023034, 23034, 262528, 262529, 262530, 262531, 262532, 262533, 262534, 262535, 262536, 262537, 262538, 262539} },
{"Preceptor's Hat", {6023035, 23035, 323035, 223035, 1004534, 1011797, 1018444, 1025055, 1031619, 1038182, 1044745, 1051308, 1057871, 1064434} },
{"Necklace of Necropsy", {6023036, 23036, 323036, 223036, 1004535, 1011798, 1018445, 1025056, 1031620, 1038183, 1044746, 1051309, 1057872, 1064435} },
{"Ring of Spiritual Fervor", {6023037, 23037, 323037, 223037, 1004536, 1011799, 1018446, 1025057, 1031621, 1038184, 1044747, 1051310, 1057873, 1064436} },
{"Band of Unnatural Forces", {6023038, 23038, 323038, 223038, 1004537, 1011800, 1018447, 1025058, 1031622, 1038185, 1044748, 1051311, 1057874, 1064437} },
{"The Eye of Nerub", {6023039, 23039, 323039, 223039, 1004538, 1011801, 1018448, 1025059, 1031623, 1038186, 1044749, 1051312, 1057875, 1064438} },
{"Glyph of Deflection", {6023040, 23040, 323040, 223040, 1004539, 1011802, 1018449, 1025060, 1031624, 1038187, 1044750, 1051313, 1057876, 1064439} },
{"Slayer's Crest", {6023041, 23041, 323041, 223041, 1004540, 1011803, 1018450, 1025061, 1031625, 1038188, 1044751, 1051314, 1057877, 1064440} },
{"Loatheb's Reflection", {6023042, 23042, 323042, 223042, 1004541, 1011804, 1018451, 1025062, 1031626, 1038189, 1044752, 1051315, 1057878, 1064441} },
{"The Face of Death", {6023043, 23043, 323043, 223043, 1004542, 1011805, 1018452, 1025063, 1031627, 1038190, 1044753, 1051316, 1057879, 1064442} },
{"Harbinger of Doom", {6023044, 23044, 323044, 223044, 1004543, 1011806, 1018453, 1025064, 1031628, 1038191, 1044754, 1051317, 1057880, 1064443} },
{"Shroud of Dominion", {6023045, 23045, 323045, 223045, 1004544, 1011807, 1018454, 1025065, 1031629, 1038192, 1044755, 1051318, 1057881, 1064444} },
{"The Restrained Essence of Sapphiron", {6023046, 23046, 323046, 223046, 1004545, 1011808, 1018455, 1025066, 1031630, 1038193, 1044756, 1051319, 1057882, 1064445} },
{"Eye of the Dead", {6023047, 23047, 323047, 223047, 1004546, 1011809, 1018456, 1025067, 1031631, 1038194, 1044757, 1051320, 1057883, 1064446} },
{"Sapphiron's Right Eye", {6023048, 23048, 323048, 223048, 1004547, 1011810, 1018457, 1025068, 1031632, 1038195, 1044758, 1051321, 1057884, 1064447} },
{"Sapphiron's Left Eye", {6023049, 23049, 323049, 223049, 1004548, 1011811, 1018458, 1025069, 1031633, 1038196, 1044759, 1051322, 1057885, 1064448} },
{"Cloak of the Necropolis", {6023050, 23050, 323050, 223050, 1004549, 1011812, 1018459, 1025070, 1031634, 1038197, 1044760, 1051323, 1057886, 1064449} },
{"Glaive of the Defender", {262541, 23051, 262540, 262542, 262543, 262544, 262545, 262546, 262547, 262548, 262549, 262550, 262551, 262552} },
{"Stormrage's Talisman of Seething", {6023053, 23053, 323053, 223053, 1004550, 1011813, 1018460, 1025071, 1031635, 1038198, 1044761, 1051324, 1057887, 1064450} },
{"Gressil, Dawn of Ruin", {6023054, 23054, 323054, 223054, 1004551, 1011814, 1018461, 1025072, 1031636, 1038199, 1044762, 1051325, 1057888, 1064451} },
{"Hammer of the Twisting Nether", {6023056, 23056, 323056, 223056, 1004552, 1011815, 1018462, 1025073, 1031637, 1038200, 1044763, 1051326, 1057889, 1064452} },
{"Gem of Trapped Innocents", {6023057, 23057, 323057, 223057, 1004553, 1011816, 1018463, 1025074, 1031638, 1038201, 1044764, 1051327, 1057890, 1064453} },
{"Life Channeling Necklace", {6023058, 23058, 262553, 262554, 262555, 262556, 262557, 262558, 262559, 262560, 262561, 262562, 262563, 262564} },
{"Ring of the Dreadnaught", {6023059, 23059, 323059, 223059, 1004554, 1011817, 1018464, 1025075, 1031639, 1038202, 1044765, 1051328, 1057891, 1064454} },
{"Bonescythe Ring", {6023060, 23060, 323060, 223060, 1004555, 1011818, 1018465, 1025076, 1031640, 1038203, 1044766, 1051329, 1057892, 1064455} },
{"Ring of Faith", {6023061, 23061, 323061, 223061, 1004556, 1011819, 1018466, 1025077, 1031641, 1038204, 1044767, 1051330, 1057893, 1064456} },
{"Frostfire Ring", {6023062, 23062, 323062, 223062, 1004557, 1011820, 1018467, 1025078, 1031642, 1038205, 1044768, 1051331, 1057894, 1064457} },
{"Plagueheart Ring", {6023063, 23063, 323063, 223063, 1004558, 1011821, 1018468, 1025079, 1031643, 1038206, 1044769, 1051332, 1057895, 1064458} },
{"Ring of the Dreamwalker", {6023064, 23064, 323064, 223064, 1004559, 1011822, 1018469, 1025080, 1031644, 1038207, 1044770, 1051333, 1057896, 1064459} },
{"Ring of the Earthshatterer", {6023065, 23065, 323065, 223065, 1004560, 1011823, 1018470, 1025081, 1031645, 1038208, 1044771, 1051334, 1057897, 1064460} },
{"Ring of Redemption", {6023066, 23066, 323066, 223066, 1004561, 1011824, 1018471, 1025082, 1031646, 1038209, 1044772, 1051335, 1057898, 1064461} },
{"Ring of the Cryptstalker", {6023067, 23067, 323067, 223067, 1004562, 1011825, 1018472, 1025083, 1031647, 1038210, 1044773, 1051336, 1057899, 1064462} },
{"Legplates of Carnage", {6023068, 23068, 323068, 223068, 1004563, 1011826, 1018473, 1025084, 1031648, 1038211, 1044774, 1051337, 1057900, 1064463} },
{"Necro-Knight's Garb", {6023069, 23069, 323069, 223069, 1004564, 1011827, 1018474, 1025085, 1031649, 1038212, 1044775, 1051338, 1057901, 1064464} },
{"Leggings of Polarity", {6023070, 23070, 323070, 223070, 1004565, 1011828, 1018475, 1025086, 1031650, 1038213, 1044776, 1051339, 1057902, 1064465} },
{"Leggings of Apocalypse", {6023071, 23071, 323071, 223071, 1004566, 1011829, 1018476, 1025087, 1031651, 1038214, 1044777, 1051340, 1057903, 1064466} },
{"Fists of the Unrelenting", {6023072, 23072, 323072, 223072, 1004567, 1011830, 1018477, 1025088, 1031652, 1038215, 1044778, 1051341, 1057904, 1064467} },
{"Boots of Displacement", {6023073, 23073, 323073, 223073, 1004568, 1011831, 1018478, 1025089, 1031653, 1038216, 1044779, 1051342, 1057905, 1064468} },
{"Death's Bargain", {6023075, 23075, 323075, 223075, 1004569, 1011832, 1018479, 1025090, 1031654, 1038217, 1044780, 1051343, 1057906, 1064469} },
{"Gauntlets of Undead Slaying", {6023078, 23078, 262565, 262566, 262567, 262568, 262569, 262570, 262571, 262572, 262573, 262574, 262575, 262576} },
{"Handwraps of Undead Slaying", {6023081, 23081, 262577, 262578, 262579, 262580, 262581, 262582, 262583, 262584, 262585, 262586, 262587, 262588} },
{"Handguards of Undead Slaying", {6023082, 23082, 262589, 262590, 262591, 262592, 262593, 262594, 262595, 262596, 262597, 262598, 262599, 262600} },
{"Gloves of Undead Cleansing", {6023084, 23084, 262601, 262602, 262603, 262604, 262605, 262606, 262607, 262608, 262609, 262610, 262611, 262612} },
{"Robe of Undead Cleansing", {6023085, 23085, 262613, 262614, 262615, 262616, 262617, 262618, 262619, 262620, 262621, 262622, 262623, 262624} },
{"Breastplate of Undead Slaying", {6023087, 23087, 262625, 262626, 262627, 262628, 262629, 262630, 262631, 262632, 262633, 262634, 262635, 262636} },
{"Chestguard of Undead Slaying", {6023088, 23088, 262637, 262638, 262639, 262640, 262641, 262642, 262643, 262644, 262645, 262646, 262647, 262648} },
{"Tunic of Undead Slaying", {6023089, 23089, 262649, 262650, 262651, 262652, 262653, 262654, 262655, 262656, 262657, 262658, 262659, 262660} },
{"Bracers of Undead Slaying", {6023090, 23090, 262661, 262662, 262663, 262664, 262665, 262666, 262667, 262668, 262669, 262670, 262671, 262672} },
{"Bracers of Undead Cleansing", {6023091, 23091, 262673, 262674, 262675, 262676, 262677, 262678, 262679, 262680, 262681, 262682, 262683, 262684} },
{"Wristguards of Undead Slaying", {6023092, 23092, 262685, 262686, 262687, 262688, 262689, 262690, 262691, 262692, 262693, 262694, 262695, 262696} },
{"Wristwraps of Undead Slaying", {6023093, 23093, 262697, 262698, 262699, 262700, 262701, 262702, 262703, 262704, 262705, 262706, 262707, 262708} },
{"Staff of Balzaphon", {6023124, 23124, 262709, 262710, 262711, 262712, 262713, 262714, 262715, 262716, 262717, 262718, 262719, 262720} },
{"Chains of the Lich", {6023125, 23125, 262721, 262722, 262723, 262724, 262725, 262726, 262727, 262728, 262729, 262730, 262731, 262732} },
{"Waistband of Balzaphon", {6023126, 23126, 262733, 262734, 262735, 262736, 262737, 262738, 262739, 262740, 262741, 262742, 262743, 262744} },
{"Cloak of Revanchion", {6023127, 23127, 262745, 262746, 262747, 262748, 262749, 262750, 262751, 262752, 262753, 262754, 262755, 262756} },
{"The Shadow's Grasp", {6023128, 23128, 262757, 262758, 262759, 262760, 262761, 262762, 262763, 262764, 262765, 262766, 262767, 262768} },
{"Bracers of Mending", {6023129, 23129, 262769, 262770, 262771, 262772, 262773, 262774, 262775, 262776, 262777, 262778, 262779, 262780} },
{"Lord Blackwood's Blade", {6023132, 23132, 262781, 262782, 262783, 262784, 262785, 262786, 262787, 262788, 262789, 262790, 262791, 262792} },
{"Lord Blackwood's Buckler", {6023139, 23139, 262793, 262794, 262795, 262796, 262797, 262798, 262799, 262800, 262801, 262802, 262803, 262804} },
{"Blackwood's Thigh", {6023156, 23156, 262805, 262806, 262807, 262808, 262809, 262810, 262811, 262812, 262813, 262814, 262815, 262816} },
{"Idol of the Moon", {6023197, 23197, 323197, 223197, 1004570, 1011833, 1018480, 1025091, 1031655, 1038218, 1044781, 1051344, 1057907, 1064470} },
{"Idol of Brutality", {6023198, 23198, 323198, 223198, 1004571, 1011834, 1018481, 1025092, 1031656, 1038219, 1044782, 1051345, 1057908, 1064471} },
{"Totem of the Storm", {6023199, 23199, 323199, 223199, 1004572, 1011835, 1018482, 1025093, 1031657, 1038220, 1044783, 1051346, 1057909, 1064472} },
{"Totem of Sustaining", {6023200, 23200, 262908, 262909, 262910, 262911, 262912, 262913, 262914, 262915, 262916, 262917, 262918, 262919} },
{"Libram of Divinity", {6023201, 23201, 262920, 262921, 262922, 262923, 262924, 262925, 262926, 262927, 262928, 262929, 262930, 262931} },
{"Libram of Fervor", {6023203, 23203, 323203, 223203, 1004573, 1011836, 1018483, 1025094, 1031658, 1038221, 1044784, 1051347, 1057910, 1064473} },
{"Mark of the Champion", {6023206, 23206, 122741, 223206, 1004574, 1011837, 1018484, 1025095, 1031659, 1038222, 1044785, 1051348, 1057911, 1064474} },
{"Girdle of the Mentor", {6023219, 23219, 323219, 223219, 1004576, 1011839, 1018486, 1025097, 1031661, 1038224, 1044787, 1051350, 1057913, 1064476} },
{"Crystal Webbed Robe", {6023220, 23220, 323220, 223220, 1004577, 1011840, 1018487, 1025098, 1031662, 1038225, 1044788, 1051351, 1057914, 1064477} },
{"Misplaced Servo Arm", {6023221, 23221, 323221, 223221, 1004578, 1011841, 1018488, 1025099, 1031663, 1038226, 1044789, 1051352, 1057915, 1064478} },
{"Ghoul Skin Tunic", {6023226, 23226, 323226, 223226, 1004579, 1011842, 1018489, 1025100, 1031664, 1038227, 1044790, 1051353, 1057916, 1064479} },
{"Ring of the Eternal Flame", {6023237, 23237, 323237, 223237, 1004580, 1011843, 1018490, 1025101, 1031665, 1038228, 1044791, 1051354, 1057917, 1064480} },
{"Stygian Buckler", {6023238, 23238, 323238, 223238, 1004581, 1011844, 1018491, 1025102, 1031666, 1038229, 1044792, 1051355, 1057918, 1064481} },
{"Claw of the Frost Wyrm", {6023242, 23242, 323242, 223242, 1004582, 1011845, 1018492, 1025103, 1031667, 1038230, 1044793, 1051356, 1057919, 1064482} },
{"Hammer of the Sun", {6023362, 23362, 263713, 263714, 263715, 263716, 263717, 263718, 263719, 263720, 263721, 263722, 263723, 263724} },
{"Titanic Breastplate", {6023363, 23363, 263725, 263726, 263727, 263728, 263729, 263730, 263731, 263732, 263733, 263734, 263735, 263736} },
{"High Warlord's Destroyer", {6023457, 23457, 264160, 264161, 264162, 264163, 264164, 264165, 264166, 264167, 264168, 264169, 264170, 264171} },
{"High Warlord's Quickblade", {6023461, 23461, 264196, 264197, 264198, 264199, 264200, 264201, 264202, 264203, 264204, 264205, 264206, 264207} },
{"High Warlord's Tome of Destruction", {6023462, 23462, 264208, 264209, 264210, 264211, 264212, 264213, 264214, 264215, 264216, 264217, 264218, 264219} },
{"Fel Iron Plate Gloves", {264293, 23482, 264292, 264294, 264295, 264296, 264297, 264298, 264299, 264300, 264301, 264302, 264303, 264304} },
{"Fel Iron Plate Belt", {264306, 23484, 264305, 264307, 264308, 264309, 264310, 264311, 264312, 264313, 264314, 264315, 264316, 264317} },
{"Fel Iron Plate Boots", {264319, 23487, 264318, 264320, 264321, 264322, 264323, 264324, 264325, 264326, 264327, 264328, 264329, 264330} },
{"Fel Iron Plate Pants", {264332, 23488, 264331, 264333, 264334, 264335, 264336, 264337, 264338, 264339, 264340, 264341, 264342, 264343} },
{"Fel Iron Breastplate", {264345, 23489, 264344, 264346, 264347, 264348, 264349, 264350, 264351, 264352, 264353, 264354, 264355, 264356} },
{"Fel Iron Chain Tunic", {264358, 23490, 264357, 264359, 264360, 264361, 264362, 264363, 264364, 264365, 264366, 264367, 264368, 264369} },
{"Fel Iron Chain Gloves", {264371, 23491, 264370, 264372, 264373, 264374, 264375, 264376, 264377, 264378, 264379, 264380, 264381, 264382} },
{"Fel Iron Chain Coif", {264384, 23493, 264383, 264385, 264386, 264387, 264388, 264389, 264390, 264391, 264392, 264393, 264394, 264395} },
{"Fel Iron Chain Bracers", {264397, 23494, 264396, 264398, 264399, 264400, 264401, 264402, 264403, 264404, 264405, 264406, 264407, 264408} },
{"Fel Iron Hatchet", {264410, 23497, 264409, 264411, 264412, 264413, 264414, 264415, 264416, 264417, 264418, 264419, 264420, 264421} },
{"Fel Iron Hammer", {264423, 23498, 264422, 264424, 264425, 264426, 264427, 264428, 264429, 264430, 264431, 264432, 264433, 264434} },
{"Fel Iron Greatsword", {264436, 23499, 264435, 264437, 264438, 264439, 264440, 264441, 264442, 264443, 264444, 264445, 264446, 264447} },
{"Adamantite Maul", {264449, 23502, 264448, 264450, 264451, 264452, 264453, 264454, 264455, 264456, 264457, 264458, 264459, 264460} },
{"Adamantite Cleaver", {264462, 23503, 264461, 264463, 264464, 264465, 264466, 264467, 264468, 264469, 264470, 264471, 264472, 264473} },
{"Adamantite Dagger", {264475, 23504, 264474, 264476, 264477, 264478, 264479, 264480, 264481, 264482, 264483, 264484, 264485, 264486} },
{"Adamantite Rapier", {264488, 23505, 264487, 264489, 264490, 264491, 264492, 264493, 264494, 264495, 264496, 264497, 264498, 264499} },
{"Adamantite Plate Bracers", {6023506, 23506, 264500, 264501, 264502, 264503, 264504, 264505, 264506, 264507, 264508, 264509, 264510, 264511} },
{"Adamantite Breastplate", {6023507, 23507, 264512, 264513, 264514, 264515, 264516, 264517, 264518, 264519, 264520, 264521, 264522, 264523} },
{"Adamantite Plate Gloves", {6023508, 23508, 264524, 264525, 264526, 264527, 264528, 264529, 264530, 264531, 264532, 264533, 264534, 264535} },
{"Enchanted Adamantite Breastplate", {6023509, 23509, 264536, 264537, 264538, 264539, 264540, 264541, 264542, 264543, 264544, 264545, 264546, 264547} },
{"Enchanted Adamantite Belt", {6023510, 23510, 264548, 264549, 264550, 264551, 264552, 264553, 264554, 264555, 264556, 264557, 264558, 264559} },
{"Enchanted Adamantite Boots", {6023511, 23511, 264560, 264561, 264562, 264563, 264564, 264565, 264566, 264567, 264568, 264569, 264570, 264571} },
{"Enchanted Adamantite Leggings", {6023512, 23512, 264572, 264573, 264574, 264575, 264576, 264577, 264578, 264579, 264580, 264581, 264582, 264583} },
{"Flamebane Breastplate", {6023513, 23513, 264584, 264585, 264586, 264587, 264588, 264589, 264590, 264591, 264592, 264593, 264594, 264595} },
{"Flamebane Gloves", {6023514, 23514, 264596, 264597, 264598, 264599, 264600, 264601, 264602, 264603, 264604, 264605, 264606, 264607} },
{"Flamebane Bracers", {6023515, 23515, 264608, 264609, 264610, 264611, 264612, 264613, 264614, 264615, 264616, 264617, 264618, 264619} },
{"Flamebane Helm", {6023516, 23516, 264620, 264621, 264622, 264623, 264624, 264625, 264626, 264627, 264628, 264629, 264630, 264631} },
{"Felsteel Gloves", {6023517, 23517, 264632, 264633, 264634, 264635, 264636, 264637, 264638, 264639, 264640, 264641, 264642, 264643} },
{"Felsteel Leggings", {6023518, 23518, 264644, 264645, 264646, 264647, 264648, 264649, 264650, 264651, 264652, 264653, 264654, 264655} },
{"Felsteel Helm", {6023519, 23519, 264656, 264657, 264658, 264659, 264660, 264661, 264662, 264663, 264664, 264665, 264666, 264667} },
{"Ragesteel Gloves", {6023520, 23520, 264668, 264669, 264670, 264671, 264672, 264673, 264674, 264675, 264676, 264677, 264678, 264679} },
{"Ragesteel Helm", {6023521, 23521, 264680, 264681, 264682, 264683, 264684, 264685, 264686, 264687, 264688, 264689, 264690, 264691} },
{"Ragesteel Breastplate", {6023522, 23522, 264692, 264693, 264694, 264695, 264696, 264697, 264698, 264699, 264700, 264701, 264702, 264703} },
{"Khorium Pants", {6023523, 23523, 264704, 264705, 264706, 264707, 264708, 264709, 264710, 264711, 264712, 264713, 264714, 264715} },
{"Khorium Belt", {6023524, 23524, 264716, 264717, 264718, 264719, 264720, 264721, 264722, 264723, 264724, 264725, 264726, 264727} },
{"Khorium Boots", {6023525, 23525, 264728, 264729, 264730, 264731, 264732, 264733, 264734, 264735, 264736, 264737, 264738, 264739} },
{"Swiftsteel Gloves", {6023526, 23526, 264740, 264741, 264742, 264743, 264744, 264745, 264746, 264747, 264748, 264749, 264750, 264751} },
{"Earthpeace Breastplate", {6023527, 23527, 264752, 264753, 264754, 264755, 264756, 264757, 264758, 264759, 264760, 264761, 264762, 264763} },
{"Felfury Gauntlets", {6023531, 23531, 264764, 264765, 264766, 264767, 264768, 264769, 264770, 264771, 264772, 264773, 264774, 264775} },
{"Gauntlets of the Iron Tower", {6023532, 23532, 264776, 264777, 264778, 264779, 264780, 264781, 264782, 264783, 264784, 264785, 264786, 264787} },
{"Steelgrip Gauntlets", {6023533, 23533, 264788, 264789, 264790, 264791, 264792, 264793, 264794, 264795, 264796, 264797, 264798, 264799} },
{"Storm Helm", {6023534, 23534, 264800, 264801, 264802, 264803, 264804, 264805, 264806, 264807, 264808, 264809, 264810, 264811} },
{"Helm of the Stalwart Defender", {6023535, 23535, 264812, 264813, 264814, 264815, 264816, 264817, 264818, 264819, 264820, 264821, 264822, 264823} },
{"Oathkeeper's Helm", {6023536, 23536, 264824, 264825, 264826, 264827, 264828, 264829, 264830, 264831, 264832, 264833, 264834, 264835} },
{"Black Felsteel Bracers", {6023537, 23537, 264836, 264837, 264838, 264839, 264840, 264841, 264842, 264843, 264844, 264845, 264846, 264847} },
{"Bracers of the Green Fortress", {6023538, 23538, 264848, 264849, 264850, 264851, 264852, 264853, 264854, 264855, 264856, 264857, 264858, 264859} },
{"Blessed Bracers", {6023539, 23539, 264860, 264861, 264862, 264863, 264864, 264865, 264866, 264867, 264868, 264869, 264870, 264871} },
{"Felsteel Longblade", {6023540, 23540, 264872, 264873, 264874, 264875, 264876, 264877, 264878, 264879, 264880, 264881, 264882, 264883} },
{"Khorium Champion", {6023541, 23541, 264884, 264885, 264886, 264887, 264888, 264889, 264890, 264891, 264892, 264893, 264894, 264895} },
{"Fel Edged Battleaxe", {6023542, 23542, 264896, 264897, 264898, 264899, 264900, 264901, 264902, 264903, 264904, 264905, 264906, 264907} },
{"Felsteel Reaper", {6023543, 23543, 264908, 264909, 264910, 264911, 264912, 264913, 264914, 264915, 264916, 264917, 264918, 264919} },
{"Runic Hammer", {6023544, 23544, 264920, 264921, 264922, 264923, 264924, 264925, 264926, 264927, 264928, 264929, 264930, 264931} },
{"Fel Hardened Maul", {6023546, 23546, 264932, 264933, 264934, 264935, 264936, 264937, 264938, 264939, 264940, 264941, 264942, 264943} },
{"Eternium Runed Blade", {6023554, 23554, 264944, 264945, 264946, 264947, 264948, 264949, 264950, 264951, 264952, 264953, 264954, 264955} },
{"Dirge", {6023555, 23555, 264956, 264957, 264958, 264959, 264960, 264961, 264962, 264963, 264964, 264965, 264966, 264967} },
{"Hand of Eternity", {6023556, 23556, 264968, 264969, 264970, 264971, 264972, 264973, 264974, 264975, 264976, 264977, 264978, 264979} },
{"Larvae of the Great Worm", {6023557, 23557, 323557, 223557, 1004583, 1011846, 1018493, 1025104, 1031668, 1038231, 1044794, 1051357, 1057920, 1064483} },
{"The Burrower's Shell", {6023558, 23558, 323558, 223558, 1004584, 1011847, 1018494, 1025105, 1031669, 1038232, 1044795, 1051358, 1057921, 1064484} },
{"Nether Chain Shirt", {6023563, 23563, 264980, 264981, 264982, 264983, 264984, 264985, 264986, 264987, 264988, 264989, 264990, 264991} },
{"Twisting Nether Chain Shirt", {6023564, 23564, 264992, 264993, 264994, 264995, 264996, 264997, 264998, 264999, 265000, 265001, 265002, 265003} },
{"Embrace of the Twisting Nether", {6023565, 23565, 265004, 265005, 265006, 265007, 265008, 265009, 265010, 265011, 265012, 265013, 265014, 265015} },
{"Jom Gabbar", {6023570, 23570, 323570, 223570, 1004585, 1011848, 1018495, 1025106, 1031670, 1038233, 1044796, 1051359, 1057922, 1064485} },
{"The Hungering Cold", {6023577, 23577, 323577, 223577, 1004586, 1011849, 1018496, 1025107, 1031671, 1038234, 1044797, 1051360, 1057923, 1064486} },
{"Mirren's Drinking Hat", {265017, 23587, 265016, 265018, 265019, 265020, 265021, 265022, 265023, 265024, 265025, 265026, 265027, 265028} },
{"Girdle of Elemental Fury", {6023663, 23663, 323663, 223663, 1004587, 1011850, 1018497, 1025108, 1031672, 1038235, 1044798, 1051361, 1057924, 1064487} },
{"Pauldrons of Elemental Fury", {6023664, 23664, 323664, 223664, 1004588, 1011851, 1018498, 1025109, 1031673, 1038236, 1044799, 1051362, 1057925, 1064488} },
{"Leggings of Elemental Fury", {6023665, 23665, 323665, 223665, 1004589, 1011852, 1018499, 1025110, 1031674, 1038237, 1044800, 1051363, 1057926, 1064489} },
{"Belt of the Grand Crusader", {6023666, 23666, 323666, 223666, 1004590, 1011853, 1018500, 1025111, 1031675, 1038238, 1044801, 1051364, 1057927, 1064490} },
{"Spaulders of the Grand Crusader", {6023667, 23667, 323667, 223667, 1004591, 1011854, 1018501, 1025112, 1031676, 1038239, 1044802, 1051365, 1057928, 1064491} },
{"Leggings of the Grand Crusader", {6023668, 23668, 323668, 223668, 1004592, 1011855, 1018502, 1025113, 1031677, 1038240, 1044803, 1051366, 1057929, 1064492} },
{"Fel Iron Musket", {265056, 23742, 265055, 265057, 265058, 265059, 265060, 265061, 265062, 265063, 265064, 265065, 265066, 265067} },
{"Adamantite Rifle", {265069, 23746, 265068, 265070, 265071, 265072, 265073, 265074, 265075, 265076, 265077, 265078, 265079, 265080} },
{"Felsteel Boomstick", {6023747, 23747, 265081, 265082, 265083, 265084, 265085, 265086, 265087, 265088, 265089, 265090, 265091, 265092} },
{"Ornate Khorium Rifle", {6023748, 23748, 265093, 265094, 265095, 265096, 265097, 265098, 265099, 265100, 265101, 265102, 265103, 265104} },
{"Cogspinner Goggles", {6023758, 23758, 265105, 265106, 265107, 265108, 265109, 265110, 265111, 265112, 265113, 265114, 265115, 265116} },
{"Power Amplification Goggles", {6023761, 23761, 265117, 265118, 265119, 265120, 265121, 265122, 265123, 265124, 265125, 265126, 265127, 265128} },
{"Hyper-Vision Goggles", {6023763, 23763, 265141, 265142, 265143, 265144, 265145, 265146, 265147, 265148, 265149, 265150, 265151, 265152} },
{"Rocket Boots Xtreme", {6023824, 23824, 265153, 265154, 265155, 265156, 265157, 265158, 265159, 265160, 265161, 265162, 265163, 265164} },
{"Nigh Invulnerability Belt", {6023825, 23825, 265165, 265166, 265167, 265168, 265169, 265170, 265171, 265172, 265173, 265174, 265175, 265176} },
{"Gnomish Power Goggles", {6023828, 23828, 265177, 265178, 265179, 265180, 265181, 265182, 265183, 265184, 265185, 265186, 265187, 265188} },
{"Gnomish Battle Goggles", {6023829, 23829, 265189, 265190, 265191, 265192, 265193, 265194, 265195, 265196, 265197, 265198, 265199, 265200} },
{"Gnomish Poultryizer", {6023835, 23835, 265201, 265202, 265203, 265204, 265205, 265206, 265207, 265208, 265209, 265210, 265211, 265212} },
{"Goblin Rocket Launcher", {6023836, 23836, 265213, 265214, 265215, 265216, 265217, 265218, 265219, 265220, 265221, 265222, 265223, 265224} },
{"Foreman's Enchanted Helmet", {6023838, 23838, 265225, 265226, 265227, 265228, 265229, 265230, 265231, 265232, 265233, 265234, 265235, 265236} },
{"Foreman's Reinforced Helmet", {6023839, 23839, 265237, 265238, 265239, 265240, 265241, 265242, 265243, 265244, 265245, 265246, 265247, 265248} },
{"Shadowrend Longblade", {6024020, 24020, 123794, 424020, 1006289, 1013337, 1019978, 1026576, 1033140, 1039703, 1046266, 1052829, 1059392, 1065955} },
{"Light-Touched Breastplate", {6024021, 24021, 121495, 424021, 1006290, 1013338, 1019979, 1026577, 1033141, 1039704, 1046267, 1052830, 1059393, 1065956} },
{"Scale Leggings of the Skirmisher", {6024022, 24022, 123700, 424022, 1006291, 1013339, 1019980, 1026578, 1033142, 1039705, 1046268, 1052831, 1059394, 1065957} },
{"Bracers of Finesse", {6024023, 24023, 100635, 424023, 1006292, 1013340, 1019981, 1026579, 1033143, 1039706, 1046269, 1052832, 1059395, 1065958} },
{"Pauldrons of Arcane Rage", {6024024, 24024, 123190, 424024, 1006293, 1013341, 1019982, 1026580, 1033144, 1039707, 1046270, 1052833, 1059396, 1065959} },
{"Hellreaver", {6024044, 24044, 120520, 424044, 1006294, 1013343, 1019983, 1026581, 1033145, 1039708, 1046271, 1052834, 1059397, 1065960} },
{"Band of Renewal", {6024045, 24045, 100208, 424045, 1006295, 1013344, 1019984, 1026582, 1033146, 1039709, 1046272, 1052835, 1059398, 1065961} },
{"Kilt of Rolling Thunders", {6024046, 24046, 120775, 424046, 1006296, 1013345, 1019985, 1026583, 1033147, 1039710, 1046273, 1052836, 1059399, 1065962} },
{"Shifting Sash of Midnight", {6024063, 24063, 123830, 424063, 1006297, 1013346, 1019986, 1026584, 1033148, 1039711, 1046274, 1052837, 1059400, 1065963} },
{"Ironsole Clompers", {6024064, 24064, 120679, 424064, 1006298, 1013347, 1019987, 1026585, 1033149, 1039712, 1046275, 1052838, 1059401, 1065964} },
{"Crystalfire Staff", {6024069, 24069, 100950, 424069, 1006299, 1013348, 1019988, 1026586, 1033150, 1039713, 1046276, 1052839, 1059402, 1065965} },
{"Bland Dagger", {6024071, 24071, 265288, 265289, 265290, 265291, 265292, 265293, 265294, 265295, 265296, 265297, 265298, 265299} },
{"Garrote-String Necklace", {6024073, 24073, 116892, 424073, 1006302, 1013349, 1019989, 1026587, 1033151, 1039714, 1046277, 1052840, 1059403, 1065966} },
{"Fel Iron Blood Ring", {265301, 24074, 265300, 265302, 265303, 265304, 265305, 265306, 265307, 265308, 265309, 265310, 265311, 265312} },
{"Golden Draenite Ring", {265314, 24075, 265313, 265315, 265316, 265317, 265318, 265319, 265320, 265321, 265322, 265323, 265324, 265325} },
{"Azure Moonstone Ring", {265327, 24076, 265326, 265328, 265329, 265330, 265331, 265332, 265333, 265334, 265335, 265336, 265337, 265338} },
{"Thick Adamantite Necklace", {265340, 24077, 265339, 265341, 265342, 265343, 265344, 265345, 265346, 265347, 265348, 265349, 265350, 265351} },
{"Heavy Adamantite Ring", {265353, 24078, 265352, 265354, 265355, 265356, 265357, 265358, 265359, 265360, 265361, 265362, 265363, 265364} },
{"Khorium Band of Shadows", {6024079, 24079, 265365, 265366, 265367, 265368, 265369, 265370, 265371, 265372, 265373, 265374, 265375, 265376} },
{"Khorium Band of Frost", {6024080, 24080, 265377, 265378, 265379, 265380, 265381, 265382, 265383, 265384, 265385, 265386, 265387, 265388} },
{"Khorium Inferno Band", {6024082, 24082, 265389, 265390, 265391, 265392, 265393, 265394, 265395, 265396, 265397, 265398, 265399, 265400} },
{"Lifegiver Britches", {6024083, 24083, 120973, 424083, 1006303, 1013350, 1019990, 1026588, 1033152, 1039715, 1046278, 1052841, 1059404, 1065967} },
{"Khorium Band of Leaves", {6024085, 24085, 265401, 265402, 265403, 265404, 265405, 265406, 265407, 265408, 265409, 265410, 265411, 265412} },
{"Arcane Khorium Band", {6024086, 24086, 265413, 265414, 265415, 265416, 265417, 265418, 265419, 265420, 265421, 265422, 265423, 265424} },
{"Heavy Felsteel Ring", {6024087, 24087, 265425, 265426, 265427, 265428, 265429, 265430, 265431, 265432, 265433, 265434, 265435, 265436} },
{"Delicate Eternium Ring", {6024088, 24088, 265437, 265438, 265439, 265440, 265441, 265442, 265443, 265444, 265445, 265446, 265447, 265448} },
{"Blazing Eternium Band", {6024089, 24089, 265449, 265450, 265451, 265452, 265453, 265454, 265455, 265456, 265457, 265458, 265459, 265460} },
{"Bloodstained Ravager Gauntlets", {6024090, 24090, 100393, 424090, 1006306, 1013351, 1019991, 1026589, 1033153, 1039716, 1046279, 1052842, 1059405, 1065968} },
{"Tenacious Defender", {6024091, 24091, 130055, 424091, 1006307, 1013352, 1019992, 1026590, 1033154, 1039717, 1046280, 1052843, 1059406, 1065969} },
{"Pendant of Frozen Flame", {6024092, 24092, 265461, 265462, 265463, 265464, 265465, 265466, 265467, 265468, 265469, 265470, 265471, 265472} },
{"Pendant of Thawing", {6024093, 24093, 265473, 265474, 265475, 265476, 265477, 265478, 265479, 265480, 265481, 265482, 265483, 265484} },
{"Heart Fire Warhammer", {6024094, 24094, 120496, 424094, 1006308, 1013353, 1019993, 1026591, 1033155, 1039718, 1046281, 1052844, 1059407, 1065970} },
{"Pendant of Withering", {6024095, 24095, 265485, 265486, 265487, 265488, 265489, 265490, 265491, 265492, 265493, 265494, 265495, 265496} },
{"Heartblood Prayer Beads", {6024096, 24096, 120505, 424096, 1006311, 1013354, 1019994, 1026592, 1033156, 1039719, 1046282, 1052845, 1059408, 1065971} },
{"Pendant of Shadow's End", {6024097, 24097, 265497, 265498, 265499, 265500, 265501, 265502, 265503, 265504, 265505, 265506, 265507, 265508} },
{"Pendant of the Null Rune", {6024098, 24098, 265509, 265510, 265511, 265512, 265513, 265514, 265515, 265516, 265517, 265518, 265519, 265520} },
{"Living Ruby Pendant", {6024110, 24110, 265572, 265573, 265574, 265575, 265576, 265577, 265578, 265579, 265580, 265581, 265582, 265583} },
{"Braided Eternium Chain", {6024114, 24114, 265623, 265624, 265625, 265626, 265627, 265628, 265629, 265630, 265631, 265632, 265633, 265634} },
{"Eye of the Night", {6024116, 24116, 265635, 265636, 265637, 265638, 265639, 265640, 265641, 265642, 265643, 265644, 265645, 265646} },
{"Embrace of the Dawn", {6024117, 24117, 265647, 265648, 265649, 265650, 265651, 265652, 265653, 265654, 265655, 265656, 265657, 265658} },
{"Chain of the Twilight Owl", {6024121, 24121, 265698, 265699, 265700, 265701, 265702, 265703, 265704, 265705, 265706, 265707, 265708, 265709} },
{"Coronet of Verdant Flame", {6024122, 24122, 265710, 265711, 265712, 265713, 265714, 265715, 265716, 265717, 265718, 265719, 265720, 265721} },
{"Circlet of Arcane Might", {6024123, 24123, 265722, 265723, 265724, 265725, 265726, 265727, 265728, 265729, 265730, 265731, 265732, 265733} },
{"Figurine - Felsteel Boar", {6024124, 24124, 265734, 265735, 265736, 265737, 265738, 265739, 265740, 265741, 265742, 265743, 265744, 265745} },
{"Figurine - Dawnstone Crab", {6024125, 24125, 265746, 265747, 265748, 265749, 265750, 265751, 265752, 265753, 265754, 265755, 265756, 265757} },
{"Figurine - Living Ruby Serpent", {6024126, 24126, 265758, 265759, 265760, 265761, 265762, 265763, 265764, 265765, 265766, 265767, 265768, 265769} },
{"Figurine - Talasite Owl", {6024127, 24127, 265770, 265771, 265772, 265773, 265774, 265775, 265776, 265777, 265778, 265779, 265780, 265781} },
{"Figurine - Nightseye Panther", {6024128, 24128, 265782, 265783, 265784, 265785, 265786, 265787, 265788, 265789, 265790, 265791, 265792, 265793} },
{"PH Plate Ramparts Reward", {6024137, 24137, 265807, 265808, 265809, 265810, 265811, 265812, 265813, 265814, 265815, 265816, 265817, 265818} },
{"Witching Band", {6024154, 24154, 130938, 424154, 1006316, 1013357, 1019997, 1026595, 1033159, 1039722, 1046285, 1052848, 1059411, 1065974} },
{"Ursol's Claw", {6024155, 24155, 130544, 424155, 1006317, 1013358, 1019998, 1026596, 1033160, 1039723, 1046286, 1052849, 1059412, 1065975} },
{"The Shadowfoot Stabber", {6024222, 24222, 324222, 224222, 1004593, 1011856, 1018503, 1025114, 1031678, 1038241, 1044804, 1051367, 1057930, 1064493} },
{"Bracers of Havok", {6024250, 24250, 265844, 265845, 265846, 265847, 265848, 265849, 265850, 265851, 265852, 265853, 265854, 265855} },
{"Blackstrike Bracers", {6024251, 24251, 265856, 265857, 265858, 265859, 265860, 265861, 265862, 265863, 265864, 265865, 265866, 265867} },
{"Cloak of the Black Void", {6024252, 24252, 265868, 265869, 265870, 265871, 265872, 265873, 265874, 265875, 265876, 265877, 265878, 265879} },
{"Cloak of Eternity", {6024253, 24253, 265880, 265881, 265882, 265883, 265884, 265885, 265886, 265887, 265888, 265889, 265890, 265891} },
{"White Remedy Cape", {6024254, 24254, 265892, 265893, 265894, 265895, 265896, 265897, 265898, 265899, 265900, 265901, 265902, 265903} },
{"Girdle of Ruination", {6024256, 24256, 265916, 265917, 265918, 265919, 265920, 265921, 265922, 265923, 265924, 265925, 265926, 265927} },
{"Black Belt of Knowledge", {6024257, 24257, 265928, 265929, 265930, 265931, 265932, 265933, 265934, 265935, 265936, 265937, 265938, 265939} },
{"Vengeance Wrap", {6024259, 24259, 265952, 265953, 265954, 265955, 265956, 265957, 265958, 265959, 265960, 265961, 265962, 265963} },
{"Manaweave Cloak", {6024260, 24260, 265964, 265965, 265966, 265967, 265968, 265969, 265970, 265971, 265972, 265973, 265974, 265975} },
{"Whitemend Pants", {6024261, 24261, 265976, 265977, 265978, 265979, 265980, 265981, 265982, 265983, 265984, 265985, 265986, 265987} },
{"Spellstrike Pants", {6024262, 24262, 265988, 265989, 265990, 265991, 265992, 265993, 265994, 265995, 265996, 265997, 265998, 265999} },
{"Battlecast Pants", {6024263, 24263, 266000, 266001, 266002, 266003, 266004, 266005, 266006, 266007, 266008, 266009, 266010, 266011} },
{"Whitemend Hood", {6024264, 24264, 266012, 266013, 266014, 266015, 266016, 266017, 266018, 266019, 266020, 266021, 266022, 266023} },
{"Old Spellstrike Hood", {6024265, 24265, 266024, 266025, 266026, 266027, 266028, 266029, 266030, 266031, 266032, 266033, 266034, 266035} },
{"Spellstrike Hood", {6024266, 24266, 266036, 266037, 266038, 266039, 266040, 266041, 266042, 266043, 266044, 266045, 266046, 266047} },
{"Battlecast Hood", {6024267, 24267, 266048, 266049, 266050, 266051, 266052, 266053, 266054, 266055, 266056, 266057, 266058, 266059} },
{"Wastewalker Shiv", {6024356, 24356, 130819, 424356, 1006320, 1013359, 1019999, 1026597, 1033161, 1039724, 1046287, 1052850, 1059413, 1065976} },
{"Vest of Living Lightning", {6024357, 24357, 130620, 424357, 1006321, 1013360, 1020000, 1026598, 1033162, 1039725, 1046288, 1052851, 1059414, 1065977} },
{"Princely Reign Leggings", {6024359, 24359, 123460, 424359, 1006322, 1013361, 1020001, 1026599, 1033163, 1039726, 1046289, 1052852, 1059415, 1065978} },
{"Spellfire Longsword", {6024361, 24361, 128165, 424361, 1006324, 1013363, 1020003, 1026601, 1033165, 1039728, 1046291, 1052854, 1059417, 1065980} },
{"Spore-Soaked Vaneer", {6024362, 24362, 128347, 424362, 1006326, 1013364, 1020004, 1026602, 1033166, 1039729, 1046292, 1052855, 1059418, 1065981} },
{"Unscarred Breastplate", {6024363, 24363, 130543, 424363, 1006327, 1013365, 1020005, 1026603, 1033167, 1039730, 1046293, 1052856, 1059419, 1065982} },
{"Azureplate Greaves", {6024364, 24364, 100190, 424364, 1006328, 1013366, 1020006, 1026604, 1033168, 1039731, 1046294, 1052857, 1059420, 1065983} },
{"Deft Handguards", {6024365, 24365, 101043, 424365, 1006331, 1013367, 1020007, 1026605, 1033169, 1039732, 1046295, 1052858, 1059421, 1065984} },
{"Scorpid-Sting Mantle", {6024366, 24366, 123724, 424366, 1006332, 1013368, 1020008, 1026606, 1033170, 1039733, 1046296, 1052859, 1059422, 1065985} },
{"Runed Fungalcap", {6024376, 24376, 123650, 424376, 1006333, 1013369, 1020009, 1026607, 1033171, 1039734, 1046297, 1052860, 1059423, 1065986} },
{"Coilfang Hammer of Renewal", {6024378, 24378, 100828, 424378, 1006335, 1013370, 1020010, 1026608, 1033172, 1039735, 1046298, 1052861, 1059424, 1065987} },
{"Bogstrok Scale Cloak", {6024379, 24379, 100416, 424379, 1006338, 1013371, 1020011, 1026609, 1033173, 1039736, 1046299, 1052862, 1059425, 1065988} },
{"Calming Spore Reed", {6024380, 24380, 100706, 424380, 1006339, 1013372, 1020012, 1026610, 1033174, 1039737, 1046300, 1052863, 1059426, 1065989} },
{"Coilfang Needler", {6024381, 24381, 100829, 424381, 1006340, 1013373, 1020013, 1026611, 1033175, 1039738, 1046301, 1052864, 1059427, 1065990} },
{"Diamond-Core Sledgemace", {6024384, 24384, 102315, 424384, 1006345, 1013374, 1020014, 1026612, 1033176, 1039739, 1046302, 1052865, 1059428, 1065991} },
{"Pendant of Battle-Lust", {6024385, 24385, 123394, 424385, 1006346, 1013375, 1020015, 1026613, 1033177, 1039740, 1046303, 1052866, 1059429, 1065992} },
{"Libram of Saints Departed", {6024386, 24386, 120964, 424386, 1006347, 1013376, 1020016, 1026614, 1033178, 1039741, 1046304, 1052867, 1059430, 1065993} },
{"Ironblade Gauntlets", {6024387, 24387, 120676, 424387, 1006349, 1013377, 1020017, 1026615, 1033179, 1039742, 1046305, 1052868, 1059431, 1065994} },
{"Girdle of the Gale Storm", {6024388, 24388, 117451, 424388, 1006351, 1013378, 1020018, 1026616, 1033180, 1039743, 1046306, 1052869, 1059432, 1065995} },
{"Legion Blunderbuss", {6024389, 24389, 120901, 424389, 1006352, 1013379, 1020019, 1026617, 1033181, 1039744, 1046307, 1052870, 1059433, 1065996} },
{"Auslese's Light Channeler", {6024390, 24390, 100178, 424390, 1006356, 1013380, 1020020, 1026618, 1033182, 1039745, 1046308, 1052871, 1059434, 1065997} },
{"Kilt of the Night Strider", {6024391, 24391, 120778, 424391, 1006358, 1013381, 1020021, 1026619, 1033183, 1039746, 1046309, 1052872, 1059435, 1065998} },
{"Arcing Bracers", {6024392, 24392, 100134, 424392, 1006359, 1013382, 1020022, 1026620, 1033184, 1039747, 1046310, 1052873, 1059436, 1065999} },
{"Bloody Surgeon's Mitts", {6024393, 24393, 100395, 424393, 1006361, 1013383, 1020023, 1026621, 1033185, 1039748, 1046311, 1052874, 1059437, 1066000} },
{"Warsong Howling Axe", {6024394, 24394, 130807, 424394, 1006362, 1013384, 1020024, 1026622, 1033186, 1039749, 1046312, 1052875, 1059438, 1066001} },
{"Mindfire Waistband", {6024395, 24395, 122895, 424395, 1006363, 1013385, 1020025, 1026623, 1033187, 1039750, 1046313, 1052876, 1059439, 1066002} },
{"Vest of Vengeance", {6024396, 24396, 130622, 424396, 1006365, 1013386, 1020026, 1026624, 1033188, 1039751, 1046314, 1052877, 1059440, 1066003} },
{"Raiments of Divine Authority", {6024397, 24397, 123488, 424397, 1006366, 1013387, 1020027, 1026625, 1033189, 1039752, 1046315, 1052878, 1059441, 1066004} },
{"Mantle of the Dusk-Dweller", {6024398, 24398, 122731, 424398, 1006367, 1013388, 1020028, 1026626, 1033190, 1039753, 1046316, 1052879, 1059442, 1066005} },
{"Totem of the Thunderhead", {6024413, 24413, 130442, 424413, 1006369, 1013389, 1020029, 1026627, 1033191, 1039754, 1046317, 1052880, 1059443, 1066006} },
{"Manaspark Gloves", {6024450, 24450, 122692, 424450, 1006370, 1013390, 1020030, 1026628, 1033192, 1039755, 1046318, 1052881, 1059444, 1066007} },
{"Lykul Bloodbands", {6024451, 24451, 122431, 424451, 1006371, 1013391, 1020031, 1026629, 1033193, 1039756, 1046319, 1052882, 1059445, 1066008} },
{"Starlight Gauntlets", {6024452, 24452, 128614, 424452, 1006372, 1013392, 1020032, 1026630, 1033194, 1039757, 1046320, 1052883, 1059446, 1066009} },
{"Zangartooth Shortblade", {6024453, 24453, 131029, 424453, 1006373, 1013393, 1020033, 1026631, 1033195, 1039758, 1046321, 1052884, 1059447, 1066010} },
{"Cloak of Enduring Swiftness", {6024454, 24454, 100806, 424454, 1006374, 1013394, 1020034, 1026632, 1033196, 1039759, 1046322, 1052885, 1059448, 1066011} },
{"Tunic of the Nightwatcher", {6024455, 24455, 130480, 424455, 1006375, 1013396, 1020035, 1026633, 1033197, 1039760, 1046323, 1052886, 1059449, 1066012} },
{"Greaves of the Iron Guardian", {6024456, 24456, 120177, 424456, 1006376, 1013397, 1020036, 1026634, 1033198, 1039761, 1046324, 1052887, 1059450, 1066013} },
{"Truth Bearer Shoulderguards", {6024457, 24457, 130477, 424457, 1006377, 1013398, 1020037, 1026635, 1033199, 1039762, 1046325, 1052888, 1059451, 1066014} },
{"Studded Girdle of Virtue", {6024458, 24458, 128909, 424458, 1006378, 1013399, 1020038, 1026636, 1033200, 1039763, 1046326, 1052889, 1059452, 1066015} },
{"Cloak of Healing Rays", {6024459, 24459, 100808, 424459, 1006380, 1013400, 1020039, 1026637, 1033201, 1039764, 1046327, 1052890, 1059453, 1066016} },
{"Talisman of Tenacity", {6024460, 24460, 129804, 424460, 1006381, 1013401, 1020040, 1026638, 1033202, 1039765, 1046328, 1052891, 1059454, 1066017} },
{"Hatebringer", {6024461, 24461, 120472, 424461, 1006382, 1013402, 1020041, 1026639, 1033203, 1039766, 1046329, 1052892, 1059455, 1066018} },
{"Luminous Pearls of Insight", {6024462, 24462, 122303, 424462, 1006383, 1013403, 1020042, 1026640, 1033204, 1039767, 1046330, 1052893, 1059456, 1066019} },
{"Pauldrons of Brute Force", {6024463, 24463, 123192, 424463, 1006384, 1013404, 1020043, 1026641, 1033205, 1039768, 1046331, 1052894, 1059457, 1066020} },
{"The Stalker's Fangs", {6024464, 24464, 130341, 424464, 1006385, 1013406, 1020044, 1026642, 1033206, 1039769, 1046332, 1052895, 1059458, 1066021} },
{"Shamblehide Chestguard", {6024465, 24465, 123798, 424465, 1006386, 1013407, 1020045, 1026643, 1033207, 1039770, 1046333, 1052896, 1059459, 1066022} },
{"Skulldugger's Leggings", {6024466, 24466, 124082, 424466, 1006387, 1013408, 1020046, 1026644, 1033208, 1039771, 1046334, 1052897, 1059460, 1066023} },
{"Robes of the Augurer", {6024481, 24481, 123629, 424481, 1006388, 1013409, 1020047, 1026645, 1033209, 1039772, 1046335, 1052898, 1059461, 1066024} },
{"130 Epic Warrior Bracelets", {6024526, 24526, 266294, 266295, 266296, 266297, 266298, 266299, 266300, 266301, 266302, 266303, 266304, 266305} },
{"130 Test Caster Belt", {6024561, 24561, 266341, 266342, 266343, 266344, 266345, 266346, 266347, 266348, 266349, 266350, 266351, 266352} },
{"130 Test Caster Cloak", {6024567, 24567, 266353, 266354, 266355, 266356, 266357, 266358, 266359, 266360, 266361, 266362, 266363, 266364} },
{"Outlander's Girdle", {266366, 24575, 266365, 266367, 266368, 266369, 266370, 266371, 266372, 266373, 266374, 266375, 266376, 266377} },
{"Outlander's Boots", {266379, 24582, 266378, 266380, 266381, 266382, 266383, 266384, 266385, 266386, 266387, 266388, 266389, 266390} },
{"Outlander's Tunic", {266392, 24583, 266391, 266393, 266394, 266395, 266396, 266397, 266398, 266399, 266400, 266401, 266402, 266403} },
{"Outlander's Gloves", {266405, 24584, 266404, 266406, 266407, 266408, 266409, 266410, 266411, 266412, 266413, 266414, 266415, 266416} },
{"Outlander's Facewrap", {266418, 24585, 266417, 266419, 266420, 266421, 266422, 266423, 266424, 266425, 266426, 266427, 266428, 266429} },
{"Outlander's Leggings", {266431, 24586, 266430, 266432, 266433, 266434, 266435, 266436, 266437, 266438, 266439, 266440, 266441, 266442} },
{"Outlander's Pauldrons", {266444, 24587, 266443, 266445, 266446, 266447, 266448, 266449, 266450, 266451, 266452, 266453, 266454, 266455} },
{"Outlander's Bracers", {266457, 24588, 266456, 266458, 266459, 266460, 266461, 266462, 266463, 266464, 266465, 266466, 266467, 266468} },
{"Fireheart Girdle", {114929, 24589, 114893, 424589, 1006389, 1013410, 1020048, 1026646, 1033210, 1039773, 1046336, 1052899, 1059462, 1066025} },
{"Fireheart Boots", {114832, 24590, 114830, 424590, 1006390, 1013411, 1020049, 1026647, 1033211, 1039774, 1046337, 1052900, 1059463, 1066026} },
{"Fireheart Chestpiece", {114892, 24591, 114878, 424591, 1006391, 1013412, 1020050, 1026648, 1033212, 1039775, 1046338, 1052901, 1059464, 1066027} },
{"Fireheart Gloves", {114997, 24592, 114944, 424592, 1006392, 1013413, 1020051, 1026649, 1033213, 1039776, 1046339, 1052902, 1059465, 1066028} },
{"Fireheart Skullcap", {115361, 24593, 115360, 424593, 1006397, 1013414, 1020052, 1026650, 1033214, 1039777, 1046340, 1052903, 1059466, 1066029} },
{"Fireheart Leggings", {115021, 24594, 114998, 424594, 1006398, 1013415, 1020053, 1026651, 1033215, 1039778, 1046341, 1052904, 1059467, 1066030} },
{"Fireheart Shoulderpads", {115023, 24595, 115022, 424595, 1006402, 1013416, 1020054, 1026652, 1033216, 1039779, 1046342, 1052905, 1059468, 1066031} },
{"Fireheart Bracers", {114840, 24596, 114839, 424596, 1006403, 1013417, 1020055, 1026653, 1033217, 1039780, 1046343, 1052906, 1059469, 1066032} },
{"Starfire Sash", {128486, 24597, 128485, 424597, 1006406, 1013418, 1020056, 1026654, 1033218, 1039781, 1046344, 1052907, 1059470, 1066033} },
{"Starfire Sandals", {128484, 24598, 128483, 424598, 1006407, 1013419, 1020057, 1026655, 1033219, 1039782, 1046345, 1052908, 1059471, 1066034} },
{"Starfire Vest", {128555, 24599, 128532, 424599, 1006408, 1013420, 1020058, 1026656, 1033220, 1039783, 1046346, 1052909, 1059472, 1066035} },
{"Starfire Gloves", {128406, 24600, 128400, 424600, 1006411, 1013421, 1020059, 1026657, 1033221, 1039784, 1046347, 1052910, 1059473, 1066036} },
{"Starfire Circlet", {128399, 24601, 128395, 424601, 1006412, 1013422, 1020060, 1026658, 1033222, 1039785, 1046348, 1052911, 1059474, 1066037} },
{"Starfire Trousers", {128531, 24602, 128514, 424602, 1006413, 1013423, 1020061, 1026659, 1033223, 1039786, 1046349, 1052912, 1059475, 1066038} },
{"Starfire Mantle", {128408, 24603, 128407, 424603, 1006415, 1013424, 1020062, 1026660, 1033224, 1039787, 1046350, 1052913, 1059476, 1066039} },
{"Starfire Wristwraps", {128557, 24604, 128556, 424604, 1006416, 1013425, 1020063, 1026661, 1033225, 1039788, 1046351, 1052914, 1059477, 1066040} },
{"Laughing Skull Waistguard", {120838, 24605, 120837, 424605, 1006417, 1013426, 1020064, 1026662, 1033226, 1039789, 1046352, 1052915, 1059478, 1066041} },
{"Laughing Skull Boot", {120822, 24606, 120821, 424606, 1006418, 1013427, 1020065, 1026663, 1033227, 1039790, 1046353, 1052916, 1059479, 1066042} },
{"Laughing Skull Tunic", {120836, 24607, 120835, 424607, 1006419, 1013428, 1020066, 1026664, 1033228, 1039791, 1046354, 1052917, 1059480, 1066043} },
{"Laughing Skull Gloves", {120828, 24608, 120827, 424608, 1006420, 1013429, 1020067, 1026665, 1033229, 1039792, 1046355, 1052918, 1059481, 1066044} },
{"Laughing Skull Cap", {120826, 24609, 120825, 424609, 1006421, 1013430, 1020068, 1026666, 1033230, 1039793, 1046356, 1052919, 1059482, 1066045} },
{"Laughing Skull Pants", {120832, 24610, 120831, 424610, 1006422, 1013431, 1020069, 1026667, 1033231, 1039794, 1046357, 1052920, 1059483, 1066046} },
{"Laughing Skull Shoulderpads", {120834, 24611, 120833, 424611, 1006426, 1013432, 1020070, 1026668, 1033232, 1039795, 1046358, 1052921, 1059484, 1066047} },
{"Laughing Skull Bracelets", {120824, 24612, 120823, 424612, 1006428, 1013433, 1020071, 1026669, 1033233, 1039796, 1046359, 1052922, 1059485, 1066048} },
{"Vindicator Belt", {130677, 24613, 130676, 424613, 1006429, 1013434, 1020072, 1026670, 1033234, 1039797, 1046360, 1052923, 1059486, 1066049} },
{"Vindicator Boots", {130679, 24614, 130678, 424614, 1006430, 1013435, 1020073, 1026671, 1033235, 1039798, 1046361, 1052924, 1059487, 1066050} },
{"Vindicator Tunic", {130691, 24615, 130690, 424615, 1006431, 1013436, 1020074, 1026672, 1033236, 1039799, 1046362, 1052925, 1059488, 1066051} },
{"Vindicator Gloves", {130685, 24616, 130684, 424616, 1006432, 1013437, 1020075, 1026673, 1033237, 1039800, 1046363, 1052926, 1059489, 1066052} },
{"Vindicator Cap", {130683, 24617, 130682, 424617, 1006433, 1013438, 1020076, 1026674, 1033238, 1039801, 1046364, 1052927, 1059490, 1066053} },
{"Vindicator Pants", {130687, 24618, 130686, 424618, 1006434, 1013439, 1020077, 1026675, 1033239, 1039802, 1046365, 1052928, 1059491, 1066054} },
{"Vindicator Shoulderpads", {130689, 24619, 130688, 424619, 1006436, 1013440, 1020078, 1026676, 1033240, 1039803, 1046366, 1052929, 1059492, 1066055} },
{"Vindicator Bracers", {130681, 24620, 130680, 424620, 1006437, 1013441, 1020079, 1026677, 1033241, 1039804, 1046367, 1052930, 1059493, 1066056} },
{"Slavehandler Belt", {124662, 24621, 124643, 424621, 1006438, 1013442, 1020080, 1026678, 1033242, 1039805, 1046368, 1052931, 1059494, 1066057} },
{"Slavehandler Footpads", {124666, 24622, 124665, 424622, 1006439, 1013443, 1020081, 1026679, 1033243, 1039806, 1046369, 1052932, 1059495, 1066058} },
{"Slavehandler Jerkin", {126932, 24623, 124673, 424623, 1006440, 1013444, 1020082, 1026680, 1033244, 1039807, 1046370, 1052933, 1059496, 1066059} },
{"Slavehandler Handwraps", {124668, 24624, 124667, 424624, 1006441, 1013445, 1020083, 1026681, 1033245, 1039808, 1046371, 1052934, 1059497, 1066060} },
{"Slavehandler Cap", {124664, 24625, 124663, 424625, 1006442, 1013446, 1020084, 1026682, 1033246, 1039809, 1046372, 1052935, 1059498, 1066061} },
{"Slavehandler Pants", {126985, 24626, 126984, 424626, 1006443, 1013447, 1020085, 1026683, 1033247, 1039810, 1046373, 1052936, 1059499, 1066062} },
{"Slavehandler Amice", {124639, 24627, 124539, 424627, 1006444, 1013448, 1020086, 1026684, 1033248, 1039811, 1046374, 1052937, 1059500, 1066063} },
{"Slavehandler Wristguards", {127036, 24628, 127021, 424628, 1006445, 1013449, 1020087, 1026685, 1033249, 1039812, 1046375, 1052938, 1059501, 1066064} },
{"Feralfen Sash", {114650, 24629, 114649, 424629, 1006446, 1013450, 1020088, 1026686, 1033250, 1039813, 1046376, 1052939, 1059502, 1066065} },
{"Feralfen Sandals", {114647, 24630, 114646, 424630, 1006447, 1013451, 1020089, 1026687, 1033251, 1039814, 1046377, 1052940, 1059503, 1066066} },
{"Feralfen Jerkin", {114643, 24631, 114642, 424631, 1006448, 1013452, 1020090, 1026688, 1033252, 1039815, 1046378, 1052941, 1059504, 1066067} },
{"Feralfen Hand", {114638, 24632, 114637, 424632, 1006449, 1013453, 1020091, 1026689, 1033253, 1039816, 1046379, 1052942, 1059505, 1066068} },
{"Feralfen Hood", {114640, 24633, 114639, 424633, 1006450, 1013454, 1020092, 1026690, 1033254, 1039817, 1046380, 1052943, 1059506, 1066069} },
{"Feralfen Pants", {114645, 24634, 114644, 424634, 1006452, 1013455, 1020093, 1026691, 1033255, 1039818, 1046381, 1052944, 1059507, 1066070} },
{"Feralfen Amice", {114632, 24635, 114631, 424635, 1006456, 1013456, 1020094, 1026692, 1033256, 1039819, 1046382, 1052945, 1059508, 1066071} },
{"Feralfen Cuffs", {114636, 24636, 114635, 424636, 1006457, 1013457, 1020095, 1026693, 1033257, 1039820, 1046383, 1052946, 1059509, 1066072} },
{"Mistyreed Belt", {122901, 24637, 122900, 424637, 1006458, 1013458, 1020096, 1026694, 1033258, 1039821, 1046384, 1052947, 1059510, 1066073} },
{"Mistyreed Boots", {122903, 24638, 122902, 424638, 1006459, 1013459, 1020097, 1026695, 1033259, 1039822, 1046385, 1052948, 1059511, 1066074} },
{"Mistyreed Tunic", {122917, 24639, 122916, 424639, 1006461, 1013460, 1020098, 1026696, 1033260, 1039823, 1046386, 1052949, 1059512, 1066075} },
{"Mistyreed Gloves", {122907, 24640, 122906, 424640, 1006462, 1013461, 1020099, 1026697, 1033261, 1039824, 1046387, 1052950, 1059513, 1066076} },
{"Mistyreed Hood", {122909, 24641, 122908, 424641, 1006463, 1013462, 1020100, 1026698, 1033262, 1039825, 1046388, 1052951, 1059514, 1066077} },
{"Mistyreed Pants", {122911, 24642, 122910, 424642, 1006464, 1013463, 1020101, 1026699, 1033263, 1039826, 1046389, 1052952, 1059515, 1066078} },
{"Mistyreed Shoulderpads", {122913, 24643, 122912, 424643, 1006467, 1013464, 1020102, 1026700, 1033264, 1039827, 1046390, 1052953, 1059516, 1066079} },
{"Mistyreed Bracers", {122905, 24644, 122904, 424644, 1006469, 1013466, 1020103, 1026701, 1033265, 1039828, 1046391, 1052954, 1059517, 1066080} },
{"Astralaan Belt", {100156, 24645, 100155, 424645, 1006472, 1013467, 1020104, 1026702, 1033266, 1039829, 1046392, 1052955, 1059518, 1066081} },
{"Astralaan Boots", {100158, 24646, 100157, 424646, 1006473, 1013468, 1020105, 1026703, 1033267, 1039830, 1046393, 1052956, 1059519, 1066082} },
{"Astralaan Robe", {100170, 24647, 100169, 424647, 1006474, 1013469, 1020106, 1026704, 1033268, 1039831, 1046394, 1052957, 1059520, 1066083} },
{"Astralaan Gloves", {100162, 24648, 100161, 424648, 1006475, 1013470, 1020107, 1026705, 1033269, 1039832, 1046395, 1052958, 1059521, 1066084} },
{"Astralaan Headdress", {100164, 24649, 100163, 424649, 1006477, 1013471, 1020108, 1026706, 1033270, 1039833, 1046396, 1052959, 1059522, 1066085} },
{"Astralaan Pants", {100168, 24650, 100167, 424650, 1006478, 1013472, 1020109, 1026707, 1033271, 1039834, 1046397, 1052960, 1059523, 1066086} },
{"Astralaan Shoulderpads", {100172, 24651, 100171, 424651, 1006479, 1013473, 1020110, 1026708, 1033272, 1039835, 1046398, 1052961, 1059524, 1066087} },
{"Astralaan Bracer", {100160, 24652, 100159, 424652, 1006480, 1013474, 1020111, 1026709, 1033273, 1039836, 1046399, 1052962, 1059525, 1066088} },
{"Consortium Sash", {100888, 24653, 100887, 424653, 1006481, 1013475, 1020112, 1026710, 1033274, 1039837, 1046400, 1052963, 1059526, 1066089} },
{"Consortium Boot", {100872, 24654, 100871, 424654, 1006482, 1013476, 1020113, 1026711, 1033275, 1039838, 1046401, 1052964, 1059527, 1066090} },
{"Consortium Robe", {100886, 24655, 100885, 424655, 1006484, 1013477, 1020114, 1026712, 1033276, 1039839, 1046402, 1052965, 1059528, 1066091} },
{"Consortium Gloves", {100878, 24656, 100877, 424656, 1006485, 1013478, 1020115, 1026713, 1033277, 1039840, 1046403, 1052966, 1059529, 1066092} },
{"Consortium Hood", {100880, 24657, 100879, 424657, 1006486, 1013479, 1020116, 1026714, 1033278, 1039841, 1046404, 1052967, 1059530, 1066093} },
{"Consortium Pants", {100884, 24658, 100883, 424658, 1006487, 1013480, 1020117, 1026715, 1033279, 1039842, 1046405, 1052968, 1059531, 1066094} },
{"Consortium Mantle", {100882, 24659, 100881, 424659, 1006488, 1013481, 1020118, 1026716, 1033280, 1039843, 1046406, 1052969, 1059532, 1066095} },
{"Consortium Bracer", {100874, 24660, 100873, 424660, 1006489, 1013482, 1020119, 1026717, 1033281, 1039844, 1046407, 1052970, 1059533, 1066096} },
{"Shadow Council Chain", {123760, 24661, 123759, 424661, 1006491, 1013483, 1020120, 1026718, 1033282, 1039845, 1046408, 1052971, 1059534, 1066097} },
{"Shadow Council Boots", {123756, 24662, 123755, 424662, 1006492, 1013484, 1020121, 1026719, 1033283, 1039846, 1046409, 1052972, 1059535, 1066098} },
{"Shadow Council Tunic", {123772, 24663, 123771, 424663, 1006496, 1013485, 1020122, 1026720, 1033284, 1039847, 1046410, 1052973, 1059536, 1066099} },
{"Shadow Council Gloves", {123764, 24664, 123763, 424664, 1006498, 1013486, 1020123, 1026721, 1033285, 1039848, 1046411, 1052974, 1059537, 1066100} },
{"Shadow Council Cowl", {123762, 24665, 123761, 424665, 1006500, 1013487, 1020124, 1026722, 1033286, 1039849, 1046412, 1052975, 1059538, 1066101} },
{"Shadow Council Pants", {123770, 24666, 123769, 424666, 1006501, 1013488, 1020125, 1026723, 1033287, 1039850, 1046413, 1052976, 1059539, 1066102} },
{"Shadow Council Mantle", {123766, 24667, 123765, 424667, 1006502, 1013489, 1020126, 1026724, 1033288, 1039851, 1046414, 1052977, 1059540, 1066103} },
{"Shadow Council Bracer", {123758, 24668, 123757, 424668, 1006503, 1013490, 1020127, 1026725, 1033289, 1039852, 1046415, 1052978, 1059541, 1066104} },
{"Eldr'naan Belt", {103898, 24669, 103897, 424669, 1006504, 1013491, 1020128, 1026726, 1033290, 1039853, 1046416, 1052979, 1059542, 1066105} },
{"Eldr'naan Boots", {103900, 24670, 103899, 424670, 1006505, 1013492, 1020129, 1026727, 1033291, 1039854, 1046417, 1052980, 1059543, 1066106} },
{"Eldr'naan Jerkin", {103908, 24671, 103907, 424671, 1006507, 1013493, 1020130, 1026728, 1033292, 1039855, 1046418, 1052981, 1059544, 1066107} },
{"Eldr'naan Gloves", {103904, 24672, 103903, 424672, 1006509, 1013494, 1020131, 1026729, 1033293, 1039856, 1046419, 1052982, 1059545, 1066108} },
{"Eldr'naan Hood", {103906, 24673, 103905, 424673, 1006513, 1013495, 1020132, 1026730, 1033294, 1039857, 1046420, 1052983, 1059546, 1066109} },
{"Eldr'naan Pants", {103910, 24674, 103909, 424674, 1006516, 1013496, 1020133, 1026731, 1033295, 1039858, 1046421, 1052984, 1059547, 1066110} },
{"Eldr'naan Shoulderpads", {103914, 24675, 103913, 424675, 1006517, 1013497, 1020134, 1026732, 1033296, 1039859, 1046422, 1052985, 1059548, 1066111} },
{"Eldr'naan Bracelets", {103902, 24676, 103901, 424676, 1006518, 1013498, 1020135, 1026733, 1033297, 1039860, 1046423, 1052986, 1059549, 1066112} },
{"Archmage Belt", {100117, 24677, 100116, 424677, 1006519, 1013499, 1020136, 1026734, 1033298, 1039861, 1046424, 1052987, 1059550, 1066113} },
{"Archmage Slippers", {100133, 24678, 100132, 424678, 1006520, 1013500, 1020137, 1026735, 1033299, 1039862, 1046425, 1052988, 1059551, 1066114} },
{"Archmage Robe", {100131, 24679, 100130, 424679, 1006521, 1013501, 1020138, 1026736, 1033300, 1039863, 1046426, 1052989, 1059552, 1066115} },
{"Archmage Gloves", {100121, 24680, 100120, 424680, 1006522, 1013502, 1020139, 1026737, 1033301, 1039864, 1046427, 1052990, 1059553, 1066116} },
{"Archmage Headpiece", {100123, 24681, 100122, 424681, 1006523, 1013503, 1020140, 1026738, 1033302, 1039865, 1046428, 1052991, 1059554, 1066117} },
{"Archmage Pants", {100129, 24682, 100128, 424682, 1006524, 1013504, 1020141, 1026739, 1033303, 1039866, 1046429, 1052992, 1059555, 1066118} },
{"Archmage Mantle", {100125, 24683, 100124, 424683, 1006525, 1013505, 1020142, 1026740, 1033304, 1039867, 1046430, 1052993, 1059556, 1066119} },
{"Archmage Bracelets", {100119, 24684, 100118, 424684, 1006526, 1013507, 1020143, 1026741, 1033305, 1039868, 1046431, 1052994, 1059557, 1066120} },
{"Elementalist Belt", {103921, 24685, 103920, 424685, 1006527, 1013508, 1020144, 1026742, 1033306, 1039869, 1046432, 1052995, 1059558, 1066121} },
{"Elementalist Boots", {103923, 24686, 103922, 424686, 1006528, 1013509, 1020145, 1026743, 1033307, 1039870, 1046433, 1052996, 1059559, 1066122} },
{"Elementalist Tunic", {112690, 24687, 112679, 424687, 1006529, 1013510, 1020146, 1026744, 1033308, 1039871, 1046434, 1052997, 1059560, 1066123} },
{"Elementalist Gloves", {112652, 24688, 112651, 424688, 1006530, 1013511, 1020147, 1026745, 1033309, 1039872, 1046435, 1052998, 1059561, 1066124} },
{"Elementalist Skullcap", {112676, 24689, 112675, 424689, 1006531, 1013513, 1020148, 1026746, 1033310, 1039873, 1046436, 1052999, 1059562, 1066125} },
{"Elementalist Leggings", {112654, 24690, 112653, 424690, 1006532, 1013514, 1020149, 1026747, 1033311, 1039874, 1046437, 1053000, 1059563, 1066126} },
{"Elementalist Mantle", {112674, 24691, 112673, 424691, 1006533, 1013515, 1020150, 1026748, 1033312, 1039875, 1046438, 1053001, 1059564, 1066127} },
{"Elementalist Bracelets", {112639, 24692, 112638, 424692, 1006534, 1013516, 1020151, 1026749, 1033313, 1039876, 1046439, 1053002, 1059565, 1066128} },
{"Bonechewer Pelt-Girdle", {266470, 24693, 266469, 266471, 266472, 266473, 266474, 266475, 266476, 266477, 266478, 266479, 266480, 266481} },
{"Bonechewer Shredboots", {266483, 24694, 266482, 266484, 266485, 266486, 266487, 266488, 266489, 266490, 266491, 266492, 266493, 266494} },
{"Bonechewer Chestpiece", {266496, 24695, 266495, 266497, 266498, 266499, 266500, 266501, 266502, 266503, 266504, 266505, 266506, 266507} },
{"Bonechewer Spikegloves", {266509, 24696, 266508, 266510, 266511, 266512, 266513, 266514, 266515, 266516, 266517, 266518, 266519, 266520} },
{"Bonechewer Skincloak", {266522, 24697, 266521, 266523, 266524, 266525, 266526, 266527, 266528, 266529, 266530, 266531, 266532, 266533} },
{"Bonechewer Ripleggings", {266535, 24698, 266534, 266536, 266537, 266538, 266539, 266540, 266541, 266542, 266543, 266544, 266545, 266546} },
{"Bonechewer Shoulderguards", {266548, 24699, 266547, 266549, 266550, 266551, 266552, 266553, 266554, 266555, 266556, 266557, 266558, 266559} },
{"Bonechewer Bands", {266561, 24700, 266560, 266562, 266563, 266564, 266565, 266566, 266567, 266568, 266569, 266570, 266571, 266572} },
{"Haal'eshi Cord", {120413, 24701, 120412, 424701, 1006535, 1013517, 1020152, 1026750, 1033314, 1039877, 1046440, 1053003, 1059566, 1066129} },
{"Haal'eshi Boots", {120411, 24702, 120410, 424702, 1006536, 1013518, 1020153, 1026751, 1033315, 1039878, 1046441, 1053004, 1059567, 1066130} },
{"Haal'eshi Jerkin", {120420, 24703, 120419, 424703, 1006537, 1013519, 1020154, 1026752, 1033316, 1039879, 1046442, 1053005, 1059568, 1066131} },
{"Haal'eshi Gloves", {120415, 24704, 120414, 424704, 1006538, 1013520, 1020155, 1026753, 1033317, 1039880, 1046443, 1053006, 1059569, 1066132} },
{"Haal'eshi Hat", {120417, 24705, 120416, 424705, 1006539, 1013521, 1020156, 1026754, 1033318, 1039881, 1046444, 1053007, 1059570, 1066133} },
{"Haal'eshi Leggings", {120422, 24706, 120421, 424706, 1006540, 1013522, 1020157, 1026755, 1033319, 1039882, 1046445, 1053008, 1059571, 1066134} },
{"Haal'eshi Pauldrons", {120424, 24707, 120423, 424707, 1006541, 1013523, 1020158, 1026756, 1033320, 1039883, 1046446, 1053009, 1059572, 1066135} },
{"Haal'eshi Bindings", {120409, 24708, 120408, 424708, 1006542, 1013524, 1020159, 1026757, 1033321, 1039884, 1046447, 1053010, 1059573, 1066136} },
{"Vengeance Belt", {130594, 24709, 130593, 424709, 1006543, 1013525, 1020160, 1026758, 1033322, 1039885, 1046448, 1053011, 1059574, 1066137} },
{"Vengeance Boots", {130598, 24710, 130597, 424710, 1006544, 1013526, 1020161, 1026759, 1033323, 1039886, 1046449, 1053012, 1059575, 1066138} },
{"Vengeance Chestpiece", {130600, 24711, 130599, 424711, 1006545, 1013527, 1020162, 1026760, 1033324, 1039887, 1046450, 1053013, 1059576, 1066139} },
{"Vengeance Gloves", {130602, 24712, 130601, 424712, 1006546, 1013528, 1020163, 1026761, 1033325, 1039888, 1046451, 1053014, 1059577, 1066140} },
{"Vengeance Helm", {130604, 24713, 130603, 424713, 1006547, 1013529, 1020164, 1026762, 1033326, 1039889, 1046452, 1053015, 1059578, 1066141} },
{"Vengeance Legguards", {130606, 24714, 130605, 424714, 1006548, 1013530, 1020165, 1026763, 1033327, 1039890, 1046453, 1053016, 1059579, 1066142} },
{"Vengeance Pauldrons", {130608, 24715, 130607, 424715, 1006549, 1013531, 1020166, 1026764, 1033328, 1039891, 1046454, 1053017, 1059580, 1066143} },
{"Vengeance Bands", {130592, 24716, 130591, 424716, 1006550, 1013532, 1020167, 1026765, 1033329, 1039892, 1046455, 1053018, 1059581, 1066144} },
{"Dreghood Belt", {102396, 24717, 102395, 424717, 1006551, 1013533, 1020168, 1026766, 1033330, 1039893, 1046456, 1053019, 1059582, 1066145} },
{"Dreghood Boots", {102398, 24718, 102397, 424718, 1006552, 1013534, 1020169, 1026767, 1033331, 1039894, 1046457, 1053020, 1059583, 1066146} },
{"Dreghood Chestpiece", {102400, 24719, 102399, 424719, 1006553, 1013535, 1020170, 1026768, 1033332, 1039895, 1046458, 1053021, 1059584, 1066147} },
{"Dreghood Gloves", {102404, 24720, 102403, 424720, 1006554, 1013536, 1020171, 1026769, 1033333, 1039896, 1046459, 1053022, 1059585, 1066148} },
{"Dreghood Cowl", {102402, 24721, 102401, 424721, 1006555, 1013537, 1020172, 1026770, 1033334, 1039897, 1046460, 1053023, 1059586, 1066149} },
{"Dreghood Trousers", {102410, 24722, 102409, 424722, 1006556, 1013538, 1020173, 1026771, 1033335, 1039898, 1046461, 1053024, 1059587, 1066150} },
{"Dreghood Pauldrons", {102406, 24723, 102405, 424723, 1006557, 1013539, 1020174, 1026772, 1033336, 1039899, 1046462, 1053025, 1059588, 1066151} },
{"Dreghood Bands", {102394, 24724, 102393, 424724, 1006558, 1013540, 1020175, 1026773, 1033337, 1039900, 1046463, 1053026, 1059589, 1066152} },
{"Dementia Cord", {102218, 24725, 102217, 424725, 1006559, 1013541, 1020176, 1026774, 1033338, 1039901, 1046464, 1053027, 1059590, 1066153} },
{"Dementia Boots", {102216, 24726, 101047, 424726, 1006560, 1013542, 1020177, 1026775, 1033339, 1039902, 1046465, 1053028, 1059591, 1066154} },
{"Dementia Vest", {102228, 24727, 102227, 424727, 1006561, 1013543, 1020178, 1026776, 1033340, 1039903, 1046466, 1053029, 1059592, 1066155} },
{"Dementia Gloves", {102220, 24728, 102219, 424728, 1006562, 1013544, 1020179, 1026777, 1033341, 1039904, 1046467, 1053030, 1059593, 1066156} },
{"Dementia Hood", {102222, 24729, 102221, 424729, 1006563, 1013545, 1020180, 1026778, 1033342, 1039905, 1046468, 1053031, 1059594, 1066157} },
{"Dementia Trousers", {102226, 24730, 102225, 424730, 1006564, 1013546, 1020181, 1026779, 1033343, 1039906, 1046469, 1053032, 1059595, 1066158} },
{"Dementia Shoulderguards", {102224, 24731, 102223, 424731, 1006565, 1013547, 1020182, 1026780, 1033344, 1039907, 1046470, 1053033, 1059596, 1066159} },
{"Dementia Armguards", {101046, 24732, 101045, 424732, 1006566, 1013548, 1020183, 1026781, 1033345, 1039908, 1046471, 1053034, 1059597, 1066160} },
{"Sunroc Waistband", {129050, 24733, 129016, 424733, 1006567, 1013549, 1020184, 1026782, 1033346, 1039909, 1046472, 1053035, 1059598, 1066161} },
{"Sunroc Boots", {129005, 24734, 129004, 424734, 1006568, 1013550, 1020185, 1026783, 1033347, 1039910, 1046473, 1053036, 1059599, 1066162} },
{"Sunroc Chestpiece", {129007, 24735, 129006, 424735, 1006569, 1013551, 1020186, 1026784, 1033348, 1039911, 1046474, 1053037, 1059600, 1066163} },
{"Sunroc Gloves", {129009, 24736, 129008, 424736, 1006570, 1013552, 1020187, 1026785, 1033349, 1039912, 1046475, 1053038, 1059601, 1066164} },
{"Sunroc Mask", {129011, 24737, 129010, 424737, 1006571, 1013553, 1020188, 1026786, 1033350, 1039913, 1046476, 1053039, 1059602, 1066165} },
{"Sunroc Pants", {129013, 24738, 129012, 424738, 1006572, 1013554, 1020189, 1026787, 1033351, 1039914, 1046477, 1053040, 1059603, 1066166} },
{"Sunroc Shoulderguards", {129015, 24739, 129014, 424739, 1006573, 1013555, 1020190, 1026788, 1033352, 1039915, 1046478, 1053041, 1059604, 1066167} },
{"Sunroc Armguards", {128986, 24740, 128982, 424740, 1006574, 1013556, 1020191, 1026789, 1033353, 1039916, 1046479, 1053042, 1059605, 1066168} },
{"Ranger Belt", {123498, 24741, 123497, 424741, 1006575, 1013557, 1020192, 1026790, 1033354, 1039917, 1046480, 1053043, 1059606, 1066169} },
{"Ranger Jerkin", {123502, 24743, 123501, 424743, 1006577, 1013559, 1020194, 1026792, 1033356, 1039919, 1046482, 1053045, 1059608, 1066171} },
{"Ranger Hat", {123500, 24745, 123499, 424745, 1006579, 1013561, 1020196, 1026794, 1033358, 1039921, 1046484, 1053047, 1059610, 1066173} },
{"Ranger Pants", {123504, 24746, 123503, 424746, 1006580, 1013562, 1020197, 1026795, 1033359, 1039922, 1046485, 1053048, 1059611, 1066174} },
{"Ranger Pauldrons", {123506, 24747, 123505, 424747, 1006581, 1013563, 1020198, 1026796, 1033360, 1039923, 1046486, 1053049, 1059612, 1066175} },
{"Ranger Armguards", {123496, 24748, 123495, 424748, 1006582, 1013564, 1020199, 1026797, 1033361, 1039924, 1046487, 1053050, 1059613, 1066176} },
{"Daggerfen Belt", {100967, 24749, 100966, 424749, 1006583, 1013565, 1020200, 1026798, 1033362, 1039925, 1046488, 1053051, 1059614, 1066177} },
{"Daggerfen Boots", {100971, 24750, 100970, 424750, 1006584, 1013566, 1020201, 1026799, 1033363, 1039926, 1046489, 1053052, 1059615, 1066178} },
{"Daggerfen Battlevest", {100965, 24751, 100964, 424751, 1006585, 1013567, 1020202, 1026800, 1033364, 1039927, 1046490, 1053053, 1059616, 1066179} },
{"Daggerfen Gloves", {100975, 24752, 100974, 424752, 1006586, 1013568, 1020203, 1026801, 1033365, 1039928, 1046491, 1053054, 1059617, 1066180} },
{"Daggerfen Cowl", {100973, 24753, 100972, 424753, 1006587, 1013569, 1020204, 1026802, 1033366, 1039929, 1046492, 1053055, 1059618, 1066181} },
{"Daggerfen Stitchpants", {100979, 24754, 100978, 424754, 1006588, 1013570, 1020205, 1026803, 1033367, 1039930, 1046493, 1053056, 1059619, 1066182} },
{"Daggerfen Pauldrons", {100977, 24755, 100976, 424755, 1006589, 1013571, 1020206, 1026804, 1033368, 1039931, 1046494, 1053057, 1059620, 1066183} },
{"Daggerfen Bindings", {100969, 24756, 100968, 424756, 1006590, 1013572, 1020207, 1026805, 1033369, 1039932, 1046495, 1053058, 1059621, 1066184} },
{"Umbrafen Waistband", {130537, 24757, 130536, 424757, 1006591, 1013573, 1020208, 1026806, 1033370, 1039933, 1046496, 1053059, 1059622, 1066185} },
{"Umbrafen Boots", {130525, 24758, 130524, 424758, 1006592, 1013574, 1020209, 1026807, 1033371, 1039934, 1046497, 1053060, 1059623, 1066186} },
{"Umbrafen Tunic", {130535, 24759, 130534, 424759, 1006593, 1013575, 1020210, 1026808, 1033372, 1039935, 1046498, 1053061, 1059624, 1066187} },
{"Umbrafen Gloves", {130531, 24760, 130530, 424760, 1006594, 1013576, 1020211, 1026809, 1033373, 1039936, 1046499, 1053062, 1059625, 1066188} },
{"Umbrafen Cap", {130529, 24761, 130528, 424761, 1006595, 1013577, 1020212, 1026810, 1033374, 1039937, 1046500, 1053063, 1059626, 1066189} },
{"Umbrafen Britches", {130527, 24762, 130526, 424762, 1006596, 1013578, 1020213, 1026811, 1033375, 1039938, 1046501, 1053064, 1059627, 1066190} },
{"Umbrafen Shoulderguards", {130533, 24763, 130532, 424763, 1006597, 1013579, 1020215, 1026812, 1033376, 1039939, 1046502, 1053065, 1059628, 1066191} },
{"Umbrafen Bindings", {130523, 24764, 130522, 424764, 1006598, 1013580, 1020216, 1026813, 1033377, 1039940, 1046503, 1053066, 1059629, 1066192} },
{"Clefthoof Belt", {100786, 24765, 100785, 424765, 1006599, 1013581, 1020217, 1026814, 1033378, 1039941, 1046504, 1053067, 1059630, 1066193} },
{"Clefthoof Wanderboots", {100802, 24766, 100801, 424766, 1006600, 1013582, 1020218, 1026815, 1033379, 1039942, 1046505, 1053068, 1059631, 1066194} },
{"Clefthoof Hidemantle", {100796, 24767, 100795, 424767, 1006601, 1013583, 1020219, 1026816, 1033380, 1039943, 1046506, 1053069, 1059632, 1066195} },
{"Clefthoof Gloves", {100794, 24768, 100793, 424768, 1006602, 1013584, 1020220, 1026817, 1033381, 1039944, 1046507, 1053070, 1059633, 1066196} },
{"Clefthoof Cover", {100792, 24769, 100791, 424769, 1006603, 1013585, 1020221, 1026818, 1033382, 1039945, 1046508, 1053071, 1059634, 1066197} },
{"Clefthoof Britches", {100790, 24770, 100789, 424770, 1006604, 1013586, 1020222, 1026819, 1033383, 1039946, 1046509, 1053072, 1059635, 1066198} },
{"Clefthoof Shoulderguards", {100800, 24771, 100799, 424771, 1006605, 1013587, 1020223, 1026820, 1033384, 1039947, 1046510, 1053073, 1059636, 1066199} },
{"Clefthoof Bracers", {100788, 24772, 100787, 424772, 1006606, 1013588, 1020224, 1026821, 1033385, 1039948, 1046511, 1053074, 1059637, 1066200} },
{"Boneshredder Belt", {100426, 24773, 100425, 424773, 1006607, 1013589, 1020225, 1026822, 1033386, 1039949, 1046512, 1053075, 1059638, 1066201} },
{"Boneshredder Boots", {100428, 24774, 100427, 424774, 1006608, 1013590, 1020226, 1026823, 1033387, 1039950, 1046513, 1053076, 1059639, 1066202} },
{"Boneshredder Jerkin", {100436, 24775, 100435, 424775, 1006609, 1013591, 1020227, 1026824, 1033388, 1039951, 1046514, 1053077, 1059640, 1066203} },
{"Boneshredder Gloves", {100434, 24776, 100433, 424776, 1006610, 1013592, 1020228, 1026825, 1033389, 1039952, 1046515, 1053078, 1059641, 1066204} },
{"Boneshredder Skullcap", {100442, 24777, 100441, 424777, 1006611, 1013593, 1020229, 1026826, 1033390, 1039953, 1046516, 1053079, 1059642, 1066205} },
{"Boneshredder Britches", {100430, 24778, 100429, 424778, 1006612, 1013594, 1020230, 1026827, 1033391, 1039954, 1046517, 1053080, 1059643, 1066206} },
{"Boneshredder Shoulderguards", {100440, 24779, 100439, 424779, 1006613, 1013595, 1020231, 1026828, 1033392, 1039955, 1046518, 1053081, 1059644, 1066207} },
{"Boneshredder Wristguards", {100444, 24780, 100443, 424780, 1006614, 1013596, 1020232, 1026829, 1033393, 1039956, 1046519, 1053082, 1059645, 1066208} },
{"Murkblood Belt", {122958, 24781, 122957, 424781, 1006615, 1013597, 1020233, 1026830, 1033394, 1039957, 1046520, 1053083, 1059646, 1066209} },
{"Murkblood Boots", {122960, 24783, 122959, 424783, 1006616, 1013598, 1020234, 1026831, 1033395, 1039958, 1046521, 1053084, 1059647, 1066210} },
{"Murkblood Chestpiece", {122966, 24784, 122965, 424784, 1006617, 1013599, 1020235, 1026832, 1033396, 1039959, 1046522, 1053085, 1059648, 1066211} },
{"Murkblood Gloves", {122970, 24785, 122969, 424785, 1006618, 1013600, 1020236, 1026833, 1033397, 1039960, 1046523, 1053086, 1059649, 1066212} },
{"Murkblood Cover", {122968, 24786, 122967, 424786, 1006619, 1013601, 1020237, 1026834, 1033398, 1039961, 1046524, 1053087, 1059650, 1066213} },
{"Murkblood Pants", {122972, 24787, 122971, 424787, 1006620, 1013602, 1020238, 1026835, 1033399, 1039962, 1046525, 1053088, 1059651, 1066214} },
{"Murkblood Shoulderguards", {122974, 24788, 122973, 424788, 1006621, 1013603, 1020239, 1026836, 1033400, 1039963, 1046526, 1053089, 1059652, 1066215} },
{"Murkblood Bracers", {122962, 24789, 122961, 424789, 1006622, 1013604, 1020240, 1026837, 1033401, 1039964, 1046527, 1053090, 1059653, 1066216} },
{"Expedition Girdle", {113279, 24790, 113269, 424790, 1006623, 1013605, 1020241, 1026838, 1033402, 1039965, 1046528, 1053091, 1059654, 1066217} },
{"Expedition Boots", {113266, 24791, 113236, 424791, 1006624, 1013606, 1020242, 1026839, 1033403, 1039966, 1046529, 1053092, 1059655, 1066218} },
{"Expedition Tunic", {113303, 24792, 113302, 424792, 1006625, 1013607, 1020243, 1026840, 1033404, 1039967, 1046530, 1053093, 1059656, 1066219} },
{"Expedition Gloves", {113284, 24793, 113283, 424793, 1006626, 1013608, 1020244, 1026841, 1033405, 1039968, 1046531, 1053094, 1059657, 1066220} },
{"Expedition Hood", {113286, 24794, 113285, 424794, 1006627, 1013609, 1020245, 1026842, 1033406, 1039969, 1046532, 1053095, 1059658, 1066221} },
{"Expedition Pants", {113299, 24795, 113298, 424795, 1006628, 1013610, 1020246, 1026843, 1033407, 1039970, 1046533, 1053096, 1059659, 1066222} },
{"Expedition Shoulderguards", {113301, 24796, 113300, 424796, 1006629, 1013611, 1020247, 1026844, 1033408, 1039971, 1046534, 1053097, 1059660, 1066223} },
{"Expedition Bracers", {113268, 24797, 113267, 424797, 1006630, 1013612, 1020248, 1026845, 1033409, 1039972, 1046535, 1053098, 1059661, 1066224} },
{"Dragonhawk Belt", {102359, 24798, 102358, 424798, 1006631, 1013613, 1020249, 1026846, 1033410, 1039973, 1046536, 1053099, 1059662, 1066225} },
{"Dragonhawk Boots", {102361, 24799, 102360, 424799, 1006632, 1013614, 1020250, 1026847, 1033411, 1039974, 1046537, 1053100, 1059663, 1066226} },
{"Dragonhawk Tunic", {102371, 24800, 102370, 424800, 1006633, 1013615, 1020251, 1026848, 1033412, 1039975, 1046538, 1053101, 1059664, 1066227} },
{"Dragonhawk Gloves", {102363, 24801, 102362, 424801, 1006634, 1013616, 1020252, 1026849, 1033413, 1039976, 1046539, 1053102, 1059665, 1066228} },
{"Dragonhawk Hat", {102365, 24802, 102364, 424802, 1006635, 1013617, 1020253, 1026850, 1033414, 1039977, 1046540, 1053103, 1059666, 1066229} },
{"Dragonhawk Pants", {102367, 24803, 102366, 424803, 1006636, 1013618, 1020254, 1026851, 1033415, 1039978, 1046541, 1053104, 1059667, 1066230} },
{"Dragonhawk Shoulderguards", {102369, 24804, 102368, 424804, 1006637, 1013619, 1020255, 1026852, 1033416, 1039979, 1046542, 1053105, 1059668, 1066231} },
{"Dragonhawk Bands", {102357, 24805, 102356, 424805, 1006638, 1013620, 1020256, 1026853, 1033417, 1039980, 1046543, 1053106, 1059669, 1066232} },
{"Unyielding Waistband", {266574, 24806, 266573, 266575, 266576, 266577, 266578, 266579, 266580, 266581, 266582, 266583, 266584, 266585} },
{"Unyielding Footwraps", {266587, 24807, 266586, 266588, 266589, 266590, 266591, 266592, 266593, 266594, 266595, 266596, 266597, 266598} },
{"Unyielding Chain Vest", {266600, 24808, 266599, 266601, 266602, 266603, 266604, 266605, 266606, 266607, 266608, 266609, 266610, 266611} },
{"Unyielding Fists", {266613, 24809, 266612, 266614, 266615, 266616, 266617, 266618, 266619, 266620, 266621, 266622, 266623, 266624} },
{"Unyielding Helm", {266626, 24810, 266625, 266627, 266628, 266629, 266630, 266631, 266632, 266633, 266634, 266635, 266636, 266637} },
{"Unyielding Leggings", {266639, 24811, 266638, 266640, 266641, 266642, 266643, 266644, 266645, 266646, 266647, 266648, 266649, 266650} },
{"Unyielding Spaulders", {266652, 24812, 266651, 266653, 266654, 266655, 266656, 266657, 266658, 266659, 266660, 266661, 266662, 266663} },
{"Unyielding Bindings", {266665, 24813, 266664, 266666, 266667, 266668, 266669, 266670, 266671, 266672, 266673, 266674, 266675, 266676} },
{"Felstone Waistband", {114136, 24814, 114135, 424814, 1006639, 1013621, 1020257, 1026854, 1033418, 1039981, 1046544, 1053107, 1059670, 1066233} },
{"Felstone Greaves", {114117, 24815, 114114, 424815, 1006640, 1013622, 1020258, 1026855, 1033419, 1039982, 1046545, 1053108, 1059671, 1066234} },
{"Felstone Chain Vest", {113679, 24816, 113678, 424816, 1006641, 1013623, 1020259, 1026856, 1033420, 1039983, 1046546, 1053109, 1059672, 1066235} },
{"Felstone Gauntlets", {114113, 24817, 113680, 424817, 1006642, 1013624, 1020260, 1026857, 1033421, 1039984, 1046547, 1053110, 1059673, 1066236} },
{"Felstone Helm", {114127, 24818, 114118, 424818, 1006643, 1013625, 1020261, 1026858, 1033422, 1039985, 1046548, 1053111, 1059674, 1066237} },
{"Felstone Leggings", {114132, 24819, 114130, 424819, 1006644, 1013626, 1020262, 1026859, 1033423, 1039986, 1046549, 1053112, 1059675, 1066238} },
{"Felstone Spaulders", {114134, 24820, 114133, 424820, 1006645, 1013627, 1020263, 1026860, 1033424, 1039987, 1046550, 1053113, 1059676, 1066239} },
{"Felstone Bindings", {113677, 24821, 113676, 424821, 1006646, 1013628, 1020264, 1026861, 1033425, 1039988, 1046551, 1053114, 1059677, 1066240} },
{"Netherstalker Belt", {123017, 24822, 123016, 424822, 1006647, 1013629, 1020265, 1026862, 1033426, 1039989, 1046552, 1053115, 1059678, 1066241} },
{"Netherstalker Greaves", {123023, 24823, 123022, 424823, 1006648, 1013630, 1020266, 1026863, 1033427, 1039990, 1046553, 1053116, 1059679, 1066242} },
{"Netherstalker Armor", {123015, 24824, 123014, 424824, 1006649, 1013631, 1020267, 1026864, 1033428, 1039991, 1046554, 1053117, 1059680, 1066243} },
{"Netherstalker Gloves", {123021, 24825, 123020, 424825, 1006650, 1013632, 1020268, 1026865, 1033429, 1039992, 1046555, 1053118, 1059681, 1066244} },
{"Netherstalker Helmet", {123025, 24826, 123024, 424826, 1006651, 1013633, 1020269, 1026866, 1033430, 1039993, 1046556, 1053119, 1059682, 1066245} },
{"Netherstalker Legguards", {123027, 24827, 123026, 424827, 1006652, 1013634, 1020270, 1026867, 1033431, 1039994, 1046557, 1053120, 1059683, 1066246} },
{"Netherstalker Mantle", {123029, 24828, 123028, 424828, 1006653, 1013635, 1020271, 1026868, 1033432, 1039995, 1046558, 1053121, 1059684, 1066247} },
{"Netherstalker Bracer", {123019, 24829, 123018, 424829, 1006654, 1013636, 1020272, 1026869, 1033433, 1039996, 1046559, 1053122, 1059685, 1066248} },
{"Nexus-Strider Belt", {123054, 24830, 123053, 424830, 1006655, 1013637, 1020273, 1026870, 1033434, 1039997, 1046560, 1053123, 1059686, 1066249} },
{"Nexus-Strider Greaves", {123062, 24831, 123061, 424831, 1006656, 1013638, 1020274, 1026871, 1033435, 1039998, 1046561, 1053124, 1059687, 1066250} },
{"Nexus-Strider Breastplate", {123058, 24832, 123057, 424832, 1006657, 1013639, 1020275, 1026872, 1033436, 1039999, 1046562, 1053125, 1059688, 1066251} },
{"Nexus-Strider Gloves", {123060, 24833, 123059, 424833, 1006658, 1013640, 1020276, 1026873, 1033437, 1040000, 1046563, 1053126, 1059689, 1066252} },
{"Nexus-Strider Helmet", {123064, 24834, 123063, 424834, 1006659, 1013641, 1020277, 1026874, 1033438, 1040001, 1046564, 1053127, 1059690, 1066253} },
{"Nexus-Strider Legwraps", {123066, 24835, 123065, 424835, 1006660, 1013642, 1020278, 1026875, 1033439, 1040002, 1046565, 1053128, 1059691, 1066254} },
{"Nexus-Strider Mantle", {123068, 24836, 123067, 424836, 1006661, 1013643, 1020279, 1026876, 1033440, 1040003, 1046566, 1053129, 1059692, 1066255} },
{"Nexus-Strider Bracer", {123056, 24837, 123055, 424837, 1006662, 1013644, 1020280, 1026877, 1033441, 1040004, 1046567, 1053130, 1059693, 1066256} },
{"Wrathfin Waistband", {130968, 24838, 130967, 424838, 1006663, 1013645, 1020281, 1026878, 1033442, 1040005, 1046568, 1053131, 1059694, 1066257} },
{"Wrathfin Greaves", {130960, 24839, 130959, 424839, 1006664, 1013646, 1020282, 1026879, 1033443, 1040006, 1046569, 1053132, 1059695, 1066258} },
{"Wrathfin Armor", {130954, 24840, 130953, 424840, 1006665, 1013647, 1020283, 1026880, 1033444, 1040007, 1046570, 1053133, 1059696, 1066259} },
{"Wrathfin Gloves", {130958, 24841, 130957, 424841, 1006666, 1013648, 1020284, 1026881, 1033445, 1040008, 1046571, 1053134, 1059697, 1066260} },
{"Wrathfin Helmet", {130962, 24842, 130961, 424842, 1006667, 1013649, 1020285, 1026882, 1033446, 1040009, 1046572, 1053135, 1059698, 1066261} },
{"Wrathfin Legguards", {130964, 24843, 130963, 424843, 1006668, 1013650, 1020286, 1026883, 1033447, 1040010, 1046573, 1053136, 1059699, 1066262} },
{"Wrathfin Mantle", {130966, 24844, 130965, 424844, 1006669, 1013651, 1020287, 1026884, 1033448, 1040011, 1046574, 1053137, 1059700, 1066263} },
{"Wrathfin Bindings", {130956, 24845, 130955, 424845, 1006670, 1013652, 1020288, 1026885, 1033449, 1040012, 1046575, 1053138, 1059701, 1066264} },
{"Fenclaw Waistband", {114623, 24846, 114621, 424846, 1006671, 1013653, 1020289, 1026886, 1033450, 1040013, 1046576, 1053139, 1059702, 1066265} },
{"Fenclaw Footwraps", {114590, 24847, 114589, 424847, 1006672, 1013654, 1020290, 1026887, 1033451, 1040014, 1046577, 1053140, 1059703, 1066266} },
{"Fenclaw Armor", {114309, 24848, 114308, 424848, 1006673, 1013655, 1020291, 1026888, 1033452, 1040015, 1046578, 1053141, 1059704, 1066267} },
{"Fenclaw Fists", {114588, 24849, 114587, 424849, 1006674, 1013656, 1020292, 1026889, 1033453, 1040016, 1046579, 1053142, 1059705, 1066268} },
{"Fenclaw Helm", {114597, 24850, 114591, 424850, 1006675, 1013657, 1020293, 1026890, 1033454, 1040017, 1046580, 1053143, 1059706, 1066269} },
{"Fenclaw Legguards", {114617, 24851, 114615, 424851, 1006676, 1013658, 1020294, 1026891, 1033455, 1040018, 1046581, 1053144, 1059707, 1066270} },
{"Fenclaw Mantle", {114619, 24852, 114618, 424852, 1006677, 1013659, 1020295, 1026892, 1033456, 1040019, 1046582, 1053145, 1059708, 1066271} },
{"Fenclaw Bindings", {114586, 24853, 114487, 424853, 1006678, 1013660, 1020296, 1026893, 1033457, 1040020, 1046583, 1053146, 1059709, 1066272} },
{"Marshcreeper Belt", {122750, 24854, 122749, 424854, 1006679, 1013661, 1020297, 1026894, 1033458, 1040021, 1046584, 1053147, 1059710, 1066273} },
{"Marshcreeper Sludgeboots", {122764, 24855, 122763, 424855, 1006680, 1013662, 1020298, 1026895, 1033459, 1040022, 1046585, 1053148, 1059711, 1066274} },
{"Marshcreeper Fen-Vest", {122754, 24856, 122753, 424856, 1006681, 1013663, 1020299, 1026896, 1033460, 1040023, 1046586, 1053149, 1059712, 1066275} },
{"Marshcreeper Gloves", {122756, 24857, 122755, 424857, 1006682, 1013664, 1020300, 1026897, 1033461, 1040024, 1046587, 1053150, 1059713, 1066276} },
{"Marshcreeper Helm", {122758, 24858, 122757, 424858, 1006683, 1013665, 1020301, 1026898, 1033462, 1040025, 1046588, 1053151, 1059714, 1066277} },
{"Marshcreeper Leggings", {122760, 24859, 122759, 424859, 1006684, 1013666, 1020302, 1026899, 1033463, 1040026, 1046589, 1053152, 1059715, 1066278} },
{"Marshcreeper Mantle", {122762, 24860, 122761, 424860, 1006685, 1013667, 1020303, 1026900, 1033464, 1040027, 1046590, 1053153, 1059716, 1066279} },
{"Marshcreeper Bracelets", {122752, 24861, 122751, 424861, 1006686, 1013668, 1020304, 1026901, 1033465, 1040028, 1046591, 1053154, 1059717, 1066280} },
{"Blood Knight Girdle", {100340, 24862, 100339, 424862, 1006687, 1013669, 1020305, 1026902, 1033466, 1040029, 1046592, 1053155, 1059718, 1066281} },
{"Blood Knight Boots", {100331, 24863, 100330, 424863, 1006688, 1013670, 1020306, 1026903, 1033467, 1040030, 1046593, 1053156, 1059719, 1066282} },
{"Blood Knight Breastplate", {100335, 24864, 100334, 424864, 1006689, 1013671, 1020307, 1026904, 1033468, 1040031, 1046594, 1053157, 1059720, 1066283} },
{"Blood Knight Gauntlets", {100338, 24865, 100337, 424865, 1006690, 1013672, 1020308, 1026905, 1033469, 1040032, 1046595, 1053158, 1059721, 1066284} },
{"Blood Knight Helm", {100344, 24866, 100343, 424866, 1006691, 1013673, 1020309, 1026906, 1033470, 1040033, 1046596, 1053159, 1059722, 1066285} },
{"Blood Knight Greaves", {100342, 24867, 100341, 424867, 1006692, 1013674, 1020310, 1026907, 1033471, 1040034, 1046597, 1053160, 1059723, 1066286} },
{"Blood Knight Pauldrons", {100348, 24868, 100347, 424868, 1006693, 1013675, 1020311, 1026908, 1033472, 1040035, 1046598, 1053161, 1059724, 1066287} },
{"Blood Knight Bracers", {100333, 24869, 100332, 424869, 1006694, 1013676, 1020312, 1026909, 1033473, 1040036, 1046599, 1053162, 1059725, 1066288} },
{"Ironspine Belt", {120681, 24870, 120680, 424870, 1006695, 1013677, 1020313, 1026910, 1033474, 1040037, 1046600, 1053163, 1059726, 1066289} },
{"Ironspine Greaves", {120689, 24871, 120688, 424871, 1006696, 1013678, 1020314, 1026911, 1033475, 1040038, 1046601, 1053164, 1059727, 1066290} },
{"Ironspine Chain Vest", {120685, 24872, 120684, 424872, 1006697, 1013679, 1020315, 1026912, 1033476, 1040039, 1046602, 1053165, 1059728, 1066291} },
{"Ironspine Gloves", {120687, 24873, 120686, 424873, 1006698, 1013680, 1020316, 1026913, 1033477, 1040040, 1046603, 1053166, 1059729, 1066292} },
{"Ironspine Helm", {120691, 24874, 120690, 424874, 1006699, 1013681, 1020317, 1026914, 1033478, 1040041, 1046604, 1053167, 1059730, 1066293} },
{"Ironspine Legguards", {120693, 24875, 120692, 424875, 1006700, 1013682, 1020318, 1026915, 1033479, 1040042, 1046605, 1053168, 1059731, 1066294} },
{"Ironspine Shoulderguards", {120697, 24876, 120696, 424876, 1006701, 1013683, 1020319, 1026916, 1033480, 1040043, 1046606, 1053169, 1059732, 1066295} },
{"Ironspine Bracelets", {120683, 24877, 120682, 424877, 1006702, 1013684, 1020320, 1026917, 1033481, 1040044, 1046607, 1053170, 1059733, 1066296} },
{"Der'izu Belt", {102241, 24878, 102240, 424878, 1006703, 1013685, 1020321, 1026918, 1033482, 1040045, 1046608, 1053171, 1059734, 1066297} },
{"Der'izu Greaves", {102249, 24879, 102248, 424879, 1006704, 1013686, 1020322, 1026919, 1033483, 1040046, 1046609, 1053172, 1059735, 1066298} },
{"Der'izu Chestpiece", {102245, 24880, 102244, 424880, 1006705, 1013687, 1020323, 1026920, 1033484, 1040047, 1046610, 1053173, 1059736, 1066299} },
{"Der'izu Fists", {102247, 24881, 102246, 424881, 1006706, 1013688, 1020324, 1026921, 1033485, 1040048, 1046611, 1053174, 1059737, 1066300} },
{"Der'izu Helm", {102251, 24882, 102250, 424882, 1006707, 1013689, 1020325, 1026922, 1033486, 1040049, 1046612, 1053175, 1059738, 1066301} },
{"Der'izu Legguards", {102253, 24883, 102252, 424883, 1006708, 1013690, 1020326, 1026923, 1033487, 1040050, 1046613, 1053176, 1059739, 1066302} },
{"Der'izu Spaulders", {102255, 24884, 102254, 424884, 1006709, 1013691, 1020327, 1026924, 1033488, 1040051, 1046614, 1053177, 1059740, 1066303} },
{"Der'izu Bracer", {102243, 24885, 102242, 424885, 1006710, 1013692, 1020328, 1026925, 1033489, 1040052, 1046615, 1053178, 1059741, 1066304} },
{"Skettis Belt", {124052, 24886, 124050, 424886, 1006711, 1013693, 1020329, 1026926, 1033490, 1040053, 1046616, 1053179, 1059742, 1066305} },
{"Skettis Footwraps", {124061, 24887, 124060, 424887, 1006712, 1013694, 1020330, 1026927, 1033491, 1040054, 1046617, 1053180, 1059743, 1066306} },
{"Skettis Chestpiece", {124057, 24888, 124056, 424888, 1006713, 1013695, 1020331, 1026928, 1033492, 1040055, 1046618, 1053181, 1059744, 1066307} },
{"Skettis Gauntlets", {124063, 24889, 124062, 424889, 1006714, 1013696, 1020332, 1026929, 1033493, 1040056, 1046619, 1053182, 1059745, 1066308} },
{"Skettis Helmet", {124066, 24890, 124064, 424890, 1006715, 1013697, 1020333, 1026930, 1033494, 1040057, 1046620, 1053183, 1059746, 1066309} },
{"Skettis Legguards", {124068, 24891, 124067, 424891, 1006716, 1013698, 1020334, 1026931, 1033495, 1040058, 1046621, 1053184, 1059747, 1066310} },
{"Skettis Spaulders", {124076, 24892, 124074, 424892, 1006717, 1013699, 1020335, 1026932, 1033496, 1040059, 1046622, 1053185, 1059748, 1066311} },
{"Skettis Bracer", {124054, 24893, 124053, 424893, 1006718, 1013700, 1020336, 1026933, 1033497, 1040060, 1046623, 1053186, 1059749, 1066312} },
{"Sundered Waistband", {128964, 24894, 128963, 424894, 1006719, 1013701, 1020337, 1026934, 1033498, 1040061, 1046624, 1053187, 1059750, 1066313} },
{"Sundered Footwraps", {128920, 24895, 128919, 424895, 1006720, 1013702, 1020338, 1026935, 1033499, 1040062, 1046625, 1053188, 1059751, 1066314} },
{"Sundered Chestpiece", {128918, 24896, 128917, 424896, 1006721, 1013703, 1020339, 1026936, 1033500, 1040063, 1046626, 1053189, 1059752, 1066315} },
{"Sundered Gauntlets", {128926, 24897, 128925, 424897, 1006722, 1013704, 1020340, 1026937, 1033501, 1040064, 1046627, 1053190, 1059753, 1066316} },
{"Sundered Helmet", {128928, 24898, 128927, 424898, 1006723, 1013705, 1020341, 1026938, 1033502, 1040065, 1046628, 1053191, 1059754, 1066317} },
{"Sundered Legguards", {128930, 24899, 128929, 424899, 1006724, 1013706, 1020342, 1026939, 1033503, 1040066, 1046629, 1053192, 1059755, 1066318} },
{"Sundered Spaulders", {128939, 24900, 128931, 424900, 1006725, 1013707, 1020343, 1026940, 1033504, 1040067, 1046630, 1053193, 1059756, 1066319} },
{"Tortured Bracer", {130438, 24901, 130437, 424901, 1006726, 1013708, 1020344, 1026941, 1033505, 1040068, 1046631, 1053194, 1059757, 1066320} },
{"Talhide Stitched-Belt", {129743, 24902, 129739, 424902, 1006727, 1013709, 1020345, 1026942, 1033506, 1040069, 1046632, 1053195, 1059758, 1066321} },
{"Talhide Lined-Boots", {129274, 24903, 129273, 424903, 1006728, 1013710, 1020346, 1026943, 1033507, 1040070, 1046633, 1053196, 1059759, 1066322} },
{"Talhide Chestpiece", {129270, 24904, 129269, 424904, 1006729, 1013711, 1020347, 1026944, 1033508, 1040071, 1046634, 1053197, 1059760, 1066323} },
{"Talhide Lined-Gloves", {129407, 24905, 129406, 424905, 1006730, 1013712, 1020348, 1026945, 1033509, 1040072, 1046635, 1053198, 1059761, 1066324} },
{"Talhide Helmet", {129272, 24906, 129271, 424906, 1006731, 1013713, 1020349, 1026946, 1033510, 1040073, 1046636, 1053199, 1059762, 1066325} },
{"Talhide Lined-Leggings", {129719, 24907, 129408, 424907, 1006732, 1013714, 1020350, 1026947, 1033511, 1040074, 1046637, 1053200, 1059763, 1066326} },
{"Talhide Shoulderguards", {129721, 24908, 129720, 424908, 1006733, 1013715, 1020351, 1026948, 1033512, 1040075, 1046638, 1053201, 1059764, 1066327} },
{"Talhide Lined-Bracers", {129405, 24909, 129368, 424909, 1006734, 1013716, 1020352, 1026949, 1033513, 1040076, 1046639, 1053202, 1059765, 1066328} },
{"Netherstorm Belt", {123033, 24910, 123032, 424910, 1006735, 1013717, 1020353, 1026950, 1033514, 1040077, 1046640, 1053203, 1059766, 1066329} },
{"Netherstorm Greaves", {123041, 24911, 123040, 424911, 1006736, 1013718, 1020354, 1026951, 1033515, 1040078, 1046641, 1053204, 1059767, 1066330} },
{"Netherstorm Chestpiece", {123037, 24912, 123036, 424912, 1006737, 1013719, 1020355, 1026952, 1033516, 1040079, 1046642, 1053205, 1059768, 1066331} },
{"Netherstorm Gauntlets", {123039, 24913, 123038, 424913, 1006738, 1013720, 1020356, 1026953, 1033517, 1040080, 1046643, 1053206, 1059769, 1066332} },
{"Netherstorm Helm", {123043, 24914, 123042, 424914, 1006739, 1013721, 1020357, 1026954, 1033518, 1040081, 1046644, 1053207, 1059770, 1066333} },
{"Netherstorm Legguards", {123045, 24915, 123044, 424915, 1006740, 1013722, 1020358, 1026955, 1033519, 1040082, 1046645, 1053208, 1059771, 1066334} },
{"Netherstorm Shoulderguards", {123047, 24916, 123046, 424916, 1006741, 1013723, 1020359, 1026956, 1033520, 1040083, 1046646, 1053209, 1059772, 1066335} },
{"Netherstorm Bracer", {123035, 24917, 123034, 424917, 1006742, 1013724, 1020360, 1026957, 1033521, 1040084, 1046647, 1053210, 1059773, 1066336} },
{"Grimscale Belt", {266678, 24918, 266677, 266679, 266680, 266681, 266682, 266683, 266684, 266685, 266686, 266687, 266688, 266689} },
{"Grimscale Sabatons", {266691, 24919, 266690, 266692, 266693, 266694, 266695, 266696, 266697, 266698, 266699, 266700, 266701, 266702} },
{"Grimscale Armor", {266704, 24920, 266703, 266705, 266706, 266707, 266708, 266709, 266710, 266711, 266712, 266713, 266714, 266715} },
{"Grimscale Gauntlets", {266717, 24921, 266716, 266718, 266719, 266720, 266721, 266722, 266723, 266724, 266725, 266726, 266727, 266728} },
{"Grimscale Helm", {266730, 24922, 266729, 266731, 266732, 266733, 266734, 266735, 266736, 266737, 266738, 266739, 266740, 266741} },
{"Grimscale Legguards", {266743, 24923, 266742, 266744, 266745, 266746, 266747, 266748, 266749, 266750, 266751, 266752, 266753, 266754} },
{"Grimscale Pauldrons", {266756, 24924, 266755, 266757, 266758, 266759, 266760, 266761, 266762, 266763, 266764, 266765, 266766, 266767} },
{"Grimscale Vambraces", {266769, 24925, 266768, 266770, 266771, 266772, 266773, 266774, 266775, 266776, 266777, 266778, 266779, 266780} },
{"Ango'rosh Belt", {100077, 24926, 100076, 424926, 1006743, 1013725, 1020361, 1026958, 1033522, 1040085, 1046648, 1053211, 1059774, 1066337} },
{"Ango'rosh Sabatons", {100089, 24927, 100088, 424927, 1006744, 1013726, 1020362, 1026959, 1033523, 1040086, 1046649, 1053212, 1059775, 1066338} },
{"Ango'rosh Breastplate", {100079, 24928, 100078, 424928, 1006745, 1013727, 1020363, 1026960, 1033524, 1040087, 1046650, 1053213, 1059776, 1066339} },
{"Ango'rosh Gauntlets", {100081, 24929, 100080, 424929, 1006746, 1013728, 1020364, 1026961, 1033525, 1040088, 1046651, 1053214, 1059777, 1066340} },
{"Ango'rosh Helm", {100083, 24930, 100082, 424930, 1006747, 1013729, 1020365, 1026962, 1033526, 1040089, 1046652, 1053215, 1059778, 1066341} },
{"Ango'rosh Legguards", {100085, 24931, 100084, 424931, 1006748, 1013730, 1020366, 1026963, 1033527, 1040090, 1046653, 1053216, 1059779, 1066342} },
{"Ango'rosh Pauldrons", {100087, 24932, 100086, 424932, 1006749, 1013731, 1020367, 1026964, 1033528, 1040091, 1046654, 1053217, 1059780, 1066343} },
{"Ango'rosh Vambraces", {100091, 24933, 100090, 424933, 1006750, 1013732, 1020368, 1026965, 1033529, 1040092, 1046655, 1053218, 1059781, 1066344} },
{"Darkcrest Belt", {100991, 24934, 100990, 424934, 1006751, 1013733, 1020369, 1026966, 1033530, 1040093, 1046656, 1053219, 1059782, 1066345} },
{"Darkcrest Sabatons", {101005, 24935, 101004, 424935, 1006752, 1013734, 1020370, 1026967, 1033531, 1040094, 1046657, 1053220, 1059783, 1066346} },
{"Darkcrest Breastplate", {100995, 24936, 100994, 424936, 1006753, 1013735, 1020371, 1026968, 1033532, 1040095, 1046658, 1053221, 1059784, 1066347} },
{"Darkcrest Gauntlets", {100997, 24937, 100996, 424937, 1006754, 1013736, 1020372, 1026969, 1033533, 1040096, 1046659, 1053222, 1059785, 1066348} },
{"Darkcrest Helm", {100999, 24938, 100998, 424938, 1006755, 1013737, 1020373, 1026970, 1033534, 1040097, 1046660, 1053223, 1059786, 1066349} },
{"Darkcrest Legguards", {101001, 24939, 101000, 424939, 1006756, 1013738, 1020374, 1026971, 1033535, 1040098, 1046661, 1053224, 1059787, 1066350} },
{"Darkcrest Pauldrons", {101003, 24940, 101002, 424940, 1006757, 1013739, 1020375, 1026972, 1033536, 1040099, 1046662, 1053225, 1059788, 1066351} },
{"Darkcrest Bracers", {100993, 24941, 100992, 424941, 1006758, 1013740, 1020376, 1026973, 1033537, 1040100, 1046663, 1053226, 1059789, 1066352} },
{"Bloodscale Belt", {100377, 24942, 100376, 424942, 1006759, 1013741, 1020377, 1026974, 1033538, 1040101, 1046664, 1053227, 1059790, 1066353} },
{"Bloodscale Sabatons", {100391, 24943, 100390, 424943, 1006760, 1013742, 1020378, 1026975, 1033539, 1040102, 1046665, 1053228, 1059791, 1066354} },
{"Bloodscale Breastplate", {100381, 24944, 100380, 424944, 1006761, 1013743, 1020379, 1026976, 1033540, 1040103, 1046666, 1053229, 1059792, 1066355} },
{"Bloodscale Gauntlets", {100383, 24945, 100382, 424945, 1006762, 1013744, 1020380, 1026977, 1033541, 1040104, 1046667, 1053230, 1059793, 1066356} },
{"Bloodscale Helm", {100385, 24946, 100384, 424946, 1006763, 1013745, 1020381, 1026978, 1033542, 1040105, 1046668, 1053231, 1059794, 1066357} },
{"Bloodscale Legguards", {100387, 24947, 100386, 424947, 1006764, 1013746, 1020382, 1026979, 1033543, 1040106, 1046669, 1053232, 1059795, 1066358} },
{"Bloodscale Pauldrons", {100389, 24948, 100388, 424948, 1006765, 1013747, 1020383, 1026980, 1033544, 1040107, 1046670, 1053233, 1059796, 1066359} },
{"Bloodscale Bracers", {100379, 24949, 100378, 424949, 1006766, 1013748, 1020384, 1026981, 1033545, 1040108, 1046671, 1053234, 1059797, 1066360} },
{"Bogslayer Belt", {100401, 24950, 100400, 424950, 1006767, 1013749, 1020385, 1026982, 1033546, 1040109, 1046672, 1053235, 1059798, 1066361} },
{"Bogslayer Sabatons", {100415, 24951, 100414, 424951, 1006768, 1013750, 1020386, 1026983, 1033547, 1040110, 1046673, 1053236, 1059799, 1066362} },
{"Bogslayer Breastplate", {100405, 24952, 100404, 424952, 1006769, 1013751, 1020387, 1026984, 1033548, 1040111, 1046674, 1053237, 1059800, 1066363} },
{"Bogslayer Gauntlets", {100407, 24953, 100406, 424953, 1006770, 1013752, 1020388, 1026985, 1033549, 1040112, 1046675, 1053238, 1059801, 1066364} },
{"Bogslayer Helm", {100409, 24954, 100408, 424954, 1006771, 1013753, 1020389, 1026986, 1033550, 1040113, 1046676, 1053239, 1059802, 1066365} },
{"Bogslayer Legplates", {100411, 24955, 100410, 424955, 1006772, 1013754, 1020390, 1026987, 1033551, 1040114, 1046677, 1053240, 1059803, 1066366} },
{"Bogslayer Pauldrons", {100413, 24956, 100412, 424956, 1006773, 1013755, 1020391, 1026988, 1033552, 1040115, 1046678, 1053241, 1059804, 1066367} },
{"Bogslayer Bracers", {100403, 24957, 100402, 424957, 1006774, 1013756, 1020392, 1026989, 1033553, 1040116, 1046679, 1053242, 1059805, 1066368} },
{"Khan'aish Girdle", {120762, 24958, 120761, 424958, 1006775, 1013757, 1020393, 1026990, 1033554, 1040117, 1046680, 1053243, 1059806, 1066369} },
{"Khan'aish Greaves", {120766, 24959, 120765, 424959, 1006776, 1013758, 1020394, 1026991, 1033555, 1040118, 1046681, 1053244, 1059807, 1066370} },
{"Khan'aish Breastplate", {120758, 24960, 120757, 424960, 1006777, 1013759, 1020395, 1026992, 1033556, 1040119, 1046682, 1053245, 1059808, 1066371} },
{"Khan'aish Gloves", {120764, 24961, 120763, 424961, 1006778, 1013760, 1020396, 1026993, 1033557, 1040120, 1046683, 1053246, 1059809, 1066372} },
{"Khan'aish Helmet", {120768, 24962, 120767, 424962, 1006779, 1013761, 1020397, 1026994, 1033558, 1040121, 1046684, 1053247, 1059810, 1066373} },
{"Khan'aish Legplates", {120770, 24963, 120769, 424963, 1006780, 1013762, 1020398, 1026995, 1033559, 1040122, 1046685, 1053248, 1059811, 1066374} },
{"Khan'aish Epaulets", {120760, 24964, 120759, 424964, 1006781, 1013763, 1020399, 1026996, 1033560, 1040123, 1046686, 1053249, 1059812, 1066375} },
{"Khan'aish Bracers", {120756, 24965, 120755, 424965, 1006782, 1013764, 1020400, 1026997, 1033561, 1040124, 1046687, 1053250, 1059813, 1066376} },
{"Talonguard Girdle", {129959, 24966, 129953, 424966, 1006783, 1013765, 1020401, 1026998, 1033562, 1040125, 1046688, 1053251, 1059814, 1066377} },
{"Talonguard Greaves", {130025, 24967, 130024, 424967, 1006784, 1013766, 1020402, 1026999, 1033563, 1040126, 1046689, 1053252, 1059815, 1066378} },
{"Talonguard Armor", {129919, 24968, 129918, 424968, 1006785, 1013767, 1020403, 1027000, 1033564, 1040127, 1046690, 1053253, 1059816, 1066379} },
{"Talonguard Gloves", {130023, 24969, 129977, 424969, 1006786, 1013768, 1020404, 1027001, 1033565, 1040128, 1046691, 1053254, 1059817, 1066380} },
{"Talonguard Helmet", {130027, 24970, 130026, 424970, 1006787, 1013769, 1020405, 1027002, 1033566, 1040129, 1046692, 1053255, 1059818, 1066381} },
{"Talonguard Legplates", {130029, 24971, 130028, 424971, 1006788, 1013770, 1020406, 1027003, 1033567, 1040130, 1046693, 1053256, 1059819, 1066382} },
{"Talonguard Epaulets", {129939, 24972, 129933, 424972, 1006789, 1013771, 1020407, 1027004, 1033568, 1040131, 1046694, 1053257, 1059820, 1066383} },
{"Talonguard Bracers", {129932, 24973, 129924, 424973, 1006790, 1013772, 1020408, 1027005, 1033569, 1040132, 1046695, 1053258, 1059821, 1066384} },
{"Reaver Girdle", {123528, 24974, 123527, 424974, 1006791, 1013773, 1020409, 1027006, 1033570, 1040133, 1046696, 1053259, 1059822, 1066385} },
{"Reaver Greaves", {123532, 24975, 123531, 424975, 1006792, 1013774, 1020410, 1027007, 1033571, 1040134, 1046697, 1053260, 1059823, 1066386} },
{"Reaver Armor", {123522, 24976, 123521, 424976, 1006793, 1013775, 1020411, 1027008, 1033572, 1040135, 1046698, 1053261, 1059824, 1066387} },
{"Reaver Gloves", {123530, 24977, 123529, 424977, 1006794, 1013776, 1020412, 1027009, 1033573, 1040136, 1046699, 1053262, 1059825, 1066388} },
{"Reaver Helmet", {123534, 24978, 123533, 424978, 1006795, 1013777, 1020413, 1027010, 1033574, 1040137, 1046700, 1053263, 1059826, 1066389} },
{"Reaver Legplates", {123536, 24979, 123535, 424979, 1006796, 1013778, 1020414, 1027011, 1033575, 1040138, 1046701, 1053264, 1059827, 1066390} },
{"Reaver Epaulets", {123526, 24980, 123525, 424980, 1006797, 1013779, 1020415, 1027012, 1033576, 1040139, 1046702, 1053265, 1059828, 1066391} },
{"Reaver Bracers", {123524, 24981, 123523, 424981, 1006798, 1013780, 1020416, 1027013, 1033577, 1040140, 1046703, 1053266, 1059829, 1066392} },
{"Boulderfist Belt", {100485, 24982, 100484, 424982, 1006799, 1013781, 1020417, 1027014, 1033578, 1040141, 1046704, 1053267, 1059830, 1066393} },
{"Boulderfist Greaves", {100497, 24983, 100496, 424983, 1006800, 1013782, 1020418, 1027015, 1033579, 1040142, 1046705, 1053268, 1059831, 1066394} },
{"Boulderfist Armor", {100483, 24984, 100482, 424984, 1006801, 1013783, 1020419, 1027016, 1033580, 1040143, 1046706, 1053269, 1059832, 1066395} },
{"Boulderfist Gloves", {100495, 24985, 100494, 424985, 1006802, 1013784, 1020420, 1027017, 1033581, 1040144, 1046707, 1053270, 1059833, 1066396} },
{"Boulderfist Helm", {100499, 24986, 100498, 424986, 1006803, 1013785, 1020421, 1027018, 1033582, 1040145, 1046708, 1053271, 1059834, 1066397} },
{"Boulderfist Legplates", {100630, 24987, 100629, 424987, 1006804, 1013786, 1020422, 1027019, 1033583, 1040146, 1046709, 1053272, 1059835, 1066398} },
{"Boulderfist Epaulets", {100493, 24988, 100492, 424988, 1006805, 1013787, 1020423, 1027020, 1033584, 1040147, 1046710, 1053273, 1059836, 1066399} },
{"Boulderfist Bracers", {100487, 24989, 100486, 424989, 1006806, 1013788, 1020424, 1027021, 1033585, 1040148, 1046711, 1053274, 1059837, 1066400} },
{"Warmaul Belt", {130781, 24990, 130780, 424990, 1006807, 1013789, 1020425, 1027022, 1033586, 1040149, 1046712, 1053275, 1059838, 1066401} },
{"Warmaul Greaves", {130789, 24991, 130788, 424991, 1006808, 1013790, 1020426, 1027023, 1033587, 1040150, 1046713, 1053276, 1059839, 1066402} },
{"Warmaul Breastplate", {130783, 24992, 130782, 424992, 1006809, 1013791, 1020427, 1027024, 1033588, 1040151, 1046714, 1053277, 1059840, 1066403} },
{"Warmaul Gloves", {130787, 24993, 130786, 424993, 1006810, 1013792, 1020428, 1027025, 1033589, 1040152, 1046715, 1053278, 1059841, 1066404} },
{"Warmaul Helmet", {130791, 24994, 130790, 424994, 1006811, 1013793, 1020429, 1027026, 1033590, 1040153, 1046716, 1053279, 1059842, 1066405} },
{"Warmaul Legplates", {130793, 24995, 130792, 424995, 1006812, 1013794, 1020430, 1027027, 1033591, 1040154, 1046717, 1053280, 1059843, 1066406} },
{"Warmaul Epaulets", {130785, 24996, 130784, 424996, 1006813, 1013795, 1020431, 1027028, 1033592, 1040155, 1046718, 1053281, 1059844, 1066407} },
{"Warmaul Vambraces", {130796, 24997, 130795, 424997, 1006814, 1013796, 1020432, 1027029, 1033593, 1040156, 1046719, 1053282, 1059845, 1066408} },
{"Bloodfist Girdle", {100358, 24998, 100357, 424998, 1006815, 1013797, 1020433, 1027030, 1033594, 1040157, 1046720, 1053283, 1059846, 1066409} },
{"Bloodfist Greaves", {100362, 24999, 100361, 424999, 1006816, 1013798, 1020434, 1027031, 1033595, 1040158, 1046721, 1053284, 1059847, 1066410} },
{"Bloodfist Breastplate", {100354, 25000, 100353, 425000, 1006817, 1013799, 1020435, 1027032, 1033596, 1040159, 1046722, 1053285, 1059848, 1066411} },
{"Bloodfist Gloves", {100360, 25001, 100359, 425001, 1006818, 1013800, 1020436, 1027033, 1033597, 1040160, 1046723, 1053286, 1059849, 1066412} },
{"Bloodfist Helmet", {100364, 25002, 100363, 425002, 1006819, 1013801, 1020437, 1027034, 1033598, 1040161, 1046724, 1053287, 1059850, 1066413} },
{"Bloodfist Legplates", {100366, 25003, 100365, 425003, 1006820, 1013802, 1020438, 1027035, 1033599, 1040162, 1046725, 1053288, 1059851, 1066414} },
{"Bloodfist Epaulets", {100356, 25004, 100355, 425004, 1006821, 1013803, 1020439, 1027036, 1033600, 1040163, 1046726, 1053289, 1059852, 1066415} },
{"Bloodfist Vambraces", {100368, 25005, 100367, 425005, 1006822, 1013804, 1020440, 1027037, 1033601, 1040164, 1046727, 1053290, 1059853, 1066416} },
{"Conqueror's Girdle", {100862, 25006, 100861, 425006, 1006823, 1013805, 1020441, 1027038, 1033602, 1040165, 1046728, 1053291, 1059854, 1066417} },
{"Conqueror's Gauntlets", {100860, 25009, 100859, 425009, 1006826, 1013808, 1020444, 1027041, 1033605, 1040168, 1046731, 1053294, 1059857, 1066420} },
{"Conqueror's Helmet", {100864, 25010, 100863, 425010, 1006827, 1013809, 1020445, 1027042, 1033606, 1040169, 1046732, 1053295, 1059858, 1066421} },
{"Conqueror's Legplates", {100866, 25011, 100865, 425011, 1006828, 1013810, 1020446, 1027043, 1033607, 1040170, 1046733, 1053296, 1059859, 1066422} },
{"Conqueror's Epaulets", {100858, 25012, 100857, 425012, 1006829, 1013811, 1020447, 1027044, 1033608, 1040171, 1046734, 1053297, 1059860, 1066423} },
{"Conqueror's Vambraces", {100870, 25013, 100869, 425013, 1006830, 1013812, 1020448, 1027045, 1033609, 1040172, 1046735, 1053298, 1059861, 1066424} },
{"Shattered Hand Belt", {123806, 25014, 123805, 425014, 1006831, 1013813, 1020449, 1027046, 1033610, 1040173, 1046736, 1053299, 1059862, 1066425} },
{"Shattered Hand Sabatons", {123818, 25015, 123817, 425015, 1006832, 1013814, 1020450, 1027047, 1033611, 1040174, 1046737, 1053300, 1059863, 1066426} },
{"Shattered Hand Breastplate", {123808, 25016, 123807, 425016, 1006833, 1013815, 1020451, 1027048, 1033612, 1040175, 1046738, 1053301, 1059864, 1066427} },
{"Shattered Hand Gauntlets", {123812, 25017, 123811, 425017, 1006834, 1013816, 1020452, 1027049, 1033613, 1040176, 1046739, 1053302, 1059865, 1066428} },
{"Shattered Hand Helmet", {123814, 25018, 123813, 425018, 1006835, 1013817, 1020453, 1027050, 1033614, 1040177, 1046740, 1053303, 1059866, 1066429} },
{"Shattered Hand Legplates", {123816, 25019, 123815, 425019, 1006836, 1013818, 1020454, 1027051, 1033615, 1040178, 1046741, 1053304, 1059867, 1066430} },
{"Shattered Hand Epaulets", {123810, 25020, 123809, 425020, 1006837, 1013819, 1020455, 1027052, 1033616, 1040179, 1046742, 1053305, 1059868, 1066431} },
{"Shattered Hand Vambraces", {123820, 25021, 123819, 425021, 1006838, 1013820, 1020456, 1027053, 1033617, 1040180, 1046743, 1053306, 1059869, 1066432} },
{"Warlord's Iron-Girdle", {130770, 25022, 130769, 425022, 1006839, 1013821, 1020457, 1027054, 1033618, 1040181, 1046744, 1053307, 1059870, 1066433} },
{"Warlord's Sabatons", {130778, 25023, 130777, 425023, 1006840, 1013822, 1020458, 1027055, 1033619, 1040182, 1046745, 1053308, 1059871, 1066434} },
{"Warlord's Iron-Breastplate", {130764, 25024, 130763, 425024, 1006841, 1013823, 1020459, 1027056, 1033620, 1040183, 1046746, 1053309, 1059872, 1066435} },
{"Warlord's Iron-Gauntlets", {130768, 25025, 130767, 425025, 1006842, 1013824, 1020460, 1027057, 1033621, 1040184, 1046747, 1053310, 1059873, 1066436} },
{"Warlord's Iron-Helm", {130772, 25026, 130771, 425026, 1006843, 1013825, 1020461, 1027058, 1033622, 1040185, 1046748, 1053311, 1059874, 1066437} },
{"Warlord's Iron-Legplates", {130774, 25027, 130773, 425027, 1006844, 1013826, 1020462, 1027059, 1033623, 1040186, 1046749, 1053312, 1059875, 1066438} },
{"Warlord's Iron-Epaulets", {130766, 25028, 130765, 425028, 1006845, 1013827, 1020463, 1027060, 1033624, 1040187, 1046750, 1053313, 1059876, 1066439} },
{"Warlord's Iron-Vambraces", {130776, 25029, 130775, 425029, 1006846, 1013828, 1020464, 1027061, 1033625, 1040188, 1046751, 1053314, 1059877, 1066440} },
{"Silky Velvet Cloak", {266782, 25030, 266781, 266783, 266784, 266785, 266786, 266787, 266788, 266789, 266790, 266791, 266792, 266793} },
{"Silvermoon Royal Cloak", {124031, 25031, 124022, 425031, 1006847, 1013829, 1020465, 1027062, 1033626, 1040189, 1046752, 1053315, 1059878, 1066441} },
{"Hellfire Cloak", {120516, 25032, 120515, 425032, 1006848, 1013830, 1020466, 1027063, 1033627, 1040190, 1046753, 1053316, 1059879, 1066442} },
{"Scavenger's Cloak", {123711, 25033, 123710, 425033, 1006849, 1013831, 1020467, 1027064, 1033628, 1040191, 1046754, 1053317, 1059880, 1066443} },
{"Elementalist Cloak", {112650, 25034, 112641, 425034, 1006850, 1013832, 1020468, 1027065, 1033629, 1040192, 1046755, 1053318, 1059881, 1066444} },
{"Silver-Lined Cloak", {124018, 25035, 124017, 425035, 1006851, 1013833, 1020469, 1027066, 1033630, 1040193, 1046756, 1053319, 1059882, 1066445} },
{"Boulderfist Cloak", {100491, 25036, 100490, 425036, 1006852, 1013834, 1020470, 1027067, 1033631, 1040194, 1046757, 1053320, 1059883, 1066446} },
{"Patched Cape", {123188, 25037, 123187, 425037, 1006853, 1013835, 1020471, 1027068, 1033632, 1040195, 1046758, 1053321, 1059884, 1066447} },
{"Forest Shroud", {116066, 25038, 116065, 425038, 1006854, 1013836, 1020472, 1027069, 1033633, 1040196, 1046759, 1053322, 1059885, 1066448} },
{"Farseer Cloak", {113584, 25039, 113583, 425039, 1006855, 1013837, 1020473, 1027070, 1033634, 1040197, 1046760, 1053323, 1059886, 1066449} },
{"Murkblood Cape", {122964, 25040, 122963, 425040, 1006856, 1013838, 1020474, 1027071, 1033635, 1040198, 1046761, 1053324, 1059887, 1066450} },
{"Ambusher's Cloak", {100057, 25041, 100056, 425041, 1006857, 1013839, 1020475, 1027072, 1033636, 1040199, 1046762, 1053325, 1059888, 1066451} },
{"Nether Cloak", {123006, 25042, 123005, 425042, 1006858, 1013840, 1020476, 1027073, 1033637, 1040200, 1046763, 1053326, 1059889, 1066452} },
{"Amber Cape", {100054, 25043, 100053, 425043, 1006859, 1013841, 1020477, 1027074, 1033638, 1040201, 1046764, 1053327, 1059890, 1066453} },
{"Rubellite Ring", {266795, 25044, 266794, 266796, 266797, 266798, 266799, 266800, 266801, 266802, 266803, 266804, 266805, 266806} },
{"Azurite Ring", {100192, 25045, 100191, 425045, 1006860, 1013842, 1020478, 1027075, 1033639, 1040202, 1046765, 1053328, 1059891, 1066454} },
{"Spined Ring", {128234, 25046, 128233, 425046, 1006861, 1013843, 1020479, 1027076, 1033640, 1040203, 1046766, 1053329, 1059892, 1066455} },
{"Tourmaline Loop", {130445, 25047, 130444, 425047, 1006862, 1013844, 1020480, 1027077, 1033641, 1040204, 1046767, 1053330, 1059893, 1066456} },
{"Smoky Quartz Ring", {127132, 25048, 127131, 425048, 1006863, 1013845, 1020481, 1027078, 1033642, 1040205, 1046768, 1053331, 1059894, 1066457} },
{"Scheelite Ring", {123717, 25049, 123716, 425049, 1006864, 1013846, 1020482, 1027079, 1033643, 1040206, 1046769, 1053332, 1059895, 1066458} },
{"Moldavite Ring", {122932, 25050, 122931, 425050, 1006865, 1013847, 1020483, 1027080, 1033644, 1040207, 1046770, 1053333, 1059896, 1066459} },
{"Blue Topaz Band", {100397, 25051, 100396, 425051, 1006866, 1013848, 1020484, 1027081, 1033645, 1040208, 1046771, 1053334, 1059897, 1066460} },
{"Hauyne Ring", {120481, 25052, 120480, 425052, 1006867, 1013849, 1020485, 1027082, 1033646, 1040209, 1046772, 1053335, 1059898, 1066461} },
{"Lazuli Ring", {120844, 25053, 120843, 425053, 1006868, 1013850, 1020486, 1027083, 1033647, 1040210, 1046773, 1053336, 1059899, 1066462} },
{"Sodalite Band", {127501, 25054, 127405, 425054, 1006869, 1013851, 1020487, 1027084, 1033648, 1040211, 1046774, 1053337, 1059900, 1066463} },
{"Alexandrite Ring", {100036, 25055, 100035, 425055, 1006870, 1013852, 1020488, 1027085, 1033649, 1040212, 1046775, 1053338, 1059901, 1066464} },
{"Almandine Ring", {100040, 25056, 100039, 425056, 1006871, 1013853, 1020489, 1027086, 1033650, 1040213, 1046776, 1053339, 1059902, 1066465} },
{"Amber Band", {100051, 25057, 100050, 425057, 1006872, 1013854, 1020490, 1027087, 1033651, 1040214, 1046777, 1053340, 1059903, 1066466} },
{"Anglesite Choker", {266808, 25058, 266807, 266809, 266810, 266811, 266812, 266813, 266814, 266815, 266816, 266817, 266818, 266819} },
{"Fire Opal Collar", {114664, 25059, 114663, 425059, 1006873, 1013855, 1020491, 1027088, 1033652, 1040215, 1046778, 1053341, 1059904, 1066467} },
{"Sunstone Necklace", {129052, 25060, 129051, 425060, 1006874, 1013856, 1020492, 1027089, 1033653, 1040216, 1046779, 1053342, 1059905, 1066468} },
{"Hiddenite Necklace", {120583, 25061, 120582, 425061, 1006875, 1013857, 1020493, 1027090, 1033654, 1040217, 1046780, 1053343, 1059906, 1066469} },
{"Zircon Amulet", {131034, 25062, 131033, 425062, 1006876, 1013858, 1020494, 1027091, 1033655, 1040218, 1046781, 1053344, 1059907, 1066470} },
{"Multi-Colored Beads", {122956, 25063, 122955, 425063, 1006877, 1013859, 1020495, 1027092, 1033656, 1040219, 1046782, 1053345, 1059908, 1066471} },
{"Amethyst Pendant", {100059, 25064, 100058, 425064, 1006878, 1013860, 1020496, 1027093, 1033657, 1040220, 1046783, 1053346, 1059909, 1066472} },
{"Turquoise Brooch", {130516, 25065, 130515, 425065, 1006879, 1013861, 1020497, 1027094, 1033658, 1040221, 1046784, 1053347, 1059910, 1066473} },
{"Pink Sapphire Necklace", {123412, 25066, 123411, 425066, 1006880, 1013862, 1020498, 1027095, 1033659, 1040222, 1046785, 1053348, 1059911, 1066474} },
{"Diopside Beads", {102317, 25067, 102316, 425067, 1006881, 1013863, 1020499, 1027096, 1033660, 1040223, 1046786, 1053349, 1059912, 1066475} },
{"Kunzite Necklace", {120815, 25068, 120814, 425068, 1006882, 1013864, 1020500, 1027097, 1033661, 1040224, 1046787, 1053350, 1059913, 1066476} },
{"Epidote Stone Necklace", {112983, 25069, 112982, 425069, 1006883, 1013865, 1020501, 1027098, 1033662, 1040225, 1046788, 1053351, 1059914, 1066477} },
{"Coral Beads", {100890, 25070, 100889, 425070, 1006884, 1013866, 1020502, 1027099, 1033663, 1040226, 1046789, 1053352, 1059915, 1066478} },
{"Tanzanite Pendant", {130033, 25071, 130032, 425071, 1006885, 1013867, 1020503, 1027100, 1033664, 1040227, 1046790, 1053353, 1059916, 1066479} },
{"Northman's Shield", {266821, 25072, 266820, 266822, 266823, 266824, 266825, 266826, 266827, 266828, 266829, 266830, 266831, 266832} },
{"Emperor Shield", {112976, 25073, 112975, 425073, 1006886, 1013868, 1020504, 1027101, 1033665, 1040228, 1046791, 1053354, 1059917, 1066480} },
{"Telaari Shield", {130049, 25074, 130048, 425074, 1006887, 1013869, 1020505, 1027102, 1033666, 1040229, 1046792, 1053355, 1059918, 1066481} },
{"Hardened Steel Shield", {120468, 25075, 120467, 425075, 1006888, 1013870, 1020506, 1027103, 1033667, 1040230, 1046793, 1053356, 1059919, 1066482} },
{"Screaming Shield", {123726, 25076, 123725, 425076, 1006889, 1013871, 1020507, 1027104, 1033668, 1040231, 1046794, 1053357, 1059920, 1066483} },
{"Modani War-Shield", {122921, 25077, 122920, 425077, 1006890, 1013872, 1020508, 1027105, 1033669, 1040232, 1046795, 1053358, 1059921, 1066484} },
{"Zangari Shield", {131028, 25078, 131027, 425078, 1006891, 1013873, 1020509, 1027106, 1033670, 1040233, 1046796, 1053359, 1059922, 1066485} },
{"Outland Shield", {123177, 25079, 123176, 425079, 1006892, 1013874, 1020510, 1027107, 1033671, 1040234, 1046797, 1053360, 1059923, 1066486} },
{"Spell-Breaker Shield", {128163, 25080, 128162, 425080, 1006893, 1013875, 1020511, 1027108, 1033672, 1040235, 1046798, 1053361, 1059924, 1066487} },
{"Bayeaux Shield", {100242, 25081, 100241, 425081, 1006894, 1013876, 1020512, 1027109, 1033673, 1040236, 1046799, 1053362, 1059925, 1066488} },
{"Fel-Iron Shield", {113669, 25082, 113668, 425082, 1006895, 1013877, 1020513, 1027110, 1033674, 1040237, 1046800, 1053363, 1059926, 1066489} },
{"Smouldering Shield", {127393, 25083, 127392, 425083, 1006896, 1013878, 1020514, 1027111, 1033675, 1040238, 1046801, 1053364, 1059927, 1066490} },
{"Zeth'Gor Shield", {131032, 25084, 131031, 425084, 1006897, 1013879, 1020515, 1027112, 1033676, 1040239, 1046802, 1053365, 1059928, 1066491} },
{"Dragonscale Shield", {102375, 25085, 102374, 425085, 1006898, 1013880, 1020516, 1027113, 1033677, 1040240, 1046803, 1053366, 1059929, 1066492} },
{"Dreamseeker Dandelion", {266834, 25086, 266833, 266835, 266836, 266837, 266838, 266839, 266840, 266841, 266842, 266843, 266844, 266845} },
{"Bleeding Eye", {100324, 25087, 100323, 425087, 1006899, 1013881, 1020517, 1027114, 1033678, 1040241, 1046804, 1053367, 1059930, 1066493} },
{"Laughing Skull Orb", {120830, 25088, 120829, 425088, 1006900, 1013882, 1020518, 1027115, 1033679, 1040242, 1046805, 1053368, 1059931, 1066494} },
{"Supplicant's Rod", {129222, 25089, 129221, 425089, 1006901, 1013883, 1020519, 1027116, 1033680, 1040243, 1046806, 1053369, 1059932, 1066495} },
{"Slavehandler Rod", {127015, 25090, 127014, 425090, 1006902, 1013884, 1020520, 1027117, 1033681, 1040244, 1046807, 1053370, 1059933, 1066496} },
{"Mistyreed Torch", {122915, 25091, 122914, 425091, 1006903, 1013885, 1020521, 1027118, 1033682, 1040245, 1046808, 1053371, 1059934, 1066497} },
{"Consortium Crystal", {100876, 25092, 100875, 425092, 1006904, 1013886, 1020522, 1027119, 1033683, 1040246, 1046809, 1053372, 1059935, 1066498} },
{"Shadow Council Orb", {123768, 25093, 123767, 425093, 1006905, 1013887, 1020523, 1027120, 1033684, 1040247, 1046810, 1053373, 1059936, 1066499} },
{"Eldr'naan Scepter", {103912, 25094, 103911, 425094, 1006906, 1013888, 1020524, 1027121, 1033685, 1040248, 1046811, 1053374, 1059937, 1066500} },
{"Archmage Orb", {100127, 25095, 100126, 425095, 1006907, 1013889, 1020525, 1027122, 1033686, 1040249, 1046812, 1053375, 1059938, 1066501} },
{"Elementalist Star", {112678, 25096, 112677, 425096, 1006908, 1013890, 1020526, 1027123, 1033687, 1040250, 1046813, 1053376, 1059939, 1066502} },
{"Astralaan Orb", {100166, 25097, 100165, 425097, 1006909, 1013891, 1020527, 1027124, 1033688, 1040251, 1046814, 1053377, 1059940, 1066503} },
{"Tuurik Torch", {130518, 25098, 130517, 425098, 1006910, 1013892, 1020528, 1027125, 1033689, 1040252, 1046815, 1053378, 1059941, 1066504} },
{"Draenei Crystal Rod", {102341, 25099, 102340, 425099, 1006911, 1013893, 1020529, 1027126, 1033690, 1040253, 1046816, 1053379, 1059942, 1066505} },
{"Liege Blade", {266847, 25100, 266846, 266848, 266849, 266850, 266851, 266852, 266853, 266854, 266855, 266856, 266857, 266858} },
{"Cross Pommel Dagger", {100923, 25101, 100922, 425101, 1006912, 1013894, 1020530, 1027127, 1033691, 1040254, 1046817, 1053380, 1059943, 1066506} },
{"Jaedenis Dagger", {120710, 25102, 120709, 425102, 1006913, 1013895, 1020531, 1027128, 1033692, 1040255, 1046818, 1053381, 1059944, 1066507} },
{"Nightstalker Dagger", {123074, 25103, 123073, 425103, 1006914, 1013896, 1020532, 1027129, 1033693, 1040256, 1046819, 1053382, 1059945, 1066508} },
{"Anzac Dagger", {100100, 25104, 100099, 425104, 1006915, 1013897, 1020533, 1027130, 1033694, 1040257, 1046820, 1053383, 1059946, 1066509} },
{"Arachnid Dagger", {100104, 25105, 100103, 425105, 1006916, 1013898, 1020534, 1027131, 1033695, 1040258, 1046821, 1053384, 1059947, 1066510} },
{"Cobra Shortblade", {100826, 25106, 100825, 425106, 1006917, 1013899, 1020535, 1027132, 1033696, 1040259, 1046822, 1053385, 1059948, 1066511} },
{"Draconic Dagger", {102338, 25107, 102337, 425107, 1006918, 1013900, 1020536, 1027133, 1033697, 1040260, 1046823, 1053386, 1059949, 1066512} },
{"Grave Keeper Knife", {120156, 25108, 120155, 425108, 1006919, 1013901, 1020537, 1027134, 1033698, 1040261, 1046824, 1053387, 1059950, 1066513} },
{"Moon Blade", {122939, 25109, 122938, 425109, 1006920, 1013902, 1020538, 1027135, 1033699, 1040262, 1046825, 1053388, 1059951, 1066514} },
{"Sharp Bowie Knife", {123803, 25110, 123802, 425110, 1006921, 1013903, 1020539, 1027136, 1033700, 1040263, 1046826, 1053389, 1059952, 1066515} },
{"Lionhead Dagger", {122286, 25111, 122285, 425111, 1006922, 1013904, 1020540, 1027137, 1033701, 1040264, 1046827, 1053390, 1059953, 1066516} },
{"Fel Ripper", {113627, 25112, 113620, 425112, 1006923, 1013905, 1020541, 1027138, 1033702, 1040265, 1046828, 1053391, 1059954, 1066517} },
{"Phantom Dagger", {123405, 25113, 123404, 425113, 1006924, 1013906, 1020542, 1027139, 1033703, 1040266, 1046829, 1053392, 1059955, 1066518} },
{"Doomsayer's Mace", {266860, 25114, 266859, 266861, 266862, 266863, 266864, 266865, 266866, 266867, 266868, 266869, 266870, 266871} },
{"Riversong Mace", {123617, 25115, 123616, 425115, 1006925, 1013907, 1020543, 1027140, 1033704, 1040267, 1046830, 1053393, 1059956, 1066519} },
{"Pneumatic War Hammer", {123420, 25116, 123419, 425116, 1006926, 1013908, 1020544, 1027141, 1033705, 1040268, 1046831, 1053394, 1059957, 1066520} },
{"Flanged Battle Mace", {115491, 25117, 115488, 425117, 1006927, 1013909, 1020545, 1027142, 1033706, 1040269, 1046832, 1053395, 1059958, 1066521} },
{"Battle Star", {100234, 25118, 100233, 425118, 1006928, 1013910, 1020546, 1027143, 1033707, 1040270, 1046833, 1053396, 1059959, 1066522} },
{"Silvermoon War-Mace", {124034, 25119, 124032, 425119, 1006929, 1013911, 1020547, 1027144, 1033708, 1040271, 1046834, 1053397, 1059960, 1066523} },
{"Rockshard Club", {123638, 25120, 123637, 425120, 1006930, 1013912, 1020548, 1027145, 1033709, 1040272, 1046835, 1053398, 1059961, 1066524} },
{"Dreaded Mace", {102384, 25121, 102383, 425121, 1006931, 1013913, 1020549, 1027146, 1033710, 1040273, 1046836, 1053399, 1059962, 1066525} },
{"Khorium Plated Bludgeon", {120772, 25122, 120771, 425122, 1006932, 1013914, 1020550, 1027147, 1033711, 1040274, 1046837, 1053400, 1059963, 1066526} },
{"Boneshredder Mace", {100438, 25123, 100437, 425123, 1006933, 1013915, 1020551, 1027148, 1033712, 1040275, 1046838, 1053401, 1059964, 1066527} },
{"Footman Mace", {116061, 25124, 116060, 425124, 1006934, 1013916, 1020552, 1027149, 1033713, 1040276, 1046839, 1053402, 1059965, 1066528} },
{"Retro-Spike Club", {123583, 25125, 123582, 425125, 1006935, 1013917, 1020553, 1027150, 1033714, 1040277, 1046840, 1053403, 1059966, 1066529} },
{"Knight's War Hammer", {120791, 25127, 120790, 425127, 1006937, 1013919, 1020555, 1027152, 1033716, 1040279, 1046842, 1053405, 1059968, 1066531} },
{"Shining Mace", {266873, 25128, 266872, 266874, 266875, 266876, 266877, 266878, 266879, 266880, 266881, 266882, 266883, 266884} },
{"Giant's Leg Bone", {117425, 25129, 117424, 425129, 1006938, 1013920, 1020556, 1027153, 1033717, 1040280, 1046843, 1053406, 1059969, 1066532} },
{"Gronn-Bone Club", {120305, 25130, 120303, 425130, 1006939, 1013921, 1020557, 1027154, 1033718, 1040281, 1046844, 1053407, 1059970, 1066533} },
{"Hateful Bludgeon", {120474, 25131, 120473, 425131, 1006940, 1013922, 1020558, 1027155, 1033719, 1040282, 1046845, 1053408, 1059971, 1066534} },
{"Thrallmar War Hammer", {130381, 25132, 130380, 425132, 1006941, 1013923, 1020559, 1027156, 1033720, 1040283, 1046846, 1053409, 1059972, 1066535} },
{"Stormwind Maul", {128815, 25133, 128812, 425133, 1006942, 1013924, 1020560, 1027157, 1033721, 1040284, 1046847, 1053410, 1059973, 1066536} },
{"Highmountain Hammer", {120588, 25134, 120587, 425134, 1006943, 1013925, 1020561, 1027158, 1033722, 1040285, 1046848, 1053411, 1059974, 1066537} },
{"Clefthoof Mace", {100798, 25135, 100797, 425135, 1006944, 1013926, 1020562, 1027159, 1033723, 1040286, 1046849, 1053412, 1059975, 1066538} },
{"Blood Stained Hammer", {100351, 25136, 100350, 425136, 1006945, 1013927, 1020563, 1027160, 1033724, 1040287, 1046850, 1053413, 1059976, 1066539} },
{"Draenethyst Mallet", {102343, 25137, 102342, 425137, 1006946, 1013928, 1020564, 1027161, 1033725, 1040288, 1046851, 1053414, 1059977, 1066540} },
{"Blood Knight Maul", {100346, 25138, 100345, 425138, 1006947, 1013929, 1020565, 1027162, 1033726, 1040289, 1046852, 1053415, 1059978, 1066541} },
{"Algaz Battle Hammer", {100038, 25139, 100037, 425139, 1006948, 1013930, 1020566, 1027163, 1033727, 1040290, 1046853, 1053416, 1059979, 1066542} },
{"Commanding Mallet", {100851, 25140, 100850, 425140, 1006949, 1013931, 1020567, 1027164, 1033728, 1040291, 1046854, 1053417, 1059980, 1066543} },
{"Halaani Hammer", {120428, 25141, 120426, 425141, 1006950, 1013932, 1020568, 1027165, 1033729, 1040292, 1046855, 1053418, 1059981, 1066544} },
{"Telaari Longblade", {266886, 25142, 266885, 266887, 266888, 266889, 266890, 266891, 266892, 266893, 266894, 266895, 266896, 266897} },
{"Silver Hand Blade", {123965, 25143, 123889, 425143, 1006951, 1013933, 1020569, 1027166, 1033730, 1040293, 1046856, 1053419, 1059982, 1066545} },
{"Skettis Curved Blade", {124059, 25144, 124058, 425144, 1006952, 1013934, 1020570, 1027167, 1033731, 1040294, 1046857, 1053420, 1059983, 1066546} },
{"Wisdom Blade", {266899, 25145, 266898, 266900, 266901, 266902, 266903, 266904, 266905, 266906, 266907, 266908, 266909, 266910} },
{"Light-Etched Longsword", {121000, 25146, 120999, 425146, 1006953, 1013935, 1020571, 1027168, 1033732, 1040295, 1046858, 1053421, 1059984, 1066547} },
{"Skystrider Katana", {124534, 25147, 124533, 425147, 1006954, 1013936, 1020572, 1027169, 1033733, 1040296, 1046859, 1053422, 1059985, 1066548} },
{"Bone Collector Sword", {100419, 25148, 100418, 425148, 1006955, 1013937, 1020573, 1027170, 1033734, 1040297, 1046860, 1053423, 1059986, 1066549} },
{"Baron's Broadsword", {100223, 25149, 100222, 425149, 1006956, 1013938, 1020574, 1027171, 1033735, 1040298, 1046861, 1053424, 1059987, 1066550} },
{"Honor Hold Saber", {120591, 25150, 120590, 425150, 1006957, 1013939, 1020575, 1027172, 1033736, 1040299, 1046862, 1053425, 1059988, 1066551} },
{"Assassins' Short Blade", {100152, 25151, 100151, 425151, 1006958, 1013940, 1020576, 1027173, 1033737, 1040300, 1046863, 1053426, 1059989, 1066552} },
{"Howling Sword", {120605, 25152, 120604, 425152, 1006959, 1013941, 1020583, 1027174, 1033738, 1040301, 1046864, 1053427, 1059990, 1066553} },
{"Gladiator Greatblade", {117462, 25153, 117461, 425153, 1006960, 1013942, 1020584, 1027175, 1033739, 1040302, 1046865, 1053428, 1059991, 1066554} },
{"Blood Groove Blade", {100328, 25154, 100327, 425154, 1006961, 1013943, 1020585, 1027176, 1033740, 1040303, 1046866, 1053429, 1059992, 1066555} },
{"Iron Skull Sword", {120675, 25155, 120674, 425155, 1006962, 1013944, 1020586, 1027177, 1033741, 1040304, 1046867, 1053430, 1059993, 1066556} },
{"Royal Crusader Sword", {266912, 25156, 266911, 266913, 266914, 266915, 266916, 266917, 266918, 266919, 266920, 266921, 266922, 266923} },
{"Serpentlord Claymore", {123743, 25157, 123742, 425157, 1006963, 1013945, 1020587, 1027178, 1033742, 1040305, 1046868, 1053431, 1059994, 1066557} },
{"Skeletal Broadsword", {124046, 25158, 124044, 425158, 1006964, 1013946, 1020588, 1027179, 1033743, 1040306, 1046869, 1053432, 1059995, 1066558} },
{"Thunderstrike Falchion", {266925, 25159, 266924, 266926, 266927, 266928, 266929, 266930, 266931, 266932, 266933, 266934, 266935, 266936} },
{"Vengeance Blade", {130596, 25160, 130595, 425160, 1006965, 1013947, 1020589, 1027180, 1033744, 1040307, 1046870, 1053433, 1059996, 1066559} },
{"Dragon Wing Blade", {102349, 25161, 102348, 425161, 1006966, 1013948, 1020590, 1027181, 1033745, 1040308, 1046871, 1053434, 1059997, 1066560} },
{"Darkened Broadsword", {101007, 25162, 101006, 425162, 1006967, 1013949, 1020591, 1027182, 1033746, 1040309, 1046872, 1053435, 1059998, 1066561} },
{"Elexorien Blade", {112824, 25163, 112822, 425163, 1006968, 1013950, 1020592, 1027183, 1033747, 1040310, 1046873, 1053436, 1059999, 1066562} },
{"Crude Umbrafen Blade", {100940, 25164, 100939, 425164, 1006972, 1013951, 1020593, 1027184, 1033748, 1040311, 1046874, 1053437, 1060000, 1066563} },
{"Boulderfist Claymore", {100489, 25165, 100488, 425165, 1006973, 1013952, 1020594, 1027185, 1033749, 1040312, 1046875, 1053438, 1060001, 1066564} },
{"Mok'Nathal Warblade", {122929, 25166, 122928, 425166, 1006974, 1013953, 1020595, 1027186, 1033750, 1040313, 1046876, 1053439, 1060002, 1066565} },
{"Nethersteel Claymore", {123031, 25167, 123030, 425167, 1006975, 1013954, 1020596, 1027187, 1033751, 1040314, 1046877, 1053440, 1060003, 1066566} },
{"Sha'tari Longsword", {123750, 25168, 123749, 425168, 1006976, 1013955, 1020597, 1027188, 1033752, 1040315, 1046878, 1053441, 1060004, 1066567} },
{"Fel Orc Brute Sword", {113619, 25169, 113618, 425169, 1006977, 1013956, 1020598, 1027189, 1033753, 1040316, 1046879, 1053442, 1060005, 1066568} },
{"Rattan Bo Staff", {266938, 25170, 266937, 266939, 266940, 266941, 266942, 266943, 266944, 266945, 266946, 266947, 266948, 266949} },
{"Straight Hardwood Staff", {128857, 25171, 128818, 425171, 1006978, 1013957, 1020601, 1027190, 1033754, 1040317, 1046880, 1053443, 1060006, 1066569} },
{"Jinbali Warp-Staff", {120723, 25172, 120722, 425172, 1006979, 1013958, 1020602, 1027191, 1033755, 1040318, 1046881, 1053444, 1060007, 1066570} },
{"Master's Bo Staff", {266951, 25173, 266950, 266952, 266953, 266954, 266955, 266956, 266957, 266958, 266959, 266960, 266961, 266962} },
{"Hanbo Staff", {120452, 25174, 120451, 425174, 1006980, 1013959, 1020603, 1027192, 1033756, 1040319, 1046882, 1053445, 1060008, 1066571} },
{"Demoniac Longstaff", {102235, 25175, 102234, 425175, 1006981, 1013960, 1020604, 1027193, 1033757, 1040320, 1046883, 1053446, 1060009, 1066572} },
{"Taiji Quarterstaff", {129265, 25176, 129261, 425176, 1006982, 1013961, 1020605, 1027194, 1033758, 1040321, 1046884, 1053447, 1060010, 1066573} },
{"Tanjo Staff", {130031, 25177, 130030, 425177, 1006983, 1013962, 1020606, 1027195, 1033759, 1040322, 1046885, 1053448, 1060011, 1066574} },
{"Bata Staff", {100228, 25178, 100227, 425178, 1006984, 1013963, 1020607, 1027196, 1033760, 1040323, 1046886, 1053449, 1060012, 1066575} },
{"Nguni Stick", {123070, 25179, 123069, 425179, 1006985, 1013964, 1020608, 1027197, 1033761, 1040324, 1046887, 1053450, 1060013, 1066576} },
{"Calenda Fighting Stick", {100705, 25180, 100704, 425180, 1006986, 1013965, 1020609, 1027198, 1033762, 1040325, 1046888, 1053451, 1060014, 1066577} },
{"Tapered Staff", {130035, 25181, 130034, 425181, 1006987, 1013966, 1020610, 1027199, 1033763, 1040326, 1046889, 1053452, 1060015, 1066578} },
{"Crystal-Etched Warstaff", {100948, 25182, 100947, 425182, 1006988, 1013967, 1020611, 1027200, 1033764, 1040327, 1046890, 1053453, 1060016, 1066579} },
{"Voodoo Hex-Staff", {130749, 25183, 130748, 425183, 1006989, 1013968, 1020612, 1027201, 1033765, 1040328, 1046891, 1053454, 1060017, 1066580} },
{"Ravager Claws", {266964, 25184, 266963, 266965, 266966, 266967, 266968, 266969, 266970, 266971, 266972, 266973, 266974, 266975} },
{"Thrasher Blades", {130383, 25185, 130382, 425185, 1006990, 1013969, 1020613, 1027202, 1033766, 1040329, 1046892, 1053455, 1060018, 1066581} },
{"Vampiric Handscythes", {130551, 25186, 130550, 425186, 1006991, 1013970, 1020614, 1027203, 1033767, 1040330, 1046893, 1053456, 1060019, 1066582} },
{"Shekketh Talons", {123825, 25187, 123824, 425187, 1006992, 1013971, 1020620, 1027204, 1033768, 1040331, 1046894, 1053457, 1060020, 1066583} },
{"Spleenripper Claws", {128336, 25188, 128334, 425188, 1006993, 1013972, 1020640, 1027205, 1033769, 1040332, 1046895, 1053458, 1060021, 1066584} },
{"Ironspine Point", {120695, 25189, 120694, 425189, 1006994, 1013973, 1020641, 1027206, 1033770, 1040333, 1046896, 1053459, 1060022, 1066585} },
{"Wight's Claws", {130834, 25190, 130833, 425190, 1006995, 1013974, 1020642, 1027207, 1033771, 1040334, 1046897, 1053460, 1060023, 1066586} },
{"Dread Fangs", {102382, 25191, 102381, 425191, 1006996, 1013975, 1020643, 1027208, 1033772, 1040335, 1046898, 1053461, 1060024, 1066587} },
{"Gutrippers", {120404, 25192, 120403, 425192, 1006997, 1013976, 1020644, 1027209, 1033773, 1040336, 1046899, 1053462, 1060025, 1066588} },
{"Deathclaw Talons", {101018, 25193, 101017, 425193, 1006998, 1013977, 1020645, 1027210, 1033774, 1040337, 1046900, 1053463, 1060026, 1066589} },
{"Serpent's Fangs", {123739, 25194, 123738, 425194, 1006999, 1013978, 1020646, 1027211, 1033775, 1040338, 1046901, 1053464, 1060027, 1066590} },
{"Diamond Tipped Claws", {102314, 25195, 102313, 425195, 1007000, 1013979, 1020647, 1027212, 1033776, 1040339, 1046902, 1053465, 1060028, 1066591} },
{"Boneshredder Claws", {100432, 25196, 100431, 425196, 1007001, 1013980, 1020648, 1027213, 1033777, 1040340, 1046903, 1053466, 1060029, 1066592} },
{"Razor Scythes", {123516, 25197, 123515, 425197, 1007002, 1013981, 1020649, 1027214, 1033778, 1040341, 1046904, 1053467, 1060030, 1066593} },
{"Karaborian Battle Axe", {266977, 25198, 266976, 266978, 266979, 266980, 266981, 266982, 266983, 266984, 266985, 266986, 266987, 266988} },
{"Knight's War Axe", {120789, 25199, 120788, 425199, 1007003, 1013982, 1020650, 1027215, 1033779, 1040342, 1046905, 1053468, 1060031, 1066594} },
{"Jagged Broadaxe", {120713, 25200, 120712, 425200, 1007004, 1013983, 1020651, 1027216, 1033780, 1040343, 1046906, 1053469, 1060032, 1066595} },
{"Reaver's Sickle", {123539, 25201, 123538, 425201, 1007006, 1013984, 1020652, 1027217, 1033781, 1040344, 1046907, 1053470, 1060033, 1066596} },
{"Kingly Axe", {120782, 25202, 120781, 425202, 1007007, 1013985, 1020653, 1027218, 1033782, 1040345, 1046908, 1053471, 1060034, 1066597} },
{"Chipped Woodchopper", {100762, 25203, 100761, 425203, 1007009, 1013986, 1020654, 1027219, 1033783, 1040346, 1046909, 1053472, 1060035, 1066598} },
{"Colossal War Axe", {100847, 25204, 100846, 425204, 1007011, 1013987, 1020655, 1027220, 1033784, 1040347, 1046910, 1053473, 1060036, 1066599} },
{"Silvermoon Crescent Axe", {124020, 25205, 124019, 425205, 1007012, 1013988, 1020656, 1027221, 1033785, 1040348, 1046911, 1053474, 1060037, 1066600} },
{"Berserker Axe", {100286, 25206, 100285, 425206, 1007013, 1013989, 1020657, 1027222, 1033786, 1040349, 1046912, 1053475, 1060038, 1066601} },
{"Shadowmoon Cleaver", {123793, 25207, 123792, 425207, 1007014, 1013990, 1020658, 1027223, 1033787, 1040350, 1046913, 1053476, 1060039, 1066602} },
{"Bladespire Broadaxe", {100320, 25208, 100319, 425208, 1007017, 1013991, 1020659, 1027224, 1033788, 1040351, 1046914, 1053477, 1060040, 1066603} },
{"Amani Tomahawk", {100048, 25209, 100047, 425209, 1007018, 1013992, 1020660, 1027225, 1033789, 1040352, 1046915, 1053478, 1060041, 1066604} },
{"Rockbiter Cutter", {123635, 25211, 123634, 425211, 1007020, 1013994, 1020662, 1027227, 1033791, 1040354, 1046917, 1053480, 1060043, 1066606} },
{"Lucky Strike Axe", {266990, 25212, 266989, 266991, 266992, 266993, 266994, 266995, 266996, 266997, 266998, 266999, 267000, 267001} },
{"Fel-Touched Axe", {113673, 25213, 113672, 425213, 1007022, 1013995, 1020663, 1027228, 1033792, 1040355, 1046918, 1053481, 1060044, 1066607} },
{"Mok'Nathal Battleaxe", {122924, 25214, 122923, 425214, 1007023, 1013996, 1020664, 1027229, 1033793, 1040356, 1046919, 1053482, 1060045, 1066608} },
{"Spiked Battle Axe", {128221, 25215, 128212, 425215, 1007025, 1013997, 1020665, 1027230, 1033794, 1040357, 1046920, 1053483, 1060046, 1066609} },
{"Ogre Splitting Axe", {123134, 25216, 123133, 425216, 1007027, 1013998, 1020666, 1027231, 1033795, 1040358, 1046921, 1053484, 1060047, 1066610} },
{"Sundering Axe", {267003, 25217, 267002, 267004, 267005, 267006, 267007, 267008, 267009, 267010, 267011, 267012, 267013, 267014} },
{"Silver-Edged Axe", {124016, 25218, 123982, 425218, 1007028, 1013999, 1020667, 1027232, 1033796, 1040359, 1046922, 1053485, 1060048, 1066611} },
{"Rending Claw", {123573, 25219, 123572, 425219, 1007029, 1014000, 1020668, 1027233, 1033797, 1040360, 1046923, 1053486, 1060049, 1066612} },
{"Glorious War-Axe", {118585, 25220, 118584, 425220, 1007030, 1014001, 1020669, 1027234, 1033798, 1040361, 1046924, 1053487, 1060050, 1066613} },
{"Ghostly Battle Axe", {117422, 25221, 117421, 425221, 1007031, 1014002, 1020670, 1027235, 1033799, 1040362, 1046925, 1053488, 1060051, 1066614} },
{"Ceremonial Slayer's Axe", {100721, 25222, 100720, 425222, 1007032, 1014003, 1020671, 1027236, 1033800, 1040363, 1046926, 1053489, 1060052, 1066615} },
{"Windcaller Hatchet", {130858, 25223, 130857, 425223, 1007033, 1014004, 1020672, 1027237, 1033801, 1040364, 1046927, 1053490, 1060053, 1066616} },
{"Slavemaster Axe", {127057, 25224, 127056, 425224, 1007034, 1014005, 1020673, 1027238, 1033802, 1040365, 1046928, 1053491, 1060054, 1066617} },
{"Deepforge Broadaxe", {101041, 25225, 101040, 425225, 1007036, 1014006, 1020674, 1027239, 1033803, 1040366, 1046929, 1053492, 1060055, 1066618} },
{"War Scythe", {267016, 25226, 267015, 267017, 267018, 267019, 267020, 267021, 267022, 267023, 267024, 267025, 267026, 267027} },
{"Sha'tari Longspear", {123748, 25227, 123747, 425227, 1007037, 1014007, 1020675, 1027240, 1033804, 1040367, 1046930, 1053493, 1060056, 1066619} },
{"Halberd Polearm", {120440, 25228, 120429, 425228, 1007038, 1014008, 1020676, 1027241, 1033805, 1040368, 1046931, 1053494, 1060057, 1066620} },
{"Partisan Polearm", {123185, 25229, 123184, 425229, 1007039, 1014009, 1020677, 1027242, 1033806, 1040369, 1046932, 1053495, 1060058, 1066621} },
{"Voulge Blade", {130751, 25230, 130750, 425230, 1007040, 1014010, 1020678, 1027243, 1033807, 1040370, 1046933, 1053496, 1060059, 1066622} },
{"Fel-Wrought Halberd", {113675, 25231, 113674, 425231, 1007041, 1014011, 1020679, 1027244, 1033808, 1040371, 1046934, 1053497, 1060060, 1066623} },
{"War Glaive", {130760, 25232, 130759, 425232, 1007042, 1014012, 1020680, 1027245, 1033809, 1040372, 1046935, 1053498, 1060061, 1066624} },
{"Battle Scythe", {100232, 25233, 100231, 425233, 1007043, 1014013, 1020681, 1027246, 1033810, 1040373, 1046936, 1053499, 1060062, 1066625} },
{"Telaari Polearm", {130047, 25234, 130046, 425234, 1007044, 1014014, 1020682, 1027247, 1033811, 1040374, 1046937, 1053500, 1060063, 1066626} },
{"Ethereal-Etched Glaive", {113166, 25235, 113165, 425235, 1007046, 1014015, 1020683, 1027248, 1033812, 1040375, 1046938, 1053501, 1060064, 1066627} },
{"Grim Scythe", {120294, 25236, 120292, 425236, 1007047, 1014016, 1020684, 1027249, 1033813, 1040376, 1046939, 1053502, 1060065, 1066628} },
{"Nether Trident", {123009, 25237, 123008, 425237, 1007048, 1014017, 1020685, 1027250, 1033814, 1040377, 1046940, 1053503, 1060066, 1066629} },
{"Hellfire War Spear", {120518, 25238, 120517, 425238, 1007049, 1014018, 1020686, 1027251, 1033815, 1040378, 1046941, 1053504, 1060067, 1066630} },
{"Legend's Glaive", {120849, 25239, 120848, 425239, 1007050, 1014019, 1020687, 1027252, 1033816, 1040379, 1046942, 1053505, 1060068, 1066631} },
{"Azerothian Longbow", {267029, 25240, 267028, 267030, 267031, 267032, 267033, 267034, 267035, 267036, 267037, 267038, 267039, 267040} },
{"Ashenvale Longbow", {100148, 25241, 100147, 425241, 1007051, 1014020, 1020688, 1027253, 1033817, 1040380, 1046943, 1053506, 1060069, 1066632} },
{"Telaari Longbow", {130045, 25242, 130044, 425242, 1007052, 1014021, 1020689, 1027254, 1033818, 1040381, 1046944, 1053507, 1060070, 1066633} },
{"Windtalker Bow", {130885, 25243, 130884, 425243, 1007053, 1014022, 1020690, 1027255, 1033819, 1040382, 1046945, 1053508, 1060071, 1066634} },
{"Viper Bow", {130738, 25244, 130737, 425244, 1007054, 1014023, 1020691, 1027256, 1033820, 1040383, 1046946, 1053509, 1060072, 1066635} },
{"Razorsong Bow", {123520, 25245, 123519, 425245, 1007055, 1014024, 1020692, 1027257, 1033821, 1040384, 1046947, 1053510, 1060073, 1066636} },
{"Thalassian Compound Bow", {130065, 25246, 130063, 425246, 1007056, 1014025, 1020693, 1027258, 1033822, 1040385, 1046948, 1053511, 1060074, 1066637} },
{"Expert's Bow", {113413, 25247, 113317, 425247, 1007057, 1014026, 1020694, 1027259, 1033823, 1040386, 1046949, 1053512, 1060075, 1066638} },
{"Talbuk Hunting Bow", {129268, 25248, 129267, 425248, 1007059, 1014027, 1020695, 1027260, 1033824, 1040387, 1046950, 1053513, 1060076, 1066639} },
{"Ranger's Recurved Bow", {123508, 25249, 123507, 425249, 1007060, 1014028, 1020696, 1027261, 1033825, 1040388, 1046951, 1053514, 1060077, 1066640} },
{"Rocslayer Longbow", {123640, 25250, 123639, 425250, 1007062, 1014029, 1020697, 1027262, 1033826, 1040389, 1046952, 1053515, 1060078, 1066641} },
{"Orc Flatbow", {123170, 25251, 123169, 425251, 1007063, 1014030, 1020698, 1027263, 1033827, 1040390, 1046953, 1053516, 1060079, 1066642} },
{"Dream Catcher Bow", {102389, 25252, 102388, 425252, 1007064, 1014031, 1020699, 1027264, 1033828, 1040391, 1046954, 1053517, 1060080, 1066643} },
{"Windspear Longbow", {130883, 25253, 130882, 425253, 1007067, 1014032, 1020700, 1027265, 1033829, 1040392, 1046955, 1053518, 1060081, 1066644} },
{"Tower Crossbow", {267042, 25254, 267041, 267043, 267044, 267045, 267046, 267047, 267048, 267049, 267050, 267051, 267052, 267053} },
{"Ram's Head Crossbow", {123492, 25255, 123491, 425255, 1007069, 1014033, 1020701, 1027266, 1033830, 1040393, 1046956, 1053519, 1060082, 1066645} },
{"Stronghold Crossbow", {128871, 25256, 128865, 425256, 1007071, 1014034, 1020702, 1027267, 1033831, 1040394, 1046957, 1053520, 1060083, 1066646} },
{"Citadel Crossbow", {100777, 25257, 100776, 425257, 1007072, 1014035, 1020703, 1027268, 1033832, 1040395, 1046958, 1053521, 1060084, 1066647} },
{"Repeater Crossbow", {123576, 25258, 123575, 425258, 1007073, 1014036, 1020704, 1027269, 1033833, 1040396, 1046959, 1053522, 1060085, 1066648} },
{"Collapsible Crossbow", {100834, 25259, 100833, 425259, 1007074, 1014037, 1020705, 1027270, 1033834, 1040397, 1046960, 1053523, 1060086, 1066649} },
{"Archer's Crossbow", {100114, 25260, 100113, 425260, 1007075, 1014038, 1020706, 1027271, 1033835, 1040398, 1046961, 1053524, 1060087, 1066650} },
{"Mighty Crossbow", {122891, 25261, 122882, 425261, 1007076, 1014039, 1020707, 1027272, 1033836, 1040399, 1046962, 1053525, 1060088, 1066651} },
{"Battle Damaged Crossbow", {100230, 25262, 100229, 425262, 1007077, 1014040, 1020708, 1027273, 1033837, 1040400, 1046963, 1053526, 1060089, 1066652} },
{"Assassins' Silent Crossbow", {100154, 25263, 100153, 425263, 1007078, 1014041, 1020709, 1027274, 1033838, 1040401, 1046964, 1053527, 1060090, 1066653} },
{"Pocket Ballista", {123422, 25264, 123421, 425264, 1007079, 1014042, 1020710, 1027275, 1033839, 1040402, 1046965, 1053528, 1060091, 1066654} },
{"Barreled Crossbow", {100225, 25265, 100224, 425265, 1007080, 1014043, 1020711, 1027276, 1033840, 1040403, 1046966, 1053529, 1060092, 1066655} },
{"Well-Balanced Crossbow", {130828, 25266, 130827, 425266, 1007081, 1014044, 1020712, 1027277, 1033841, 1040404, 1046967, 1053530, 1060093, 1066656} },
{"Rampant Crossbow", {123494, 25267, 123493, 425267, 1007082, 1014045, 1020713, 1027278, 1033842, 1040405, 1046968, 1053531, 1060094, 1066657} },
{"Lead-Slug Shotgun", {267055, 25268, 267054, 267056, 267057, 267058, 267059, 267060, 267061, 267062, 267063, 267064, 267065, 267066} },
{"Longbeard Rifle", {122288, 25269, 122287, 425269, 1007084, 1014046, 1020714, 1027279, 1033843, 1040406, 1046969, 1053532, 1060095, 1066658} },
{"Gnomish Assault Rifle", {120126, 25270, 120125, 425270, 1007085, 1014047, 1020715, 1027280, 1033844, 1040407, 1046970, 1053533, 1060096, 1066659} },
{"Croc-Hunter's Rifle", {100921, 25271, 100920, 425271, 1007086, 1014048, 1020716, 1027281, 1033845, 1040408, 1046971, 1053534, 1060097, 1066660} },
{"PC-54 Shotgun", {123393, 25272, 123392, 425272, 1007087, 1014049, 1020717, 1027282, 1033846, 1040409, 1046972, 1053535, 1060098, 1066661} },
{"Sawed-Off Shotgun", {123697, 25273, 123696, 425273, 1007088, 1014050, 1020718, 1027283, 1033847, 1040410, 1046973, 1053536, 1060099, 1066662} },
{"Cliffjumper Shotgun", {100804, 25274, 100803, 425274, 1007089, 1014051, 1020719, 1027284, 1033848, 1040411, 1046974, 1053537, 1060100, 1066663} },
{"Dragonbreath Musket", {102352, 25275, 102351, 425275, 1007090, 1014052, 1020720, 1027285, 1033849, 1040412, 1046975, 1053538, 1060101, 1066664} },
{"Tauren Runed Musket", {130041, 25276, 130040, 425276, 1007091, 1014053, 1020721, 1027286, 1033850, 1040413, 1046976, 1053539, 1060102, 1066665} },
{"Sporting Rifle", {128376, 25277, 128375, 425277, 1007092, 1014054, 1020722, 1027287, 1033851, 1040414, 1046977, 1053540, 1060103, 1066666} },
{"Nesingwary Longrifle", {123004, 25278, 123003, 425278, 1007093, 1014055, 1020723, 1027288, 1033852, 1040415, 1046978, 1053541, 1060104, 1066667} },
{"Sen'jin Longrifle", {123737, 25279, 123736, 425279, 1007094, 1014056, 1020724, 1027289, 1033853, 1040416, 1046979, 1053542, 1060105, 1066668} },
{"Game Hunter Musket", {116356, 25280, 116355, 425280, 1007095, 1014057, 1020725, 1027290, 1033854, 1040417, 1046980, 1053543, 1060106, 1066669} },
{"Big-Boar Battle Rifle", {100289, 25281, 100288, 425281, 1007096, 1014058, 1020726, 1027291, 1033855, 1040418, 1046981, 1053544, 1060107, 1066670} },
{"Mahogany Wand", {267068, 25282, 267067, 267069, 267070, 267071, 267072, 267073, 267074, 267075, 267076, 267077, 267078, 267079} },
{"Crystallized Ebony Wand", {100953, 25283, 100952, 425283, 1007097, 1014059, 1020727, 1027292, 1033856, 1040419, 1046982, 1053545, 1060108, 1066671} },
{"Purpleheart Wand", {123471, 25284, 123470, 425284, 1007098, 1014060, 1020728, 1027293, 1033857, 1040420, 1046983, 1053546, 1060109, 1066672} },
{"Bloodwood Wand", {267081, 25285, 267080, 267082, 267083, 267084, 267085, 267086, 267087, 267088, 267089, 267090, 267091, 267092} },
{"Yew Wand", {131003, 25286, 131002, 425286, 1007099, 1014061, 1020729, 1027294, 1033858, 1040421, 1046984, 1053547, 1060110, 1066673} },
{"Magician's Wand", {122462, 25287, 122461, 425287, 1007100, 1014062, 1020730, 1027295, 1033859, 1040422, 1046985, 1053548, 1060111, 1066674} },
{"Conjurer's Wand", {100856, 25288, 100855, 425288, 1007101, 1014063, 1020731, 1027296, 1033860, 1040423, 1046986, 1053549, 1060112, 1066675} },
{"Majestic Wand", {122585, 25289, 122571, 425289, 1007102, 1014064, 1020732, 1027297, 1033861, 1040424, 1046987, 1053550, 1060113, 1066676} },
{"Solitaire Wand", {127687, 25290, 127686, 425290, 1007103, 1014065, 1020733, 1027298, 1033862, 1040425, 1046988, 1053551, 1060114, 1066677} },
{"Nobility Torch", {123078, 25291, 123077, 425291, 1007104, 1014066, 1020734, 1027299, 1033863, 1040426, 1046989, 1053552, 1060115, 1066678} },
{"Mechano-Wand", {122779, 25292, 122778, 425292, 1007105, 1014067, 1020735, 1027300, 1033864, 1040427, 1046990, 1053553, 1060116, 1066679} },
{"Draenethyst Wand", {102345, 25293, 102344, 425293, 1007106, 1014068, 1020736, 1027301, 1033865, 1040428, 1046991, 1053554, 1060117, 1066680} },
{"Dragonscale Wand", {102377, 25294, 102376, 425294, 1007108, 1014069, 1020737, 1027302, 1033866, 1040429, 1046992, 1053555, 1060118, 1066681} },
{"Flawless Wand", {115982, 25295, 115980, 425295, 1007109, 1014070, 1020738, 1027303, 1033867, 1040430, 1046993, 1053556, 1060119, 1066682} },
{"Absorption Dagger", {267094, 25296, 267093, 267095, 267096, 267097, 267098, 267099, 267100, 267101, 267102, 267103, 267104, 267105} },
{"Tuning Knife", {130484, 25297, 130483, 425297, 1007110, 1014071, 1020739, 1027304, 1033868, 1040431, 1046994, 1053557, 1060120, 1066683} },
{"Combustion Dagger", {100849, 25298, 100848, 425298, 1007111, 1014072, 1020740, 1027305, 1033869, 1040432, 1046995, 1053558, 1060121, 1066684} },
{"Siphoning Dagger", {124042, 25299, 124041, 425299, 1007112, 1014073, 1020741, 1027306, 1033870, 1040433, 1046996, 1053559, 1060122, 1066685} },
{"Lightning Dagger", {122164, 25300, 122156, 425300, 1007113, 1014074, 1020742, 1027307, 1033871, 1040434, 1046997, 1053560, 1060123, 1066686} },
{"Shattering Dagger", {123822, 25301, 123821, 425301, 1007114, 1014075, 1020743, 1027308, 1033872, 1040435, 1046998, 1053561, 1060124, 1066687} },
{"Soul-Drain Dagger", {127756, 25302, 127711, 425302, 1007115, 1014076, 1020744, 1027309, 1033873, 1040436, 1046999, 1053562, 1060125, 1066688} },
{"Amplifying Blade", {100061, 25303, 100060, 425303, 1007116, 1014077, 1020745, 1027310, 1033874, 1040437, 1047000, 1053563, 1060126, 1066689} },
{"Destructo-Blade", {102306, 25304, 102305, 425304, 1007118, 1014078, 1020746, 1027311, 1033875, 1040438, 1047001, 1053564, 1060127, 1066690} },
{"Elemental Dagger", {103919, 25305, 103918, 425305, 1007119, 1014079, 1020747, 1027312, 1033876, 1040439, 1047002, 1053565, 1060128, 1066691} },
{"Permafrost Dagger", {123401, 25306, 123400, 425306, 1007120, 1014080, 1020748, 1027313, 1033877, 1040440, 1047003, 1053566, 1060129, 1066692} },
{"Shadow Dagger", {123774, 25307, 123773, 425307, 1007121, 1014081, 1020749, 1027314, 1033878, 1040441, 1047004, 1053567, 1060130, 1066693} },
{"Thunder Spike", {130387, 25308, 130386, 425308, 1007122, 1014082, 1020750, 1027315, 1033879, 1040442, 1047005, 1053568, 1060131, 1066694} },
{"Warpdagger", {130804, 25309, 130803, 425309, 1007124, 1014083, 1020751, 1027316, 1033880, 1040443, 1047006, 1053569, 1060132, 1066695} },
{"Naaru Lightmace", {267107, 25310, 267106, 267108, 267109, 267110, 267111, 267112, 267113, 267114, 267115, 267116, 267117, 267118} },
{"Revitalizing Hammer", {123586, 25311, 123585, 425311, 1007125, 1014084, 1020752, 1027317, 1033881, 1040444, 1047007, 1053570, 1060133, 1066696} },
{"Glorious Scepter", {118583, 25312, 118582, 425312, 1007126, 1014085, 1020753, 1027318, 1033882, 1040445, 1047008, 1053571, 1060134, 1066697} },
{"Cold-Iron Scepter", {100831, 25313, 100830, 425313, 1007127, 1014086, 1020754, 1027319, 1033883, 1040446, 1047009, 1053572, 1060135, 1066698} },
{"Ceremonial Hammer", {100719, 25314, 100718, 425314, 1007128, 1014087, 1020755, 1027320, 1033884, 1040447, 1047010, 1053573, 1060136, 1066699} },
{"Restorative Mace", {123581, 25315, 123580, 425315, 1007129, 1014088, 1020756, 1027321, 1033885, 1040448, 1047011, 1053574, 1060137, 1066700} },
{"Spirit-Clad Mace", {128239, 25316, 128238, 425316, 1007130, 1014089, 1020757, 1027322, 1033886, 1040449, 1047012, 1053575, 1060138, 1066701} },
{"Lesser Sledgemace", {120915, 25317, 120914, 425317, 1007131, 1014090, 1020758, 1027323, 1033887, 1040450, 1047013, 1053576, 1060139, 1066702} },
{"Ancestral Hammer", {100071, 25318, 100070, 425318, 1007132, 1014091, 1020759, 1027324, 1033888, 1040451, 1047014, 1053577, 1060140, 1066703} },
{"Tranquility Mace", {130452, 25319, 130451, 425319, 1007133, 1014092, 1020760, 1027325, 1033889, 1040452, 1047015, 1053578, 1060141, 1066704} },
{"Queen's Insignia", {123479, 25320, 123478, 425320, 1007135, 1014093, 1020761, 1027326, 1033890, 1040453, 1047016, 1053579, 1060142, 1066705} },
{"Divine Hammer", {102322, 25321, 102321, 425321, 1007136, 1014094, 1020762, 1027327, 1033891, 1040454, 1047017, 1053580, 1060143, 1066706} },
{"Lordly Scepter", {122300, 25322, 122299, 425322, 1007137, 1014095, 1020763, 1027328, 1033892, 1040455, 1047018, 1053581, 1060144, 1066707} },
{"Ascendant's Scepter", {100144, 25323, 100143, 425323, 1007140, 1014096, 1020764, 1027329, 1033893, 1040456, 1047019, 1053582, 1060145, 1066708} },
{"Angerstaff", {267120, 25324, 267119, 267121, 267122, 267123, 267124, 267125, 267126, 267127, 267128, 267129, 267130, 267131} },
{"Brutal Scar-Limb", {100697, 25325, 100696, 425325, 1007141, 1014097, 1020765, 1027330, 1033894, 1040457, 1047020, 1053583, 1060146, 1066709} },
{"Primal Lore-Staff", {123454, 25326, 123453, 425326, 1007142, 1014098, 1020766, 1027331, 1033895, 1040458, 1047021, 1053584, 1060147, 1066710} },
{"Frenzied Staff", {116156, 25327, 116151, 425327, 1007143, 1014099, 1020767, 1027332, 1033896, 1040459, 1047022, 1053585, 1060148, 1066711} },
{"Faerie-Kind Staff", {113535, 25328, 113534, 425328, 1007144, 1014100, 1020768, 1027333, 1033897, 1040460, 1047023, 1053586, 1060149, 1066712} },
{"Tranquility Staff", {130454, 25329, 130453, 425329, 1007145, 1014101, 1020769, 1027334, 1033898, 1040461, 1047024, 1053587, 1060150, 1066713} },
{"Starshine Staff", {128624, 25330, 128616, 425330, 1007147, 1014102, 1020770, 1027335, 1033899, 1040462, 1047025, 1053588, 1060151, 1066714} },
{"Vengeance Staff", {130610, 25331, 130609, 425331, 1007148, 1014103, 1020771, 1027336, 1033900, 1040463, 1047026, 1053589, 1060152, 1066715} },
{"Reflective Staff", {123550, 25332, 123549, 425332, 1007149, 1014104, 1020772, 1027337, 1033901, 1040464, 1047027, 1053590, 1060153, 1066716} },
{"Purification Staff", {123469, 25333, 123468, 425333, 1007151, 1014105, 1020773, 1027338, 1033902, 1040465, 1047028, 1053591, 1060154, 1066717} },
{"Intimidating Greatstaff", {120671, 25334, 120670, 425334, 1007152, 1014106, 1020774, 1027339, 1033903, 1040466, 1047029, 1053592, 1060155, 1066718} },
{"Feral Warp-Staff", {114630, 25335, 114626, 425335, 1007153, 1014107, 1020775, 1027340, 1033904, 1040467, 1047030, 1053593, 1060156, 1066719} },
{"Splintering Greatstaff", {128341, 25336, 128339, 425336, 1007154, 1014108, 1020776, 1027341, 1033905, 1040468, 1047031, 1053594, 1060157, 1066720} },
{"Swarming Sting-Staff", {129241, 25337, 129240, 425337, 1007155, 1014109, 1020777, 1027342, 1033906, 1040469, 1047032, 1053595, 1060158, 1066721} },
{"Defender's Gauntlets", {267172, 25478, 267171, 267173, 267174, 267175, 267176, 267177, 267178, 267179, 267180, 267181, 267182, 267183} },
{"Boots of the Earthcaller", {267185, 25479, 267184, 267186, 267187, 267188, 267189, 267190, 267191, 267192, 267193, 267194, 267195, 267196} },
{"Wastewalker's Sash", {267198, 25480, 267197, 267199, 267200, 267201, 267202, 267203, 267204, 267205, 267206, 267207, 267208, 267209} },
{"Sunstrider's Gauntlets", {267211, 25481, 267210, 267212, 267213, 267214, 267215, 267216, 267217, 267218, 267219, 267220, 267221, 267222} },
{"Venn'ren's Boots", {267224, 25482, 267223, 267225, 267226, 267227, 267228, 267229, 267230, 267231, 267232, 267233, 267234, 267235} },
{"Fine Sash", {267237, 25483, 267236, 267238, 267239, 267240, 267241, 267242, 267243, 267244, 267245, 267246, 267247, 267248} },
{"Telhamat Pendant", {267250, 25484, 267249, 267251, 267252, 267253, 267254, 267255, 267256, 267257, 267258, 267259, 267260, 267261} },
{"Amaan's Signet", {267263, 25485, 267262, 267264, 267265, 267266, 267267, 267268, 267269, 267270, 267271, 267272, 267273, 267274} },
{"Demonslayer's Wristguards", {267276, 25486, 267275, 267277, 267278, 267279, 267280, 267281, 267282, 267283, 267284, 267285, 267286, 267287} },
{"Wind Dancer's Pendant", {267289, 25487, 267288, 267290, 267291, 267292, 267293, 267294, 267295, 267296, 267297, 267298, 267299, 267300} },
{"Signet of Aeranas", {267302, 25488, 267301, 267303, 267304, 267305, 267306, 267307, 267308, 267309, 267310, 267311, 267312, 267313} },
{"Windtalker's Cloak", {267315, 25489, 267314, 267316, 267317, 267318, 267319, 267320, 267321, 267322, 267323, 267324, 267325, 267326} },
{"Earthcaller's Mace", {267328, 25492, 267327, 267329, 267330, 267331, 267332, 267333, 267334, 267335, 267336, 267337, 267338, 267339} },
{"Totemic Staff", {267341, 25494, 267340, 267342, 267343, 267344, 267345, 267346, 267347, 267348, 267349, 267350, 267351, 267352} },
{"Wolfrider's Dagger", {267354, 25495, 267353, 267355, 267356, 267357, 267358, 267359, 267360, 267361, 267362, 267363, 267364, 267365} },
{"Mag'har Bow", {267367, 25496, 267366, 267368, 267369, 267370, 267371, 267372, 267373, 267374, 267375, 267376, 267377, 267378} },
{"Felblood Band", {267380, 25499, 267379, 267381, 267382, 267383, 267384, 267385, 267386, 267387, 267388, 267389, 267390, 267391} },
{"Felforce Medallion", {267393, 25500, 267392, 267394, 267395, 267396, 267397, 267398, 267399, 267400, 267401, 267402, 267403, 267404} },
{"Lost Anchorite's Cloak", {267406, 25501, 267405, 267407, 267408, 267409, 267410, 267411, 267412, 267413, 267414, 267415, 267416, 267417} },
{"Lightbearer's Gauntlets", {267419, 25502, 267418, 267420, 267421, 267422, 267423, 267424, 267425, 267426, 267427, 267428, 267429, 267430} },
{"Flamehandler's Gloves", {267432, 25503, 267431, 267433, 267434, 267435, 267436, 267437, 267438, 267439, 267440, 267441, 267442, 267443} },
{"Pilgrim's Belt", {267445, 25504, 267444, 267446, 267447, 267448, 267449, 267450, 267451, 267452, 267453, 267454, 267455, 267456} },
{"Carinda's Wedding Band", {267458, 25505, 267457, 267459, 267460, 267461, 267462, 267463, 267464, 267465, 267466, 267467, 267468, 267469} },
{"Vindicator's Chain Helm", {267471, 25506, 267470, 267472, 267473, 267474, 267475, 267476, 267477, 267478, 267479, 267480, 267481, 267482} },
{"Leggings of Telhamat", {267484, 25507, 267483, 267485, 267486, 267487, 267488, 267489, 267490, 267491, 267492, 267493, 267494, 267495} },
{"Omenai Vest", {267497, 25508, 267496, 267498, 267499, 267500, 267501, 267502, 267503, 267504, 267505, 267506, 267507, 267508} },
{"Ceremonial Robes", {267510, 25510, 267509, 267511, 267512, 267513, 267514, 267515, 267516, 267517, 267518, 267519, 267520, 267521} },
{"Thunderforge Leggings", {267523, 25511, 267522, 267524, 267525, 267526, 267527, 267528, 267529, 267530, 267531, 267532, 267533, 267534} },
{"Tribal Hauberk", {267536, 25512, 267535, 267537, 267538, 267539, 267540, 267541, 267542, 267543, 267544, 267545, 267546, 267547} },
{"Clefthoof Hide Mask", {267549, 25513, 267548, 267550, 267551, 267552, 267553, 267554, 267555, 267556, 267557, 267558, 267559, 267560} },
{"Ikeyen's Pauldrons", {267562, 25514, 267561, 267563, 267564, 267565, 267566, 267567, 267568, 267569, 267570, 267571, 267572, 267573} },
{"Mud Encrusted Boots", {267575, 25515, 267574, 267576, 267577, 267578, 267579, 267580, 267581, 267582, 267583, 267584, 267585, 267586} },
{"Ikeyen's Boots", {267588, 25516, 267587, 267589, 267590, 267591, 267592, 267593, 267594, 267595, 267596, 267597, 267598, 267599} },
{"Preserver's Medallion", {267601, 25517, 267600, 267602, 267603, 267604, 267605, 267606, 267607, 267608, 267609, 267610, 267611, 267612} },
{"Explorer's Leggings", {267614, 25518, 267613, 267615, 267616, 267617, 267618, 267619, 267620, 267621, 267622, 267623, 267624, 267625} },
{"Warden's Hammer", {267627, 25519, 267626, 267628, 267629, 267630, 267631, 267632, 267633, 267634, 267635, 267636, 267637, 267638} },
{"Marshstrider's Spaulders", {267640, 25522, 267639, 267641, 267642, 267643, 267644, 267645, 267646, 267647, 267648, 267649, 267650, 267651} },
{"Windcaller's Gauntlets", {267653, 25523, 267652, 267654, 267655, 267656, 267657, 267658, 267659, 267660, 267661, 267662, 267663, 267664} },
{"Cenarion Expedition Boots", {267666, 25524, 267665, 267667, 267668, 267669, 267670, 267671, 267672, 267673, 267674, 267675, 267676, 267677} },
{"Zangar Epaulets", {267679, 25525, 267678, 267680, 267681, 267682, 267683, 267684, 267685, 267686, 267687, 267688, 267689, 267690} },
{"Helm of Natural Purity", {267692, 25530, 267691, 267693, 267694, 267695, 267696, 267697, 267698, 267699, 267700, 267701, 267702, 267703} },
{"Marsh Survivalist's Belt", {267705, 25534, 267704, 267706, 267707, 267708, 267709, 267710, 267711, 267712, 267713, 267714, 267715, 267716} },
{"Sporeggar Smasher", {6025536, 25536, 267717, 267718, 267719, 267720, 267721, 267722, 267723, 267724, 267725, 267726, 267727, 267728} },
{"Hewing Axe of the Marsh", {6025537, 25537, 267729, 267730, 267731, 267732, 267733, 267734, 267735, 267736, 267737, 267738, 267739, 267740} },
{"Sporeling Claw", {6025538, 25538, 267741, 267742, 267743, 267744, 267745, 267746, 267747, 267748, 267749, 267750, 267751, 267752} },
{"Dark Cloak of the Marsh", {6025540, 25540, 267753, 267754, 267755, 267756, 267757, 267758, 267759, 267760, 267761, 267762, 267763, 267764} },
{"Cenarion Ring of Casting", {6025541, 25541, 267765, 267766, 267767, 267768, 267769, 267770, 267771, 267772, 267773, 267774, 267775, 267776} },
{"Lucky Circle of the Fool", {267778, 25542, 267777, 267779, 267780, 267781, 267782, 267783, 267784, 267785, 267786, 267787, 267788, 267789} },
{"Talbuk Sticker", {267791, 25543, 267790, 267792, 267793, 267794, 267795, 267796, 267797, 267798, 267799, 267800, 267801, 267802} },
{"Zerid's Vintage Musket", {267804, 25544, 267803, 267805, 267806, 267807, 267808, 267809, 267810, 267811, 267812, 267813, 267814, 267815} },
{"Talbuk Dirk", {267817, 25545, 267816, 267818, 267819, 267820, 267821, 267822, 267823, 267824, 267825, 267826, 267827, 267828} },
{"Oversized Ogre Hauberk", {267830, 25556, 267829, 267831, 267832, 267833, 267834, 267835, 267836, 267837, 267838, 267839, 267840, 267841} },
{"Salvaged Ango'rosh Pauldrons", {267843, 25557, 267842, 267844, 267845, 267846, 267847, 267848, 267849, 267850, 267851, 267852, 267853, 267854} },
{"Ango'rosh Souleater's Cowl", {267856, 25558, 267855, 267857, 267858, 267859, 267860, 267861, 267862, 267863, 267864, 267865, 267866, 267867} },
{"Lo'ap's Tunic of Muck Diving", {267869, 25559, 267868, 267870, 267871, 267872, 267873, 267874, 267875, 267876, 267877, 267878, 267879, 267880} },
{"Lo'ap's Muck Diving Pads", {267882, 25560, 267881, 267883, 267884, 267885, 267886, 267887, 267888, 267889, 267890, 267891, 267892, 267893} },
{"Muck-ridden Galoshes", {267895, 25561, 267894, 267896, 267897, 267898, 267899, 267900, 267901, 267902, 267903, 267904, 267905, 267906} },
{"Earthen Mark of Razing", {6025562, 25562, 267907, 267908, 267909, 267910, 267911, 267912, 267913, 267914, 267915, 267916, 267917, 267918} },
{"Earthen Mark of Power", {6025563, 25563, 267919, 267920, 267921, 267922, 267923, 267924, 267925, 267926, 267927, 267928, 267929, 267930} },
{"Earthen Mark of Health", {6025564, 25564, 267931, 267932, 267933, 267934, 267935, 267936, 267937, 267938, 267939, 267940, 267941, 267942} },
{"Spaulders of the Ring", {267944, 25565, 267943, 267945, 267946, 267947, 267948, 267949, 267950, 267951, 267952, 267953, 267954, 267955} },
{"Judicator's Gauntlets", {267957, 25566, 267956, 267958, 267959, 267960, 267961, 267962, 267963, 267964, 267965, 267966, 267967, 267968} },
{"Cord of the Ring", {267970, 25567, 267969, 267971, 267972, 267973, 267974, 267975, 267976, 267977, 267978, 267979, 267980, 267981} },
{"Warcaster's Scaled Leggings", {267983, 25568, 267982, 267984, 267985, 267986, 267987, 267988, 267989, 267990, 267991, 267992, 267993, 267994} },
{"Murkblood Avenger's Chestplate", {267996, 25569, 267995, 267997, 267998, 267999, 268000, 268001, 268002, 268003, 268004, 268005, 268006, 268007} },
{"Melia's Lustrous Crown", {268009, 25570, 268008, 268010, 268011, 268012, 268013, 268014, 268015, 268016, 268017, 268018, 268019, 268020} },
{"QR 9863 Warrior Chest", {268022, 25573, 268021, 268023, 268024, 268025, 268026, 268027, 268028, 268029, 268030, 268031, 268032, 268033} },
{"Greenkeeper's Pantaloons", {268035, 25574, 268034, 268036, 268037, 268038, 268039, 268040, 268041, 268042, 268043, 268044, 268045, 268046} },
{"Thunderbringer's Guard", {268048, 25575, 268047, 268049, 268050, 268051, 268052, 268053, 268054, 268055, 268056, 268057, 268058, 268059} },
{"Smuggler's Mitts", {268061, 25576, 268060, 268062, 268063, 268064, 268065, 268066, 268067, 268068, 268069, 268070, 268071, 268072} },
{"Greenblood Pantaloons", {268074, 25577, 268073, 268075, 268076, 268077, 268078, 268079, 268080, 268081, 268082, 268083, 268084, 268085} },
{"Caustic Feelers", {268087, 25578, 268086, 268088, 268089, 268090, 268091, 268092, 268093, 268094, 268095, 268096, 268097, 268098} },
{"Dark Shaman's Cover", {268100, 25579, 268099, 268101, 268102, 268103, 268104, 268105, 268106, 268107, 268108, 268109, 268110, 268111} },
{"QR 9867 Warrior Legs", {268113, 25580, 268112, 268114, 268115, 268116, 268117, 268118, 268119, 268120, 268121, 268122, 268123, 268124} },
{"QR 9867 Hunter Gloves", {268126, 25581, 268125, 268127, 268128, 268129, 268130, 268131, 268132, 268133, 268134, 268135, 268136, 268137} },
{"QR 9867 Druid Moonkin Belt", {268139, 25582, 268138, 268140, 268141, 268142, 268143, 268144, 268145, 268146, 268147, 268148, 268149, 268150} },
{"Eighty Silver Links", {268152, 25583, 268151, 268153, 268154, 268155, 268156, 268157, 268158, 268159, 268160, 268161, 268162, 268163} },
{"Murkblood Oven Mitts", {268165, 25584, 268164, 268166, 268167, 268168, 268169, 268170, 268171, 268172, 268173, 268174, 268175, 268176} },
{"Murkblood Avenger's Legplates", {268178, 25585, 268177, 268179, 268180, 268181, 268182, 268183, 268184, 268185, 268186, 268187, 268188, 268189} },
{"Clefthoof Helm", {268191, 25589, 268190, 268192, 268193, 268194, 268195, 268196, 268197, 268198, 268199, 268200, 268201, 268202} },
{"Clefthoof Gloves", {268204, 25591, 268203, 424768, 268205, 268206, 268207, 268208, 268209, 268210, 268211, 268212, 268213, 268214} },
{"Clefthoof Wristguards", {268216, 25592, 268215, 268217, 268218, 268219, 268220, 268221, 268222, 268223, 268224, 268225, 268226, 268227} },
{"Windroc Greaves", {268229, 25593, 268228, 268230, 268231, 268232, 268233, 268234, 268235, 268236, 268237, 268238, 268239, 268240} },
{"Windroc Boots", {268242, 25594, 268241, 268243, 268244, 268245, 268246, 268247, 268248, 268249, 268250, 268251, 268252, 268253} },
{"Windroc Shroud", {268255, 25595, 268254, 268256, 268257, 268258, 268259, 268260, 268261, 268262, 268263, 268264, 268265, 268266} },
{"Vindicator's Cinch", {268268, 25597, 268267, 268269, 268270, 268271, 268272, 268273, 268274, 268275, 268276, 268277, 268278, 268279} },
{"Fen Strider's Bracer", {268281, 25598, 268280, 268282, 268283, 268284, 268285, 268286, 268287, 268288, 268289, 268290, 268291, 268292} },
{"Explorer's Bands", {268294, 25599, 268293, 268295, 268296, 268297, 268298, 268299, 268300, 268301, 268302, 268303, 268304, 268305} },
{"Bog Walker's Bands", {268307, 25600, 268306, 268308, 268309, 268310, 268311, 268312, 268313, 268314, 268315, 268316, 268317, 268318} },
{"Murk-Darkened Bracers", {268320, 25601, 268319, 268321, 268322, 268323, 268324, 268325, 268326, 268327, 268328, 268329, 268330, 268331} },
{"Bog Walker's Belt", {268333, 25602, 268332, 268334, 268335, 268336, 268337, 268338, 268339, 268340, 268341, 268342, 268343, 268344} },
{"Lantresor's Warblade", {6025603, 25603, 268345, 268346, 268347, 268348, 268349, 268350, 268351, 268352, 268353, 268354, 268355, 268356} },
{"Burning Blade Devotee's Cinch", {6025605, 25605, 268357, 268358, 268359, 268360, 268361, 268362, 268363, 268364, 268365, 268366, 268367, 268368} },
{"Burning Blade Cultist Band", {6025606, 25606, 268369, 268370, 268371, 268372, 268373, 268374, 268375, 268376, 268377, 268378, 268379, 268380} },
{"Burning Blade Cultist Band", {6025607, 25607, 268381, 268382, 268383, 268384, 268385, 268386, 268387, 268388, 268389, 268390, 268391, 268392} },
{"Lantresor's Warblade", {6025608, 25608, 268393, 268394, 268395, 268396, 268397, 268398, 268399, 268400, 268401, 268402, 268403, 268404} },
{"Burning Blade Devotee's Cinch", {6025609, 25609, 268405, 268406, 268407, 268408, 268409, 268410, 268411, 268412, 268413, 268414, 268415, 268416} },
{"Fen Strider's Footguards", {268418, 25610, 268417, 268419, 268420, 268421, 268422, 268423, 268424, 268425, 268426, 268427, 268428, 268429} },
{"The Witch Doctor's Wraps", {268431, 25611, 268430, 268432, 268433, 268434, 268435, 268436, 268437, 268438, 268439, 268440, 268441, 268442} },
{"Daggerfen Mail", {268444, 25612, 268443, 268445, 268446, 268447, 268448, 268449, 268450, 268451, 268452, 268453, 268454, 268455} },
{"Feralfen Mystic's Handwraps", {268457, 25613, 268456, 268458, 268459, 268460, 268461, 268462, 268463, 268464, 268465, 268466, 268467, 268468} },
{"Feralfen Beastmaster's Hauberk", {268470, 25614, 268469, 268471, 268472, 268473, 268474, 268475, 268476, 268477, 268478, 268479, 268480, 268481} },
{"Feralfen Champion's Boots", {268483, 25615, 268482, 268484, 268485, 268486, 268487, 268488, 268489, 268490, 268491, 268492, 268493, 268494} },
{"Tim's Trusty Helmet", {268496, 25616, 268495, 268497, 268498, 268499, 268500, 268501, 268502, 268503, 268504, 268505, 268506, 268507} },
{"Captain Krosh's Crash Helmet", {268509, 25617, 268508, 268510, 268511, 268512, 268513, 268514, 268515, 268516, 268517, 268518, 268519, 268520} },
{"Telaar Courier's Cloak", {268522, 25618, 268521, 268523, 268524, 268525, 268526, 268527, 268528, 268529, 268530, 268531, 268532, 268533} },
{"Glowing Crystal Insignia", {268535, 25619, 268534, 268536, 268537, 268538, 268539, 268540, 268541, 268542, 268543, 268544, 268545, 268546} },
{"Ancient Crystal Talisman", {268548, 25620, 268547, 268549, 268550, 268551, 268552, 268553, 268554, 268555, 268556, 268557, 268558, 268559} },
{"Serpent Spirit's Drape", {268561, 25621, 268560, 268562, 268563, 268564, 268565, 268566, 268567, 268568, 268569, 268570, 268571, 268572} },
{"Staff of the Four Golden Coins", {268574, 25622, 268573, 268575, 268576, 268577, 268578, 268579, 268580, 268581, 268582, 268583, 268584, 268585} },
{"Bracers of the Battle Cleric", {268587, 25623, 268586, 268588, 268589, 268590, 268591, 268592, 268593, 268594, 268595, 268596, 268597, 268598} },
{"King's Bulwark", {268600, 25624, 268599, 268601, 268602, 268603, 268604, 268605, 268606, 268607, 268608, 268609, 268610, 268611} },
{"QR 9922 Shield", {268613, 25627, 268612, 268614, 268615, 268616, 268617, 268618, 268619, 268620, 268621, 268622, 268623, 268624} },
{"Ogre Mauler's Badge", {268626, 25628, 268625, 268627, 268628, 268629, 268630, 268631, 268632, 268633, 268634, 268635, 268636, 268637} },
{"Ogre Handler's Shooter", {268639, 25629, 268638, 268640, 268641, 268642, 268643, 268644, 268645, 268646, 268647, 268648, 268649, 268650} },
{"Ogre Basher's Slippers", {268652, 25630, 268651, 268653, 268654, 268655, 268656, 268657, 268658, 268659, 268660, 268661, 268662, 268663} },
{"Boots of the Specialist", {268665, 25631, 268664, 268666, 268667, 268668, 268669, 268670, 268671, 268672, 268673, 268674, 268675, 268676} },
{"Wand of Happiness", {268678, 25632, 268677, 268679, 268680, 268681, 268682, 268683, 268684, 268685, 268686, 268687, 268688, 268689} },
{"Uniting Charm", {268691, 25633, 268690, 268692, 268693, 268694, 268695, 268696, 268697, 268698, 268699, 268700, 268701, 268702} },
{"Oshu'gun Relic", {268704, 25634, 268703, 268705, 268706, 268707, 268708, 268709, 268710, 268711, 268712, 268713, 268714, 268715} },
{"Talbuk Cape", {268717, 25636, 268716, 268718, 268719, 268720, 268721, 268722, 268723, 268724, 268725, 268726, 268727, 268728} },
{"Ethereal Sash", {268730, 25637, 268729, 268731, 268732, 268733, 268734, 268735, 268736, 268737, 268738, 268739, 268740, 268741} },
{"Hemet's Elekk Gun", {6025639, 25639, 268742, 268743, 268744, 268745, 268746, 268747, 268748, 268749, 268750, 268751, 268752, 268753} },
{"Nesingwary Safari Stick", {6025640, 25640, 268754, 268755, 268756, 268757, 268758, 268759, 268760, 268761, 268762, 268763, 268764, 268765} },
{"Harold's Rejuvenating Broach", {6025643, 25643, 268766, 268767, 268768, 268769, 268770, 268771, 268772, 268773, 268774, 268775, 268776, 268777} },
{"Blessed Book of Nagrand", {6025644, 25644, 268778, 268779, 268780, 268781, 268782, 268783, 268784, 268785, 268786, 268787, 268788, 268789} },
{"Totem of the Plains", {6025645, 25645, 268790, 268791, 268792, 268793, 268794, 268795, 268796, 268797, 268798, 268799, 268800, 268801} },
{"Riding Crop", {6025653, 25653, 268802, 268803, 268804, 268805, 268806, 268807, 268808, 268809, 268810, 268811, 268812, 268813} },
{"Felscale Gloves", {268815, 25654, 268814, 268816, 268817, 268818, 268819, 268820, 268821, 268822, 268823, 268824, 268825, 268826} },
{"Felscale Boots", {268828, 25655, 268827, 268829, 268830, 268831, 268832, 268833, 268834, 268835, 268836, 268837, 268838, 268839} },
{"Felscale Pants", {268841, 25656, 268840, 268842, 268843, 268844, 268845, 268846, 268847, 268848, 268849, 268850, 268851, 268852} },
{"Felscale Breastplate", {268854, 25657, 268853, 268855, 268856, 268857, 268858, 268859, 268860, 268861, 268862, 268863, 268864, 268865} },
{"Scaled Draenic Boots", {268867, 25659, 268866, 268868, 268869, 268870, 268871, 268872, 268873, 268874, 268875, 268876, 268877, 268878} },
{"Scaled Draenic Vest", {268880, 25660, 268879, 268881, 268882, 268883, 268884, 268885, 268886, 268887, 268888, 268889, 268890, 268891} },
{"Scaled Draenic Gloves", {268893, 25661, 268892, 268894, 268895, 268896, 268897, 268898, 268899, 268900, 268901, 268902, 268903, 268904} },
{"Scaled Draenic Pants", {268906, 25662, 268905, 268907, 268908, 268909, 268910, 268911, 268912, 268913, 268914, 268915, 268916, 268917} },
{"ObsoleteIdol of the Beast", {6025667, 25667, 268918, 268919, 268920, 268921, 268922, 268923, 268924, 268925, 268926, 268927, 268928, 268929} },
{"Thick Draenic Boots", {268931, 25668, 268930, 268932, 268933, 268934, 268935, 268936, 268937, 268938, 268939, 268940, 268941, 268942} },
{"Thick Draenic Gloves", {268944, 25669, 268943, 268945, 268946, 268947, 268948, 268949, 268950, 268951, 268952, 268953, 268954, 268955} },
{"Thick Draenic Pants", {268957, 25670, 268956, 268958, 268959, 268960, 268961, 268962, 268963, 268964, 268965, 268966, 268967, 268968} },
{"Thick Draenic Vest", {268970, 25671, 268969, 268971, 268972, 268973, 268974, 268975, 268976, 268977, 268978, 268979, 268980, 268981} },
{"Wild Draenish Boots", {268983, 25673, 268982, 268984, 268985, 268986, 268987, 268988, 268989, 268990, 268991, 268992, 268993, 268994} },
{"Wild Draenish Gloves", {268996, 25674, 268995, 268997, 268998, 268999, 269000, 269001, 269002, 269003, 269004, 269005, 269006, 269007} },
{"Wild Draenish Leggings", {269009, 25675, 269008, 269010, 269011, 269012, 269013, 269014, 269015, 269016, 269017, 269018, 269019, 269020} },
{"Wild Draenish Vest", {269022, 25676, 269021, 269023, 269024, 269025, 269026, 269027, 269028, 269029, 269030, 269031, 269032, 269033} },
{"Stylin' Purple Hat", {6025680, 25680, 269034, 269035, 269036, 269037, 269038, 269039, 269040, 269041, 269042, 269043, 269044, 269045} },
{"Stylin' Adventure Hat", {6025681, 25681, 269046, 269047, 269048, 269049, 269050, 269051, 269052, 269053, 269054, 269055, 269056, 269057} },
{"Stylin' Jungle Hat", {6025682, 25682, 269058, 269059, 269060, 269061, 269062, 269063, 269064, 269065, 269066, 269067, 269068, 269069} },
{"Stylin' Crimson Hat", {6025683, 25683, 269070, 269071, 269072, 269073, 269074, 269075, 269076, 269077, 269078, 269079, 269080, 269081} },
{"Fel Leather Gloves", {6025685, 25685, 269082, 269083, 269084, 269085, 269086, 269087, 269088, 269089, 269090, 269091, 269092, 269093} },
{"Fel Leather Boots", {6025686, 25686, 269094, 269095, 269096, 269097, 269098, 269099, 269100, 269101, 269102, 269103, 269104, 269105} },
{"Fel Leather Leggings", {6025687, 25687, 269106, 269107, 269108, 269109, 269110, 269111, 269112, 269113, 269114, 269115, 269116, 269117} },
{"Heavy Clefthoof Vest", {6025689, 25689, 269118, 269119, 269120, 269121, 269122, 269123, 269124, 269125, 269126, 269127, 269128, 269129} },
{"Heavy Clefthoof Leggings", {6025690, 25690, 269130, 269131, 269132, 269133, 269134, 269135, 269136, 269137, 269138, 269139, 269140, 269141} },
{"Heavy Clefthoof Boots", {6025691, 25691, 269142, 269143, 269144, 269145, 269146, 269147, 269148, 269149, 269150, 269151, 269152, 269153} },
{"Netherfury Leggings", {6025692, 25692, 269154, 269155, 269156, 269157, 269158, 269159, 269160, 269161, 269162, 269163, 269164, 269165} },
{"Netherfury Boots", {6025693, 25693, 269166, 269167, 269168, 269169, 269170, 269171, 269172, 269173, 269174, 269175, 269176, 269177} },
{"Netherfury Belt", {6025694, 25694, 269178, 269179, 269180, 269181, 269182, 269183, 269184, 269185, 269186, 269187, 269188, 269189} },
{"Felstalker Belt", {6025695, 25695, 269190, 269191, 269192, 269193, 269194, 269195, 269196, 269197, 269198, 269199, 269200, 269201} },
{"Felstalker Breastplate", {6025696, 25696, 269202, 269203, 269204, 269205, 269206, 269207, 269208, 269209, 269210, 269211, 269212, 269213} },
{"Felstalker Bracers", {6025697, 25697, 269214, 269215, 269216, 269217, 269218, 269219, 269220, 269221, 269222, 269223, 269224, 269225} },
{"Breastplate of Retribution", {6025701, 25701, 269226, 269227, 269228, 269229, 269230, 269231, 269232, 269233, 269234, 269235, 269236, 269237} },
{"Scaled Legs of Ruination", {6025702, 25702, 269238, 269239, 269240, 269241, 269242, 269243, 269244, 269245, 269246, 269247, 269248, 269249} },
{"Moonkin Headdress", {6025710, 25710, 269250, 269251, 269252, 269253, 269254, 269255, 269256, 269257, 269258, 269259, 269260, 269261} },
{"Deadly Borer Leggings", {6025711, 25711, 269262, 269263, 269264, 269265, 269266, 269267, 269268, 269269, 269270, 269271, 269272, 269273} },
{"Perfectly Balanced Cape", {6025712, 25712, 269274, 269275, 269276, 269277, 269278, 269279, 269280, 269281, 269282, 269283, 269284, 269285} },
{"Holy Healing Band", {6025713, 25713, 269286, 269287, 269288, 269289, 269290, 269291, 269292, 269293, 269294, 269295, 269296, 269297} },
{"Crimson Pendant of Clarity", {6025714, 25714, 269298, 269299, 269300, 269301, 269302, 269303, 269304, 269305, 269306, 269307, 269308, 269309} },
{"Jade Warrior Pauldrons", {6025715, 25715, 269310, 269311, 269312, 269313, 269314, 269315, 269316, 269317, 269318, 269319, 269320, 269321} },
{"Handguards of Precision", {6025716, 25716, 269322, 269323, 269324, 269325, 269326, 269327, 269328, 269329, 269330, 269331, 269332, 269333} },
{"Sure-Step Boots", {6025717, 25717, 269334, 269335, 269336, 269337, 269338, 269339, 269340, 269341, 269342, 269343, 269344, 269345} },
{"Mantle of Magical Might", {6025718, 25718, 269346, 269347, 269348, 269349, 269350, 269351, 269352, 269353, 269354, 269355, 269356, 269357} },
{"Mogor's Anointing Club", {6025759, 25759, 269358, 269359, 269360, 269361, 269362, 269363, 269364, 269365, 269366, 269367, 269368, 269369} },
{"Battle Mage's Baton", {6025760, 25760, 269370, 269371, 269372, 269373, 269374, 269375, 269376, 269377, 269378, 269379, 269380, 269381} },
{"Staff of Beasts", {6025761, 25761, 269382, 269383, 269384, 269385, 269386, 269387, 269388, 269389, 269390, 269391, 269392, 269393} },
{"Honed Voidaxe", {6025762, 25762, 269394, 269395, 269396, 269397, 269398, 269399, 269400, 269401, 269402, 269403, 269404, 269405} },
{"Ceremonial Warmaul Blood-blade", {6025763, 25763, 269406, 269407, 269408, 269409, 269410, 269411, 269412, 269413, 269414, 269415, 269416, 269417} },
{"Mag'hari Fury Brand", {6025764, 25764, 269418, 269419, 269420, 269421, 269422, 269423, 269424, 269425, 269426, 269427, 269428, 269429} },
{"Crystalline Kopesh", {6025772, 25772, 269430, 269431, 269432, 269433, 269434, 269435, 269436, 269437, 269438, 269439, 269440, 269441} },
{"Hungering Bone Cudgel", {6025773, 25773, 269442, 269443, 269444, 269445, 269446, 269447, 269448, 269449, 269450, 269451, 269452, 269453} },
{"Azure Lightblade", {6025774, 25774, 269454, 269455, 269456, 269457, 269458, 269459, 269460, 269461, 269462, 269463, 269464, 269465} },
{"Ogre Slayer's Band", {6025775, 25775, 269466, 269467, 269468, 269469, 269470, 269471, 269472, 269473, 269474, 269475, 269476, 269477} },
{"Ogre Slayer's Pendant", {6025776, 25776, 269478, 269479, 269480, 269481, 269482, 269483, 269484, 269485, 269486, 269487, 269488, 269489} },
{"Ogre Slayer's Cover", {6025777, 25777, 269490, 269491, 269492, 269493, 269494, 269495, 269496, 269497, 269498, 269499, 269500, 269501} },
{"Manacles of Remembrance", {269503, 25778, 269502, 269504, 269505, 269506, 269507, 269508, 269509, 269510, 269511, 269512, 269513, 269514} },
{"Bane of the Red Flight", {269516, 25779, 269515, 269517, 269518, 269519, 269520, 269521, 269522, 269523, 269524, 269525, 269526, 269527} },
{"Warmaul Defender's Cloak", {269529, 25780, 269528, 269530, 269531, 269532, 269533, 269534, 269535, 269536, 269537, 269538, 269539, 269540} },
{"Segmented Breastplate", {269542, 25781, 269541, 269543, 269544, 269545, 269546, 269547, 269548, 269549, 269550, 269551, 269552, 269553} },
{"Sunstrider Legguards", {269555, 25782, 269554, 269556, 269557, 269558, 269559, 269560, 269561, 269562, 269563, 269564, 269565, 269566} },
{"Pilgrim's Cover", {269568, 25783, 269567, 269569, 269570, 269571, 269572, 269573, 269574, 269575, 269576, 269577, 269578, 269579} },
{"Imbued Chain", {269581, 25784, 269580, 269582, 269583, 269584, 269585, 269586, 269587, 269588, 269589, 269590, 269591, 269592} },
{"Adept's Band", {269594, 25785, 269593, 269595, 269596, 269597, 269598, 269599, 269600, 269601, 269602, 269603, 269604, 269605} },
{"Hypnotist's Watch", {269607, 25786, 269606, 269608, 269609, 269610, 269611, 269612, 269613, 269614, 269615, 269616, 269617, 269618} },
{"Charm of Alacrity", {269620, 25787, 269619, 269621, 269622, 269623, 269624, 269625, 269626, 269627, 269628, 269629, 269630, 269631} },
{"Dauntless Handguards", {6025788, 25788, 269632, 269633, 269634, 269635, 269636, 269637, 269638, 269639, 269640, 269641, 269642, 269643} },
{"Rune-Engraved Belt", {6025789, 25789, 269644, 269645, 269646, 269647, 269648, 269649, 269650, 269651, 269652, 269653, 269654, 269655} },
{"Expedition Scout's Epaulets", {6025790, 25790, 269656, 269657, 269658, 269659, 269660, 269661, 269662, 269663, 269664, 269665, 269666, 269667} },
{"Gloves of Preservation", {6025791, 25791, 269668, 269669, 269670, 269671, 269672, 269673, 269674, 269675, 269676, 269677, 269678, 269679} },
{"Curate's Boots", {6025792, 25792, 269680, 269681, 269682, 269683, 269684, 269685, 269686, 269687, 269688, 269689, 269690, 269691} },
{"Medallion of the Valiant Guardian", {6025803, 25803, 269757, 269758, 269759, 269760, 269761, 269762, 269763, 269764, 269765, 269766, 269767, 269768} },
{"Naliko's Revenge", {6025804, 25804, 269769, 269770, 269771, 269772, 269773, 269774, 269775, 269776, 269777, 269778, 269779, 269780} },
{"Mantle of Vivification", {6025805, 25805, 269781, 269782, 269783, 269784, 269785, 269786, 269787, 269788, 269789, 269790, 269791, 269792} },
{"Nethekurse's Rod of Torment", {6025806, 25806, 269793, 269794, 269795, 269796, 269797, 269798, 269799, 269800, 269801, 269802, 269803, 269804} },
{"Rod of Dire Shadows", {6025808, 25808, 269805, 269806, 269807, 269808, 269809, 269810, 269811, 269812, 269813, 269814, 269815, 269816} },
{"Maimfist's Choker", {6025809, 25809, 269817, 269818, 269819, 269820, 269821, 269822, 269823, 269824, 269825, 269826, 269827, 269828} },
{"Vicar's Cloak", {6025810, 25810, 269829, 269830, 269831, 269832, 269833, 269834, 269835, 269836, 269837, 269838, 269839, 269840} },
{"Conqueror's Band", {6025811, 25811, 269841, 269842, 269843, 269844, 269845, 269846, 269847, 269848, 269849, 269850, 269851, 269852} },
{"Breastplate of the Warbringer", {6025819, 25819, 269853, 269854, 269855, 269856, 269857, 269858, 269859, 269860, 269861, 269862, 269863, 269864} },
{"Metallic Headband of Simm'onz", {6025820, 25820, 269865, 269866, 269867, 269868, 269869, 269870, 269871, 269872, 269873, 269874, 269875, 269876} },
{"Leggings of Unending Assault", {6025821, 25821, 269877, 269878, 269879, 269880, 269881, 269882, 269883, 269884, 269885, 269886, 269887, 269888} },
{"Watcher's Tunic", {6025822, 25822, 269889, 269890, 269891, 269892, 269893, 269894, 269895, 269896, 269897, 269898, 269899, 269900} },
{"Grunt's Waraxe", {6025823, 25823, 269901, 269902, 269903, 269904, 269905, 269906, 269907, 269908, 269909, 269910, 269911, 269912} },
{"Farseer's Band", {6025824, 25824, 269913, 269914, 269915, 269916, 269917, 269918, 269919, 269920, 269921, 269922, 269923, 269924} },
{"Footman's Longsword", {6025825, 25825, 269925, 269926, 269927, 269928, 269929, 269930, 269931, 269932, 269933, 269934, 269935, 269936} },
{"Sage's Band", {6025826, 25826, 269937, 269938, 269939, 269940, 269941, 269942, 269943, 269944, 269945, 269946, 269947, 269948} },
{"Muck-Covered Drape", {6025827, 25827, 269949, 269950, 269951, 269952, 269953, 269954, 269955, 269956, 269957, 269958, 269959, 269960} },
{"Petrified Lichen Guard", {6025828, 25828, 269961, 269962, 269963, 269964, 269965, 269966, 269967, 269968, 269969, 269970, 269971, 269972} },
{"Explorer's Walking Stick", {6025835, 25835, 269986, 269987, 269988, 269989, 269990, 269991, 269992, 269993, 269994, 269995, 269996, 269997} },
{"Preserver's Cudgel", {6025836, 25836, 269998, 269999, 270000, 270001, 270002, 270003, 270004, 270005, 270006, 270007, 270008, 270009} },
{"Warden's Hauberk", {6025838, 25838, 270010, 270011, 270012, 270013, 270014, 270015, 270016, 270017, 270018, 270019, 270020, 270021} },
{"Dusksteel Throwing Knife", {270023, 25878, 270022, 270024, 270025, 270026, 270027, 270028, 270029, 270030, 270031, 270032, 270033, 270034} },
{"Ring of the Slain Anchorite", {270036, 25913, 270035, 270037, 270038, 270039, 270040, 270041, 270042, 270043, 270044, 270045, 270046, 270047} },
{"Broken Choker", {270049, 25914, 270048, 270050, 270051, 270052, 270053, 270054, 270055, 270056, 270057, 270058, 270059, 270060} },
{"Fallen Vindicator's Blade", {270062, 25915, 270061, 270063, 270064, 270065, 270066, 270067, 270068, 270069, 270070, 270071, 270072, 270073} },
{"Terokkar Axe", {270075, 25916, 270074, 270076, 270077, 270078, 270079, 270080, 270081, 270082, 270083, 270084, 270085, 270086} },
{"Healer's Staff of the Forest", {270088, 25917, 270087, 270089, 270090, 270091, 270092, 270093, 270094, 270095, 270096, 270097, 270098, 270099} },
{"Blood-Guided Knife", {270101, 25918, 270100, 270102, 270103, 270104, 270105, 270106, 270107, 270108, 270109, 270110, 270111, 270112} },
{"Sedai's Necklace", {270114, 25919, 270113, 270115, 270116, 270117, 270118, 270119, 270120, 270121, 270122, 270123, 270124, 270125} },
{"Sedai's Blade", {270127, 25920, 270126, 270128, 270129, 270130, 270131, 270132, 270133, 270134, 270135, 270136, 270137, 270138} },
{"Sedai's Ring", {270140, 25921, 270139, 270141, 270142, 270143, 270144, 270145, 270146, 270147, 270148, 270149, 270150, 270151} },
{"Fearless Girdle", {270153, 25922, 270152, 270154, 270155, 270156, 270157, 270158, 270159, 270160, 270161, 270162, 270163, 270164} },
{"Fierce Mantle", {270166, 25923, 270165, 270167, 270168, 270169, 270170, 270171, 270172, 270173, 270174, 270175, 270176, 270177} },
{"Swamprunner's Boots", {270179, 25924, 270178, 270180, 270181, 270182, 270183, 270184, 270185, 270186, 270187, 270188, 270189, 270190} },
{"Terrorcloth Mantle", {270192, 25925, 270191, 270193, 270194, 270195, 270196, 270197, 270198, 270199, 270200, 270201, 270202, 270203} },
{"Nexus-Stalker's Band", {270205, 25926, 270204, 270206, 270207, 270208, 270209, 270210, 270211, 270212, 270213, 270214, 270215, 270216} },
{"Consortium Cloak of the Quick", {270218, 25927, 270217, 270219, 270220, 270221, 270222, 270223, 270224, 270225, 270226, 270227, 270228, 270229} },
{"Ethereal Healing Pendant", {270231, 25928, 270230, 270232, 270233, 270234, 270235, 270236, 270237, 270238, 270239, 270240, 270241, 270242} },
{"Cenarion Thicket Legplates", {270244, 25929, 270243, 270245, 270246, 270247, 270248, 270249, 270250, 270251, 270252, 270253, 270254, 270255} },
{"Cenarion Thicket Helm", {270257, 25930, 270256, 270258, 270259, 270260, 270261, 270262, 270263, 270264, 270265, 270266, 270267, 270268} },
{"Cenarion Thicket Circlet", {270270, 25931, 270269, 270271, 270272, 270273, 270274, 270275, 270276, 270277, 270278, 270279, 270280, 270281} },
{"Cenarion Thicket Jerkin", {270283, 25932, 270282, 270284, 270285, 270286, 270287, 270288, 270289, 270290, 270291, 270292, 270293, 270294} },
{"Extra Sharp Blade", {270296, 25933, 270295, 270297, 270298, 270299, 270300, 270301, 270302, 270303, 270304, 270305, 270306, 270307} },
{"Spiked Destroyer", {270309, 25934, 270308, 270310, 270311, 270312, 270313, 270314, 270315, 270316, 270317, 270318, 270319, 270320} },
{"Invincible Stave", {270322, 25935, 270321, 270323, 270324, 270325, 270326, 270327, 270328, 270329, 270330, 270331, 270332, 270333} },
{"Terokkar Tablet of Vim", {270335, 25936, 270334, 270336, 270337, 270338, 270339, 270340, 270341, 270342, 270343, 270344, 270345, 270346} },
{"Terokkar Tablet of Precision", {270348, 25937, 270347, 270349, 270350, 270351, 270352, 270353, 270354, 270355, 270356, 270357, 270358, 270359} },
{"Voidfire Wand", {6025939, 25939, 130743, 425939, 1007156, 1014110, 1020778, 1027343, 1033907, 1040470, 1047033, 1053596, 1060159, 1066722} },
{"Idol of the Claw", {6025940, 25940, 120627, 425940, 1007157, 1014111, 1020779, 1027344, 1033908, 1040471, 1047034, 1053597, 1060160, 1066723} },
{"Boots of the Outlander", {6025941, 25941, 100470, 425941, 1007158, 1014112, 1020780, 1027345, 1033909, 1040472, 1047035, 1053598, 1060161, 1066724} },
{"Faith Bearer's Gauntlets", {6025942, 25942, 113536, 425942, 1007159, 1014113, 1020781, 1027346, 1033910, 1040473, 1047036, 1053599, 1060162, 1066725} },
{"Creepjacker", {6025943, 25943, 100915, 425943, 1007160, 1014114, 1020782, 1027347, 1033911, 1040474, 1047037, 1053600, 1060163, 1066726} },
{"Shaarde the Greater", {6025944, 25944, 123751, 425944, 1007161, 1014115, 1020783, 1027348, 1033912, 1040475, 1047038, 1053601, 1060164, 1066727} },
{"Cloak of Revival", {6025945, 25945, 100811, 425945, 1007162, 1014116, 1020784, 1027349, 1033913, 1040476, 1047039, 1053602, 1060165, 1066728} },
{"Nethershade Boots", {6025946, 25946, 123012, 425946, 1007163, 1014117, 1020785, 1027350, 1033914, 1040477, 1047040, 1053603, 1060166, 1066729} },
{"Lightning-Rod Pauldrons", {6025947, 25947, 122277, 425947, 1007164, 1014118, 1020786, 1027351, 1033915, 1040478, 1047041, 1053604, 1060167, 1066730} },
{"Girdle of the Penitent", {270361, 25948, 270360, 270362, 270363, 270364, 270365, 270366, 270367, 270368, 270369, 270370, 270371, 270372} },
{"Gloves of the Afterlife", {270374, 25949, 270373, 270375, 270376, 270377, 270378, 270379, 270380, 270381, 270382, 270383, 270384, 270385} },
{"Staff of Polarities", {6025950, 25950, 128377, 425950, 1007165, 1014119, 1020787, 1027352, 1033916, 1040479, 1047042, 1053605, 1060168, 1066731} },
{"Fleet Refugee's Boots", {270387, 25951, 270386, 270388, 270389, 270390, 270391, 270392, 270393, 270394, 270395, 270396, 270397, 270398} },
{"Scimitar of the Nexus-Stalkers", {6025952, 25952, 123718, 425952, 1007166, 1014120, 1020788, 1027353, 1033917, 1040480, 1047043, 1053606, 1060169, 1066732} },
{"Ethereal Warp-Bow", {6025953, 25953, 113164, 425953, 1007167, 1014121, 1020789, 1027354, 1033918, 1040481, 1047044, 1053607, 1060170, 1066733} },
{"Sigil of Shaffar", {6025954, 25954, 123872, 425954, 1007169, 1014122, 1020790, 1027355, 1033919, 1040482, 1047045, 1053608, 1060171, 1066734} },
{"Mask of the Howling Storm", {6025955, 25955, 122768, 425955, 1007170, 1014123, 1020791, 1027356, 1033920, 1040483, 1047046, 1053609, 1060172, 1066735} },
{"Nexus-Bracers of Vigor", {6025956, 25956, 123052, 425956, 1007171, 1014124, 1020792, 1027357, 1033921, 1040484, 1047047, 1053610, 1060173, 1066736} },
{"Ethereal Boots of the Skystrider", {6025957, 25957, 113133, 425957, 1007172, 1014125, 1020793, 1027358, 1033922, 1040485, 1047048, 1053611, 1060174, 1066737} },
{"Eagle Engraved Bracers", {270400, 25958, 270399, 270401, 270402, 270403, 270404, 270405, 270406, 270407, 270408, 270409, 270410, 270411} },
{"Feathered Armbands", {270413, 25959, 270412, 270414, 270415, 270416, 270417, 270418, 270419, 270420, 270421, 270422, 270423, 270424} },
{"Talonstalker Bracers", {270426, 25960, 270425, 270427, 270428, 270429, 270430, 270431, 270432, 270433, 270434, 270435, 270436, 270437} },
{"Feathered Wrist Cuffs", {270439, 25961, 270438, 270440, 270441, 270442, 270443, 270444, 270445, 270446, 270447, 270448, 270449, 270450} },
{"Longstrider's Loop", {6025962, 25962, 122289, 425962, 1007173, 1014126, 1020794, 1027359, 1033923, 1040486, 1047049, 1053612, 1060175, 1066738} },
{"Kokorek's Signet", {270452, 25963, 270451, 270453, 270454, 270455, 270456, 270457, 270458, 270459, 270460, 270461, 270462, 270463} },
{"Shaarde the Lesser", {6025964, 25964, 123752, 425964, 1007174, 1014127, 1020795, 1027360, 1033924, 1040487, 1047050, 1053613, 1060176, 1066739} },
{"Cloak of Grasping Talons", {270465, 25965, 270464, 270466, 270467, 270468, 270469, 270470, 270471, 270472, 270473, 270474, 270475, 270476} },
{"Arakkoa Sage's Shawl", {270478, 25966, 270477, 270479, 270480, 270481, 270482, 270483, 270484, 270485, 270486, 270487, 270488, 270489} },
{"Eagle Crested Pauldrons", {6025967, 25967, 270490, 270491, 270492, 270493, 270494, 270495, 270496, 270497, 270498, 270499, 270500, 270501} },
{"Shalassi Sentry's Epaulets", {6025968, 25968, 270502, 270503, 270504, 270505, 270506, 270507, 270508, 270509, 270510, 270511, 270512, 270513} },
{"Rapscallion's Touch", {6025969, 25969, 270514, 270515, 270516, 270517, 270518, 270519, 270520, 270521, 270522, 270523, 270524, 270525} },
{"Shalassi Oracle's Sandals", {6025970, 25970, 270526, 270527, 270528, 270529, 270530, 270531, 270532, 270533, 270534, 270535, 270536, 270537} },
{"Stout Oak Longbow", {270539, 25971, 270538, 270540, 270541, 270542, 270543, 270544, 270545, 270546, 270547, 270548, 270549, 270550} },
{"Deadeye's Piece", {270552, 25972, 270551, 270553, 270554, 270555, 270556, 270557, 270558, 270559, 270560, 270561, 270562, 270563} },
{"Dark Augur's Wand", {270565, 25973, 270564, 270566, 270567, 270568, 270569, 270570, 270571, 270572, 270573, 270574, 270575, 270576} },
{"Helm of Lupine Cunning", {270578, 25974, 270577, 270579, 270580, 270581, 270582, 270583, 270584, 270585, 270586, 270587, 270588, 270589} },
{"Wolf Hunter's Guise", {270591, 25975, 270590, 270592, 270593, 270594, 270595, 270596, 270597, 270598, 270599, 270600, 270601, 270602} },
{"Helm of Lupine Grace", {270604, 25976, 270603, 270605, 270606, 270607, 270608, 270609, 270610, 270611, 270612, 270613, 270614, 270615} },
{"Helm of Lupine Ferocity", {270617, 25977, 270616, 270618, 270619, 270620, 270621, 270622, 270623, 270624, 270625, 270626, 270627, 270628} },
{"Flintlocke's Piloting Pants", {270643, 25979, 270642, 270644, 270645, 270646, 270647, 270648, 270649, 270650, 270651, 270652, 270653, 270654} },
{"Aerodynamic Scaled Vest", {270656, 25980, 270655, 270657, 270658, 270659, 270660, 270661, 270662, 270663, 270664, 270665, 270666, 270667} },
{"Dirigible Crash Helmet", {270669, 25981, 270668, 270670, 270671, 270672, 270673, 270674, 270675, 270676, 270677, 270678, 270679, 270680} },
{"Foreman's Sash", {270682, 25982, 270681, 270683, 270684, 270685, 270686, 270687, 270688, 270689, 270690, 270691, 270692, 270693} },
{"Heavy Miner's Belt", {270695, 25983, 270694, 270696, 270697, 270698, 270699, 270700, 270701, 270702, 270703, 270704, 270705, 270706} },
{"Miner's Brace", {270708, 25984, 270707, 270709, 270710, 270711, 270712, 270713, 270714, 270715, 270716, 270717, 270718, 270719} },
{"Cenarion Naturalist's Staff", {270721, 25985, 270720, 270722, 270723, 270724, 270725, 270726, 270727, 270728, 270729, 270730, 270731, 270732} },
{"Dreadtusk's Fury", {270734, 25986, 270733, 270735, 270736, 270737, 270738, 270739, 270740, 270741, 270742, 270743, 270744, 270745} },
{"Helboar Carving Blade", {270747, 25987, 270746, 270748, 270749, 270750, 270751, 270752, 270753, 270754, 270755, 270756, 270757, 270758} },
{"Glowing Alabaster Ring", {270760, 25988, 270759, 270761, 270762, 270763, 270764, 270765, 270766, 270767, 270768, 270769, 270770, 270771} },
{"Draenethyst Chaplet", {270773, 25989, 270772, 270774, 270775, 270776, 270777, 270778, 270779, 270780, 270781, 270782, 270783, 270784} },
{"Smooth Soapstone Band", {270786, 25990, 270785, 270787, 270788, 270789, 270790, 270791, 270792, 270793, 270794, 270795, 270796, 270797} },
{"Seamless Stone Band", {270799, 25991, 270798, 270800, 270801, 270802, 270803, 270804, 270805, 270806, 270807, 270808, 270809, 270810} },
{"Enforcer's Chain", {270812, 25992, 270811, 270813, 270814, 270815, 270816, 270817, 270818, 270819, 270820, 270821, 270822, 270823} },
{"Finely Wrought Chain", {270825, 25993, 270824, 270826, 270827, 270828, 270829, 270830, 270831, 270832, 270833, 270834, 270835, 270836} },
{"Rune of Force", {270838, 25994, 270837, 270839, 270840, 270841, 270842, 270843, 270844, 270845, 270846, 270847, 270848, 270849} },
{"Star of Sha'naar", {270851, 25995, 270850, 270852, 270853, 270854, 270855, 270856, 270857, 270858, 270859, 270860, 270861, 270862} },
{"Emblem of Perseverance", {270864, 25996, 270863, 270865, 270866, 270867, 270868, 270869, 270870, 270871, 270872, 270873, 270874, 270875} },
{"Oculus of the Hidden Eye", {6026055, 26055, 123132, 426055, 1007175, 1014128, 1020796, 1027361, 1033925, 1040488, 1047051, 1053614, 1060177, 1066740} },
{"68 TEST Green Cloth Belt", {271449, 26128, 271448, 271450, 271451, 271452, 271453, 271454, 271455, 271456, 271457, 271458, 271459, 271460} },
{"68 TEST Green Cloth Boot", {271462, 26129, 271461, 271463, 271464, 271465, 271466, 271467, 271468, 271469, 271470, 271471, 271472, 271473} },
{"68 TEST Green Cloth Chest", {271475, 26130, 271474, 271476, 271477, 271478, 271479, 271480, 271481, 271482, 271483, 271484, 271485, 271486} },
{"68 TEST Green Cloth Hand", {271488, 26131, 271487, 271489, 271490, 271491, 271492, 271493, 271494, 271495, 271496, 271497, 271498, 271499} },
{"68 TEST Green Cloth Head", {271501, 26132, 271500, 271502, 271503, 271504, 271505, 271506, 271507, 271508, 271509, 271510, 271511, 271512} },
{"68 TEST Green Cloth Legs", {271514, 26133, 271513, 271515, 271516, 271517, 271518, 271519, 271520, 271521, 271522, 271523, 271524, 271525} },
{"68 TEST Green Cloth Shoulder", {271527, 26134, 271526, 271528, 271529, 271530, 271531, 271532, 271533, 271534, 271535, 271536, 271537, 271538} },
{"68 TEST Green Cloth Wrist", {271540, 26135, 271539, 271541, 271542, 271543, 271544, 271545, 271546, 271547, 271548, 271549, 271550, 271551} },
{"59 TEST Green Rogue Legs", {271553, 26173, 271552, 271554, 271555, 271556, 271557, 271558, 271559, 271560, 271561, 271562, 271563, 271564} },
{"59 TEST Green Rogue Shoulder", {271566, 26174, 271565, 271567, 271568, 271569, 271570, 271571, 271572, 271573, 271574, 271575, 271576, 271577} },
{"59 TEST Green Rogue Wrist", {271579, 26175, 271578, 271580, 271581, 271582, 271583, 271584, 271585, 271586, 271587, 271588, 271589, 271590} },
{"60 TEST Green Rogue Head", {271592, 26180, 271591, 271593, 271594, 271595, 271596, 271597, 271598, 271599, 271600, 271601, 271602, 271603} },
{"67 TEST Green Rogue Hand", {271605, 26235, 271604, 271606, 271607, 271608, 271609, 271610, 271611, 271612, 271613, 271614, 271615, 271616} },
{"64 TEST Green Hunter Head", {271618, 26324, 271617, 271619, 271620, 271621, 271622, 271623, 271624, 271625, 271626, 271627, 271628, 271629} },
{"70 TEST Green Hunter Belt", {271631, 26368, 271630, 271632, 271633, 271634, 271635, 271636, 271637, 271638, 271639, 271640, 271641, 271642} },
{"70 TEST Green Hunter Head", {271644, 26372, 271643, 271645, 271646, 271647, 271648, 271649, 271650, 271651, 271652, 271653, 271654, 271655} },
{"68 TEST Green Warrior Belt", {271657, 26464, 271656, 271658, 271659, 271660, 271661, 271662, 271663, 271664, 271665, 271666, 271667, 271668} },
{"68 TEST Green Warrior Boot", {271670, 26465, 271669, 271671, 271672, 271673, 271674, 271675, 271676, 271677, 271678, 271679, 271680, 271681} },
{"68 TEST Green Cloth Cloak", {271683, 26513, 271682, 271684, 271685, 271686, 271687, 271688, 271689, 271690, 271691, 271692, 271693, 271694} },
{"68 TEST Green Cloth Ring", {271696, 26527, 271695, 271697, 271698, 271699, 271700, 271701, 271702, 271703, 271704, 271705, 271706, 271707} },
{"68 TEST Green Cloth Necklace", {271709, 26541, 271708, 271710, 271711, 271712, 271713, 271714, 271715, 271716, 271717, 271718, 271719, 271720} },
{"61 TEST Green Shield", {271722, 26548, 271721, 271723, 271724, 271725, 271726, 271727, 271728, 271729, 271730, 271731, 271732, 271733} },
{"68 TEST Green Off Hand", {271735, 26569, 271734, 271736, 271737, 271738, 271739, 271740, 271741, 271742, 271743, 271744, 271745, 271746} },
{"70 TEST Green Staff", {271748, 26655, 271747, 271749, 271750, 271751, 271752, 271753, 271754, 271755, 271756, 271757, 271758, 271759} },
{"69 TEST Green Crossbow", {271761, 26738, 271760, 271762, 271763, 271764, 271765, 271766, 271767, 271768, 271769, 271770, 271771, 271772} },
{"68 TEST Green Wand", {271774, 26765, 271773, 271775, 271776, 271777, 271778, 271779, 271780, 271781, 271782, 271783, 271784, 271785} },
{"68 TEST Green Spell Dagger", {271787, 26779, 271786, 271788, 271789, 271790, 271791, 271792, 271793, 271794, 271795, 271796, 271797, 271798} },
{"67 TEST Green Healer Mace", {271800, 26792, 271799, 271801, 271802, 271803, 271804, 271805, 271806, 271807, 271808, 271809, 271810, 271811} },
{"62 TEST Green Druid Wrist", {271813, 26843, 271812, 271814, 271815, 271816, 271817, 271818, 271819, 271820, 271821, 271822, 271823, 271824} },
{"65 TEST Green Druid/Warrior Cloak", {271852, 27196, 271851, 271853, 271854, 271855, 271856, 271857, 271858, 271859, 271860, 271861, 271862, 271863} },
{"59 TEST Green Druid/Warrior Necklace", {271865, 27218, 271864, 271866, 271867, 271868, 271869, 271870, 271871, 271872, 271873, 271874, 271875, 271876} },
{"Hope Bearer Helm", {6027408, 27408, 120600, 427408, 1007176, 1014129, 1020797, 1027362, 1033926, 1040489, 1047052, 1053615, 1060178, 1066741} },
{"Raven-Heart Headdress", {6027409, 27409, 123511, 427409, 1007177, 1014130, 1020798, 1027363, 1033927, 1040490, 1047053, 1053616, 1060179, 1066742} },
{"Collar of Command", {6027410, 27410, 100835, 427410, 1007178, 1014131, 1020799, 1027364, 1033928, 1040491, 1047054, 1053617, 1060180, 1066743} },
{"Slippers of Serenity", {6027411, 27411, 127128, 427411, 1007179, 1014132, 1020800, 1027365, 1033929, 1040492, 1047055, 1053618, 1060181, 1066744} },
{"Ironstaff of Regeneration", {6027412, 27412, 120698, 427412, 1007180, 1014133, 1020801, 1027366, 1033930, 1040493, 1047056, 1053619, 1060182, 1066745} },
{"Ring of the Exarchs", {6027413, 27413, 123601, 427413, 1007181, 1014134, 1020802, 1027367, 1033931, 1040494, 1047057, 1053620, 1060183, 1066746} },
{"Mok'Nathal Beast-Mask", {6027414, 27414, 122925, 427414, 1007182, 1014135, 1020803, 1027368, 1033932, 1040495, 1047058, 1053621, 1060184, 1066747} },
{"Darkguard Face Mask", {6027415, 27415, 101008, 427415, 1007183, 1014136, 1020804, 1027369, 1033933, 1040496, 1047059, 1053622, 1060185, 1066748} },
{"Fetish of the Fallen", {6027416, 27416, 114652, 427416, 1007184, 1014137, 1020805, 1027370, 1033934, 1040497, 1047060, 1053623, 1060186, 1066749} },
{"Ravenwing Pauldrons", {6027417, 27417, 123513, 427417, 1007186, 1014138, 1020806, 1027371, 1033935, 1040498, 1047061, 1053624, 1060187, 1066750} },
{"Stormreaver Shadow-Kilt", {6027418, 27418, 128694, 427418, 1007187, 1014139, 1020807, 1027372, 1033936, 1040499, 1047062, 1053625, 1060188, 1066751} },
{"Uther's Ceremonial Warboots", {6027420, 27420, 130545, 427420, 1007188, 1014140, 1020808, 1027373, 1033937, 1040500, 1047063, 1053626, 1060189, 1066752} },
{"Cloak of Impulsiveness", {6027423, 27423, 100809, 427423, 1007189, 1014141, 1020809, 1027374, 1033938, 1040501, 1047064, 1053627, 1060190, 1066753} },
{"Amani Venom-Axe", {6027424, 27424, 100049, 427424, 1007190, 1014142, 1020810, 1027375, 1033939, 1040502, 1047065, 1053628, 1060191, 1066754} },
{"Northshire Battlemace", {6027426, 27426, 123111, 427426, 1007192, 1014143, 1020811, 1027376, 1033940, 1040503, 1047066, 1053629, 1060192, 1066755} },
{"Durotan's Battle Harness", {6027427, 27427, 103876, 427427, 1007194, 1014144, 1020812, 1027377, 1033941, 1040504, 1047067, 1053630, 1060193, 1066756} },
{"Stormfront Gauntlets", {6027428, 27428, 128686, 427428, 1007195, 1014145, 1020813, 1027378, 1033942, 1040505, 1047068, 1053631, 1060194, 1066757} },
{"Scaled Greaves of Patience", {6027430, 27430, 123701, 427430, 1007196, 1014146, 1020814, 1027379, 1033943, 1040506, 1047069, 1053632, 1060195, 1066758} },
{"Time-Shifted Dagger", {6027431, 27431, 130431, 427431, 1007197, 1014147, 1020815, 1027380, 1033944, 1040507, 1047070, 1053633, 1060196, 1066759} },
{"Broxigar's Ring of Valor", {6027432, 27432, 100695, 427432, 1007198, 1014148, 1020816, 1027381, 1033945, 1040508, 1047071, 1053634, 1060197, 1066760} },
{"Pauldrons of Sufferance", {6027433, 27433, 123197, 427433, 1007199, 1014149, 1020817, 1027382, 1033946, 1040509, 1047072, 1053635, 1060198, 1066761} },
{"Mantle of Perenolde", {6027434, 27434, 122725, 427434, 1007201, 1014150, 1020818, 1027383, 1033947, 1040510, 1047073, 1053636, 1060199, 1066762} },
{"Iron Band of the Unbreakable", {6027436, 27436, 120673, 427436, 1007202, 1014151, 1020819, 1027384, 1033948, 1040511, 1047074, 1053637, 1060200, 1066763} },
{"Diamond Prism of Recurrence", {6027440, 27440, 102312, 427440, 1007203, 1014152, 1020820, 1027385, 1033949, 1040512, 1047075, 1053638, 1060201, 1066764} },
{"Bracers of Just Rewards", {6027447, 27447, 100639, 427447, 1007205, 1014153, 1020821, 1027386, 1033950, 1040513, 1047076, 1053639, 1060202, 1066765} },
{"Cloak of the Everliving", {6027448, 27448, 100814, 427448, 1007206, 1014154, 1020822, 1027387, 1033951, 1040514, 1047077, 1053640, 1060203, 1066766} },
{"Blood Knight Defender", {6027449, 27449, 100336, 427449, 1007207, 1014155, 1020823, 1027388, 1033952, 1040515, 1047078, 1053641, 1060204, 1066767} },
{"Wild Stalker Boots", {6027450, 27450, 130836, 427450, 1007208, 1014156, 1020824, 1027389, 1033953, 1040516, 1047079, 1053642, 1060205, 1066768} },
{"Boots of the Darkwalker", {6027451, 27451, 100458, 427451, 1007209, 1014157, 1020825, 1027390, 1033954, 1040517, 1047080, 1053643, 1060206, 1066769} },
{"Light Scribe Bands", {6027452, 27452, 120975, 427452, 1007211, 1014158, 1020826, 1027391, 1033955, 1040518, 1047081, 1053644, 1060207, 1066770} },
{"Averinn's Ring of Slaying", {6027453, 27453, 100179, 427453, 1007212, 1014159, 1020827, 1027392, 1033956, 1040519, 1047082, 1053645, 1060208, 1066771} },
{"Volcanic Pauldrons", {6027454, 27454, 130744, 427454, 1007213, 1014160, 1020828, 1027393, 1033957, 1040520, 1047083, 1053646, 1060209, 1066772} },
{"Irondrake Faceguard", {6027455, 27455, 120677, 427455, 1007214, 1014161, 1020829, 1027394, 1033958, 1040521, 1047084, 1053647, 1060210, 1066773} },
{"Raiments of Nature's Breath", {6027456, 27456, 123489, 427456, 1007215, 1014162, 1020830, 1027395, 1033959, 1040522, 1047085, 1053648, 1060211, 1066774} },
{"Life Bearer's Gauntlets", {6027457, 27457, 120970, 427457, 1007216, 1014163, 1020831, 1027396, 1033960, 1040523, 1047086, 1053649, 1060212, 1066775} },
{"Oceansong Kilt", {6027458, 27458, 123131, 427458, 1007217, 1014164, 1020832, 1027397, 1033961, 1040524, 1047087, 1053650, 1060213, 1066776} },
{"Vambraces of Daring", {6027459, 27459, 130549, 427459, 1007218, 1014165, 1020833, 1027398, 1033962, 1040525, 1047088, 1053651, 1060214, 1066777} },
{"Reavers' Ring", {6027460, 27460, 123540, 427460, 1007219, 1014166, 1020834, 1027399, 1033963, 1040526, 1047089, 1053652, 1060215, 1066778} },
{"Chestguard of the Prowler", {6027461, 27461, 100752, 427461, 1007220, 1014167, 1020835, 1027400, 1033964, 1040527, 1047090, 1053653, 1060216, 1066779} },
{"Crimson Bracers of Gloom", {6027462, 27462, 100917, 427462, 1007221, 1014168, 1020836, 1027401, 1033965, 1040528, 1047091, 1053654, 1060217, 1066780} },
{"Terror Flame Dagger", {6027463, 27463, 130062, 427463, 1007222, 1014169, 1020837, 1027402, 1033966, 1040529, 1047092, 1053655, 1060218, 1066781} },
{"Omor's Unyielding Will", {6027464, 27464, 123137, 427464, 1007223, 1014170, 1020838, 1027403, 1033967, 1040530, 1047093, 1053656, 1060219, 1066782} },
{"Mana-Etched Gloves", {6027465, 27465, 122671, 427465, 1007224, 1014171, 1020839, 1027404, 1033968, 1040531, 1047094, 1053657, 1060220, 1066783} },
{"Headdress of Alacrity", {6027466, 27466, 120490, 427466, 1007225, 1014172, 1020840, 1027405, 1033969, 1040532, 1047095, 1053658, 1060221, 1066784} },
{"Silent-Strider Kneeboots", {6027467, 27467, 123888, 427467, 1007226, 1014173, 1020841, 1027406, 1033970, 1040533, 1047096, 1053659, 1060222, 1066785} },
{"Moonglade Handwraps", {6027468, 27468, 122946, 427468, 1007227, 1014174, 1020842, 1027407, 1033971, 1040534, 1047097, 1053660, 1060223, 1066786} },
{"Beast Lord Handguards", {6027474, 27474, 100244, 427474, 1007228, 1014175, 1020843, 1027408, 1033972, 1040535, 1047098, 1053661, 1060224, 1066787} },
{"Gauntlets of the Bold", {6027475, 27475, 116906, 427475, 1007229, 1014176, 1020844, 1027409, 1033973, 1040536, 1047099, 1053662, 1060225, 1066788} },
{"Truncheon of Five Hells", {6027476, 27476, 130476, 427476, 1007230, 1014177, 1020845, 1027410, 1033974, 1040537, 1047100, 1053663, 1060226, 1066789} },
{"Faol's Signet of Cleansing", {6027477, 27477, 113582, 427477, 1007232, 1014178, 1020846, 1027411, 1033975, 1040538, 1047101, 1053664, 1060227, 1066790} },
{"Girdle of the Blasted Reaches", {6027478, 27478, 117449, 427478, 1007233, 1014179, 1020847, 1027412, 1033976, 1040539, 1047102, 1053665, 1060228, 1066791} },
{"Moon-Touched Bands", {6027483, 27483, 122941, 427483, 1007234, 1014180, 1020848, 1027413, 1033977, 1040540, 1047103, 1053666, 1060229, 1066792} },
{"Libram of Avengement", {6027484, 27484, 120963, 427484, 1007235, 1014181, 1020849, 1027414, 1033978, 1040541, 1047104, 1053667, 1060230, 1066793} },
{"Embroidered Cape of Mysteries", {6027485, 27485, 112967, 427485, 1007237, 1014182, 1020850, 1027415, 1033979, 1040542, 1047105, 1053668, 1060231, 1066794} },
{"Bloodlord Legplates", {6027487, 27487, 100372, 427487, 1007238, 1014183, 1020851, 1027416, 1033980, 1040543, 1047106, 1053669, 1060232, 1066795} },
{"Mage-Collar of the Firestorm", {6027488, 27488, 122450, 427488, 1007239, 1014184, 1020852, 1027417, 1033981, 1040544, 1047107, 1053670, 1060233, 1066796} },
{"Virtue Bearer's Vambraces", {6027489, 27489, 130739, 427489, 1007240, 1014185, 1020853, 1027418, 1033982, 1040545, 1047108, 1053671, 1060234, 1066797} },
{"Firebrand Battleaxe", {6027490, 27490, 114667, 427490, 1007241, 1014186, 1020854, 1027419, 1033983, 1040546, 1047109, 1053672, 1060235, 1066798} },
{"Signet of Repose", {6027491, 27491, 123879, 427491, 1007242, 1014187, 1020855, 1027420, 1033984, 1040547, 1047110, 1053673, 1060236, 1066799} },
{"Moonchild Leggings", {6027492, 27492, 122942, 427492, 1007243, 1014188, 1020856, 1027421, 1033985, 1040548, 1047111, 1053674, 1060237, 1066800} },
{"Gloves of the Deadwatcher", {6027493, 27493, 118944, 427493, 1007246, 1014189, 1020857, 1027422, 1033986, 1040549, 1047112, 1053675, 1060238, 1066801} },
{"Emerald Eye Bracer", {6027494, 27494, 112969, 427494, 1007249, 1014190, 1020858, 1027423, 1033987, 1040550, 1047113, 1053676, 1060239, 1066802} },
{"Soldier's Dog Tags", {6027495, 27495, 127678, 427495, 1007250, 1014191, 1020859, 1027424, 1033988, 1040551, 1047114, 1053677, 1060240, 1066803} },
{"Doomplate Gauntlets", {6027497, 27497, 102327, 427497, 1007251, 1014192, 1020860, 1027425, 1033989, 1040552, 1047115, 1053678, 1060241, 1066804} },
{"Ruby Helm of the Just", {6027505, 27505, 123647, 427505, 1007252, 1014193, 1020861, 1027426, 1033990, 1040553, 1047116, 1053679, 1060242, 1066805} },
{"Robe of Effervescent Light", {6027506, 27506, 123618, 427506, 1007254, 1014194, 1020862, 1027427, 1033991, 1040554, 1047117, 1053680, 1060243, 1066806} },
{"Adamantine Repeater", {6027507, 27507, 100028, 427507, 1007257, 1014195, 1020863, 1027428, 1033992, 1040555, 1047118, 1053681, 1060244, 1066807} },
{"Incanter's Gloves", {6027508, 27508, 120654, 427508, 1007259, 1014196, 1020864, 1027429, 1033993, 1040556, 1047119, 1053682, 1060245, 1066808} },
{"Handgrips of Assassination", {6027509, 27509, 120456, 427509, 1007260, 1014197, 1020865, 1027430, 1033994, 1040557, 1047120, 1053683, 1060246, 1066809} },
{"Tidefury Gauntlets", {6027510, 27510, 130421, 427510, 1007261, 1014198, 1020866, 1027431, 1033995, 1040558, 1047121, 1053684, 1060247, 1066810} },
{"The Willbreaker", {6027512, 27512, 130343, 427512, 1007262, 1014199, 1020867, 1027432, 1033996, 1040559, 1047122, 1053685, 1060248, 1066811} },
{"Leggings of the Unrepentant", {6027514, 27514, 120887, 427514, 1007263, 1014200, 1020868, 1027433, 1033997, 1040560, 1047123, 1053686, 1060249, 1066812} },
{"Bands of Nethekurse", {6027517, 27517, 100213, 427517, 1007264, 1014201, 1020869, 1027434, 1033998, 1040561, 1047124, 1053687, 1060250, 1066813} },
{"Ivory Idol of the Moongoddess", {6027518, 27518, 120703, 427518, 1007265, 1014202, 1020870, 1027435, 1033999, 1040562, 1047125, 1053688, 1060251, 1066814} },
{"Cloak of Malice", {6027519, 27519, 100810, 427519, 1007266, 1014203, 1020871, 1027436, 1034000, 1040563, 1047126, 1053689, 1060252, 1066815} },
{"Greathelm of the Unbreakable", {6027520, 27520, 120159, 427520, 1007268, 1014204, 1020872, 1027437, 1034001, 1040564, 1047127, 1053690, 1060253, 1066816} },
{"Telaari Hunting Girdle", {6027521, 27521, 130043, 427521, 1007269, 1014205, 1020873, 1027438, 1034002, 1040565, 1047128, 1053691, 1060254, 1066817} },
{"World's End Bracers", {6027522, 27522, 130947, 427522, 1007270, 1014206, 1020874, 1027439, 1034003, 1040566, 1047129, 1053692, 1060255, 1066818} },
{"Exarch's Diamond Band", {6027523, 27523, 113213, 427523, 1007271, 1014207, 1020875, 1027440, 1034004, 1040567, 1047130, 1053693, 1060256, 1066819} },
{"Firemaul of Destruction", {6027524, 27524, 115368, 427524, 1007272, 1014208, 1020876, 1027441, 1034005, 1040568, 1047131, 1053694, 1060257, 1066820} },
{"Jeweled Boots of Sanctification", {6027525, 27525, 120721, 427525, 1007273, 1014209, 1020877, 1027442, 1034006, 1040569, 1047132, 1053695, 1060258, 1066821} },
{"Skyfire Hawk-Bow", {6027526, 27526, 124114, 427526, 1007274, 1014210, 1020878, 1027443, 1034007, 1040570, 1047133, 1053696, 1060259, 1066822} },
{"Greaves of the Shatterer", {6027527, 27527, 120201, 427527, 1007275, 1014211, 1020879, 1027444, 1034008, 1040571, 1047134, 1053697, 1060260, 1066823} },
{"Gauntlets of Desolation", {6027528, 27528, 116898, 427528, 1007276, 1014212, 1020880, 1027445, 1034009, 1040572, 1047135, 1053698, 1060261, 1066824} },
{"Figurine of the Colossus", {6027529, 27529, 114654, 427529, 1007277, 1014213, 1020881, 1027446, 1034010, 1040573, 1047136, 1053699, 1060262, 1066825} },
{"Wastewalker Gloves", {6027531, 27531, 130816, 427531, 1007278, 1014214, 1020882, 1027447, 1034011, 1040574, 1047137, 1053700, 1060263, 1066826} },
{"Demonblood Eviscerator", {6027533, 27533, 102230, 427533, 1007279, 1014215, 1020883, 1027448, 1034012, 1040575, 1047138, 1053701, 1060264, 1066827} },
{"Hortus' Seal of Brilliance", {6027534, 27534, 120602, 427534, 1007280, 1014216, 1020884, 1027449, 1034013, 1040576, 1047139, 1053702, 1060265, 1066828} },
{"Gauntlets of the Righteous", {6027535, 27535, 117417, 427535, 1007281, 1014217, 1020885, 1027450, 1034014, 1040577, 1047140, 1053703, 1060266, 1066829} },
{"Hallowed Handwraps", {6027536, 27536, 120443, 427536, 1007282, 1014218, 1020886, 1027451, 1034015, 1040578, 1047141, 1053704, 1060267, 1066830} },
{"Gloves of Oblivion", {6027537, 27537, 118612, 427537, 1007283, 1014219, 1020887, 1027452, 1034016, 1040579, 1047142, 1053705, 1060268, 1066831} },
{"Lightsworn Hammer", {6027538, 27538, 122279, 427538, 1007284, 1014220, 1020888, 1027453, 1034017, 1040580, 1047143, 1053706, 1060269, 1066832} },
{"Justice Bearer's Pauldrons", {6027539, 27539, 120728, 427539, 1007285, 1014221, 1020889, 1027454, 1034018, 1040581, 1047144, 1053707, 1060270, 1066833} },
{"Nexus Torch", {6027540, 27540, 123051, 427540, 1007286, 1014222, 1020890, 1027455, 1034019, 1040582, 1047145, 1053708, 1060271, 1066834} },
{"Archery Belt of the Broken", {6027541, 27541, 100115, 427541, 1007287, 1014223, 1020891, 1027456, 1034020, 1040583, 1047146, 1053709, 1060272, 1066835} },
{"Cord of Belief", {6027542, 27542, 100892, 427542, 1007288, 1014224, 1020892, 1027457, 1034021, 1040584, 1047147, 1053710, 1060273, 1066836} },
{"Starlight Dagger", {6027543, 27543, 128613, 427543, 1007289, 1014225, 1020893, 1027458, 1034022, 1040585, 1047148, 1053711, 1060274, 1066837} },
{"Totem of Spontaneous Regrowth", {6027544, 27544, 130440, 427544, 1007290, 1014226, 1020894, 1027459, 1034023, 1040586, 1047149, 1053712, 1060275, 1066838} },
{"Mennu's Scaled Leggings", {6027545, 27545, 122782, 427545, 1007291, 1014227, 1020895, 1027460, 1034024, 1040587, 1047150, 1053713, 1060276, 1066839} },
{"Traitor's Noose", {6027546, 27546, 130449, 427546, 1007292, 1014228, 1020896, 1027461, 1034025, 1040588, 1047151, 1053714, 1060277, 1066840} },
{"Coldwhisper Cord", {6027547, 27547, 100832, 427547, 1007293, 1014229, 1020897, 1027462, 1034026, 1040589, 1047152, 1053715, 1060278, 1066841} },
{"Girdle of Many Blessings", {6027548, 27548, 117443, 427548, 1007294, 1014230, 1020898, 1027463, 1034027, 1040590, 1047153, 1053716, 1060279, 1066842} },
{"Wavefury Boots", {6027549, 27549, 130825, 427549, 1007295, 1014231, 1020899, 1027464, 1034028, 1040591, 1047154, 1053717, 1060280, 1066843} },
{"Ironscale War Cloak", {6027550, 27550, 120678, 427550, 1007296, 1014232, 1020900, 1027465, 1034029, 1040592, 1047155, 1053718, 1060281, 1066844} },
{"Skeletal Necklace of Battlerage", {6027551, 27551, 124047, 427551, 1007297, 1014233, 1020901, 1027466, 1034030, 1040593, 1047156, 1053719, 1060282, 1066845} },
{"Needle Shrike", {6027631, 27631, 123002, 427631, 1007298, 1014234, 1020902, 1027467, 1034031, 1040594, 1047157, 1053720, 1060283, 1066846} },
{"Girdle of the Immovable", {6027672, 27672, 117456, 427672, 1007299, 1014235, 1020903, 1027468, 1034032, 1040595, 1047158, 1053721, 1060284, 1066847} },
{"Phosphorescent Blade", {6027673, 27673, 123408, 427673, 1007302, 1014236, 1020904, 1027469, 1034033, 1040596, 1047159, 1053722, 1060285, 1066848} },
{"Quagmirran's Eye", {6027683, 27683, 123476, 427683, 1007303, 1014237, 1020905, 1027470, 1034034, 1040597, 1047160, 1053723, 1060286, 1066849} },
{"Shackles of Quagmirran", {6027712, 27712, 123753, 427712, 1007306, 1014238, 1020906, 1027471, 1034035, 1040598, 1047161, 1053724, 1060287, 1066850} },
{"Pauldrons of Desolation", {6027713, 27713, 123193, 427713, 1007307, 1014239, 1020907, 1027472, 1034036, 1040599, 1047162, 1053725, 1060288, 1066851} },
{"Swamplight Lantern", {6027714, 27714, 129223, 427714, 1007308, 1014240, 1020908, 1027473, 1034037, 1040600, 1047163, 1053726, 1060289, 1066852} },
{"Circle's Stalwart Helmet", {272189, 27715, 272188, 272190, 272191, 272192, 272193, 272194, 272195, 272196, 272197, 272198, 272199, 272200} },
{"Refuge Armor", {272202, 27716, 272201, 272203, 272204, 272205, 272206, 272207, 272208, 272209, 272210, 272211, 272212, 272213} },
{"Expedition Forager Leggings", {272215, 27717, 272214, 272216, 272217, 272218, 272219, 272220, 272221, 272222, 272223, 272224, 272225, 272226} },
{"Aldor Defender's Legplates", {272228, 27718, 272227, 272229, 272230, 272231, 272232, 272233, 272234, 272235, 272236, 272237, 272238, 272239} },
{"Aldor Leggings of Puissance", {272241, 27719, 272240, 272242, 272243, 272244, 272245, 272246, 272247, 272248, 272249, 272250, 272251, 272252} },
{"Robes of the Aldor", {272254, 27720, 272253, 272255, 272256, 272257, 272258, 272259, 272260, 272261, 272262, 272263, 272264, 272265} },
{"Expedition Footgear", {272267, 27721, 272266, 272268, 272269, 272270, 272271, 272272, 272273, 272274, 272275, 272276, 272277, 272278} },
{"Gloves of Marshmanship", {272280, 27722, 272279, 272281, 272282, 272283, 272284, 272285, 272286, 272287, 272288, 272289, 272290, 272291} },
{"Belt of the Moonkin", {272293, 27723, 272292, 272294, 272295, 272296, 272297, 272298, 272299, 272300, 272301, 272302, 272303, 272304} },
{"Wild Shoulderpads", {272306, 27724, 272305, 272307, 272308, 272309, 272310, 272311, 272312, 272313, 272314, 272315, 272316, 272317} },
{"Expedition Mantle", {272319, 27725, 272318, 272320, 272321, 272322, 272323, 272324, 272325, 272326, 272327, 272328, 272329, 272330} },
{"Hearty Cenarion Cincture", {272332, 27726, 272331, 272333, 272334, 272335, 272336, 272337, 272338, 272339, 272340, 272341, 272342, 272343} },
{"Swift Cenarion Footwear", {272345, 27727, 272344, 272346, 272347, 272348, 272349, 272350, 272351, 272352, 272353, 272354, 272355, 272356} },
{"Cushy Cenarion Walkers", {272358, 27728, 272357, 272359, 272360, 272361, 272362, 272363, 272364, 272365, 272366, 272367, 272368, 272369} },
{"Watcher's Cloak of Vigilance", {272371, 27730, 272370, 272372, 272373, 272374, 272375, 272376, 272377, 272378, 272379, 272380, 272381, 272382} },
{"Vindicator's Cloak", {272384, 27731, 272383, 272385, 272386, 272387, 272388, 272389, 272390, 272391, 272392, 272393, 272394, 272395} },
{"Infiltrator's Cloak", {272397, 27732, 272396, 272398, 272399, 272400, 272401, 272402, 272403, 272404, 272405, 272406, 272407, 272408} },
{"Warden's Ring of Precision", {272410, 27733, 272409, 272411, 272412, 272413, 272414, 272415, 272416, 272417, 272418, 272419, 272420, 272421} },
{"Expedition Caster's Band", {272423, 27734, 272422, 272424, 272425, 272426, 272427, 272428, 272429, 272430, 272431, 272432, 272433, 272434} },
{"Pendant of the Marsh", {272436, 27735, 272435, 272437, 272438, 272439, 272440, 272441, 272442, 272443, 272444, 272445, 272446, 272447} },
{"Moonglade Shoulders", {6027737, 27737, 122949, 427737, 1007310, 1014241, 1020909, 1027474, 1034038, 1040601, 1047164, 1053727, 1060290, 1066853} },
{"Incanter's Pauldrons", {6027738, 27738, 120655, 427738, 1007311, 1014242, 1020910, 1027475, 1034039, 1040602, 1047165, 1053728, 1060291, 1066854} },
{"Spaulders of the Righteous", {6027739, 27739, 128020, 427739, 1007314, 1014243, 1020911, 1027476, 1034040, 1040603, 1047166, 1053729, 1060292, 1066855} },
{"Band of Ursol", {6027740, 27740, 100211, 427740, 1007315, 1014244, 1020912, 1027477, 1034041, 1040604, 1047167, 1053730, 1060293, 1066856} },
{"Bleeding Hollow Warhammer", {6027741, 27741, 100325, 427741, 1007316, 1014245, 1020913, 1027478, 1034042, 1040605, 1047168, 1053731, 1060294, 1066857} },
{"Mage-Fury Girdle", {6027742, 27742, 122459, 427742, 1007317, 1014246, 1020914, 1027479, 1034043, 1040606, 1047169, 1053732, 1060295, 1066858} },
{"Girdle of Living Flame", {6027743, 27743, 117433, 427743, 1007320, 1014247, 1020915, 1027480, 1034044, 1040607, 1047170, 1053733, 1060296, 1066859} },
{"Idol of Ursoc", {6027744, 27744, 120633, 427744, 1007321, 1014248, 1020916, 1027481, 1034045, 1040608, 1047171, 1053734, 1060297, 1066860} },
{"Hungarhide Gauntlets", {6027745, 27745, 120606, 427745, 1007322, 1014249, 1020917, 1027482, 1034046, 1040609, 1047172, 1053735, 1060298, 1066861} },
{"Arcanium Signet Bands", {6027746, 27746, 100112, 427746, 1007323, 1014250, 1020918, 1027483, 1034047, 1040610, 1047173, 1053736, 1060299, 1066862} },
{"Boggspine Knuckles", {6027747, 27747, 100398, 427747, 1007324, 1014251, 1020919, 1027484, 1034048, 1040611, 1047174, 1053737, 1060300, 1066863} },
{"Cassock of the Loyal", {6027748, 27748, 100717, 427748, 1007326, 1014252, 1020920, 1027485, 1034049, 1040612, 1047175, 1053738, 1060301, 1066864} },
{"Staff of the Wild", {272449, 27749, 272448, 272450, 272451, 272452, 272453, 272454, 272455, 272456, 272457, 272458, 272459, 272460} },
{"Hammer of the Sporelings", {272462, 27750, 272461, 272463, 272464, 272465, 272466, 272467, 272468, 272469, 272470, 272471, 272472, 272473} },
{"Survivalist's Pike", {272475, 27751, 272474, 272476, 272477, 272478, 272479, 272480, 272481, 272482, 272483, 272484, 272485, 272486} },
{"Zangarmarsh Claymore", {272488, 27752, 272487, 272489, 272490, 272491, 272492, 272493, 272494, 272495, 272496, 272497, 272498, 272499} },
{"Ensorcelled Marshfang Blade", {272501, 27753, 272500, 272502, 272503, 272504, 272505, 272506, 272507, 272508, 272509, 272510, 272511, 272512} },
{"Keen Marshfang Slicer", {272514, 27754, 272513, 272515, 272516, 272517, 272518, 272519, 272520, 272521, 272522, 272523, 272524, 272525} },
{"Girdle of Gallantry", {6027755, 27755, 117431, 427755, 1007327, 1014253, 1020921, 1027486, 1034050, 1040613, 1047176, 1053739, 1060302, 1066865} },
{"Marshfang Blade Axe", {272527, 27756, 272526, 272528, 272529, 272530, 272531, 272532, 272533, 272534, 272535, 272536, 272537, 272538} },
{"Greatstaff of the Leviathan", {6027757, 27757, 120161, 427757, 1007328, 1014254, 1020922, 1027487, 1034051, 1040614, 1047177, 1053740, 1060303, 1066866} },
{"Hydra-fang Necklace", {6027758, 27758, 120613, 427758, 1007331, 1014255, 1020923, 1027488, 1034052, 1040615, 1047178, 1053741, 1060304, 1066867} },
{"Headdress of the Tides", {6027759, 27759, 120493, 427759, 1007332, 1014256, 1020924, 1027489, 1034053, 1040616, 1047179, 1053742, 1060305, 1066868} },
{"Dunewind Sash", {6027760, 27760, 103874, 427760, 1007333, 1014257, 1020925, 1027490, 1034054, 1040617, 1047180, 1053743, 1060306, 1066869} },
{"Ring of the Shadow Deeps", {6027761, 27761, 123605, 427761, 1007335, 1014258, 1020926, 1027491, 1034055, 1040618, 1047181, 1053744, 1060307, 1066870} },
{"Weathered Band of the Swamplord", {6027762, 27762, 130826, 427762, 1007336, 1014259, 1020927, 1027492, 1034056, 1040619, 1047182, 1053745, 1060308, 1066871} },
{"Crown of the Forest Lord", {6027763, 27763, 100938, 427763, 1007337, 1014260, 1020928, 1027493, 1034057, 1040620, 1047183, 1053746, 1060309, 1066872} },
{"Hands of the Sun", {6027764, 27764, 120462, 427764, 1007338, 1014261, 1020929, 1027494, 1034058, 1040621, 1047184, 1053747, 1060310, 1066873} },
{"Armwraps of Disdain", {6027765, 27765, 100141, 427765, 1007339, 1014262, 1020930, 1027495, 1034059, 1040622, 1047185, 1053748, 1060311, 1066874} },
{"Swampstone Necklace", {6027766, 27766, 129224, 427766, 1007340, 1014263, 1020931, 1027496, 1034060, 1040623, 1047186, 1053749, 1060312, 1066875} },
{"Bogreaver", {6027767, 27767, 100399, 427767, 1007345, 1014264, 1020932, 1027497, 1034061, 1040624, 1047187, 1053750, 1060313, 1066876} },
{"Oracle Belt of Timeless Mystery", {6027768, 27768, 123167, 427768, 1007346, 1014265, 1020933, 1027498, 1034062, 1040625, 1047188, 1053751, 1060314, 1066877} },
{"Endbringer", {6027769, 27769, 112978, 427769, 1007347, 1014266, 1020934, 1027499, 1034063, 1040626, 1047189, 1053752, 1060315, 1066878} },
{"Argussian Compass", {6027770, 27770, 100135, 427770, 1007349, 1014267, 1020935, 1027500, 1034064, 1040627, 1047190, 1053753, 1060316, 1066879} },
{"Doomplate Shoulderguards", {6027771, 27771, 102329, 427771, 1007350, 1014268, 1020936, 1027501, 1034065, 1040628, 1047191, 1053754, 1060317, 1066880} },
{"Stormshield of Renewal", {6027772, 27772, 128804, 427772, 1007351, 1014269, 1020937, 1027502, 1034066, 1040629, 1047192, 1053755, 1060318, 1066881} },
{"Barbaric Legstraps", {6027773, 27773, 100218, 427773, 1007352, 1014270, 1020938, 1027503, 1034067, 1040630, 1047193, 1053756, 1060319, 1066882} },
{"Hallowed Pauldrons", {6027775, 27775, 120444, 427775, 1007354, 1014271, 1020939, 1027504, 1034068, 1040631, 1047194, 1053757, 1060320, 1066883} },
{"Shoulderpads of Assassination", {6027776, 27776, 123840, 427776, 1007356, 1014272, 1020940, 1027505, 1034069, 1040632, 1047195, 1053758, 1060321, 1066884} },
{"Spaulders of Oblivion", {6027778, 27778, 128006, 427778, 1007358, 1014273, 1020941, 1027506, 1034070, 1040633, 1047196, 1053759, 1060322, 1066885} },
{"Bone Chain Necklace", {6027779, 27779, 100417, 427779, 1007359, 1014274, 1020942, 1027507, 1034071, 1040634, 1047197, 1053760, 1060323, 1066886} },
{"Ring of Fabled Hope", {6027780, 27780, 123595, 427780, 1007361, 1014275, 1020943, 1027508, 1034072, 1040635, 1047198, 1053761, 1060324, 1066887} },
{"Demonfang Ritual Helm", {6027781, 27781, 102232, 427781, 1007362, 1014276, 1020944, 1027509, 1034073, 1040636, 1047199, 1053762, 1060325, 1066888} },
{"Moonrage Girdle", {6027783, 27783, 122950, 427783, 1007363, 1014277, 1020945, 1027510, 1034074, 1040637, 1047200, 1053763, 1060326, 1066889} },
{"Scintillating Coral Band", {6027784, 27784, 123719, 427784, 1007364, 1014278, 1020946, 1027511, 1034075, 1040638, 1047201, 1053764, 1060327, 1066890} },
{"Chestguard of No Remorse", {6027787, 27787, 100736, 427787, 1007365, 1014279, 1020947, 1027512, 1034076, 1040639, 1047202, 1053765, 1060328, 1066891} },
{"Bloodsworn Warboots", {6027788, 27788, 100394, 427788, 1007366, 1014280, 1020948, 1027513, 1034077, 1040640, 1047203, 1053766, 1060329, 1066892} },
{"Cloak of Whispering Shells", {6027789, 27789, 100817, 427789, 1007367, 1014281, 1020949, 1027514, 1034078, 1040641, 1047204, 1053767, 1060330, 1066893} },
{"Mask of Penance", {6027790, 27790, 122766, 427790, 1007369, 1014282, 1020950, 1027515, 1034079, 1040642, 1047205, 1053768, 1060331, 1066894} },
{"Serpentcrest Life-Staff", {6027791, 27791, 123740, 427791, 1007370, 1014283, 1020951, 1027516, 1034080, 1040643, 1047206, 1053769, 1060332, 1066895} },
{"Steam-Hinge Chain of Valor", {6027792, 27792, 128627, 427792, 1007371, 1014284, 1020952, 1027517, 1034081, 1040644, 1047207, 1053770, 1060333, 1066896} },
{"Earth Mantle Handwraps", {6027793, 27793, 103880, 427793, 1007372, 1014285, 1020953, 1027518, 1034082, 1040645, 1047208, 1053771, 1060334, 1066897} },
{"Recoilless Rocket Ripper X-54", {6027794, 27794, 123542, 427794, 1007373, 1014286, 1020954, 1027519, 1034083, 1040646, 1047209, 1053772, 1060335, 1066898} },
{"Sash of Serpentra", {6027795, 27795, 123693, 427795, 1007374, 1014287, 1020955, 1027520, 1034084, 1040647, 1047210, 1053773, 1060336, 1066899} },
{"Mana-Etched Spaulders", {6027796, 27796, 122673, 427796, 1007375, 1014288, 1020956, 1027521, 1034085, 1040648, 1047211, 1053774, 1060337, 1066900} },
{"Wastewalker Shoulderpads", {6027797, 27797, 130820, 427797, 1007376, 1014289, 1020957, 1027522, 1034086, 1040649, 1047212, 1053775, 1060338, 1066901} },
{"Gauntlets of Vindication", {6027798, 27798, 117419, 427798, 1007377, 1014290, 1020958, 1027523, 1034087, 1040650, 1047213, 1053776, 1060339, 1066902} },
{"Vermillion Robes of the Dominant", {6027799, 27799, 130614, 427799, 1007378, 1014291, 1020959, 1027524, 1034088, 1040651, 1047214, 1053777, 1060340, 1066903} },
{"Earthsoul Britches", {6027800, 27800, 103893, 427800, 1007380, 1014292, 1020960, 1027525, 1034089, 1040652, 1047215, 1053778, 1060341, 1066904} },
{"Beast Lord Mantle", {6027801, 27801, 100247, 427801, 1007381, 1014293, 1020961, 1027526, 1034090, 1040653, 1047216, 1053779, 1060342, 1066905} },
{"Tidefury Shoulderguards", {6027802, 27802, 130424, 427802, 1007382, 1014294, 1020962, 1027527, 1034091, 1040654, 1047217, 1053780, 1060343, 1066906} },
{"Shoulderguards of the Bold", {6027803, 27803, 123837, 427803, 1007383, 1014295, 1020963, 1027528, 1034092, 1040655, 1047218, 1053781, 1060344, 1066907} },
{"Devilshark Cape", {6027804, 27804, 102308, 427804, 1007384, 1014296, 1020964, 1027529, 1034093, 1040656, 1047219, 1053782, 1060345, 1066908} },
{"Ring of the Silver Hand", {6027805, 27805, 123606, 427805, 1007385, 1014297, 1020965, 1027530, 1034094, 1040657, 1047220, 1053783, 1060346, 1066909} },
{"Fathomheart Gauntlets", {6027806, 27806, 113613, 427806, 1007386, 1014298, 1020966, 1027531, 1034095, 1040658, 1047221, 1053784, 1060347, 1066910} },
{"Boots of the Colossus", {6027813, 27813, 100457, 427813, 1007387, 1014299, 1020967, 1027532, 1034096, 1040659, 1047222, 1053785, 1060348, 1066911} },
{"Twinblade of Mastery", {6027814, 27814, 130520, 427814, 1007388, 1014300, 1020968, 1027533, 1034097, 1040660, 1047223, 1053786, 1060349, 1066912} },
{"Totem of the Astral Winds", {6027815, 27815, 130441, 427815, 1007389, 1014301, 1020969, 1027534, 1034098, 1040661, 1047224, 1053787, 1060350, 1066913} },
{"Mindrage Pauldrons", {6027816, 27816, 122896, 427816, 1007390, 1014302, 1020970, 1027535, 1034099, 1040662, 1047225, 1053788, 1060351, 1066914} },
{"Starbolt Longbow", {6027817, 27817, 128389, 427817, 1007391, 1014303, 1020971, 1027536, 1034100, 1040663, 1047226, 1053789, 1060352, 1066915} },
{"Starry Robes of the Crescent", {6027818, 27818, 128615, 427818, 1007392, 1014304, 1020972, 1027537, 1034101, 1040664, 1047227, 1053790, 1060353, 1066916} },
{"Extravagant Boots of Malice", {6027821, 27821, 113414, 427821, 1007397, 1014305, 1020973, 1027538, 1034102, 1040665, 1047228, 1053791, 1060354, 1066917} },
{"Crystal Band of Valor", {6027822, 27822, 100943, 427822, 1007398, 1014306, 1020974, 1027539, 1034103, 1040666, 1047229, 1053792, 1060355, 1066918} },
{"Shard Encrusted Breastplate", {6027823, 27823, 123799, 427823, 1007402, 1014307, 1020975, 1027540, 1034104, 1040667, 1047230, 1053793, 1060356, 1066919} },
{"Robe of the Great Dark Beyond", {6027824, 27824, 123621, 427824, 1007403, 1014308, 1020976, 1027541, 1034105, 1040668, 1047231, 1053794, 1060357, 1066920} },
{"Predatory Gloves", {6027825, 27825, 123433, 427825, 1007404, 1014309, 1020977, 1027542, 1034106, 1040669, 1047232, 1053795, 1060358, 1066921} },
{"Mantle of the Sea Wolf", {6027826, 27826, 122735, 427826, 1007406, 1014310, 1020978, 1027543, 1034107, 1040670, 1047233, 1053796, 1060359, 1066922} },
{"Lucid Dream Bracers", {6027827, 27827, 122301, 427827, 1007407, 1014311, 1020979, 1027544, 1034108, 1040671, 1047234, 1053797, 1060360, 1066923} },
{"Warp-Scarab Brooch", {6027828, 27828, 130801, 427828, 1007408, 1014312, 1020980, 1027545, 1034109, 1040672, 1047235, 1053798, 1060361, 1066924} },
{"Axe of the Nexus-Kings", {6027829, 27829, 100188, 427829, 1007411, 1014313, 1020981, 1027546, 1034110, 1040673, 1047236, 1053799, 1060362, 1066925} },
{"Mantle of the Unforgiven", {6027831, 27831, 122737, 427831, 1007412, 1014314, 1020982, 1027547, 1034111, 1040674, 1047237, 1053800, 1060363, 1066926} },
{"Stillwater Girdle", {6027835, 27835, 128635, 427835, 1007413, 1014315, 1020983, 1027548, 1034112, 1040675, 1047238, 1053801, 1060364, 1066927} },
{"Wastewalker Leggings", {6027837, 27837, 130818, 427837, 1007415, 1014316, 1020984, 1027549, 1034113, 1040676, 1047239, 1053802, 1060365, 1066928} },
{"Incanter's Trousers", {6027838, 27838, 120657, 427838, 1007416, 1014317, 1020985, 1027550, 1034114, 1040677, 1047240, 1053803, 1060366, 1066929} },
{"Legplates of the Righteous", {6027839, 27839, 120907, 427839, 1007417, 1014318, 1020986, 1027551, 1034115, 1040678, 1047241, 1053804, 1060367, 1066930} },
{"Scepter of Sha'tar", {6027840, 27840, 123715, 427840, 1007418, 1014319, 1020987, 1027552, 1034116, 1040679, 1047242, 1053805, 1060368, 1066931} },
{"Grand Scepter of the Nexus-Kings", {6027842, 27842, 120154, 427842, 1007419, 1014320, 1020988, 1027553, 1034117, 1040680, 1047243, 1053806, 1060369, 1066932} },
{"Glyph-Lined Sash", {6027843, 27843, 120124, 427843, 1007420, 1014321, 1020989, 1027554, 1034118, 1040681, 1047244, 1053807, 1060370, 1066933} },
{"Pauldrons of Swift Retribution", {6027844, 27844, 123198, 427844, 1007421, 1014322, 1020990, 1027555, 1034119, 1040682, 1047245, 1053808, 1060371, 1066934} },
{"Magma Plume Boots", {6027845, 27845, 122525, 427845, 1007422, 1014323, 1020991, 1027556, 1034120, 1040683, 1047246, 1053809, 1060372, 1066935} },
{"Claw of the Watcher", {6027846, 27846, 100779, 427846, 1007423, 1014324, 1020992, 1027557, 1034121, 1040684, 1047247, 1053810, 1060373, 1066936} },
{"Fanblade Pauldrons", {6027847, 27847, 113568, 427847, 1007425, 1014325, 1020993, 1027558, 1034122, 1040685, 1047248, 1053811, 1060374, 1066937} },
{"Embroidered Spellpyre Boots", {6027848, 27848, 112968, 427848, 1007426, 1014326, 1020994, 1027559, 1034123, 1040686, 1047249, 1053812, 1060375, 1066938} },
{"Bracers of Shirrak", {6027865, 27865, 100645, 427865, 1007428, 1014327, 1020995, 1027560, 1034124, 1040687, 1047250, 1053813, 1060376, 1066939} },
{"Scintillating Headdress of Second Sight", {6027866, 27866, 123720, 427866, 1007429, 1014328, 1020996, 1027561, 1034125, 1040688, 1047251, 1053814, 1060377, 1066940} },
{"Boots of the Unjust", {6027867, 27867, 100476, 427867, 1007430, 1014329, 1020997, 1027562, 1034126, 1040689, 1047252, 1053815, 1060378, 1066941} },
{"Runesong Dagger", {6027868, 27868, 123652, 427868, 1007431, 1014330, 1020998, 1027563, 1034127, 1040690, 1047253, 1053816, 1060379, 1066942} },
{"Doomplate Legguards", {6027870, 27870, 102328, 427870, 1007433, 1014332, 1021000, 1027565, 1034129, 1040692, 1047255, 1053818, 1060381, 1066944} },
{"Maladaar's Blessed Chaplet", {6027871, 27871, 122587, 427871, 1007434, 1014333, 1021001, 1027566, 1034130, 1040693, 1047256, 1053819, 1060382, 1066945} },
{"The Harvester of Souls", {6027872, 27872, 130338, 427872, 1007436, 1014334, 1021002, 1027567, 1034131, 1040694, 1047257, 1053820, 1060383, 1066946} },
{"Moonglade Pants", {6027873, 27873, 122947, 427873, 1007437, 1014335, 1021003, 1027568, 1034132, 1040695, 1047258, 1053821, 1060384, 1066947} },
{"Beast Lord Leggings", {6027874, 27874, 100246, 427874, 1007438, 1014336, 1021004, 1027569, 1034133, 1040696, 1047259, 1053822, 1060385, 1066948} },
{"Hallowed Trousers", {6027875, 27875, 120445, 427875, 1007439, 1014337, 1021005, 1027570, 1034134, 1040697, 1047260, 1053823, 1060386, 1066949} },
{"Draenic Wildstaff", {6027877, 27877, 102346, 427877, 1007441, 1014339, 1021007, 1027572, 1034136, 1040699, 1047262, 1053825, 1060388, 1066951} },
{"Auchenai Death Shroud", {6027878, 27878, 100175, 427878, 1007442, 1014340, 1021008, 1027573, 1034137, 1040700, 1047263, 1053826, 1060389, 1066952} },
{"Ornate Boots of the Sanctified", {6027884, 27884, 123172, 427884, 1007443, 1014341, 1021009, 1027574, 1034138, 1040701, 1047264, 1053827, 1060390, 1066953} },
{"Soul-Wand of the Aldor", {6027885, 27885, 127757, 427885, 1007444, 1014342, 1021010, 1027575, 1034139, 1040702, 1047265, 1053828, 1060391, 1066954} },
{"Idol of the Emerald Queen", {6027886, 27886, 120628, 427886, 1007445, 1014343, 1021011, 1027576, 1034140, 1040703, 1047266, 1053829, 1060392, 1066955} },
{"Platinum Shield of the Valorous", {6027887, 27887, 123418, 427887, 1007446, 1014344, 1021012, 1027577, 1034141, 1040704, 1047267, 1053830, 1060393, 1066956} },
{"Dream-Wing Helm", {6027888, 27888, 102390, 427888, 1007447, 1014345, 1021013, 1027578, 1034142, 1040705, 1047268, 1053831, 1060394, 1066957} },
{"Jaedenfire Gloves of Annihilation", {6027889, 27889, 120708, 427889, 1007448, 1014346, 1021014, 1027579, 1034143, 1040706, 1047269, 1053832, 1060395, 1066958} },
{"Wand of the Netherwing", {6027890, 27890, 130757, 427890, 1007449, 1014347, 1021015, 1027580, 1034144, 1040707, 1047270, 1053833, 1060396, 1066959} },
{"Adamantine Figurine", {6027891, 27891, 100027, 427891, 1007450, 1014348, 1021016, 1027581, 1034145, 1040708, 1047271, 1053834, 1060397, 1066960} },
{"Cloak of the Inciter", {6027892, 27892, 100816, 427892, 1007452, 1014349, 1021017, 1027582, 1034146, 1040709, 1047272, 1053835, 1060398, 1066961} },
{"Ornate Leggings of the Venerated", {6027893, 27893, 123173, 427893, 1007453, 1014350, 1021018, 1027583, 1034147, 1040710, 1047273, 1053836, 1060399, 1066962} },
{"Band of Many Prisms", {6027895, 27895, 100204, 427895, 1007456, 1014351, 1021019, 1027584, 1034148, 1040711, 1047274, 1053837, 1060400, 1066963} },
{"Breastplate of Many Graces", {6027897, 27897, 100675, 427897, 1007458, 1014353, 1021021, 1027586, 1034150, 1040713, 1047276, 1053839, 1060402, 1066965} },
{"Wrathfire Hand-Cannon", {6027898, 27898, 130969, 427898, 1007459, 1014354, 1021022, 1027587, 1034151, 1040714, 1047277, 1053840, 1060403, 1066966} },
{"Mana Wrath", {6027899, 27899, 122669, 427899, 1007461, 1014355, 1021023, 1027588, 1034152, 1040715, 1047278, 1053841, 1060404, 1066967} },
{"Jewel of Charismatic Mystique", {6027900, 27900, 120720, 427900, 1007462, 1014356, 1021024, 1027589, 1034153, 1040716, 1047279, 1053842, 1060405, 1066968} },
{"Blackout Truncheon", {6027901, 27901, 100307, 427901, 1007463, 1014357, 1021025, 1027590, 1034154, 1040717, 1047280, 1053843, 1060406, 1066969} },
{"Silent Slippers of Meditation", {6027902, 27902, 123886, 427902, 1007464, 1014358, 1021026, 1027591, 1034155, 1040718, 1047281, 1053844, 1060407, 1066970} },
{"Sonic Spear", {6027903, 27903, 127688, 427903, 1007467, 1014359, 1021027, 1027592, 1034156, 1040719, 1047282, 1053845, 1060408, 1066971} },
{"Resounding Ring of Glory", {6027904, 27904, 123579, 427904, 1007469, 1014360, 1021028, 1027593, 1034157, 1040720, 1047283, 1053846, 1060409, 1066972} },
{"Greatsword of Horrid Dreams", {6027905, 27905, 120171, 427905, 1007472, 1014361, 1021029, 1027594, 1034158, 1040721, 1047284, 1053847, 1060410, 1066973} },
{"Crimsonforge Breastplate", {6027906, 27906, 100919, 427906, 1007473, 1014362, 1021030, 1027595, 1034159, 1040722, 1047285, 1053848, 1060411, 1066974} },
{"Mana-Etched Pantaloons", {6027907, 27907, 122672, 427907, 1007474, 1014363, 1021031, 1027596, 1034160, 1040723, 1047286, 1053849, 1060412, 1066975} },
{"Leggings of Assassination", {6027908, 27908, 120851, 427908, 1007475, 1014364, 1021032, 1027597, 1034161, 1040724, 1047287, 1053850, 1060413, 1066976} },
{"Tidefury Kilt", {6027909, 27909, 130423, 427909, 1007477, 1014365, 1021033, 1027598, 1034162, 1040725, 1047288, 1053851, 1060414, 1066977} },
{"Silvermoon Crest Shield", {6027910, 27910, 124021, 427910, 1007478, 1014366, 1021034, 1027599, 1034163, 1040726, 1047289, 1053852, 1060415, 1066978} },
{"Epoch's Whispering Cinch", {6027911, 27911, 112984, 427911, 1007479, 1014367, 1021035, 1027600, 1034164, 1040727, 1047290, 1053853, 1060416, 1066979} },
{"Harness of the Deep Currents", {6027912, 27912, 120470, 427912, 1007480, 1014368, 1021036, 1027601, 1034165, 1040728, 1047291, 1053854, 1060417, 1066980} },
{"Whispering Blade of Slaying", {6027913, 27913, 130830, 427913, 1007481, 1014369, 1021037, 1027602, 1034166, 1040729, 1047292, 1053855, 1060418, 1066981} },
{"Moonstrider Boots", {6027914, 27914, 122951, 427914, 1007482, 1014370, 1021038, 1027603, 1034167, 1040730, 1047293, 1053856, 1060419, 1066982} },
{"Sky-Hunter Swift Boots", {6027915, 27915, 124091, 427915, 1007484, 1014371, 1021039, 1027604, 1034168, 1040731, 1047294, 1053857, 1060420, 1066983} },
{"Sethekk Feather-Darts", {6027916, 27916, 123745, 427916, 1007485, 1014372, 1021040, 1027605, 1034169, 1040732, 1047295, 1053858, 1060421, 1066984} },
{"Libram of the Eternal Rest", {6027917, 27917, 120965, 427917, 1007486, 1014373, 1021041, 1027606, 1034170, 1040733, 1047296, 1053859, 1060422, 1066985} },
{"Bands of Syth", {6027918, 27918, 100215, 427918, 1007487, 1014374, 1021042, 1027607, 1034171, 1040734, 1047297, 1053860, 1060423, 1066986} },
{"Light-Woven Slippers", {6027919, 27919, 121497, 427919, 1007488, 1014375, 1021043, 1027608, 1034172, 1040735, 1047298, 1053861, 1060424, 1066987} },
{"Mark of Conquest", {6027920, 27920, 272587, 272588, 272589, 272590, 272591, 272592, 272593, 272594, 272595, 272596, 272597, 272598} },
{"Mark of Conquest", {6027921, 27921, 272599, 272600, 272601, 272602, 272603, 272604, 272605, 272606, 272607, 272608, 272609, 272610} },
{"Mark of Defiance", {6027922, 27922, 272611, 272612, 272613, 272614, 272615, 272616, 272617, 272618, 272619, 272620, 272621, 272622} },
{"Mark of Defiance", {6027924, 27924, 272623, 272624, 272625, 272626, 272627, 272628, 272629, 272630, 272631, 272632, 272633, 272634} },
{"Ravenclaw Band", {6027925, 27925, 123512, 427925, 1007489, 1014376, 1021044, 1027609, 1034173, 1040736, 1047299, 1053862, 1060425, 1066988} },
{"Mark of Vindication", {6027926, 27926, 272635, 272636, 272637, 272638, 272639, 272640, 272641, 272642, 272643, 272644, 272645, 272646} },
{"Mark of Vindication", {6027927, 27927, 272647, 272648, 272649, 272650, 272651, 272652, 272653, 272654, 272655, 272656, 272657, 272658} },
{"Terminal Edge", {6027928, 27928, 272659, 272660, 272661, 272662, 272663, 272664, 272665, 272666, 272667, 272668, 272669, 272670} },
{"Terminal Edge", {6027929, 27929, 272671, 272672, 272673, 272674, 272675, 272676, 272677, 272678, 272679, 272680, 272681, 272682} },
{"Splintermark", {6027930, 27930, 272683, 272684, 272685, 272686, 272687, 272688, 272689, 272690, 272691, 272692, 272693, 272694} },
{"Splintermark", {6027931, 27931, 272695, 272696, 272697, 272698, 272699, 272700, 272701, 272702, 272703, 272704, 272705, 272706} },
{"Greaves of Desolation", {6027936, 27936, 120173, 427936, 1007491, 1014377, 1021045, 1027610, 1034174, 1040737, 1047300, 1053863, 1060426, 1066989} },
{"Sky Breaker", {6027937, 27937, 124087, 427937, 1007492, 1014378, 1021046, 1027611, 1034175, 1040738, 1047301, 1053864, 1060427, 1066990} },
{"Savage Mask of the Lynx Lord", {6027938, 27938, 123695, 427938, 1007493, 1014379, 1021047, 1027612, 1034176, 1040739, 1047302, 1053865, 1060428, 1066991} },
{"Incendic Rod", {6027939, 27939, 272707, 272708, 272709, 272710, 272711, 272712, 272713, 272714, 272715, 272716, 272717, 272718} },
{"Incendic Rod", {6027942, 27942, 272719, 272720, 272721, 272722, 272723, 272724, 272725, 272726, 272727, 272728, 272729, 272730} },
{"Avian Cloak of Feathers", {6027946, 27946, 100180, 427946, 1007494, 1014380, 1021048, 1027613, 1034177, 1040740, 1047303, 1053866, 1060429, 1066992} },
{"Totem of Impact", {6027947, 27947, 272731, 272732, 272733, 272734, 272735, 272736, 272737, 272738, 272739, 272740, 272741, 272742} },
{"Trousers of Oblivion", {6027948, 27948, 130473, 427948, 1007496, 1014381, 1021049, 1027614, 1034178, 1040741, 1047304, 1053867, 1060430, 1066993} },
{"Libram of Zeal", {6027949, 27949, 272743, 272744, 272745, 272746, 272747, 272748, 272749, 272750, 272751, 272752, 272753, 272754} },
{"TEST 130 Epic Paladin DPS Chest", {6027965, 27965, 272755, 272756, 272757, 272758, 272759, 272760, 272761, 272762, 272763, 272764, 272765, 272766} },
{"Legplates of the Bold", {6027977, 27977, 120905, 427977, 1007498, 1014382, 1021050, 1027615, 1034179, 1040742, 1047305, 1053868, 1060431, 1066994} },
{"Terokk's Nightmace", {6027980, 27980, 130059, 427980, 1007500, 1014383, 1021051, 1027616, 1034180, 1040743, 1047306, 1053869, 1060432, 1066995} },
{"Sethekk Oracle Cloak", {6027981, 27981, 123746, 427981, 1007501, 1014384, 1021052, 1027617, 1034181, 1040744, 1047307, 1053870, 1060433, 1066996} },
{"Libram of Zeal", {6027983, 27983, 272767, 272768, 272769, 272770, 272771, 272772, 272773, 272774, 272775, 272776, 272777, 272778} },
{"Totem of Impact", {6027984, 27984, 272779, 272780, 272781, 272782, 272783, 272784, 272785, 272786, 272787, 272788, 272789, 272790} },
{"Deathforge Girdle", {6027985, 27985, 101021, 427985, 1007502, 1014385, 1021053, 1027618, 1034182, 1040745, 1047308, 1053871, 1060434, 1066997} },
{"Crow Wing Reaper", {6027986, 27986, 100925, 427986, 1007503, 1014386, 1021054, 1027619, 1034183, 1040746, 1047309, 1053872, 1060435, 1066998} },
{"Melmorta's Twilight Longbow", {6027987, 27987, 122780, 427987, 1007504, 1014387, 1021055, 1027620, 1034184, 1040747, 1047310, 1053873, 1060436, 1066999} },
{"Burnoose of Shifting Ages", {6027988, 27988, 100702, 427988, 1007505, 1014388, 1021056, 1027621, 1034185, 1040748, 1047311, 1053874, 1060437, 1067000} },
{"Idol of Savagery", {6027989, 27989, 272791, 272792, 272793, 272794, 272795, 272796, 272797, 272798, 272799, 272800, 272801, 272802} },
{"Idol of Savagery", {6027990, 27990, 272803, 272804, 272805, 272806, 272807, 272808, 272809, 272810, 272811, 272812, 272813, 272814} },
{"Mask of Inner Fire", {6027993, 27993, 122765, 427993, 1007507, 1014389, 1021057, 1027622, 1034186, 1040749, 1047312, 1053875, 1060438, 1067001} },
{"Mantle of Three Terrors", {6027994, 27994, 122738, 427994, 1007509, 1014390, 1021058, 1027623, 1034187, 1040750, 1047313, 1053876, 1060439, 1067002} },
{"Sun-Gilded Shouldercaps", {6027995, 27995, 128916, 427995, 1007510, 1014391, 1021059, 1027624, 1034188, 1040751, 1047314, 1053877, 1060440, 1067003} },
{"Ring of Spiritual Precision", {6027996, 27996, 123599, 427996, 1007513, 1014392, 1021060, 1027625, 1034189, 1040752, 1047315, 1053878, 1060441, 1067004} },
{"Crazy Cenarion Cloak", {272816, 28026, 272815, 272817, 272818, 272819, 272820, 272821, 272822, 272823, 272824, 272825, 272826, 272827} },
{"Lunatic's Choker", {272829, 28027, 272828, 272830, 272831, 272832, 272833, 272834, 272835, 272836, 272837, 272838, 272839, 272840} },
{"Moonstruck Bands", {272842, 28028, 272841, 272843, 272844, 272845, 272846, 272847, 272848, 272849, 272850, 272851, 272852, 272853} },
{"Goldenvine Wraps", {6028029, 28029, 272854, 272855, 272856, 272857, 272858, 272859, 272860, 272861, 272862, 272863, 272864, 272865} },
{"Spell-slinger's Protector", {6028030, 28030, 272866, 272867, 272868, 272869, 272870, 272871, 272872, 272873, 272874, 272875, 272876, 272877} },
{"Nomad's Woven Cloak", {6028031, 28031, 272878, 272879, 272880, 272881, 272882, 272883, 272884, 272885, 272886, 272887, 272888, 272889} },
{"Delicate Green Poncho", {6028032, 28032, 272890, 272891, 272892, 272893, 272894, 272895, 272896, 272897, 272898, 272899, 272900, 272901} },
{"Epoch-Mender", {6028033, 28033, 112985, 428033, 1007514, 1014393, 1021061, 1027626, 1034190, 1040753, 1047316, 1053879, 1060442, 1067005} },
{"Hourglass of the Unraveller", {6028034, 28034, 120603, 428034, 1007515, 1014394, 1021062, 1027627, 1034191, 1040754, 1047317, 1053880, 1060443, 1067006} },
{"Vengeance of the Illidari", {6028040, 28040, 272902, 272903, 272904, 272905, 272906, 272907, 272908, 272909, 272910, 272911, 272912, 272913} },
{"Bladefist's Breadth", {6028041, 28041, 272914, 272915, 272916, 272917, 272918, 272919, 272920, 272921, 272922, 272923, 272924, 272925} },
{"Regal Protectorate", {6028042, 28042, 272926, 272927, 272928, 272929, 272930, 272931, 272932, 272933, 272934, 272935, 272936, 272937} },
{"Demon Stalker Pendant", {272939, 28043, 272938, 272940, 272941, 272942, 272943, 272944, 272945, 272946, 272947, 272948, 272949, 272950} },
{"Band of the Demon Stalker", {272952, 28044, 272951, 272953, 272954, 272955, 272956, 272957, 272958, 272959, 272960, 272961, 272962, 272963} },
{"Cloak of the Demon Stalker", {272965, 28045, 272964, 272966, 272967, 272968, 272969, 272970, 272971, 272972, 272973, 272974, 272975, 272976} },
{"Sacred Feather Vest", {6028050, 28050, 272977, 272978, 272979, 272980, 272981, 272982, 272983, 272984, 272985, 272986, 272987, 272988} },
{"Jerkin of the Untamed Spirit", {6028051, 28051, 272989, 272990, 272991, 272992, 272993, 272994, 272995, 272996, 272997, 272998, 272999, 273000} },
{"Goldweave Tunic", {6028052, 28052, 273001, 273002, 273003, 273004, 273005, 273006, 273007, 273008, 273009, 273010, 273011, 273012} },
{"Fleshripper's Bladed Chestplate", {6028054, 28054, 273013, 273014, 273015, 273016, 273017, 273018, 273019, 273020, 273021, 273022, 273023, 273024} },
{"Gilded Crimson Chestplate", {6028055, 28055, 273025, 273026, 273027, 273028, 273029, 273030, 273031, 273032, 273033, 273034, 273035, 273036} },
{"Bonechewer Berserker's Vest", {6028057, 28057, 273037, 273038, 273039, 273040, 273041, 273042, 273043, 273044, 273045, 273046, 273047, 273048} },
{"Expedition Repeater", {273050, 28062, 273049, 273051, 273052, 273053, 273054, 273055, 273056, 273057, 273058, 273059, 273060, 273061} },
{"Survivalist's Wand", {273063, 28063, 273062, 273064, 273065, 273066, 273067, 273068, 273069, 273070, 273071, 273072, 273073, 273074} },
{"Golden Cenarion Greaves", {6028069, 28069, 273114, 273115, 273116, 273117, 273118, 273119, 273120, 273121, 273122, 273123, 273124, 273125} },
{"Verdant Handwraps", {6028070, 28070, 273126, 273127, 273128, 273129, 273130, 273131, 273132, 273133, 273134, 273135, 273136, 273137} },
{"Studded Green Anklewraps", {6028074, 28074, 273138, 273139, 273140, 273141, 273142, 273143, 273144, 273145, 273146, 273147, 273148, 273149} },
{"Destroyers' Mantle", {6028075, 28075, 273150, 273151, 273152, 273153, 273154, 273155, 273156, 273157, 273158, 273159, 273160, 273161} },
{"Power Infused Mushroom", {6028108, 28108, 273162, 273163, 273164, 273165, 273166, 273167, 273168, 273169, 273170, 273171, 273172, 273173} },
{"Essence Infused Mushroom", {6028109, 28109, 273174, 273175, 273176, 273177, 273178, 273179, 273180, 273181, 273182, 273183, 273184, 273185} },
{"Icon of Unyielding Courage", {6028121, 28121, 120615, 428121, 1007516, 1014396, 1021063, 1027628, 1034192, 1040755, 1047318, 1053881, 1060444, 1067007} },
{"Liar's Cord", {6028124, 28124, 120962, 428124, 1007517, 1014397, 1021064, 1027629, 1034193, 1040756, 1047319, 1053882, 1060445, 1067008} },
{"Brooch of Heightened Potential", {6028134, 28134, 100694, 428134, 1007518, 1014398, 1021065, 1027630, 1034194, 1040757, 1047320, 1053883, 1060446, 1067009} },
{"Shield of the Void", {6028166, 28166, 123827, 428166, 1007519, 1014399, 1021066, 1027631, 1034195, 1040758, 1047321, 1053884, 1060447, 1067010} },
{"Sha'tari Wrought Armguards", {6028167, 28167, 273498, 273499, 273500, 273501, 273502, 273503, 273504, 273505, 273506, 273507, 273508, 273509} },
{"Insignia of the Mag'hari Hero", {6028168, 28168, 273510, 273511, 273512, 273513, 273514, 273515, 273516, 273517, 273518, 273519, 273520, 273521} },
{"Mag'hari Ritualist's Horns", {6028169, 28169, 273522, 273523, 273524, 273525, 273526, 273527, 273528, 273529, 273530, 273531, 273532, 273533} },
{"Auchenai Bracers", {6028170, 28170, 273534, 273535, 273536, 273537, 273538, 273539, 273540, 273541, 273542, 273543, 273544, 273545} },
{"Spymistress's Wristguards", {6028171, 28171, 273546, 273547, 273548, 273549, 273550, 273551, 273552, 273553, 273554, 273555, 273556, 273557} },
{"Mag'hari Scout's Tunic", {6028172, 28172, 273558, 273559, 273560, 273561, 273562, 273563, 273564, 273565, 273566, 273567, 273568, 273569} },
{"Mag'hari Huntsman's Leggings", {6028173, 28173, 273570, 273571, 273572, 273573, 273574, 273575, 273576, 273577, 273578, 273579, 273580, 273581} },
{"Shattrath Wraps", {6028174, 28174, 273582, 273583, 273584, 273585, 273586, 273587, 273588, 273589, 273590, 273591, 273592, 273593} },
{"Mag'hari Warlord's Legplates", {6028175, 28175, 273594, 273595, 273596, 273597, 273598, 273599, 273600, 273601, 273602, 273603, 273604, 273605} },
{"Sha'tari Wrought Greaves", {6028176, 28176, 273606, 273607, 273608, 273609, 273610, 273611, 273612, 273613, 273614, 273615, 273616, 273617} },
{"Auchenai Boots", {6028177, 28177, 273618, 273619, 273620, 273621, 273622, 273623, 273624, 273625, 273626, 273627, 273628, 273629} },
{"Spymistress's Boots", {6028178, 28178, 273630, 273631, 273632, 273633, 273634, 273635, 273636, 273637, 273638, 273639, 273640, 273641} },
{"Shattrath Jumpers", {6028179, 28179, 273642, 273643, 273644, 273645, 273646, 273647, 273648, 273649, 273650, 273651, 273652, 273653} },
{"Myrmidon's Headdress", {6028180, 28180, 273654, 273655, 273656, 273657, 273658, 273659, 273660, 273661, 273662, 273663, 273664, 273665} },
{"Earthwarden's Coif", {6028181, 28181, 273666, 273667, 273668, 273669, 273670, 273671, 273672, 273673, 273674, 273675, 273676, 273677} },
{"Helm of the Claw", {6028182, 28182, 273678, 273679, 273680, 273681, 273682, 273683, 273684, 273685, 273686, 273687, 273688, 273689} },
{"Hydromancer's Headwrap", {6028183, 28183, 273690, 273691, 273692, 273693, 273694, 273695, 273696, 273697, 273698, 273699, 273700, 273701} },
{"Millennium Blade", {6028184, 28184, 122892, 428184, 1007520, 1014400, 1021067, 1027632, 1034196, 1040759, 1047322, 1053885, 1060448, 1067011} },
{"Khadgar's Kilt of Abjuration", {6028185, 28185, 120748, 428185, 1007521, 1014401, 1021068, 1027633, 1034197, 1040760, 1047323, 1053886, 1060449, 1067012} },
{"Laughing Skull Battle-Harness", {6028186, 28186, 120820, 428186, 1007522, 1014402, 1021069, 1027634, 1034198, 1040761, 1047324, 1053887, 1060450, 1067013} },
{"Star-Heart Lamp", {6028187, 28187, 128388, 428187, 1007523, 1014403, 1021070, 1027635, 1034199, 1040762, 1047325, 1053888, 1060451, 1067014} },
{"Bloodfire Greatstaff", {6028188, 28188, 100352, 428188, 1007524, 1014404, 1021071, 1027636, 1034200, 1040763, 1047326, 1053889, 1060452, 1067015} },
{"Latro's Shifting Sword", {6028189, 28189, 120819, 428189, 1007525, 1014406, 1021072, 1027637, 1034201, 1040764, 1047327, 1053890, 1060453, 1067016} },
{"Scarab of the Infinite Cycle", {6028190, 28190, 123708, 428190, 1007526, 1014407, 1021073, 1027638, 1034202, 1040765, 1047328, 1053891, 1060454, 1067017} },
{"Mana-Etched Vestments", {6028191, 28191, 122675, 428191, 1007527, 1014408, 1021074, 1027639, 1034203, 1040766, 1047329, 1053892, 1060455, 1067018} },
{"Helm of Desolation", {6028192, 28192, 120544, 428192, 1007528, 1014409, 1021075, 1027640, 1034204, 1040767, 1047330, 1053893, 1060456, 1067019} },
{"Mana-Etched Crown", {6028193, 28193, 122670, 428193, 1007529, 1014410, 1021076, 1027641, 1034205, 1040768, 1047331, 1053894, 1060457, 1067020} },
{"Primal Surge Bracers", {6028194, 28194, 123455, 428194, 1007530, 1014411, 1021077, 1027642, 1034206, 1040769, 1047332, 1053895, 1060458, 1067021} },
{"Moonglade Robe", {6028202, 28202, 122948, 428202, 1007531, 1014412, 1021078, 1027643, 1034207, 1040770, 1047333, 1053896, 1060459, 1067022} },
{"Breastplate of the Righteous", {6028203, 28203, 100682, 428203, 1007532, 1014413, 1021079, 1027644, 1034208, 1040771, 1047334, 1053897, 1060460, 1067023} },
{"Tunic of Assassination", {6028204, 28204, 130478, 428204, 1007533, 1014414, 1021080, 1027645, 1034209, 1040772, 1047335, 1053898, 1060461, 1067024} },
{"Breastplate of the Bold", {6028205, 28205, 100680, 428205, 1007534, 1014415, 1021081, 1027646, 1034210, 1040773, 1047336, 1053899, 1060462, 1067025} },
{"Cowl of the Guiltless", {6028206, 28206, 100908, 428206, 1007535, 1014416, 1021082, 1027647, 1034211, 1040774, 1047337, 1053900, 1060463, 1067026} },
{"Pauldrons of the Crimson Flight", {6028207, 28207, 123200, 428207, 1007536, 1014417, 1021083, 1027648, 1034212, 1040775, 1047338, 1053901, 1060464, 1067027} },
{"Bloodskull Destroyer", {6028210, 28210, 100392, 428210, 1007537, 1014418, 1021084, 1027649, 1034213, 1040776, 1047339, 1053902, 1060465, 1067028} },
{"Lieutenant's Signet of Lordaeron", {6028211, 28211, 120967, 428211, 1007538, 1014419, 1021085, 1027650, 1034214, 1040777, 1047340, 1053903, 1060466, 1067029} },
{"Aran's Sorcerous Slacks", {6028212, 28212, 100107, 428212, 1007539, 1014420, 1021086, 1027651, 1034215, 1040778, 1047341, 1053904, 1060467, 1067030} },
{"Lordaeron Medical Guide", {6028213, 28213, 122290, 428213, 1007540, 1014421, 1021087, 1027652, 1034216, 1040779, 1047342, 1053905, 1060468, 1067031} },
{"Grips of the Lunar Eclipse", {6028214, 28214, 120296, 428214, 1007541, 1014422, 1021088, 1027653, 1034217, 1040780, 1047343, 1053906, 1060469, 1067032} },
{"Mok'Nathal Mask of Battle", {6028215, 28215, 122927, 428215, 1007542, 1014423, 1021089, 1027654, 1034218, 1040781, 1047344, 1053907, 1060470, 1067033} },
{"Dathrohan's Ceremonial Hammer", {6028216, 28216, 101014, 428216, 1007543, 1014424, 1021090, 1027655, 1034219, 1040782, 1047345, 1053908, 1060471, 1067034} },
{"Pontiff's Pantaloons of Prophecy", {6028218, 28218, 123429, 428218, 1007545, 1014426, 1021092, 1027657, 1034221, 1040784, 1047347, 1053910, 1060473, 1067036} },
{"Emerald-Scale Greaves", {6028219, 28219, 112973, 428219, 1007546, 1014427, 1021093, 1027658, 1034222, 1040785, 1047348, 1053911, 1060474, 1067037} },
{"Moon-Crown Antlers", {6028220, 28220, 122940, 428220, 1007547, 1014428, 1021094, 1027659, 1034223, 1040786, 1047349, 1053912, 1060475, 1067038} },
{"Boots of the Watchful Heart", {6028221, 28221, 100477, 428221, 1007548, 1014429, 1021095, 1027660, 1034224, 1040787, 1047350, 1053913, 1060476, 1067039} },
{"Arcanist's Stone", {6028223, 28223, 100111, 428223, 1007550, 1014431, 1021097, 1027662, 1034226, 1040789, 1047352, 1053915, 1060478, 1067041} },
{"Wastewalker Helm", {6028224, 28224, 130817, 428224, 1007551, 1014432, 1021098, 1027663, 1034227, 1040790, 1047353, 1053916, 1060479, 1067042} },
{"Doomplate Warhelm", {6028225, 28225, 102330, 428225, 1007552, 1014433, 1021099, 1027664, 1034228, 1040791, 1047354, 1053917, 1060480, 1067043} },
{"Timeslicer", {6028226, 28226, 130433, 428226, 1007553, 1014434, 1021100, 1027665, 1034229, 1040792, 1047355, 1053918, 1060481, 1067044} },
{"Sparking Arcanite Ring", {6028227, 28227, 128002, 428227, 1007554, 1014435, 1021101, 1027666, 1034230, 1040793, 1047356, 1053919, 1060482, 1067045} },
{"Beast Lord Cuirass", {6028228, 28228, 100243, 428228, 1007555, 1014436, 1021102, 1027667, 1034231, 1040794, 1047357, 1053920, 1060483, 1067046} },
{"Incanter's Robe", {6028229, 28229, 120656, 428229, 1007556, 1014437, 1021103, 1027668, 1034232, 1040795, 1047358, 1053921, 1060484, 1067047} },
{"Hallowed Garments", {6028230, 28230, 120442, 428230, 1007557, 1014438, 1021104, 1027669, 1034233, 1040796, 1047359, 1053922, 1060485, 1067048} },
{"Tidefury Chestpiece", {6028231, 28231, 130420, 428231, 1007558, 1014439, 1021105, 1027670, 1034234, 1040797, 1047360, 1053923, 1060486, 1067049} },
{"Robe of Oblivion", {6028232, 28232, 123620, 428232, 1007559, 1014440, 1021106, 1027671, 1034235, 1040798, 1047361, 1053924, 1060487, 1067050} },
{"Necklace of Resplendent Hope", {6028233, 28233, 122987, 428233, 1007560, 1014441, 1021107, 1027672, 1034236, 1040799, 1047362, 1053925, 1060488, 1067051} },
{"Totem of the Void", {6028248, 28248, 130443, 428248, 1007561, 1014442, 1021108, 1027673, 1034237, 1040800, 1047363, 1053926, 1060489, 1067052} },
{"Capacitus' Cloak of Calibration", {6028249, 28249, 100708, 428249, 1007562, 1014443, 1021109, 1027674, 1034238, 1040801, 1047364, 1053927, 1060490, 1067053} },
{"Vestia's Pauldrons of Inner Grace", {6028250, 28250, 130624, 428250, 1007563, 1014444, 1021110, 1027675, 1034239, 1040802, 1047365, 1053928, 1060491, 1067054} },
{"Boots of the Glade-Keeper", {6028251, 28251, 100468, 428251, 1007564, 1014445, 1021111, 1027676, 1034240, 1040803, 1047366, 1053929, 1060492, 1067055} },
{"Bloodfyre Robes of Annihilation", {6028252, 28252, 100371, 428252, 1007565, 1014446, 1021112, 1027677, 1034241, 1040804, 1047367, 1053930, 1060493, 1067056} },
{"Plasma Rat's Hyper-Scythe", {6028253, 28253, 123415, 428253, 1007566, 1014447, 1021113, 1027678, 1034242, 1040805, 1047368, 1053931, 1060494, 1067057} },
{"Warp Engineer's Prismatic Chain", {6028254, 28254, 130798, 428254, 1007567, 1014448, 1021114, 1027679, 1034243, 1040806, 1047369, 1053932, 1060495, 1067058} },
{"Lunar-Claw Pauldrons", {6028255, 28255, 122397, 428255, 1007568, 1014449, 1021115, 1027680, 1034244, 1040807, 1047370, 1053933, 1060496, 1067059} },
{"Thoriumweave Cloak", {6028256, 28256, 130349, 428256, 1007569, 1014450, 1021116, 1027681, 1034245, 1040808, 1047371, 1053934, 1060497, 1067060} },
{"Hammer of the Penitent", {6028257, 28257, 120450, 428257, 1007570, 1014451, 1021117, 1027682, 1034246, 1040809, 1047372, 1053935, 1060498, 1067061} },
{"Nethershrike", {6028258, 28258, 123013, 428258, 1007571, 1014452, 1021118, 1027683, 1034247, 1040810, 1047373, 1053936, 1060499, 1067062} },
{"Cosmic Lifeband", {6028259, 28259, 100900, 428259, 1007572, 1014453, 1021119, 1027684, 1034248, 1040811, 1047374, 1053937, 1060500, 1067063} },
{"Manual of the Nethermancer", {6028260, 28260, 122739, 428260, 1007573, 1014454, 1021120, 1027685, 1034249, 1040812, 1047375, 1053938, 1060501, 1067064} },
{"Jade-Skull Breastplate", {6028262, 28262, 120706, 428262, 1007574, 1014455, 1021121, 1027686, 1034250, 1040813, 1047376, 1053939, 1060502, 1067065} },
{"Stellaris", {6028263, 28263, 128631, 428263, 1007575, 1014456, 1021122, 1027687, 1034251, 1040814, 1047377, 1053940, 1060503, 1067066} },
{"Wastewalker Tunic", {6028264, 28264, 130821, 428264, 1007576, 1014457, 1021123, 1027688, 1034252, 1040815, 1047378, 1053941, 1060504, 1067067} },
{"Dath'Remar's Ring of Defense", {6028265, 28265, 101013, 428265, 1007577, 1014458, 1021124, 1027689, 1034253, 1040816, 1047379, 1053942, 1060505, 1067068} },
{"Molten Earth Kilt", {6028266, 28266, 122934, 428266, 1007578, 1014459, 1021125, 1027690, 1034254, 1040817, 1047380, 1053943, 1060506, 1067069} },
{"Edge of the Cosmos", {6028267, 28267, 103895, 428267, 1007579, 1014460, 1021126, 1027691, 1034255, 1040818, 1047381, 1053944, 1060507, 1067070} },
{"Natural Mender's Wraps", {6028268, 28268, 122983, 428268, 1007580, 1014461, 1021127, 1027692, 1034256, 1040819, 1047382, 1053945, 1060508, 1067071} },
{"Baba's Cloak of Arcanistry", {6028269, 28269, 100193, 428269, 1007581, 1014462, 1021128, 1027693, 1034257, 1040820, 1047383, 1053946, 1060509, 1067072} },
{"Beast Lord Helm", {6028275, 28275, 100245, 428275, 1007582, 1014463, 1021129, 1027694, 1034258, 1040821, 1047384, 1053947, 1060510, 1067073} },
{"Incanter's Cowl", {6028278, 28278, 120653, 428278, 1007583, 1014464, 1021130, 1027695, 1034259, 1040822, 1047385, 1053948, 1060511, 1067074} },
{"Helm of the Righteous", {6028285, 28285, 120565, 428285, 1007584, 1014465, 1021131, 1027696, 1034260, 1040823, 1047386, 1053949, 1060512, 1067075} },
{"Telescopic Sharprifle", {6028286, 28286, 130050, 428286, 1007585, 1014466, 1021132, 1027697, 1034261, 1040824, 1047387, 1053950, 1060513, 1067076} },
{"Abacus of Violent Odds", {6028288, 28288, 100001, 428288, 1007586, 1014467, 1021133, 1027698, 1034262, 1040825, 1047388, 1053951, 1060514, 1067077} },
{"Libram of the Lightbringer", {6028296, 28296, 120966, 428296, 1007587, 1014468, 1021134, 1027699, 1034263, 1040826, 1047389, 1053952, 1060515, 1067078} },
{"Syrannis' Mystic Sheen", {6028301, 28301, 129245, 428301, 1007588, 1014469, 1021135, 1027700, 1034264, 1040827, 1047390, 1053953, 1060516, 1067079} },
{"Prismatic Mittens of Mending", {6028304, 28304, 123461, 428304, 1007589, 1014470, 1021136, 1027701, 1034265, 1040828, 1047391, 1053954, 1060517, 1067080} },
{"Towering Mantle of the Hunt", {6028306, 28306, 130446, 428306, 1007590, 1014471, 1021137, 1027702, 1034266, 1040829, 1047392, 1053955, 1060518, 1067081} },
{"Revenger", {6028311, 28311, 123584, 428311, 1007591, 1014472, 1021138, 1027703, 1034267, 1040830, 1047393, 1053956, 1060519, 1067082} },
{"Stormreaver Warblades", {6028315, 28315, 128695, 428315, 1007592, 1014473, 1021139, 1027704, 1034268, 1040831, 1047394, 1053957, 1060520, 1067083} },
{"Aegis of the Sunbird", {6028316, 28316, 100029, 428316, 1007593, 1014474, 1021140, 1027705, 1034269, 1040832, 1047395, 1053958, 1060521, 1067084} },
{"Energis Armwraps", {6028317, 28317, 112979, 428317, 1007594, 1014475, 1021141, 1027706, 1034270, 1040833, 1047396, 1053959, 1060522, 1067085} },
{"Obsidian Clodstompers", {6028318, 28318, 123129, 428318, 1007595, 1014476, 1021142, 1027707, 1034271, 1040834, 1047397, 1053960, 1060523, 1067086} },
{"Enchanted Thorium Torque", {6028321, 28321, 112977, 428321, 1007596, 1014477, 1021143, 1027708, 1034272, 1040835, 1047398, 1053961, 1060524, 1067087} },
{"Runed Dagger of Solace", {6028322, 28322, 123649, 428322, 1007597, 1014478, 1021144, 1027709, 1034273, 1040836, 1047399, 1053962, 1060525, 1067088} },
{"Ring of Umbral Doom", {6028323, 28323, 123609, 428323, 1007598, 1014479, 1021145, 1027710, 1034274, 1040837, 1047400, 1053963, 1060526, 1067089} },
{"Gauntlets of Cruel Intention", {6028324, 28324, 116897, 428324, 1007599, 1014480, 1021146, 1027711, 1034275, 1040838, 1047401, 1053964, 1060527, 1067090} },
{"Dreamer's Dragonstaff", {6028325, 28325, 102392, 428325, 1007600, 1014481, 1021147, 1027712, 1034276, 1040839, 1047402, 1053965, 1060528, 1067091} },
{"Arcane Netherband", {6028327, 28327, 100110, 428327, 1007601, 1014482, 1021148, 1027713, 1034277, 1040840, 1047403, 1053966, 1060529, 1067092} },
{"Breastplate of Righteous Fury", {6028337, 28337, 100677, 428337, 1007603, 1014484, 1021150, 1027715, 1034279, 1040842, 1047405, 1053968, 1060531, 1067094} },
{"Devil-Stitched Leggings", {6028338, 28338, 102307, 428338, 1007604, 1014485, 1021151, 1027716, 1034280, 1040843, 1047406, 1053969, 1060532, 1067095} },
{"Boots of the Shifting Sands", {6028339, 28339, 100474, 428339, 1007605, 1014486, 1021152, 1027717, 1034281, 1040844, 1047407, 1053970, 1060533, 1067096} },
{"Mantle of Autumn", {6028340, 28340, 122695, 428340, 1007606, 1014487, 1021153, 1027718, 1034282, 1040845, 1047408, 1053971, 1060534, 1067097} },
{"Warpstaff of Arcanum", {6028341, 28341, 130806, 428341, 1007607, 1014488, 1021154, 1027719, 1034283, 1040846, 1047409, 1053972, 1060535, 1067098} },
{"Warp Infused Drape", {6028342, 28342, 130799, 428342, 1007608, 1014489, 1021155, 1027720, 1034284, 1040847, 1047410, 1053973, 1060536, 1067099} },
{"Jagged Bark Pendant", {6028343, 28343, 120711, 428343, 1007609, 1014490, 1021156, 1027721, 1034285, 1040848, 1047411, 1053974, 1060537, 1067100} },
{"Wyrmfury Pauldrons", {6028344, 28344, 130994, 428344, 1007610, 1014491, 1021157, 1027722, 1034286, 1040849, 1047412, 1053975, 1060538, 1067101} },
{"Warp Splinter's Thorn", {6028345, 28345, 130800, 428345, 1007611, 1014492, 1021158, 1027723, 1034287, 1040850, 1047413, 1053976, 1060539, 1067102} },
{"Warpscale Leggings", {6028347, 28347, 130805, 428347, 1007612, 1014493, 1021159, 1027724, 1034288, 1040851, 1047414, 1053977, 1060540, 1067103} },
{"Moonglade Cowl", {6028348, 28348, 122945, 428348, 1007613, 1014494, 1021160, 1027725, 1034289, 1040852, 1047415, 1053978, 1060541, 1067104} },
{"Tidefury Helm", {6028349, 28349, 130422, 428349, 1007614, 1014495, 1021161, 1027726, 1034290, 1040853, 1047416, 1053979, 1060542, 1067105} },
{"Warhelm of the Bold", {6028350, 28350, 130762, 428350, 1007615, 1014496, 1021162, 1027727, 1034291, 1040854, 1047417, 1053980, 1060543, 1067106} },
{"Gladiator's Idol of Tenacity", {6028355, 28355, 274098, 274099, 274100, 274101, 274102, 274103, 274104, 274105, 274106, 274107, 274108, 274109} },
{"Gladiator's Libram of Justice", {6028356, 28356, 274110, 274111, 274112, 274113, 274114, 274115, 274116, 274117, 274118, 274119, 274120, 274121} },
{"Gladiator's Totem of the Third Wind", {6028357, 28357, 274122, 274123, 274124, 274125, 274126, 274127, 274128, 274129, 274130, 274131, 274132, 274133} },
{"Greatsword of Forlorn Visions", {6028367, 28367, 120162, 428367, 1007616, 1014497, 1021163, 1027728, 1034292, 1040855, 1047418, 1053981, 1060544, 1067107} },
{"Bangle of Endless Blessings", {6028370, 28370, 100217, 428370, 1007617, 1014498, 1021164, 1027729, 1034293, 1040856, 1047419, 1053982, 1060545, 1067108} },
{"Netherfury Cape", {6028371, 28371, 123011, 428371, 1007618, 1014499, 1021165, 1027730, 1034294, 1040857, 1047420, 1053983, 1060546, 1067109} },
{"Idol of Feral Shadows", {6028372, 28372, 120618, 428372, 1007619, 1014500, 1021166, 1027731, 1034295, 1040858, 1047421, 1053984, 1060547, 1067110} },
{"Cloak of Scintillating Auras", {6028373, 28373, 100812, 428373, 1007620, 1014501, 1021167, 1027732, 1034296, 1040859, 1047422, 1053985, 1060548, 1067111} },
{"Mana-Sphere Shoulderguards", {6028374, 28374, 122676, 428374, 1007621, 1014502, 1021168, 1027733, 1034297, 1040860, 1047423, 1053986, 1060549, 1067112} },
{"Rubium War-Girdle", {6028375, 28375, 123646, 428375, 1007622, 1014503, 1021169, 1027734, 1034298, 1040861, 1047424, 1053987, 1060550, 1067113} },
{"Outland Striders", {6028384, 28384, 123178, 428384, 1007623, 1014504, 1021170, 1027735, 1034299, 1040862, 1047425, 1053988, 1060551, 1067114} },
{"Nether Core's Control Rod", {6028386, 28386, 123007, 428386, 1007624, 1014505, 1021171, 1027736, 1034300, 1040863, 1047426, 1053989, 1060552, 1067115} },
{"Lamp of Peaceful Repose", {6028387, 28387, 120818, 428387, 1007625, 1014507, 1021172, 1027737, 1034301, 1040864, 1047427, 1053990, 1060553, 1067116} },
{"Thatia's Self-Correcting Gauntlets", {6028390, 28390, 130330, 428390, 1007626, 1014508, 1021173, 1027738, 1034302, 1040865, 1047428, 1053991, 1060554, 1067117} },
{"Worldfire Chestguard", {6028391, 28391, 130948, 428391, 1007627, 1014509, 1021174, 1027739, 1034303, 1040866, 1047429, 1053992, 1060555, 1067118} },
{"Reflex Blades", {6028392, 28392, 123551, 428392, 1007628, 1014510, 1021175, 1027740, 1034304, 1040867, 1047430, 1053993, 1060556, 1067119} },
{"Warmaul of Infused Light", {6028393, 28393, 130794, 428393, 1007629, 1014511, 1021176, 1027741, 1034305, 1040868, 1047431, 1053994, 1060557, 1067120} },
{"Ryngo's Band of Ingenuity", {6028394, 28394, 123683, 428394, 1007630, 1014513, 1021177, 1027742, 1034306, 1040869, 1047432, 1053995, 1060558, 1067121} },
{"Gloves of the Unbound", {6028396, 28396, 119914, 428396, 1007631, 1014514, 1021178, 1027743, 1034307, 1040870, 1047433, 1053996, 1060559, 1067122} },
{"Emberhawk Crossbow", {6028397, 28397, 112964, 428397, 1007632, 1014515, 1021179, 1027744, 1034308, 1040871, 1047434, 1053997, 1060560, 1067123} },
{"The Sleeper's Cord", {6028398, 28398, 130340, 428398, 1007633, 1014516, 1021180, 1027745, 1034309, 1040872, 1047435, 1053998, 1060561, 1067124} },
{"Warp-Storm Warblade", {6028400, 28400, 130802, 428400, 1007634, 1014517, 1021181, 1027746, 1034310, 1040873, 1047436, 1053999, 1060562, 1067125} },
{"Hauberk of Desolation", {6028401, 28401, 120476, 428401, 1007635, 1014518, 1021182, 1027747, 1034311, 1040874, 1047437, 1054000, 1060563, 1067126} },
{"Doomplate Chestguard", {6028403, 28403, 102326, 428403, 1007636, 1014519, 1021183, 1027748, 1034312, 1040875, 1047438, 1054001, 1060564, 1067127} },
{"Sigil-Laced Boots", {6028406, 28406, 123873, 428406, 1007637, 1014520, 1021184, 1027749, 1034313, 1040876, 1047439, 1054002, 1060565, 1067128} },
{"Elementium Band of the Sentry", {6028407, 28407, 112695, 428407, 1007638, 1014521, 1021185, 1027750, 1034314, 1040877, 1047440, 1054003, 1060566, 1067129} },
{"Lamp of Peaceful Radiance", {6028412, 28412, 120817, 428412, 1007639, 1014522, 1021186, 1027751, 1034315, 1040878, 1047441, 1054004, 1060567, 1067130} },
{"Hallowed Crown", {6028413, 28413, 120441, 428413, 1007640, 1014523, 1021187, 1027752, 1034316, 1040879, 1047442, 1054005, 1060568, 1067131} },
{"Helm of Assassination", {6028414, 28414, 120542, 428414, 1007641, 1014524, 1021188, 1027753, 1034317, 1040880, 1047443, 1054006, 1060569, 1067132} },
{"Hood of Oblivion", {6028415, 28415, 120595, 428415, 1007642, 1014525, 1021189, 1027754, 1034318, 1040881, 1047444, 1054007, 1060570, 1067133} },
{"Hungering Spineripper", {6028416, 28416, 120607, 428416, 1007643, 1014526, 1021190, 1027755, 1034319, 1040882, 1047445, 1054008, 1060571, 1067134} },
{"Shiffar's Nexus-Horn", {6028418, 28418, 123829, 428418, 1007644, 1014527, 1021191, 1027756, 1034320, 1040883, 1047446, 1054009, 1060572, 1067135} },
{"Choker of Fluid Thought", {6028419, 28419, 100764, 428419, 1007645, 1014528, 1021192, 1027757, 1034321, 1040884, 1047447, 1054010, 1060573, 1067136} },
{"Fireguard", {6028425, 28425, 274350, 274351, 274352, 274353, 274354, 274355, 274356, 274357, 274358, 274359, 274360, 274361} },
{"Blazeguard", {6028426, 28426, 274362, 274363, 274364, 274365, 274366, 274367, 274368, 274369, 274370, 274371, 274372, 274373} },
{"Blazefury", {6028427, 28427, 274374, 274375, 274376, 274377, 274378, 274379, 274380, 274381, 274382, 274383, 274384, 274385} },
{"Lionheart Blade", {6028428, 28428, 274386, 274387, 274388, 274389, 274390, 274391, 274392, 274393, 274394, 274395, 274396, 274397} },
{"Lionheart Champion", {6028429, 28429, 274398, 274399, 274400, 274401, 274402, 274403, 274404, 274405, 274406, 274407, 274408, 274409} },
{"Lionheart Executioner", {6028430, 28430, 274410, 274411, 274412, 274413, 274414, 274415, 274416, 274417, 274418, 274419, 274420, 274421} },
{"The Planar Edge", {6028431, 28431, 274422, 274423, 274424, 274425, 274426, 274427, 274428, 274429, 274430, 274431, 274432, 274433} },
{"Black Planar Edge", {6028432, 28432, 274434, 274435, 274436, 274437, 274438, 274439, 274440, 274441, 274442, 274443, 274444, 274445} },
{"Wicked Edge of the Planes", {6028433, 28433, 274446, 274447, 274448, 274449, 274450, 274451, 274452, 274453, 274454, 274455, 274456, 274457} },
{"Lunar Crescent", {6028434, 28434, 274458, 274459, 274460, 274461, 274462, 274463, 274464, 274465, 274466, 274467, 274468, 274469} },
{"Mooncleaver", {6028435, 28435, 274470, 274471, 274472, 274473, 274474, 274475, 274476, 274477, 274478, 274479, 274480, 274481} },
{"Bloodmoon", {6028436, 28436, 274482, 274483, 274484, 274485, 274486, 274487, 274488, 274489, 274490, 274491, 274492, 274493} },
{"Drakefist Hammer", {6028437, 28437, 274494, 274495, 274496, 274497, 274498, 274499, 274500, 274501, 274502, 274503, 274504, 274505} },
{"Dragonmaw", {6028438, 28438, 274506, 274507, 274508, 274509, 274510, 274511, 274512, 274513, 274514, 274515, 274516, 274517} },
{"Dragonstrike", {6028439, 28439, 274518, 274519, 274520, 274521, 274522, 274523, 274524, 274525, 274526, 274527, 274528, 274529} },
{"Thunder", {6028440, 28440, 274530, 274531, 274532, 274533, 274534, 274535, 274536, 274537, 274538, 274539, 274540, 274541} },
{"Deep Thunder", {6028441, 28441, 274542, 274543, 274544, 274545, 274546, 274547, 274548, 274549, 274550, 274551, 274552, 274553} },
{"Stormherald", {6028442, 28442, 274554, 274555, 274556, 274557, 274558, 274559, 274560, 274561, 274562, 274563, 274564, 274565} },
{"Bracers of the White Stag", {6028453, 28453, 328453, 228453, 1004654, 1011917, 1018571, 1025175, 1031739, 1038302, 1044865, 1051428, 1057991, 1064554} },
{"Stalker's War Bands", {6028454, 28454, 328454, 228454, 1004655, 1011918, 1018572, 1025176, 1031740, 1038303, 1044866, 1051429, 1057992, 1064555} },
{"Harbinger Bands", {6028477, 28477, 328477, 228477, 1004656, 1011919, 1018573, 1025177, 1031741, 1038304, 1044867, 1051430, 1057993, 1064556} },
{"Breastplate of Kings", {6028483, 28483, 274685, 274686, 274687, 274688, 274689, 274690, 274691, 274692, 274693, 274694, 274695, 274696} },
{"Bulwark of Kings", {6028484, 28484, 274697, 274698, 274699, 274700, 274701, 274702, 274703, 274704, 274705, 274706, 274707, 274708} },
{"Bulwark of the Ancient Kings", {6028485, 28485, 274709, 274710, 274711, 274712, 274713, 274714, 274715, 274716, 274717, 274718, 274719, 274720} },
{"Windwalker's Footwraps", {6028491, 28491, 274721, 274722, 274723, 274724, 274725, 274726, 274727, 274728, 274729, 274730, 274731, 274732} },
{"Talonite's Boots", {6028492, 28492, 274733, 274734, 274735, 274736, 274737, 274738, 274739, 274740, 274741, 274742, 274743, 274744} },
{"Dreadhawk's Schynbald", {6028493, 28493, 274745, 274746, 274747, 274748, 274749, 274750, 274751, 274752, 274753, 274754, 274755, 274756} },
{"Ravenguard's Greaves", {6028494, 28494, 274757, 274758, 274759, 274760, 274761, 274762, 274763, 274764, 274765, 274766, 274767, 274768} },
{"Windwalker's Sash", {274770, 28495, 274769, 274771, 274772, 274773, 274774, 274775, 274776, 274777, 274778, 274779, 274780, 274781} },
{"Talonite's Belt", {274783, 28496, 274782, 274784, 274785, 274786, 274787, 274788, 274789, 274790, 274791, 274792, 274793, 274794} },
{"Dreadhawk's Girdle", {274796, 28497, 274795, 274797, 274798, 274799, 274800, 274801, 274802, 274803, 274804, 274805, 274806, 274807} },
{"Ravenguard's Baldric", {274809, 28498, 274808, 274810, 274811, 274812, 274813, 274814, 274815, 274816, 274817, 274818, 274819, 274820} },
{"Vambraces of Courage", {6028502, 28502, 328502, 228502, 1004657, 1011920, 1018574, 1025178, 1031742, 1038305, 1044868, 1051431, 1057994, 1064557} },
{"Whirlwind Bracers", {6028503, 28503, 328503, 228503, 1004658, 1011921, 1018575, 1025179, 1031743, 1038306, 1044869, 1051432, 1057995, 1064558} },
{"Steelhawk Crossbow", {6028504, 28504, 328504, 228504, 1004659, 1011922, 1018576, 1025180, 1031744, 1038307, 1044870, 1051433, 1057996, 1064559} },
{"Gauntlets of Renewed Hope", {6028505, 28505, 328505, 228505, 1004660, 1011923, 1018577, 1025181, 1031745, 1038308, 1044871, 1051434, 1057997, 1064560} },
{"Gloves of Dexterous Manipulation", {6028506, 28506, 328506, 228506, 1004661, 1011924, 1018578, 1025182, 1031746, 1038309, 1044872, 1051435, 1057998, 1064561} },
{"Handwraps of Flowing Thought", {6028507, 28507, 328507, 228507, 1004662, 1011925, 1018579, 1025183, 1031747, 1038310, 1044873, 1051436, 1057999, 1064562} },
{"Gloves of Saintly Blessings", {6028508, 28508, 328508, 228508, 1004663, 1011926, 1018580, 1025184, 1031748, 1038311, 1044874, 1051437, 1058000, 1064563} },
{"Worgen Claw Necklace", {6028509, 28509, 328509, 228509, 1004664, 1011927, 1018581, 1025185, 1031749, 1038312, 1044875, 1051438, 1058001, 1064564} },
{"Spectral Band of Innervation", {6028510, 28510, 328510, 228510, 1004665, 1011928, 1018582, 1025186, 1031750, 1038313, 1044876, 1051439, 1058002, 1064565} },
{"Bands of Indwelling", {6028511, 28511, 328511, 228511, 1004666, 1011929, 1018583, 1025187, 1031751, 1038314, 1044877, 1051440, 1058003, 1064566} },
{"Bracers of Justice", {6028512, 28512, 328512, 228512, 1004667, 1011930, 1018584, 1025188, 1031752, 1038315, 1044878, 1051441, 1058004, 1064567} },
{"Bracers of Maliciousness", {6028514, 28514, 328514, 228514, 1004668, 1011931, 1018585, 1025189, 1031753, 1038316, 1044879, 1051442, 1058005, 1064568} },
{"Bands of Nefarious Deeds", {6028515, 28515, 328515, 228515, 1004669, 1011932, 1018586, 1025190, 1031754, 1038317, 1044880, 1051443, 1058006, 1064569} },
{"Barbed Choker of Discipline", {6028516, 28516, 328516, 228516, 1004670, 1011933, 1018587, 1025191, 1031755, 1038318, 1044881, 1051444, 1058007, 1064570} },
{"Boots of Foretelling", {6028517, 28517, 328517, 228517, 1004671, 1011934, 1018588, 1025192, 1031756, 1038319, 1044882, 1051445, 1058008, 1064571} },
{"Iron Gauntlets of the Maiden", {6028518, 28518, 328518, 228518, 1004672, 1011935, 1018589, 1025193, 1031757, 1038320, 1044883, 1051446, 1058009, 1064572} },
{"Gloves of Quickening", {6028519, 28519, 328519, 228519, 1004673, 1011936, 1018590, 1025194, 1031758, 1038321, 1044884, 1051447, 1058010, 1064573} },
{"Gloves of Centering", {6028520, 28520, 328520, 228520, 1004674, 1011937, 1018591, 1025195, 1031759, 1038322, 1044885, 1051448, 1058011, 1064574} },
{"Mitts of the Treemender", {6028521, 28521, 328521, 228521, 1004675, 1011938, 1018592, 1025196, 1031760, 1038323, 1044886, 1051449, 1058012, 1064575} },
{"Shard of the Virtuous", {6028522, 28522, 328522, 228522, 1004676, 1011939, 1018593, 1025197, 1031761, 1038324, 1044887, 1051450, 1058013, 1064576} },
{"Totem of Healing Rains", {6028523, 28523, 328523, 228523, 1004677, 1011940, 1018594, 1025198, 1031762, 1038325, 1044888, 1051451, 1058014, 1064577} },
{"Emerald Ripper", {6028524, 28524, 328524, 228524, 1004678, 1011941, 1018595, 1025199, 1031763, 1038326, 1044889, 1051452, 1058015, 1064578} },
{"Signet of Unshakable Faith", {6028525, 28525, 328525, 228525, 1004679, 1011942, 1018596, 1025200, 1031764, 1038327, 1044890, 1051453, 1058016, 1064579} },
{"Moroes' Lucky Pocket Watch", {6028528, 28528, 328528, 228528, 1004680, 1011943, 1018597, 1025201, 1031765, 1038328, 1044891, 1051454, 1058017, 1064580} },
{"Royal Cloak of Arathi Kings", {6028529, 28529, 328529, 228529, 1004681, 1011944, 1018598, 1025202, 1031766, 1038329, 1044892, 1051455, 1058018, 1064581} },
{"Brooch of Unquenchable Fury", {6028530, 28530, 328530, 228530, 1004682, 1011945, 1018599, 1025203, 1031767, 1038330, 1044893, 1051456, 1058019, 1064582} },
{"Barbed Shrike", {274822, 28531, 274821, 274823, 274824, 274825, 274826, 274827, 274828, 274829, 274830, 274831, 274832, 274833} },
{"Silver Throwing Knives", {123970, 28532, 123969, 428532, 1007646, 1014529, 1021193, 1027758, 1034322, 1040885, 1047448, 1054011, 1060574, 1067137} },
{"Wooden Boomerang", {130946, 28533, 130945, 428533, 1007647, 1014530, 1021194, 1027759, 1034323, 1040886, 1047449, 1054012, 1060575, 1067138} },
{"Fel Tipped Dart", {113665, 28534, 113628, 428534, 1007648, 1014531, 1021195, 1027760, 1034324, 1040887, 1047450, 1054013, 1060576, 1067139} },
{"Amani Throwing Axe", {100046, 28535, 100045, 428535, 1007649, 1014532, 1021196, 1027761, 1034325, 1040888, 1047451, 1054014, 1060577, 1067140} },
{"Jagged Guillotine", {120715, 28536, 120714, 428536, 1007650, 1014533, 1021197, 1027762, 1034326, 1040889, 1047452, 1054015, 1060578, 1067141} },
{"Wildhammer Throwing Axe", {130840, 28537, 130839, 428537, 1007651, 1014534, 1021198, 1027763, 1034327, 1040890, 1047453, 1054016, 1060579, 1067142} },
{"Forked Shuriken", {116143, 28538, 116135, 428538, 1007652, 1014535, 1021199, 1027764, 1034328, 1040891, 1047454, 1054017, 1060580, 1067143} },
{"Razor-Edged Boomerang", {123518, 28539, 123517, 428539, 1007653, 1014536, 1021200, 1027765, 1034329, 1040892, 1047455, 1054018, 1060581, 1067144} },
{"Arakkoa Talon-Axe", {100106, 28540, 100105, 428540, 1007654, 1014537, 1021201, 1027766, 1034330, 1040893, 1047456, 1054019, 1060582, 1067145} },
{"Sawshrike", {123699, 28541, 123698, 428541, 1007655, 1014538, 1021202, 1027767, 1034331, 1040894, 1047457, 1054020, 1060583, 1067146} },
{"Heartseeker Knives", {120509, 28542, 120508, 428542, 1007656, 1014539, 1021203, 1027768, 1034332, 1040895, 1047458, 1054021, 1060584, 1067147} },
{"Dreghood Throwing Axe", {102408, 28543, 102407, 428543, 1007657, 1014540, 1021204, 1027769, 1034333, 1040896, 1047459, 1054022, 1060585, 1067148} },
{"Assassin's Shuriken", {100150, 28544, 100149, 428544, 1007658, 1014541, 1021205, 1027770, 1034334, 1040897, 1047460, 1054023, 1060586, 1067149} },
{"Edgewalker Longboots", {6028545, 28545, 328545, 228545, 1004683, 1011946, 1018600, 1025204, 1031768, 1038331, 1044894, 1051457, 1058020, 1064583} },
{"Nethershard Girdle", {6028565, 28565, 328565, 228565, 1004684, 1011947, 1018601, 1025205, 1031769, 1038332, 1044895, 1051458, 1058021, 1064584} },
{"Crimson Girdle of the Indomitable", {6028566, 28566, 328566, 228566, 1004685, 1011948, 1018602, 1025206, 1031770, 1038333, 1044896, 1051459, 1058022, 1064585} },
{"Belt of Gale Force", {6028567, 28567, 328567, 228567, 1004686, 1011949, 1018603, 1025207, 1031771, 1038334, 1044897, 1051460, 1058023, 1064586} },
{"Idol of the Avian Heart", {6028568, 28568, 328568, 228568, 1004687, 1011950, 1018604, 1025208, 1031772, 1038335, 1044898, 1051461, 1058024, 1064587} },
{"Boots of Valiance", {6028569, 28569, 328569, 228569, 1004688, 1011951, 1018605, 1025209, 1031773, 1038336, 1044899, 1051462, 1058025, 1064588} },
{"Shadow-Cloak of Dalaran", {6028570, 28570, 328570, 228570, 1004689, 1011952, 1018606, 1025210, 1031774, 1038337, 1044900, 1051463, 1058026, 1064589} },
{"Blade of the Unrequited", {6028572, 28572, 328572, 228572, 1004690, 1011953, 1018607, 1025211, 1031775, 1038338, 1044901, 1051464, 1058027, 1064590} },
{"Despair", {6028573, 28573, 328573, 228573, 1004691, 1011954, 1018608, 1025212, 1031776, 1038339, 1044902, 1051465, 1058028, 1064591} },
{"Masquerade Gown", {6028578, 28578, 328578, 228578, 1004692, 1011955, 1018609, 1025213, 1031777, 1038340, 1044903, 1051466, 1058029, 1064592} },
{"Romulo's Poison Vial", {6028579, 28579, 328579, 228579, 1004693, 1011956, 1018610, 1025214, 1031778, 1038341, 1044904, 1051467, 1058030, 1064593} },
{"Wolfslayer Sniper Rifle", {6028581, 28581, 328581, 228581, 1004694, 1011957, 1018611, 1025215, 1031779, 1038342, 1044905, 1051468, 1058031, 1064594} },
{"Red Riding Hood's Cloak", {6028582, 28582, 328582, 228582, 1004695, 1011958, 1018612, 1025216, 1031780, 1038343, 1044906, 1051469, 1058032, 1064595} },
{"Big Bad Wolf's Head", {6028583, 28583, 328583, 228583, 1004696, 1011959, 1018613, 1025217, 1031781, 1038344, 1044907, 1051470, 1058033, 1064596} },
{"Big Bad Wolf's Paw", {6028584, 28584, 328584, 228584, 1004697, 1011960, 1018614, 1025218, 1031782, 1038345, 1044908, 1051471, 1058034, 1064597} },
{"Ruby Slippers", {6028585, 28585, 328585, 228585, 1004698, 1011961, 1018615, 1025219, 1031783, 1038346, 1044909, 1051472, 1058035, 1064598} },
{"Wicked Witch's Hat", {6028586, 28586, 328586, 228586, 1004699, 1011962, 1018616, 1025220, 1031784, 1038347, 1044910, 1051473, 1058036, 1064599} },
{"Legacy", {6028587, 28587, 328587, 228587, 1004700, 1011963, 1018617, 1025221, 1031785, 1038348, 1044911, 1051474, 1058037, 1064600} },
{"Blue Diamond Witchwand", {6028588, 28588, 328588, 228588, 1004701, 1011964, 1018618, 1025222, 1031786, 1038349, 1044912, 1051475, 1058038, 1064601} },
{"Beastmaw Pauldrons", {6028589, 28589, 328589, 228589, 1004702, 1011965, 1018619, 1025223, 1031787, 1038350, 1044913, 1051476, 1058039, 1064602} },
{"Ribbon of Sacrifice", {6028590, 28590, 328590, 228590, 1004703, 1011966, 1018620, 1025224, 1031788, 1038351, 1044914, 1051477, 1058040, 1064603} },
{"Earthsoul Leggings", {6028591, 28591, 328591, 228591, 1004704, 1011967, 1018621, 1025225, 1031789, 1038352, 1044915, 1051478, 1058041, 1064604} },
{"Libram of Souls Redeemed", {6028592, 28592, 328592, 228592, 1004705, 1011968, 1018622, 1025226, 1031790, 1038353, 1044916, 1051479, 1058042, 1064605} },
{"Eternium Greathelm", {6028593, 28593, 328593, 228593, 1004706, 1011969, 1018623, 1025227, 1031791, 1038354, 1044917, 1051480, 1058043, 1064606} },
{"Trial-Fire Trousers", {6028594, 28594, 328594, 228594, 1004707, 1011970, 1018624, 1025228, 1031792, 1038355, 1044918, 1051481, 1058044, 1064607} },
{"Panzar'Thar Breastplate", {6028597, 28597, 328597, 228597, 1004708, 1011971, 1018625, 1025229, 1031793, 1038356, 1044919, 1051482, 1058045, 1064608} },
{"Scaled Breastplate of Carnage", {6028599, 28599, 328599, 228599, 1004709, 1011972, 1018626, 1025230, 1031794, 1038357, 1044920, 1051483, 1058046, 1064609} },
{"Stonebough Jerkin", {6028600, 28600, 328600, 228600, 1004710, 1011973, 1018627, 1025231, 1031795, 1038358, 1044921, 1051484, 1058047, 1064610} },
{"Chestguard of the Conniver", {6028601, 28601, 328601, 228601, 1004711, 1011974, 1018628, 1025232, 1031796, 1038359, 1044922, 1051485, 1058048, 1064611} },
{"Robe of the Elder Scribes", {6028602, 28602, 328602, 228602, 1004712, 1011975, 1018629, 1025233, 1031797, 1038360, 1044923, 1051486, 1058049, 1064612} },
{"Talisman of Nightbane", {6028603, 28603, 328603, 228603, 1004713, 1011976, 1018630, 1025234, 1031798, 1038361, 1044924, 1051487, 1058050, 1064613} },
{"Nightstaff of the Everliving", {6028604, 28604, 328604, 228604, 1004714, 1011977, 1018631, 1025235, 1031799, 1038362, 1044925, 1051488, 1058051, 1064614} },
{"Shield of Impenetrable Darkness", {6028606, 28606, 328606, 228606, 1004715, 1011978, 1018632, 1025236, 1031800, 1038363, 1044926, 1051489, 1058052, 1064615} },
{"Ironstriders of Urgency", {6028608, 28608, 328608, 228608, 1004716, 1011979, 1018633, 1025237, 1031801, 1038364, 1044927, 1051490, 1058053, 1064616} },
{"Emberspur Talisman", {6028609, 28609, 328609, 228609, 1004717, 1011980, 1018634, 1025238, 1031802, 1038365, 1044928, 1051491, 1058054, 1064617} },
{"Ferocious Swift-Kickers", {6028610, 28610, 328610, 228610, 1004718, 1011981, 1018635, 1025239, 1031803, 1038366, 1044929, 1051492, 1058055, 1064618} },
{"Dragonheart Flameshield", {6028611, 28611, 328611, 228611, 1004719, 1011982, 1018636, 1025240, 1031804, 1038367, 1044930, 1051493, 1058056, 1064619} },
{"Pauldrons of the Solace-Giver", {6028612, 28612, 328612, 228612, 1004720, 1011983, 1018637, 1025241, 1031805, 1038368, 1044931, 1051494, 1058057, 1064620} },
{"Wrynn Dynasty Greaves", {6028621, 28621, 328621, 228621, 1004721, 1011984, 1018638, 1025242, 1031806, 1038369, 1044932, 1051495, 1058058, 1064621} },
{"Dragon-Quake Shoulderguards", {6028631, 28631, 328631, 228631, 1004722, 1011985, 1018639, 1025243, 1031807, 1038370, 1044933, 1051496, 1058059, 1064622} },
{"Staff of Infinite Mysteries", {6028633, 28633, 328633, 228633, 1004723, 1011986, 1018640, 1025244, 1031808, 1038371, 1044934, 1051497, 1058060, 1064623} },
{"Forest Wind Shoulderpads", {6028647, 28647, 328647, 228647, 1004724, 1011987, 1018641, 1025245, 1031809, 1038372, 1044935, 1051498, 1058061, 1064624} },
{"Garona's Signet Ring", {6028649, 28649, 328649, 228649, 1004725, 1011988, 1018642, 1025246, 1031810, 1038373, 1044936, 1051499, 1058062, 1064625} },
{"Cincture of Will", {6028652, 28652, 328652, 228652, 1004726, 1011989, 1018643, 1025247, 1031811, 1038374, 1044937, 1051500, 1058063, 1064626} },
{"Shadowvine Cloak of Infusion", {6028653, 28653, 328653, 228653, 1004727, 1011990, 1018644, 1025248, 1031812, 1038375, 1044938, 1051501, 1058064, 1064627} },
{"Malefic Girdle", {6028654, 28654, 328654, 228654, 1004728, 1011991, 1018645, 1025249, 1031813, 1038376, 1044939, 1051502, 1058065, 1064628} },
{"Cord of Nature's Sustenance", {6028655, 28655, 328655, 228655, 1004729, 1011992, 1018646, 1025250, 1031814, 1038377, 1044940, 1051503, 1058066, 1064629} },
{"Girdle of the Prowler", {6028656, 28656, 328656, 228656, 1004730, 1011993, 1018647, 1025251, 1031815, 1038378, 1044941, 1051504, 1058067, 1064630} },
{"Fool's Bane", {6028657, 28657, 328657, 228657, 1004731, 1011994, 1018648, 1025252, 1031816, 1038379, 1044942, 1051505, 1058068, 1064631} },
{"Terestian's Stranglestaff", {6028658, 28658, 328658, 228658, 1004732, 1011995, 1018649, 1025253, 1031817, 1038380, 1044943, 1051506, 1058069, 1064632} },
{"Xavian Stiletto", {6028659, 28659, 328659, 228659, 1004733, 1011996, 1018650, 1025254, 1031818, 1038381, 1044944, 1051507, 1058070, 1064633} },
{"Gilded Thorium Cloak", {6028660, 28660, 328660, 228660, 1004734, 1011997, 1018651, 1025255, 1031819, 1038382, 1044945, 1051508, 1058071, 1064634} },
{"Mender's Heart-Ring", {6028661, 28661, 328661, 228661, 1004735, 1011998, 1018652, 1025256, 1031820, 1038383, 1044946, 1051509, 1058072, 1064635} },
{"Breastplate of the Lightbinder", {6028662, 28662, 328662, 228662, 1004736, 1011999, 1018653, 1025257, 1031821, 1038384, 1044947, 1051510, 1058073, 1064636} },
{"Boots of the Incorrupt", {6028663, 28663, 328663, 228663, 1004737, 1012000, 1018654, 1025258, 1031822, 1038385, 1044948, 1051511, 1058074, 1064637} },
{"Pauldrons of the Justice-Seeker", {6028666, 28666, 328666, 228666, 1004738, 1012001, 1018655, 1025259, 1031823, 1038386, 1044949, 1051512, 1058075, 1064638} },
{"Rapscallion Boots", {6028669, 28669, 328669, 228669, 1004739, 1012002, 1018656, 1025260, 1031824, 1038387, 1044950, 1051513, 1058076, 1064639} },
{"Boots of the Infernal Coven", {6028670, 28670, 328670, 228670, 1004740, 1012003, 1018657, 1025261, 1031825, 1038388, 1044951, 1051514, 1058077, 1064640} },
{"Steelspine Faceguard", {6028671, 28671, 328671, 228671, 1004741, 1012004, 1018658, 1025262, 1031826, 1038389, 1044952, 1051515, 1058078, 1064641} },
{"Drape of the Dark Reavers", {6028672, 28672, 328672, 228672, 1004742, 1012006, 1018659, 1025263, 1031827, 1038390, 1044953, 1051516, 1058079, 1064642} },
{"Tirisfal Wand of Ascendancy", {6028673, 28673, 328673, 228673, 1004743, 1012007, 1018660, 1025264, 1031828, 1038391, 1044954, 1051517, 1058080, 1064643} },
{"Saberclaw Talisman", {6028674, 28674, 328674, 228674, 1004744, 1012008, 1018661, 1025265, 1031829, 1038392, 1044955, 1051518, 1058081, 1064644} },
{"Shermanar Great-Ring", {6028675, 28675, 328675, 228675, 1004745, 1012009, 1018662, 1025266, 1031830, 1038393, 1044956, 1051519, 1058082, 1064645} },
{"Mantle of the Mind Flayer", {6028726, 28726, 328726, 228726, 1004746, 1012010, 1018663, 1025267, 1031831, 1038394, 1044957, 1051520, 1058083, 1064646} },
{"Pendant of the Violet Eye", {6028727, 28727, 328727, 228727, 1004747, 1012011, 1018664, 1025268, 1031832, 1038395, 1044958, 1051521, 1058084, 1064647} },
{"Aran's Soothing Sapphire", {6028728, 28728, 328728, 228728, 1004748, 1012012, 1018665, 1025269, 1031833, 1038396, 1044959, 1051522, 1058085, 1064648} },
{"Spiteblade", {6028729, 28729, 328729, 228729, 1004749, 1012013, 1018666, 1025270, 1031834, 1038397, 1044960, 1051523, 1058086, 1064649} },
{"Mithril Band of the Unscarred", {6028730, 28730, 328730, 228730, 1004750, 1012014, 1018667, 1025271, 1031835, 1038398, 1044961, 1051524, 1058087, 1064650} },
{"Shining Chain of the Afterworld", {6028731, 28731, 328731, 228731, 1004751, 1012015, 1018668, 1025272, 1031836, 1038399, 1044962, 1051525, 1058088, 1064651} },
{"Cowl of Defiance", {6028732, 28732, 328732, 228732, 1004752, 1012016, 1018669, 1025273, 1031837, 1038400, 1044963, 1051526, 1058089, 1064652} },
{"Girdle of Truth", {6028733, 28733, 328733, 228733, 1004753, 1012017, 1018670, 1025274, 1031838, 1038401, 1044964, 1051527, 1058090, 1064653} },
{"Jewel of Infinite Possibilities", {6028734, 28734, 328734, 228734, 1004754, 1012018, 1018671, 1025275, 1031839, 1038402, 1044965, 1051528, 1058091, 1064654} },
{"Earthblood Chestguard", {6028735, 28735, 328735, 228735, 1004755, 1012019, 1018672, 1025276, 1031840, 1038403, 1044966, 1051529, 1058092, 1064655} },
{"Rip-Flayer Leggings", {6028740, 28740, 328740, 228740, 1004756, 1012020, 1018673, 1025277, 1031841, 1038404, 1044967, 1051530, 1058093, 1064656} },
{"Skulker's Greaves", {6028741, 28741, 328741, 228741, 1004757, 1012021, 1018674, 1025278, 1031842, 1038405, 1044968, 1051531, 1058094, 1064657} },
{"Pantaloons of Repentance", {6028742, 28742, 328742, 228742, 1004758, 1012022, 1018675, 1025279, 1031843, 1038406, 1044969, 1051532, 1058095, 1064658} },
{"Mantle of Abrahmis", {6028743, 28743, 328743, 228743, 1004759, 1012023, 1018676, 1025280, 1031844, 1038407, 1044970, 1051533, 1058096, 1064659} },
{"Uni-Mind Headdress", {6028744, 28744, 328744, 228744, 1004760, 1012024, 1018677, 1025281, 1031845, 1038408, 1044971, 1051534, 1058097, 1064660} },
{"Mithril Chain of Heroism", {6028745, 28745, 328745, 228745, 1004761, 1012025, 1018678, 1025282, 1031846, 1038409, 1044972, 1051535, 1058098, 1064661} },
{"Fiend Slayer Boots", {6028746, 28746, 328746, 228746, 1004762, 1012026, 1018679, 1025283, 1031847, 1038410, 1044973, 1051536, 1058099, 1064662} },
{"Battlescar Boots", {6028747, 28747, 328747, 228747, 1004763, 1012027, 1018680, 1025284, 1031848, 1038411, 1044974, 1051537, 1058100, 1064663} },
{"Legplates of the Innocent", {6028748, 28748, 328748, 228748, 1004764, 1012028, 1018681, 1025285, 1031849, 1038412, 1044975, 1051538, 1058101, 1064664} },
{"King's Defender", {6028749, 28749, 328749, 228749, 1004765, 1012029, 1018682, 1025286, 1031850, 1038413, 1044976, 1051539, 1058102, 1064665} },
{"Girdle of Treachery", {6028750, 28750, 328750, 228750, 1004766, 1012030, 1018683, 1025287, 1031851, 1038414, 1044977, 1051540, 1058103, 1064666} },
{"Heart-Flame Leggings", {6028751, 28751, 328751, 228751, 1004767, 1012031, 1018684, 1025288, 1031852, 1038415, 1044978, 1051541, 1058104, 1064667} },
{"Forestlord Striders", {6028752, 28752, 328752, 228752, 1004768, 1012032, 1018685, 1025289, 1031853, 1038416, 1044979, 1051542, 1058105, 1064668} },
{"Ring of Recurrence", {6028753, 28753, 328753, 228753, 1004769, 1012033, 1018686, 1025290, 1031854, 1038417, 1044980, 1051543, 1058106, 1064669} },
{"Triptych Shield of the Ancients", {6028754, 28754, 328754, 228754, 1004770, 1012034, 1018687, 1025291, 1031855, 1038418, 1044981, 1051544, 1058107, 1064670} },
{"Bladed Shoulderpads of the Merciless", {6028755, 28755, 328755, 228755, 1004771, 1012035, 1018688, 1025292, 1031856, 1038419, 1044982, 1051545, 1058108, 1064671} },
{"Headdress of the High Potentate", {6028756, 28756, 328756, 228756, 1004772, 1012036, 1018689, 1025293, 1031857, 1038420, 1044983, 1051546, 1058109, 1064672} },
{"Ring of a Thousand Marks", {6028757, 28757, 328757, 228757, 1004773, 1012037, 1018690, 1025294, 1031858, 1038421, 1044984, 1051547, 1058110, 1064673} },
{"Exorcist's Scaled Helm", {6028761, 28761, 275868, 275869, 275870, 275871, 275872, 275873, 275874, 275875, 275876, 275877, 275878, 275879} },
{"Adornment of Stolen Souls", {6028762, 28762, 328762, 228762, 1004774, 1012038, 1018691, 1025295, 1031859, 1038422, 1044985, 1051548, 1058111, 1064674} },
{"Jade Ring of the Everliving", {6028763, 28763, 328763, 228763, 1004775, 1012039, 1018692, 1025296, 1031860, 1038423, 1044986, 1051549, 1058112, 1064675} },
{"Farstrider Wildercloak", {6028764, 28764, 328764, 228764, 1004776, 1012040, 1018693, 1025297, 1031861, 1038424, 1044987, 1051550, 1058113, 1064676} },
{"Stainless Cloak of the Pure Hearted", {6028765, 28765, 328765, 228765, 1004777, 1012041, 1018694, 1025298, 1031862, 1038425, 1044988, 1051551, 1058114, 1064677} },
{"Ruby Drape of the Mysticant", {6028766, 28766, 328766, 228766, 1004778, 1012042, 1018695, 1025299, 1031863, 1038426, 1044989, 1051552, 1058115, 1064678} },
{"The Decapitator", {6028767, 28767, 328767, 228767, 1004779, 1012043, 1018696, 1025300, 1031864, 1038427, 1044990, 1051553, 1058116, 1064679} },
{"Malchazeen", {6028768, 28768, 328768, 228768, 1004780, 1012044, 1018697, 1025301, 1031865, 1038428, 1044991, 1051554, 1058117, 1064680} },
{"Nathrezim Mindblade", {6028770, 28770, 328770, 228770, 1004781, 1012045, 1018698, 1025302, 1031866, 1038429, 1044992, 1051555, 1058118, 1064681} },
{"Light's Justice", {6028771, 28771, 328771, 228771, 1004782, 1012046, 1018699, 1025303, 1031867, 1038430, 1044993, 1051556, 1058119, 1064682} },
{"Sunfury Bow of the Phoenix", {6028772, 28772, 328772, 228772, 1004783, 1012047, 1018700, 1025304, 1031868, 1038431, 1044994, 1051557, 1058120, 1064683} },
{"Gorehowl", {6028773, 28773, 328773, 228773, 1004784, 1012048, 1018701, 1025305, 1031869, 1038432, 1044995, 1051558, 1058121, 1064684} },
{"Glaive of the Pit", {6028774, 28774, 328774, 228774, 1004785, 1012049, 1018702, 1025306, 1031870, 1038433, 1044996, 1051559, 1058122, 1064685} },
{"Thundering Greathelm", {6028775, 28775, 328775, 228775, 1004786, 1012050, 1018703, 1025307, 1031871, 1038434, 1044997, 1051560, 1058123, 1064686} },
{"Liar's Tongue Gloves", {6028776, 28776, 328776, 228776, 1004787, 1012051, 1018704, 1025308, 1031872, 1038435, 1044998, 1051561, 1058124, 1064687} },
{"Cloak of the Pit Stalker", {6028777, 28777, 328777, 228777, 1004788, 1012052, 1018705, 1025309, 1031873, 1038436, 1044999, 1051562, 1058125, 1064688} },
{"Terror Pit Girdle", {6028778, 28778, 328778, 228778, 1004789, 1012053, 1018706, 1025310, 1031874, 1038437, 1045000, 1051563, 1058126, 1064689} },
{"Girdle of the Endless Pit", {6028779, 28779, 328779, 228779, 1004790, 1012054, 1018707, 1025311, 1031875, 1038438, 1045001, 1051564, 1058127, 1064690} },
{"Soul-Eater's Handwraps", {6028780, 28780, 328780, 228780, 1004791, 1012055, 1018708, 1025312, 1031876, 1038439, 1045002, 1051565, 1058128, 1064691} },
{"Karaborian Talisman", {6028781, 28781, 328781, 228781, 1004792, 1012056, 1018709, 1025313, 1031877, 1038440, 1045003, 1051566, 1058129, 1064692} },
{"Crystalheart Pulse-Staff", {6028782, 28782, 328782, 228782, 1004793, 1012057, 1018710, 1025314, 1031878, 1038441, 1045004, 1051567, 1058130, 1064693} },
{"Eredar Wand of Obliteration", {6028783, 28783, 328783, 228783, 1004794, 1012058, 1018711, 1025315, 1031879, 1038442, 1045005, 1051568, 1058131, 1064694} },
{"The Lightning Capacitor", {6028785, 28785, 328785, 228785, 1004795, 1012059, 1018712, 1025316, 1031880, 1038443, 1045006, 1051569, 1058132, 1064695} },
{"Eye of Magtheridon", {6028789, 28789, 328789, 228789, 1004796, 1012060, 1018713, 1025317, 1031881, 1038444, 1045007, 1051570, 1058133, 1064696} },
{"Naaru Lightwarden's Band", {6028790, 28790, 328790, 228790, 1004797, 1012061, 1018714, 1025318, 1031882, 1038445, 1045008, 1051571, 1058134, 1064697} },
{"Ring of the Recalcitrant", {6028791, 28791, 328791, 228791, 1004798, 1012062, 1018715, 1025319, 1031883, 1038446, 1045009, 1051572, 1058135, 1064698} },
{"A'dal's Signet of Defense", {6028792, 28792, 328792, 228792, 1004799, 1012063, 1018716, 1025320, 1031884, 1038447, 1045010, 1051573, 1058136, 1064699} },
{"Band of Crimson Fury", {6028793, 28793, 328793, 228793, 1004800, 1012064, 1018717, 1025321, 1031885, 1038448, 1045011, 1051574, 1058137, 1064700} },
{"Axe of the Gronn Lords", {6028794, 28794, 328794, 228794, 1004801, 1012065, 1018718, 1025322, 1031886, 1038449, 1045012, 1051575, 1058138, 1064701} },
{"Bladespire Warbands", {6028795, 28795, 328795, 228795, 1004802, 1012066, 1018719, 1025323, 1031887, 1038450, 1045013, 1051576, 1058139, 1064702} },
{"Malefic Mask of the Shadows", {6028796, 28796, 328796, 228796, 1004803, 1012067, 1018720, 1025324, 1031888, 1038451, 1045014, 1051577, 1058140, 1064703} },
{"Brute Cloak of the Ogre-Magi", {6028797, 28797, 328797, 228797, 1004804, 1012069, 1018721, 1025325, 1031889, 1038452, 1045015, 1051578, 1058141, 1064704} },
{"Belt of Divine Inspiration", {6028799, 28799, 328799, 228799, 1004805, 1012070, 1018722, 1025326, 1031890, 1038453, 1045016, 1051579, 1058142, 1064705} },
{"Hammer of the Naaru", {6028800, 28800, 328800, 228800, 1004806, 1012071, 1018723, 1025327, 1031891, 1038454, 1045017, 1051580, 1058143, 1064706} },
{"Maulgar's Warhelm", {6028801, 28801, 328801, 228801, 1004807, 1012072, 1018724, 1025328, 1031892, 1038455, 1045018, 1051581, 1058144, 1064707} },
{"Bloodmaw Magus-Blade", {6028802, 28802, 328802, 228802, 1004808, 1012073, 1018725, 1025329, 1031893, 1038456, 1045019, 1051582, 1058145, 1064708} },
{"Cowl of Nature's Breath", {6028803, 28803, 328803, 228803, 1004809, 1012074, 1018726, 1025330, 1031894, 1038457, 1045020, 1051583, 1058146, 1064709} },
{"Collar of Cho'gall", {6028804, 28804, 328804, 228804, 1004810, 1012075, 1018727, 1025331, 1031895, 1038458, 1045021, 1051584, 1058147, 1064710} },
{"Windshear Boots", {6028810, 28810, 328810, 228810, 1004811, 1012076, 1018728, 1025332, 1031896, 1038459, 1045022, 1051585, 1058148, 1064711} },
{"Teeth of Gruul", {6028822, 28822, 328822, 228822, 1004812, 1012077, 1018729, 1025333, 1031897, 1038460, 1045023, 1051586, 1058149, 1064712} },
{"Eye of Gruul", {6028823, 28823, 328823, 228823, 1004813, 1012078, 1018730, 1025334, 1031898, 1038461, 1045024, 1051587, 1058150, 1064713} },
{"Gauntlets of Martial Perfection", {6028824, 28824, 328824, 228824, 1004814, 1012079, 1018731, 1025335, 1031899, 1038462, 1045025, 1051588, 1058151, 1064714} },
{"Aldori Legacy Defender", {6028825, 28825, 328825, 228825, 1004815, 1012080, 1018732, 1025336, 1031900, 1038463, 1045026, 1051589, 1058152, 1064715} },
{"Shuriken of Negation", {6028826, 28826, 328826, 228826, 1004816, 1012081, 1018733, 1025337, 1031901, 1038464, 1045027, 1051590, 1058153, 1064716} },
{"Gauntlets of the Dragonslayer", {6028827, 28827, 328827, 228827, 1004817, 1012082, 1018734, 1025338, 1031902, 1038465, 1045028, 1051591, 1058154, 1064717} },
{"Gronn-Stitched Girdle", {6028828, 28828, 328828, 228828, 1004818, 1012083, 1018735, 1025339, 1031903, 1038466, 1045029, 1051592, 1058155, 1064718} },
{"Dragonspine Trophy", {6028830, 28830, 328830, 228830, 1004819, 1012084, 1018736, 1025340, 1031904, 1038467, 1045030, 1051593, 1058156, 1064719} },
{"Voidheart Crown", {6028963, 28963, 328963, 228963, 1004820, 1012085, 1018737, 1025341, 1031905, 1038468, 1045031, 1051594, 1058157, 1064720} },
{"Voidheart Robe", {6028964, 28964, 328964, 228964, 1004821, 1012086, 1018738, 1025342, 1031906, 1038469, 1045032, 1051595, 1058158, 1064721} },
{"Voidheart Leggings", {6028966, 28966, 328966, 228966, 1004822, 1012087, 1018739, 1025343, 1031907, 1038470, 1045033, 1051596, 1058159, 1064722} },
{"Voidheart Mantle", {6028967, 28967, 328967, 228967, 1004823, 1012088, 1018740, 1025344, 1031908, 1038471, 1045034, 1051597, 1058160, 1064723} },
{"Voidheart Gloves", {6028968, 28968, 328968, 228968, 1004824, 1012089, 1018741, 1025345, 1031909, 1038472, 1045035, 1051598, 1058161, 1064724} },
{"Flightblade Throwing Axe", {6028972, 28972, 116056, 228972, 1004825, 1012090, 1018742, 1025346, 1031910, 1038473, 1045036, 1051599, 1058162, 1064725} },
{"Warbringer Greathelm", {6029011, 29011, 329011, 229011, 1004826, 1012091, 1018743, 1025347, 1031911, 1038474, 1045037, 1051600, 1058163, 1064726} },
{"Warbringer Chestguard", {6029012, 29012, 329012, 229012, 1004827, 1012092, 1018744, 1025348, 1031912, 1038475, 1045038, 1051601, 1058164, 1064727} },
{"Warbringer Legguards", {6029015, 29015, 329015, 229015, 1004828, 1012093, 1018745, 1025349, 1031913, 1038476, 1045039, 1051602, 1058165, 1064728} },
{"Warbringer Shoulderguards", {6029016, 29016, 329016, 229016, 1004829, 1012094, 1018746, 1025350, 1031914, 1038477, 1045040, 1051603, 1058166, 1064729} },
{"Warbringer Handguards", {6029017, 29017, 329017, 229017, 1004830, 1012095, 1018747, 1025351, 1031915, 1038478, 1045041, 1051604, 1058167, 1064730} },
{"Warbringer Breastplate", {6029019, 29019, 329019, 229019, 1004831, 1012096, 1018748, 1025352, 1031916, 1038479, 1045042, 1051605, 1058168, 1064731} },
{"Warbringer Gauntlets", {6029020, 29020, 329020, 229020, 1004832, 1012097, 1018749, 1025353, 1031917, 1038480, 1045043, 1051606, 1058169, 1064732} },
{"Warbringer Battle-Helm", {6029021, 29021, 329021, 229021, 1004833, 1012098, 1018750, 1025354, 1031918, 1038481, 1045044, 1051607, 1058170, 1064733} },
{"Warbringer Greaves", {6029022, 29022, 329022, 229022, 1004834, 1012099, 1018751, 1025355, 1031919, 1038482, 1045045, 1051608, 1058171, 1064734} },
{"Warbringer Shoulderplates", {6029023, 29023, 329023, 229023, 1004835, 1012100, 1018752, 1025356, 1031920, 1038483, 1045046, 1051609, 1058172, 1064735} },
{"Cyclone Headdress", {6029028, 29028, 329028, 229028, 1004836, 1012101, 1018753, 1025357, 1031921, 1038484, 1045047, 1051610, 1058173, 1064736} },
{"Cyclone Hauberk", {6029029, 29029, 329029, 229029, 1004837, 1012102, 1018754, 1025358, 1031922, 1038485, 1045048, 1051611, 1058174, 1064737} },
{"Cyclone Kilt", {6029030, 29030, 329030, 229030, 1004838, 1012103, 1018755, 1025359, 1031923, 1038486, 1045049, 1051612, 1058175, 1064738} },
{"Cyclone Shoulderpads", {6029031, 29031, 329031, 229031, 1004839, 1012104, 1018756, 1025360, 1031924, 1038487, 1045050, 1051613, 1058176, 1064739} },
{"Cyclone Gloves", {6029032, 29032, 329032, 229032, 1004840, 1012105, 1018757, 1025361, 1031925, 1038488, 1045051, 1051614, 1058177, 1064740} },
{"Cyclone Chestguard", {6029033, 29033, 329033, 229033, 1004841, 1012106, 1018758, 1025362, 1031926, 1038489, 1045052, 1051615, 1058178, 1064741} },
{"Cyclone Handguards", {6029034, 29034, 329034, 229034, 1004842, 1012107, 1018759, 1025363, 1031927, 1038490, 1045053, 1051616, 1058179, 1064742} },
{"Cyclone Faceguard", {6029035, 29035, 329035, 229035, 1004843, 1012108, 1018760, 1025364, 1031928, 1038491, 1045054, 1051617, 1058180, 1064743} },
{"Cyclone Legguards", {6029036, 29036, 329036, 229036, 1004844, 1012109, 1018761, 1025365, 1031929, 1038492, 1045055, 1051618, 1058181, 1064744} },
{"Cyclone Shoulderguards", {6029037, 29037, 329037, 229037, 1004845, 1012110, 1018762, 1025366, 1031930, 1038493, 1045056, 1051619, 1058182, 1064745} },
{"Cyclone Breastplate", {6029038, 29038, 329038, 229038, 1004846, 1012111, 1018763, 1025367, 1031931, 1038494, 1045057, 1051620, 1058183, 1064746} },
{"Cyclone Gauntlets", {6029039, 29039, 329039, 229039, 1004847, 1012112, 1018764, 1025368, 1031932, 1038495, 1045058, 1051621, 1058184, 1064747} },
{"Cyclone Helm", {6029040, 29040, 329040, 229040, 1004848, 1012113, 1018765, 1025369, 1031933, 1038496, 1045059, 1051622, 1058185, 1064748} },
{"Cyclone War-Kilt", {6029042, 29042, 329042, 229042, 1004849, 1012114, 1018766, 1025370, 1031934, 1038497, 1045060, 1051623, 1058186, 1064749} },
{"Cyclone Shoulderplates", {6029043, 29043, 329043, 229043, 1004850, 1012115, 1018767, 1025371, 1031935, 1038498, 1045061, 1051624, 1058187, 1064750} },
{"Netherblade Facemask", {6029044, 29044, 329044, 229044, 1004851, 1012116, 1018768, 1025372, 1031936, 1038499, 1045062, 1051625, 1058188, 1064751} },
{"Netherblade Chestpiece", {6029045, 29045, 329045, 229045, 1004852, 1012117, 1018769, 1025373, 1031937, 1038500, 1045063, 1051626, 1058189, 1064752} },
{"Netherblade Breeches", {6029046, 29046, 329046, 229046, 1004853, 1012118, 1018770, 1025374, 1031938, 1038501, 1045064, 1051627, 1058190, 1064753} },
{"Netherblade Shoulderpads", {6029047, 29047, 329047, 229047, 1004854, 1012119, 1018771, 1025375, 1031939, 1038502, 1045065, 1051628, 1058191, 1064754} },
{"Netherblade Gloves", {6029048, 29048, 329048, 229048, 1004855, 1012120, 1018772, 1025376, 1031940, 1038503, 1045066, 1051629, 1058192, 1064755} },
{"Light-Collar of the Incarnate", {6029049, 29049, 329049, 229049, 1004856, 1012121, 1018773, 1025377, 1031941, 1038504, 1045067, 1051630, 1058193, 1064756} },
{"Robes of the Incarnate", {6029050, 29050, 329050, 229050, 1004857, 1012122, 1018774, 1025378, 1031942, 1038505, 1045068, 1051631, 1058194, 1064757} },
{"Trousers of the Incarnate", {6029053, 29053, 329053, 229053, 1004858, 1012123, 1018775, 1025379, 1031943, 1038506, 1045069, 1051632, 1058195, 1064758} },
{"Light-Mantle of the Incarnate", {6029054, 29054, 329054, 229054, 1004859, 1012124, 1018776, 1025380, 1031944, 1038507, 1045070, 1051633, 1058196, 1064759} },
{"Handwraps of the Incarnate", {6029055, 29055, 329055, 229055, 1004860, 1012125, 1018777, 1025381, 1031945, 1038508, 1045071, 1051634, 1058197, 1064760} },
{"Shroud of the Incarnate", {6029056, 29056, 329056, 229056, 1004861, 1012126, 1018778, 1025382, 1031946, 1038509, 1045072, 1051635, 1058198, 1064761} },
{"Gloves of the Incarnate", {6029057, 29057, 329057, 229057, 1004862, 1012127, 1018779, 1025383, 1031947, 1038510, 1045073, 1051636, 1058199, 1064762} },
{"Soul-Collar of the Incarnate", {6029058, 29058, 329058, 229058, 1004863, 1012128, 1018780, 1025384, 1031948, 1038511, 1045074, 1051637, 1058200, 1064763} },
{"Leggings of the Incarnate", {6029059, 29059, 329059, 229059, 1004864, 1012129, 1018781, 1025385, 1031949, 1038512, 1045075, 1051638, 1058201, 1064764} },
{"Soul-Mantle of the Incarnate", {6029060, 29060, 329060, 229060, 1004865, 1012130, 1018782, 1025386, 1031950, 1038513, 1045076, 1051639, 1058202, 1064765} },
{"Justicar Diadem", {6029061, 29061, 329061, 229061, 1004866, 1012131, 1018783, 1025387, 1031951, 1038514, 1045077, 1051640, 1058203, 1064766} },
{"Justicar Chestpiece", {6029062, 29062, 329062, 229062, 1004867, 1012132, 1018784, 1025388, 1031952, 1038515, 1045078, 1051641, 1058204, 1064767} },
{"Justicar Leggings", {6029063, 29063, 329063, 229063, 1004868, 1012133, 1018785, 1025389, 1031953, 1038516, 1045079, 1051642, 1058205, 1064768} },
{"Justicar Pauldrons", {6029064, 29064, 329064, 229064, 1004869, 1012134, 1018786, 1025390, 1031954, 1038517, 1045080, 1051643, 1058206, 1064769} },
{"Justicar Gloves", {6029065, 29065, 329065, 229065, 1004870, 1012135, 1018787, 1025391, 1031955, 1038518, 1045081, 1051644, 1058207, 1064770} },
{"Justicar Chestguard", {6029066, 29066, 329066, 229066, 1004871, 1012136, 1018788, 1025392, 1031956, 1038519, 1045082, 1051645, 1058208, 1064771} },
{"Justicar Handguards", {6029067, 29067, 329067, 229067, 1004872, 1012137, 1018789, 1025393, 1031957, 1038520, 1045083, 1051646, 1058209, 1064772} },
{"Justicar Faceguard", {6029068, 29068, 329068, 229068, 1004873, 1012138, 1018790, 1025394, 1031958, 1038521, 1045084, 1051647, 1058210, 1064773} },
{"Justicar Legguards", {6029069, 29069, 329069, 229069, 1004874, 1012139, 1018791, 1025395, 1031959, 1038522, 1045085, 1051648, 1058211, 1064774} },
{"Justicar Shoulderguards", {6029070, 29070, 329070, 229070, 1004875, 1012140, 1018792, 1025396, 1031960, 1038523, 1045086, 1051649, 1058212, 1064775} },
{"Justicar Breastplate", {6029071, 29071, 329071, 229071, 1004876, 1012141, 1018793, 1025397, 1031961, 1038524, 1045087, 1051650, 1058213, 1064776} },
{"Justicar Gauntlets", {6029072, 29072, 329072, 229072, 1004877, 1012142, 1018794, 1025398, 1031962, 1038525, 1045088, 1051651, 1058214, 1064777} },
{"Justicar Crown", {6029073, 29073, 329073, 229073, 1004878, 1012143, 1018795, 1025399, 1031963, 1038526, 1045089, 1051652, 1058215, 1064778} },
{"Justicar Greaves", {6029074, 29074, 329074, 229074, 1004879, 1012144, 1018796, 1025400, 1031964, 1038527, 1045090, 1051653, 1058216, 1064779} },
{"Justicar Shoulderplates", {6029075, 29075, 329075, 229075, 1004880, 1012145, 1018797, 1025401, 1031965, 1038528, 1045091, 1051654, 1058217, 1064780} },
{"Collar of the Aldor", {6029076, 29076, 329076, 229076, 1004881, 1012146, 1018798, 1025402, 1031966, 1038529, 1045092, 1051655, 1058218, 1064781} },
{"Vestments of the Aldor", {6029077, 29077, 329077, 229077, 1004882, 1012147, 1018799, 1025403, 1031967, 1038530, 1045093, 1051656, 1058219, 1064782} },
{"Legwraps of the Aldor", {6029078, 29078, 329078, 229078, 1004883, 1012148, 1018800, 1025404, 1031968, 1038531, 1045094, 1051657, 1058220, 1064783} },
{"Pauldrons of the Aldor", {6029079, 29079, 329079, 229079, 1004884, 1012149, 1018801, 1025405, 1031969, 1038532, 1045095, 1051658, 1058221, 1064784} },
{"Gloves of the Aldor", {6029080, 29080, 329080, 229080, 1004885, 1012150, 1018802, 1025406, 1031970, 1038533, 1045096, 1051659, 1058222, 1064785} },
{"Demon Stalker Greathelm", {6029081, 29081, 329081, 229081, 1004886, 1012151, 1018803, 1025407, 1031971, 1038534, 1045097, 1051660, 1058223, 1064786} },
{"Demon Stalker Harness", {6029082, 29082, 329082, 229082, 1004887, 1012152, 1018804, 1025408, 1031972, 1038535, 1045098, 1051661, 1058224, 1064787} },
{"Demon Stalker Greaves", {6029083, 29083, 329083, 229083, 1004888, 1012153, 1018805, 1025409, 1031973, 1038536, 1045099, 1051662, 1058225, 1064788} },
{"Demon Stalker Shoulderguards", {6029084, 29084, 329084, 229084, 1004889, 1012154, 1018806, 1025410, 1031974, 1038537, 1045100, 1051663, 1058226, 1064789} },
{"Demon Stalker Gauntlets", {6029085, 29085, 329085, 229085, 1004890, 1012155, 1018807, 1025411, 1031975, 1038538, 1045101, 1051664, 1058227, 1064790} },
{"Crown of Malorne", {6029086, 29086, 329086, 229086, 1004891, 1012156, 1018808, 1025412, 1031976, 1038539, 1045102, 1051665, 1058228, 1064791} },
{"Chestguard of Malorne", {6029087, 29087, 329087, 229087, 1004892, 1012157, 1018809, 1025413, 1031977, 1038540, 1045103, 1051666, 1058229, 1064792} },
{"Legguards of Malorne", {6029088, 29088, 329088, 229088, 1004893, 1012158, 1018810, 1025414, 1031978, 1038541, 1045104, 1051667, 1058230, 1064793} },
{"Shoulderguards of Malorne", {6029089, 29089, 329089, 229089, 1004894, 1012159, 1018811, 1025415, 1031979, 1038542, 1045105, 1051668, 1058231, 1064794} },
{"Handguards of Malorne", {6029090, 29090, 329090, 229090, 1004895, 1012160, 1018812, 1025416, 1031980, 1038543, 1045106, 1051669, 1058232, 1064795} },
{"Chestpiece of Malorne", {6029091, 29091, 329091, 229091, 1004896, 1012161, 1018813, 1025417, 1031981, 1038544, 1045107, 1051670, 1058233, 1064796} },
{"Gloves of Malorne", {6029092, 29092, 329092, 229092, 1004897, 1012162, 1018814, 1025418, 1031982, 1038545, 1045108, 1051671, 1058234, 1064797} },
{"Antlers of Malorne", {6029093, 29093, 329093, 229093, 1004898, 1012163, 1018815, 1025419, 1031983, 1038546, 1045109, 1051672, 1058235, 1064798} },
{"Britches of Malorne", {6029094, 29094, 329094, 229094, 1004899, 1012164, 1018816, 1025420, 1031984, 1038547, 1045110, 1051673, 1058236, 1064799} },
{"Pauldrons of Malorne", {6029095, 29095, 329095, 229095, 1004900, 1012165, 1018817, 1025421, 1031985, 1038548, 1045111, 1051674, 1058237, 1064800} },
{"Blade of the Unyielding", {277518, 29108, 277517, 277519, 277520, 277521, 277522, 277523, 277524, 277525, 277526, 277527, 277528, 277529} },
{"Rod of the Unyielding", {277531, 29109, 277530, 277532, 277533, 277534, 277535, 277536, 277537, 277538, 277539, 277540, 277541, 277542} },
{"Consortium Blaster", {6029115, 29115, 277543, 277544, 277545, 277546, 277547, 277548, 277549, 277550, 277551, 277552, 277553, 277554} },
{"Nomad's Leggings", {6029116, 29116, 277555, 277556, 277557, 277558, 277559, 277560, 277561, 277562, 277563, 277564, 277565, 277566} },
{"Stormspire Vest", {6029117, 29117, 277567, 277568, 277569, 277570, 277571, 277572, 277573, 277574, 277575, 277576, 277577, 277578} },
{"Haramad's Bargain", {6029119, 29119, 277579, 277580, 277581, 277582, 277583, 277584, 277585, 277586, 277587, 277588, 277589, 277590} },
{"Guile of Khoraazi", {6029121, 29121, 277591, 277592, 277593, 277594, 277595, 277596, 277597, 277598, 277599, 277600, 277601, 277602} },
{"Nether Runner's Cowl", {6029122, 29122, 277603, 277604, 277605, 277606, 277607, 277608, 277609, 277610, 277611, 277612, 277613, 277614} },
{"Medallion of the Lightbearer", {6029123, 29123, 277615, 277616, 277617, 277618, 277619, 277620, 277621, 277622, 277623, 277624, 277625, 277626} },
{"Vindicator's Brand", {6029124, 29124, 277627, 277628, 277629, 277630, 277631, 277632, 277633, 277634, 277635, 277636, 277637, 277638} },
{"Retainer's Blade", {6029125, 29125, 277639, 277640, 277641, 277642, 277643, 277644, 277645, 277646, 277647, 277648, 277649, 277650} },
{"Seer's Signet", {6029126, 29126, 277651, 277652, 277653, 277654, 277655, 277656, 277657, 277658, 277659, 277660, 277661, 277662} },
{"Vindicator's Hauberk", {6029127, 29127, 277663, 277664, 277665, 277666, 277667, 277668, 277669, 277670, 277671, 277672, 277673, 277674} },
{"Lightwarden's Band", {6029128, 29128, 277675, 277676, 277677, 277678, 277679, 277680, 277681, 277682, 277683, 277684, 277685, 277686} },
{"Anchorite's Robes", {6029129, 29129, 277687, 277688, 277689, 277690, 277691, 277692, 277693, 277694, 277695, 277696, 277697, 277698} },
{"Auchenai Staff", {6029130, 29130, 277699, 277700, 277701, 277702, 277703, 277704, 277705, 277706, 277707, 277708, 277709, 277710} },
{"Retainer's Leggings", {6029131, 29131, 277711, 277712, 277713, 277714, 277715, 277716, 277717, 277718, 277719, 277720, 277721, 277722} },
{"Scryer's Bloodgem", {6029132, 29132, 277723, 277724, 277725, 277726, 277727, 277728, 277729, 277730, 277731, 277732, 277733, 277734} },
{"Seer's Cane", {6029133, 29133, 277735, 277736, 277737, 277738, 277739, 277740, 277741, 277742, 277743, 277744, 277745, 277746} },
{"Gauntlets of the Chosen", {6029134, 29134, 277747, 277748, 277749, 277750, 277751, 277752, 277753, 277754, 277755, 277756, 277757, 277758} },
{"Earthcaller's Headdress", {6029135, 29135, 277759, 277760, 277761, 277762, 277763, 277764, 277765, 277766, 277767, 277768, 277769, 277770} },
{"Far Seer's Helm", {6029136, 29136, 277771, 277772, 277773, 277774, 277775, 277776, 277777, 277778, 277779, 277780, 277781, 277782} },
{"Hellscream's Will", {6029137, 29137, 277783, 277784, 277785, 277786, 277787, 277788, 277789, 277790, 277791, 277792, 277793, 277794} },
{"Arechron's Gift", {6029138, 29138, 277795, 277796, 277797, 277798, 277799, 277800, 277801, 277802, 277803, 277804, 277805, 277806} },
{"Ceremonial Cover", {6029139, 29139, 277807, 277808, 277809, 277810, 277811, 277812, 277813, 277814, 277815, 277816, 277817, 277818} },
{"Cloak of the Ancient Spirits", {6029140, 29140, 277819, 277820, 277821, 277822, 277823, 277824, 277825, 277826, 277827, 277828, 277829, 277830} },
{"Tempest Leggings", {6029141, 29141, 277831, 277832, 277833, 277834, 277835, 277836, 277837, 277838, 277839, 277840, 277841, 277842} },
{"Kurenai Kilt", {6029142, 29142, 277843, 277844, 277845, 277846, 277847, 277848, 277849, 277850, 277851, 277852, 277853, 277854} },
{"Band of Ancestral Spirits", {6029145, 29145, 277855, 277856, 277857, 277858, 277859, 277860, 277861, 277862, 277863, 277864, 277865, 277866} },
{"Band of Elemental Spirits", {6029146, 29146, 277867, 277868, 277869, 277870, 277871, 277872, 277873, 277874, 277875, 277876, 277877, 277878} },
{"Talbuk Hide Spaulders", {6029147, 29147, 277879, 277880, 277881, 277882, 277883, 277884, 277885, 277886, 277887, 277888, 277889, 277890} },
{"Blackened Leather Spaulders", {6029148, 29148, 277891, 277892, 277893, 277894, 277895, 277896, 277897, 277898, 277899, 277900, 277901, 277902} },
{"Sporeling's Firestick", {6029149, 29149, 277903, 277904, 277905, 277906, 277907, 277908, 277909, 277910, 277911, 277912, 277913, 277914} },
{"Hardened Stone Shard", {6029150, 29150, 277915, 277916, 277917, 277918, 277919, 277920, 277921, 277922, 277923, 277924, 277925, 277926} },
{"Veteran's Musket", {6029151, 29151, 277927, 277928, 277929, 277930, 277931, 277932, 277933, 277934, 277935, 277936, 277937, 277938} },
{"Marksman's Bow", {6029152, 29152, 277939, 277940, 277941, 277942, 277943, 277944, 277945, 277946, 277947, 277948, 277949, 277950} },
{"Blade of the Archmage", {6029153, 29153, 277951, 277952, 277953, 277954, 277955, 277956, 277957, 277958, 277959, 277960, 277961, 277962} },
{"Stormcaller", {6029155, 29155, 277963, 277964, 277965, 277966, 277967, 277968, 277969, 277970, 277971, 277972, 277973, 277974} },
{"Honor's Call", {6029156, 29156, 277975, 277976, 277977, 277978, 277979, 277980, 277981, 277982, 277983, 277984, 277985, 277986} },
{"Glowing Thorium Band", {278014, 29159, 278013, 278015, 278016, 278017, 278018, 278019, 278020, 278021, 278022, 278023, 278024, 278025} },
{"Emerald Lion Ring", {278027, 29160, 278026, 278028, 278029, 278030, 278031, 278032, 278033, 278034, 278035, 278036, 278037, 278038} },
{"Warbringer", {6029165, 29165, 278039, 278040, 278041, 278042, 278043, 278044, 278045, 278046, 278047, 278048, 278049, 278050} },
{"Hellforged Halberd", {6029166, 29166, 278051, 278052, 278053, 278054, 278055, 278056, 278057, 278058, 278059, 278060, 278061, 278062} },
{"Blackened Spear", {6029167, 29167, 278063, 278064, 278065, 278066, 278067, 278068, 278069, 278070, 278071, 278072, 278073, 278074} },
{"Ancestral Band", {6029168, 29168, 278075, 278076, 278077, 278078, 278079, 278080, 278081, 278082, 278083, 278084, 278085, 278086} },
{"Ring of Convalescence", {6029169, 29169, 278087, 278088, 278089, 278090, 278091, 278092, 278093, 278094, 278095, 278096, 278097, 278098} },
{"Windcaller's Orb", {6029170, 29170, 278099, 278100, 278101, 278102, 278103, 278104, 278105, 278106, 278107, 278108, 278109, 278110} },
{"Earthwarden", {6029171, 29171, 278111, 278112, 278113, 278114, 278115, 278116, 278117, 278118, 278119, 278120, 278121, 278122} },
{"Ashyen's Gift", {6029172, 29172, 278123, 278124, 278125, 278126, 278127, 278128, 278129, 278130, 278131, 278132, 278133, 278134} },
{"Strength of the Untamed", {6029173, 29173, 278135, 278136, 278137, 278138, 278139, 278140, 278141, 278142, 278143, 278144, 278145, 278146} },
{"Watcher's Cowl", {6029174, 29174, 278147, 278148, 278149, 278150, 278151, 278152, 278153, 278154, 278155, 278156, 278157, 278158} },
{"Gavel of Pure Light", {6029175, 29175, 278159, 278160, 278161, 278162, 278163, 278164, 278165, 278166, 278167, 278168, 278169, 278170} },
{"Crest of the Sha'tar", {6029176, 29176, 278171, 278172, 278173, 278174, 278175, 278176, 278177, 278178, 278179, 278180, 278181, 278182} },
{"A'dal's Command", {6029177, 29177, 278183, 278184, 278185, 278186, 278187, 278188, 278189, 278190, 278191, 278192, 278193, 278194} },
{"Xi'ri's Gift", {6029179, 29179, 278195, 278196, 278197, 278198, 278199, 278200, 278201, 278202, 278203, 278204, 278205, 278206} },
{"Blessed Scale Girdle", {6029180, 29180, 278207, 278208, 278209, 278210, 278211, 278212, 278213, 278214, 278215, 278216, 278217, 278218} },
{"Timelapse Shard", {6029181, 29181, 278219, 278220, 278221, 278222, 278223, 278224, 278225, 278226, 278227, 278228, 278229, 278230} },
{"Riftmaker", {6029182, 29182, 278231, 278232, 278233, 278234, 278235, 278236, 278237, 278238, 278239, 278240, 278241, 278242} },
{"Bindings of the Timewalker", {6029183, 29183, 278243, 278244, 278245, 278246, 278247, 278248, 278249, 278250, 278251, 278252, 278253, 278254} },
{"Timewarden's Leggings", {6029184, 29184, 278255, 278256, 278257, 278258, 278259, 278260, 278261, 278262, 278263, 278264, 278265, 278266} },
{"Continuum Blade", {6029185, 29185, 278267, 278268, 278269, 278270, 278271, 278272, 278273, 278274, 278275, 278276, 278277, 278278} },
{"Enchanted Thorium Blades", {278319, 29203, 278318, 278320, 278321, 278322, 278323, 278324, 278325, 278326, 278327, 278328, 278329, 278330} },
{"Felsteel Whisper Knives", {6029204, 29204, 278331, 278332, 278333, 278334, 278335, 278336, 278337, 278338, 278339, 278340, 278341, 278342} },
{"Assassin's Throwing Axe", {6029210, 29210, 278343, 278344, 278345, 278346, 278347, 278348, 278349, 278350, 278351, 278352, 278353, 278354} },
{"Fitz's Throwing Axe", {6029211, 29211, 278355, 278356, 278357, 278358, 278359, 278360, 278361, 278362, 278363, 278364, 278365, 278366} },
{"Balanced Stone Dirk", {278368, 29212, 278367, 278369, 278370, 278371, 278372, 278373, 278374, 278375, 278376, 278377, 278378, 278379} },
{"Warpath Bracers", {6029237, 29237, 278380, 278381, 278382, 278383, 278384, 278385, 278386, 278387, 278388, 278389, 278390, 278391} },
{"Lion's Heart Girdle", {6029238, 29238, 122282, 429238, 1007662, 1014545, 1021209, 1027774, 1034338, 1040901, 1047464, 1054027, 1060590, 1067153} },
{"Eaglecrest Warboots", {6029239, 29239, 103879, 429239, 1007663, 1014546, 1021210, 1027775, 1034339, 1040902, 1047465, 1054028, 1060591, 1067154} },
{"Bands of Negation", {6029240, 29240, 100212, 429240, 1007664, 1014547, 1021211, 1027776, 1034340, 1040903, 1047466, 1054029, 1060592, 1067155} },
{"Belt of Depravity", {6029241, 29241, 100262, 429241, 1007665, 1014548, 1021212, 1027777, 1034341, 1040904, 1047467, 1054030, 1060593, 1067156} },
{"Boots of Blasphemy", {6029242, 29242, 100451, 429242, 1007666, 1014549, 1021213, 1027778, 1034342, 1040905, 1047468, 1054031, 1060594, 1067157} },
{"Wave-Fury Vambraces", {6029243, 29243, 130823, 429243, 1007667, 1014550, 1021214, 1027779, 1034343, 1040906, 1047469, 1054032, 1060595, 1067158} },
{"Wave-Song Girdle", {6029244, 29244, 130824, 429244, 1007668, 1014551, 1021215, 1027780, 1034344, 1040907, 1047470, 1054033, 1060596, 1067159} },
{"Wave-Crest Striders", {6029245, 29245, 130822, 429245, 1007669, 1014552, 1021216, 1027781, 1034345, 1040908, 1047471, 1054034, 1060597, 1067160} },
{"Nightfall Wristguards", {6029246, 29246, 123072, 429246, 1007670, 1014553, 1021217, 1027782, 1034346, 1040909, 1047472, 1054035, 1060598, 1067161} },
{"Girdle of the Deathdealer", {6029247, 29247, 117450, 429247, 1007671, 1014554, 1021218, 1027783, 1034347, 1040910, 1047473, 1054036, 1060599, 1067162} },
{"Shadowstep Striders", {6029248, 29248, 123796, 429248, 1007672, 1014555, 1021219, 1027784, 1034348, 1040911, 1047474, 1054037, 1060600, 1067163} },
{"Bands of the Benevolent", {6029249, 29249, 100216, 429249, 1007673, 1014556, 1021220, 1027785, 1034349, 1040912, 1047475, 1054038, 1060601, 1067164} },
{"Cord of Sanctification", {6029250, 29250, 100895, 429250, 1007674, 1014557, 1021221, 1027786, 1034350, 1040913, 1047476, 1054039, 1060602, 1067165} },
{"Boots of the Pious", {6029251, 29251, 100472, 429251, 1007675, 1014558, 1021222, 1027787, 1034351, 1040914, 1047477, 1054040, 1060603, 1067166} },
{"Bracers of Dignity", {6029252, 29252, 100634, 429252, 1007676, 1014559, 1021223, 1027788, 1034352, 1040915, 1047478, 1054041, 1060604, 1067167} },
{"Girdle of Valorous Deeds", {6029253, 29253, 117459, 429253, 1007677, 1014560, 1021224, 1027789, 1034353, 1040916, 1047479, 1054042, 1060605, 1067168} },
{"Boots of the Righteous Path", {6029254, 29254, 100473, 429254, 1007678, 1014561, 1021225, 1027790, 1034354, 1040917, 1047480, 1054043, 1060606, 1067169} },
{"Bands of Rarefied Magic", {6029255, 29255, 100214, 429255, 1007679, 1014562, 1021226, 1027791, 1034355, 1040918, 1047481, 1054044, 1060607, 1067170} },
{"Sash of Arcane Visions", {6029257, 29257, 123691, 429257, 1007680, 1014563, 1021227, 1027792, 1034356, 1040919, 1047482, 1054045, 1060608, 1067171} },
{"Boots of Ethereal Manipulation", {6029258, 29258, 100454, 429258, 1007681, 1014564, 1021228, 1027793, 1034357, 1040920, 1047483, 1054046, 1060609, 1067172} },
{"Bracers of the Hunt", {6029259, 29259, 100659, 429259, 1007682, 1014565, 1021229, 1027794, 1034358, 1040921, 1047484, 1054047, 1060610, 1067173} },
{"Girdle of Ferocity", {6029261, 29261, 117430, 429261, 1007683, 1014566, 1021230, 1027795, 1034359, 1040922, 1047485, 1054048, 1060611, 1067174} },
{"Boots of the Endless Hunt", {6029262, 29262, 100461, 429262, 1007684, 1014567, 1021231, 1027796, 1034360, 1040923, 1047486, 1054049, 1060612, 1067175} },
{"Forestheart Bracers", {6029263, 29263, 116073, 429263, 1007685, 1014568, 1021232, 1027797, 1034361, 1040924, 1047487, 1054050, 1060613, 1067176} },
{"Tree-Mender's Belt", {6029264, 29264, 130466, 429264, 1007686, 1014569, 1021233, 1027798, 1034362, 1040925, 1047488, 1054051, 1060614, 1067177} },
{"Barkchip Boots", {6029265, 29265, 100220, 429265, 1007687, 1014570, 1021234, 1027799, 1034363, 1040926, 1047489, 1054052, 1060615, 1067178} },
{"Azure-Shield of Coldarra", {6029266, 29266, 278392, 278393, 278394, 278395, 278396, 278397, 278398, 278399, 278400, 278401, 278402, 278403} },
{"Light-Bearer's Faith Shield", {6029267, 29267, 278404, 278405, 278406, 278407, 278408, 278409, 278410, 278411, 278412, 278413, 278414, 278415} },
{"Mazthoril Honor Shield", {6029268, 29268, 278416, 278417, 278418, 278419, 278420, 278421, 278422, 278423, 278424, 278425, 278426, 278427} },
{"Sapphiron's Wing Bone", {6029269, 29269, 278428, 278429, 278430, 278431, 278432, 278433, 278434, 278435, 278436, 278437, 278438, 278439} },
{"Flametongue Seal", {6029270, 29270, 278440, 278441, 278442, 278443, 278444, 278445, 278446, 278447, 278448, 278449, 278450, 278451} },
{"Talisman of Kalecgos", {6029271, 29271, 278452, 278453, 278454, 278455, 278456, 278457, 278458, 278459, 278460, 278461, 278462, 278463} },
{"Orb of the Soul-Eater", {6029272, 29272, 278464, 278465, 278466, 278467, 278468, 278469, 278470, 278471, 278472, 278473, 278474, 278475} },
{"Khadgar's Knapsack", {6029273, 29273, 278476, 278477, 278478, 278479, 278480, 278481, 278482, 278483, 278484, 278485, 278486, 278487} },
{"Tears of Heaven", {6029274, 29274, 278488, 278489, 278490, 278491, 278492, 278493, 278494, 278495, 278496, 278497, 278498, 278499} },
{"Searing Sunblade", {6029275, 29275, 278500, 278501, 278502, 278503, 278504, 278505, 278506, 278507, 278508, 278509, 278510, 278511} },
{"Violet Signet", {6029276, 29276, 278512, 278513, 278514, 278515, 278516, 278517, 278518, 278519, 278520, 278521, 278522, 278523} },
{"Violet Signet", {6029277, 29277, 278524, 278525, 278526, 278527, 278528, 278529, 278530, 278531, 278532, 278533, 278534, 278535} },
{"Violet Signet", {6029278, 29278, 278536, 278537, 278538, 278539, 278540, 278541, 278542, 278543, 278544, 278545, 278546, 278547} },
{"Violet Signet of the Great Protector", {6029279, 29279, 278548, 278549, 278550, 278551, 278552, 278553, 278554, 278555, 278556, 278557, 278558, 278559} },
{"Violet Signet", {6029280, 29280, 278560, 278561, 278562, 278563, 278564, 278565, 278566, 278567, 278568, 278569, 278570, 278571} },
{"Violet Signet", {6029281, 29281, 278572, 278573, 278574, 278575, 278576, 278577, 278578, 278579, 278580, 278581, 278582, 278583} },
{"Violet Signet", {6029282, 29282, 278584, 278585, 278586, 278587, 278588, 278589, 278590, 278591, 278592, 278593, 278594, 278595} },
{"Violet Signet of the Master Assassin", {6029283, 29283, 278596, 278597, 278598, 278599, 278600, 278601, 278602, 278603, 278604, 278605, 278606, 278607} },
{"Violet Signet", {6029284, 29284, 278608, 278609, 278610, 278611, 278612, 278613, 278614, 278615, 278616, 278617, 278618, 278619} },
{"Violet Signet", {6029285, 29285, 278620, 278621, 278622, 278623, 278624, 278625, 278626, 278627, 278628, 278629, 278630, 278631} },
{"Violet Signet", {6029286, 29286, 278632, 278633, 278634, 278635, 278636, 278637, 278638, 278639, 278640, 278641, 278642, 278643} },
{"Violet Signet of the Archmage", {6029287, 29287, 278644, 278645, 278646, 278647, 278648, 278649, 278650, 278651, 278652, 278653, 278654, 278655} },
{"Violet Signet", {6029288, 29288, 278656, 278657, 278658, 278659, 278660, 278661, 278662, 278663, 278664, 278665, 278666, 278667} },
{"Violet Signet", {6029289, 29289, 278668, 278669, 278670, 278671, 278672, 278673, 278674, 278675, 278676, 278677, 278678, 278679} },
{"Violet Signet of the Grand Restorer", {6029290, 29290, 278680, 278681, 278682, 278683, 278684, 278685, 278686, 278687, 278688, 278689, 278690, 278691} },
{"Violet Signet", {6029291, 29291, 278692, 278693, 278694, 278695, 278696, 278697, 278698, 278699, 278700, 278701, 278702, 278703} },
{"Band of Eternity", {6029294, 29294, 278704, 278705, 278706, 278707, 278708, 278709, 278710, 278711, 278712, 278713, 278714, 278715} },
{"Band of Eternity", {6029295, 29295, 278716, 278717, 278718, 278719, 278720, 278721, 278722, 278723, 278724, 278725, 278726, 278727} },
{"Band of Eternity", {6029296, 29296, 278728, 278729, 278730, 278731, 278732, 278733, 278734, 278735, 278736, 278737, 278738, 278739} },
{"Band of the Eternal Defender", {6029297, 29297, 278740, 278741, 278742, 278743, 278744, 278745, 278746, 278747, 278748, 278749, 278750, 278751} },
{"Band of Eternity", {6029298, 29298, 278752, 278753, 278754, 278755, 278756, 278757, 278758, 278759, 278760, 278761, 278762, 278763} },
{"Band of Eternity", {6029299, 29299, 278764, 278765, 278766, 278767, 278768, 278769, 278770, 278771, 278772, 278773, 278774, 278775} },
{"Band of Eternity", {6029300, 29300, 278776, 278777, 278778, 278779, 278780, 278781, 278782, 278783, 278784, 278785, 278786, 278787} },
{"Band of the Eternal Champion", {6029301, 29301, 278788, 278789, 278790, 278791, 278792, 278793, 278794, 278795, 278796, 278797, 278798, 278799} },
{"Band of Eternity", {6029302, 29302, 278800, 278801, 278802, 278803, 278804, 278805, 278806, 278807, 278808, 278809, 278810, 278811} },
{"Band of Eternity", {6029303, 29303, 278812, 278813, 278814, 278815, 278816, 278817, 278818, 278819, 278820, 278821, 278822, 278823} },
{"Band of Eternity", {6029304, 29304, 278824, 278825, 278826, 278827, 278828, 278829, 278830, 278831, 278832, 278833, 278834, 278835} },
{"Band of the Eternal Sage", {6029305, 29305, 278836, 278837, 278838, 278839, 278840, 278841, 278842, 278843, 278844, 278845, 278846, 278847} },
{"Band of Eternity", {6029306, 29306, 278848, 278849, 278850, 278851, 278852, 278853, 278854, 278855, 278856, 278857, 278858, 278859} },
{"Band of Eternity", {6029307, 29307, 278860, 278861, 278862, 278863, 278864, 278865, 278866, 278867, 278868, 278869, 278870, 278871} },
{"Band of Eternity", {6029308, 29308, 278872, 278873, 278874, 278875, 278876, 278877, 278878, 278879, 278880, 278881, 278882, 278883} },
{"Band of the Eternal Restorer", {6029309, 29309, 278884, 278885, 278886, 278887, 278888, 278889, 278890, 278891, 278892, 278893, 278894, 278895} },
{"Cover of Righteous Fury", {6029312, 29312, 278896, 278897, 278898, 278899, 278900, 278901, 278902, 278903, 278904, 278905, 278906, 278907} },
{"Earthbreaker's Greaves", {6029313, 29313, 278908, 278909, 278910, 278911, 278912, 278913, 278914, 278915, 278916, 278917, 278918, 278919} },
{"Leggings of the Third Coin", {6029314, 29314, 278920, 278921, 278922, 278923, 278924, 278925, 278926, 278927, 278928, 278929, 278930, 278931} },
{"Gloves of Penitence", {6029315, 29315, 278932, 278933, 278934, 278935, 278936, 278937, 278938, 278939, 278940, 278941, 278942, 278943} },
{"Warchief's Mantle", {6029316, 29316, 278944, 278945, 278946, 278947, 278948, 278949, 278950, 278951, 278952, 278953, 278954, 278955} },
{"Tempest's Touch", {6029317, 29317, 278956, 278957, 278958, 278959, 278960, 278961, 278962, 278963, 278964, 278965, 278966, 278967} },
{"Southshore Sneakers", {6029318, 29318, 278968, 278969, 278970, 278971, 278972, 278973, 278974, 278975, 278976, 278977, 278978, 278979} },
{"Tarren Mill Defender's Cinch", {6029319, 29319, 278981, 278982, 278983, 278984, 278985, 278986, 278987, 278988, 278989, 278990, 278991, 278992} },
{"Band of the Guardian", {6029320, 29320, 278993, 278994, 278995, 278996, 278997, 278998, 278999, 279000, 279001, 279002, 279003, 279004} },
{"Time-bending Gem", {6029321, 29321, 279005, 279006, 279007, 279008, 279009, 279010, 279011, 279012, 279013, 279014, 279015, 279016} },
{"Keeper's Ring of Piety", {6029322, 29322, 279017, 279018, 279019, 279020, 279021, 279022, 279023, 279024, 279025, 279026, 279027, 279028} },
{"Andormu's Tear", {6029323, 29323, 279029, 279030, 279031, 279032, 279033, 279034, 279035, 279036, 279037, 279038, 279039, 279040} },
{"Flesh Beast's Metal Greaves", {6029325, 29325, 279041, 279042, 279043, 279044, 279045, 279046, 279047, 279048, 279049, 279050, 279051, 279052} },
{"Consortium Mantle of Phasing", {6029326, 29326, 279053, 279054, 279055, 279056, 279057, 279058, 279059, 279060, 279061, 279062, 279063, 279064} },
{"Cryo-mitts", {6029327, 29327, 279065, 279066, 279067, 279068, 279069, 279070, 279071, 279072, 279073, 279074, 279075, 279076} },
{"Consortium Prince's Wrap", {6029328, 29328, 279077, 279078, 279079, 279080, 279081, 279082, 279083, 279084, 279085, 279086, 279087, 279088} },
{"Terokk's Quill", {6029329, 29329, 279089, 279090, 279091, 279092, 279093, 279094, 279095, 279096, 279097, 279098, 279099, 279100} },
{"The Saga of Terokk", {6029330, 29330, 279101, 279102, 279103, 279104, 279105, 279106, 279107, 279108, 279109, 279110, 279111, 279112} },
{"Terokk's Mask", {6029332, 29332, 279113, 279114, 279115, 279116, 279117, 279118, 279119, 279120, 279121, 279122, 279123, 279124} },
{"Torc of the Sethekk Prophet", {6029333, 29333, 279125, 279126, 279127, 279128, 279129, 279130, 279131, 279132, 279133, 279134, 279135, 279136} },
{"Sethekk Oracle's Focus", {6029334, 29334, 279137, 279138, 279139, 279140, 279141, 279142, 279143, 279144, 279145, 279146, 279147, 279148} },
{"Talon Lord's Collar", {6029335, 29335, 279149, 279150, 279151, 279152, 279153, 279154, 279155, 279156, 279157, 279158, 279159, 279160} },
{"Mark of the Ravenguard", {6029336, 29336, 279161, 279162, 279163, 279164, 279165, 279166, 279167, 279168, 279169, 279170, 279171, 279172} },
{"The Exarch's Protector", {6029337, 29337, 279173, 279174, 279175, 279176, 279177, 279178, 279179, 279180, 279181, 279182, 279183, 279184} },
{"Auchenai Tracker's Hauberk", {6029339, 29339, 279185, 279186, 279187, 279188, 279189, 279190, 279191, 279192, 279193, 279194, 279195, 279196} },
{"Auchenai Monk's Tunic", {6029340, 29340, 279197, 279198, 279199, 279200, 279201, 279202, 279203, 279204, 279205, 279206, 279207, 279208} },
{"Auchenai Anchorite's Robe", {6029341, 29341, 279209, 279210, 279211, 279212, 279213, 279214, 279215, 279216, 279217, 279218, 279219, 279220} },
{"Consortium Plated Legguards", {6029342, 29342, 279221, 279222, 279223, 279224, 279225, 279226, 279227, 279228, 279229, 279230, 279231, 279232} },
{"Haramad's Leggings of the Third Coin", {6029343, 29343, 279233, 279234, 279235, 279236, 279237, 279238, 279239, 279240, 279241, 279242, 279243, 279244} },
{"Haramad's Linked Chain Pantaloons", {6029344, 29344, 279245, 279246, 279247, 279248, 279249, 279250, 279251, 279252, 279253, 279254, 279255, 279256} },
{"Haramad's Leg Wraps", {6029345, 29345, 279257, 279258, 279259, 279260, 279261, 279262, 279263, 279264, 279265, 279266, 279267, 279268} },
{"Feltooth Eviscerator", {6029346, 29346, 114226, 429346, 1007688, 1014571, 1021235, 1027800, 1034364, 1040927, 1047490, 1054053, 1060616, 1067179} },
{"Talisman of the Breaker", {6029347, 29347, 129902, 429347, 1007689, 1014572, 1021236, 1027801, 1034365, 1040928, 1047491, 1054054, 1060617, 1067180} },
{"The Bladefist", {6029348, 29348, 130333, 429348, 1007690, 1014573, 1021237, 1027802, 1034366, 1040929, 1047492, 1054055, 1060618, 1067181} },
{"Adamantine Chain of the Unbroken", {6029349, 29349, 100026, 429349, 1007691, 1014574, 1021238, 1027803, 1034367, 1040930, 1047493, 1054056, 1060619, 1067182} },
{"The Black Stalk", {6029350, 29350, 130331, 429350, 1007692, 1014575, 1021239, 1027804, 1034368, 1040931, 1047494, 1054057, 1060620, 1067183} },
{"Wrathtide Longbow", {6029351, 29351, 130970, 429351, 1007693, 1014576, 1021240, 1027805, 1034369, 1040932, 1047495, 1054058, 1060621, 1067184} },
{"Cobalt Band of Tyrigosa", {6029352, 29352, 100824, 429352, 1007694, 1014577, 1021241, 1027806, 1034370, 1040933, 1047496, 1054059, 1060622, 1067185} },
{"Shockwave Truncheon", {6029353, 29353, 123835, 429353, 1007695, 1014578, 1021242, 1027807, 1034371, 1040934, 1047497, 1054060, 1060623, 1067186} },
{"Light-Touched Stole of Altruism", {6029354, 29354, 121496, 429354, 1007696, 1014579, 1021243, 1027808, 1034372, 1040935, 1047498, 1054061, 1060624, 1067187} },
{"Terokk's Shadowstaff", {6029355, 29355, 130060, 429355, 1007697, 1014580, 1021244, 1027809, 1034373, 1040936, 1047499, 1054062, 1060625, 1067188} },
{"Quantum Blade", {6029356, 29356, 123477, 429356, 1007698, 1014581, 1021245, 1027810, 1034374, 1040937, 1047500, 1054063, 1060626, 1067189} },
{"Master Thief's Gloves", {6029357, 29357, 122774, 429357, 1007699, 1014582, 1021246, 1027811, 1034375, 1040938, 1047501, 1054064, 1060627, 1067190} },
{"Feral Staff of Lashing", {6029359, 29359, 114624, 429359, 1007700, 1014583, 1021247, 1027812, 1034376, 1040939, 1047502, 1054065, 1060628, 1067191} },
{"Vileblade of the Betrayer", {6029360, 29360, 130675, 429360, 1007701, 1014584, 1021248, 1027813, 1034377, 1040940, 1047503, 1054066, 1060629, 1067192} },
{"The Sun Eater", {6029362, 29362, 130342, 429362, 1007702, 1014585, 1021249, 1027814, 1034378, 1040941, 1047504, 1054067, 1060630, 1067193} },
{"Ring of Cryptic Dreams", {6029367, 29367, 279269, 279270, 279271, 279272, 279273, 279274, 279275, 279276, 279277, 279278, 279279, 279280} },
{"Manasurge Pendant", {6029368, 29368, 279281, 279282, 279283, 279284, 279285, 279286, 279287, 279288, 279289, 279290, 279291, 279292} },
{"Shawl of Shifting Probabilities", {6029369, 29369, 279293, 279294, 279295, 279296, 279297, 279298, 279299, 279300, 279301, 279302, 279303, 279304} },
{"Icon of the Silver Crescent", {6029370, 29370, 279305, 279306, 279307, 279308, 279309, 279310, 279311, 279312, 279313, 279314, 279315, 279316} },
{"Nexus-Claw", {279318, 29371, 279317, 279319, 279320, 279321, 279322, 279323, 279324, 279325, 279326, 279327, 279328, 279329} },
{"Void-Talon", {279331, 29372, 279330, 279332, 279333, 279334, 279335, 279336, 279337, 279338, 279339, 279340, 279341, 279342} },
{"Band of Halos", {6029373, 29373, 279343, 279344, 279345, 279346, 279347, 279348, 279349, 279350, 279351, 279352, 279353, 279354} },
{"Necklace of Eternal Hope", {6029374, 29374, 279355, 279356, 279357, 279358, 279359, 279360, 279361, 279362, 279363, 279364, 279365, 279366} },
{"Bishop's Cloak", {6029375, 29375, 279367, 279368, 279369, 279370, 279371, 279372, 279373, 279374, 279375, 279376, 279377, 279378} },
{"Essence of the Martyr", {6029376, 29376, 279379, 279380, 279381, 279382, 279383, 279384, 279385, 279386, 279387, 279388, 279389, 279390} },
{"Ethereum Phase-Spear", {279392, 29377, 279391, 279393, 279394, 279395, 279396, 279397, 279398, 279399, 279400, 279401, 279402, 279403} },
{"Starheart Baton", {279405, 29378, 279404, 279406, 279407, 279408, 279409, 279410, 279411, 279412, 279413, 279414, 279415, 279416} },
{"Ring of Arathi Warlords", {6029379, 29379, 279417, 279418, 279419, 279420, 279421, 279422, 279423, 279424, 279425, 279426, 279427, 279428} },
{"Ethereum Phase Blade", {279430, 29380, 279429, 279431, 279432, 279433, 279434, 279435, 279436, 279437, 279438, 279439, 279440, 279441} },
{"Choker of Vile Intent", {6029381, 29381, 279442, 279443, 279444, 279445, 279446, 279447, 279448, 279449, 279450, 279451, 279452, 279453} },
{"Blood Knight War Cloak", {6029382, 29382, 279454, 279455, 279456, 279457, 279458, 279459, 279460, 279461, 279462, 279463, 279464, 279465} },
{"Bloodlust Brooch", {6029383, 29383, 279466, 279467, 279468, 279469, 279470, 279471, 279472, 279473, 279474, 279475, 279476, 279477} },
{"Ring of Unyielding Force", {6029384, 29384, 279478, 279479, 279480, 279481, 279482, 279483, 279484, 279485, 279486, 279487, 279488, 279489} },
{"Farstrider Defender's Cloak", {6029385, 29385, 279490, 279491, 279492, 279493, 279494, 279495, 279496, 279497, 279498, 279499, 279500, 279501} },
{"Necklace of the Juggernaut", {6029386, 29386, 279502, 279503, 279504, 279505, 279506, 279507, 279508, 279509, 279510, 279511, 279512, 279513} },
{"Gnomeregan Auto-Blocker 600", {6029387, 29387, 279514, 279515, 279516, 279517, 279518, 279519, 279520, 279521, 279522, 279523, 279524, 279525} },
{"Libram of Repentance", {6029388, 29388, 279526, 279527, 279528, 279529, 279530, 279531, 279532, 279533, 279534, 279535, 279536, 279537} },
{"Totem of the Pulsing Earth", {6029389, 29389, 279538, 279539, 279540, 279541, 279542, 279543, 279544, 279545, 279546, 279547, 279548, 279549} },
{"Everbloom Idol", {6029390, 29390, 279550, 279551, 279552, 279553, 279554, 279555, 279556, 279557, 279558, 279559, 279560, 279561} },
{"Pulse Dagger", {279563, 29391, 279562, 279564, 279565, 279566, 279567, 279568, 279569, 279570, 279571, 279572, 279573, 279574} },
{"Circle of Banishing", {279576, 29398, 279575, 279577, 279578, 279579, 279580, 279581, 279582, 279583, 279584, 279585, 279586, 279587} },
{"Rod of the Void Caller", {279589, 29399, 279588, 279590, 279591, 279592, 279593, 279594, 279595, 279596, 279597, 279598, 279599, 279600} },
{"Abyssal Shroud", {279602, 29400, 279601, 279603, 279604, 279605, 279606, 279607, 279608, 279609, 279610, 279611, 279612, 279613} },
{"Gift of the Ethereal", {6029456, 29456, 279614, 279615, 279616, 279617, 279618, 279619, 279620, 279621, 279622, 279623, 279624, 279625} },
{"Nethershard", {6029457, 29457, 279626, 279627, 279628, 279629, 279630, 279631, 279632, 279633, 279634, 279635, 279636, 279637} },
{"Aegis of the Vindicator", {6029458, 29458, 329458, 229458, 1004906, 1012171, 1018823, 1025427, 1031991, 1038554, 1045117, 1051680, 1058243, 1064806} },
{"Amber Bands of the Aggressor", {6029463, 29463, 100052, 429463, 1007703, 1014586, 1021250, 1027815, 1034379, 1040942, 1047505, 1054068, 1060631, 1067194} },
{"Enchanted Felscale Leggings", {6029489, 29489, 279638, 279639, 279640, 279641, 279642, 279643, 279644, 279645, 279646, 279647, 279648, 279649} },
{"Enchanted Felscale Gloves", {6029490, 29490, 279650, 279651, 279652, 279653, 279654, 279655, 279656, 279657, 279658, 279659, 279660, 279661} },
{"Enchanted Felscale Boots", {6029491, 29491, 279662, 279663, 279664, 279665, 279666, 279667, 279668, 279669, 279670, 279671, 279672, 279673} },
{"Flamescale Leggings", {6029492, 29492, 279674, 279675, 279676, 279677, 279678, 279679, 279680, 279681, 279682, 279683, 279684, 279685} },
{"Flamescale Boots", {6029493, 29493, 279686, 279687, 279688, 279689, 279690, 279691, 279692, 279693, 279694, 279695, 279696, 279697} },
{"Flamescale Belt", {6029494, 29494, 279698, 279699, 279700, 279701, 279702, 279703, 279704, 279705, 279706, 279707, 279708, 279709} },
{"Enchanted Clefthoof Leggings", {6029495, 29495, 279710, 279711, 279712, 279713, 279714, 279715, 279716, 279717, 279718, 279719, 279720, 279721} },
{"Enchanted Clefthoof Gloves", {6029496, 29496, 279722, 279723, 279724, 279725, 279726, 279727, 279728, 279729, 279730, 279731, 279732, 279733} },
{"Enchanted Clefthoof Boots", {6029497, 29497, 279734, 279735, 279736, 279737, 279738, 279739, 279740, 279741, 279742, 279743, 279744, 279745} },
{"Blastguard Pants", {6029498, 29498, 279746, 279747, 279748, 279749, 279750, 279751, 279752, 279753, 279754, 279755, 279756, 279757} },
{"Blastguard Boots", {6029499, 29499, 279758, 279759, 279760, 279761, 279762, 279763, 279764, 279765, 279766, 279767, 279768, 279769} },
{"Blastguard Belt", {6029500, 29500, 279770, 279771, 279772, 279773, 279774, 279775, 279776, 279777, 279778, 279779, 279780, 279781} },
{"Cobrascale Hood", {6029502, 29502, 279782, 279783, 279784, 279785, 279786, 279787, 279788, 279789, 279790, 279791, 279792, 279793} },
{"Cobrascale Gloves", {6029503, 29503, 279794, 279795, 279796, 279797, 279798, 279799, 279800, 279801, 279802, 279803, 279804, 279805} },
{"Windscale Hood", {6029504, 29504, 279806, 279807, 279808, 279809, 279810, 279811, 279812, 279813, 279814, 279815, 279816, 279817} },
{"Hood of Primal Life", {6029505, 29505, 279818, 279819, 279820, 279821, 279822, 279823, 279824, 279825, 279826, 279827, 279828, 279829} },
{"Gloves of the Living Touch", {6029506, 29506, 279830, 279831, 279832, 279833, 279834, 279835, 279836, 279837, 279838, 279839, 279840, 279841} },
{"Windslayer Wraps", {6029507, 29507, 279842, 279843, 279844, 279845, 279846, 279847, 279848, 279849, 279850, 279851, 279852, 279853} },
{"Living Dragonscale Helm", {6029508, 29508, 279854, 279855, 279856, 279857, 279858, 279859, 279860, 279861, 279862, 279863, 279864, 279865} },
{"Windstrike Gloves", {6029509, 29509, 279866, 279867, 279868, 279869, 279870, 279871, 279872, 279873, 279874, 279875, 279876, 279877} },
{"Netherdrake Helm", {6029510, 29510, 279878, 279879, 279880, 279881, 279882, 279883, 279884, 279885, 279886, 279887, 279888, 279889} },
{"Netherdrake Gloves", {6029511, 29511, 279890, 279891, 279892, 279893, 279894, 279895, 279896, 279897, 279898, 279899, 279900, 279901} },
{"Earthen Netherscale Boots", {6029512, 29512, 279902, 279903, 279904, 279905, 279906, 279907, 279908, 279909, 279910, 279911, 279912, 279913} },
{"Thick Netherscale Breastplate", {6029514, 29514, 279914, 279915, 279916, 279917, 279918, 279919, 279920, 279921, 279922, 279923, 279924, 279925} },
{"Ebon Netherscale Breastplate", {6029515, 29515, 279926, 279927, 279928, 279929, 279930, 279931, 279932, 279933, 279934, 279935, 279936, 279937} },
{"Ebon Netherscale Belt", {6029516, 29516, 279938, 279939, 279940, 279941, 279942, 279943, 279944, 279945, 279946, 279947, 279948, 279949} },
{"Ebon Netherscale Bracers", {6029517, 29517, 279950, 279951, 279952, 279953, 279954, 279955, 279956, 279957, 279958, 279959, 279960, 279961} },
{"Netherstrike Breastplate", {6029519, 29519, 279962, 279963, 279964, 279965, 279966, 279967, 279968, 279969, 279970, 279971, 279972, 279973} },
{"Netherstrike Belt", {6029520, 29520, 279974, 279975, 279976, 279977, 279978, 279979, 279980, 279981, 279982, 279983, 279984, 279985} },
{"Netherstrike Bracers", {6029521, 29521, 279986, 279987, 279988, 279989, 279990, 279991, 279992, 279993, 279994, 279995, 279996, 279997} },
{"Windhawk Hauberk", {6029522, 29522, 279998, 279999, 280000, 280001, 280002, 280003, 280004, 280005, 280006, 280007, 280008, 280009} },
{"Windhawk Bracers", {6029523, 29523, 280010, 280011, 280012, 280013, 280014, 280015, 280016, 280017, 280018, 280019, 280020, 280021} },
{"Windhawk Belt", {6029524, 29524, 280022, 280023, 280024, 280025, 280026, 280027, 280028, 280029, 280030, 280031, 280032, 280033} },
{"Primalstrike Vest", {6029525, 29525, 280034, 280035, 280036, 280037, 280038, 280039, 280040, 280041, 280042, 280043, 280044, 280045} },
{"Primalstrike Belt", {6029526, 29526, 280046, 280047, 280048, 280049, 280050, 280051, 280052, 280053, 280054, 280055, 280056, 280057} },
{"Primalstrike Bracers", {6029527, 29527, 280058, 280059, 280060, 280061, 280062, 280063, 280064, 280065, 280066, 280067, 280068, 280069} },
{"Kirin'Var Journeyman's Belt", {280409, 29771, 280408, 280410, 280411, 280412, 280413, 280414, 280415, 280416, 280417, 280418, 280419, 280420} },
{"Kirin'Var Scout's Belt", {280422, 29772, 280421, 280423, 280424, 280425, 280426, 280427, 280428, 280429, 280430, 280431, 280432, 280433} },
{"Battle-Mage's Helmet", {280435, 29773, 280434, 280436, 280437, 280438, 280439, 280440, 280441, 280442, 280443, 280444, 280445, 280446} },
{"Kirin'Var Defender's Chausses", {280448, 29774, 280447, 280449, 280450, 280451, 280452, 280453, 280454, 280455, 280456, 280457, 280458, 280459} },
{"Pendant of the Battle-Mage", {280461, 29775, 280460, 280462, 280463, 280464, 280465, 280466, 280467, 280468, 280469, 280470, 280471, 280472} },
{"Core of Ar'kelos", {280474, 29776, 280473, 280475, 280476, 280477, 280478, 280479, 280480, 280481, 280482, 280483, 280484, 280485} },
{"Cloak of the Valiant Defender", {280487, 29777, 280486, 280488, 280489, 280490, 280491, 280492, 280493, 280494, 280495, 280496, 280497, 280498} },
{"Rejuvenating Scepter", {280500, 29779, 280499, 280501, 280502, 280503, 280504, 280505, 280506, 280507, 280508, 280509, 280510, 280511} },
{"Kirin Tor Apprentice's Robes", {6029780, 29780, 280512, 280513, 280514, 280515, 280516, 280517, 280518, 280519, 280520, 280521, 280522, 280523} },
{"Lifewarden's Breastplate", {6029781, 29781, 280524, 280525, 280526, 280527, 280528, 280529, 280530, 280531, 280532, 280533, 280534, 280535} },
{"Coif of the Wicked", {6029782, 29782, 280536, 280537, 280538, 280539, 280540, 280541, 280542, 280543, 280544, 280545, 280546, 280547} },
{"Legguards of the Resolute Defender", {6029783, 29783, 280548, 280549, 280550, 280551, 280552, 280553, 280554, 280555, 280556, 280557, 280558, 280559} },
{"Harmony's Touch", {280561, 29784, 280560, 280562, 280563, 280564, 280565, 280566, 280567, 280568, 280569, 280570, 280571, 280572} },
{"Crimson Mail Bracers", {280574, 29785, 280573, 280575, 280576, 280577, 280578, 280579, 280580, 280581, 280582, 280583, 280584, 280585} },
{"Kirin'Var Defender's Greaves", {280587, 29786, 280586, 280588, 280589, 280590, 280591, 280592, 280593, 280594, 280595, 280596, 280597, 280598} },
{"Master Smith's Hammer", {280600, 29787, 280599, 280601, 280602, 280603, 280604, 280605, 280606, 280607, 280608, 280609, 280610, 280611} },
{"Finely Wrought Scale Leggings", {280613, 29788, 280612, 280614, 280615, 280616, 280617, 280618, 280619, 280620, 280621, 280622, 280623, 280624} },
{"Andrethan's Masterwork", {280626, 29789, 280625, 280627, 280628, 280629, 280630, 280631, 280632, 280633, 280634, 280635, 280636, 280637} },
{"Reinforced Heaume", {280639, 29791, 280638, 280640, 280641, 280642, 280643, 280644, 280645, 280646, 280647, 280648, 280649, 280650} },
{"Dawnstrike's Cloak", {280652, 29792, 280651, 280653, 280654, 280655, 280656, 280657, 280658, 280659, 280660, 280661, 280662, 280663} },
{"Signet of the Violet Tower", {280665, 29793, 280664, 280666, 280667, 280668, 280669, 280670, 280671, 280672, 280673, 280674, 280675, 280676} },
{"Strength of the Violet Tower", {280678, 29794, 280677, 280679, 280680, 280681, 280682, 280683, 280684, 280685, 280686, 280687, 280688, 280689} },
{"Wrangler's Boots", {280691, 29804, 280690, 280692, 280693, 280694, 280695, 280696, 280697, 280698, 280699, 280700, 280701, 280702} },
{"Cowpoke's Riding Gloves", {280704, 29806, 280703, 280705, 280706, 280707, 280708, 280709, 280710, 280711, 280712, 280713, 280714, 280715} },
{"Engraved Cattleman's Buckle", {280717, 29807, 280716, 280718, 280719, 280720, 280721, 280722, 280723, 280724, 280725, 280726, 280727, 280728} },
{"Shimmering Azure Boots", {280730, 29808, 280729, 280731, 280732, 280733, 280734, 280735, 280736, 280737, 280738, 280739, 280740, 280741} },
{"Dragon Crested Epaulets", {280743, 29810, 280742, 280744, 280745, 280746, 280747, 280748, 280749, 280750, 280751, 280752, 280753, 280754} },
{"Goldenlink Bracers", {280756, 29811, 280755, 280757, 280758, 280759, 280760, 280761, 280762, 280763, 280764, 280765, 280766, 280767} },
{"Blued Steel Gauntlets", {280769, 29812, 280768, 280770, 280771, 280772, 280773, 280774, 280775, 280776, 280777, 280778, 280779, 280780} },
{"Cloak of Woven Energy", {6029813, 29813, 280781, 280782, 280783, 280784, 280785, 280786, 280787, 280788, 280789, 280790, 280791, 280792} },
{"Celestial Jewel Ring", {6029814, 29814, 280793, 280794, 280795, 280796, 280797, 280798, 280799, 280800, 280801, 280802, 280803, 280804} },
{"Chain of Glowing Tendrils", {6029815, 29815, 280805, 280806, 280807, 280808, 280809, 280810, 280811, 280812, 280813, 280814, 280815, 280816} },
{"Rogue 150 Epic Test Dagger 1800", {6029828, 29828, 280817, 280818, 280819, 280820, 280821, 280822, 280823, 280824, 280825, 280826, 280827, 280828} },
{"Rage Reaver", {280830, 29908, 280829, 280831, 280832, 280833, 280834, 280835, 280836, 280837, 280838, 280839, 280840, 280841} },
{"Screaming Dagger", {280843, 29909, 280842, 280844, 280845, 280846, 280847, 280848, 280849, 280850, 280851, 280852, 280853, 280854} },
{"The Staff of Twin Worlds", {280856, 29910, 280855, 280857, 280858, 280859, 280860, 280861, 280862, 280863, 280864, 280865, 280866, 280867} },
{"Agamaggan's Quill", {280869, 29911, 280868, 280870, 280871, 280872, 280873, 280874, 280875, 280876, 280877, 280878, 280879, 280880} },
{"Foe Reaver", {280882, 29913, 280881, 280883, 280884, 280885, 280886, 280887, 280888, 280889, 280890, 280891, 280892, 280893} },
{"Hellfire Skiver", {280895, 29914, 280894, 280896, 280897, 280898, 280899, 280900, 280901, 280902, 280903, 280904, 280905, 280906} },
{"Desolation Rod", {280908, 29915, 280907, 280909, 280910, 280911, 280912, 280913, 280914, 280915, 280916, 280917, 280918, 280919} },
{"Ironstar Repeater", {280921, 29916, 280920, 280922, 280923, 280924, 280925, 280926, 280927, 280928, 280929, 280930, 280931, 280932} },
{"Landslide Buckler", {280934, 29917, 280933, 280935, 280936, 280937, 280938, 280939, 280940, 280941, 280942, 280943, 280944, 280945} },
{"Mindstorm Wristbands", {6029918, 29918, 329918, 229918, 1004922, 1012187, 1018839, 1025443, 1032007, 1038570, 1045133, 1051696, 1058259, 1064822} },
{"Adamantine Kite Shield", {280947, 29919, 280946, 280948, 280949, 280950, 280951, 280952, 280953, 280954, 280955, 280956, 280957, 280958} },
{"Phoenix-Ring of Rebirth", {6029920, 29920, 329920, 229920, 1004923, 1012188, 1018840, 1025444, 1032008, 1038571, 1045134, 1051697, 1058260, 1064823} },
{"Fire Crest Breastplate", {6029921, 29921, 329921, 229921, 1004924, 1012189, 1018841, 1025445, 1032009, 1038572, 1045135, 1051698, 1058261, 1064824} },
{"Band of Al'ar", {6029922, 29922, 329922, 229922, 1004925, 1012190, 1018842, 1025446, 1032010, 1038573, 1045136, 1051699, 1058262, 1064825} },
{"Talisman of the Sun King", {6029923, 29923, 329923, 229923, 1004926, 1012191, 1018843, 1025447, 1032011, 1038574, 1045137, 1051700, 1058263, 1064826} },
{"Netherbane", {6029924, 29924, 329924, 229924, 1004927, 1012192, 1018844, 1025448, 1032012, 1038575, 1045138, 1051701, 1058264, 1064827} },
{"Phoenix-Wing Cloak", {6029925, 29925, 329925, 229925, 1004928, 1012193, 1018845, 1025449, 1032013, 1038576, 1045139, 1051702, 1058265, 1064828} },
{"Whispering Tunic", {280960, 29926, 280959, 280961, 280962, 280963, 280964, 280965, 280966, 280967, 280968, 280969, 280970, 280971} },
{"Shadowbrim Travel Hat", {280973, 29927, 280972, 280974, 280975, 280976, 280977, 280978, 280979, 280980, 280981, 280982, 280983, 280984} },
{"Wanderer's Stitched Trousers", {280986, 29928, 280985, 280987, 280988, 280989, 280990, 280991, 280992, 280993, 280994, 280995, 280996, 280997} },
{"Raging Spirit Harness", {280999, 29929, 280998, 281000, 281001, 281002, 281003, 281004, 281005, 281006, 281007, 281008, 281009, 281010} },
{"Nature-Stitched Kilt", {281012, 29930, 281011, 281013, 281014, 281015, 281016, 281017, 281018, 281019, 281020, 281021, 281022, 281023} },
{"Phantasmal Headdress", {281025, 29931, 281024, 281026, 281027, 281028, 281029, 281030, 281031, 281032, 281033, 281034, 281035, 281036} },
{"Arcane Ringed Tunic", {281038, 29932, 281037, 281039, 281040, 281041, 281042, 281043, 281044, 281045, 281046, 281047, 281048, 281049} },
{"Arcane Ringed Greaves", {281051, 29933, 281050, 281052, 281053, 281054, 281055, 281056, 281057, 281058, 281059, 281060, 281061, 281062} },
{"Helm of Affinity", {281064, 29934, 281063, 281065, 281066, 281067, 281068, 281069, 281070, 281071, 281072, 281073, 281074, 281075} },
{"Fire Scarred Breastplate", {281077, 29935, 281076, 281078, 281079, 281080, 281081, 281082, 281083, 281084, 281085, 281086, 281087, 281088} },
{"Skyfire Greaves", {281090, 29936, 281089, 281091, 281092, 281093, 281094, 281095, 281096, 281097, 281098, 281099, 281100, 281101} },
{"Helm of Infinite Visions", {281103, 29937, 281102, 281104, 281105, 281106, 281107, 281108, 281109, 281110, 281111, 281112, 281113, 281114} },
{"Battle Seeker Chestguard", {281116, 29938, 281115, 281117, 281118, 281119, 281120, 281121, 281122, 281123, 281124, 281125, 281126, 281127} },
{"Flayer-Hide Leggings", {281129, 29939, 281128, 281130, 281131, 281132, 281133, 281134, 281135, 281136, 281137, 281138, 281139, 281140} },
{"Veteran's Skullcap", {281142, 29940, 281141, 281143, 281144, 281145, 281146, 281147, 281148, 281149, 281150, 281151, 281152, 281153} },
{"Scale Brand Breastplate", {281155, 29941, 281154, 281156, 281157, 281158, 281159, 281160, 281161, 281162, 281163, 281164, 281165, 281166} },
{"Battle Scarred Leggings", {281168, 29942, 281167, 281169, 281170, 281171, 281172, 281173, 281174, 281175, 281176, 281177, 281178, 281179} },
{"Legionnaire's Studded Helm", {281181, 29943, 281180, 281182, 281183, 281184, 281185, 281186, 281187, 281188, 281189, 281190, 281191, 281192} },
{"Protectorate Breastplate", {281194, 29944, 281193, 281195, 281196, 281197, 281198, 281199, 281200, 281201, 281202, 281203, 281204, 281205} },
{"Magistrate's Greaves", {281207, 29945, 281206, 281208, 281209, 281210, 281211, 281212, 281213, 281214, 281215, 281216, 281217, 281218} },
{"Invader's Greathelm", {281220, 29946, 281219, 281221, 281222, 281223, 281224, 281225, 281226, 281227, 281228, 281229, 281230, 281231} },
{"Gloves of the Searing Grip", {6029947, 29947, 329947, 229947, 1004929, 1012194, 1018846, 1025450, 1032014, 1038577, 1045140, 1051703, 1058266, 1064829} },
{"Claw of the Phoenix", {6029948, 29948, 329948, 229948, 1004930, 1012195, 1018847, 1025451, 1032015, 1038578, 1045141, 1051704, 1058267, 1064830} },
{"Arcanite Steam-Pistol", {6029949, 29949, 329949, 229949, 1004931, 1012196, 1018848, 1025452, 1032016, 1038579, 1045142, 1051705, 1058268, 1064831} },
{"Greaves of the Bloodwarder", {6029950, 29950, 329950, 229950, 1004932, 1012197, 1018849, 1025453, 1032017, 1038580, 1045143, 1051706, 1058269, 1064832} },
{"Star-Strider Boots", {6029951, 29951, 329951, 229951, 1004933, 1012198, 1018850, 1025454, 1032018, 1038581, 1045144, 1051707, 1058270, 1064833} },
{"Spiritbinder's Mantle", {281233, 29954, 281232, 281234, 281235, 281236, 281237, 281238, 281239, 281240, 281241, 281242, 281243, 281244} },
{"Mana Infused Wristguards", {281246, 29955, 281245, 281247, 281248, 281249, 281250, 281251, 281252, 281253, 281254, 281255, 281256, 281257} },
{"Spiritualist's Gauntlets", {281259, 29959, 281258, 281260, 281261, 281262, 281263, 281264, 281265, 281266, 281267, 281268, 281269, 281270} },
{"Heartrazor", {6029962, 29962, 329962, 229962, 1004934, 1012199, 1018851, 1025455, 1032019, 1038582, 1045145, 1051708, 1058271, 1064834} },
{"Blackstorm Leggings", {6029964, 29964, 281271, 281272, 281273, 281274, 281275, 281276, 281277, 281278, 281279, 281280, 281281, 281282} },
{"Girdle of the Righteous Path", {6029965, 29965, 329965, 229965, 1004935, 1012200, 1018852, 1025456, 1032020, 1038583, 1045146, 1051709, 1058272, 1064835} },
{"Vambraces of Ending", {6029966, 29966, 329966, 229966, 1004936, 1012201, 1018853, 1025457, 1032021, 1038584, 1045147, 1051710, 1058273, 1064836} },
{"Nether Vest", {281284, 29967, 281283, 281285, 281286, 281287, 281288, 281289, 281290, 281291, 281292, 281293, 281294, 281295} },
{"Nether Leggings", {281297, 29968, 281296, 281298, 281299, 281300, 281301, 281302, 281303, 281304, 281305, 281306, 281307, 281308} },
{"Sparky's Discarded Helmet", {281310, 29969, 281309, 281311, 281312, 281313, 281314, 281315, 281316, 281317, 281318, 281319, 281320, 281321} },
{"Wildfeather Leggings", {6029970, 29970, 281322, 281323, 281324, 281325, 281326, 281327, 281328, 281329, 281330, 281331, 281332, 281333} },
{"Dragonstrike Leggings", {6029971, 29971, 281334, 281335, 281336, 281337, 281338, 281339, 281340, 281341, 281342, 281343, 281344, 281345} },
{"Trousers of the Astromancer", {6029972, 29972, 329972, 229972, 1004937, 1012202, 1018854, 1025458, 1032022, 1038585, 1045148, 1051711, 1058274, 1064837} },
{"Primalstorm Breastplate", {6029973, 29973, 281346, 281347, 281348, 281349, 281350, 281351, 281352, 281353, 281354, 281355, 281356, 281357} },
{"Living Crystal Breastplate", {6029974, 29974, 281358, 281359, 281360, 281361, 281362, 281363, 281364, 281365, 281366, 281367, 281368, 281369} },
{"Golden Dragonstrike Breastplate", {6029975, 29975, 281370, 281371, 281372, 281373, 281374, 281375, 281376, 281377, 281378, 281379, 281380, 281381} },
{"Worldstorm Gauntlets", {6029976, 29976, 329976, 229976, 1004938, 1012203, 1018855, 1025459, 1032023, 1038586, 1045149, 1051712, 1058275, 1064838} },
{"Star-Soul Breeches", {6029977, 29977, 329977, 229977, 1004939, 1012204, 1018856, 1025460, 1032024, 1038587, 1045150, 1051713, 1058276, 1064839} },
{"Consortium Combatant's Robes", {281383, 29978, 281382, 281384, 281385, 281386, 281387, 281388, 281389, 281390, 281391, 281392, 281393, 281394} },
{"Netherstorm Eyepatch", {281396, 29979, 281395, 281397, 281398, 281399, 281400, 281401, 281402, 281403, 281404, 281405, 281406, 281407} },
{"Midrealm Leggings", {281409, 29980, 281408, 281410, 281411, 281412, 281413, 281414, 281415, 281416, 281417, 281418, 281419, 281420} },
{"Ethereum Life-Staff", {6029981, 29981, 329981, 229981, 1004940, 1012205, 1018857, 1025461, 1032025, 1038588, 1045151, 1051714, 1058277, 1064840} },
{"Wand of the Forgotten Star", {6029982, 29982, 329982, 229982, 1004941, 1012206, 1018858, 1025462, 1032026, 1038589, 1045152, 1051715, 1058278, 1064841} },
{"Fel-Steel Warhelm", {6029983, 29983, 329983, 229983, 1004942, 1012207, 1018859, 1025463, 1032027, 1038590, 1045153, 1051716, 1058279, 1064842} },
{"Girdle of Zaetar", {6029984, 29984, 329984, 229984, 1004943, 1012208, 1018860, 1025464, 1032028, 1038591, 1045154, 1051717, 1058280, 1064843} },
{"Void Reaver Greaves", {6029985, 29985, 329985, 229985, 1004944, 1012209, 1018861, 1025465, 1032029, 1038592, 1045155, 1051718, 1058281, 1064844} },
{"Cowl of the Grand Engineer", {6029986, 29986, 329986, 229986, 1004945, 1012210, 1018862, 1025466, 1032030, 1038593, 1045156, 1051719, 1058282, 1064845} },
{"Gauntlets of the Sun King", {6029987, 29987, 329987, 229987, 1004946, 1012211, 1018863, 1025467, 1032031, 1038594, 1045157, 1051720, 1058283, 1064846} },
{"The Nexus Key", {6029988, 29988, 329988, 229988, 1004947, 1012212, 1018864, 1025468, 1032032, 1038595, 1045158, 1051721, 1058284, 1064847} },
{"Sunshower Light Cloak", {6029989, 29989, 329989, 229989, 1004948, 1012213, 1018865, 1025469, 1032033, 1038596, 1045159, 1051722, 1058285, 1064848} },
{"Crown of the Sun", {6029990, 29990, 329990, 229990, 1004949, 1012214, 1018866, 1025470, 1032034, 1038597, 1045160, 1051723, 1058286, 1064849} },
{"Sunhawk Leggings", {6029991, 29991, 329991, 229991, 1004950, 1012215, 1018867, 1025471, 1032035, 1038598, 1045161, 1051724, 1058287, 1064850} },
{"Royal Cloak of the Sunstriders", {6029992, 29992, 329992, 229992, 1004951, 1012216, 1018868, 1025472, 1032036, 1038599, 1045162, 1051725, 1058288, 1064851} },
{"Twinblade of the Phoenix", {6029993, 29993, 329993, 229993, 1004952, 1012217, 1018869, 1025473, 1032037, 1038600, 1045163, 1051726, 1058289, 1064852} },
{"Thalassian Wildercloak", {6029994, 29994, 329994, 229994, 1004953, 1012218, 1018870, 1025474, 1032038, 1038601, 1045164, 1051727, 1058290, 1064853} },
{"Leggings of Murderous Intent", {6029995, 29995, 329995, 229995, 1004954, 1012219, 1018871, 1025475, 1032039, 1038602, 1045165, 1051728, 1058291, 1064854} },
{"Rod of the Sun King", {6029996, 29996, 329996, 229996, 1004955, 1012220, 1018872, 1025476, 1032040, 1038603, 1045166, 1051729, 1058292, 1064855} },
{"Band of the Ranger-General", {6029997, 29997, 329997, 229997, 1004956, 1012221, 1018873, 1025477, 1032041, 1038604, 1045167, 1051730, 1058293, 1064856} },
{"Royal Gauntlets of Silvermoon", {6029998, 29998, 329998, 229998, 1004957, 1012222, 1018874, 1025478, 1032042, 1038605, 1045168, 1051731, 1058294, 1064857} },
{"After Hours Pauldrons", {281422, 29999, 281421, 281423, 281424, 281425, 281426, 281427, 281428, 281429, 281430, 281431, 281432, 281433} },
{"Mixologist's Gloves", {281435, 30000, 281434, 281436, 281437, 281438, 281439, 281440, 281441, 281442, 281443, 281444, 281445, 281446} },
{"Doc's Belt", {281448, 30001, 281447, 281449, 281450, 281451, 281452, 281453, 281454, 281455, 281456, 281457, 281458, 281459} },
{"Boot's Boots", {281461, 30002, 281460, 281462, 281463, 281464, 281465, 281466, 281467, 281468, 281469, 281470, 281471, 281472} },
{"Gloves of the Nether-Stalker", {281474, 30003, 281473, 281475, 281476, 281477, 281478, 281479, 281480, 281481, 281482, 281483, 281484, 281485} },
{"Landing Boots", {281487, 30004, 281486, 281488, 281489, 281490, 281491, 281492, 281493, 281494, 281495, 281496, 281497, 281498} },
{"Overmaster's Shoulders", {281500, 30005, 281499, 281501, 281502, 281503, 281504, 281505, 281506, 281507, 281508, 281509, 281510, 281511} },
{"Wind Trader's Band", {281513, 30006, 281512, 281514, 281515, 281516, 281517, 281518, 281519, 281520, 281521, 281522, 281523, 281524} },
{"The Darkener's Grasp", {6030007, 30007, 281525, 281526, 281527, 281528, 281529, 281530, 281531, 281532, 281533, 281534, 281535, 281536} },
{"Pendant of the Lost Ages", {6030008, 30008, 330008, 230008, 1004958, 1012223, 1018875, 1025479, 1032043, 1038606, 1045169, 1051732, 1058295, 1064858} },
{"The Burning Crusader", {6030009, 30009, 281537, 281538, 281539, 281540, 281541, 281542, 281543, 281544, 281545, 281546, 281547, 281548} },
{"Fleshling Simulation Staff", {6030010, 30010, 281549, 281550, 281551, 281552, 281553, 281554, 281555, 281556, 281557, 281558, 281559, 281560} },
{"Ameer's Impulse Taser", {6030011, 30011, 281561, 281562, 281563, 281564, 281565, 281566, 281567, 281568, 281569, 281570, 281571, 281572} },
{"Ameer's Judgement", {6030012, 30012, 281573, 281574, 281575, 281576, 281577, 281578, 281579, 281580, 281581, 281582, 281583, 281584} },
{"Twin-Bladed Ripper", {6030013, 30013, 281585, 281586, 281587, 281588, 281589, 281590, 281591, 281592, 281593, 281594, 281595, 281596} },
{"X-52 Pilot's Leggings", {6030014, 30014, 281597, 281598, 281599, 281600, 281601, 281602, 281603, 281604, 281605, 281606, 281607, 281608} },
{"The Sun King's Talisman", {6030015, 30015, 281609, 281610, 281611, 281612, 281613, 281614, 281615, 281616, 281617, 281618, 281619, 281620} },
{"X-52 Technician's Helm", {6030016, 30016, 281621, 281622, 281623, 281624, 281625, 281626, 281627, 281628, 281629, 281630, 281631, 281632} },
{"Telonicus's Pendant of Mayhem", {6030017, 30017, 281633, 281634, 281635, 281636, 281637, 281638, 281639, 281640, 281641, 281642, 281643, 281644} },
{"Lord Sanguinar's Claim", {6030018, 30018, 281645, 281646, 281647, 281648, 281649, 281650, 281651, 281652, 281653, 281654, 281655, 281656} },
{"Area 52 Defender's Pants", {6030019, 30019, 281657, 281658, 281659, 281660, 281661, 281662, 281663, 281664, 281665, 281666, 281667, 281668} },
{"Fire-Cord of the Magus", {6030020, 30020, 330020, 230020, 1004959, 1012224, 1018876, 1025480, 1032044, 1038607, 1045170, 1051733, 1058296, 1064859} },
{"Wildfury Greatstaff", {6030021, 30021, 330021, 230021, 1004960, 1012225, 1018877, 1025481, 1032045, 1038608, 1045171, 1051734, 1058297, 1064860} },
{"Pendant of the Perilous", {6030022, 30022, 330022, 230022, 1004961, 1012226, 1018878, 1025482, 1032046, 1038609, 1045172, 1051735, 1058298, 1064861} },
{"Totem of the Maelstrom", {6030023, 30023, 330023, 230023, 1004962, 1012227, 1018879, 1025483, 1032047, 1038610, 1045173, 1051736, 1058299, 1064862} },
{"Mantle of the Elven Kings", {6030024, 30024, 330024, 230024, 1004963, 1012228, 1018880, 1025484, 1032048, 1038611, 1045174, 1051737, 1058300, 1064863} },
{"Serpentshrine Shuriken", {6030025, 30025, 330025, 230025, 1004964, 1012229, 1018881, 1025485, 1032049, 1038612, 1045175, 1051738, 1058301, 1064864} },
{"Bands of the Celestial Archer", {6030026, 30026, 330026, 230026, 1004965, 1012230, 1018882, 1025486, 1032050, 1038613, 1045176, 1051739, 1058302, 1064865} },
{"Boots of Courage Unending", {6030027, 30027, 330027, 230027, 1004966, 1012231, 1018883, 1025487, 1032051, 1038614, 1045177, 1051740, 1058303, 1064866} },
{"Seventh Ring of the Tirisfalen", {6030028, 30028, 330028, 230028, 1004967, 1012232, 1018884, 1025488, 1032052, 1038615, 1045178, 1051741, 1058304, 1064867} },
{"Bark-Gloves of Ancient Wisdom", {6030029, 30029, 330029, 230029, 1004968, 1012233, 1018885, 1025489, 1032053, 1038616, 1045179, 1051742, 1058305, 1064868} },
{"Girdle of Fallen Stars", {6030030, 30030, 330030, 230030, 1004969, 1012234, 1018886, 1025490, 1032054, 1038617, 1045180, 1051743, 1058306, 1064869} },
{"Red Havoc Boots", {6030031, 30031, 281669, 281670, 281671, 281672, 281673, 281674, 281675, 281676, 281677, 281678, 281679, 281680} },
{"Red Belt of Battle", {6030032, 30032, 281681, 281682, 281683, 281684, 281685, 281686, 281687, 281688, 281689, 281690, 281691, 281692} },
{"Boots of the Protector", {6030033, 30033, 281693, 281694, 281695, 281696, 281697, 281698, 281699, 281700, 281701, 281702, 281703, 281704} },
{"Belt of the Guardian", {6030034, 30034, 281705, 281706, 281707, 281708, 281709, 281710, 281711, 281712, 281713, 281714, 281715, 281716} },
{"Boots of the Long Road", {6030035, 30035, 281717, 281718, 281719, 281720, 281721, 281722, 281723, 281724, 281725, 281726, 281727, 281728} },
{"Belt of the Long Road", {6030036, 30036, 281729, 281730, 281731, 281732, 281733, 281734, 281735, 281736, 281737, 281738, 281739, 281740} },
{"Boots of Blasting", {6030037, 30037, 281741, 281742, 281743, 281744, 281745, 281746, 281747, 281748, 281749, 281750, 281751, 281752} },
{"Belt of Blasting", {6030038, 30038, 281753, 281754, 281755, 281756, 281757, 281758, 281759, 281760, 281761, 281762, 281763, 281764} },
{"Boots of Utter Darkness", {6030039, 30039, 281765, 281766, 281767, 281768, 281769, 281770, 281771, 281772, 281773, 281774, 281775, 281776} },
{"Belt of Deep Shadow", {6030040, 30040, 281777, 281778, 281779, 281780, 281781, 281782, 281783, 281784, 281785, 281786, 281787, 281788} },
{"Boots of Natural Grace", {6030041, 30041, 281789, 281790, 281791, 281792, 281793, 281794, 281795, 281796, 281797, 281798, 281799, 281800} },
{"Belt of Natural Power", {6030042, 30042, 281801, 281802, 281803, 281804, 281805, 281806, 281807, 281808, 281809, 281810, 281811, 281812} },
{"Hurricane Boots", {6030043, 30043, 281813, 281814, 281815, 281816, 281817, 281818, 281819, 281820, 281821, 281822, 281823, 281824} },
{"Monsoon Belt", {6030044, 30044, 281825, 281826, 281827, 281828, 281829, 281830, 281831, 281832, 281833, 281834, 281835, 281836} },
{"Boots of the Crimson Hawk", {6030045, 30045, 281837, 281838, 281839, 281840, 281841, 281842, 281843, 281844, 281845, 281846, 281847, 281848} },
{"Belt of the Black Eagle", {6030046, 30046, 281849, 281850, 281851, 281852, 281853, 281854, 281855, 281856, 281857, 281858, 281859, 281860} },
{"Blackfathom Warbands", {6030047, 30047, 330047, 230047, 1004970, 1012235, 1018887, 1025491, 1032055, 1038618, 1045181, 1051744, 1058307, 1064870} },
{"Brighthelm of Justice", {6030048, 30048, 330048, 230048, 1004971, 1012237, 1018888, 1025492, 1032056, 1038619, 1045182, 1051745, 1058308, 1064871} },
{"Fathomstone", {6030049, 30049, 330049, 230049, 1004972, 1012238, 1018889, 1025493, 1032057, 1038620, 1045183, 1051746, 1058309, 1064872} },
{"Boots of the Shifting Nightmare", {6030050, 30050, 330050, 230050, 1004973, 1012239, 1018890, 1025494, 1032058, 1038621, 1045184, 1051747, 1058310, 1064873} },
{"Idol of the Crescent Goddess", {6030051, 30051, 330051, 230051, 1004974, 1012240, 1018891, 1025495, 1032059, 1038622, 1045185, 1051748, 1058311, 1064874} },
{"Ring of Lethality", {6030052, 30052, 330052, 230052, 1004975, 1012241, 1018892, 1025496, 1032060, 1038623, 1045186, 1051749, 1058312, 1064875} },
{"Pauldrons of the Wardancer", {6030053, 30053, 330053, 230053, 1004976, 1012242, 1018893, 1025497, 1032061, 1038624, 1045187, 1051750, 1058313, 1064876} },
{"Ranger-General's Chestguard", {6030054, 30054, 330054, 230054, 1004977, 1012243, 1018894, 1025498, 1032062, 1038625, 1045188, 1051751, 1058314, 1064877} },
{"Shoulderpads of the Stranger", {6030055, 30055, 330055, 230055, 1004978, 1012244, 1018895, 1025499, 1032063, 1038626, 1045189, 1051752, 1058315, 1064878} },
{"Robe of Hateful Echoes", {6030056, 30056, 330056, 230056, 1004979, 1012245, 1018896, 1025500, 1032064, 1038627, 1045190, 1051753, 1058316, 1064879} },
{"Bracers of Eradication", {6030057, 30057, 330057, 230057, 1004980, 1012246, 1018897, 1025501, 1032065, 1038628, 1045191, 1051754, 1058317, 1064880} },
{"Mallet of the Tides", {6030058, 30058, 330058, 230058, 1004981, 1012247, 1018898, 1025502, 1032066, 1038629, 1045192, 1051755, 1058318, 1064881} },
{"Choker of Animalistic Fury", {6030059, 30059, 330059, 230059, 1004982, 1012248, 1018899, 1025503, 1032067, 1038630, 1045193, 1051756, 1058319, 1064882} },
{"Boots of Effortless Striking", {6030060, 30060, 330060, 230060, 1004983, 1012249, 1018900, 1025504, 1032068, 1038631, 1045194, 1051757, 1058320, 1064883} },
{"Ancestral Ring of Conquest", {6030061, 30061, 330061, 230061, 1004984, 1012250, 1018901, 1025505, 1032069, 1038632, 1045195, 1051758, 1058321, 1064884} },
{"Grove-Bands of Remulos", {6030062, 30062, 330062, 230062, 1004985, 1012251, 1018902, 1025506, 1032070, 1038633, 1045196, 1051759, 1058322, 1064885} },
{"Libram of Absolute Truth", {6030063, 30063, 330063, 230063, 1004986, 1012252, 1018903, 1025507, 1032071, 1038634, 1045197, 1051760, 1058323, 1064886} },
{"Cord of Screaming Terrors", {6030064, 30064, 330064, 230064, 1004987, 1012254, 1018904, 1025508, 1032072, 1038635, 1045198, 1051761, 1058324, 1064887} },
{"Glowing Breastplate of Truth", {6030065, 30065, 330065, 230065, 1004988, 1012255, 1018905, 1025509, 1032073, 1038636, 1045199, 1051762, 1058325, 1064888} },
{"Tempest-Strider Boots", {6030066, 30066, 330066, 230066, 1004989, 1012256, 1018906, 1025510, 1032074, 1038637, 1045200, 1051763, 1058326, 1064889} },
{"Velvet Boots of the Guardian", {6030067, 30067, 330067, 230067, 1004990, 1012257, 1018907, 1025511, 1032075, 1038638, 1045201, 1051764, 1058327, 1064890} },
{"Girdle of the Tidal Call", {6030068, 30068, 330068, 230068, 1004991, 1012259, 1018908, 1025512, 1032076, 1038639, 1045202, 1051765, 1058328, 1064891} },
{"Earthforged Leggings", {6030069, 30069, 281861, 281862, 281863, 281864, 281865, 281866, 281867, 281868, 281869, 281870, 281871, 281872} },
{"Windforged Leggings", {6030070, 30070, 281873, 281874, 281875, 281876, 281877, 281878, 281879, 281880, 281881, 281882, 281883, 281884} },
{"Light Earthforged Blade", {6030071, 30071, 281885, 281886, 281887, 281888, 281889, 281890, 281891, 281892, 281893, 281894, 281895, 281896} },
{"Light Skyforged Axe", {6030072, 30072, 281897, 281898, 281899, 281900, 281901, 281902, 281903, 281904, 281905, 281906, 281907, 281908} },
{"Light Emberforged Hammer", {6030073, 30073, 281909, 281910, 281911, 281912, 281913, 281914, 281915, 281916, 281917, 281918, 281919, 281920} },
{"Heavy Earthforged Breastplate", {6030074, 30074, 281921, 281922, 281923, 281924, 281925, 281926, 281927, 281928, 281929, 281930, 281931, 281932} },
{"Gnarled Chestpiece of the Ancients", {6030075, 30075, 330075, 230075, 1004992, 1012260, 1018909, 1025513, 1032077, 1038640, 1045203, 1051766, 1058329, 1064892} },
{"Stormforged Hauberk", {6030076, 30076, 281933, 281934, 281935, 281936, 281937, 281938, 281939, 281940, 281941, 281942, 281943, 281944} },
{"Windforged Rapier", {6030077, 30077, 281945, 281946, 281947, 281948, 281949, 281950, 281951, 281952, 281953, 281954, 281955, 281956} },
{"Illidari Shoulderpads", {6030079, 30079, 330079, 230079, 1004993, 1012261, 1018910, 1025514, 1032078, 1038641, 1045204, 1051767, 1058330, 1064893} },
{"Luminescent Rod of the Naaru", {6030080, 30080, 330080, 230080, 1004994, 1012262, 1018911, 1025515, 1032079, 1038642, 1045205, 1051768, 1058331, 1064894} },
{"Warboots of Obliteration", {6030081, 30081, 330081, 230081, 1004995, 1012263, 1018912, 1025516, 1032080, 1038643, 1045206, 1051769, 1058332, 1064895} },
{"Talon of Azshara", {6030082, 30082, 330082, 230082, 1004996, 1012264, 1018913, 1025517, 1032081, 1038644, 1045207, 1051770, 1058333, 1064896} },
{"Ring of Sundered Souls", {6030083, 30083, 330083, 230083, 1004997, 1012265, 1018914, 1025518, 1032082, 1038645, 1045208, 1051771, 1058334, 1064897} },
{"Pauldrons of the Argent Sentinel", {6030084, 30084, 330084, 230084, 1004998, 1012266, 1018915, 1025519, 1032083, 1038646, 1045209, 1051772, 1058335, 1064898} },
{"Mantle of the Tireless Tracker", {6030085, 30085, 330085, 230085, 1004999, 1012267, 1018916, 1025520, 1032084, 1038647, 1045210, 1051773, 1058336, 1064899} },
{"Stoneforged Claymore", {6030086, 30086, 281957, 281958, 281959, 281960, 281961, 281962, 281963, 281964, 281965, 281966, 281967, 281968} },
{"Stormforged Axe", {6030087, 30087, 281969, 281970, 281971, 281972, 281973, 281974, 281975, 281976, 281977, 281978, 281979, 281980} },
{"Skyforged Great Axe", {6030088, 30088, 281981, 281982, 281983, 281984, 281985, 281986, 281987, 281988, 281989, 281990, 281991, 281992} },
{"Lavaforged Warhammer", {6030089, 30089, 281993, 281994, 281995, 281996, 281997, 281998, 281999, 282001, 282002, 282003, 282004, 282005} },
{"World Breaker", {6030090, 30090, 330090, 230090, 1005000, 1012268, 1018917, 1025521, 1032085, 1038648, 1045211, 1051774, 1058337, 1064900} },
{"True-Aim Stalker Bands", {6030091, 30091, 330091, 230091, 1005039, 1012269, 1018918, 1025522, 1032086, 1038649, 1045212, 1051775, 1058338, 1064901} },
{"Orca-Hide Boots", {6030092, 30092, 330092, 230092, 1005040, 1012270, 1018919, 1025523, 1032087, 1038650, 1045213, 1051776, 1058339, 1064902} },
{"Great Earthforged Hammer", {6030093, 30093, 282006, 282007, 282008, 282009, 282010, 282011, 282012, 282013, 282014, 282015, 282016, 282017} },
{"Fang of the Leviathan", {6030095, 30095, 330095, 230095, 1005042, 1012271, 1018920, 1025524, 1032088, 1038651, 1045214, 1051777, 1058340, 1064903} },
{"Girdle of the Invulnerable", {6030096, 30096, 330096, 230096, 1005043, 1012272, 1018921, 1025525, 1032089, 1038652, 1045215, 1051778, 1058341, 1064904} },
{"Coral-Barbed Shoulderpads", {6030097, 30097, 330097, 230097, 1005044, 1012273, 1018922, 1025526, 1032090, 1038653, 1045216, 1051779, 1058342, 1064905} },
{"Razor-Scale Battlecloak", {6030098, 30098, 330098, 230098, 1005046, 1012274, 1018923, 1025527, 1032091, 1038654, 1045217, 1051780, 1058343, 1064906} },
{"Frayed Tether of the Drowned", {6030099, 30099, 330099, 230099, 1005047, 1012275, 1018924, 1025528, 1032092, 1038655, 1045218, 1051781, 1058344, 1064907} },
{"Soul-Strider Boots", {6030100, 30100, 330100, 230100, 1005048, 1012276, 1018925, 1025529, 1032093, 1038656, 1045219, 1051782, 1058345, 1064908} },
{"Bloodsea Brigand's Vest", {6030101, 30101, 330101, 230101, 1005049, 1012277, 1018926, 1025530, 1032094, 1038657, 1045220, 1051783, 1058346, 1064909} },
{"Krakken-Heart Breastplate", {6030102, 30102, 330102, 230102, 1005050, 1012278, 1018927, 1025531, 1032095, 1038658, 1045221, 1051784, 1058347, 1064910} },
{"Fang of Vashj", {6030103, 30103, 330103, 230103, 1005051, 1012279, 1018928, 1025532, 1032096, 1038659, 1045222, 1051785, 1058348, 1064911} },
{"Cobra-Lash Boots", {6030104, 30104, 330104, 230104, 1005052, 1012280, 1018929, 1025533, 1032097, 1038660, 1045223, 1051786, 1058349, 1064912} },
{"Serpent Spine Longbow", {6030105, 30105, 330105, 230105, 1005053, 1012281, 1018930, 1025534, 1032098, 1038661, 1045224, 1051787, 1058350, 1064913} },
{"Belt of One-Hundred Deaths", {6030106, 30106, 330106, 230106, 1005054, 1012282, 1018931, 1025535, 1032099, 1038662, 1045225, 1051788, 1058351, 1064914} },
{"Vestments of the Sea-Witch", {6030107, 30107, 330107, 230107, 1005055, 1012283, 1018932, 1025536, 1032100, 1038663, 1045226, 1051789, 1058352, 1064915} },
{"Lightfathom Scepter", {6030108, 30108, 330108, 230108, 1005056, 1012284, 1018933, 1025537, 1032101, 1038664, 1045227, 1051790, 1058353, 1064916} },
{"Ring of Endless Coils", {6030109, 30109, 330109, 230109, 1005057, 1012285, 1018934, 1025538, 1032102, 1038665, 1045228, 1051791, 1058354, 1064917} },
{"Coral Band of the Revived", {6030110, 30110, 330110, 230110, 1005059, 1012286, 1018935, 1025539, 1032103, 1038666, 1045229, 1051792, 1058355, 1064918} },
{"Runetotem's Mantle", {6030111, 30111, 330111, 230111, 1005060, 1012287, 1018936, 1025540, 1032104, 1038667, 1045230, 1051793, 1058356, 1064919} },
{"Glorious Gauntlets of Crestfall", {6030112, 30112, 330112, 230112, 1005062, 1012288, 1018937, 1025541, 1032105, 1038668, 1045231, 1051794, 1058357, 1064920} },
{"Destroyer Chestguard", {6030113, 30113, 330113, 230113, 1005063, 1012289, 1018938, 1025542, 1032106, 1038669, 1045232, 1051795, 1058358, 1064921} },
{"Destroyer Handguards", {6030114, 30114, 330114, 230114, 1005064, 1012290, 1018939, 1025543, 1032107, 1038670, 1045233, 1051796, 1058359, 1064922} },
{"Destroyer Greathelm", {6030115, 30115, 330115, 230115, 1005069, 1012291, 1018940, 1025544, 1032108, 1038671, 1045234, 1051797, 1058360, 1064923} },
{"Destroyer Legguards", {6030116, 30116, 330116, 230116, 1005073, 1012292, 1018941, 1025545, 1032109, 1038672, 1045235, 1051798, 1058361, 1064924} },
{"Destroyer Shoulderguards", {6030117, 30117, 330117, 230117, 1005074, 1012293, 1018942, 1025546, 1032110, 1038673, 1045236, 1051799, 1058362, 1064925} },
{"Destroyer Breastplate", {6030118, 30118, 330118, 230118, 1005075, 1012294, 1018943, 1025547, 1032111, 1038674, 1045237, 1051800, 1058363, 1064926} },
{"Destroyer Gauntlets", {6030119, 30119, 330119, 230119, 1005076, 1012295, 1018944, 1025548, 1032112, 1038675, 1045238, 1051801, 1058364, 1064927} },
{"Destroyer Battle-Helm", {6030120, 30120, 330120, 230120, 1005077, 1012296, 1018945, 1025549, 1032113, 1038676, 1045239, 1051802, 1058365, 1064928} },
{"Destroyer Greaves", {6030121, 30121, 330121, 230121, 1005078, 1012297, 1018946, 1025550, 1032114, 1038677, 1045240, 1051803, 1058366, 1064929} },
{"Destroyer Shoulderblades", {6030122, 30122, 330122, 230122, 1005079, 1012298, 1018947, 1025551, 1032115, 1038678, 1045241, 1051804, 1058367, 1064930} },
{"Crystalforge Chestguard", {6030123, 30123, 330123, 230123, 1005081, 1012299, 1018948, 1025552, 1032116, 1038679, 1045242, 1051805, 1058368, 1064931} },
{"Crystalforge Handguards", {6030124, 30124, 330124, 230124, 1005082, 1012300, 1018949, 1025553, 1032117, 1038680, 1045243, 1051806, 1058369, 1064932} },
{"Crystalforge Faceguard", {6030125, 30125, 330125, 230125, 1005084, 1012301, 1018950, 1025554, 1032118, 1038681, 1045244, 1051807, 1058370, 1064933} },
{"Crystalforge Legguards", {6030126, 30126, 330126, 230126, 1005085, 1012302, 1018951, 1025555, 1032119, 1038682, 1045245, 1051808, 1058371, 1064934} },
{"Crystalforge Shoulderguards", {6030127, 30127, 330127, 230127, 1005086, 1012303, 1018952, 1025556, 1032120, 1038683, 1045246, 1051809, 1058372, 1064935} },
{"Crystalforge Breastplate", {6030129, 30129, 330129, 230129, 1005087, 1012304, 1018953, 1025557, 1032121, 1038684, 1045247, 1051810, 1058373, 1064936} },
{"Crystalforge Gauntlets", {6030130, 30130, 330130, 230130, 1005090, 1012305, 1018954, 1025558, 1032122, 1038685, 1045248, 1051811, 1058374, 1064937} },
{"Crystalforge War-Helm", {6030131, 30131, 330131, 230131, 1005091, 1012306, 1018955, 1025559, 1032123, 1038686, 1045249, 1051812, 1058375, 1064938} },
{"Crystalforge Greaves", {6030132, 30132, 330132, 230132, 1005092, 1012307, 1018956, 1025560, 1032124, 1038687, 1045250, 1051813, 1058376, 1064939} },
{"Crystalforge Shoulderbraces", {6030133, 30133, 330133, 230133, 1005093, 1012308, 1018957, 1025561, 1032125, 1038688, 1045251, 1051814, 1058377, 1064940} },
{"Crystalforge Chestpiece", {6030134, 30134, 330134, 230134, 1005094, 1012310, 1018958, 1025562, 1032126, 1038689, 1045252, 1051815, 1058378, 1064941} },
{"Crystalforge Gloves", {6030135, 30135, 330135, 230135, 1005095, 1012311, 1018959, 1025563, 1032127, 1038690, 1045253, 1051816, 1058379, 1064942} },
{"Crystalforge Greathelm", {6030136, 30136, 330136, 230136, 1005096, 1012312, 1018960, 1025564, 1032128, 1038691, 1045254, 1051817, 1058380, 1064943} },
{"Crystalforge Leggings", {6030137, 30137, 330137, 230137, 1005097, 1012313, 1018961, 1025565, 1032129, 1038692, 1045255, 1051818, 1058381, 1064944} },
{"Crystalforge Pauldrons", {6030138, 30138, 330138, 230138, 1005098, 1012314, 1018962, 1025566, 1032130, 1038693, 1045256, 1051819, 1058382, 1064945} },
{"Rift Stalker Hauberk", {6030139, 30139, 330139, 230139, 1005100, 1012315, 1018963, 1025567, 1032131, 1038694, 1045257, 1051820, 1058383, 1064946} },
{"Rift Stalker Gauntlets", {6030140, 30140, 330140, 230140, 1005101, 1012316, 1018964, 1025568, 1032132, 1038695, 1045258, 1051821, 1058384, 1064947} },
{"Rift Stalker Helm", {6030141, 30141, 330141, 230141, 1005102, 1012317, 1018965, 1025569, 1032133, 1038696, 1045259, 1051822, 1058385, 1064948} },
{"Rift Stalker Leggings", {6030142, 30142, 330142, 230142, 1005104, 1012318, 1018966, 1025570, 1032134, 1038697, 1045260, 1051823, 1058386, 1064949} },
{"Rift Stalker Mantle", {6030143, 30143, 330143, 230143, 1005105, 1012319, 1018967, 1025571, 1032135, 1038698, 1045261, 1051824, 1058387, 1064950} },
{"Deathmantle Chestguard", {6030144, 30144, 330144, 230144, 1005106, 1012320, 1018968, 1025572, 1032136, 1038699, 1045262, 1051825, 1058388, 1064951} },
{"Deathmantle Handguards", {6030145, 30145, 330145, 230145, 1005108, 1012321, 1018969, 1025573, 1032137, 1038700, 1045263, 1051826, 1058389, 1064952} },
{"Deathmantle Helm", {6030146, 30146, 330146, 230146, 1005109, 1012322, 1018970, 1025574, 1032138, 1038701, 1045264, 1051827, 1058390, 1064953} },
{"Deathmantle Legguards", {6030148, 30148, 330148, 230148, 1005110, 1012323, 1018971, 1025575, 1032139, 1038702, 1045265, 1051828, 1058391, 1064954} },
{"Deathmantle Shoulderpads", {6030149, 30149, 330149, 230149, 1005113, 1012324, 1018972, 1025576, 1032140, 1038703, 1045266, 1051829, 1058392, 1064955} },
{"Vestments of the Avatar", {6030150, 30150, 330150, 230150, 1005114, 1012325, 1018973, 1025577, 1032141, 1038704, 1045267, 1051830, 1058393, 1064956} },
{"Gloves of the Avatar", {6030151, 30151, 330151, 230151, 1005115, 1012326, 1018974, 1025578, 1032142, 1038705, 1045268, 1051831, 1058394, 1064957} },
{"Cowl of the Avatar", {6030152, 30152, 330152, 230152, 1005116, 1012327, 1018975, 1025579, 1032143, 1038706, 1045269, 1051832, 1058395, 1064958} },
{"Breeches of the Avatar", {6030153, 30153, 330153, 230153, 1005118, 1012328, 1018976, 1025580, 1032144, 1038707, 1045270, 1051833, 1058396, 1064959} },
{"Mantle of the Avatar", {6030154, 30154, 330154, 230154, 1005119, 1012329, 1018977, 1025581, 1032145, 1038708, 1045271, 1051834, 1058397, 1064960} },
{"Shroud of the Avatar", {6030159, 30159, 330159, 230159, 1005120, 1012330, 1018978, 1025582, 1032146, 1038709, 1045272, 1051835, 1058398, 1064961} },
{"Handguards of the Avatar", {6030160, 30160, 330160, 230160, 1005121, 1012331, 1018979, 1025583, 1032147, 1038710, 1045273, 1051836, 1058399, 1064962} },
{"Hood of the Avatar", {6030161, 30161, 330161, 230161, 1005122, 1012332, 1018980, 1025584, 1032148, 1038711, 1045274, 1051837, 1058400, 1064963} },
{"Leggings of the Avatar", {6030162, 30162, 330162, 230162, 1005124, 1012333, 1018981, 1025585, 1032149, 1038712, 1045275, 1051838, 1058401, 1064964} },
{"Wings of the Avatar", {6030163, 30163, 330163, 230163, 1005125, 1012334, 1018982, 1025586, 1032150, 1038713, 1045276, 1051839, 1058402, 1064965} },
{"Cataclysm Chestguard", {6030164, 30164, 330164, 230164, 1005126, 1012335, 1018983, 1025587, 1032151, 1038714, 1045277, 1051840, 1058403, 1064966} },
{"Cataclysm Gloves", {6030165, 30165, 330165, 230165, 1005127, 1012336, 1018984, 1025588, 1032152, 1038715, 1045278, 1051841, 1058404, 1064967} },
{"Cataclysm Headguard", {6030166, 30166, 330166, 230166, 1005128, 1012337, 1018985, 1025589, 1032153, 1038716, 1045279, 1051842, 1058405, 1064968} },
{"Cataclysm Legguards", {6030167, 30167, 330167, 230167, 1005129, 1012338, 1018986, 1025590, 1032154, 1038717, 1045280, 1051843, 1058406, 1064969} },
{"Cataclysm Shoulderguards", {6030168, 30168, 330168, 230168, 1005130, 1012339, 1018987, 1025591, 1032155, 1038718, 1045281, 1051844, 1058407, 1064970} },
{"Cataclysm Chestpiece", {6030169, 30169, 330169, 230169, 1005131, 1012340, 1018988, 1025592, 1032156, 1038719, 1045282, 1051845, 1058408, 1064971} },
{"Cataclysm Handgrips", {6030170, 30170, 330170, 230170, 1005132, 1012341, 1018989, 1025593, 1032157, 1038720, 1045283, 1051846, 1058409, 1064972} },
{"Cataclysm Headpiece", {6030171, 30171, 330171, 230171, 1005133, 1012343, 1018990, 1025594, 1032158, 1038721, 1045284, 1051847, 1058410, 1064973} },
{"Cataclysm Leggings", {6030172, 30172, 330172, 230172, 1005135, 1012344, 1018991, 1025595, 1032159, 1038722, 1045285, 1051848, 1058411, 1064974} },
{"Cataclysm Shoulderpads", {6030173, 30173, 330173, 230173, 1005136, 1012345, 1018992, 1025596, 1032160, 1038723, 1045286, 1051849, 1058412, 1064975} },
{"Cataclysm Chestplate", {6030185, 30185, 330185, 230185, 1005137, 1012346, 1018993, 1025597, 1032161, 1038724, 1045287, 1051850, 1058413, 1064976} },
{"Cataclysm Gauntlets", {6030189, 30189, 330189, 230189, 1005143, 1012350, 1018997, 1025601, 1032165, 1038728, 1045291, 1051854, 1058417, 1064980} },
{"Cataclysm Helm", {6030190, 30190, 330190, 230190, 1005144, 1012351, 1018998, 1025602, 1032166, 1038729, 1045292, 1051855, 1058418, 1064981} },
{"Cataclysm Legplates", {6030192, 30192, 330192, 230192, 1005145, 1012352, 1018999, 1025603, 1032167, 1038730, 1045293, 1051856, 1058419, 1064982} },
{"Cataclysm Shoulderplates", {6030194, 30194, 330194, 230194, 1005147, 1012353, 1019000, 1025604, 1032168, 1038731, 1045294, 1051857, 1058420, 1064983} },
{"Robes of Tirisfal", {6030196, 30196, 330196, 230196, 1005148, 1012354, 1019001, 1025605, 1032169, 1038732, 1045295, 1051858, 1058421, 1064984} },
{"Gloves of Tirisfal", {6030205, 30205, 330205, 230205, 1005152, 1012358, 1019004, 1025608, 1032172, 1038735, 1045298, 1051861, 1058424, 1064987} },
{"Cowl of Tirisfal", {6030206, 30206, 330206, 230206, 1005153, 1012359, 1019005, 1025609, 1032173, 1038736, 1045299, 1051862, 1058425, 1064988} },
{"Leggings of Tirisfal", {6030207, 30207, 330207, 230207, 1005154, 1012360, 1019006, 1025610, 1032174, 1038737, 1045300, 1051863, 1058426, 1064989} },
{"Mantle of Tirisfal", {6030210, 30210, 330210, 230210, 1005155, 1012361, 1019007, 1025611, 1032175, 1038738, 1045301, 1051864, 1058427, 1064990} },
{"Gloves of the Corruptor", {6030211, 30211, 330211, 230211, 1005157, 1012362, 1019008, 1025612, 1032176, 1038739, 1045302, 1051865, 1058428, 1064991} },
{"Hood of the Corruptor", {6030212, 30212, 330212, 230212, 1005160, 1012363, 1019009, 1025613, 1032177, 1038740, 1045303, 1051866, 1058429, 1064992} },
{"Leggings of the Corruptor", {6030213, 30213, 330213, 230213, 1005161, 1012364, 1019010, 1025614, 1032178, 1038741, 1045304, 1051867, 1058430, 1064993} },
{"Robe of the Corruptor", {6030214, 30214, 330214, 230214, 1005162, 1012365, 1019011, 1025615, 1032179, 1038742, 1045305, 1051868, 1058431, 1064994} },
{"Mantle of the Corruptor", {6030215, 30215, 330215, 230215, 1005164, 1012366, 1019012, 1025616, 1032180, 1038743, 1045306, 1051869, 1058432, 1064995} },
{"Nordrassil Chestguard", {6030216, 30216, 330216, 230216, 1005165, 1012367, 1019013, 1025617, 1032181, 1038744, 1045307, 1051870, 1058433, 1064996} },
{"Nordrassil Gloves", {6030217, 30217, 330217, 230217, 1005166, 1012368, 1019014, 1025618, 1032182, 1038745, 1045308, 1051871, 1058434, 1064997} },
{"Junior Technician 3rd Grade Shoulders", {282019, 30218, 282018, 282020, 282021, 282022, 282023, 282024, 282025, 282026, 282027, 282028, 282029, 282030} },
{"Nordrassil Headguard", {6030219, 30219, 330219, 230219, 1005167, 1012369, 1019015, 1025619, 1032183, 1038746, 1045309, 1051872, 1058435, 1064998} },
{"Nordrassil Life-Kilt", {6030220, 30220, 330220, 230220, 1005169, 1012370, 1019016, 1025620, 1032184, 1038747, 1045310, 1051873, 1058436, 1064999} },
{"Nordrassil Life-Mantle", {6030221, 30221, 330221, 230221, 1005172, 1012371, 1019017, 1025621, 1032185, 1038748, 1045311, 1051874, 1058437, 1065000} },
{"Nordrassil Chestplate", {6030222, 30222, 330222, 230222, 1005173, 1012372, 1019018, 1025622, 1032186, 1038749, 1045312, 1051875, 1058438, 1065001} },
{"Nordrassil Handgrips", {6030223, 30223, 330223, 230223, 1005174, 1012373, 1019019, 1025623, 1032187, 1038750, 1045313, 1051876, 1058439, 1065002} },
{"Junior Technician 3rd Grade Gloves", {282032, 30224, 282031, 282033, 282034, 282035, 282036, 282037, 282038, 282039, 282040, 282041, 282042, 282043} },
{"Junior Technician 3rd Grade Bracers", {282045, 30225, 282044, 282046, 282047, 282048, 282049, 282050, 282051, 282052, 282053, 282054, 282055, 282056} },
{"Alley's Recurve", {282058, 30226, 282057, 282059, 282060, 282061, 282062, 282063, 282064, 282065, 282066, 282067, 282068, 282069} },
{"Mark V's Throwing Star", {282071, 30227, 282070, 282072, 282073, 282074, 282075, 282076, 282077, 282078, 282079, 282080, 282081, 282082} },
{"Nordrassil Headdress", {6030228, 30228, 330228, 230228, 1005175, 1012374, 1019020, 1025624, 1032188, 1038751, 1045314, 1051877, 1058440, 1065003} },
{"Nordrassil Feral-Kilt", {6030229, 30229, 330229, 230229, 1005176, 1012375, 1019021, 1025625, 1032189, 1038752, 1045315, 1051878, 1058441, 1065004} },
{"Nordrassil Feral-Mantle", {6030230, 30230, 330230, 230230, 1005177, 1012376, 1019022, 1025626, 1032190, 1038753, 1045316, 1051879, 1058442, 1065005} },
{"Nordrassil Chestpiece", {6030231, 30231, 330231, 230231, 1005178, 1012377, 1019023, 1025627, 1032191, 1038754, 1045317, 1051880, 1058443, 1065006} },
{"Nordrassil Gauntlets", {6030232, 30232, 330232, 230232, 1005179, 1012378, 1019024, 1025628, 1032192, 1038755, 1045318, 1051881, 1058444, 1065007} },
{"Nordrassil Headpiece", {6030233, 30233, 330233, 230233, 1005180, 1012379, 1019025, 1025629, 1032193, 1038756, 1045319, 1051882, 1058445, 1065008} },
{"Nordrassil Wrath-Kilt", {6030234, 30234, 330234, 230234, 1005181, 1012380, 1019026, 1025630, 1032194, 1038757, 1045320, 1051883, 1058446, 1065009} },
{"Nordrassil Wrath-Mantle", {6030235, 30235, 330235, 230235, 1005183, 1012381, 1019027, 1025631, 1032195, 1038758, 1045321, 1051884, 1058447, 1065010} },
{"Unearthed Enkaat Wand", {282084, 30252, 282083, 282085, 282086, 282087, 282088, 282089, 282090, 282091, 282092, 282093, 282094, 282095} },
{"Ethereal Gloves", {282097, 30253, 282096, 282098, 282099, 282100, 282101, 282102, 282103, 282104, 282105, 282106, 282107, 282108} },
{"Zephyrion's Belt", {282110, 30254, 282109, 282111, 282112, 282113, 282114, 282115, 282116, 282117, 282118, 282119, 282120, 282121} },
{"Chestguard of the Stormspire", {282123, 30255, 282122, 282124, 282125, 282126, 282127, 282128, 282129, 282130, 282131, 282132, 282133, 282134} },
{"Pants of the Naaru", {6030256, 30256, 282135, 282136, 282137, 282138, 282139, 282140, 282141, 282142, 282143, 282144, 282145, 282146} },
{"Shattrath Leggings", {6030257, 30257, 282147, 282148, 282149, 282150, 282151, 282152, 282153, 282154, 282155, 282156, 282157, 282158} },
{"Chestplate of A'dal", {6030258, 30258, 282159, 282160, 282161, 282162, 282163, 282164, 282165, 282166, 282167, 282168, 282169, 282170} },
{"Trep's Shoulderguards", {282172, 30262, 282171, 282173, 282174, 282175, 282176, 282177, 282178, 282179, 282180, 282181, 282182, 282183} },
{"Heavy-Duty Engineering Boots", {282185, 30263, 282184, 282186, 282187, 282188, 282189, 282190, 282191, 282192, 282193, 282194, 282195, 282196} },
{"Area 52 Engineering Gloves", {282198, 30264, 282197, 282199, 282200, 282201, 282202, 282203, 282204, 282205, 282206, 282207, 282208, 282209} },
{"Zaxxis Bracers", {282211, 30265, 282210, 282212, 282213, 282214, 282215, 282216, 282217, 282218, 282219, 282220, 282221, 282222} },
{"Zaxxis Boots", {282224, 30266, 282223, 282225, 282226, 282227, 282228, 282229, 282230, 282231, 282232, 282233, 282234, 282235} },
{"Zaxxis Gloves", {282237, 30267, 282236, 282238, 282239, 282240, 282241, 282242, 282243, 282244, 282245, 282246, 282247, 282248} },
{"Heap Leggings", {282250, 30268, 282249, 282251, 282252, 282253, 282254, 282255, 282256, 282257, 282258, 282259, 282260, 282261} },
{"Warp-Raider's Eyepatch", {282263, 30269, 282262, 282264, 282265, 282266, 282267, 282268, 282269, 282270, 282271, 282272, 282273, 282274} },
{"Scavenged Breastplate", {282276, 30270, 282275, 282277, 282278, 282279, 282280, 282281, 282282, 282283, 282284, 282285, 282286, 282287} },
{"Midrealm Hat", {282289, 30271, 282288, 282290, 282291, 282292, 282293, 282294, 282295, 282296, 282297, 282298, 282299, 282300} },
{"Eco-Dome Leggings", {282302, 30272, 282301, 282303, 282304, 282305, 282306, 282307, 282308, 282309, 282310, 282311, 282312, 282313} },
{"Duro Footgear", {282315, 30273, 282314, 282316, 282317, 282318, 282319, 282320, 282321, 282322, 282323, 282324, 282325, 282326} },
{"Papa's Armbands", {282328, 30274, 282327, 282329, 282330, 282331, 282332, 282333, 282334, 282335, 282336, 282337, 282338, 282339} },
{"Mech Tech Shoulders", {282341, 30275, 282340, 282342, 282343, 282344, 282345, 282346, 282347, 282348, 282349, 282350, 282351, 282352} },
{"Wheeler Family Heirloom", {282354, 30276, 282353, 282355, 282356, 282357, 282358, 282359, 282360, 282361, 282362, 282363, 282364, 282365} },
{"Ripfang Paw", {282367, 30277, 282366, 282368, 282369, 282370, 282371, 282372, 282373, 282374, 282375, 282376, 282377, 282378} },
{"Pilfered Ethereal Blade", {282380, 30278, 282379, 282381, 282382, 282383, 282384, 282385, 282386, 282387, 282388, 282389, 282390, 282391} },
{"Mama's Insurance", {282393, 30279, 282392, 282394, 282395, 282396, 282397, 282398, 282399, 282400, 282401, 282402, 282403, 282404} },
{"Audi's Embroidered Boots", {282406, 30284, 282405, 282407, 282408, 282409, 282410, 282411, 282412, 282413, 282414, 282415, 282416, 282417} },
{"B.O.O.M. Operative's Belt", {282419, 30285, 282418, 282420, 282421, 282422, 282423, 282424, 282425, 282426, 282427, 282428, 282429, 282430} },
{"Otherworldly Pauldrons", {282432, 30286, 282431, 282433, 282434, 282435, 282436, 282437, 282438, 282439, 282440, 282441, 282442, 282443} },
{"Leggings of Concentrated Power", {282484, 30290, 282483, 282485, 282486, 282487, 282488, 282489, 282490, 282491, 282492, 282493, 282494, 282495} },
{"Nexus-Guard's Pauldrons", {282497, 30291, 282496, 282498, 282499, 282500, 282501, 282502, 282503, 282504, 282505, 282506, 282507, 282508} },
{"Heavenly Inspiration", {282510, 30293, 282509, 282511, 282512, 282513, 282514, 282515, 282516, 282517, 282518, 282519, 282520, 282521} },
{"Red Pointy Hat", {282523, 30294, 282522, 282524, 282525, 282526, 282527, 282528, 282529, 282530, 282531, 282532, 282533, 282534} },
{"Exotic Spiked Shoulders", {282536, 30295, 282535, 282537, 282538, 282539, 282540, 282541, 282542, 282543, 282544, 282545, 282546, 282547} },
{"Lost Chestplate of the Reverent", {282549, 30296, 282548, 282550, 282551, 282552, 282553, 282554, 282555, 282556, 282557, 282558, 282559, 282560} },
{"Circlet of the Starcaller", {6030297, 30297, 282561, 282562, 282563, 282564, 282565, 282566, 282567, 282568, 282569, 282570, 282571, 282572} },
{"Void Slayer's Tunic", {6030298, 30298, 282573, 282574, 282575, 282576, 282577, 282578, 282579, 282580, 282581, 282582, 282583, 282584} },
{"Starcaller's Plated Legguards", {6030299, 30299, 282585, 282586, 282587, 282588, 282589, 282590, 282591, 282592, 282593, 282594, 282595, 282596} },
{"Dabiri's Enigma", {6030300, 30300, 282597, 282598, 282599, 282600, 282601, 282602, 282603, 282604, 282605, 282606, 282607, 282608} },
{"Warp Slicer", {282609, 30311, 330311, 430311, 282610, 282611, 282612, 282613, 282614, 282615, 282616, 282617, 282618, 282619} },
{"Infinity Blade", {282621, 30312, 282620, 282622, 282623, 282624, 282625, 282626, 282627, 282628, 282629, 282630, 282631, 282632} },
{"Staff of Disintegration", {282634, 30313, 282633, 282635, 282636, 282637, 282638, 282639, 282640, 282641, 282642, 282643, 282644, 282645} },
{"Phaseshift Bulwark", {282647, 30314, 282646, 282648, 282649, 282650, 282651, 282652, 282653, 282654, 282655, 282656, 282657, 282658} },
{"Devastation", {282660, 30316, 282659, 282661, 282662, 282663, 282664, 282665, 282666, 282667, 282668, 282669, 282670, 282671} },
{"Cosmic Infuser", {282673, 30317, 282672, 282674, 282675, 282676, 282677, 282678, 282679, 282680, 282681, 282682, 282683, 282684} },
{"Netherstrand Longbow", {282686, 30318, 282685, 282687, 282688, 282689, 282690, 282691, 282692, 282693, 282694, 282695, 282696, 282697} },
{"Protectorate Assassin's Tunic", {282699, 30328, 282698, 282700, 282701, 282702, 282703, 282704, 282705, 282706, 282707, 282708, 282709, 282710} },
{"Flesh Handler's Headpiece", {282712, 30329, 282711, 282713, 282714, 282715, 282716, 282717, 282718, 282719, 282720, 282721, 282722, 282723} },
{"Starcaller's Plated Belt", {282725, 30330, 282724, 282726, 282727, 282728, 282729, 282730, 282731, 282732, 282733, 282734, 282735, 282736} },
{"Diviner's Cinch", {282738, 30331, 282737, 282739, 282740, 282741, 282742, 282743, 282744, 282745, 282746, 282747, 282748, 282749} },
{"Ferocious Bands", {282751, 30332, 282750, 282752, 282753, 282754, 282755, 282756, 282757, 282758, 282759, 282760, 282761, 282762} },
{"Spaulders of the Protectorate", {282764, 30333, 282763, 282765, 282766, 282767, 282768, 282769, 282770, 282771, 282772, 282773, 282774, 282775} },
{"Starcaller's Plated Stompers", {282777, 30334, 282776, 282778, 282779, 282780, 282781, 282782, 282783, 282784, 282785, 282786, 282787, 282788} },
{"Druidic Force Boots", {282790, 30335, 282789, 282791, 282792, 282793, 282794, 282795, 282796, 282797, 282798, 282799, 282800, 282801} },
{"Surger's Hand Wraps", {282803, 30336, 282802, 282804, 282805, 282806, 282807, 282808, 282809, 282810, 282811, 282812, 282813, 282814} },
{"Protectorate Headplate", {282816, 30337, 282815, 282817, 282818, 282819, 282820, 282821, 282822, 282823, 282824, 282825, 282826, 282827} },
{"Diviner's Cloak", {282829, 30338, 282828, 282830, 282831, 282832, 282833, 282834, 282835, 282836, 282837, 282838, 282839, 282840} },
{"Protectorate Assassin's Ring", {282842, 30339, 282841, 282843, 282844, 282845, 282846, 282847, 282848, 282849, 282850, 282851, 282852, 282853} },
{"Starkiller's Bauble", {282855, 30340, 282854, 282856, 282857, 282858, 282859, 282860, 282861, 282862, 282863, 282864, 282865, 282866} },
{"Flesh Handler's Gauntlets", {282868, 30341, 282867, 282869, 282870, 282871, 282872, 282873, 282874, 282875, 282876, 282877, 282878, 282879} },
{"Protectorate Waistband", {282881, 30342, 282880, 282882, 282883, 282884, 282885, 282886, 282887, 282888, 282889, 282890, 282891, 282892} },
{"Demolisher's Bracers", {282990, 30352, 282989, 282991, 282992, 282993, 282994, 282995, 282996, 282997, 282998, 282999, 283000, 283001} },
{"Energized Helm", {283003, 30362, 283002, 283004, 283005, 283006, 283007, 283008, 283009, 283010, 283011, 283012, 283013, 283014} },
{"Warp-Shielded Hauberk", {283016, 30363, 283015, 283017, 283018, 283019, 283020, 283021, 283022, 283023, 283024, 283025, 283026, 283027} },
{"Resonating Axe", {283029, 30364, 283028, 283030, 283031, 283032, 283033, 283034, 283035, 283036, 283037, 283038, 283039, 283040} },
{"Overseer's Signet", {6030365, 30365, 283041, 283042, 283043, 283044, 283045, 283046, 283047, 283048, 283049, 283050, 283051, 283052} },
{"Manastorm Band", {6030366, 30366, 283053, 283054, 283055, 283056, 283057, 283058, 283059, 283060, 283061, 283062, 283063, 283064} },
{"Slippers of the High Priestess", {6030368, 30368, 283065, 283066, 283067, 283068, 283069, 283070, 283071, 283072, 283073, 283074, 283075, 283076} },
{"Cleansed Fel Pauldrons", {6030369, 30369, 283077, 283078, 283079, 283080, 283081, 283082, 283083, 283084, 283085, 283086, 283087, 283088} },
{"Gauntlets of the Redeemed Vindicator", {6030370, 30370, 283089, 283090, 283091, 283092, 283093, 283094, 283095, 283096, 283097, 283098, 283099, 283100} },
{"Lightwarden's Girdle", {6030371, 30371, 283101, 283102, 283103, 283104, 283105, 283106, 283107, 283108, 283109, 283110, 283111, 283112} },
{"Socrethar's Girdle", {6030372, 30372, 283113, 283114, 283115, 283116, 283117, 283118, 283119, 283120, 283121, 283122, 283123, 283124} },
{"Netherfused Pauldrons", {6030373, 30373, 283125, 283126, 283127, 283128, 283129, 283130, 283131, 283132, 283133, 283134, 283135, 283136} },
{"Greaves of Spellpower", {6030374, 30374, 283137, 283138, 283139, 283140, 283141, 283142, 283143, 283144, 283145, 283146, 283147, 283148} },
{"Gauntlets of the Vanquisher", {6030375, 30375, 283149, 283150, 283151, 283152, 283153, 283154, 283155, 283156, 283157, 283158, 283159, 283160} },
{"Karja's Medallion", {6030377, 30377, 283161, 283162, 283163, 283164, 283165, 283166, 283167, 283168, 283169, 283170, 283171, 283172} },
{"Thalodien's Charm", {6030378, 30378, 283173, 283174, 283175, 283176, 283177, 283178, 283179, 283180, 283181, 283182, 283183, 283184} },
{"Vindicator's Light Vest", {283186, 30379, 283185, 283187, 283188, 283189, 283190, 283191, 283192, 283193, 283194, 283195, 283196, 283197} },
{"Girdle of the Lost Vindicator", {283199, 30380, 283198, 283200, 283201, 283202, 283203, 283204, 283205, 283206, 283207, 283208, 283209, 283210} },
{"Kaylaan's Spaulders", {283212, 30381, 283211, 283213, 283214, 283215, 283216, 283217, 283218, 283219, 283220, 283221, 283222, 283223} },
{"Aldor Ceremonial Wraps", {283225, 30382, 283224, 283226, 283227, 283228, 283229, 283230, 283231, 283232, 283233, 283234, 283235, 283236} },
{"Belt of the Sage", {283238, 30383, 283237, 283239, 283240, 283241, 283242, 283243, 283244, 283245, 283246, 283247, 283248, 283249} },
{"Brightdawn Bracers", {283251, 30384, 283250, 283252, 283253, 283254, 283255, 283256, 283257, 283258, 283259, 283260, 283261, 283262} },
{"Bloodguard's Greaves", {283264, 30386, 283263, 283265, 283266, 283267, 283268, 283269, 283270, 283271, 283272, 283273, 283274, 283275} },
{"Sunfury Blade", {283277, 30394, 283276, 283278, 283279, 283280, 283281, 283282, 283283, 283284, 283285, 283286, 283287, 283288} },
{"Warp-Master's Maul", {283290, 30395, 283289, 283291, 283292, 283293, 283294, 283295, 283296, 283297, 283298, 283299, 283300, 283301} },
{"Jeweled Halberd", {283303, 30396, 283302, 283304, 283305, 283306, 283307, 283308, 283309, 283310, 283311, 283312, 283313, 283314} },
{"Spymaster's Crossbow", {283316, 30397, 283315, 283317, 283318, 283319, 283320, 283321, 283322, 283323, 283324, 283325, 283326, 283327} },
{"Boots of the Beneficent", {283329, 30398, 283328, 283330, 283331, 283332, 283333, 283334, 283335, 283336, 283337, 283338, 283339, 283340} },
{"Nightstalker's Wristguards", {283342, 30399, 283341, 283343, 283344, 283345, 283346, 283347, 283348, 283349, 283350, 283351, 283352, 283353} },
{"Thadell's Bracers", {283355, 30400, 283354, 283356, 283357, 283358, 283359, 283360, 283361, 283362, 283363, 283364, 283365, 283366} },
{"Farahlite Studded Boots", {283368, 30401, 283367, 283369, 283370, 283371, 283372, 283373, 283374, 283375, 283376, 283377, 283378, 283379} },
{"Field Agent's Bracers", {283381, 30402, 283380, 283382, 283383, 283384, 283385, 283386, 283387, 283388, 283389, 283390, 283391, 283392} },
{"Darkspear (Purple Glow)", {6030418, 30418, 283393, 283394, 283395, 283396, 283397, 283398, 283399, 283400, 283401, 283402, 283403, 283404} },
{"Red Ring of Destruction", {283432, 30421, 283431, 283433, 283434, 283435, 283436, 283437, 283438, 283439, 283440, 283441, 283442, 283443} },
{"Diamond Focus Ring", {283445, 30422, 283444, 283446, 283447, 283448, 283449, 283450, 283451, 283452, 283453, 283454, 283455, 283456} },
{"Solarian's Sapphire", {6030446, 30446, 330446, 230446, 1005205, 1012398, 1019043, 1025647, 1032211, 1038774, 1045337, 1051900, 1058463, 1065026} },
{"Tome of Fiery Redemption", {6030447, 30447, 330447, 230447, 1005206, 1012399, 1019044, 1025648, 1032212, 1038775, 1045338, 1051901, 1058464, 1065027} },
{"Talon of Al'ar", {6030448, 30448, 283457, 283458, 283459, 283460, 283461, 283462, 283463, 283464, 283465, 283466, 283467, 283468} },
{"Void Star Talisman", {6030449, 30449, 330449, 230449, 1005207, 1012400, 1019045, 1025649, 1032213, 1038776, 1045339, 1051902, 1058465, 1065028} },
{"Warp-Spring Coil", {6030450, 30450, 330450, 230450, 1005208, 1012401, 1019046, 1025650, 1032214, 1038777, 1045340, 1051903, 1058466, 1065029} },
{"Netherflame Robe", {6030459, 30459, 283469, 283470, 283471, 283472, 283473, 283474, 283475, 283476, 283477, 283478, 283479, 283480} },
{"Netherflame Belt", {6030460, 30460, 283481, 283482, 283483, 283484, 283485, 283486, 283487, 283488, 283489, 283490, 283491, 283492} },
{"Netherflame Boots", {6030461, 30461, 283493, 283494, 283495, 283496, 283497, 283498, 283499, 283500, 283501, 283502, 283503, 283504} },
{"Lifeblood Belt", {6030463, 30463, 283505, 283506, 283507, 283508, 283509, 283510, 283511, 283512, 283513, 283514, 283515, 283516} },
{"Lifeblood Bracers", {6030464, 30464, 283517, 283518, 283519, 283520, 283521, 283522, 283523, 283524, 283525, 283526, 283527, 283528} },
{"Lifeblood Leggings", {6030465, 30465, 283529, 283530, 283531, 283532, 283533, 283534, 283535, 283536, 283537, 283538, 283539, 283540} },
{"Nether Guards", {283604, 30514, 283603, 283605, 283606, 283607, 283608, 283609, 283610, 283611, 283612, 283613, 283614, 283615} },
{"Junior Technician 3rd Grade Goggles", {283617, 30515, 283616, 283618, 283619, 283620, 283621, 283622, 283623, 283624, 283625, 283626, 283627, 283628} },
{"Chief Engineer's Belt", {283630, 30516, 283629, 283631, 283632, 283633, 283634, 283635, 283636, 283637, 283638, 283639, 283640, 283641} },
{"Netherfarer's Leggings", {283643, 30517, 283642, 283644, 283645, 283646, 283647, 283648, 283649, 283650, 283651, 283652, 283653, 283654} },
{"Warpthread Vest", {283656, 30518, 283655, 283657, 283658, 283659, 283660, 283661, 283662, 283663, 283664, 283665, 283666, 283667} },
{"Boots of the Nexus Warden", {283669, 30519, 283668, 283670, 283671, 283672, 283673, 283674, 283675, 283676, 283677, 283678, 283679, 283680} },
{"Gold-Trimmed Cuffs", {283682, 30520, 283681, 283683, 283684, 283685, 283686, 283687, 283688, 283689, 283690, 283691, 283692, 283693} },
{"Warpweaver's Gloves", {283695, 30521, 283694, 283696, 283697, 283698, 283699, 283700, 283701, 283702, 283703, 283704, 283705, 283706} },
{"Conjurer's Staff", {283708, 30522, 283707, 283709, 283710, 283711, 283712, 283713, 283714, 283715, 283716, 283717, 283718, 283719} },
{"Hotshot Cattle Prod", {283721, 30523, 283720, 283722, 283723, 283724, 283725, 283726, 283727, 283728, 283729, 283730, 283731, 283732} },
{"Breeches of the Occultist", {6030531, 30531, 100688, 430531, 1007704, 1014587, 1021251, 1027816, 1034380, 1040943, 1047506, 1054069, 1060632, 1067195} },
{"Kirin Tor Master's Trousers", {6030532, 30532, 120784, 430532, 1007705, 1014588, 1021252, 1027817, 1034381, 1040944, 1047507, 1054070, 1060633, 1067196} },
{"Vanquisher's Legplates", {6030533, 30533, 130562, 430533, 1007706, 1014589, 1021253, 1027818, 1034382, 1040945, 1047508, 1054071, 1060634, 1067197} },
{"Wyrmscale Greaves", {6030534, 30534, 130995, 430534, 1007707, 1014590, 1021254, 1027819, 1034383, 1040946, 1047509, 1054072, 1060635, 1067198} },
{"Forestwalker Kilt", {6030535, 30535, 116074, 430535, 1007708, 1014591, 1021255, 1027820, 1034384, 1040947, 1047510, 1054073, 1060636, 1067199} },
{"Greaves of the Martyr", {6030536, 30536, 120178, 430536, 1007709, 1014592, 1021256, 1027821, 1034385, 1040948, 1047511, 1054074, 1060637, 1067200} },
{"Midnight Legguards", {6030538, 30538, 122878, 430538, 1007710, 1014593, 1021257, 1027822, 1034386, 1040949, 1047512, 1054075, 1060638, 1067201} },
{"Stormsong Kilt", {6030541, 30541, 128806, 430541, 1007711, 1014594, 1021258, 1027823, 1034387, 1040950, 1047513, 1054076, 1060639, 1067202} },
{"Pontifex Kilt", {6030543, 30543, 123428, 430543, 1007712, 1014595, 1021259, 1027824, 1034388, 1040951, 1047514, 1054077, 1060640, 1067203} },
{"The Sharp Cookie", {283734, 30568, 283733, 283735, 283736, 283737, 283738, 283739, 283740, 283741, 283742, 283743, 283744, 283745} },
{"Arkadian Claymore", {283747, 30570, 283746, 283748, 283749, 283750, 283751, 283752, 283753, 283754, 283755, 283756, 283757, 283758} },
{"Halaani Claymore", {283760, 30597, 283759, 283761, 283762, 283763, 283764, 283765, 283766, 283767, 283768, 283769, 283770, 283771} },
{"Avenging Blades", {283773, 30599, 283772, 283774, 283775, 283776, 283777, 283778, 283779, 283780, 283781, 283782, 283783, 283784} },
{"Fel Reaver's Piston", {6030619, 30619, 330619, 230619, 1005215, 1012408, 1019052, 1025656, 1032220, 1038783, 1045346, 1051909, 1058472, 1065035} },
{"Spyglass of the Hidden Fleet", {6030620, 30620, 330620, 230620, 1005216, 1012409, 1019053, 1025657, 1032221, 1038784, 1045347, 1051910, 1058473, 1065036} },
{"Prism of Inner Calm", {6030621, 30621, 330621, 230621, 1005217, 1012410, 1019054, 1025658, 1032222, 1038785, 1045348, 1051911, 1058474, 1065037} },
{"Sextant of Unstable Currents", {6030626, 30626, 330626, 230626, 1005218, 1012411, 1019055, 1025659, 1032223, 1038786, 1045349, 1051912, 1058475, 1065038} },
{"Tsunami Talisman", {6030627, 30627, 330627, 230627, 1005219, 1012412, 1019056, 1025660, 1032224, 1038787, 1045350, 1051913, 1058476, 1065039} },
{"Scarab of Displacement", {6030629, 30629, 330629, 230629, 1005220, 1012413, 1019057, 1025661, 1032225, 1038788, 1045351, 1051914, 1058477, 1065040} },
{"Boots of Elusion", {6030641, 30641, 330641, 230641, 1005221, 1012414, 1019058, 1025662, 1032226, 1038789, 1045352, 1051915, 1058478, 1065041} },
{"Drape of the Righteous", {6030642, 30642, 330642, 230642, 1005222, 1012415, 1019059, 1025663, 1032227, 1038790, 1045353, 1051916, 1058479, 1065042} },
{"Belt of the Tracker", {6030643, 30643, 330643, 230643, 1005223, 1012416, 1019060, 1025664, 1032228, 1038791, 1045354, 1051917, 1058480, 1065043} },
{"Grips of Deftness", {6030644, 30644, 330644, 230644, 1005224, 1012417, 1019061, 1025665, 1032229, 1038792, 1045355, 1051918, 1058481, 1065044} },
{"Fathom-Brooch of the Tidewalker", {6030663, 30663, 330663, 230663, 1005225, 1012418, 1019062, 1025666, 1032230, 1038793, 1045356, 1051919, 1058482, 1065045} },
{"Living Root of the Wildheart", {6030664, 30664, 330664, 230664, 1005226, 1012419, 1019063, 1025667, 1032231, 1038794, 1045357, 1051920, 1058483, 1065046} },
{"Earring of Soulful Meditation", {6030665, 30665, 330665, 230665, 1005227, 1012420, 1019064, 1025668, 1032232, 1038795, 1045358, 1051921, 1058484, 1065047} },
{"Ritssyn's Lost Pendant", {6030666, 30666, 330666, 230666, 1005228, 1012421, 1019065, 1025669, 1032233, 1038796, 1045359, 1051922, 1058485, 1065048} },
{"Ring of Unrelenting Storms", {6030667, 30667, 330667, 230667, 1005230, 1012422, 1019066, 1025670, 1032234, 1038797, 1045360, 1051923, 1058486, 1065049} },
{"Grasp of the Dead", {6030668, 30668, 330668, 230668, 1005232, 1012423, 1019067, 1025671, 1032235, 1038798, 1045361, 1051924, 1058487, 1065050} },
{"Inferno Waist Cord", {6030673, 30673, 330673, 230673, 1005233, 1012424, 1019068, 1025672, 1032236, 1038799, 1045362, 1051925, 1058488, 1065051} },
{"Zierhut's Lost Treads", {6030674, 30674, 330674, 230674, 1005234, 1012425, 1019069, 1025673, 1032237, 1038800, 1045363, 1051926, 1058489, 1065052} },
{"Lurker's Cord", {6030675, 30675, 330675, 230675, 1005237, 1012426, 1019070, 1025674, 1032238, 1038801, 1045364, 1051927, 1058490, 1065053} },
{"Lurker's Grasp", {6030676, 30676, 330676, 230676, 1005238, 1012427, 1019071, 1025675, 1032239, 1038802, 1045365, 1051928, 1058491, 1065054} },
{"Lurker's Belt", {6030677, 30677, 330677, 230677, 1005239, 1012428, 1019072, 1025676, 1032240, 1038803, 1045366, 1051929, 1058492, 1065055} },
{"Lurker's Girdle", {6030678, 30678, 330678, 230678, 1005240, 1012429, 1019073, 1025677, 1032241, 1038804, 1045367, 1051930, 1058493, 1065056} },
{"Glider's Foot-Wraps", {6030680, 30680, 330680, 230680, 1005241, 1012430, 1019074, 1025678, 1032242, 1038805, 1045368, 1051931, 1058494, 1065057} },
{"Glider's Boots", {6030681, 30681, 330681, 230681, 1005242, 1012431, 1019075, 1025679, 1032243, 1038806, 1045369, 1051932, 1058495, 1065058} },
{"Glider's Sabatons", {6030682, 30682, 330682, 230682, 1005243, 1012432, 1019076, 1025680, 1032244, 1038807, 1045370, 1051933, 1058496, 1065059} },
{"Glider's Greaves", {6030683, 30683, 330683, 230683, 1005246, 1012433, 1019077, 1025681, 1032245, 1038808, 1045371, 1051934, 1058497, 1065060} },
{"Ravager's Cuffs", {6030684, 30684, 330684, 230684, 1005249, 1012434, 1019078, 1025682, 1032246, 1038809, 1045372, 1051935, 1058498, 1065061} },
{"Ravager's Wrist-Wraps", {6030685, 30685, 330685, 230685, 1005250, 1012435, 1019079, 1025683, 1032247, 1038810, 1045373, 1051936, 1058499, 1065062} },
{"Ravager's Bands", {6030686, 30686, 330686, 230686, 1005252, 1012436, 1019080, 1025684, 1032248, 1038811, 1045374, 1051937, 1058500, 1065063} },
{"Ravager's Bracers", {6030687, 30687, 330687, 230687, 1005257, 1012437, 1019081, 1025685, 1032249, 1038812, 1045375, 1051938, 1058501, 1065064} },
{"Scourgebane", {6030696, 30696, 283785, 283786, 283787, 283788, 283789, 283790, 283791, 283792, 283793, 283794, 283795, 283796} },
{"Spaulders of Slaughter", {6030705, 30705, 128009, 430705, 1007713, 1014596, 1021260, 1027825, 1034389, 1040952, 1047515, 1054078, 1060641, 1067204} },
{"Nimble-foot Treads", {6030707, 30707, 123075, 430707, 1007714, 1014597, 1021261, 1027826, 1034390, 1040953, 1047516, 1054079, 1060642, 1067205} },
{"Belt of Flowing Thought", {6030708, 30708, 100264, 430708, 1007715, 1014598, 1021262, 1027827, 1034391, 1040954, 1047517, 1054080, 1060643, 1067206} },
{"Pantaloons of Flaming Wrath", {6030709, 30709, 123181, 430709, 1007716, 1014599, 1021263, 1027828, 1034392, 1040955, 1047518, 1054081, 1060644, 1067207} },
{"Blood Guard's Necklace of Ferocity", {6030710, 30710, 100329, 430710, 1007717, 1014600, 1021264, 1027829, 1034393, 1040956, 1047519, 1054082, 1060645, 1067208} },
{"Serpent-Coil Braid", {6030720, 30720, 330720, 230720, 1005259, 1012438, 1019082, 1025686, 1032250, 1038813, 1045376, 1051939, 1058502, 1065065} },
{"Ethereum Nexus-Reaver", {6030722, 30722, 283797, 283798, 283799, 283800, 283801, 283802, 283803, 283804, 283805, 283806, 283807, 283808} },
{"Talon of the Tempest", {6030723, 30723, 283809, 283810, 283811, 283812, 283813, 283814, 283815, 283816, 283817, 283818, 283819, 283820} },
{"Barrel-Blade Longrifle", {6030724, 30724, 283821, 283822, 283823, 283824, 283825, 283826, 283827, 283828, 283829, 283830, 283831, 283832} },
{"Anger-Spark Gloves", {6030725, 30725, 283833, 283834, 283835, 283836, 283837, 283838, 283839, 283840, 283841, 283842, 283843, 283844} },
{"Archaic Charm of Presence", {6030726, 30726, 283845, 283846, 283847, 283848, 283849, 283850, 283851, 283852, 283853, 283854, 283855, 283856} },
{"Gilded Trousers of Benediction", {6030727, 30727, 283857, 283858, 283859, 283860, 283861, 283862, 283863, 283864, 283865, 283866, 283867, 283868} },
{"Fathom-Helm of the Deeps", {6030728, 30728, 283869, 283870, 283871, 283872, 283873, 283874, 283875, 283876, 283877, 283878, 283879, 283880} },
{"Black-Iron Battlecloak", {6030729, 30729, 283881, 283882, 283883, 283884, 283885, 283886, 283887, 283888, 283889, 283890, 283891, 283892} },
{"Terrorweave Tunic", {6030730, 30730, 283893, 283894, 283895, 283896, 283897, 283898, 283899, 283900, 283901, 283902, 283903, 283904} },
{"Faceguard of the Endless Watch", {6030731, 30731, 283905, 283906, 283907, 283908, 283909, 283910, 283911, 283912, 283913, 283914, 283915, 283916} },
{"Exodar Life-Staff", {6030732, 30732, 283917, 283918, 283919, 283920, 283921, 283922, 283923, 283924, 283925, 283926, 283927, 283928} },
{"Hope Ender", {6030733, 30733, 283929, 283930, 283931, 283932, 283933, 283934, 283935, 283936, 283937, 283938, 283939, 283940} },
{"Leggings of the Seventh Circle", {6030734, 30734, 283941, 283942, 283943, 283944, 283945, 283946, 283947, 283948, 283949, 283950, 283951, 283952} },
{"Ancient Spellcloak of the Highborne", {6030735, 30735, 283953, 283954, 283955, 283956, 283957, 283958, 283959, 283960, 283961, 283962, 283963, 283964} },
{"Ring of Flowing Light", {6030736, 30736, 283965, 283966, 283967, 283968, 283969, 283970, 283971, 283972, 283973, 283974, 283975, 283976} },
{"Gold-Leaf Wildboots", {6030737, 30737, 283977, 283978, 283979, 283980, 283981, 283982, 283983, 283984, 283985, 283986, 283987, 283988} },
{"Ring of Reciprocity", {6030738, 30738, 283989, 283990, 283991, 283992, 283993, 283994, 283995, 283996, 283997, 283998, 283999, 284000} },
{"Scaled Greaves of the Marksman", {6030739, 30739, 284001, 284002, 284003, 284004, 284005, 284006, 284007, 284008, 284009, 284010, 284011, 284012} },
{"Ripfiend Shoulderplates", {6030740, 30740, 284013, 284014, 284015, 284016, 284017, 284018, 284019, 284020, 284021, 284022, 284023, 284024} },
{"Topaz-Studded Battlegrips", {6030741, 30741, 284025, 284026, 284027, 284028, 284029, 284030, 284031, 284032, 284033, 284034, 284035, 284036} },
{"Warphorn Spear", {284038, 30753, 284037, 284039, 284040, 284041, 284042, 284043, 284044, 284045, 284046, 284047, 284048, 284049} },
{"Mag'hari Fighting Claw", {284051, 30755, 284050, 284052, 284053, 284054, 284055, 284056, 284057, 284058, 284059, 284060, 284061, 284062} },
{"Infernoweave Leggings", {6030761, 30761, 284063, 284064, 284065, 284066, 284067, 284068, 284069, 284070, 284071, 284072, 284073, 284074} },
{"Infernoweave Robe", {6030762, 30762, 284075, 284076, 284077, 284078, 284079, 284080, 284081, 284082, 284083, 284084, 284085, 284086} },
{"Infernoweave Boots", {6030763, 30763, 284087, 284088, 284089, 284090, 284091, 284092, 284093, 284094, 284095, 284096, 284097, 284098} },
{"Infernoweave Gloves", {6030764, 30764, 284099, 284100, 284101, 284102, 284103, 284104, 284105, 284106, 284107, 284108, 284109, 284110} },
{"Inferno Tempered Leggings", {6030766, 30766, 284111, 284112, 284113, 284114, 284115, 284116, 284117, 284118, 284119, 284120, 284121, 284122} },
{"Inferno Tempered Gauntlets", {6030767, 30767, 284123, 284124, 284125, 284126, 284127, 284128, 284129, 284130, 284131, 284132, 284133, 284134} },
{"Inferno Tempered Boots", {6030768, 30768, 284135, 284136, 284137, 284138, 284139, 284140, 284141, 284142, 284143, 284144, 284145, 284146} },
{"Inferno Tempered Chestguard", {6030769, 30769, 284147, 284148, 284149, 284150, 284151, 284152, 284153, 284154, 284155, 284156, 284157, 284158} },
{"Inferno Forged Boots", {6030770, 30770, 284159, 284160, 284161, 284162, 284163, 284164, 284165, 284166, 284167, 284168, 284169, 284170} },
{"Inferno Forged Leggings", {6030772, 30772, 284171, 284172, 284173, 284174, 284175, 284176, 284177, 284178, 284179, 284180, 284181, 284182} },
{"Inferno Forged Hauberk", {6030773, 30773, 284183, 284184, 284185, 284186, 284187, 284188, 284189, 284190, 284191, 284192, 284193, 284194} },
{"Inferno Forged Gloves", {6030774, 30774, 284195, 284196, 284197, 284198, 284199, 284200, 284201, 284202, 284203, 284204, 284205, 284206} },
{"Inferno Hardened Chestguard", {6030776, 30776, 284207, 284208, 284209, 284210, 284211, 284212, 284213, 284214, 284215, 284216, 284217, 284218} },
{"Inferno Hardened Leggings", {6030778, 30778, 284219, 284220, 284221, 284222, 284223, 284224, 284225, 284226, 284227, 284228, 284229, 284230} },
{"Inferno Hardened Boots", {6030779, 30779, 284231, 284232, 284233, 284234, 284235, 284236, 284237, 284238, 284239, 284240, 284241, 284242} },
{"Inferno Hardened Gloves", {6030780, 30780, 284243, 284244, 284245, 284246, 284247, 284248, 284249, 284250, 284251, 284252, 284253, 284254} },
{"Illidari-Bane Mageblade", {6030787, 30787, 284255, 284256, 284257, 284258, 284259, 284260, 284261, 284262, 284263, 284264, 284265, 284266} },
{"Illidari-Bane Broadsword", {6030788, 30788, 284267, 284268, 284269, 284270, 284271, 284272, 284273, 284274, 284275, 284276, 284277, 284278} },
{"Illidari-Bane Claymore", {6030789, 30789, 284279, 284280, 284281, 284282, 284283, 284284, 284285, 284286, 284287, 284288, 284289, 284290} },
{"Trident of the Outcast Tribe", {6030830, 30830, 284316, 284317, 284318, 284319, 284320, 284321, 284322, 284323, 284324, 284325, 284326, 284327} },
{"Cloak of Arcane Evasion", {6030831, 30831, 284328, 284329, 284330, 284331, 284332, 284333, 284334, 284335, 284336, 284337, 284338, 284339} },
{"Gavel of Unearthed Secrets", {6030832, 30832, 284340, 284341, 284342, 284343, 284344, 284345, 284346, 284347, 284348, 284349, 284350, 284351} },
{"Shapeshifter's Signet", {6030834, 30834, 284352, 284353, 284354, 284355, 284356, 284357, 284358, 284359, 284360, 284361, 284362, 284363} },
{"Salvager's Hauberk", {6030835, 30835, 284364, 284365, 284366, 284367, 284368, 284369, 284370, 284371, 284372, 284373, 284374, 284375} },
{"Leggings of the Skettis Exile", {6030836, 30836, 284376, 284377, 284378, 284379, 284380, 284381, 284382, 284383, 284384, 284385, 284386, 284387} },
{"Flameheart Bracers", {6030837, 30837, 284388, 284389, 284390, 284391, 284392, 284393, 284394, 284395, 284396, 284397, 284398, 284399} },
{"Flameheart Gloves", {6030838, 30838, 284400, 284401, 284402, 284403, 284404, 284405, 284406, 284407, 284408, 284409, 284410, 284411} },
{"Flameheart Vest", {6030839, 30839, 284412, 284413, 284414, 284415, 284416, 284417, 284418, 284419, 284420, 284421, 284422, 284423} },
{"Lower City Prayerbook", {6030841, 30841, 284424, 284425, 284426, 284427, 284428, 284429, 284430, 284431, 284432, 284433, 284434, 284435} },
{"X-52 Rocket Helmet", {284437, 30847, 284436, 284438, 284439, 284440, 284441, 284442, 284443, 284444, 284445, 284446, 284447, 284448} },
{"Shatterstone Pick", {284450, 30855, 284449, 284451, 284452, 284453, 284454, 284455, 284456, 284457, 284458, 284459, 284460, 284461} },
{"Underworld Helm", {284463, 30856, 284462, 284464, 284465, 284466, 284467, 284468, 284469, 284470, 284471, 284472, 284473, 284474} },
{"Deep Core Lantern", {284476, 30857, 284475, 284477, 284478, 284479, 284480, 284481, 284482, 284483, 284484, 284485, 284486, 284487} },
{"Wand of the Seer", {6030859, 30859, 284488, 284489, 284490, 284491, 284492, 284493, 284494, 284495, 284496, 284497, 284498, 284499} },
{"Kaylaan's Signet", {6030860, 30860, 284500, 284501, 284502, 284503, 284504, 284505, 284506, 284507, 284508, 284509, 284510, 284511} },
{"Furious Shackles", {6030861, 30861, 330861, 230861, 1005260, 1012439, 1019083, 1025687, 1032251, 1038814, 1045377, 1051940, 1058503, 1065066} },
{"Blessed Adamantite Bracers", {6030862, 30862, 330862, 230862, 1005261, 1012440, 1019084, 1025688, 1032252, 1038815, 1045378, 1051941, 1058504, 1065067} },
{"Deadly Cuffs", {6030863, 30863, 330863, 230863, 1005262, 1012441, 1019085, 1025689, 1032253, 1038816, 1045379, 1051942, 1058505, 1065068} },
{"Bracers of the Pathfinder", {6030864, 30864, 330864, 230864, 1005263, 1012442, 1019086, 1025690, 1032254, 1038817, 1045380, 1051943, 1058506, 1065069} },
{"Tracker's Blade", {6030865, 30865, 330865, 230865, 1005264, 1012443, 1019087, 1025691, 1032255, 1038818, 1045381, 1051944, 1058507, 1065070} },
{"Blood-stained Pauldrons", {6030866, 30866, 330866, 230866, 1005265, 1012444, 1019088, 1025692, 1032256, 1038819, 1045382, 1051945, 1058508, 1065071} },
{"Rejuvenating Bracers", {6030868, 30868, 330868, 230868, 1005266, 1012445, 1019089, 1025693, 1032257, 1038820, 1045383, 1051946, 1058509, 1065072} },
{"Howling Wind Bracers", {6030869, 30869, 330869, 230869, 1005268, 1012446, 1019090, 1025694, 1032258, 1038821, 1045384, 1051947, 1058510, 1065073} },
{"Cuffs of Devastation", {6030870, 30870, 330870, 230870, 1005269, 1012447, 1019091, 1025695, 1032259, 1038822, 1045385, 1051948, 1058511, 1065074} },
{"Bracers of Martyrdom", {6030871, 30871, 330871, 230871, 1005270, 1012448, 1019092, 1025696, 1032260, 1038823, 1045386, 1051949, 1058512, 1065075} },
{"Chronicle of Dark Secrets", {6030872, 30872, 330872, 230872, 1005272, 1012449, 1019093, 1025697, 1032261, 1038824, 1045387, 1051950, 1058513, 1065076} },
{"Stillwater Boots", {6030873, 30873, 330873, 230873, 1005273, 1012450, 1019094, 1025698, 1032262, 1038825, 1045388, 1051951, 1058514, 1065077} },
{"The Unbreakable Will", {6030874, 30874, 330874, 230874, 1005274, 1012451, 1019095, 1025699, 1032263, 1038826, 1045389, 1051952, 1058515, 1065078} },
{"Glimmering Steel Mantle", {6030878, 30878, 330878, 230878, 1005275, 1012452, 1019096, 1025700, 1032264, 1038827, 1045390, 1051953, 1058516, 1065079} },
{"Don Alejandro's Money Belt", {6030879, 30879, 330879, 230879, 1005276, 1012453, 1019097, 1025701, 1032265, 1038828, 1045391, 1051954, 1058517, 1065080} },
{"Quickstrider Moccasins", {6030880, 30880, 330880, 230880, 1005277, 1012454, 1019098, 1025702, 1032266, 1038829, 1045392, 1051955, 1058518, 1065081} },
{"Blade of Infamy", {6030881, 30881, 330881, 230881, 1005278, 1012456, 1019099, 1025703, 1032267, 1038830, 1045393, 1051956, 1058519, 1065082} },
{"Bastion of Light", {6030882, 30882, 330882, 230882, 1005279, 1012457, 1019100, 1025704, 1032268, 1038831, 1045394, 1051957, 1058520, 1065083} },
{"Pillar of Ferocity", {6030883, 30883, 330883, 230883, 1005280, 1012458, 1019101, 1025705, 1032269, 1038832, 1045395, 1051958, 1058521, 1065084} },
{"Hatefury Mantle", {6030884, 30884, 330884, 230884, 1005281, 1012459, 1019102, 1025706, 1032270, 1038833, 1045396, 1051959, 1058522, 1065085} },
{"Archbishop's Slippers", {6030885, 30885, 330885, 230885, 1005282, 1012460, 1019103, 1025707, 1032271, 1038834, 1045397, 1051960, 1058523, 1065086} },
{"Enchanted Leather Sandals", {6030886, 30886, 330886, 230886, 1005283, 1012461, 1019104, 1025708, 1032272, 1038835, 1045398, 1051961, 1058524, 1065087} },
{"Golden Links of Restoration", {6030887, 30887, 330887, 230887, 1005284, 1012462, 1019105, 1025709, 1032273, 1038836, 1045399, 1051962, 1058525, 1065088} },
{"Anetheron's Noose", {6030888, 30888, 330888, 230888, 1005285, 1012463, 1019106, 1025710, 1032274, 1038837, 1045400, 1051963, 1058526, 1065089} },
{"Kaz'rogal's Hardened Heart", {6030889, 30889, 330889, 230889, 1005286, 1012464, 1019107, 1025711, 1032275, 1038838, 1045401, 1051964, 1058527, 1065090} },
{"Black Featherlight Boots", {6030891, 30891, 330891, 230891, 1005287, 1012466, 1019108, 1025712, 1032276, 1038839, 1045402, 1051965, 1058528, 1065091} },
{"Beast-tamer's Shoulders", {6030892, 30892, 330892, 230892, 1005288, 1012467, 1019109, 1025713, 1032277, 1038840, 1045403, 1051966, 1058529, 1065092} },
{"Sun-touched Chain Leggings", {6030893, 30893, 330893, 230893, 1005289, 1012468, 1019110, 1025714, 1032278, 1038841, 1045404, 1051967, 1058530, 1065093} },
{"Blue Suede Shoes", {6030894, 30894, 330894, 230894, 1005290, 1012469, 1019111, 1025715, 1032279, 1038842, 1045405, 1051968, 1058531, 1065094} },
{"Angelista's Sash", {6030895, 30895, 330895, 230895, 1005291, 1012470, 1019112, 1025716, 1032280, 1038843, 1045406, 1051969, 1058532, 1065095} },
{"Glory of the Defender", {6030896, 30896, 330896, 230896, 1005292, 1012471, 1019113, 1025717, 1032281, 1038844, 1045407, 1051970, 1058533, 1065096} },
{"Girdle of Hope", {6030897, 30897, 330897, 230897, 1005293, 1012472, 1019114, 1025718, 1032282, 1038845, 1045408, 1051971, 1058534, 1065097} },
{"Shady Dealer's Pantaloons", {6030898, 30898, 330898, 230898, 1005294, 1012473, 1019115, 1025719, 1032283, 1038846, 1045409, 1051972, 1058535, 1065098} },
{"Don Rodrigo's Poncho", {6030899, 30899, 330899, 230899, 1005295, 1012474, 1019116, 1025720, 1032284, 1038847, 1045410, 1051973, 1058536, 1065099} },
{"Bow-stitched Leggings", {6030900, 30900, 330900, 230900, 1005297, 1012475, 1019117, 1025721, 1032285, 1038848, 1045411, 1051974, 1058537, 1065100} },
{"Boundless Agony", {6030901, 30901, 330901, 230901, 1005298, 1012476, 1019118, 1025722, 1032286, 1038849, 1045412, 1051975, 1058538, 1065101} },
{"Cataclysm's Edge", {6030902, 30902, 330902, 230902, 1005299, 1012477, 1019119, 1025723, 1032287, 1038850, 1045413, 1051976, 1058539, 1065102} },
{"Legguards of Endless Rage", {6030903, 30903, 330903, 230903, 1005302, 1012478, 1019120, 1025724, 1032288, 1038851, 1045414, 1051977, 1058540, 1065103} },
{"Savior's Grasp", {6030904, 30904, 330904, 230904, 1005303, 1012479, 1019121, 1025725, 1032289, 1038852, 1045415, 1051978, 1058541, 1065104} },
{"Midnight Chestguard", {6030905, 30905, 330905, 230905, 1005306, 1012480, 1019122, 1025726, 1032290, 1038853, 1045416, 1051979, 1058542, 1065105} },
{"Bristleblitz Striker", {6030906, 30906, 330906, 230906, 1005307, 1012481, 1019123, 1025727, 1032291, 1038854, 1045417, 1051980, 1058543, 1065106} },
{"Mail of Fevered Pursuit", {6030907, 30907, 330907, 230907, 1005308, 1012482, 1019124, 1025728, 1032292, 1038855, 1045418, 1051981, 1058544, 1065107} },
{"Apostle of Argus", {6030908, 30908, 330908, 230908, 1005311, 1012483, 1019125, 1025729, 1032293, 1038856, 1045419, 1051982, 1058545, 1065108} },
{"Antonidas's Aegis of Rapt Concentration", {6030909, 30909, 330909, 230909, 1005314, 1012484, 1019126, 1025730, 1032294, 1038857, 1045420, 1051983, 1058546, 1065109} },
{"Tempest of Chaos", {6030910, 30910, 330910, 230910, 1005315, 1012485, 1019127, 1025731, 1032295, 1038858, 1045421, 1051984, 1058547, 1065110} },
{"Scepter of Purification", {6030911, 30911, 330911, 230911, 1005316, 1012486, 1019128, 1025732, 1032296, 1038859, 1045422, 1051985, 1058548, 1065111} },
{"Leggings of Eternity", {6030912, 30912, 330912, 230912, 1005321, 1012487, 1019129, 1025733, 1032297, 1038860, 1045423, 1051986, 1058549, 1065112} },
{"Robes of Rhonin", {6030913, 30913, 330913, 230913, 1005322, 1012488, 1019136, 1025734, 1032298, 1038861, 1045424, 1051987, 1058550, 1065113} },
{"Belt of the Crescent Moon", {6030914, 30914, 330914, 230914, 1005323, 1012489, 1019137, 1025735, 1032299, 1038862, 1045425, 1051988, 1058551, 1065114} },
{"Belt of Seething Fury", {6030915, 30915, 330915, 230915, 1005324, 1012490, 1019138, 1025736, 1032300, 1038863, 1045426, 1051989, 1058552, 1065115} },
{"Leggings of Channeled Elements", {6030916, 30916, 330916, 230916, 1005327, 1012491, 1019139, 1025737, 1032301, 1038864, 1045427, 1051990, 1058553, 1065116} },
{"Razorfury Mantle", {6030917, 30917, 330917, 230917, 1005328, 1012492, 1019140, 1025738, 1032302, 1038865, 1045428, 1051991, 1058554, 1065117} },
{"Hammer of Atonement", {6030918, 30918, 330918, 230918, 1005331, 1012493, 1019141, 1025739, 1032303, 1038866, 1045429, 1051992, 1058555, 1065118} },
{"Valestalker Girdle", {6030919, 30919, 330919, 230919, 1005332, 1012494, 1019142, 1025740, 1032304, 1038867, 1045430, 1051993, 1058556, 1065119} },
{"Ata'mal Crown", {284513, 30922, 284512, 284514, 284515, 284516, 284517, 284518, 284519, 284520, 284521, 284522, 284523, 284524} },
{"Grom'tor's Bloodied Bandage", {284526, 30923, 284525, 284527, 284528, 284529, 284530, 284531, 284532, 284533, 284534, 284535, 284536, 284537} },
{"Gloves of the High Magus", {6030924, 30924, 284538, 284539, 284540, 284541, 284542, 284543, 284544, 284545, 284546, 284547, 284548, 284549} },
{"Spaulders of the Torn-heart", {6030925, 30925, 284550, 284551, 284552, 284553, 284554, 284555, 284556, 284557, 284558, 284559, 284560, 284561} },
{"Ashwalker's Footwraps", {284563, 30926, 284562, 284564, 284565, 284566, 284567, 284568, 284569, 284570, 284571, 284572, 284573, 284574} },
{"Earthmender's Bracer of Shattering", {284576, 30927, 284575, 284577, 284578, 284579, 284580, 284581, 284582, 284583, 284584, 284585, 284586, 284587} },
{"Sketh'lon Survivor's Tunic", {284589, 30928, 284588, 284590, 284591, 284592, 284593, 284594, 284595, 284596, 284597, 284598, 284599, 284600} },
{"Soothsayer's Kilt", {284602, 30929, 284601, 284603, 284604, 284605, 284606, 284607, 284608, 284609, 284610, 284611, 284612, 284613} },
{"Grips of the Void", {284615, 30930, 284614, 284616, 284617, 284618, 284619, 284620, 284621, 284622, 284623, 284624, 284625, 284626} },
{"Ghostly Headwrap", {284628, 30931, 284627, 284629, 284630, 284631, 284632, 284633, 284634, 284635, 284636, 284637, 284638, 284639} },
{"Akama's Sash", {6030932, 30932, 284640, 284641, 284642, 284643, 284644, 284645, 284646, 284647, 284648, 284649, 284650, 284651} },
{"Hauberk of Karabor", {6030933, 30933, 284652, 284653, 284654, 284655, 284656, 284657, 284658, 284659, 284660, 284661, 284662, 284663} },
{"Eva's Strap", {284665, 30936, 284664, 284666, 284667, 284668, 284669, 284670, 284671, 284672, 284673, 284674, 284675, 284676} },
{"Earthmender's Fists of Undoing", {284678, 30937, 284677, 284679, 284680, 284681, 284682, 284683, 284684, 284685, 284686, 284687, 284688, 284689} },
{"Azurestrike Shoulders", {284691, 30938, 284690, 284692, 284693, 284694, 284695, 284696, 284697, 284698, 284699, 284700, 284701, 284702} },
{"Felboar Hide Shoes", {6030939, 30939, 284703, 284704, 284705, 284706, 284707, 284708, 284709, 284710, 284711, 284712, 284713, 284714} },
{"Aged Leather Bindings", {284716, 30940, 284715, 284717, 284718, 284719, 284720, 284721, 284722, 284723, 284724, 284725, 284726, 284727} },
{"Ash Tempered Legguards", {284729, 30941, 284728, 284730, 284731, 284732, 284733, 284734, 284735, 284736, 284737, 284738, 284739, 284740} },
{"Manimal's Cinch", {284742, 30942, 284741, 284743, 284744, 284745, 284746, 284747, 284748, 284749, 284750, 284751, 284752, 284753} },
{"Verdant Gloves", {6030943, 30943, 284754, 284755, 284756, 284757, 284758, 284759, 284760, 284761, 284762, 284763, 284764, 284765} },
{"Umberhowl's Collar", {6030944, 30944, 284766, 284767, 284768, 284769, 284770, 284771, 284772, 284773, 284774, 284775, 284776, 284777} },
{"Grom'tor's Friend's Cousin's Tunic", {284779, 30945, 284778, 284780, 284781, 284782, 284783, 284784, 284785, 284786, 284787, 284788, 284789, 284790} },
{"Mooncrest Headdress", {284792, 30946, 284791, 284793, 284794, 284795, 284796, 284797, 284798, 284799, 284800, 284801, 284802, 284803} },
{"Crimson Mail Hauberk", {284805, 30947, 284804, 284806, 284807, 284808, 284809, 284810, 284811, 284812, 284813, 284814, 284815, 284816} },
{"Sunfury Legguards", {6030948, 30948, 284817, 284818, 284819, 284820, 284821, 284822, 284823, 284824, 284825, 284826, 284827, 284828} },
{"Darkhunter's Cinch", {284830, 30950, 284829, 284831, 284832, 284833, 284834, 284835, 284836, 284837, 284838, 284839, 284840, 284841} },
{"Ar'tor's Mainstay", {6030951, 30951, 284842, 284843, 284844, 284845, 284846, 284847, 284848, 284849, 284850, 284851, 284852, 284853} },
{"Earthmender's Crimson Spaulders", {284855, 30952, 284854, 284856, 284857, 284858, 284859, 284860, 284861, 284862, 284863, 284864, 284865, 284866} },
{"Boots of the Skybreaker", {284868, 30953, 284867, 284869, 284870, 284871, 284872, 284873, 284874, 284875, 284876, 284877, 284878, 284879} },
{"Crown of Cinders", {284881, 30955, 284880, 284882, 284883, 284884, 284885, 284886, 284887, 284888, 284889, 284890, 284891, 284892} },
{"Oronok's Old Bracers", {284894, 30956, 284893, 284895, 284896, 284897, 284898, 284899, 284900, 284901, 284902, 284903, 284904, 284905} },
{"Oronok's Old Leggings", {284907, 30957, 284906, 284908, 284909, 284910, 284911, 284912, 284913, 284914, 284915, 284916, 284917, 284918} },
{"Blackened Chain Greaves", {284920, 30958, 284919, 284921, 284922, 284923, 284924, 284925, 284926, 284927, 284928, 284929, 284930, 284931} },
{"Torn-heart Family Tunic", {284933, 30959, 284932, 284934, 284935, 284936, 284937, 284938, 284939, 284940, 284941, 284942, 284943, 284944} },
{"Runed Sketh'lon Legplates", {284946, 30960, 284945, 284947, 284948, 284949, 284950, 284951, 284952, 284953, 284954, 284955, 284956, 284957} },
{"Ash-Covered Helm", {284959, 30961, 284958, 284960, 284961, 284962, 284963, 284964, 284965, 284966, 284967, 284968, 284969, 284970} },
{"Borak's Belt of Bravery", {6030962, 30962, 284971, 284972, 284973, 284974, 284975, 284976, 284977, 284978, 284979, 284980, 284981, 284982} },
{"Skybreaker's Pauldrons", {284984, 30964, 284983, 284985, 284986, 284987, 284988, 284989, 284990, 284991, 284992, 284993, 284994, 284995} },
{"Singed Vambraces", {284997, 30966, 284996, 284998, 284999, 285000, 285001, 285002, 285003, 285004, 285005, 285006, 285007, 285008} },
{"The Hands of Fate", {6030967, 30967, 285009, 285010, 285011, 285012, 285013, 285014, 285015, 285016, 285017, 285018, 285019, 285020} },
{"Earthmender's Plated Boots", {285022, 30968, 285021, 285023, 285024, 285025, 285026, 285027, 285028, 285029, 285030, 285031, 285032, 285033} },
{"Onslaught Gauntlets", {6030969, 30969, 123144, 230969, 1005333, 1012495, 1019143, 1025741, 1032305, 1038868, 1045431, 1051994, 1058557, 1065120} },
{"Onslaught Handguards", {6030970, 30970, 123147, 230970, 1005335, 1012496, 1019144, 1025742, 1032306, 1038869, 1045432, 1051995, 1058558, 1065121} },
{"Torn-heart Cloak", {285035, 30971, 285034, 285036, 285037, 285038, 285039, 285040, 285041, 285042, 285043, 285044, 285045, 285046} },
{"Onslaught Battle-Helm", {6030972, 30972, 123138, 230972, 1005338, 1012497, 1019145, 1025743, 1032307, 1038870, 1045433, 1051996, 1058559, 1065122} },
{"Band of Anguish", {6030973, 30973, 285047, 285048, 285049, 285050, 285051, 285052, 285053, 285054, 285055, 285056, 285057, 285058} },
{"Onslaught Greathelm", {6030974, 30974, 123145, 230974, 1005339, 1012498, 1019146, 1025744, 1032308, 1038871, 1045434, 1051997, 1058560, 1065123} },
{"Onslaught Breastplate", {6030975, 30975, 123142, 230975, 1005345, 1012499, 1019147, 1025745, 1032309, 1038872, 1045435, 1051998, 1058561, 1065124} },
{"Onslaught Chestguard", {6030976, 30976, 123143, 230976, 1005346, 1012500, 1019148, 1025746, 1032310, 1038873, 1045436, 1051999, 1058562, 1065125} },
{"Onslaught Greaves", {6030977, 30977, 123146, 230977, 1005347, 1012501, 1019149, 1025747, 1032311, 1038874, 1045437, 1052000, 1058563, 1065126} },
{"Onslaught Legguards", {6030978, 30978, 123148, 230978, 1005349, 1012502, 1019150, 1025748, 1032312, 1038875, 1045438, 1052001, 1058564, 1065127} },
{"Onslaught Shoulderblades", {6030979, 30979, 123159, 230979, 1005351, 1012503, 1019151, 1025749, 1032313, 1038876, 1045439, 1052002, 1058565, 1065128} },
{"Onslaught Shoulderguards", {6030980, 30980, 123160, 230980, 1005352, 1012504, 1019152, 1025750, 1032314, 1038877, 1045440, 1052003, 1058566, 1065129} },
{"Grom'tor's Pendant of Conquest", {285060, 30981, 285059, 285061, 285062, 285063, 285064, 285065, 285066, 285067, 285068, 285069, 285070, 285071} },
{"Lightbringer Gauntlets", {6030982, 30982, 121526, 230982, 1005356, 1012505, 1019153, 1025751, 1032315, 1038878, 1045441, 1052004, 1058567, 1065130} },
{"Lightbringer Gloves", {6030983, 30983, 121571, 230983, 1005359, 1012507, 1019154, 1025752, 1032316, 1038879, 1045442, 1052005, 1058568, 1065131} },
{"Spellbreaker's Buckler", {6030984, 30984, 285072, 285073, 285074, 285075, 285076, 285077, 285078, 285079, 285080, 285081, 285082, 285083} },
{"Lightbringer Handguards", {6030985, 30985, 121825, 230985, 1005361, 1012508, 1019155, 1025753, 1032317, 1038880, 1045443, 1052006, 1058569, 1065132} },
{"Bloodforged Guard", {285085, 30986, 285084, 285086, 285087, 285088, 285089, 285090, 285091, 285092, 285093, 285094, 285095, 285096} },
{"Lightbringer Faceguard", {6030987, 30987, 121525, 230987, 1005362, 1012509, 1019156, 1025754, 1032318, 1038881, 1045444, 1052007, 1058570, 1065133} },
{"Lightbringer Greathelm", {6030988, 30988, 121573, 230988, 1005363, 1012510, 1019157, 1025755, 1032319, 1038882, 1045445, 1052008, 1058571, 1065134} },
{"Lightbringer War-Helm", {6030989, 30989, 122140, 230989, 1005365, 1012511, 1019158, 1025756, 1032320, 1038883, 1045446, 1052009, 1058572, 1065135} },
{"Lightbringer Breastplate", {6030990, 30990, 121514, 230990, 1005366, 1012513, 1019159, 1025757, 1032321, 1038884, 1045447, 1052010, 1058573, 1065136} },
{"Lightbringer Chestguard", {6030991, 30991, 121523, 230991, 1005369, 1012514, 1019160, 1025758, 1032322, 1038885, 1045448, 1052011, 1058574, 1065137} },
{"Lightbringer Chestpiece", {6030992, 30992, 121524, 230992, 1005370, 1012515, 1019161, 1025759, 1032323, 1038886, 1045449, 1052012, 1058575, 1065138} },
{"Lightbringer Greaves", {6030993, 30993, 121824, 230993, 1005371, 1012516, 1019162, 1025760, 1032324, 1038887, 1045450, 1052013, 1058576, 1065139} },
{"Lightbringer Leggings", {6030994, 30994, 121826, 230994, 1005372, 1012517, 1019163, 1025761, 1032325, 1038888, 1045451, 1052014, 1058577, 1065140} },
{"Lightbringer Legguards", {6030995, 30995, 121827, 230995, 1005373, 1012518, 1019164, 1025762, 1032326, 1038889, 1045452, 1052015, 1058578, 1065141} },
{"Lightbringer Pauldrons", {6030996, 30996, 121828, 230996, 1005374, 1012519, 1019165, 1025763, 1032327, 1038890, 1045453, 1052016, 1058579, 1065142} },
{"Lightbringer Shoulderbraces", {6030997, 30997, 121829, 230997, 1005375, 1012520, 1019166, 1025764, 1032328, 1038891, 1045454, 1052017, 1058580, 1065143} },
{"Lightbringer Shoulderguards", {6030998, 30998, 121833, 230998, 1005376, 1012521, 1019167, 1025765, 1032329, 1038892, 1045455, 1052018, 1058581, 1065144} },
{"Ashtongue Blade", {6030999, 30999, 285097, 285098, 285099, 285100, 285101, 285102, 285103, 285104, 285105, 285106, 285107, 285108} },
{"Bloodwarder's Rifle", {6031000, 31000, 285109, 285110, 285111, 285112, 285113, 285114, 285115, 285116, 285117, 285118, 285119, 285120} },
{"Gronnstalker's Gloves", {6031001, 31001, 120315, 231001, 1005377, 1012522, 1019168, 1025766, 1032330, 1038893, 1045456, 1052019, 1058582, 1065145} },
{"Summoner's Blade", {6031002, 31002, 285121, 285122, 285123, 285124, 285125, 285126, 285127, 285128, 285129, 285130, 285131, 285132} },
{"Gronnstalker's Helmet", {6031003, 31003, 120316, 231003, 1005378, 1012523, 1019169, 1025767, 1032331, 1038894, 1045457, 1052020, 1058583, 1065146} },
{"Gronnstalker's Chestguard", {6031004, 31004, 120310, 231004, 1005380, 1012524, 1019170, 1025768, 1032332, 1038895, 1045458, 1052021, 1058584, 1065147} },
{"Gronnstalker's Leggings", {6031005, 31005, 120335, 231005, 1005381, 1012525, 1019171, 1025769, 1032333, 1038896, 1045459, 1052022, 1058585, 1065148} },
{"Gronnstalker's Spaulders", {6031006, 31006, 120336, 231006, 1005382, 1012526, 1019172, 1025770, 1032334, 1038897, 1045460, 1052023, 1058586, 1065149} },
{"Skyshatter Gloves", {6031007, 31007, 124459, 231007, 1005383, 1012527, 1019173, 1025771, 1032335, 1038898, 1045461, 1052024, 1058587, 1065150} },
{"Skyshatter Gauntlets", {6031008, 31008, 124457, 231008, 1005384, 1012528, 1019174, 1025772, 1032336, 1038899, 1045462, 1052025, 1058588, 1065151} },
{"Wildcaller", {6031009, 31009, 285133, 285134, 285135, 285136, 285137, 285138, 285139, 285140, 285141, 285142, 285143, 285144} },
{"Slayer's Axe", {6031010, 31010, 285145, 285146, 285147, 285148, 285149, 285150, 285151, 285152, 285153, 285154, 285155, 285156} },
{"Skyshatter Grips", {6031011, 31011, 124466, 231011, 1005385, 1012529, 1019175, 1025773, 1032337, 1038900, 1045463, 1052026, 1058589, 1065152} },
{"Skyshatter Helmet", {6031012, 31012, 124474, 231012, 1005386, 1012530, 1019176, 1025774, 1032338, 1038901, 1045464, 1052027, 1058590, 1065153} },
{"Ceremonial Kris", {6031013, 31013, 285157, 285158, 285159, 285160, 285161, 285162, 285163, 285164, 285165, 285166, 285167, 285168} },
{"Skyshatter Headguard", {6031014, 31014, 124470, 231014, 1005387, 1012531, 1019177, 1025775, 1032339, 1038902, 1045465, 1052028, 1058591, 1065154} },
{"Skyshatter Cover", {6031015, 31015, 124456, 231015, 1005388, 1012532, 1019178, 1025776, 1032340, 1038903, 1045466, 1052029, 1058592, 1065155} },
{"Skyshatter Chestguard", {6031016, 31016, 124415, 231016, 1005389, 1012533, 1019179, 1025777, 1032341, 1038904, 1045467, 1052030, 1058593, 1065156} },
{"Skyshatter Breastplate", {6031017, 31017, 124414, 231017, 1005390, 1012534, 1019180, 1025778, 1032342, 1038905, 1045468, 1052031, 1058594, 1065157} },
{"Skyshatter Tunic", {6031018, 31018, 124526, 231018, 1005391, 1012535, 1019181, 1025779, 1032343, 1038906, 1045469, 1052032, 1058595, 1065158} },
{"Skyshatter Leggings", {6031019, 31019, 124478, 231019, 1005392, 1012536, 1019182, 1025780, 1032344, 1038907, 1045470, 1052033, 1058596, 1065159} },
{"Skyshatter Legguards", {6031020, 31020, 124482, 231020, 1005397, 1012537, 1019183, 1025781, 1032345, 1038908, 1045471, 1052034, 1058597, 1065160} },
{"Skyshatter Pants", {6031021, 31021, 124495, 231021, 1005398, 1012538, 1019184, 1025782, 1032346, 1038909, 1045472, 1052035, 1058598, 1065161} },
{"Skyshatter Shoulderpads", {6031022, 31022, 124510, 231022, 1005402, 1012539, 1019185, 1025783, 1032347, 1038910, 1045473, 1052036, 1058599, 1065162} },
{"Skyshatter Mantle", {6031023, 31023, 124486, 231023, 1005407, 1012540, 1019186, 1025784, 1032348, 1038911, 1045474, 1052037, 1058600, 1065163} },
{"Skyshatter Pauldrons", {6031024, 31024, 124507, 231024, 1005408, 1012541, 1019187, 1025785, 1032349, 1038912, 1045475, 1052038, 1058601, 1065164} },
{"Idol of the Avenger", {6031025, 31025, 285169, 285170, 285171, 285172, 285173, 285174, 285175, 285176, 285177, 285178, 285179, 285180} },
{"Slayer's Handguards", {6031026, 31026, 127062, 231026, 1005411, 1012542, 1019188, 1025786, 1032350, 1038913, 1045476, 1052039, 1058602, 1065165} },
{"Slayer's Helm", {6031027, 31027, 127067, 231027, 1005412, 1012543, 1019189, 1025787, 1032351, 1038914, 1045477, 1052040, 1058603, 1065166} },
{"Slayer's Chestguard", {6031028, 31028, 127061, 231028, 1005415, 1012544, 1019190, 1025788, 1032352, 1038915, 1045478, 1052041, 1058604, 1065167} },
{"Slayer's Legguards", {6031029, 31029, 127068, 231029, 1005417, 1012545, 1019191, 1025789, 1032353, 1038916, 1045479, 1052042, 1058605, 1065168} },
{"Slayer's Shoulderpads", {6031030, 31030, 127069, 231030, 1005418, 1012546, 1019192, 1025790, 1032354, 1038917, 1045480, 1052043, 1058606, 1065169} },
{"Stormfury Totem", {6031031, 31031, 285181, 285182, 285183, 285184, 285185, 285186, 285187, 285188, 285189, 285190, 285191, 285192} },
{"Thunderheart Gloves", {6031032, 31032, 130402, 231032, 1005419, 1012547, 1019193, 1025791, 1032355, 1038918, 1045481, 1052044, 1058607, 1065170} },
{"Libram of Righteous Power", {6031033, 31033, 285193, 285194, 285195, 285196, 285197, 285198, 285199, 285200, 285201, 285202, 285203, 285204} },
{"Thunderheart Gauntlets", {6031034, 31034, 130401, 231034, 1005420, 1012548, 1019194, 1025792, 1032356, 1038919, 1045482, 1052045, 1058608, 1065171} },
{"Thunderheart Handguards", {6031035, 31035, 130403, 231035, 1005421, 1012549, 1019195, 1025793, 1032357, 1038920, 1045483, 1052046, 1058609, 1065172} },
{"Oronok's Ancient Scepter", {6031036, 31036, 285205, 285206, 285207, 285208, 285209, 285210, 285211, 285212, 285213, 285214, 285215, 285216} },
{"Thunderheart Helmet", {6031037, 31037, 130405, 231037, 1005422, 1012550, 1019196, 1025794, 1032358, 1038921, 1045484, 1052047, 1058610, 1065173} },
{"Staff of the Redeemer", {6031038, 31038, 285217, 285218, 285219, 285220, 285221, 285222, 285223, 285224, 285225, 285226, 285227, 285228} },
{"Thunderheart Cover", {6031039, 31039, 130399, 231039, 1005428, 1012551, 1019197, 1025795, 1032359, 1038922, 1045485, 1052048, 1058611, 1065174} },
{"Thunderheart Headguard", {6031040, 31040, 130404, 231040, 1005429, 1012552, 1019198, 1025796, 1032360, 1038923, 1045486, 1052049, 1058612, 1065175} },
{"Thunderheart Tunic", {6031041, 31041, 130414, 231041, 1005430, 1012553, 1019199, 1025797, 1032361, 1038924, 1045487, 1052050, 1058613, 1065176} },
{"Thunderheart Chestguard", {6031042, 31042, 130397, 231042, 1005431, 1012554, 1019200, 1025798, 1032362, 1038925, 1045488, 1052051, 1058614, 1065177} },
{"Thunderheart Vest", {6031043, 31043, 130415, 231043, 1005432, 1012555, 1019201, 1025799, 1032363, 1038926, 1045489, 1052052, 1058615, 1065178} },
{"Thunderheart Leggings", {6031044, 31044, 130406, 231044, 1005433, 1012556, 1019202, 1025800, 1032364, 1038927, 1045490, 1052053, 1058616, 1065179} },
{"Thunderheart Legguards", {6031045, 31045, 130407, 231045, 1005434, 1012557, 1019203, 1025801, 1032365, 1038928, 1045491, 1052054, 1058617, 1065180} },
{"Thunderheart Pants", {6031046, 31046, 130408, 231046, 1005436, 1012558, 1019204, 1025802, 1032366, 1038929, 1045492, 1052055, 1058618, 1065181} },
{"Thunderheart Spaulders", {6031047, 31047, 130412, 231047, 1005437, 1012559, 1019205, 1025803, 1032367, 1038930, 1045493, 1052056, 1058619, 1065182} },
{"Thunderheart Pauldrons", {6031048, 31048, 130409, 231048, 1005438, 1012560, 1019206, 1025804, 1032368, 1038931, 1045494, 1052057, 1058620, 1065183} },
{"Thunderheart Shoulderpads", {6031049, 31049, 130411, 231049, 1005439, 1012561, 1019207, 1025805, 1032369, 1038932, 1045495, 1052058, 1058621, 1065184} },
{"Gloves of the Malefic", {6031050, 31050, 119301, 231050, 1005440, 1012562, 1019208, 1025806, 1032370, 1038933, 1045496, 1052059, 1058622, 1065185} },
{"Hood of the Malefic", {6031051, 31051, 120599, 231051, 1005441, 1012563, 1019209, 1025807, 1032371, 1038934, 1045497, 1052060, 1058623, 1065186} },
{"Robe of the Malefic", {6031052, 31052, 123622, 231052, 1005442, 1012564, 1019210, 1025808, 1032372, 1038935, 1045498, 1052061, 1058624, 1065187} },
{"Leggings of the Malefic", {6031053, 31053, 120883, 231053, 1005444, 1012565, 1019211, 1025809, 1032373, 1038936, 1045499, 1052062, 1058625, 1065188} },
{"Mantle of the Malefic", {6031054, 31054, 122733, 231054, 1005445, 1012566, 1019212, 1025810, 1032374, 1038937, 1045500, 1052063, 1058626, 1065189} },
{"Gloves of the Tempest", {6031055, 31055, 119419, 231055, 1005446, 1012567, 1019213, 1025811, 1032375, 1038938, 1045501, 1052064, 1058627, 1065190} },
{"Cowl of the Tempest", {6031056, 31056, 100909, 231056, 1005447, 1012568, 1019214, 1025812, 1032376, 1038939, 1045502, 1052065, 1058628, 1065191} },
{"Robes of the Tempest", {6031057, 31057, 123633, 231057, 1005448, 1012569, 1019215, 1025813, 1032377, 1038940, 1045503, 1052066, 1058629, 1065192} },
{"Leggings of the Tempest", {6031058, 31058, 120886, 231058, 1005449, 1012570, 1019216, 1025814, 1032378, 1038941, 1045504, 1052067, 1058630, 1065193} },
{"Mantle of the Tempest", {6031059, 31059, 122736, 231059, 1005450, 1012571, 1019217, 1025815, 1032379, 1038942, 1045505, 1052068, 1058631, 1065194} },
{"Gloves of Absolution", {6031060, 31060, 118586, 231060, 1005452, 1012572, 1019218, 1025816, 1032380, 1038943, 1045506, 1052069, 1058632, 1065195} },
{"Handguards of Absolution", {6031061, 31061, 120457, 231061, 1005456, 1012573, 1019219, 1025817, 1032381, 1038944, 1045507, 1052070, 1058633, 1065196} },
{"Torn-heart Axe of Battle", {6031062, 31062, 285229, 285230, 285231, 285232, 285233, 285234, 285235, 285236, 285237, 285238, 285239, 285240} },
{"Cowl of Absolution", {6031063, 31063, 100904, 231063, 1005458, 1012574, 1019220, 1025818, 1032382, 1038945, 1045508, 1052071, 1058634, 1065197} },
{"Hood of Absolution", {6031064, 31064, 120592, 231064, 1005459, 1012575, 1019221, 1025819, 1032383, 1038946, 1045509, 1052072, 1058635, 1065198} },
{"Shroud of Absolution", {6031065, 31065, 123856, 231065, 1005461, 1012576, 1019222, 1025820, 1032384, 1038947, 1045510, 1052073, 1058636, 1065199} },
{"Vestments of Absolution", {6031066, 31066, 130626, 231066, 1005462, 1012577, 1019223, 1025821, 1032385, 1038948, 1045511, 1052074, 1058637, 1065200} },
{"Leggings of Absolution", {6031067, 31067, 120850, 231067, 1005463, 1012578, 1019224, 1025822, 1032386, 1038949, 1045512, 1052075, 1058638, 1065201} },
{"Breeches of Absolution", {6031068, 31068, 100686, 231068, 1005464, 1012579, 1019225, 1025823, 1032387, 1038950, 1045513, 1052076, 1058639, 1065202} },
{"Mantle of Absolution", {6031069, 31069, 122694, 231069, 1005467, 1012580, 1019226, 1025824, 1032388, 1038951, 1045514, 1052077, 1058640, 1065203} },
{"Shoulderpads of Absolution", {6031070, 31070, 123839, 231070, 1005469, 1012581, 1019227, 1025825, 1032389, 1038952, 1045515, 1052078, 1058641, 1065204} },
{"Grom'tor's Charge", {6031071, 31071, 285241, 285242, 285243, 285244, 285245, 285246, 285247, 285248, 285249, 285250, 285251, 285252} },
{"Lohn'goron, Bow of the Torn-heart", {6031072, 31072, 285253, 285254, 285255, 285256, 285257, 285258, 285259, 285260, 285261, 285262, 285263, 285264} },
{"Borak's Reminder", {6031073, 31073, 285265, 285266, 285267, 285268, 285269, 285270, 285271, 285272, 285273, 285274, 285275, 285276} },
{"Amulet of the Torn-heart", {6031074, 31074, 285277, 285278, 285279, 285280, 285281, 285282, 285283, 285284, 285285, 285286, 285287, 285288} },
{"Evoker's Mark of the Redemption", {6031075, 31075, 285289, 285290, 285291, 285292, 285293, 285294, 285295, 285296, 285297, 285298, 285299, 285300} },
{"Spellsword's Mark of the Redemption", {6031076, 31076, 285301, 285302, 285303, 285304, 285305, 285306, 285307, 285308, 285309, 285310, 285311, 285312} },
{"Slayer's Mark of the Redemption", {6031077, 31077, 285313, 285314, 285315, 285316, 285317, 285318, 285319, 285320, 285321, 285322, 285323, 285324} },
{"Protector's Mark of the Redemption", {6031078, 31078, 285325, 285326, 285327, 285328, 285329, 285330, 285331, 285332, 285333, 285334, 285335, 285336} },
{"Mercurial Stone", {285338, 31080, 285337, 285339, 285340, 285341, 285342, 285343, 285344, 285345, 285346, 285347, 285348, 285349} },
{"Evoker's Helmet of Second Sight", {6031104, 31104, 285350, 285351, 285352, 285353, 285354, 285355, 285356, 285357, 285358, 285359, 285360, 285361} },
{"Overlord's Helmet of Second Sight", {6031105, 31105, 285362, 285363, 285364, 285365, 285366, 285367, 285368, 285369, 285370, 285371, 285372, 285373} },
{"Stalker's Helmet of Second Sight", {6031106, 31106, 285374, 285375, 285376, 285377, 285378, 285379, 285380, 285381, 285382, 285383, 285384, 285385} },
{"Shamanistic Helmet of Second Sight", {6031107, 31107, 285386, 285387, 285388, 285389, 285390, 285391, 285392, 285393, 285394, 285395, 285396, 285397} },
{"Stealther's Helmet of Second Sight", {6031109, 31109, 285398, 285399, 285400, 285401, 285402, 285403, 285404, 285405, 285406, 285407, 285408, 285409} },
{"Druidic Helmet of Second Sight", {6031110, 31110, 285410, 285411, 285412, 285413, 285414, 285415, 285416, 285417, 285418, 285419, 285420, 285421} },
{"Uvuros Hide Gloves", {285423, 31111, 285422, 285424, 285425, 285426, 285427, 285428, 285429, 285430, 285431, 285432, 285433, 285434} },
{"Uvuros Hide Boots", {285436, 31112, 285435, 285437, 285438, 285439, 285440, 285441, 285442, 285443, 285444, 285445, 285446, 285447} },
{"Violet Badge", {6031113, 31113, 285448, 285449, 285450, 285451, 285452, 285453, 285454, 285455, 285456, 285457, 285458, 285459} },
{"Uvuros Hide Cinch", {285461, 31114, 285460, 285462, 285463, 285464, 285465, 285466, 285467, 285468, 285469, 285470, 285471, 285472} },
{"Uvuros Plated Spaulders", {285474, 31115, 285473, 285475, 285476, 285477, 285478, 285479, 285480, 285481, 285482, 285483, 285484, 285485} },
{"Boots of the Decimator", {6031125, 31125, 100459, 431125, 1007718, 1014601, 1021265, 1027830, 1034394, 1040957, 1047520, 1054083, 1060646, 1067209} },
{"Gloves of Ferocity", {6031126, 31126, 118594, 431126, 1007719, 1014602, 1021266, 1027831, 1034395, 1040958, 1047521, 1054084, 1060647, 1067210} },
{"Hauberk of Totemic Rage", {6031127, 31127, 120479, 431127, 1007720, 1014603, 1021267, 1027832, 1034396, 1040959, 1047522, 1054085, 1060648, 1067211} },
{"Sash of Silent Blades", {6031131, 31131, 123694, 431131, 1007721, 1014604, 1021268, 1027833, 1034397, 1040960, 1047523, 1054086, 1060649, 1067212} },
{"Leggings of Concentrated Darkness", {6031133, 31133, 120853, 431133, 1007722, 1014605, 1021269, 1027834, 1034398, 1040961, 1047524, 1054087, 1060650, 1067213} },
{"Blade of Misfortune", {6031134, 31134, 100309, 431134, 1007723, 1014606, 1021270, 1027835, 1034399, 1040962, 1047525, 1054088, 1060651, 1067214} },
{"Breastplate of Blade Turning", {6031136, 31136, 100672, 431136, 1007724, 1014607, 1021271, 1027836, 1034400, 1040963, 1047526, 1054089, 1060652, 1067215} },
{"Gauntlets of Purification", {6031137, 31137, 116903, 431137, 1007725, 1014608, 1021272, 1027837, 1034401, 1040964, 1047527, 1054090, 1060653, 1067216} },
{"Storm Lord's Girdle", {6031138, 31138, 128684, 431138, 1007726, 1014609, 1021273, 1027838, 1034402, 1040965, 1047528, 1054091, 1060654, 1067217} },
{"Fist of Reckoning", {6031139, 31139, 115455, 431139, 1007727, 1014610, 1021274, 1027839, 1034403, 1040966, 1047529, 1054092, 1060655, 1067218} },
{"Cloak of Entropy", {6031140, 31140, 100807, 431140, 1007728, 1014611, 1021275, 1027840, 1034404, 1040967, 1047530, 1054093, 1060656, 1067219} },
{"Blade of Trapped Knowledge", {6031142, 31142, 100313, 431142, 1007729, 1014612, 1021276, 1027841, 1034405, 1040968, 1047531, 1054094, 1060657, 1067220} },
{"Shroud of Frenzy", {6031143, 31143, 123870, 431143, 1007730, 1014613, 1021277, 1027842, 1034406, 1040969, 1047532, 1054095, 1060658, 1067221} },
{"Headdress of the Sleeper", {6031145, 31145, 120492, 431145, 1007731, 1014614, 1021278, 1027843, 1034407, 1040970, 1047533, 1054096, 1060659, 1067222} },
{"Pendant of Cunning", {6031147, 31147, 123395, 431147, 1007732, 1014615, 1021279, 1027844, 1034408, 1040971, 1047534, 1054097, 1060660, 1067223} },
{"Demon Hide Spaulders", {6031148, 31148, 102229, 431148, 1007733, 1014616, 1021280, 1027845, 1034409, 1040972, 1047535, 1054098, 1060661, 1067224} },
{"Gloves of Pandemonium", {6031149, 31149, 118906, 431149, 1007734, 1014617, 1021281, 1027846, 1034410, 1040973, 1047536, 1054099, 1060662, 1067225} },
{"Gloves of Piety", {6031150, 31150, 118932, 431150, 1007735, 1014618, 1021282, 1027847, 1034411, 1040974, 1047537, 1054100, 1060663, 1067226} },
{"Girdle of Siege", {6031151, 31151, 117448, 431151, 1007736, 1014619, 1021283, 1027848, 1034412, 1040975, 1047538, 1054101, 1060664, 1067227} },
{"Chestguard of Illumination", {6031152, 31152, 100735, 431152, 1007737, 1014620, 1021284, 1027849, 1034413, 1040976, 1047539, 1054102, 1060665, 1067228} },
{"Axe of the Legion", {6031153, 31153, 100187, 431153, 1007738, 1014621, 1021285, 1027850, 1034414, 1040977, 1047540, 1054103, 1060666, 1067229} },
{"Drakescale Breastplate", {6031155, 31155, 285499, 285500, 285501, 285502, 285503, 285504, 285505, 285506, 285507, 285508, 285509, 285510} },
{"Drakescale Hauberk", {6031156, 31156, 285511, 285512, 285513, 285514, 285515, 285516, 285517, 285518, 285519, 285520, 285521, 285522} },
{"Drakehide Tunic", {6031157, 31157, 285523, 285524, 285525, 285526, 285527, 285528, 285529, 285530, 285531, 285532, 285533, 285534} },
{"Drakeweave Raiment", {6031158, 31158, 285535, 285536, 285537, 285538, 285539, 285540, 285541, 285542, 285543, 285544, 285545, 285546} },
{"Felstone Pauldrons", {6031159, 31159, 285547, 285548, 285549, 285550, 285551, 285552, 285553, 285554, 285555, 285556, 285557, 285558} },
{"Felstone Epaulets", {6031160, 31160, 285559, 285560, 285561, 285562, 285563, 285564, 285565, 285566, 285567, 285568, 285569, 285570} },
{"Felstone Spaulders", {6031161, 31161, 285571, 424820, 285572, 285573, 285574, 285575, 285576, 285577, 285578, 285579, 285580, 285581} },
{"Felstone Mantle", {6031162, 31162, 285582, 285583, 285584, 285585, 285586, 285587, 285588, 285589, 285590, 285591, 285592, 285593} },
{"Nethersteel Handguards", {6031163, 31163, 285594, 285595, 285596, 285597, 285598, 285599, 285600, 285601, 285602, 285603, 285604, 285605} },
{"Nethersteel Gauntlets", {6031164, 31164, 285606, 285607, 285608, 285609, 285610, 285611, 285612, 285613, 285614, 285615, 285616, 285617} },
{"Nethersteel-Reinforced Gloves", {6031165, 31165, 285618, 285619, 285620, 285621, 285622, 285623, 285624, 285625, 285626, 285627, 285628, 285629} },
{"Nethersteel-Lined Handwraps", {6031166, 31166, 285630, 285631, 285632, 285633, 285634, 285635, 285636, 285637, 285638, 285639, 285640, 285641} },
{"Demon-Forged Chestguard", {6031168, 31168, 285642, 285643, 285644, 285645, 285646, 285647, 285648, 285649, 285650, 285651, 285652, 285653} },
{"Demon-Forged Hauberk", {6031170, 31170, 285654, 285655, 285656, 285657, 285658, 285659, 285660, 285661, 285662, 285663, 285664, 285665} },
{"Demon-Cured Tunic", {6031172, 31172, 285666, 285667, 285668, 285669, 285670, 285671, 285672, 285673, 285674, 285675, 285676, 285677} },
{"Boots of Savagery", {6031173, 31173, 100456, 431173, 1007739, 1014622, 1021286, 1027851, 1034415, 1040978, 1047541, 1054104, 1060667, 1067230} },
{"Demonweave Raiment", {6031174, 31174, 285678, 285679, 285680, 285681, 285682, 285683, 285684, 285685, 285686, 285687, 285688, 285689} },
{"Blade Dancer's Wristguards", {6031175, 31175, 100308, 431175, 1007740, 1014623, 1021287, 1027852, 1034416, 1040979, 1047542, 1054105, 1060668, 1067231} },
{"Rockwurm Plate Handguards", {6031176, 31176, 285690, 285691, 285692, 285693, 285694, 285695, 285696, 285697, 285698, 285699, 285700, 285701} },
{"Rockwurm Scale Gauntlets", {6031177, 31177, 285702, 285703, 285704, 285705, 285706, 285707, 285708, 285709, 285710, 285711, 285712, 285713} },
{"Amulet of Unstable Power", {6031178, 31178, 100069, 431178, 1007741, 1014624, 1021288, 1027853, 1034417, 1040980, 1047543, 1054106, 1060669, 1067232} },
{"Rockwurm Hide Gloves", {6031179, 31179, 285714, 285715, 285716, 285717, 285718, 285719, 285720, 285721, 285722, 285723, 285724, 285725} },
{"Gauntlets of the Skullsplitter", {6031180, 31180, 117418, 431180, 1007742, 1014625, 1021289, 1027854, 1034418, 1040981, 1047544, 1054107, 1060670, 1067233} },
{"Rockwurm Hide Handwraps", {6031181, 31181, 285726, 285727, 285728, 285729, 285730, 285731, 285732, 285733, 285734, 285735, 285736, 285737} },
{"Legion Helm", {6031182, 31182, 285738, 285739, 285740, 285741, 285742, 285743, 285744, 285745, 285746, 285747, 285748, 285749} },
{"Legion Coif", {6031183, 31183, 285750, 285751, 285752, 285753, 285754, 285755, 285756, 285757, 285758, 285759, 285760, 285761} },
{"Legion Headguard", {6031184, 31184, 285762, 285763, 285764, 285765, 285766, 285767, 285768, 285769, 285770, 285771, 285772, 285773} },
{"Legion Crown", {6031185, 31185, 285774, 285775, 285776, 285777, 285778, 285779, 285780, 285781, 285782, 285783, 285784, 285785} },
{"Braxxis' Staff of Slumber", {6031186, 31186, 100668, 431186, 1007743, 1014626, 1021290, 1027855, 1034419, 1040982, 1047545, 1054108, 1060671, 1067234} },
{"Boots of the Pathfinder", {6031187, 31187, 100471, 431187, 1007744, 1014627, 1021291, 1027856, 1034420, 1040983, 1047546, 1054109, 1060672, 1067235} },
{"Crocolisk Scale Vambraces", {6031188, 31188, 285786, 285787, 285788, 285789, 285790, 285791, 285792, 285793, 285794, 285795, 285796, 285797} },
{"Crocolisk Scale Wristguards", {6031189, 31189, 285798, 285799, 285800, 285801, 285802, 285803, 285804, 285805, 285806, 285807, 285808, 285809} },
{"The Dreamer's Shoulderpads", {6031190, 31190, 331190, 231190, 1005491, 1012597, 1019243, 1025841, 1032405, 1038968, 1045531, 1052094, 1058657, 1065220} },
{"Crocolisk Hide Bracers", {6031191, 31191, 285810, 285811, 285812, 285813, 285814, 285815, 285816, 285817, 285818, 285819, 285820, 285821} },
{"Crocolisk Hide Bindings", {6031192, 31192, 285822, 285823, 285824, 285825, 285826, 285827, 285828, 285829, 285830, 285831, 285832, 285833} },
{"Blade of Unquenched Thirst", {6031193, 31193, 100314, 431193, 1007746, 1014629, 1021293, 1027858, 1034422, 1040985, 1047548, 1054111, 1060674, 1067237} },
{"Gronn-Blessed Warbeads", {6031194, 31194, 285834, 285835, 285836, 285837, 285838, 285839, 285840, 285841, 285842, 285843, 285844, 285845} },
{"Voidplate Girdle", {6031195, 31195, 285846, 285847, 285848, 285849, 285850, 285851, 285852, 285853, 285854, 285855, 285856, 285857} },
{"Amulet of Sanctification", {6031196, 31196, 100063, 431196, 1007747, 1014630, 1021294, 1027859, 1034423, 1040986, 1047549, 1054112, 1060675, 1067238} },
{"Voidscale Belt", {6031197, 31197, 285858, 285859, 285860, 285861, 285862, 285863, 285864, 285865, 285866, 285867, 285868, 285869} },
{"Voidhide Cord", {6031198, 31198, 285870, 285871, 285872, 285873, 285874, 285875, 285876, 285877, 285878, 285879, 285880, 285881} },
{"Voidweave Cilice", {6031199, 31199, 285882, 285883, 285884, 285885, 285886, 285887, 285888, 285889, 285890, 285891, 285892, 285893} },
{"Shield of the Wayward Footman", {6031200, 31200, 123828, 431200, 1007748, 1014631, 1021295, 1027860, 1034424, 1040987, 1047550, 1054113, 1060676, 1067239} },
{"Illidari Cloak", {6031201, 31201, 285894, 285895, 285896, 285897, 285898, 285899, 285900, 285901, 285902, 285903, 285904, 285905} },
{"Girdle of Divine Blessing", {6031202, 31202, 117429, 431202, 1007749, 1014632, 1021296, 1027861, 1034425, 1040988, 1047551, 1054114, 1060677, 1067240} },
{"Arcane Loop", {6031203, 31203, 285906, 285907, 285908, 285909, 285910, 285911, 285912, 285913, 285914, 285915, 285916, 285917} },
{"The Gunblade", {6031204, 31204, 130336, 431204, 1007750, 1014633, 1021297, 1027862, 1034426, 1040989, 1047552, 1054115, 1060678, 1067241} },
{"Chimaerascale Legplates", {6031209, 31209, 285918, 285919, 285920, 285921, 285922, 285923, 285924, 285925, 285926, 285927, 285928, 285929} },
{"Chimaerascale Legguards", {6031210, 31210, 285930, 285931, 285932, 285933, 285934, 285935, 285936, 285937, 285938, 285939, 285940, 285941} },
{"Chimaerahide Pants", {6031211, 31211, 285942, 285943, 285944, 285945, 285946, 285947, 285948, 285949, 285950, 285951, 285952, 285953} },
{"Chimaerahide Leggings", {6031212, 31212, 285954, 285955, 285956, 285957, 285958, 285959, 285960, 285961, 285962, 285963, 285964, 285965} },
{"Abyssal Plate Sabatons", {6031213, 31213, 285966, 285967, 285968, 285969, 285970, 285971, 285972, 285973, 285974, 285975, 285976, 285977} },
{"Abyssal Mail Greaves", {6031214, 31214, 285978, 285979, 285980, 285981, 285982, 285983, 285984, 285985, 285986, 285987, 285988, 285989} },
{"Abyssal Leather Treads", {6031215, 31215, 285990, 285991, 285992, 285993, 285994, 285995, 285996, 285997, 285998, 285999, 286000, 286001} },
{"Abyssal Cloth Footwraps", {6031216, 31216, 286002, 286003, 286004, 286005, 286006, 286007, 286008, 286009, 286010, 286011, 286012, 286013} },
{"Crimson Beholder Eye", {6031217, 31217, 286014, 286015, 286016, 286017, 286018, 286019, 286020, 286021, 286022, 286023, 286024, 286025} },
{"Fiery Beholder Eye", {6031218, 31218, 286026, 286027, 286028, 286029, 286030, 286031, 286032, 286033, 286034, 286035, 286036, 286037} },
{"Emerald Beholder Eye", {6031219, 31219, 286038, 286039, 286040, 286041, 286042, 286043, 286044, 286045, 286046, 286047, 286048, 286049} },
{"Amethyst Beholder Eye", {6031220, 31220, 286050, 286051, 286052, 286053, 286054, 286055, 286056, 286057, 286058, 286059, 286060, 286061} },
{"Illidari Vambraces", {6031221, 31221, 286062, 286063, 286064, 286065, 286066, 286067, 286068, 286069, 286070, 286071, 286072, 286073} },
{"Headdress of Inner Rage", {6031222, 31222, 120491, 431222, 1007751, 1014634, 1021298, 1027863, 1034427, 1040990, 1047553, 1054116, 1060679, 1067242} },
{"Illidari Wristguards", {6031223, 31223, 286074, 286075, 286076, 286077, 286078, 286079, 286080, 286081, 286082, 286083, 286084, 286085} },
{"Illidari Bracers", {6031224, 31224, 286086, 286087, 286088, 286089, 286090, 286091, 286092, 286093, 286094, 286095, 286096, 286097} },
{"Illidari Bindings", {6031225, 31225, 286098, 286099, 286100, 286101, 286102, 286103, 286104, 286105, 286106, 286107, 286108, 286109} },
{"Leggings of the Sly", {6031226, 31226, 120885, 431226, 1007752, 1014635, 1021299, 1027864, 1034428, 1040991, 1047554, 1054117, 1060680, 1067243} },
{"Feathered Girdle", {6031227, 31227, 286110, 286111, 286112, 286113, 286114, 286115, 286116, 286117, 286118, 286119, 286120, 286121} },
{"Feathered Belt", {6031228, 31228, 286122, 286123, 286124, 286125, 286126, 286127, 286128, 286129, 286130, 286131, 286132, 286133} },
{"Feathered Waistband", {6031229, 31229, 286134, 286135, 286136, 286137, 286138, 286139, 286140, 286141, 286142, 286143, 286144, 286145} },
{"Abyss Walker's Boots", {6031230, 31230, 100024, 431230, 1007753, 1014636, 1021300, 1027865, 1034429, 1040992, 1047555, 1054118, 1060681, 1067244} },
{"Feathered Sash", {6031231, 31231, 286146, 286147, 286148, 286149, 286150, 286151, 286152, 286153, 286154, 286155, 286156, 286157} },
{"Grim Sabatons", {6031232, 31232, 286158, 286159, 286160, 286161, 286162, 286163, 286164, 286165, 286166, 286167, 286168, 286169} },
{"Grim Greaves", {6031233, 31233, 286170, 286171, 286172, 286173, 286174, 286175, 286176, 286177, 286178, 286179, 286180, 286181} },
{"Crystalblade of the Draenei", {6031234, 31234, 100949, 431234, 1007754, 1014637, 1021301, 1027866, 1034430, 1040993, 1047556, 1054119, 1060682, 1067245} },
{"Grim Boots", {6031235, 31235, 286182, 286183, 286184, 286185, 286186, 286187, 286188, 286189, 286190, 286191, 286192, 286193} },
{"Grim Slippers", {6031236, 31236, 286194, 286195, 286196, 286197, 286198, 286199, 286200, 286201, 286202, 286203, 286204, 286205} },
{"Elekk Hide Leggings", {6031237, 31237, 103917, 431237, 1007755, 1014638, 1021302, 1027867, 1034431, 1040994, 1047557, 1054120, 1060683, 1067246} },
{"Dragonbone Ring", {6031238, 31238, 286206, 286207, 286208, 286209, 286210, 286211, 286212, 286213, 286214, 286215, 286216, 286217} },
{"Scales of the Beast", {6031240, 31240, 123703, 431240, 1007756, 1014639, 1021303, 1027868, 1034432, 1040995, 1047558, 1054121, 1060684, 1067247} },
{"Nagascale Legplates", {6031242, 31242, 286218, 286219, 286220, 286221, 286222, 286223, 286224, 286225, 286226, 286227, 286228, 286229} },
{"Nagascale Legguards", {6031243, 31243, 286230, 286231, 286232, 286233, 286234, 286235, 286236, 286237, 286238, 286239, 286240, 286241} },
{"Nagahide Pants", {6031244, 31244, 286242, 286243, 286244, 286245, 286246, 286247, 286248, 286249, 286250, 286251, 286252, 286253} },
{"Nagahide Leggings", {6031246, 31246, 286254, 286255, 286256, 286257, 286258, 286259, 286260, 286261, 286262, 286263, 286264, 286265} },
{"Bog Pauldrons", {6031247, 31247, 286266, 286267, 286268, 286269, 286270, 286271, 286272, 286273, 286274, 286275, 286276, 286277} },
{"Bog Epaulets", {6031248, 31248, 286278, 286279, 286280, 286281, 286282, 286283, 286284, 286285, 286286, 286287, 286288, 286289} },
{"Bog Spaulders", {6031249, 31249, 286290, 286291, 286292, 286293, 286294, 286295, 286296, 286297, 286298, 286299, 286300, 286301} },
{"Bog Mantle", {6031250, 31250, 286302, 286303, 286304, 286305, 286306, 286307, 286308, 286309, 286310, 286311, 286312, 286313} },
{"Striderhide Cloak", {6031254, 31254, 286314, 286315, 286316, 286317, 286318, 286319, 286320, 286321, 286322, 286323, 286324, 286325} },
{"Cloak of the Craft", {6031255, 31255, 100813, 431255, 1007757, 1014640, 1021304, 1027869, 1034433, 1040996, 1047559, 1054122, 1060685, 1067248} },
{"Band of Sorrow", {6031258, 31258, 100210, 431258, 1007758, 1014641, 1021305, 1027870, 1034434, 1040997, 1047560, 1054123, 1060686, 1067249} },
{"Crown of Endless Knowledge", {6031272, 31272, 100928, 431272, 1007759, 1014642, 1021306, 1027871, 1034435, 1040998, 1047561, 1054124, 1060687, 1067250} },
{"Necklace of Trophies", {6031275, 31275, 122990, 431275, 1007760, 1014643, 1021307, 1027872, 1034436, 1040999, 1047562, 1054125, 1060688, 1067251} },
{"Boots of Zealotry", {6031276, 31276, 100479, 431276, 1007761, 1014644, 1021308, 1027873, 1034437, 1041000, 1047563, 1054126, 1060689, 1067252} },
{"Pathfinder's Band", {6031277, 31277, 123189, 431277, 1007762, 1014645, 1021309, 1027874, 1034438, 1041001, 1047564, 1054127, 1060690, 1067253} },
{"Thundercaller's Gauntlets", {6031280, 31280, 130391, 431280, 1007763, 1014646, 1021310, 1027875, 1034439, 1041002, 1047565, 1054128, 1060691, 1067254} },
{"Mask of Veiled Death", {6031281, 31281, 122769, 431281, 1007764, 1014647, 1021311, 1027876, 1034440, 1041003, 1047566, 1054129, 1060692, 1067255} },
{"Shroud of Spiritual Purity", {6031282, 31282, 123871, 431282, 1007765, 1014648, 1021312, 1027877, 1034441, 1041004, 1047567, 1054130, 1060693, 1067256} },
{"Sash of Sealed Fate", {6031283, 31283, 123692, 431283, 1007766, 1014649, 1021313, 1027878, 1034442, 1041005, 1047568, 1054131, 1060694, 1067257} },
{"Bracers of Recklessness", {6031284, 31284, 331284, 231284, 1005492, 1012598, 1019244, 1025842, 1032406, 1038969, 1045532, 1052095, 1058658, 1065221} },
{"Chestguard of the Talon", {6031285, 31285, 331285, 231285, 1005496, 1012599, 1019245, 1025843, 1032407, 1038970, 1045533, 1052096, 1058659, 1065222} },
{"Breastplate of Rapid Striking", {6031286, 31286, 331286, 231286, 1005498, 1012600, 1019246, 1025844, 1032408, 1038971, 1045534, 1052097, 1058660, 1065223} },
{"Draenei Honor Guard Shield", {6031287, 31287, 331287, 231287, 1005500, 1012601, 1019247, 1025845, 1032409, 1038972, 1045535, 1052098, 1058661, 1065224} },
{"The Master's Treads", {6031288, 31288, 331288, 231288, 1005502, 1012602, 1019248, 1025846, 1032410, 1038973, 1045536, 1052099, 1058662, 1065225} },
{"Staff of Divine Infusion", {6031289, 31289, 331289, 231289, 1005503, 1012603, 1019249, 1025847, 1032411, 1038974, 1045537, 1052100, 1058663, 1065226} },
{"Band of Dominion", {6031290, 31290, 331290, 231290, 1005504, 1012604, 1019250, 1025848, 1032412, 1038975, 1045538, 1052101, 1058664, 1065227} },
{"Crystalforged War Axe", {6031291, 31291, 331291, 231291, 1005505, 1012605, 1019251, 1025849, 1032413, 1038976, 1045539, 1052102, 1058665, 1065228} },
{"Crystal Pulse Shield", {6031292, 31292, 331292, 231292, 1005507, 1012606, 1019252, 1025850, 1032414, 1038977, 1045540, 1052103, 1058666, 1065229} },
{"Girdle of Gale Force", {6031293, 31293, 331293, 231293, 1005509, 1012607, 1019253, 1025851, 1032415, 1038978, 1045541, 1052104, 1058667, 1065230} },
{"Pauldrons of Surging Mana", {6031294, 31294, 331294, 231294, 1005513, 1012608, 1019254, 1025852, 1032416, 1038979, 1045542, 1052105, 1058668, 1065231} },
{"Chestguard of the Dark Stalker", {6031295, 31295, 331295, 231295, 1005516, 1012609, 1019255, 1025853, 1032417, 1038980, 1045543, 1052106, 1058669, 1065232} },
{"Robe of the Crimson Order", {6031297, 31297, 331297, 231297, 1005517, 1012610, 1019256, 1025854, 1032418, 1038981, 1045544, 1052107, 1058670, 1065233} },
{"Legguards of the Shattered Hand", {6031298, 31298, 331298, 231298, 1005518, 1012611, 1019257, 1025855, 1032419, 1038982, 1045545, 1052108, 1058671, 1065234} },
{"The Oathkeeper", {6031299, 31299, 331299, 231299, 1005519, 1012612, 1019258, 1025856, 1032420, 1038983, 1045546, 1052109, 1058672, 1065235} },
{"Valanos' Longbow", {6031303, 31303, 331303, 231303, 1005520, 1012613, 1019259, 1025857, 1032421, 1038984, 1045547, 1052110, 1058673, 1065236} },
{"The Essence Focuser", {6031304, 31304, 331304, 231304, 1005521, 1012614, 1019260, 1025858, 1032422, 1038985, 1045548, 1052111, 1058674, 1065237} },
{"Ced's Carver", {6031305, 31305, 331305, 231305, 1005522, 1012615, 1019261, 1025859, 1032423, 1038986, 1045549, 1052112, 1058675, 1065238} },
{"Leggings of the Sacred Crest", {6031306, 31306, 331306, 231306, 1005523, 1012616, 1019262, 1025860, 1032424, 1038987, 1045550, 1052113, 1058676, 1065239} },
{"The Bringer of Death", {6031308, 31308, 331308, 231308, 1005524, 1012617, 1019263, 1025861, 1032425, 1038988, 1045551, 1052114, 1058677, 1065240} },
{"Sinister Area 52 Boots", {286405, 31312, 286404, 286406, 286407, 286408, 286409, 286410, 286411, 286412, 286413, 286414, 286415, 286416} },
{"Nether-Rocket Gloves", {286418, 31313, 286417, 286419, 286420, 286421, 286422, 286423, 286424, 286425, 286426, 286427, 286428, 286429} },
{"Rocket-Chief Pauldrons", {286431, 31314, 286430, 286432, 286433, 286434, 286435, 286436, 286437, 286438, 286439, 286440, 286441, 286442} },
{"Goblin Girdle", {286444, 31315, 286443, 286445, 286446, 286447, 286448, 286449, 286450, 286451, 286452, 286453, 286454, 286455} },
{"Singing Crystal Axe", {6031318, 31318, 331318, 231318, 1005525, 1012618, 1019264, 1025862, 1032426, 1038989, 1045552, 1052115, 1058678, 1065241} },
{"Band of Impenetrable Defenses", {6031319, 31319, 331319, 231319, 1005526, 1012619, 1019265, 1025863, 1032427, 1038990, 1045553, 1052116, 1058679, 1065242} },
{"Chestguard of Exile", {6031320, 31320, 331320, 231320, 1005527, 1012620, 1019266, 1025864, 1032428, 1038991, 1045554, 1052117, 1058680, 1065243} },
{"Choker of Repentance", {6031321, 31321, 331321, 231321, 1005528, 1012621, 1019267, 1025865, 1032429, 1038992, 1045555, 1052118, 1058681, 1065244} },
{"The Hammer of Destiny", {6031322, 31322, 331322, 231322, 1005529, 1012622, 1019268, 1025866, 1032430, 1038993, 1045556, 1052119, 1058682, 1065245} },
{"Don Santos' Famous Hunting Rifle", {6031323, 31323, 331323, 231323, 1005530, 1012623, 1019269, 1025867, 1032431, 1038994, 1045557, 1052120, 1058683, 1065246} },
{"Truestrike Ring", {6031326, 31326, 331326, 231326, 1005531, 1012624, 1019270, 1025868, 1032432, 1038995, 1045558, 1052121, 1058684, 1065247} },
{"Leggings of Beast Mastery", {6031328, 31328, 331328, 231328, 1005532, 1012625, 1019271, 1025869, 1032433, 1038996, 1045559, 1052122, 1058685, 1065248} },
{"Lifegiving Cloak", {6031329, 31329, 331329, 231329, 1005533, 1012626, 1019272, 1025870, 1032434, 1038997, 1045560, 1052123, 1058686, 1065249} },
{"Lightning Crown", {6031330, 31330, 331330, 231330, 1005534, 1012627, 1019273, 1025871, 1032435, 1038998, 1045561, 1052124, 1058687, 1065250} },
{"The Night Blade", {6031331, 31331, 331331, 231331, 1005535, 1012628, 1019274, 1025872, 1032436, 1038999, 1045562, 1052125, 1058688, 1065251} },
{"Blinkstrike", {6031332, 31332, 331332, 231332, 1005536, 1012629, 1019275, 1025873, 1032437, 1039000, 1045563, 1052126, 1058689, 1065252} },
{"The Night Watchman", {6031333, 31333, 331333, 231333, 1005537, 1012630, 1019276, 1025874, 1032438, 1039001, 1045564, 1052127, 1058690, 1065253} },
{"Staff of Natural Fury", {6031334, 31334, 331334, 231334, 1005538, 1012631, 1019277, 1025875, 1032439, 1039002, 1045565, 1052128, 1058691, 1065254} },
{"Pants of Living Growth", {6031335, 31335, 331335, 231335, 1005539, 1012632, 1019278, 1025876, 1032440, 1039003, 1045566, 1052129, 1058692, 1065255} },
{"Blade of Wizardry", {6031336, 31336, 331336, 231336, 1005540, 1012633, 1019279, 1025877, 1032441, 1039004, 1045567, 1052130, 1058693, 1065256} },
{"Charlotte's Ivy", {6031338, 31338, 331338, 231338, 1005541, 1012634, 1019280, 1025878, 1032442, 1039005, 1045568, 1052131, 1058694, 1065257} },
{"Lola's Eve", {6031339, 31339, 331339, 231339, 1005542, 1012635, 1019281, 1025879, 1032443, 1039006, 1045569, 1052132, 1058695, 1065258} },
{"Will of Edward the Odd", {6031340, 31340, 331340, 231340, 1005543, 1012636, 1019282, 1025880, 1032444, 1039007, 1045570, 1052133, 1058696, 1065259} },
{"Wyrmcultist's Cloak", {286457, 31341, 286456, 286458, 286459, 286460, 286461, 286462, 286463, 286464, 286465, 286466, 286467, 286468} },
{"The Ancient Scepter of Sue-Min", {6031342, 31342, 331342, 231342, 1005544, 1012637, 1019283, 1025881, 1032445, 1039008, 1045571, 1052134, 1058697, 1065260} },
{"Kamaei's Cerulean Skirt", {6031343, 31343, 331343, 231343, 1005545, 1012638, 1019284, 1025882, 1032446, 1039009, 1045572, 1052135, 1058698, 1065261} },
{"Wildguard Breastplate", {6031364, 31364, 286469, 286470, 286471, 286472, 286473, 286474, 286475, 286476, 286477, 286478, 286479, 286480} },
{"Wildguard Leggings", {6031367, 31367, 286481, 286482, 286483, 286484, 286485, 286486, 286487, 286488, 286489, 286490, 286491, 286492} },
{"Wildguard Helm", {6031368, 31368, 286493, 286494, 286495, 286496, 286497, 286498, 286499, 286500, 286501, 286502, 286503, 286504} },
{"Iceguard Breastplate", {6031369, 31369, 286505, 286506, 286507, 286508, 286509, 286510, 286511, 286512, 286513, 286514, 286515, 286516} },
{"Iceguard Leggings", {6031370, 31370, 286517, 286518, 286519, 286520, 286521, 286522, 286523, 286524, 286525, 286526, 286527, 286528} },
{"Iceguard Helm", {6031371, 31371, 286529, 286530, 286531, 286532, 286533, 286534, 286535, 286536, 286537, 286538, 286539, 286540} },
{"Acrobat's Mark of the Sha'tar", {6031380, 31380, 286541, 286542, 286543, 286544, 286545, 286546, 286547, 286548, 286549, 286550, 286551, 286552} },
{"Aggressor's Mark of the Sha'tar", {6031381, 31381, 286553, 286554, 286555, 286556, 286557, 286558, 286559, 286560, 286561, 286562, 286563, 286564} },
{"Mage's Mark of the Sha'tar", {6031382, 31382, 286565, 286566, 286567, 286568, 286569, 286570, 286571, 286572, 286573, 286574, 286575, 286576} },
{"Spiritualist's Mark of the Sha'tar", {6031383, 31383, 286577, 286578, 286579, 286580, 286581, 286582, 286583, 286584, 286585, 286586, 286587, 286588} },
{"The Frozen Eye", {6031398, 31398, 286589, 286590, 286591, 286592, 286593, 286594, 286595, 286596, 286597, 286598, 286599, 286600} },
{"The Natural Ward", {6031399, 31399, 286601, 286602, 286603, 286604, 286605, 286606, 286607, 286608, 286609, 286610, 286611, 286612} },
{"Wild Wood Staff", {286614, 31414, 286613, 286615, 286616, 286617, 286618, 286619, 286620, 286621, 286622, 286623, 286624, 286625} },
{"Iron Oak Shield", {286627, 31415, 286626, 286628, 286629, 286630, 286631, 286632, 286633, 286634, 286635, 286636, 286637, 286638} },
{"Scorch Wood Bow", {286640, 31416, 286639, 286641, 286642, 286643, 286644, 286645, 286646, 286647, 286648, 286649, 286650, 286651} },
{"Staff of the Ashtongue Deathsworn", {6031417, 31417, 286652, 286653, 286654, 286655, 286656, 286657, 286658, 286659, 286660, 286661, 286662, 286663} },
{"Sylvanaar Gloves", {286665, 31418, 286664, 286666, 286667, 286668, 286669, 286670, 286671, 286672, 286673, 286674, 286675, 286676} },
{"Living Grove Shoulderpads", {286678, 31419, 286677, 286679, 286680, 286681, 286682, 286683, 286684, 286685, 286686, 286687, 286688, 286689} },
{"Protector's Boots", {286691, 31420, 286690, 286692, 286693, 286694, 286695, 286696, 286697, 286698, 286699, 286700, 286701, 286702} },
{"Sentinel Armbands", {286704, 31421, 286703, 286705, 286706, 286707, 286708, 286709, 286710, 286711, 286712, 286713, 286714, 286715} },
{"Heavy Elven Dirk", {286717, 31422, 286716, 286718, 286719, 286720, 286721, 286722, 286723, 286724, 286725, 286726, 286727, 286728} },
{"Wolf Hewer's Axe", {286730, 31423, 286729, 286731, 286732, 286733, 286734, 286735, 286736, 286737, 286738, 286739, 286740, 286741} },
{"Arcane Wand of Sylvanaar", {286743, 31424, 286742, 286744, 286745, 286746, 286747, 286748, 286749, 286750, 286751, 286752, 286753, 286754} },
{"Ogre Vanquisher's Belt", {286756, 31425, 286755, 286757, 286758, 286759, 286760, 286761, 286762, 286763, 286764, 286765, 286766, 286767} },
{"Agile Mountain Bracers", {286769, 31426, 286768, 286770, 286771, 286772, 286773, 286774, 286775, 286776, 286777, 286778, 286779, 286780} },
{"Sylvanaar Defender's Pauldrons", {286782, 31427, 286781, 286783, 286784, 286785, 286786, 286787, 286788, 286789, 286790, 286791, 286792, 286793} },
{"Commander Skyshadow's Gloves", {286795, 31428, 286794, 286796, 286797, 286798, 286799, 286800, 286801, 286802, 286803, 286804, 286805, 286806} },
{"Spelunker's Mantle", {286808, 31429, 286807, 286809, 286810, 286811, 286812, 286813, 286814, 286815, 286816, 286817, 286818, 286819} },
{"Miner's Gloves", {286821, 31430, 286820, 286822, 286823, 286824, 286825, 286826, 286827, 286828, 286829, 286830, 286831, 286832} },
{"All-Weather Armguards", {286834, 31431, 286833, 286835, 286836, 286837, 286838, 286839, 286840, 286841, 286842, 286843, 286844, 286845} },
{"Explorer's Boots", {286847, 31432, 286846, 286848, 286849, 286850, 286851, 286852, 286853, 286854, 286855, 286856, 286857, 286858} },
{"Sylvanaar Elite Caster's Armor", {286860, 31433, 286859, 286861, 286862, 286863, 286864, 286865, 286866, 286867, 286868, 286869, 286870, 286871} },
{"Ogre Assassin's Britches", {286873, 31434, 286872, 286874, 286875, 286876, 286877, 286878, 286879, 286880, 286881, 286882, 286883, 286884} },
{"Gurn's Horned Helmet", {286886, 31435, 286885, 286887, 286888, 286889, 286890, 286891, 286892, 286893, 286894, 286895, 286896, 286897} },
{"Sylvanaar Champion's Shoulders", {286899, 31436, 286898, 286900, 286901, 286902, 286903, 286904, 286905, 286906, 286907, 286908, 286909, 286910} },
{"Fizit's Mantle of Drake Hunting", {286912, 31438, 286911, 286913, 286914, 286915, 286916, 286917, 286918, 286919, 286920, 286921, 286922, 286923} },
{"Precise Gloves of Alacrity", {286925, 31439, 286924, 286926, 286927, 286928, 286929, 286930, 286931, 286932, 286933, 286934, 286935, 286936} },
{"Devolved Drake Girdle", {286938, 31440, 286937, 286939, 286940, 286941, 286942, 286943, 286944, 286945, 286946, 286947, 286948, 286949} },
{"Clocktock's Jumpers", {286951, 31441, 286950, 286952, 286953, 286954, 286955, 286956, 286957, 286958, 286959, 286960, 286961, 286962} },
{"Metro's Slimming Legs", {286964, 31442, 286963, 286965, 286966, 286967, 286968, 286969, 286970, 286971, 286972, 286973, 286974, 286975} },
{"Nickwinkle's Harness Experiment", {286977, 31443, 286976, 286978, 286979, 286980, 286981, 286982, 286983, 286984, 286985, 286986, 286987, 286988} },
{"Party Hat Mistake", {286990, 31444, 286989, 286991, 286992, 286993, 286994, 286995, 286996, 286997, 286998, 286999, 287000, 287001} },
{"Vibro Shanker", {287016, 31446, 287015, 287017, 287018, 287019, 287020, 287021, 287022, 287023, 287024, 287025, 287026, 287027} },
{"Vibro Dagger", {287029, 31447, 287028, 287030, 287031, 287032, 287033, 287034, 287035, 287036, 287037, 287038, 287039, 287040} },
{"Vibro Sword", {287042, 31448, 287041, 287043, 287044, 287045, 287046, 287047, 287048, 287049, 287050, 287051, 287052, 287053} },
{"Energized Wristwraps", {287055, 31452, 287054, 287056, 287057, 287058, 287059, 287060, 287061, 287062, 287063, 287064, 287065, 287066} },
{"Charged Footwear", {287068, 31453, 287067, 287069, 287070, 287071, 287072, 287073, 287074, 287075, 287076, 287077, 287078, 287079} },
{"Scalewing Gloves", {287081, 31454, 287080, 287082, 287083, 287084, 287085, 287086, 287087, 287088, 287089, 287090, 287091, 287092} },
{"Muscle Toning Belt", {287094, 31455, 287093, 287095, 287096, 287097, 287098, 287099, 287100, 287101, 287102, 287103, 287104, 287105} },
{"Gnomish Casting Boots", {287107, 31456, 287106, 287108, 287109, 287110, 287111, 287112, 287113, 287114, 287115, 287116, 287117, 287118} },
{"Toshley's Station Hero's Hat", {287120, 31457, 287119, 287121, 287122, 287123, 287124, 287125, 287126, 287127, 287128, 287129, 287130, 287131} },
{"Razaani-Buster Leggings", {287133, 31458, 287132, 287134, 287135, 287136, 287137, 287138, 287139, 287140, 287141, 287142, 287143, 287144} },
{"Soul Saver's Chest Plate", {287146, 31459, 287145, 287147, 287148, 287149, 287150, 287151, 287152, 287153, 287154, 287155, 287156, 287157} },
{"Sha'tari Vindicator's Waistguard", {6031460, 31460, 287158, 287159, 287160, 287161, 287162, 287163, 287164, 287165, 287166, 287167, 287168, 287169} },
{"A'dal's Gift", {6031461, 31461, 287170, 287171, 287172, 287173, 287174, 287175, 287176, 287177, 287178, 287179, 287180, 287181} },
{"Shattrath's Champion Belt", {6031462, 31462, 287182, 287183, 287184, 287185, 287186, 287187, 287188, 287189, 287190, 287191, 287192, 287193} },
{"Naaru Belt of Precision", {6031464, 31464, 287194, 287195, 287196, 287197, 287198, 287199, 287200, 287201, 287202, 287203, 287204, 287205} },
{"Sha'tari Anchorite's Cloak", {6031465, 31465, 287206, 287207, 287208, 287209, 287210, 287211, 287212, 287213, 287214, 287215, 287216, 287217} },
{"Witch Doctor's Beads", {287219, 31470, 287218, 287220, 287221, 287222, 287223, 287224, 287225, 287226, 287227, 287228, 287229, 287230} },
{"T'chali's Kilt", {287232, 31471, 287231, 287233, 287234, 287235, 287236, 287237, 287238, 287239, 287240, 287241, 287242, 287243} },
{"Hexxer's Belt", {287245, 31472, 287244, 287246, 287247, 287248, 287249, 287250, 287251, 287252, 287253, 287254, 287255, 287256} },
{"Ogre Defiler's Handguards", {287258, 31473, 287257, 287259, 287260, 287261, 287262, 287263, 287264, 287265, 287266, 287267, 287268, 287269} },
{"Wand of the Ancestors", {287271, 31474, 287270, 287272, 287273, 287274, 287275, 287276, 287277, 287278, 287279, 287280, 287281, 287282} },
{"Thunderlord Scalpel", {287284, 31475, 287283, 287285, 287286, 287287, 287288, 287289, 287290, 287291, 287292, 287293, 287294, 287295} },
{"Slow Death Dirk", {287297, 31476, 287296, 287298, 287299, 287300, 287301, 287302, 287303, 287304, 287305, 287306, 287307, 287308} },
{"Red Hands of the Thunderlord", {287310, 31477, 287309, 287311, 287312, 287313, 287314, 287315, 287316, 287317, 287318, 287319, 287320, 287321} },
{"Tor'chunk's Foot Covers", {287323, 31478, 287322, 287324, 287325, 287326, 287327, 287328, 287329, 287330, 287331, 287332, 287333, 287334} },
{"Rugged Mountain Bracers", {287336, 31479, 287335, 287337, 287338, 287339, 287340, 287341, 287342, 287343, 287344, 287345, 287346, 287347} },
{"Ogre Beater's Belt", {287349, 31480, 287348, 287350, 287351, 287352, 287353, 287354, 287355, 287356, 287357, 287358, 287359, 287360} },
{"Thunderlord Armbands", {287362, 31481, 287361, 287363, 287364, 287365, 287366, 287367, 287368, 287369, 287370, 287371, 287372, 287373} },
{"Dire Wolf Handler Gloves", {287375, 31482, 287374, 287376, 287377, 287378, 287379, 287380, 287381, 287382, 287383, 287384, 287385, 287386} },
{"Gor'drek's Pauldrons", {287388, 31483, 287387, 287389, 287390, 287391, 287392, 287393, 287394, 287395, 287396, 287397, 287398, 287399} },
{"Wolf Chaps", {287401, 31484, 287400, 287402, 287403, 287404, 287405, 287406, 287407, 287408, 287409, 287410, 287411, 287412} },
{"Dark Deed Leggings", {287414, 31485, 287413, 287415, 287416, 287417, 287418, 287419, 287420, 287421, 287422, 287423, 287424, 287425} },
{"Bear-Strength Harness", {287427, 31486, 287426, 287428, 287429, 287430, 287431, 287432, 287433, 287434, 287435, 287436, 287437, 287438} },
{"Wild Horned Helm", {287440, 31487, 287439, 287441, 287442, 287443, 287444, 287445, 287446, 287447, 287448, 287449, 287450, 287451} },
{"Boots of the Ancient-Killer", {287453, 31488, 287452, 287454, 287455, 287456, 287457, 287458, 287459, 287460, 287461, 287462, 287463, 287464} },
{"Netherwing Protector's Shield", {6031490, 31490, 287465, 287466, 287467, 287468, 287469, 287470, 287471, 287472, 287473, 287474, 287475, 287476} },
{"Netherwing Defender's Shield", {6031491, 31491, 287477, 287478, 287479, 287480, 287481, 287482, 287483, 287484, 287485, 287486, 287487, 287488} },
{"Claw of the Netherwing Flight", {6031492, 31492, 287489, 287490, 287491, 287492, 287493, 287494, 287495, 287496, 287497, 287498, 287499, 287500} },
{"Netherwing Spiritualist's Charm", {6031493, 31493, 287501, 287502, 287503, 287504, 287505, 287506, 287507, 287508, 287509, 287510, 287511, 287512} },
{"Netherwing Sorceror's Charm", {6031494, 31494, 287513, 287514, 287515, 287516, 287517, 287518, 287519, 287520, 287521, 287522, 287523, 287524} },
{"Coven Britches", {287526, 31508, 287525, 287527, 287528, 287529, 287530, 287531, 287532, 287533, 287534, 287535, 287536, 287537} },
{"Wyrmcultist's Hood", {287539, 31509, 287538, 287540, 287541, 287542, 287543, 287544, 287545, 287546, 287547, 287548, 287549, 287550} },
{"Hewing Gloves", {287552, 31510, 287551, 287553, 287554, 287555, 287556, 287557, 287558, 287559, 287560, 287561, 287562, 287563} },
{"Chest of the Wyrmcult", {287565, 31511, 287564, 287566, 287567, 287568, 287569, 287570, 287571, 287572, 287573, 287574, 287575, 287576} },
{"Tree Warden's Belt", {287578, 31512, 287577, 287579, 287580, 287581, 287582, 287583, 287584, 287585, 287586, 287587, 287588, 287589} },
{"Blackwhelp Belt", {287591, 31513, 287590, 287592, 287593, 287594, 287595, 287596, 287597, 287598, 287599, 287600, 287601, 287602} },
{"Dragonkin Shirt", {287604, 31514, 287603, 287605, 287606, 287607, 287608, 287609, 287610, 287611, 287612, 287613, 287614, 287615} },
{"Whelpscale Gauntlets", {287617, 31515, 287616, 287618, 287619, 287620, 287621, 287622, 287623, 287624, 287625, 287626, 287627, 287628} },
{"Bracers of the Weald", {287630, 31516, 287629, 287631, 287632, 287633, 287634, 287635, 287636, 287637, 287638, 287639, 287640, 287641} },
{"Inkling's Leggings", {287643, 31519, 287642, 287644, 287645, 287646, 287647, 287648, 287649, 287650, 287651, 287652, 287653, 287654} },
{"Blackwing Helm", {287656, 31520, 287655, 287657, 287658, 287659, 287660, 287661, 287662, 287663, 287664, 287665, 287666, 287667} },
{"Expedition Defender's Shoulders", {287669, 31521, 287668, 287670, 287671, 287672, 287673, 287674, 287675, 287676, 287677, 287678, 287679, 287680} },
{"Treebole's Hoop", {287682, 31523, 287681, 287683, 287684, 287685, 287686, 287687, 287688, 287689, 287690, 287691, 287692, 287693} },
{"Raven's Wood Exorciser's Band", {287695, 31526, 287694, 287696, 287697, 287698, 287699, 287700, 287701, 287702, 287703, 287704, 287705, 287706} },
{"Leafbeard Ring", {287708, 31527, 287707, 287709, 287710, 287711, 287712, 287713, 287714, 287715, 287716, 287717, 287718, 287719} },
{"Ring of the Stonebark", {287721, 31528, 287720, 287722, 287723, 287724, 287725, 287726, 287727, 287728, 287729, 287730, 287731, 287732} },
{"Wraithcloth Bindings", {287734, 31531, 287733, 287735, 287736, 287737, 287738, 287739, 287740, 287741, 287742, 287743, 287744, 287745} },
{"Supple Leather Boots", {287747, 31532, 287746, 287748, 287749, 287750, 287751, 287752, 287753, 287754, 287755, 287756, 287757, 287758} },
{"Diluvian Spaulders", {287760, 31533, 287759, 287761, 287762, 287763, 287764, 287765, 287766, 287767, 287768, 287769, 287770, 287771} },
{"Whiteknuckle Gauntlets", {287773, 31534, 287772, 287774, 287775, 287776, 287777, 287778, 287779, 287780, 287781, 287782, 287783, 287784} },
{"Darktread Boots", {287786, 31537, 287785, 287787, 287788, 287789, 287790, 287791, 287792, 287793, 287794, 287795, 287796, 287797} },
{"Twin Moon Shoulderguards", {287799, 31538, 287798, 287800, 287801, 287802, 287803, 287804, 287805, 287806, 287807, 287808, 287809, 287810} },
{"Chaintwine Cinch", {287812, 31539, 287811, 287813, 287814, 287815, 287816, 287817, 287818, 287819, 287820, 287821, 287822, 287823} },
{"Fairweather's Wristguards", {287825, 31540, 287824, 287826, 287827, 287828, 287829, 287830, 287831, 287832, 287833, 287834, 287835, 287836} },
{"Whistling Sword", {287838, 31541, 287837, 287839, 287840, 287841, 287842, 287843, 287844, 287845, 287846, 287847, 287848, 287849} },
{"Fanged Axe", {287851, 31542, 287850, 287852, 287853, 287854, 287855, 287856, 287857, 287858, 287859, 287860, 287861, 287862} },
{"Adjudicator's Staff", {287864, 31543, 287863, 287865, 287866, 287867, 287868, 287869, 287870, 287871, 287872, 287873, 287874, 287875} },
{"Clefthoof Hide Leggings", {6031544, 31544, 287876, 287877, 287878, 287879, 287880, 287881, 287882, 287883, 287884, 287885, 287886, 287887} },
{"Oilcloth Breeches", {6031545, 31545, 287888, 287889, 287890, 287891, 287892, 287893, 287894, 287895, 287896, 287897, 287898, 287899} },
{"Tourmaline Crown", {6031546, 31546, 287900, 287901, 287902, 287903, 287904, 287905, 287906, 287907, 287908, 287909, 287910, 287911} },
{"Malefactor's Eyepatch", {6031547, 31547, 287912, 287913, 287914, 287915, 287916, 287917, 287918, 287919, 287920, 287921, 287922, 287923} },
{"Blackened Chestplate", {6031548, 31548, 287924, 287925, 287926, 287927, 287928, 287929, 287930, 287931, 287932, 287933, 287934, 287935} },
{"Leonine Breastplate", {6031549, 31549, 287936, 287937, 287938, 287939, 287940, 287941, 287942, 287943, 287944, 287945, 287946, 287947} },
{"Windchanneller's Miter", {6031552, 31552, 287948, 287949, 287950, 287951, 287952, 287953, 287954, 287955, 287956, 287957, 287958, 287959} },
{"Windchanneller's Mantle", {6031553, 31553, 287960, 287961, 287962, 287963, 287964, 287965, 287966, 287967, 287968, 287969, 287970, 287971} },
{"Windchanneller's Tunic", {6031554, 31554, 287972, 287973, 287974, 287975, 287976, 287977, 287978, 287979, 287980, 287981, 287982, 287983} },
{"Windchanneller's Ceinture", {6031555, 31555, 287984, 287985, 287986, 287987, 287988, 287989, 287990, 287991, 287992, 287993, 287994, 287995} },
{"Windchanneller's Leggings", {6031556, 31556, 287996, 287997, 287998, 287999, 288000, 288001, 288002, 288003, 288004, 288005, 288006, 288007} },
{"Windchanneller's Boots", {6031557, 31557, 288008, 288009, 288010, 288011, 288012, 288013, 288014, 288015, 288016, 288017, 288018, 288019} },
{"Windchanneller's Bindings", {6031558, 31558, 288020, 288021, 288022, 288023, 288024, 288025, 288026, 288027, 288028, 288029, 288030, 288031} },
{"Windchanneller's Gloves", {6031559, 31559, 288032, 288033, 288034, 288035, 288036, 288037, 288038, 288039, 288040, 288041, 288042, 288043} },
{"Skystalker's Shroud", {6031560, 31560, 288044, 288045, 288046, 288047, 288048, 288049, 288050, 288051, 288052, 288053, 288054, 288055} },
{"Skystalker's Shoulders", {6031561, 31561, 288056, 288057, 288058, 288059, 288060, 288061, 288062, 288063, 288064, 288065, 288066, 288067} },
{"Skystalker's Tunic", {6031562, 31562, 288068, 288069, 288070, 288071, 288072, 288073, 288074, 288075, 288076, 288077, 288078, 288079} },
{"Skystalker's Cord", {6031563, 31563, 288080, 288081, 288082, 288083, 288084, 288085, 288086, 288087, 288088, 288089, 288090, 288091} },
{"Skystalker's Leggings", {6031564, 31564, 288092, 288093, 288094, 288095, 288096, 288097, 288098, 288099, 288100, 288101, 288102, 288103} },
{"Skystalker's Boots", {6031565, 31565, 288104, 288105, 288106, 288107, 288108, 288109, 288110, 288111, 288112, 288113, 288114, 288115} },
{"Skystalker's Bracers", {6031566, 31566, 288116, 288117, 288118, 288119, 288120, 288121, 288122, 288123, 288124, 288125, 288126, 288127} },
{"Skystalker's Gloves", {6031567, 31567, 288128, 288129, 288130, 288131, 288132, 288133, 288134, 288135, 288136, 288137, 288138, 288139} },
{"Mistshroud Helm", {6031568, 31568, 288140, 288141, 288142, 288143, 288144, 288145, 288146, 288147, 288148, 288149, 288150, 288151} },
{"Mistshroud Shoulders", {6031569, 31569, 288152, 288153, 288154, 288155, 288156, 288157, 288158, 288159, 288160, 288161, 288162, 288163} },
{"Mistshroud Tunic", {6031570, 31570, 288164, 288165, 288166, 288167, 288168, 288169, 288170, 288171, 288172, 288173, 288174, 288175} },
{"Mistshroud Belt", {6031571, 31571, 288176, 288177, 288178, 288179, 288180, 288181, 288182, 288183, 288184, 288185, 288186, 288187} },
{"Mistshroud Pants", {6031572, 31572, 288188, 288189, 288190, 288191, 288192, 288193, 288194, 288195, 288196, 288197, 288198, 288199} },
{"Mistshroud Boots", {6031573, 31573, 288200, 288201, 288202, 288203, 288204, 288205, 288206, 288207, 288208, 288209, 288210, 288211} },
{"Mistshroud Bracers", {6031574, 31574, 288212, 288213, 288214, 288215, 288216, 288217, 288218, 288219, 288220, 288221, 288222, 288223} },
{"Mistshroud Gauntlets", {6031575, 31575, 288224, 288225, 288226, 288227, 288228, 288229, 288230, 288231, 288232, 288233, 288234, 288235} },
{"Slatesteel Helm", {6031576, 31576, 288236, 288237, 288238, 288239, 288240, 288241, 288242, 288243, 288244, 288245, 288246, 288247} },
{"Slatesteel Shoulders", {6031577, 31577, 288248, 288249, 288250, 288251, 288252, 288253, 288254, 288255, 288256, 288257, 288258, 288259} },
{"Slatesteel Breastplate", {6031578, 31578, 288260, 288261, 288262, 288263, 288264, 288265, 288266, 288267, 288268, 288269, 288270, 288271} },
{"Slatesteel Girdle", {6031579, 31579, 288272, 288273, 288274, 288275, 288276, 288277, 288278, 288279, 288280, 288281, 288282, 288283} },
{"Slatesteel Leggings", {6031580, 31580, 288284, 288285, 288286, 288287, 288288, 288289, 288290, 288291, 288292, 288293, 288294, 288295} },
{"Slatesteel Boots", {6031581, 31581, 288296, 288297, 288298, 288299, 288300, 288301, 288302, 288303, 288304, 288305, 288306, 288307} },
{"Slatesteel Bracers", {6031582, 31582, 288308, 288309, 288310, 288311, 288312, 288313, 288314, 288315, 288316, 288317, 288318, 288319} },
{"Slatesteel Gauntlets", {6031583, 31583, 288320, 288321, 288322, 288323, 288324, 288325, 288326, 288327, 288328, 288329, 288330, 288331} },
{"Ancient Draenei Arcane Relic", {288535, 31615, 288534, 288536, 288537, 288538, 288539, 288540, 288541, 288542, 288543, 288544, 288545, 288546} },
{"Ancient Draenei War Talisman", {288548, 31617, 288547, 288549, 288550, 288551, 288552, 288553, 288554, 288555, 288556, 288557, 288558, 288559} },
{"Chemise of Rebirth", {288951, 31657, 288950, 288952, 288953, 288954, 288955, 288956, 288957, 288958, 288959, 288960, 288961, 288962} },
{"Scout's Hood", {288964, 31658, 288963, 288965, 288966, 288967, 288968, 288969, 288970, 288971, 288972, 288973, 288974, 288975} },
{"Researcher's Mantle", {288977, 31659, 288976, 288978, 288979, 288980, 288981, 288982, 288983, 288984, 288985, 288986, 288987, 288988} },
{"Feralfen Skulker's Belt", {288990, 31660, 288989, 288991, 288992, 288993, 288994, 288995, 288996, 288997, 288998, 288999, 289000, 289001} },
{"Leesa'oh's Wristbands", {289003, 31661, 289002, 289004, 289005, 289006, 289007, 289008, 289009, 289010, 289011, 289012, 289013, 289014} },
{"Dreadwing Skin Belt", {289016, 31683, 289015, 289017, 289018, 289019, 289020, 289021, 289022, 289023, 289024, 289025, 289026, 289027} },
{"Netherhide Gloves", {289029, 31684, 289028, 289030, 289031, 289032, 289033, 289034, 289035, 289036, 289037, 289038, 289039, 289040} },
{"Brood Mother Leggings", {289042, 31685, 289041, 289043, 289044, 289045, 289046, 289047, 289048, 289049, 289050, 289051, 289052, 289053} },
{"Nether Protector's Chest", {289055, 31686, 289054, 289056, 289057, 289058, 289059, 289060, 289061, 289062, 289063, 289064, 289065, 289066} },
{"Mok'Nathal Mantle", {289068, 31687, 289067, 289069, 289070, 289071, 289072, 289073, 289074, 289075, 289076, 289077, 289078, 289079} },
{"Spiritcaller's Mask", {289081, 31688, 289080, 289082, 289083, 289084, 289085, 289086, 289087, 289088, 289089, 289090, 289091, 289092} },
{"Mok'Nathal Hero's Pantaloons", {289094, 31689, 289093, 289095, 289096, 289097, 289098, 289099, 289100, 289101, 289102, 289103, 289104, 289105} },
{"Belt of the Soul Saver", {289107, 31690, 289106, 289108, 289109, 289110, 289111, 289112, 289113, 289114, 289115, 289116, 289117, 289118} },
{"Natasha's Guardian Cord", {6031691, 31691, 289119, 289120, 289121, 289122, 289123, 289124, 289125, 289126, 289127, 289128, 289129, 289130} },
{"Natasha's Ember Necklace", {6031692, 31692, 289131, 289132, 289133, 289134, 289135, 289136, 289137, 289138, 289139, 289140, 289141, 289142} },
{"Natasha's Arcane Filament", {6031693, 31693, 289143, 289144, 289145, 289146, 289147, 289148, 289149, 289150, 289151, 289152, 289153, 289154} },
{"Natasha's Pack Collar", {6031694, 31694, 289155, 289156, 289157, 289158, 289159, 289160, 289161, 289162, 289163, 289164, 289165, 289166} },
{"Natasha's Choker", {6031695, 31695, 289167, 289168, 289169, 289170, 289171, 289172, 289173, 289174, 289175, 289176, 289177, 289178} },
{"Natasha's Battle Chain", {6031696, 31696, 289179, 289180, 289181, 289182, 289183, 289184, 289185, 289186, 289187, 289188, 289189, 289190} },
{"Imbued Draenethyst Crystal", {289192, 31699, 289191, 289193, 289194, 289195, 289196, 289197, 289198, 289199, 289200, 289201, 289202, 289203} },
{"Runed Silver Staff", {289205, 31700, 289204, 289206, 289207, 289208, 289209, 289210, 289211, 289212, 289213, 289214, 289215, 289216} },
{"Saboteur's Axe", {289218, 31701, 289217, 289219, 289220, 289221, 289222, 289223, 289224, 289225, 289226, 289227, 289228, 289229} },
{"Nether-Stalker's Blade", {289231, 31703, 289230, 289232, 289233, 289234, 289235, 289236, 289237, 289238, 289239, 289240, 289241, 289242} },
{"Nether-Empowered Footgear", {289244, 31711, 289243, 289245, 289246, 289247, 289248, 289249, 289250, 289251, 289252, 289253, 289254, 289255} },
{"Mok'Nathal Champion's Shoulderguards", {289257, 31712, 289256, 289258, 289259, 289260, 289261, 289262, 289263, 289264, 289265, 289266, 289267, 289268} },
{"Ritualist's Helm", {289270, 31713, 289269, 289271, 289272, 289273, 289274, 289275, 289276, 289277, 289278, 289279, 289280, 289281} },
{"Nether Drake Wristguards", {289283, 31714, 289282, 289284, 289285, 289286, 289287, 289288, 289289, 289290, 289291, 289292, 289293, 289294} },
{"Demoniac Soul Prison", {289296, 31715, 289295, 289297, 289298, 289299, 289300, 289301, 289302, 289303, 289304, 289305, 289306, 289307} },
{"Shadowcast Tunic", {6031717, 31717, 289308, 289309, 289310, 289311, 289312, 289313, 289314, 289315, 289316, 289317, 289318, 289319} },
{"Darkstorm Tunic", {6031718, 31718, 289320, 289321, 289322, 289323, 289324, 289325, 289326, 289327, 289328, 289329, 289330, 289331} },
{"Stormstrike Vest", {6031719, 31719, 289332, 289333, 289334, 289335, 289336, 289337, 289338, 289339, 289340, 289341, 289342, 289343} },
{"Battlemaster's Breastplate", {6031720, 31720, 289344, 289345, 289346, 289347, 289348, 289349, 289350, 289351, 289352, 289353, 289354, 289355} },
{"Madman's Blade", {289357, 31723, 289356, 289358, 289359, 289360, 289361, 289362, 289363, 289364, 289365, 289366, 289367, 289368} },
{"Arakkoa Divining Rod", {289370, 31724, 289369, 289371, 289372, 289373, 289374, 289375, 289376, 289377, 289378, 289379, 289380, 289381} },
{"Cilice of Suffering", {289383, 31725, 289382, 289384, 289385, 289386, 289387, 289388, 289389, 289390, 289391, 289392, 289393, 289394} },
{"Necklace of Bloodied Feathers", {6031726, 31726, 289395, 289396, 289397, 289398, 289399, 289400, 289401, 289402, 289403, 289404, 289405, 289406} },
{"Choker of Bloodied Feathers", {6031727, 31727, 289407, 289408, 289409, 289410, 289411, 289412, 289413, 289414, 289415, 289416, 289417, 289418} },
{"Heirloom Signet of Willpower", {289420, 31728, 289419, 289421, 289422, 289423, 289424, 289425, 289426, 289427, 289428, 289429, 289430, 289431} },
{"Heirloom Signet of Valor", {289433, 31729, 289432, 289434, 289435, 289436, 289437, 289438, 289439, 289440, 289441, 289442, 289443, 289444} },
{"Heirloom Signet of Convalescence", {289446, 31730, 289445, 289447, 289448, 289449, 289450, 289451, 289452, 289453, 289454, 289455, 289456, 289457} },
{"Mekeda's Gift", {289459, 31731, 289458, 289460, 289461, 289462, 289463, 289464, 289465, 289466, 289467, 289468, 289469, 289470} },
{"Unearthed Orb", {289472, 31732, 289471, 289473, 289474, 289475, 289476, 289477, 289478, 289479, 289480, 289481, 289482, 289483} },
{"Akuno's Blade", {289485, 31733, 289484, 289486, 289487, 289488, 289489, 289490, 289491, 289492, 289493, 289494, 289495, 289496} },
{"Ancient Draenei Crest", {289498, 31734, 289497, 289499, 289500, 289501, 289502, 289503, 289504, 289505, 289506, 289507, 289508, 289509} },
{"Illidari-Bane Dagger", {6031745, 31745, 289510, 289511, 289512, 289513, 289514, 289515, 289516, 289517, 289518, 289519, 289520, 289521} },
{"Phoenix-fire Band", {6031746, 31746, 289522, 289523, 289524, 289525, 289526, 289527, 289528, 289529, 289530, 289531, 289532, 289533} },
{"Potent Sha'tari Pendant", {6031747, 31747, 289534, 289535, 289536, 289537, 289538, 289539, 289540, 289541, 289542, 289543, 289544, 289545} },
{"Shattrath Choker of Power", {6031748, 31748, 289546, 289547, 289548, 289549, 289550, 289551, 289552, 289553, 289554, 289555, 289556, 289557} },
{"A'dal's Recovery Necklace", {6031749, 31749, 289558, 289559, 289560, 289561, 289562, 289563, 289564, 289565, 289566, 289567, 289568, 289569} },
{"Dib'Muad's Crysknife", {6031756, 31756, 289570, 289571, 289572, 289573, 289574, 289575, 289576, 289577, 289578, 289579, 289580, 289581} },
{"Revered Mother's Crysknife", {6031758, 31758, 289582, 289583, 289584, 289585, 289586, 289587, 289588, 289589, 289590, 289591, 289592, 289593} },
{"Shani's Crysknife", {6031759, 31759, 289594, 289595, 289596, 289597, 289598, 289599, 289600, 289601, 289602, 289603, 289604, 289605} },
{"Talonbranch Wand", {289607, 31761, 289606, 289608, 289609, 289610, 289611, 289612, 289613, 289614, 289615, 289616, 289617, 289618} },
{"Feather-Wrapped Bow", {289620, 31762, 289619, 289621, 289622, 289623, 289624, 289625, 289626, 289627, 289628, 289629, 289630, 289631} },
{"Stillfire Leggings", {289633, 31764, 289632, 289634, 289635, 289636, 289637, 289638, 289639, 289640, 289641, 289642, 289643, 289644} },
{"Redeemer's Plate", {289646, 31765, 289645, 289647, 289648, 289649, 289650, 289651, 289652, 289653, 289654, 289655, 289656, 289657} },
{"Skywitch Hat", {289659, 31766, 289658, 289660, 289661, 289662, 289663, 289664, 289665, 289666, 289669, 289670, 289671, 289672} },
{"Deep Mire Cloak", {289674, 31768, 289673, 289675, 289676, 289677, 289678, 289679, 289680, 289681, 289682, 289683, 289684, 289685} },
{"Marsh Bracers", {289687, 31770, 289686, 289688, 289689, 289690, 289691, 289692, 289693, 289694, 289695, 289696, 289697, 289698} },
{"Warpstalker Breastplate", {289700, 31782, 289699, 289701, 289702, 289703, 289704, 289705, 289706, 289707, 289708, 289709, 289710, 289711} },
{"Bloodfire Leggings", {289713, 31783, 289712, 289714, 289715, 289716, 289717, 289718, 289719, 289720, 289721, 289722, 289723, 289724} },
{"Ancient Terokkar Hood", {289726, 31784, 289725, 289727, 289728, 289729, 289730, 289731, 289732, 289733, 289734, 289735, 289736, 289737} },
{"Edge of Inevitability", {289739, 31785, 289738, 289740, 289741, 289742, 289743, 289744, 289745, 289746, 289747, 289748, 289749, 289750} },
{"Blacksting Shoulders", {289752, 31786, 289751, 289753, 289754, 289755, 289756, 289757, 289758, 289759, 289760, 289761, 289762, 289763} },
{"Stalwart Girdle", {289765, 31787, 289764, 289766, 289767, 289768, 289769, 289770, 289771, 289772, 289773, 289774, 289775, 289776} },
{"Blacksting Gloves", {289778, 31788, 289777, 289779, 289780, 289781, 289782, 289783, 289784, 289785, 289786, 289787, 289788, 289789} },
{"Marshfang Boots", {289791, 31789, 289790, 289792, 289793, 289794, 289795, 289796, 289797, 289798, 289799, 289800, 289801, 289802} },
{"Expedition Pendant", {289804, 31790, 289803, 289805, 289806, 289807, 289808, 289809, 289810, 289811, 289812, 289813, 289814, 289815} },
{"Wildlord's Band", {289817, 31791, 289816, 289818, 289819, 289820, 289821, 289822, 289823, 289824, 289825, 289826, 289827, 289828} },
{"Evergrove Ranger's Cloak", {289830, 31792, 289829, 289831, 289832, 289833, 289834, 289835, 289836, 289837, 289838, 289839, 289840, 289841} },
{"Ruuan Weald Wristguards", {289843, 31793, 289842, 289844, 289845, 289846, 289847, 289848, 289849, 289850, 289851, 289852, 289853, 289854} },
{"Sha'tari Vindicator's Legplates", {289856, 31794, 289855, 289857, 289858, 289859, 289860, 289861, 289862, 289863, 289864, 289865, 289866, 289867} },
{"Sha'tari Marksman's Gloves", {289869, 31796, 289868, 289870, 289871, 289872, 289873, 289874, 289875, 289876, 289877, 289878, 289879, 289880} },
{"Elekk Hide Spaulders", {289882, 31797, 289881, 289883, 289884, 289885, 289886, 289887, 289888, 289889, 289890, 289891, 289892, 289893} },
{"Death-Speaker's Tunic", {289895, 31798, 289894, 289896, 289897, 289898, 289899, 289900, 289901, 289902, 289903, 289904, 289905, 289906} },
{"Fleshling Simulation Staff", {6031802, 31802, 289907, 289908, 289909, 289910, 289911, 289912, 289913, 289914, 289915, 289916, 289917, 289918} },
{"Dragonbone Greatsword", {289920, 31816, 289919, 289921, 289922, 289923, 289924, 289925, 289926, 289927, 289928, 289929, 289930, 289931} },
{"Dragonbone Shoulders", {289933, 31817, 289932, 289934, 289935, 289936, 289937, 289938, 289939, 289940, 289941, 289942, 289943, 289944} },
{"Dragonbone Talisman", {289946, 31818, 289945, 289947, 289948, 289949, 289950, 289951, 289952, 289953, 289954, 289955, 289956, 289957} },
{"Noble Plate Pauldrons", {289959, 31819, 289958, 289960, 289961, 289962, 289963, 289964, 289965, 289966, 289967, 289968, 289969, 289970} },
{"Blessed Signet Ring", {289972, 31820, 289971, 289973, 289974, 289975, 289976, 289977, 289978, 289979, 289980, 289981, 289982, 289983} },
{"Blade of Retribution", {289985, 31821, 289984, 289986, 289987, 289988, 289989, 289990, 289991, 289992, 289993, 289994, 289995, 289996} },
{"Book of Many Blessings", {289998, 31823, 289997, 289999, 290000, 290001, 290002, 290003, 290004, 290005, 290006, 290007, 290008, 290009} },
{"Darkmoon Card: Crusade", {6031856, 31856, 290010, 290011, 290012, 290013, 290014, 290015, 290016, 290017, 290018, 290019, 290020, 290021} },
{"Darkmoon Card: Wrath", {6031857, 31857, 290022, 290023, 290024, 290025, 290026, 290027, 290028, 290029, 290030, 290031, 290032, 290033} },
{"Darkmoon Card: Vengeance", {6031858, 31858, 290034, 290035, 290036, 290037, 290038, 290039, 290040, 290041, 290042, 290043, 290044, 290045} },
{"Darkmoon Card: Madness", {6031859, 31859, 290046, 290047, 290048, 290049, 290050, 290051, 290052, 290053, 290054, 290055, 290056, 290057} },
{"Nexus-Prince's Ring of Balance", {6031919, 31919, 290058, 290059, 290060, 290061, 290062, 290063, 290064, 290065, 290066, 290067, 290068, 290069} },
{"Shaffar's Band of Brutality", {6031920, 31920, 290070, 290071, 290072, 290073, 290074, 290075, 290076, 290077, 290078, 290079, 290080, 290081} },
{"Yor's Collapsing Band", {6031921, 31921, 290082, 290083, 290084, 290085, 290086, 290087, 290088, 290089, 290090, 290091, 290092, 290093} },
{"Ring of Conflict Survival", {6031922, 31922, 290094, 290095, 290096, 290097, 290098, 290099, 290100, 290101, 290102, 290103, 290104, 290105} },
{"Band of the Crystalline Void", {6031923, 31923, 290106, 290107, 290108, 290109, 290110, 290111, 290112, 290113, 290114, 290115, 290116, 290117} },
{"Yor's Revenge", {6031924, 31924, 290118, 290119, 290120, 290121, 290122, 290123, 290124, 290125, 290126, 290127, 290128, 290129} },
{"Fiery Band", {6031925, 31925, 290130, 290131, 290132, 290133, 290134, 290135, 290136, 290137, 290138, 290139, 290140, 290141} },
{"Frigid Band", {6031926, 31926, 290142, 290143, 290144, 290145, 290146, 290147, 290148, 290149, 290150, 290151, 290152, 290153} },
{"Living Band", {6031927, 31927, 290154, 290155, 290156, 290157, 290158, 290159, 290160, 290161, 290162, 290163, 290164, 290165} },
{"Dark Band", {6031928, 31928, 290166, 290167, 290168, 290169, 290170, 290171, 290172, 290173, 290174, 290175, 290176, 290177} },
{"Enigmatic Band", {6031929, 31929, 290178, 290179, 290180, 290181, 290182, 290183, 290184, 290185, 290186, 290187, 290188, 290189} },
{"Frigid Cloak", {6031935, 31935, 290190, 290191, 290192, 290193, 290194, 290195, 290196, 290197, 290198, 290199, 290200, 290201} },
{"Fiery Cloak", {6031936, 31936, 290202, 290203, 290204, 290205, 290206, 290207, 290208, 290209, 290210, 290211, 290212, 290213} },
{"Living Cloak", {6031937, 31937, 290214, 290215, 290216, 290217, 290218, 290219, 290220, 290221, 290222, 290223, 290224, 290225} },
{"Enigmatic Cloak", {6031938, 31938, 290226, 290227, 290228, 290229, 290230, 290231, 290232, 290233, 290234, 290235, 290236, 290237} },
{"Dark Cloak", {6031939, 31939, 290238, 290239, 290240, 290241, 290242, 290243, 290244, 290245, 290246, 290247, 290248, 290249} },
{"Ethereum Torque", {6031940, 31940, 290250, 290251, 290252, 290253, 290254, 290255, 290256, 290257, 290258, 290259, 290260, 290261} },
{"Deathwing Brood Cloak", {6031942, 31942, 290262, 290263, 290264, 290265, 290266, 290267, 290268, 290269, 290270, 290271, 290272, 290273} },
{"Ethereum Band", {6031943, 31943, 290274, 290275, 290276, 290277, 290278, 290279, 290280, 290281, 290282, 290283, 290284, 290285} },
{"Gauntlets of Dissension", {6032072, 32072, 116899, 432072, 1007808, 1014691, 1021355, 1027920, 1034484, 1041047, 1047610, 1054173, 1060736, 1067299} },
{"Spaulders of Dementia", {6032073, 32073, 128003, 432073, 1007809, 1014692, 1021356, 1027921, 1034485, 1041048, 1047611, 1054174, 1060737, 1067300} },
{"Handguards of the Steady", {6032076, 32076, 120460, 432076, 1007810, 1014693, 1021357, 1027922, 1034486, 1041049, 1047612, 1054175, 1060738, 1067301} },
{"Wrath Infused Gauntlets", {6032077, 32077, 130951, 432077, 1007811, 1014694, 1021358, 1027923, 1034487, 1041050, 1047613, 1054176, 1060739, 1067302} },
{"Pauldrons of Wild Magic", {6032078, 32078, 123391, 432078, 1007812, 1014695, 1021359, 1027924, 1034488, 1041051, 1047614, 1054177, 1060740, 1067303} },
{"Mantle of Shadowy Embrace", {6032080, 32080, 122728, 432080, 1007813, 1014696, 1021360, 1027925, 1034489, 1041052, 1047615, 1054178, 1060741, 1067304} },
{"Eye of the Stalker", {6032081, 32081, 113526, 432081, 1007814, 1014697, 1021361, 1027926, 1034490, 1041053, 1047616, 1054179, 1060742, 1067305} },
{"The Fel Barrier", {6032082, 32082, 130335, 432082, 1007815, 1014698, 1021362, 1027927, 1034491, 1041054, 1047617, 1054180, 1060743, 1067306} },
{"Faceguard of Determination", {6032083, 32083, 290538, 290539, 290540, 290541, 290542, 290543, 290544, 290545, 290546, 290547, 290548, 290549} },
{"Helmet of the Steadfast Champion", {6032084, 32084, 290550, 290551, 290552, 290553, 290554, 290555, 290556, 290557, 290558, 290559, 290560, 290561} },
{"Warpstalker Helm", {6032085, 32085, 290562, 290563, 290564, 290565, 290566, 290567, 290568, 290569, 290570, 290571, 290572, 290573} },
{"Storm Master's Helmet", {6032086, 32086, 290574, 290575, 290576, 290577, 290578, 290579, 290580, 290581, 290582, 290583, 290584, 290585} },
{"Mask of the Deceiver", {6032087, 32087, 290586, 290587, 290588, 290589, 290590, 290591, 290592, 290593, 290594, 290595, 290596, 290597} },
{"Cowl of Beastly Rage", {6032088, 32088, 290598, 290599, 290600, 290601, 290602, 290603, 290604, 290605, 290606, 290607, 290608, 290609} },
{"Mana-Binders Cowl", {6032089, 32089, 290610, 290611, 290612, 290613, 290614, 290615, 290616, 290617, 290618, 290619, 290620, 290621} },
{"Cowl of Naaru Blessings", {6032090, 32090, 290622, 290623, 290624, 290625, 290626, 290627, 290628, 290629, 290630, 290631, 290632, 290633} },
{"Eternium Shell Bracers", {6032232, 32232, 332232, 232232, 1005646, 1012739, 1019385, 1025983, 1032547, 1039110, 1045673, 1052236, 1058799, 1065362} },
{"Fists of Mukoa", {6032234, 32234, 332234, 232234, 1005647, 1012740, 1019386, 1025984, 1032548, 1039111, 1045674, 1052237, 1058800, 1065363} },
{"Cursed Vision of Sargeras", {6032235, 32235, 332235, 232235, 1005648, 1012741, 1019387, 1025985, 1032549, 1039112, 1045675, 1052238, 1058801, 1065364} },
{"Rising Tide", {6032236, 32236, 332236, 232236, 1005649, 1012742, 1019388, 1025986, 1032550, 1039113, 1045676, 1052239, 1058802, 1065365} },
{"The Maelstrom's Fury", {6032237, 32237, 332237, 232237, 1005650, 1012743, 1019389, 1025987, 1032551, 1039114, 1045677, 1052240, 1058803, 1065366} },
{"Ring of Calming Waves", {6032238, 32238, 332238, 232238, 1005651, 1012744, 1019390, 1025988, 1032552, 1039115, 1045678, 1052241, 1058804, 1065367} },
{"Slippers of the Seacaller", {6032239, 32239, 332239, 232239, 1005652, 1012745, 1019391, 1025989, 1032553, 1039116, 1045679, 1052242, 1058805, 1065368} },
{"Guise of the Tidal Lurker", {6032240, 32240, 332240, 232240, 1005653, 1012746, 1019392, 1025990, 1032554, 1039117, 1045680, 1052243, 1058806, 1065369} },
{"Helm of Soothing Currents", {6032241, 32241, 332241, 232241, 1005654, 1012747, 1019393, 1025991, 1032555, 1039118, 1045681, 1052244, 1058807, 1065370} },
{"Boots of Oceanic Fury", {6032242, 32242, 332242, 232242, 1005655, 1012748, 1019394, 1025992, 1032556, 1039119, 1045682, 1052245, 1058808, 1065371} },
{"Pearl Inlaid Boots", {6032243, 32243, 332243, 232243, 1005656, 1012749, 1019395, 1025993, 1032557, 1039120, 1045683, 1052246, 1058809, 1065372} },
{"Tide-stomper's Greaves", {6032245, 32245, 332245, 232245, 1005657, 1012750, 1019396, 1025994, 1032558, 1039121, 1045684, 1052247, 1058810, 1065373} },
{"Ring of Captured Storms", {6032247, 32247, 332247, 232247, 1005658, 1012751, 1019397, 1025995, 1032559, 1039122, 1045685, 1052248, 1058811, 1065374} },
{"Halberd of Desolation", {6032248, 32248, 332248, 232248, 1005659, 1012752, 1019398, 1025996, 1032560, 1039123, 1045686, 1052249, 1058812, 1065375} },
{"Pauldrons of Abyssal Fury", {6032250, 32250, 332250, 232250, 1005660, 1012753, 1019399, 1025997, 1032561, 1039124, 1045687, 1052250, 1058813, 1065376} },
{"Wraps of Precise Flight", {6032251, 32251, 332251, 232251, 1005661, 1012754, 1019400, 1025998, 1032562, 1039125, 1045688, 1052251, 1058814, 1065377} },
{"Nether Shadow Tunic", {6032252, 32252, 332252, 232252, 1005662, 1012755, 1019401, 1025999, 1032563, 1039126, 1045689, 1052252, 1058815, 1065378} },
{"Legionkiller", {6032253, 32253, 332253, 232253, 1005663, 1012756, 1019402, 1026000, 1032564, 1039127, 1045690, 1052253, 1058816, 1065379} },
{"The Brutalizer", {6032254, 32254, 332254, 232254, 1005664, 1012757, 1019403, 1026001, 1032565, 1039128, 1045691, 1052254, 1058817, 1065380} },
{"Felstone Bulwark", {6032255, 32255, 332255, 232255, 1005665, 1012758, 1019404, 1026002, 1032566, 1039129, 1045692, 1052255, 1058818, 1065381} },
{"Waistwrap of Infinity", {6032256, 32256, 332256, 232256, 1005666, 1012759, 1019405, 1026003, 1032567, 1039130, 1045693, 1052256, 1058819, 1065382} },
{"Idol of the White Stag", {6032257, 32257, 332257, 232257, 1005667, 1012760, 1019406, 1026004, 1032568, 1039131, 1045694, 1052257, 1058820, 1065383} },
{"Naturalist's Preserving Cinch", {6032258, 32258, 332258, 232258, 1005668, 1012761, 1019407, 1026005, 1032569, 1039132, 1045695, 1052258, 1058821, 1065384} },
{"Bands of the Coming Storm", {6032259, 32259, 332259, 232259, 1005669, 1012762, 1019408, 1026006, 1032570, 1039133, 1045696, 1052259, 1058822, 1065385} },
{"Choker of Endless Nightmares", {6032260, 32260, 332260, 232260, 1005670, 1012763, 1019409, 1026007, 1032571, 1039134, 1045697, 1052260, 1058823, 1065386} },
{"Band of the Abyssal Lord", {6032261, 32261, 332261, 232261, 1005671, 1012764, 1019410, 1026008, 1032572, 1039135, 1045698, 1052261, 1058824, 1065387} },
{"Syphon of the Nathrezim", {6032262, 32262, 332262, 232262, 1005672, 1012765, 1019411, 1026009, 1032573, 1039136, 1045699, 1052262, 1058825, 1065388} },
{"Praetorian's Legguards", {6032263, 32263, 332263, 232263, 1005673, 1012766, 1019412, 1026010, 1032574, 1039137, 1045700, 1052263, 1058826, 1065389} },
{"Shoulders of the Hidden Predator", {6032264, 32264, 332264, 232264, 1005674, 1012767, 1019413, 1026011, 1032575, 1039138, 1045701, 1052264, 1058827, 1065390} },
{"Shadow-walker's Cord", {6032265, 32265, 332265, 232265, 1005675, 1012768, 1019414, 1026012, 1032576, 1039139, 1045702, 1052265, 1058828, 1065391} },
{"Ring of Deceitful Intent", {6032266, 32266, 332266, 232266, 1005676, 1012769, 1019415, 1026013, 1032577, 1039140, 1045703, 1052266, 1058829, 1065392} },
{"Boots of the Resilient", {6032267, 32267, 332267, 232267, 1005677, 1012770, 1019416, 1026014, 1032578, 1039141, 1045704, 1052267, 1058830, 1065393} },
{"Myrmidon's Treads", {6032268, 32268, 332268, 232268, 1005678, 1012771, 1019417, 1026015, 1032579, 1039142, 1045705, 1052268, 1058831, 1065394} },
{"Messenger of Fate", {6032269, 32269, 332269, 232269, 1005679, 1012772, 1019418, 1026016, 1032580, 1039143, 1045706, 1052269, 1058832, 1065395} },
{"Focused Mana Bindings", {6032270, 32270, 332270, 232270, 1005680, 1012773, 1019419, 1026017, 1032581, 1039144, 1045707, 1052270, 1058833, 1065396} },
{"Kilt of Immortal Nature", {6032271, 32271, 332271, 232271, 1005681, 1012774, 1019420, 1026018, 1032582, 1039145, 1045708, 1052271, 1058834, 1065397} },
{"Amice of Brilliant Light", {6032273, 32273, 332273, 232273, 1005682, 1012775, 1019421, 1026019, 1032583, 1039146, 1045709, 1052272, 1058835, 1065398} },
{"Spiritwalker Gauntlets", {6032275, 32275, 332275, 232275, 1005683, 1012776, 1019422, 1026020, 1032584, 1039147, 1045710, 1052273, 1058836, 1065399} },
{"Flashfire Girdle", {6032276, 32276, 332276, 232276, 1005684, 1012777, 1019423, 1026021, 1032585, 1039148, 1045711, 1052274, 1058837, 1065400} },
{"Grips of Silent Justice", {6032278, 32278, 332278, 232278, 1005685, 1012778, 1019424, 1026022, 1032586, 1039149, 1045712, 1052275, 1058838, 1065401} },
{"The Seeker's Wristguards", {6032279, 32279, 332279, 232279, 1005686, 1012779, 1019425, 1026023, 1032587, 1039150, 1045713, 1052276, 1058839, 1065402} },
{"Gauntlets of Enforcement", {6032280, 32280, 332280, 232280, 1005687, 1012780, 1019426, 1026024, 1032588, 1039151, 1045714, 1052277, 1058840, 1065403} },
{"Shadowmoon Destroyer's Drape", {6032323, 32323, 332323, 232323, 1005688, 1012781, 1019427, 1026025, 1032589, 1039152, 1045715, 1052278, 1058841, 1065404} },
{"Insidious Bands", {6032324, 32324, 332324, 232324, 1005689, 1012782, 1019428, 1026026, 1032590, 1039153, 1045716, 1052279, 1058842, 1065405} },
{"Rifle of the Stoic Guardian", {6032325, 32325, 332325, 232325, 1005690, 1012783, 1019429, 1026027, 1032591, 1039154, 1045717, 1052280, 1058843, 1065406} },
{"Twisted Blades of Zarak", {6032326, 32326, 332326, 232326, 1005691, 1012784, 1019430, 1026028, 1032592, 1039155, 1045718, 1052281, 1058844, 1065407} },
{"Robe of the Shadow Council", {6032327, 32327, 332327, 232327, 1005692, 1012785, 1019431, 1026029, 1032593, 1039156, 1045719, 1052282, 1058845, 1065408} },
{"Botanist's Gloves of Growth", {6032328, 32328, 332328, 232328, 1005693, 1012786, 1019432, 1026030, 1032594, 1039157, 1045720, 1052283, 1058846, 1065409} },
{"Cowl of Benevolence", {6032329, 32329, 332329, 232329, 1005694, 1012787, 1019433, 1026031, 1032595, 1039158, 1045721, 1052284, 1058847, 1065410} },
{"Totem of Ancestral Guidance", {6032330, 32330, 332330, 232330, 1005695, 1012788, 1019434, 1026032, 1032596, 1039159, 1045722, 1052285, 1058848, 1065411} },
{"Cloak of the Illidari Council", {6032331, 32331, 332331, 232331, 1005696, 1012789, 1019435, 1026033, 1032597, 1039160, 1045723, 1052286, 1058849, 1065412} },
{"Torch of the Damned", {6032332, 32332, 332332, 232332, 1005697, 1012790, 1019436, 1026034, 1032598, 1039161, 1045724, 1052287, 1058850, 1065413} },
{"Girdle of Stability", {6032333, 32333, 332333, 232333, 1005698, 1012791, 1019437, 1026035, 1032599, 1039162, 1045725, 1052288, 1058851, 1065414} },
{"Vest of Mounting Assault", {6032334, 32334, 332334, 232334, 1005699, 1012792, 1019438, 1026036, 1032600, 1039163, 1045726, 1052289, 1058852, 1065415} },
{"Unstoppable Aggressor's Ring", {6032335, 32335, 332335, 232335, 1005700, 1012793, 1019439, 1026037, 1032601, 1039164, 1045727, 1052290, 1058853, 1065416} },
{"Black Bow of the Betrayer", {6032336, 32336, 332336, 232336, 1005701, 1012794, 1019440, 1026038, 1032602, 1039165, 1045728, 1052291, 1058854, 1065417} },
{"Shroud of Forgiveness", {6032337, 32337, 332337, 232337, 1005702, 1012795, 1019441, 1026039, 1032603, 1039166, 1045729, 1052292, 1058855, 1065418} },
{"Blood-cursed Shoulderpads", {6032338, 32338, 332338, 232338, 1005703, 1012796, 1019442, 1026040, 1032604, 1039167, 1045730, 1052293, 1058856, 1065419} },
{"Belt of Primal Majesty", {6032339, 32339, 332339, 232339, 1005704, 1012797, 1019443, 1026041, 1032605, 1039168, 1045731, 1052294, 1058857, 1065420} },
{"Garments of Temperance", {6032340, 32340, 332340, 232340, 1005705, 1012798, 1019444, 1026042, 1032606, 1039169, 1045732, 1052295, 1058858, 1065421} },
{"Leggings of Divine Retribution", {6032341, 32341, 332341, 232341, 1005706, 1012799, 1019445, 1026043, 1032607, 1039170, 1045733, 1052296, 1058859, 1065422} },
{"Girdle of Mighty Resolve", {6032342, 32342, 332342, 232342, 1005707, 1012800, 1019446, 1026044, 1032608, 1039171, 1045734, 1052297, 1058860, 1065423} },
{"Wand of Prismatic Focus", {6032343, 32343, 332343, 232343, 1005708, 1012801, 1019447, 1026045, 1032609, 1039172, 1045735, 1052298, 1058861, 1065424} },
{"Staff of Immaculate Recovery", {6032344, 32344, 332344, 232344, 1005709, 1012802, 1019448, 1026046, 1032610, 1039173, 1045736, 1052299, 1058862, 1065425} },
{"Dreadboots of the Legion", {6032345, 32345, 332345, 232345, 1005710, 1012803, 1019449, 1026047, 1032611, 1039174, 1045737, 1052300, 1058863, 1065426} },
{"Boneweave Girdle", {6032346, 32346, 332346, 232346, 1005711, 1012804, 1019450, 1026048, 1032612, 1039175, 1045738, 1052301, 1058864, 1065427} },
{"Grips of Damnation", {6032347, 32347, 332347, 232347, 1005712, 1012805, 1019451, 1026049, 1032613, 1039176, 1045739, 1052302, 1058865, 1065428} },
{"Soul Cleaver", {6032348, 32348, 332348, 232348, 1005713, 1012806, 1019452, 1026050, 1032614, 1039177, 1045740, 1052303, 1058866, 1065429} },
{"Translucent Spellthread Necklace", {6032349, 32349, 332349, 232349, 1005714, 1012807, 1019453, 1026051, 1032615, 1039178, 1045741, 1052304, 1058867, 1065430} },
{"Touch of Inspiration", {6032350, 32350, 332350, 232350, 1005715, 1012808, 1019454, 1026052, 1032616, 1039179, 1045742, 1052305, 1058868, 1065431} },
{"Elunite Empowered Bracers", {6032351, 32351, 332351, 232351, 1005716, 1012809, 1019455, 1026053, 1032617, 1039180, 1045743, 1052306, 1058869, 1065432} },
{"Naturewarden's Treads", {6032352, 32352, 332352, 232352, 1005717, 1012810, 1019456, 1026054, 1032618, 1039181, 1045744, 1052307, 1058870, 1065433} },
{"Gloves of Unfailing Faith", {6032353, 32353, 332353, 232353, 1005718, 1012811, 1019457, 1026055, 1032619, 1039182, 1045745, 1052308, 1058871, 1065434} },
{"Crown of Empowered Fate", {6032354, 32354, 332354, 232354, 1005719, 1012812, 1019458, 1026056, 1032620, 1039183, 1045746, 1052309, 1058872, 1065435} },
{"Blind-Seers Icon", {6032361, 32361, 332361, 232361, 1005720, 1012813, 1019459, 1026057, 1032621, 1039184, 1045747, 1052310, 1058873, 1065436} },
{"Pendant of Titans", {6032362, 32362, 332362, 232362, 1005721, 1012814, 1019460, 1026058, 1032622, 1039185, 1045748, 1052311, 1058874, 1065437} },
{"Naaru-Blessed Life Rod", {6032363, 32363, 332363, 232363, 1005722, 1012815, 1019461, 1026059, 1032623, 1039186, 1045749, 1052312, 1058875, 1065438} },
{"Heartshatter Breastplate", {6032365, 32365, 332365, 232365, 1005723, 1012816, 1019462, 1026060, 1032624, 1039187, 1045750, 1052313, 1058876, 1065439} },
{"Shadowmaster's Boots", {6032366, 32366, 332366, 232366, 1005724, 1012817, 1019463, 1026061, 1032625, 1039188, 1045751, 1052314, 1058877, 1065440} },
{"Leggings of Devastation", {6032367, 32367, 332367, 232367, 1005725, 1012818, 1019464, 1026062, 1032626, 1039189, 1045752, 1052315, 1058878, 1065441} },
{"Tome of the Lightbringer", {6032368, 32368, 332368, 232368, 1005726, 1012819, 1019465, 1026063, 1032627, 1039190, 1045753, 1052316, 1058879, 1065442} },
{"Blade of Savagery", {6032369, 32369, 332369, 232369, 1005727, 1012820, 1019466, 1026064, 1032628, 1039191, 1045754, 1052317, 1058880, 1065443} },
{"Nadina's Pendant of Purity", {6032370, 32370, 332370, 232370, 1005728, 1012821, 1019467, 1026065, 1032629, 1039192, 1045755, 1052318, 1058881, 1065444} },
{"Helm of the Illidari Shatterer", {6032373, 32373, 332373, 232373, 1005729, 1012822, 1019468, 1026066, 1032630, 1039193, 1045756, 1052319, 1058882, 1065445} },
{"Zhar'doom, Greatstaff of the Devourer", {6032374, 32374, 332374, 232374, 1005730, 1012823, 1019469, 1026067, 1032631, 1039194, 1045757, 1052320, 1058883, 1065446} },
{"Bulwark of Azzinoth", {6032375, 32375, 332375, 232375, 1005731, 1012824, 1019470, 1026068, 1032632, 1039195, 1045758, 1052321, 1058884, 1065447} },
{"Forest Prowler's Helm", {6032376, 32376, 332376, 232376, 1005732, 1012825, 1019471, 1026069, 1032633, 1039196, 1045759, 1052322, 1058885, 1065448} },
{"Mantle of Darkness", {6032377, 32377, 332377, 232377, 1005733, 1012826, 1019472, 1026070, 1032634, 1039197, 1045760, 1052323, 1058886, 1065449} },
{"Idol of the Raven Goddess", {6032387, 32387, 291840, 291841, 291842, 291843, 291844, 291845, 291846, 291847, 291848, 291849, 291850, 291851} },
{"Soulguard Leggings", {6032389, 32389, 291852, 291853, 291854, 291855, 291856, 291857, 291858, 291859, 291860, 291861, 291862, 291863} },
{"Soulguard Girdle", {6032390, 32390, 291864, 291865, 291866, 291867, 291868, 291869, 291870, 291871, 291872, 291873, 291874, 291875} },
{"Soulguard Slippers", {6032391, 32391, 291876, 291877, 291878, 291879, 291880, 291881, 291882, 291883, 291884, 291885, 291886, 291887} },
{"Soulguard Bracers", {6032392, 32392, 291888, 291889, 291890, 291891, 291892, 291893, 291894, 291895, 291896, 291897, 291898, 291899} },
{"Redeemed Soul Cinch", {6032393, 32393, 291900, 291901, 291902, 291903, 291904, 291905, 291906, 291907, 291908, 291909, 291910, 291911} },
{"Redeemed Soul Moccasins", {6032394, 32394, 291912, 291913, 291914, 291915, 291916, 291917, 291918, 291919, 291920, 291921, 291922, 291923} },
{"Redeemed Soul Wristguards", {6032395, 32395, 291924, 291925, 291926, 291927, 291928, 291929, 291930, 291931, 291932, 291933, 291934, 291935} },
{"Redeemed Soul Legguards", {6032396, 32396, 291936, 291937, 291938, 291939, 291940, 291941, 291942, 291943, 291944, 291945, 291946, 291947} },
{"Waistguard of Shackled Souls", {6032397, 32397, 291948, 291949, 291950, 291951, 291952, 291953, 291954, 291955, 291956, 291957, 291958, 291959} },
{"Boots of Shackled Souls", {6032398, 32398, 291960, 291961, 291962, 291963, 291964, 291965, 291966, 291967, 291968, 291969, 291970, 291971} },
{"Bracers of Shackled Souls", {6032399, 32399, 291972, 291973, 291974, 291975, 291976, 291977, 291978, 291979, 291980, 291981, 291982, 291983} },
{"Greaves of Shackled Souls", {6032400, 32400, 291984, 291985, 291986, 291987, 291988, 291989, 291990, 291991, 291992, 291993, 291994, 291995} },
{"Shadesteel Girdle", {6032401, 32401, 291996, 291997, 291998, 291999, 292000, 292001, 292002, 292003, 292004, 292005, 292006, 292007} },
{"Shadesteel Sabots", {6032402, 32402, 292008, 292009, 292010, 292011, 292012, 292013, 292014, 292015, 292016, 292017, 292018, 292019} },
{"Shadesteel Bracers", {6032403, 32403, 292020, 292021, 292022, 292023, 292024, 292025, 292026, 292027, 292028, 292029, 292030, 292031} },
{"Shadesteel Greaves", {6032404, 32404, 292032, 292033, 292034, 292035, 292036, 292037, 292038, 292039, 292040, 292041, 292042, 292043} },
{"Creature - Maiev's Glaive", {6032407, 32407, 292044, 292045, 292046, 292047, 292048, 292049, 292050, 292051, 292052, 292053, 292054, 292055} },
{"Tom's Legs A", {6032414, 32414, 292056, 292057, 292058, 292059, 292060, 292061, 292062, 292063, 292064, 292065, 292066, 292067} },
{"Tom's Legs B", {6032415, 32415, 292068, 292069, 292070, 292071, 292072, 292073, 292074, 292075, 292076, 292077, 292078, 292079} },
{"Tom's Legs C", {6032416, 32416, 292080, 292081, 292082, 292083, 292084, 292085, 292086, 292087, 292088, 292089, 292090, 292091} },
{"Tom's Legs 1", {6032417, 32417, 292092, 292093, 292094, 292095, 292096, 292097, 292098, 292099, 292100, 292101, 292102, 292103} },
{"Tom's Legs 2", {6032418, 32418, 292104, 292105, 292106, 292107, 292108, 292109, 292110, 292111, 292112, 292113, 292114, 292115} },
{"Tom's Legs 3", {6032419, 32419, 292116, 292117, 292118, 292119, 292120, 292121, 292122, 292123, 292124, 292125, 292126, 292127} },
{"Night's End", {6032420, 32420, 292128, 292129, 292130, 292131, 292132, 292133, 292134, 292135, 292136, 292137, 292138, 292139} },
{"Tom's Axe A", {6032421, 32421, 292140, 292141, 292142, 292143, 292144, 292145, 292146, 292147, 292148, 292149, 292150, 292151} },
{"Tom's Axe B", {6032422, 32422, 292152, 292153, 292154, 292155, 292156, 292157, 292158, 292159, 292160, 292161, 292162, 292163} },
{"Furious Gizmatic Goggles", {6032461, 32461, 292197, 292198, 292199, 292200, 292201, 292202, 292203, 292204, 292205, 292206, 292207, 292208} },
{"Shard of Azzinoth", {6032471, 32471, 332471, 232471, 1005735, 1012828, 1019474, 1026072, 1032636, 1039199, 1045762, 1052325, 1058888, 1065451} },
{"Justicebringer 2000 Specs", {6032472, 32472, 292221, 292222, 292223, 292224, 292225, 292226, 292227, 292228, 292229, 292230, 292231, 292232} },
{"Tankatronic Goggles", {6032473, 32473, 292233, 292234, 292235, 292236, 292237, 292238, 292239, 292240, 292241, 292242, 292243, 292244} },
{"Surestrike Goggles v2.0", {6032474, 32474, 292245, 292246, 292247, 292248, 292249, 292250, 292251, 292252, 292253, 292254, 292255, 292256} },
{"Living Replicator Specs", {6032475, 32475, 292257, 292258, 292259, 292260, 292261, 292262, 292263, 292264, 292265, 292266, 292267, 292268} },
{"Gadgetstorm Goggles", {6032476, 32476, 292269, 292270, 292271, 292272, 292273, 292274, 292275, 292276, 292277, 292278, 292279, 292280} },
{"Deathblow X11 Goggles", {6032478, 32478, 292281, 292282, 292283, 292284, 292285, 292286, 292287, 292288, 292289, 292290, 292291, 292292} },
{"Wonderheal XT40 Shades", {6032479, 32479, 292293, 292294, 292295, 292296, 292297, 292298, 292299, 292300, 292301, 292302, 292303, 292304} },
{"Magnified Moon Specs", {6032480, 32480, 292305, 292306, 292307, 292308, 292309, 292310, 292311, 292312, 292313, 292314, 292315, 292316} },
{"Charm of Swift Flight", {6032481, 32481, 292317, 292318, 292319, 292320, 292321, 292322, 292323, 292324, 292325, 292326, 292327, 292328} },
{"The Skull of Gul'dan", {6032483, 32483, 332483, 232483, 1005736, 1012829, 1019475, 1026073, 1032637, 1039200, 1045763, 1052326, 1058889, 1065452} },
{"Ashtongue Talisman of Valor", {6032485, 32485, 292341, 292342, 292343, 292344, 292345, 292346, 292347, 292348, 292349, 292350, 292351, 292352} },
{"Ashtongue Talisman of Equilibrium", {6032486, 32486, 292353, 292354, 292355, 292356, 292357, 292358, 292359, 292360, 292361, 292362, 292363, 292364} },
{"Ashtongue Talisman of Swiftness", {6032487, 32487, 292365, 292366, 292367, 292368, 292369, 292370, 292371, 292372, 292373, 292374, 292375, 292376} },
{"Ashtongue Talisman of Insight", {6032488, 32488, 292377, 292378, 292379, 292380, 292381, 292382, 292383, 292384, 292385, 292386, 292387, 292388} },
{"Ashtongue Talisman of Zeal", {6032489, 32489, 292389, 292390, 292391, 292392, 292393, 292394, 292395, 292396, 292397, 292398, 292399, 292400} },
{"Ashtongue Talisman of Acumen", {6032490, 32490, 292401, 292402, 292403, 292404, 292405, 292406, 292407, 292408, 292409, 292410, 292411, 292412} },
{"Ashtongue Talisman of Vision", {6032491, 32491, 292413, 292414, 292415, 292416, 292417, 292418, 292419, 292420, 292421, 292422, 292423, 292424} },
{"Ashtongue Talisman of Lethality", {6032492, 32492, 292425, 292426, 292427, 292428, 292429, 292430, 292431, 292432, 292433, 292434, 292435, 292436} },
{"Ashtongue Talisman of Shadows", {6032493, 32493, 292437, 292438, 292439, 292440, 292441, 292442, 292443, 292444, 292445, 292446, 292447, 292448} },
{"Destruction Holo-gogs", {6032494, 32494, 292449, 292450, 292451, 292452, 292453, 292454, 292455, 292456, 292457, 292458, 292459, 292460} },
{"Powerheal 4000 Lens", {6032495, 32495, 292461, 292462, 292463, 292464, 292465, 292466, 292467, 292468, 292469, 292470, 292471, 292472} },
{"Memento of Tyrande", {6032496, 32496, 332496, 232496, 1005737, 1012830, 1019476, 1026074, 1032638, 1039201, 1045764, 1052327, 1058890, 1065453} },
{"Stormrage Signet Ring", {6032497, 32497, 332497, 232497, 1005738, 1012831, 1019477, 1026075, 1032639, 1039202, 1045765, 1052328, 1058891, 1065454} },
{"Crystal Spire of Karabor", {6032500, 32500, 332500, 232500, 1005739, 1012832, 1019478, 1026076, 1032640, 1039203, 1045766, 1052329, 1058892, 1065455} },
{"Shadowmoon Insignia", {6032501, 32501, 332501, 232501, 1005740, 1012833, 1019479, 1026077, 1032641, 1039204, 1045767, 1052330, 1058893, 1065456} },
{"Madness of the Betrayer", {6032505, 32505, 332505, 232505, 1005741, 1012834, 1019480, 1026078, 1032642, 1039205, 1045768, 1052331, 1058894, 1065457} },
{"Necklace of the Deep", {6032508, 32508, 292473, 292474, 292475, 292476, 292477, 292478, 292479, 292480, 292481, 292482, 292483, 292484} },
{"Softstep Boots of Tracking", {6032510, 32510, 332510, 232510, 1005742, 1012835, 1019481, 1026079, 1032643, 1039206, 1045769, 1052332, 1058895, 1065458} },
{"Girdle of Lordaeron's Fallen", {6032512, 32512, 332512, 232512, 1005743, 1012836, 1019482, 1026080, 1032644, 1039207, 1045770, 1052333, 1058896, 1065459} },
{"Wristbands of Divine Influence", {6032513, 32513, 332513, 232513, 1005744, 1012837, 1019483, 1026081, 1032645, 1039208, 1045771, 1052334, 1058897, 1065460} },
{"Skettis Band", {6032514, 32514, 292485, 292486, 292487, 292488, 292489, 292490, 292491, 292492, 292493, 292494, 292495, 292496} },
{"Wristguards of Determination", {6032515, 32515, 332515, 232515, 1005745, 1012838, 1019484, 1026082, 1032646, 1039209, 1045772, 1052335, 1058898, 1065461} },
{"Wraps of Purification", {6032516, 32516, 332516, 232516, 1005746, 1012839, 1019485, 1026083, 1032647, 1039210, 1045773, 1052336, 1058899, 1065462} },
{"The Wavemender's Mantle", {6032517, 32517, 332517, 232517, 1005747, 1012840, 1019486, 1026084, 1032648, 1039211, 1045774, 1052337, 1058900, 1065463} },
{"Veil of Turning Leaves", {6032518, 32518, 332518, 232518, 1005748, 1012841, 1019487, 1026085, 1032649, 1039212, 1045775, 1052338, 1058901, 1065464} },
{"Belt of Divine Guidance", {6032519, 32519, 332519, 232519, 1005749, 1012842, 1019488, 1026086, 1032650, 1039213, 1045776, 1052339, 1058902, 1065465} },
{"Manaforged Sphere", {6032520, 32520, 292497, 292498, 292499, 292500, 292501, 292502, 292503, 292504, 292505, 292506, 292507, 292508} },
{"Faceplate of the Impenetrable", {6032521, 32521, 332521, 232521, 1005750, 1012843, 1019489, 1026087, 1032651, 1039214, 1045777, 1052340, 1058903, 1065466} },
{"Demonic Bulwark", {6032522, 32522, 292509, 292510, 292511, 292512, 292513, 292514, 292515, 292516, 292517, 292518, 292519, 292520} },
{"Shroud of the Highborne", {6032524, 32524, 332524, 232524, 1005751, 1012844, 1019490, 1026088, 1032652, 1039215, 1045778, 1052341, 1058904, 1065467} },
{"Cowl of the Illidari High Lord", {6032525, 32525, 332525, 232525, 1005752, 1012845, 1019491, 1026089, 1032653, 1039216, 1045779, 1052342, 1058905, 1065468} },
{"Band of Devastation", {6032526, 32526, 332526, 232526, 1005753, 1012846, 1019492, 1026090, 1032654, 1039217, 1045780, 1052343, 1058906, 1065469} },
{"Ring of Ancient Knowledge", {6032527, 32527, 332527, 232527, 1005754, 1012847, 1019493, 1026091, 1032655, 1039218, 1045781, 1052344, 1058907, 1065470} },
{"Blessed Band of Karabor", {6032528, 32528, 332528, 232528, 1005755, 1012848, 1019494, 1026092, 1032656, 1039219, 1045782, 1052345, 1058908, 1065471} },
{"Heretic's Gauntlets", {6032529, 32529, 292521, 292522, 292523, 292524, 292525, 292526, 292527, 292528, 292529, 292530, 292531, 292532} },
{"Gezzarak's Fang", {6032531, 32531, 292533, 292534, 292535, 292536, 292537, 292538, 292539, 292540, 292541, 292542, 292543, 292544} },
{"Windrager's Coils", {6032532, 32532, 292545, 292546, 292547, 292548, 292549, 292550, 292551, 292552, 292553, 292554, 292555, 292556} },
{"Karrog's Shard", {6032533, 32533, 292557, 292558, 292559, 292560, 292561, 292562, 292563, 292564, 292565, 292566, 292567, 292568} },
{"Brooch of the Immortal King", {6032534, 32534, 292569, 292570, 292571, 292572, 292573, 292574, 292575, 292576, 292577, 292578, 292579, 292580} },
{"Gift of the Talonpriests", {6032535, 32535, 292581, 292582, 292583, 292584, 292585, 292586, 292587, 292588, 292589, 292590, 292591, 292592} },
{"Terokk's Gavel", {6032536, 32536, 292593, 292594, 292595, 292596, 292597, 292598, 292599, 292600, 292601, 292602, 292603, 292604} },
{"Terokk's Gavel", {6032537, 32537, 292605, 292606, 292607, 292608, 292609, 292610, 292611, 292612, 292613, 292614, 292615, 292616} },
{"Skywitch's Drape", {6032538, 32538, 292617, 292618, 292619, 292620, 292621, 292622, 292623, 292624, 292625, 292626, 292627, 292628} },
{"Skyguard's Drape", {6032539, 32539, 292629, 292630, 292631, 292632, 292633, 292634, 292635, 292636, 292637, 292638, 292639, 292640} },
{"Terokk's Might", {6032540, 32540, 292641, 292642, 292643, 292644, 292645, 292646, 292647, 292648, 292649, 292650, 292651, 292652} },
{"Terokk's Wisdom", {6032541, 32541, 292653, 292654, 292655, 292656, 292657, 292658, 292659, 292660, 292661, 292662, 292663, 292664} },
{"Swiftsteel Bracers", {6032568, 32568, 292665, 292666, 292667, 292668, 292669, 292670, 292671, 292672, 292673, 292674, 292675, 292676} },
{"Swiftsteel Shoulders", {6032570, 32570, 292677, 292678, 292679, 292680, 292681, 292682, 292683, 292684, 292685, 292686, 292687, 292688} },
{"Dawnsteel Bracers", {6032571, 32571, 292689, 292690, 292691, 292692, 292693, 292694, 292695, 292696, 292697, 292698, 292699, 292700} },
{"Dawnsteel Shoulders", {6032573, 32573, 292701, 292702, 292703, 292704, 292705, 292706, 292707, 292708, 292709, 292710, 292711, 292712} },
{"Bindings of Lightning Reflexes", {6032574, 32574, 292713, 292714, 292715, 292716, 292717, 292718, 292719, 292720, 292721, 292722, 292723, 292724} },
{"Shoulders of Lightning Reflexes", {6032575, 32575, 292725, 292726, 292727, 292728, 292729, 292730, 292731, 292732, 292733, 292734, 292735, 292736} },
{"Living Earth Bindings", {6032577, 32577, 292737, 292738, 292739, 292740, 292741, 292742, 292743, 292744, 292745, 292746, 292747, 292748} },
{"Living Earth Shoulders", {6032579, 32579, 292749, 292750, 292751, 292752, 292753, 292754, 292755, 292756, 292757, 292758, 292759, 292760} },
{"Swiftstrike Bracers", {6032580, 32580, 292761, 292762, 292763, 292764, 292765, 292766, 292767, 292768, 292769, 292770, 292771, 292772} },
{"Swiftstrike Shoulders", {6032581, 32581, 292773, 292774, 292775, 292776, 292777, 292778, 292779, 292780, 292781, 292782, 292783, 292784} },
{"Bracers of Renewed Life", {6032582, 32582, 292785, 292786, 292787, 292788, 292789, 292790, 292791, 292792, 292793, 292794, 292795, 292796} },
{"Shoulderpads of Renewed Life", {6032583, 32583, 292797, 292798, 292799, 292800, 292801, 292802, 292803, 292804, 292805, 292806, 292807, 292808} },
{"Swiftheal Wraps", {6032584, 32584, 292809, 292810, 292811, 292812, 292813, 292814, 292815, 292816, 292817, 292818, 292819, 292820} },
{"Swiftheal Mantle", {6032585, 32585, 292821, 292822, 292823, 292824, 292825, 292826, 292827, 292828, 292829, 292830, 292831, 292832} },
{"Bracers of Nimble Thought", {6032586, 32586, 292833, 292834, 292835, 292836, 292837, 292838, 292839, 292840, 292841, 292842, 292843, 292844} },
{"Mantle of Nimble Thought", {6032587, 32587, 292845, 292846, 292847, 292848, 292849, 292850, 292851, 292852, 292853, 292854, 292855, 292856} },
{"Hellfire-Encased Pendant", {6032589, 32589, 120519, 232589, 1005756, 1012849, 1019495, 1026093, 1032657, 1039220, 1045783, 1052346, 1058909, 1065472} },
{"Nethervoid Cloak", {6032590, 32590, 123048, 232590, 1005757, 1012850, 1019496, 1026094, 1032658, 1039221, 1045784, 1052347, 1058910, 1065473} },
{"Choker of Serrated Blades", {6032591, 32591, 100765, 232591, 1005758, 1012851, 1019497, 1026095, 1032659, 1039222, 1045785, 1052348, 1058911, 1065474} },
{"Chestguard of Relentless Storms", {6032592, 32592, 100738, 232592, 1005759, 1012852, 1019498, 1026096, 1032660, 1039223, 1045786, 1052349, 1058912, 1065475} },
{"Treads of the Den Mother", {6032593, 32593, 332593, 232593, 1005760, 1012853, 1019499, 1026097, 1032661, 1039224, 1045787, 1052350, 1058913, 1065476} },
{"Ogrela Test Tunic", {292858, 32594, 292857, 292859, 292860, 292861, 292862, 292863, 292864, 292865, 292866, 292867, 292868, 292869} },
{"Girdle of the Lightbearer", {6032606, 32606, 332606, 232606, 1005761, 1012854, 1019500, 1026098, 1032662, 1039225, 1045788, 1052351, 1058914, 1065477} },
{"Pillager's Gauntlets", {6032608, 32608, 332608, 232608, 1005762, 1012855, 1019501, 1026099, 1032663, 1039226, 1045789, 1052352, 1058915, 1065478} },
{"Boots of the Divine Light", {6032609, 32609, 100460, 232609, 1005763, 1012856, 1019502, 1026100, 1032664, 1039227, 1045790, 1052353, 1058916, 1065479} },
{"Crystalline Crossbow", {6032645, 32645, 292870, 292871, 292872, 292873, 292874, 292875, 292876, 292877, 292878, 292879, 292880, 292881} },
{"Shard-bound Bracers", {6032647, 32647, 292882, 292883, 292884, 292885, 292886, 292887, 292888, 292889, 292890, 292891, 292892, 292893} },
{"Vortex Walking Boots", {6032648, 32648, 292894, 292895, 292896, 292897, 292898, 292899, 292900, 292901, 292902, 292903, 292904, 292905} },
{"Medallion of Karabor", {292907, 32649, 292906, 292908, 292909, 292910, 292911, 292912, 292913, 292914, 292915, 292916, 292917, 292918} },
{"Cerulean Crystal Rod", {6032650, 32650, 292919, 292920, 292921, 292922, 292923, 292924, 292925, 292926, 292927, 292928, 292929, 292930} },
{"Crystal Orb of Enlightenment", {6032651, 32651, 292931, 292932, 292933, 292934, 292935, 292936, 292937, 292938, 292939, 292940, 292941, 292942} },
{"Ogri'la Aegis", {6032652, 32652, 292943, 292944, 292945, 292946, 292947, 292948, 292949, 292950, 292951, 292952, 292953, 292954} },
{"Apexis Cloak", {6032653, 32653, 292955, 292956, 292957, 292958, 292959, 292960, 292961, 292962, 292963, 292964, 292965, 292966} },
{"Crystalforged Trinket", {6032654, 32654, 292967, 292968, 292969, 292970, 292971, 292972, 292973, 292974, 292975, 292976, 292977, 292978} },
{"Crystalweave Bracers", {6032655, 32655, 292979, 292980, 292981, 292982, 292983, 292984, 292985, 292986, 292987, 292988, 292989, 292990} },
{"Crystalhide Handwraps", {6032656, 32656, 292991, 292992, 292993, 292994, 292995, 292996, 292997, 292998, 292999, 293000, 293001, 293002} },
{"Badge of Tenacity", {6032658, 32658, 293003, 293004, 293005, 293006, 293007, 293008, 293009, 293010, 293011, 293012, 293013, 293014} },
{"Crystal-Infused Shiv", {6032659, 32659, 293015, 293016, 293017, 293018, 293019, 293020, 293021, 293022, 293023, 293024, 293025, 293026} },
{"Crystalforged Sword", {6032660, 32660, 293027, 293028, 293029, 293030, 293031, 293032, 293033, 293034, 293035, 293036, 293037, 293038} },
{"Apexis Crystal Mace", {6032661, 32661, 293039, 293040, 293041, 293042, 293043, 293044, 293045, 293046, 293047, 293048, 293049, 293050} },
{"Flaming Quartz Staff", {6032662, 32662, 293051, 293052, 293053, 293054, 293055, 293056, 293057, 293058, 293059, 293060, 293061, 293062} },
{"Apexis Cleaver", {6032663, 32663, 293063, 293064, 293065, 293066, 293067, 293068, 293069, 293070, 293071, 293072, 293073, 293074} },
{"Dreamcrystal Band", {6032664, 32664, 293075, 293076, 293077, 293078, 293079, 293080, 293081, 293082, 293083, 293084, 293085, 293086} },
{"Crystalweave Cape", {6032665, 32665, 293087, 293088, 293089, 293090, 293091, 293092, 293093, 293094, 293095, 293096, 293097, 293098} },
{"Overseer's Badge", {293100, 32694, 293099, 293101, 293102, 293103, 293104, 293105, 293106, 293107, 293108, 293109, 293110, 293111} },
{"Captain's Badge", {6032695, 32695, 293112, 293113, 293114, 293115, 293116, 293117, 293118, 293119, 293120, 293121, 293122, 293123} },
{"Gyro-Balanced Khorium Destroyer", {6032756, 32756, 293124, 293125, 293126, 293127, 293128, 293129, 293130, 293131, 293132, 293133, 293134, 293135} },
{"Blessed Medallion of Karabor", {293137, 32757, 293136, 293138, 293139, 293140, 293141, 293142, 293143, 293144, 293145, 293146, 293147, 293148} },
{"Belt of the Raven Lord", {6032769, 32769, 293149, 293150, 293151, 293152, 293153, 293154, 293155, 293156, 293157, 293158, 293159, 293160} },
{"Skyguard Silver Cross", {6032770, 32770, 293161, 293162, 293163, 293164, 293165, 293166, 293167, 293168, 293169, 293170, 293171, 293172} },
{"Airman's Ribbon of Gallantry", {6032771, 32771, 293173, 293174, 293175, 293176, 293177, 293178, 293179, 293180, 293181, 293182, 293183, 293184} },
{"Brilliant Pearl Band", {6032772, 32772, 293185, 293186, 293187, 293188, 293189, 293190, 293191, 293192, 293193, 293194, 293195, 293196} },
{"The Black Pearl", {6032774, 32774, 293197, 293198, 293199, 293200, 293201, 293202, 293203, 293204, 293205, 293206, 293207, 293208} },
{"Crown of the Sea Witch", {6032776, 32776, 293209, 293210, 293211, 293212, 293213, 293214, 293215, 293216, 293217, 293218, 293219, 293220} },
{"Boots of Righteous Fortitude", {6032778, 32778, 293221, 293222, 293223, 293224, 293225, 293226, 293227, 293228, 293229, 293230, 293231, 293232} },
{"Band of Frigid Elements", {6032779, 32779, 293233, 293234, 293235, 293236, 293237, 293238, 293239, 293240, 293241, 293242, 293243, 293244} },
{"The Boomstick", {6032780, 32780, 293245, 293246, 293247, 293248, 293249, 293250, 293251, 293252, 293253, 293254, 293255, 293256} },
{"Talon of Anzu", {6032781, 32781, 293257, 293258, 293259, 293260, 293261, 293262, 293263, 293264, 293265, 293266, 293267, 293268} },
{"Time-Lost Figurine", {6032782, 32782, 293269, 293270, 293271, 293272, 293273, 293274, 293275, 293276, 293277, 293278, 293279, 293280} },
{"Windcharger's Lance", {6032829, 32829, 293294, 293295, 293296, 293297, 293298, 293299, 293300, 293301, 293302, 293303, 293304, 293305} },
{"Severin's Cane", {6032830, 32830, 293306, 293307, 293308, 293309, 293310, 293311, 293312, 293313, 293314, 293315, 293316, 293317} },
{"Jeweled Rod", {6032831, 32831, 293318, 293319, 293320, 293321, 293322, 293323, 293324, 293325, 293326, 293327, 293328, 293329} },
{"Scout's Throwing Knives", {6032832, 32832, 293330, 293331, 293332, 293333, 293334, 293335, 293336, 293337, 293338, 293339, 293340, 293341} },
{"Warglaive of Azzinoth", {6032837, 32837, 120482, 232837, 1005800, 1012893, 1019539, 1026137, 1032701, 1039264, 1045827, 1052390, 1058953, 1065516} },
{"Warglaive of Azzinoth", {130612, 32838, 130611, 232838, 1005801, 1012894, 1019540, 1026138, 1032702, 1039265, 1045828, 1052391, 1058954, 1065517} },
{"Hammer of Righteous Might", {6032854, 32854, 293342, 293343, 293344, 293345, 293346, 293347, 293348, 293349, 293350, 293351, 293352, 293353} },
{"Skybreaker Whip", {6032863, 32863, 293354, 293355, 293356, 293357, 293358, 293359, 293360, 293361, 293362, 293363, 293364, 293365} },
{"Commander's Badge", {6032864, 32864, 293366, 293367, 293368, 293369, 293370, 293371, 293372, 293373, 293374, 293375, 293376, 293377} },
{"Drake Tamer's Gloves", {293379, 32865, 293378, 293380, 293381, 293382, 293383, 293384, 293385, 293386, 293387, 293388, 293389, 293390} },
{"Ascendant's Boots", {293392, 32866, 293391, 293393, 293394, 293395, 293396, 293397, 293398, 293399, 293400, 293401, 293402, 293403} },
{"Dragonmaw Augur's Cinch", {293405, 32867, 293404, 293406, 293407, 293408, 293409, 293410, 293411, 293412, 293413, 293414, 293415, 293416} },
{"Skybreaker's Mantle", {293418, 32868, 293417, 293419, 293420, 293421, 293422, 293423, 293424, 293425, 293426, 293427, 293428, 293429} },
{"Illidari Lord's Tunic", {293431, 32869, 293430, 293432, 293433, 293434, 293435, 293436, 293437, 293438, 293439, 293440, 293441, 293442} },
{"Legguards of Contemplation", {293444, 32870, 293443, 293445, 293446, 293447, 293448, 293449, 293450, 293451, 293452, 293453, 293454, 293455} },
{"Horns of the Illidari", {293457, 32871, 293456, 293458, 293459, 293460, 293461, 293462, 293463, 293464, 293465, 293466, 293467, 293468} },
{"Illidari Rod of Discipline", {293470, 32872, 293469, 293471, 293472, 293473, 293474, 293475, 293476, 293477, 293478, 293479, 293480, 293481} },
{"Bland Shiv", {6032914, 32914, 293495, 293496, 293497, 293498, 293499, 293500, 293501, 293502, 293503, 293504, 293505, 293506} },
{"Corruptor's Signet", {6032941, 32941, 293572, 293573, 293574, 293575, 293576, 293577, 293578, 293579, 293580, 293581, 293582, 293583} },
{"Ring of the Overseer", {6032942, 32942, 293584, 293585, 293586, 293587, 293588, 293589, 293590, 293591, 293592, 293593, 293594, 293595} },
{"Swiftsteel Bludgeon", {6032943, 32943, 332943, 232943, 1005802, 1012895, 1019541, 1026139, 1032703, 1039266, 1045829, 1052392, 1058955, 1065518} },
{"Talon of the Phoenix", {6032944, 32944, 332944, 293596, 293597, 293598, 293599, 293600, 293601, 293602, 293603, 293604, 293605, 293606} },
{"Fist of Molten Fury", {6032945, 32945, 115451, 232945, 1005803, 1012896, 1019542, 1026140, 1032704, 1039267, 1045830, 1052393, 1058956, 1065519} },
{"Claw of Molten Fury", {6032946, 32946, 100778, 232946, 1005804, 1012897, 1019543, 1026141, 1032705, 1039268, 1045831, 1052394, 1058957, 1065520} },
{"Unusually Slow Sword", {6032949, 32949, 293607, 293608, 293609, 293610, 293611, 293612, 293613, 293614, 293615, 293616, 293617, 293618} },
{"Unusually Slow Mace", {6032950, 32950, 293619, 293620, 293621, 293622, 293623, 293624, 293625, 293626, 293627, 293628, 293629, 293630} },
{"Tom's Boots 1", {6032954, 32954, 293631, 293632, 293633, 293634, 293635, 293636, 293637, 293638, 293639, 293640, 293641, 293642} },
{"Tom's Boots 2", {6032955, 32955, 293643, 293644, 293645, 293646, 293647, 293648, 293649, 293650, 293651, 293652, 293653, 293654} },
{"Tom's Boots 3", {6032956, 32956, 293655, 293656, 293657, 293658, 293659, 293660, 293661, 293662, 293663, 293664, 293665, 293666} },
{"Tom's Bracer 1", {6032957, 32957, 293667, 293668, 293669, 293670, 293671, 293672, 293673, 293674, 293675, 293676, 293677, 293678} },
{"Tom's Bracer 2", {6032958, 32958, 293679, 293680, 293681, 293682, 293683, 293684, 293685, 293686, 293687, 293688, 293689, 293690} },
{"Tom's Bracer 3", {6032959, 32959, 293691, 293692, 293693, 293694, 293695, 293696, 293697, 293698, 293699, 293700, 293701, 293702} },
{"The Seal of Danzalar", {6033054, 33054, 333054, 233054, 1005814, 1012907, 1019553, 1026151, 1032715, 1039278, 1045841, 1052404, 1058967, 1065530} },
{"Band of Vile Aggression", {6033055, 33055, 333055, 233055, 1005815, 1012908, 1019554, 1026152, 1032716, 1039279, 1045842, 1052405, 1058968, 1065531} },
{"Band of the Vigilant", {6033058, 33058, 333058, 233058, 1005816, 1012909, 1019555, 1026153, 1032717, 1039280, 1045843, 1052406, 1058969, 1065532} },
{"Cloak of Darkness", {6033122, 33122, 294190, 294191, 294192, 294193, 294194, 294195, 294196, 294197, 294198, 294199, 294200, 294201} },
{"Ragesteel Shoulders", {6033173, 33173, 294202, 294203, 294204, 294205, 294206, 294207, 294208, 294209, 294210, 294211, 294212, 294213} },
{"Jungle Stompers", {6033191, 33191, 333191, 233191, 1005817, 1012910, 1019556, 1026154, 1032718, 1039281, 1045844, 1052407, 1058970, 1065533} },
{"Carved Witch Doctor's Stick", {6033192, 33192, 294214, 294215, 294216, 294217, 294218, 294219, 294220, 294221, 294222, 294223, 294224, 294225} },
{"Mossy Necklace", {294227, 33197, 294226, 294228, 294229, 294230, 294231, 294232, 294233, 294234, 294235, 294236, 294237, 294238} },
{"Robes of Heavenly Purpose", {6033203, 33203, 333203, 233203, 1005818, 1012911, 1019557, 1026155, 1032719, 1039282, 1045845, 1052408, 1058971, 1065534} },
{"Shadowprowler's Chestguard", {6033204, 33204, 294239, 294240, 294241, 294242, 294243, 294244, 294245, 294246, 294247, 294248, 294249, 294250} },
{"Pauldrons of Primal Fury", {6033206, 33206, 333206, 233206, 1005819, 1012912, 1019558, 1026156, 1032720, 1039283, 1045846, 1052409, 1058972, 1065535} },
{"Implacable Guardian Sabatons", {6033207, 33207, 294251, 294252, 294253, 294254, 294255, 294256, 294257, 294258, 294259, 294260, 294261, 294262} },
{"Bladeangel's Money Belt", {6033211, 33211, 333211, 233211, 1005820, 1012913, 1019559, 1026157, 1032721, 1039284, 1045847, 1052410, 1058973, 1065536} },
{"Akil'zon's Talonblade", {6033214, 33214, 333214, 233214, 1005821, 1012914, 1019560, 1026158, 1032722, 1039285, 1045848, 1052411, 1058974, 1065537} },
{"Bloodstained Elven Battlevest", {6033215, 33215, 333215, 233215, 1005822, 1012915, 1019561, 1026159, 1032723, 1039286, 1045849, 1052412, 1058975, 1065538} },
{"Chestguard of Hidden Purpose", {6033216, 33216, 333216, 233216, 1005823, 1012916, 1019562, 1026160, 1032724, 1039287, 1045850, 1052413, 1058976, 1065539} },
{"Nyn'jah's Tabi Boots", {6033222, 33222, 294263, 294264, 294265, 294266, 294267, 294268, 294269, 294270, 294271, 294272, 294273, 294274} },
{"Iron-tusk Girdle", {6033279, 33279, 294821, 294822, 294823, 294824, 294825, 294826, 294827, 294828, 294829, 294830, 294831, 294832} },
{"War-Feathered Loop", {6033280, 33280, 294833, 294834, 294835, 294836, 294837, 294838, 294839, 294840, 294841, 294842, 294843, 294844} },
{"Brooch of Nature's Mercy", {6033281, 33281, 333281, 233281, 1005824, 1012917, 1019563, 1026161, 1032725, 1039288, 1045851, 1052414, 1058977, 1065540} },
{"Amani Punisher", {6033283, 33283, 333283, 233283, 1005825, 1012918, 1019564, 1026162, 1032726, 1039289, 1045852, 1052415, 1058978, 1065541} },
{"Fury of the Ursine", {6033285, 33285, 333285, 233285, 1005826, 1012919, 1019565, 1026163, 1032727, 1039290, 1045853, 1052416, 1058979, 1065542} },
{"Mojo-mender's Mask", {6033286, 33286, 333286, 233286, 1005827, 1012920, 1019566, 1026164, 1032728, 1039291, 1045854, 1052417, 1058980, 1065543} },
{"Gnarled Ironwood Pauldrons", {6033287, 33287, 294845, 294846, 294847, 294848, 294849, 294850, 294851, 294852, 294853, 294854, 294855, 294856} },
{"Voodoo-woven Belt", {6033291, 33291, 294857, 294858, 294859, 294860, 294861, 294862, 294863, 294864, 294865, 294866, 294867, 294868} },
{"Signet of Ancient Magics", {6033293, 33293, 333293, 233293, 1005828, 1012921, 1019567, 1026165, 1032729, 1039292, 1045855, 1052418, 1058981, 1065544} },
{"Brooch of Deftness", {6033296, 33296, 294882, 294883, 294884, 294885, 294886, 294887, 294888, 294889, 294890, 294891, 294892, 294893} },
{"The Savage's Choker", {6033297, 33297, 333297, 233297, 1005829, 1012922, 1019568, 1026166, 1032730, 1039293, 1045856, 1052419, 1058982, 1065545} },
{"Prowler's Strikeblade", {6033298, 33298, 333298, 233298, 1005830, 1012923, 1019569, 1026167, 1032731, 1039294, 1045857, 1052420, 1058983, 1065546} },
{"Spaulders of the Advocate", {6033299, 33299, 333299, 233299, 1005831, 1012924, 1019570, 1026168, 1032732, 1039295, 1045858, 1052421, 1058984, 1065547} },
{"Shoulderpads of Dancing Blades", {6033300, 33300, 333300, 233300, 1005832, 1012925, 1019571, 1026169, 1032733, 1039296, 1045859, 1052422, 1058985, 1065548} },
{"Skullshatter Warboots", {6033303, 33303, 333303, 233303, 1005833, 1012926, 1019572, 1026170, 1032734, 1039297, 1045860, 1052423, 1058986, 1065549} },
{"Robe of Departed Spirits", {6033317, 33317, 333317, 233317, 1005834, 1012927, 1019573, 1026171, 1032735, 1039298, 1045861, 1052424, 1058987, 1065550} },
{"Shimmer-pelt Vest", {6033322, 33322, 333322, 233322, 1005835, 1012928, 1019574, 1026172, 1032736, 1039299, 1045862, 1052425, 1058988, 1065551} },
{"Treads of the Life Path", {6033324, 33324, 294930, 294931, 294932, 294933, 294934, 294935, 294936, 294937, 294938, 294939, 294940, 294941} },
{"Voodoo Shaker", {6033325, 33325, 294942, 294943, 294944, 294945, 294946, 294947, 294948, 294949, 294950, 294951, 294952, 294953} },
{"Bulwark of the Amani Empire", {6033326, 33326, 333326, 233326, 1005836, 1012929, 1019575, 1026173, 1032737, 1039300, 1045863, 1052426, 1058989, 1065552} },
{"Mask of Introspection", {6033327, 33327, 333327, 233327, 1005837, 1012930, 1019576, 1026174, 1032738, 1039301, 1045864, 1052427, 1058990, 1065553} },
{"Arrow-fall Chestguard", {6033328, 33328, 333328, 233328, 1005838, 1012931, 1019577, 1026175, 1032739, 1039302, 1045865, 1052428, 1058991, 1065554} },
{"Shadowtooth Trollskin Cuirass", {6033329, 33329, 333329, 233329, 1005839, 1012932, 1019578, 1026176, 1032740, 1039303, 1045866, 1052429, 1058992, 1065555} },
{"Chain of Unleashed Rage", {6033331, 33331, 294954, 294955, 294956, 294957, 294958, 294959, 294960, 294961, 294962, 294963, 294964, 294965} },
{"Enamelled Disc of Mojo", {6033332, 33332, 333332, 233332, 1005840, 1012933, 1019579, 1026177, 1032741, 1039304, 1045867, 1052430, 1058993, 1065556} },
{"Fetish of the Primal Gods", {6033334, 33334, 294978, 294979, 294980, 294981, 294982, 294983, 294984, 294985, 294986, 294987, 294988, 294989} },
{"Wub's Cursed Hexblade", {6033354, 33354, 333354, 233354, 1005841, 1012934, 1019580, 1026178, 1032742, 1039305, 1045868, 1052431, 1058994, 1065557} },
{"Helm of Natural Regeneration", {6033356, 33356, 333356, 233356, 1005842, 1012935, 1019581, 1026179, 1032743, 1039306, 1045869, 1052432, 1058995, 1065558} },
{"Footpads of Madness", {6033357, 33357, 333357, 233357, 1005843, 1012936, 1019582, 1026180, 1032744, 1039307, 1045870, 1052433, 1058996, 1065559} },
{"Man'kin'do's Belt", {6033386, 33386, 295002, 295003, 295004, 295005, 295006, 295007, 295008, 295009, 295010, 295011, 295012, 295013} },
{"Heartless", {6033388, 33388, 333388, 233388, 1005844, 1012937, 1019583, 1026181, 1032745, 1039308, 1045871, 1052434, 1058997, 1065560} },
{"Dagger of Bad Mojo", {6033389, 33389, 333389, 233389, 1005845, 1012938, 1019584, 1026182, 1032746, 1039309, 1045872, 1052435, 1058998, 1065561} },
{"Battleworn Tuskguard", {6033421, 33421, 333421, 233421, 1005846, 1012939, 1019585, 1026183, 1032747, 1039310, 1045873, 1052436, 1058999, 1065562} },
{"Coif of the Jungle Stalker", {6033432, 33432, 333432, 233432, 1005847, 1012940, 1019586, 1026184, 1032748, 1039311, 1045874, 1052437, 1059000, 1065563} },
{"Girdle of Stromgarde's Hope", {6033446, 33446, 333446, 233446, 1005848, 1012941, 1019587, 1026185, 1032749, 1039312, 1045875, 1052438, 1059001, 1065564} },
{"Hood of Hexing", {6033453, 33453, 333453, 233453, 1005849, 1012942, 1019588, 1026186, 1032750, 1039313, 1045876, 1052439, 1059002, 1065565} },
{"Hood of the Third Eye", {6033463, 33463, 333463, 233463, 1005850, 1012943, 1019589, 1026187, 1032751, 1039314, 1045877, 1052440, 1059003, 1065566} },
{"Hex Lord's Voodoo Pauldrons", {6033464, 33464, 333464, 233464, 1005851, 1012944, 1019590, 1026188, 1032752, 1039315, 1045878, 1052441, 1059004, 1065567} },
{"Staff of Primal Fury", {6033465, 33465, 333465, 233465, 1005852, 1012945, 1019591, 1026189, 1032753, 1039316, 1045879, 1052442, 1059005, 1065568} },
{"Loop of Cursed Bones", {6033466, 33466, 333466, 233466, 1005853, 1012946, 1019592, 1026190, 1032754, 1039317, 1045880, 1052443, 1059006, 1065569} },
{"Blade of Twisted Visions", {6033467, 33467, 333467, 233467, 1005854, 1012947, 1019593, 1026191, 1032755, 1039318, 1045881, 1052444, 1059007, 1065570} },
{"Dark Blessing", {6033468, 33468, 333468, 233468, 1005855, 1012948, 1019594, 1026192, 1032756, 1039319, 1045882, 1052445, 1059008, 1065571} },
{"Hauberk of the Empire's Champion", {6033469, 33469, 333469, 233469, 1005856, 1012949, 1019595, 1026193, 1032757, 1039320, 1045883, 1052446, 1059009, 1065572} },
{"Two-toed Sandals", {6033471, 33471, 333471, 233471, 1005857, 1012950, 1019596, 1026194, 1032758, 1039321, 1045884, 1052447, 1059010, 1065573} },
{"Chestguard of the Warlord", {6033473, 33473, 333473, 233473, 1005858, 1012951, 1019597, 1026195, 1032759, 1039322, 1045885, 1052448, 1059011, 1065574} },
{"Ancient Amani Longbow", {6033474, 33474, 333474, 233474, 1005859, 1012952, 1019598, 1026196, 1032760, 1039323, 1045886, 1052449, 1059012, 1065575} },
{"Cleaver of the Unforgiving", {6033476, 33476, 333476, 233476, 1005860, 1012953, 1019599, 1026197, 1032761, 1039324, 1045887, 1052450, 1059013, 1065576} },
{"Jin'rohk, The Great Apocalypse", {6033478, 33478, 333478, 233478, 1005861, 1012954, 1019600, 1026198, 1032762, 1039325, 1045888, 1052451, 1059014, 1065577} },
{"Grimgrin Faceguard", {6033479, 33479, 333479, 233479, 1005862, 1012955, 1019601, 1026199, 1032763, 1039326, 1045889, 1052452, 1059015, 1065578} },
{"Cord of Braided Troll Hair", {6033480, 33480, 295027, 295028, 295029, 295030, 295031, 295032, 295033, 295034, 295035, 295036, 295037, 295038} },
{"Pauldrons of Stone Resolve", {6033481, 33481, 295039, 295040, 295041, 295042, 295043, 295044, 295045, 295046, 295047, 295048, 295049, 295050} },
{"Cobra-Lash Boots", {6033482, 33482, 295051, 230104, 295052, 295053, 295054, 295055, 295056, 295057, 295058, 295059, 295060, 295061} },
{"Life-step Belt", {6033483, 33483, 295062, 295063, 295064, 295065, 295066, 295067, 295068, 295069, 295070, 295071, 295072, 295073} },
{"Mantle of Ill Intent", {6033489, 33489, 295086, 295087, 295088, 295089, 295090, 295091, 295092, 295093, 295094, 295095, 295096, 295097} },
{"Staff of Dark Mending", {6033490, 33490, 295098, 295099, 295100, 295101, 295102, 295103, 295104, 295105, 295106, 295107, 295108, 295109} },
{"Tuskbreaker", {6033491, 33491, 295110, 295111, 295112, 295113, 295114, 295115, 295116, 295117, 295118, 295119, 295120, 295121} },
{"Trollbane", {6033492, 33492, 295122, 295123, 295124, 295125, 295126, 295127, 295128, 295129, 295130, 295131, 295132, 295133} },
{"Umbral Shiv", {6033493, 33493, 295134, 295135, 295136, 295137, 295138, 295139, 295140, 295141, 295142, 295143, 295144, 295145} },
{"Amani Divining Staff", {6033494, 33494, 295146, 295147, 295148, 295149, 295150, 295151, 295152, 295153, 295154, 295155, 295156, 295157} },
{"Rage", {6033495, 33495, 295158, 295159, 295160, 295161, 295162, 295163, 295164, 295165, 295166, 295167, 295168, 295169} },
{"Signet of Primal Wrath", {6033496, 33496, 295170, 295171, 295172, 295173, 295174, 295175, 295176, 295177, 295178, 295179, 295180, 295181} },
{"Mana Attuned Band", {6033497, 33497, 295182, 295183, 295184, 295185, 295186, 295187, 295188, 295189, 295190, 295191, 295192, 295193} },
{"Signet of the Quiet Forest", {6033498, 33498, 295194, 295195, 295196, 295197, 295198, 295199, 295200, 295201, 295202, 295203, 295204, 295205} },
{"Signet of the Last Defender", {6033499, 33499, 295206, 295207, 295208, 295209, 295210, 295211, 295212, 295213, 295214, 295215, 295216, 295217} },
{"Bloodthirster's Wargreaves", {6033501, 33501, 295230, 295231, 295232, 295233, 295234, 295235, 295236, 295237, 295238, 295239, 295240, 295241} },
{"Libram of Mending", {6033502, 33502, 295242, 295243, 295244, 295245, 295246, 295247, 295248, 295249, 295250, 295251, 295252, 295253} },
{"Libram of Divine Judgement", {6033503, 33503, 295254, 295255, 295256, 295257, 295258, 295259, 295260, 295261, 295262, 295263, 295264, 295265} },
{"Libram of Divine Purpose", {6033504, 33504, 295266, 295267, 295268, 295269, 295270, 295271, 295272, 295273, 295274, 295275, 295276, 295277} },
{"Totem of Living Water", {6033505, 33505, 295278, 295279, 295280, 295281, 295282, 295283, 295284, 295285, 295286, 295287, 295288, 295289} },
{"Skycall Totem", {6033506, 33506, 295290, 295291, 295292, 295293, 295294, 295295, 295296, 295297, 295298, 295299, 295300, 295301} },
{"Stonebreaker's Totem", {6033507, 33507, 295302, 295303, 295304, 295305, 295306, 295307, 295308, 295309, 295310, 295311, 295312, 295313} },
{"Idol of Budding Life", {6033508, 33508, 295314, 295315, 295316, 295317, 295318, 295319, 295320, 295321, 295322, 295323, 295324, 295325} },
{"Idol of Terror", {6033509, 33509, 295326, 295327, 295328, 295329, 295330, 295331, 295332, 295333, 295334, 295335, 295336, 295337} },
{"Idol of the Unseen Moon", {6033510, 33510, 295338, 295339, 295340, 295341, 295342, 295343, 295344, 295345, 295346, 295347, 295348, 295349} },
{"Furious Deathgrips", {6033512, 33512, 295350, 295351, 295352, 295353, 295354, 295355, 295356, 295357, 295358, 295359, 295360, 295361} },
{"Eternium Rage-shackles", {6033513, 33513, 295362, 295363, 295364, 295365, 295366, 295367, 295368, 295369, 295370, 295371, 295372, 295373} },
{"Pauldrons of Gruesome Fate", {6033514, 33514, 295374, 295375, 295376, 295377, 295378, 295379, 295380, 295381, 295382, 295383, 295384, 295385} },
{"Unwavering Legguards", {6033515, 33515, 295386, 295387, 295388, 295389, 295390, 295391, 295392, 295393, 295394, 295395, 295396, 295397} },
{"Bracers of the Ancient Phalanx", {6033516, 33516, 295398, 295399, 295400, 295401, 295402, 295403, 295404, 295405, 295406, 295407, 295408, 295409} },
{"Bonefist Gauntlets", {6033517, 33517, 295410, 295411, 295412, 295413, 295414, 295415, 295416, 295417, 295418, 295419, 295420, 295421} },
{"High Justicar's Legplates", {6033518, 33518, 295422, 295423, 295424, 295425, 295426, 295427, 295428, 295429, 295430, 295431, 295432, 295433} },
{"Handguards of the Templar", {6033519, 33519, 295434, 295435, 295436, 295437, 295438, 295439, 295440, 295441, 295442, 295443, 295444, 295445} },
{"Vambraces of the Naaru", {6033520, 33520, 295446, 295447, 295448, 295449, 295450, 295451, 295452, 295453, 295454, 295455, 295456, 295457} },
{"Chestguard of the Stoic Guardian", {6033522, 33522, 295458, 295459, 295460, 295461, 295462, 295463, 295464, 295465, 295466, 295467, 295468, 295469} },
{"Sabatons of the Righteous Defender", {6033523, 33523, 295470, 295471, 295472, 295473, 295474, 295475, 295476, 295477, 295478, 295479, 295480, 295481} },
{"Girdle of the Protector", {6033524, 33524, 295482, 295483, 295484, 295485, 295486, 295487, 295488, 295489, 295490, 295491, 295492, 295493} },
{"Shifting Camouflage Pants", {6033527, 33527, 295494, 295495, 295496, 295497, 295498, 295499, 295500, 295501, 295502, 295503, 295504, 295505} },
{"Gauntlets of Sniping", {6033528, 33528, 295506, 295507, 295508, 295509, 295510, 295511, 295512, 295513, 295514, 295515, 295516, 295517} },
{"Steadying Bracers", {6033529, 33529, 295518, 295519, 295520, 295521, 295522, 295523, 295524, 295525, 295526, 295527, 295528, 295529} },
{"Natural Life Leggings", {6033530, 33530, 295530, 295531, 295532, 295533, 295534, 295535, 295536, 295537, 295538, 295539, 295540, 295541} },
{"Polished Waterscale Gloves", {6033531, 33531, 295542, 295543, 295544, 295545, 295546, 295547, 295548, 295549, 295550, 295551, 295552, 295553} },
{"Gleaming Earthen Bracers", {6033532, 33532, 295554, 295555, 295556, 295557, 295558, 295559, 295560, 295561, 295562, 295563, 295564, 295565} },
{"Avalanche Leggings", {6033533, 33533, 333533, 233533, 1005863, 1012956, 1019602, 1026200, 1032764, 1039327, 1045890, 1052453, 1059016, 1065579} },
{"Grips of Nature's Wrath", {6033534, 33534, 295566, 295567, 295568, 295569, 295570, 295571, 295572, 295573, 295574, 295575, 295576, 295577} },
{"Earthquake Bracers", {6033535, 33535, 295578, 295579, 295580, 295581, 295582, 295583, 295584, 295585, 295586, 295587, 295588, 295589} },
{"Stormwrap", {6033536, 33536, 295590, 295591, 295592, 295593, 295594, 295595, 295596, 295597, 295598, 295599, 295600, 295601} },
{"Treads of Booming Thunder", {6033537, 33537, 295602, 295603, 295604, 295605, 295606, 295607, 295608, 295609, 295610, 295611, 295612, 295613} },
{"Shallow-grave Trousers", {6033538, 33538, 295614, 295615, 295616, 295617, 295618, 295619, 295620, 295621, 295622, 295623, 295624, 295625} },
{"Trickster's Stickyfingers", {6033539, 33539, 295626, 295627, 295628, 295629, 295630, 295631, 295632, 295633, 295634, 295635, 295636, 295637} },
{"Master Assassin Wristwraps", {6033540, 33540, 295638, 295639, 295640, 295641, 295642, 295643, 295644, 295645, 295646, 295647, 295648, 295649} },
{"Pants of Splendid Recovery", {6033552, 33552, 295650, 295651, 295652, 295653, 295654, 295655, 295656, 295657, 295658, 295659, 295660, 295661} },
{"Gargon's Bracers of Peaceful Slumber", {6033557, 33557, 295662, 295663, 295664, 295665, 295666, 295667, 295668, 295669, 295670, 295671, 295672, 295673} },
{"Starfire Waistband", {6033559, 33559, 295674, 295675, 295676, 295677, 295678, 295679, 295680, 295681, 295682, 295683, 295684, 295685} },
{"Blessed Elunite Coverings", {6033566, 33566, 295686, 295687, 295688, 295689, 295690, 295691, 295692, 295693, 295694, 295695, 295696, 295697} },
{"Moon-walkers", {6033577, 33577, 295698, 295699, 295700, 295701, 295702, 295703, 295704, 295705, 295706, 295707, 295708, 295709} },
{"Armwraps of the Kaldorei Protector", {6033578, 33578, 295710, 295711, 295712, 295713, 295714, 295715, 295716, 295717, 295718, 295719, 295720, 295721} },
{"Vestments of Hibernation", {6033579, 33579, 295722, 295723, 295724, 295725, 295726, 295727, 295728, 295729, 295730, 295731, 295732, 295733} },
{"Band of the Swift Paw", {6033580, 33580, 295734, 295735, 295736, 295737, 295738, 295739, 295740, 295741, 295742, 295743, 295744, 295745} },
{"Footwraps of Wild Encroachment", {6033582, 33582, 295746, 295747, 295748, 295749, 295750, 295751, 295752, 295753, 295754, 295755, 295756, 295757} },
{"Waistguard of the Great Beast", {6033583, 33583, 295758, 295759, 295760, 295761, 295762, 295763, 295764, 295765, 295766, 295767, 295768, 295769} },
{"Pantaloons of Arcane Annihilation", {6033584, 33584, 295770, 295771, 295772, 295773, 295774, 295775, 295776, 295777, 295778, 295779, 295780, 295781} },
{"Achromic Trousers of the Naaru", {6033585, 33585, 295782, 295783, 295784, 295785, 295786, 295787, 295788, 295789, 295790, 295791, 295792, 295793} },
{"Studious Wraps", {6033586, 33586, 295794, 295795, 295796, 295797, 295798, 295799, 295800, 295801, 295802, 295803, 295804, 295805} },
{"Light-Blessed Bonds", {6033587, 33587, 295806, 295807, 295808, 295809, 295810, 295811, 295812, 295813, 295814, 295815, 295816, 295817} },
{"Runed Spell-cuffs", {6033588, 33588, 295818, 295819, 295820, 295821, 295822, 295823, 295824, 295825, 295826, 295827, 295828, 295829} },
{"Wristguards of Tranquil Thought", {6033589, 33589, 295830, 295831, 295832, 295833, 295834, 295835, 295836, 295837, 295838, 295839, 295840, 295841} },
{"Cloak of Fiends", {6033590, 33590, 295842, 295843, 295844, 295845, 295846, 295847, 295848, 295849, 295850, 295851, 295852, 295853} },
{"Shadowcaster's Drape", {6033591, 33591, 295854, 295855, 295856, 295857, 295858, 295859, 295860, 295861, 295862, 295863, 295864, 295865} },
{"Cloak of Ancient Rituals", {6033592, 33592, 333592, 233592, 1005864, 1012957, 1019603, 1026201, 1032765, 1039328, 1045891, 1052454, 1059017, 1065580} },
{"Slikk's Cloak of Placation", {6033593, 33593, 295866, 295867, 295868, 295869, 295870, 295871, 295872, 295873, 295874, 295875, 295876, 295877} },
{"Fury", {6033640, 33640, 333640, 233640, 1005865, 1012958, 1019604, 1026202, 1032766, 1039329, 1045892, 1052455, 1059018, 1065581} },
{"Onslaught Plate Gloves", {123150, 33641, 123149, 233641, 1005866, 1012959, 1019605, 1026203, 1032767, 1039330, 1045893, 1052456, 1059019, 1065582} },
{"Onslaught Plate Helmet", {123154, 33642, 123153, 233642, 1005867, 1012960, 1019606, 1026204, 1032768, 1039331, 1045894, 1052457, 1059020, 1065583} },
{"Onslaught Plate Hauberk", {123152, 33643, 123151, 233643, 1005868, 1012961, 1019607, 1026205, 1032769, 1039332, 1045895, 1052458, 1059021, 1065584} },
{"Onslaught Plate Leggings", {123156, 33644, 123155, 233644, 1005869, 1012962, 1019608, 1026206, 1032770, 1039333, 1045896, 1052459, 1059022, 1065585} },
{"Onslaught Plate Pauldrons", {123158, 33645, 123157, 233645, 1005870, 1012963, 1019609, 1026207, 1032771, 1039334, 1045897, 1052460, 1059023, 1065586} },
{"Onslaught Wristguards", {6034442, 33646, 123163, 234442, 1006056, 1013140, 1019784, 1026382, 1032946, 1039509, 1046072, 1052635, 1059198, 1065761} },
{"Onslaught Waistguard", {6034547, 33647, 123162, 234547, 1006079, 1013157, 1019801, 1026399, 1032963, 1039526, 1046089, 1052652, 1059215, 1065778} },
{"Onslaught Boots", {6034568, 33648, 123140, 234568, 1006096, 1013173, 1019817, 1026415, 1032979, 1039542, 1046105, 1052668, 1059231, 1065794} },
{"Shadowhunter's Treads", {6033805, 33805, 297235, 297236, 297237, 297238, 297239, 297240, 297241, 297242, 297243, 297244, 297245, 297246} },
{"The Horseman's Helm", {6033808, 33808, 297247, 297248, 297249, 297250, 297251, 297252, 297253, 297254, 297255, 297256, 297257, 297258} },
{"Amani Mask of Death", {6033810, 33810, 297259, 297260, 297261, 297262, 297263, 297264, 297265, 297266, 297267, 297268, 297273, 297274} },
{"Weather-Beaten Fishing Hat", {6033820, 33820, 297275, 297276, 297277, 297278, 297279, 297280, 297281, 297282, 297283, 297284, 297285, 297286} },
{"Tome of Diabolic Remedy", {6033828, 33828, 333828, 233828, 1005874, 1012967, 1019613, 1026211, 1032775, 1039338, 1045901, 1052464, 1059027, 1065590} },
{"Hex Shrunken Head", {6033829, 33829, 333829, 233829, 1005875, 1012968, 1019614, 1026212, 1032776, 1039339, 1045902, 1052465, 1059028, 1065591} },
{"Ancient Aqir Artifact", {6033830, 33830, 333830, 233830, 1005876, 1012969, 1019615, 1026213, 1032777, 1039340, 1045903, 1052466, 1059029, 1065592} },
{"Berserker's Call", {6033831, 33831, 333831, 233831, 1005877, 1012970, 1019616, 1026214, 1032778, 1039341, 1045904, 1052467, 1059030, 1065593} },
{"Battlemaster's Determination", {6033832, 33832, 297287, 297288, 297289, 297290, 297291, 297292, 297293, 297294, 297295, 297296, 297297, 297298} },
{"Vengeful Gladiator's Idol of Tenacity", {6033841, 33841, 297299, 297300, 297301, 297302, 297303, 297304, 297305, 297306, 297307, 297308, 297309, 297310} },
{"Vengeful Gladiator's Libram of Justice", {6033842, 33842, 297311, 297312, 297313, 297314, 297315, 297316, 297317, 297318, 297319, 297320, 297321, 297322} },
{"Vengeful Gladiator's Totem of the Third Wind", {6033843, 33843, 297323, 297324, 297325, 297326, 297327, 297328, 297329, 297330, 297331, 297332, 297333, 297334} },
{"Gladiator's Libram of Fortitude", {6033936, 33936, 297419, 297420, 297421, 297422, 297423, 297424, 297425, 297426, 297427, 297428, 297429, 297430} },
{"Vengeful Gladiator's Libram of Fortitude", {6033938, 33938, 297443, 297444, 297445, 297446, 297447, 297448, 297449, 297450, 297451, 297452, 297453, 297454} },
{"Gladiator's Totem of Indomitability", {6033939, 33939, 297455, 297456, 297457, 297458, 297459, 297460, 297461, 297462, 297463, 297464, 297465, 297466} },
{"Vengeful Gladiator's Totem of Indomitability", {6033941, 33941, 297479, 297480, 297481, 297482, 297483, 297484, 297485, 297486, 297487, 297488, 297489, 297490} },
{"Gladiator's Idol of Steadfastness", {6033942, 33942, 297491, 297492, 297493, 297494, 297495, 297496, 297497, 297498, 297499, 297500, 297501, 297502} },
{"Vengeful Gladiator's Idol of Steadfastness", {6033944, 33944, 297515, 297516, 297517, 297518, 297519, 297520, 297521, 297522, 297523, 297524, 297525, 297526} },
{"Gladiator's Idol of Resolve", {6033945, 33945, 297527, 297528, 297529, 297530, 297531, 297532, 297533, 297534, 297535, 297536, 297537, 297538} },
{"Vengeful Gladiator's Idol of Resolve", {6033947, 33947, 297551, 297552, 297553, 297554, 297555, 297556, 297557, 297558, 297559, 297560, 297561, 297562} },
{"Gladiator's Libram of Vengeance", {6033948, 33948, 297563, 297564, 297565, 297566, 297567, 297568, 297569, 297570, 297571, 297572, 297573, 297574} },
{"Vengeful Gladiator's Libram of Vengeance", {6033950, 33950, 297587, 297588, 297589, 297590, 297591, 297592, 297593, 297594, 297595, 297596, 297597, 297598} },
{"Gladiator's Totem of Survival", {6033951, 33951, 297599, 297600, 297601, 297602, 297603, 297604, 297605, 297606, 297607, 297608, 297609, 297610} },
{"Vengeful Gladiator's Totem of Survival", {6033953, 33953, 297623, 297624, 297625, 297626, 297627, 297628, 297629, 297630, 297631, 297632, 297633, 297634} },
{"Witches Band", {6033957, 33957, 297635, 297636, 297637, 297638, 297639, 297640, 297641, 297642, 297643, 297644, 297645, 297646} },
{"Ring of Ghoulish Delight", {6033959, 33959, 297647, 297648, 297649, 297650, 297651, 297652, 297653, 297654, 297655, 297656, 297657, 297658} },
{"Helm of the Stormcaller", {6033964, 33964, 297659, 297660, 297661, 297662, 297663, 297664, 297665, 297666, 297667, 297668, 297669, 297670} },
{"Hauberk of the Furious Elements", {6033965, 33965, 297671, 297672, 297673, 297674, 297675, 297676, 297677, 297678, 297679, 297680, 297681, 297682} },
{"Pauldrons of the Furious Elements", {6033970, 33970, 297683, 297684, 297685, 297686, 297687, 297688, 297689, 297690, 297691, 297692, 297693, 297694} },
{"Elunite Imbued Leggings", {6033971, 33971, 297695, 297696, 297697, 297698, 297699, 297700, 297701, 297702, 297703, 297704, 297705, 297706} },
{"Mask of Primal Power", {6033972, 33972, 297707, 297708, 297709, 297710, 297711, 297712, 297713, 297714, 297715, 297716, 297717, 297718} },
{"Pauldrons of Tribal Fury", {6033973, 33973, 297719, 297720, 297721, 297722, 297723, 297724, 297725, 297726, 297727, 297728, 297729, 297730} },
{"Grasp of the Moonkin", {6033974, 33974, 297731, 297732, 297733, 297734, 297735, 297736, 297737, 297738, 297739, 297740, 297741, 297742} },
{"Indalamar's Ring of 200 Spell Crit", {6033987, 33987, 297743, 297744, 297745, 297746, 297747, 297748, 297749, 297750, 297751, 297752, 297753, 297754} },
{"Indalamar's Ring of 400 Attack Power", {6033997, 33997, 297755, 297756, 297757, 297758, 297759, 297760, 297761, 297762, 297763, 297764, 297765, 297766} },
{"Hammer of Judgement", {6034009, 34009, 120447, 234009, 1005920, 1013014, 1019659, 1026257, 1032821, 1039384, 1045947, 1052510, 1059073, 1065636} },
{"Pepe's Shroud of Pacification", {6034010, 34010, 123398, 234010, 1005921, 1013015, 1019660, 1026258, 1032822, 1039385, 1045948, 1052511, 1059074, 1065637} },
{"Illidari Runeshield", {6034011, 34011, 334011, 234011, 1005922, 1013016, 1019661, 1026259, 1032823, 1039386, 1045949, 1052512, 1059075, 1065638} },
{"Shroud of the Final Stand", {6034012, 34012, 334012, 234012, 1005923, 1013017, 1019662, 1026260, 1032824, 1039387, 1045950, 1052513, 1059076, 1065639} },
{"Tiny Voodoo Mask", {6034029, 34029, 334029, 234029, 1005924, 1013018, 1019663, 1026261, 1032825, 1039388, 1045951, 1052514, 1059077, 1065640} },
{"Battlemaster's Audacity", {6034049, 34049, 297815, 297816, 297817, 297818, 297819, 297820, 297821, 297822, 297823, 297824, 297825, 297826} },
{"Battlemaster's Perseverance", {6034050, 34050, 297827, 297828, 297829, 297830, 297831, 297832, 297833, 297834, 297835, 297836, 297837, 297838} },
{"The Horseman's Signet Ring", {6034073, 34073, 297863, 297864, 297865, 297866, 297867, 297868, 297869, 297870, 297871, 297872, 297873, 297874} },
{"Witches Band", {6034074, 34074, 297875, 297876, 297877, 297878, 297879, 297880, 297881, 297882, 297883, 297884, 297885, 297886} },
{"Ring of Ghoulish Delight", {6034075, 34075, 297887, 297888, 297889, 297890, 297891, 297892, 297893, 297894, 297895, 297896, 297897, 297898} },
{"Enchanted White Wand", {6034138, 34138, 297912, 297913, 297914, 297915, 297916, 297917, 297918, 297919, 297920, 297921, 297922, 297923} },
{"Enchanted Crimson Wand", {6034139, 34139, 297924, 297925, 297926, 297927, 297928, 297929, 297930, 297931, 297932, 297933, 297934, 297935} },
{"Dark Iron Tankard", {6034140, 34140, 297936, 297937, 297938, 297939, 297940, 297941, 297942, 297943, 297944, 297945, 297946, 297947} },
{"Branch of Destruction", {6034144, 34144, 297948, 297949, 297950, 297951, 297952, 297953, 297954, 297955, 297956, 297957, 297958, 297959} },
{"Rod of Devastation", {6034145, 34145, 297960, 297961, 297962, 297963, 297964, 297965, 297966, 297967, 297968, 297969, 297970, 297971} },
{"Silverstave", {6034147, 34147, 297984, 297985, 297986, 297987, 297988, 297989, 297990, 297991, 297992, 297993, 297994, 297995} },
{"Purified Silverstave", {6034148, 34148, 297996, 297997, 297998, 297999, 298000, 298001, 298002, 298003, 298004, 298005, 298006, 298007} },
{"Battlemaster's Depravity", {6034162, 34162, 298020, 298021, 298022, 298023, 298024, 298025, 298026, 298027, 298028, 298029, 298030, 298031} },
{"Battlemaster's Cruelty", {6034163, 34163, 298032, 298033, 298034, 298035, 298036, 298037, 298038, 298039, 298040, 298041, 298042, 298043} },
{"Dragonscale-Encrusted Longblade", {6034164, 34164, 334164, 234164, 1005925, 1013019, 1019664, 1026262, 1032826, 1039389, 1045952, 1052515, 1059078, 1065641} },
{"Fang of Kalecgos", {6034165, 34165, 334165, 234165, 1005926, 1013020, 1019665, 1026263, 1032827, 1039390, 1045953, 1052516, 1059079, 1065642} },
{"Band of Lucent Beams", {6034166, 34166, 334166, 234166, 1005927, 1013021, 1019666, 1026264, 1032828, 1039391, 1045954, 1052517, 1059080, 1065643} },
{"Legplates of the Holy Juggernaut", {6034167, 34167, 334167, 234167, 1005928, 1013022, 1019667, 1026265, 1032829, 1039392, 1045955, 1052518, 1059081, 1065644} },
{"Starstalker Legguards", {6034168, 34168, 334168, 234168, 1005929, 1013023, 1019668, 1026266, 1032830, 1039393, 1045956, 1052519, 1059082, 1065645} },
{"Breeches of Natural Aggression", {6034169, 34169, 334169, 234169, 1005930, 1013024, 1019669, 1026267, 1032831, 1039394, 1045957, 1052520, 1059083, 1065646} },
{"Pantaloons of Calming Strife", {6034170, 34170, 334170, 234170, 1005931, 1013025, 1019670, 1026268, 1032832, 1039395, 1045958, 1052521, 1059084, 1065647} },
{"Reign of Misery", {6034176, 34176, 334176, 234176, 1005932, 1013026, 1019671, 1026269, 1032833, 1039396, 1045959, 1052522, 1059085, 1065648} },
{"Clutch of Demise", {6034177, 34177, 334177, 234177, 1005933, 1013027, 1019672, 1026270, 1032834, 1039397, 1045960, 1052523, 1059086, 1065649} },
{"Collar of the Pit Lord", {6034178, 34178, 334178, 234178, 1005934, 1013028, 1019673, 1026271, 1032835, 1039398, 1045961, 1052524, 1059087, 1065650} },
{"Heart of the Pit", {6034179, 34179, 334179, 234179, 1005935, 1013029, 1019674, 1026272, 1032836, 1039399, 1045962, 1052525, 1059088, 1065651} },
{"Felfury Legplates", {6034180, 34180, 334180, 234180, 1005936, 1013030, 1019675, 1026273, 1032837, 1039400, 1045963, 1052526, 1059089, 1065652} },
{"Leggings of Calamity", {6034181, 34181, 334181, 234181, 1005937, 1013031, 1019676, 1026274, 1032838, 1039401, 1045964, 1052527, 1059090, 1065653} },
{"Grand Magister's Staff of Torrents", {6034182, 34182, 334182, 234182, 1005938, 1013032, 1019677, 1026275, 1032839, 1039402, 1045965, 1052528, 1059091, 1065654} },
{"Shivering Felspine", {6034183, 34183, 334183, 234183, 1005939, 1013033, 1019678, 1026276, 1032840, 1039403, 1045966, 1052529, 1059092, 1065655} },
{"Brooch of the Highborne", {6034184, 34184, 334184, 234184, 1005940, 1013034, 1019679, 1026277, 1032841, 1039404, 1045967, 1052530, 1059093, 1065656} },
{"Sword Breaker's Bulwark", {6034185, 34185, 334185, 234185, 1005941, 1013035, 1019680, 1026278, 1032842, 1039405, 1045968, 1052531, 1059094, 1065657} },
{"Chain Links of the Tumultuous Storm", {6034186, 34186, 334186, 234186, 1005942, 1013036, 1019681, 1026279, 1032843, 1039406, 1045969, 1052532, 1059095, 1065658} },
{"Leggings of the Immortal Night", {6034188, 34188, 334188, 234188, 1005943, 1013037, 1019682, 1026280, 1032844, 1039407, 1045970, 1052533, 1059096, 1065659} },
{"Band of Ruinous Delight", {6034189, 34189, 334189, 234189, 1005944, 1013038, 1019683, 1026281, 1032845, 1039408, 1045971, 1052534, 1059097, 1065660} },
{"Crimson Paragon's Cover", {6034190, 34190, 334190, 234190, 1005945, 1013039, 1019684, 1026282, 1032846, 1039409, 1045972, 1052535, 1059098, 1065661} },
{"Pauldrons of Perseverance", {6034192, 34192, 334192, 234192, 1005946, 1013040, 1019685, 1026283, 1032847, 1039410, 1045973, 1052536, 1059099, 1065662} },
{"Spaulders of the Thalassian Savior", {6034193, 34193, 334193, 234193, 1005947, 1013041, 1019686, 1026284, 1032848, 1039411, 1045974, 1052537, 1059100, 1065663} },
{"Mantle of the Golden Forest", {6034194, 34194, 334194, 234194, 1005948, 1013042, 1019687, 1026285, 1032849, 1039412, 1045975, 1052538, 1059101, 1065664} },
{"Shoulderpads of Vehemence", {6034195, 34195, 334195, 234195, 1005949, 1013043, 1019688, 1026286, 1032850, 1039413, 1045976, 1052539, 1059102, 1065665} },
{"Golden Bow of Quel'Thalas", {6034196, 34196, 334196, 234196, 1005950, 1013044, 1019689, 1026287, 1032851, 1039414, 1045977, 1052540, 1059103, 1065666} },
{"Shiv of Exsanguination", {6034197, 34197, 334197, 234197, 1005951, 1013045, 1019690, 1026288, 1032852, 1039415, 1045978, 1052541, 1059104, 1065667} },
{"Stanchion of Primal Instinct", {6034198, 34198, 334198, 234198, 1005952, 1013046, 1019691, 1026289, 1032853, 1039416, 1045979, 1052542, 1059105, 1065668} },
{"Archon's Gavel", {6034199, 34199, 334199, 234199, 1005953, 1013047, 1019692, 1026290, 1032854, 1039417, 1045980, 1052543, 1059106, 1065669} },
{"Shawl of Wonderment", {6034202, 34202, 334202, 234202, 1005954, 1013048, 1019693, 1026291, 1032855, 1039418, 1045981, 1052544, 1059107, 1065670} },
{"Grip of Mannoroth", {6034203, 34203, 334203, 234203, 1005955, 1013049, 1019694, 1026292, 1032856, 1039419, 1045982, 1052545, 1059108, 1065671} },
{"Amulet of Unfettered Magics", {6034204, 34204, 334204, 234204, 1005956, 1013050, 1019695, 1026293, 1032857, 1039420, 1045983, 1052546, 1059109, 1065672} },
{"Shroud of Redeemed Souls", {6034205, 34205, 334205, 234205, 1005957, 1013051, 1019696, 1026294, 1032858, 1039421, 1045984, 1052547, 1059110, 1065673} },
{"Book of Highborne Hymns", {6034206, 34206, 334206, 234206, 1005958, 1013052, 1019697, 1026295, 1032859, 1039422, 1045985, 1052548, 1059111, 1065674} },
{"Equilibrium Epaulets", {6034208, 34208, 334208, 234208, 1005959, 1013053, 1019698, 1026296, 1032860, 1039423, 1045986, 1052549, 1059112, 1065675} },
{"Spaulders of Reclamation", {6034209, 34209, 128007, 234209, 1005960, 1013054, 1019699, 1026297, 1032861, 1039424, 1045987, 1052550, 1059113, 1065676} },
{"Amice of the Convoker", {6034210, 34210, 334210, 234210, 1005961, 1013055, 1019700, 1026298, 1032862, 1039425, 1045988, 1052551, 1059114, 1065677} },
{"Harness of Carnal Instinct", {6034211, 34211, 334211, 234211, 1005962, 1013056, 1019701, 1026299, 1032863, 1039426, 1045989, 1052552, 1059115, 1065678} },
{"Sunglow Vest", {6034212, 34212, 128976, 234212, 1005963, 1013057, 1019702, 1026300, 1032864, 1039427, 1045990, 1052553, 1059116, 1065679} },
{"Ring of Hardened Resolve", {6034213, 34213, 334213, 234213, 1005964, 1013058, 1019703, 1026301, 1032865, 1039428, 1045991, 1052554, 1059117, 1065680} },
{"Muramasa", {6034214, 34214, 334214, 234214, 1005965, 1013059, 1019704, 1026302, 1032866, 1039429, 1045992, 1052555, 1059118, 1065681} },
{"Warharness of Reckless Fury", {6034215, 34215, 334215, 234215, 1005966, 1013060, 1019705, 1026303, 1032867, 1039430, 1045993, 1052556, 1059119, 1065682} },
{"Heroic Judicator's Chestguard", {6034216, 34216, 334216, 234216, 1005967, 1013061, 1019706, 1026304, 1032868, 1039431, 1045994, 1052557, 1059120, 1065683} },
{"Armor Test Item", {6034219, 34219, 298044, 298045, 298046, 298047, 298048, 298049, 298050, 298051, 298052, 298053, 298054, 298055} },
{"Vicious Hawkstrider Hauberk", {6034228, 34228, 334228, 234228, 1005968, 1013062, 1019707, 1026305, 1032869, 1039432, 1045995, 1052558, 1059121, 1065684} },
{"Garments of Serene Shores", {6034229, 34229, 334229, 234229, 1005969, 1013063, 1019708, 1026306, 1032870, 1039433, 1045996, 1052559, 1059122, 1065685} },
{"Ring of Omnipotence", {6034230, 34230, 334230, 234230, 1005970, 1013064, 1019709, 1026307, 1032871, 1039434, 1045997, 1052560, 1059123, 1065686} },
{"Aegis of Angelic Fortune", {6034231, 34231, 334231, 234231, 1005971, 1013065, 1019710, 1026308, 1032872, 1039435, 1045998, 1052561, 1059124, 1065687} },
{"Fel Conquerer Raiments", {6034232, 34232, 334232, 234232, 1005972, 1013066, 1019711, 1026309, 1032873, 1039436, 1045999, 1052562, 1059125, 1065688} },
{"Robes of Faltered Light", {6034233, 34233, 334233, 234233, 1005973, 1013067, 1019712, 1026310, 1032874, 1039437, 1046000, 1052563, 1059126, 1065689} },
{"Shadowed Gauntlets of Paroxysm", {6034234, 34234, 334234, 234234, 1005974, 1013069, 1019713, 1026311, 1032875, 1039438, 1046001, 1052564, 1059127, 1065690} },
{"Gauntlets of the Soothed Soul", {6034240, 34240, 334240, 234240, 1005975, 1013070, 1019714, 1026312, 1032876, 1039439, 1046002, 1052565, 1059128, 1065691} },
{"Cloak of Unforgivable Sin", {6034241, 34241, 334241, 234241, 1005976, 1013071, 1019715, 1026313, 1032877, 1039440, 1046003, 1052566, 1059129, 1065692} },
{"Tattered Cape of Antonidas", {6034242, 34242, 334242, 234242, 1005977, 1013072, 1019716, 1026314, 1032878, 1039441, 1046004, 1052567, 1059130, 1065693} },
{"Helm of Burning Righteousness", {6034243, 34243, 334243, 234243, 1005978, 1013073, 1019717, 1026315, 1032879, 1039442, 1046005, 1052568, 1059131, 1065694} },
{"Duplicitous Guise", {6034244, 34244, 334244, 234244, 1005979, 1013074, 1019718, 1026316, 1032880, 1039443, 1046006, 1052569, 1059132, 1065695} },
{"Cover of Ursol the Wise", {6034245, 34245, 334245, 234245, 1005980, 1013075, 1019719, 1026317, 1032881, 1039444, 1046007, 1052570, 1059133, 1065696} },
{"Apolyon, the Soul-Render", {6034247, 34247, 334247, 234247, 1005981, 1013076, 1019720, 1026318, 1032882, 1039445, 1046008, 1052571, 1059134, 1065697} },
{"Crux of the Apocalypse", {6034329, 34329, 334329, 234329, 1005982, 1013077, 1019721, 1026319, 1032883, 1039446, 1046009, 1052572, 1059135, 1065698} },
{"Hand of the Deceiver", {6034331, 34331, 334331, 234331, 1005983, 1013078, 1019722, 1026320, 1032884, 1039447, 1046010, 1052573, 1059136, 1065699} },
{"Cowl of Gul'dan", {6034332, 34332, 334332, 234332, 1005984, 1013079, 1019723, 1026321, 1032885, 1039448, 1046011, 1052574, 1059137, 1065700} },
{"Coif of Alleria", {6034333, 34333, 334333, 234333, 1005985, 1013080, 1019724, 1026322, 1032886, 1039449, 1046012, 1052575, 1059138, 1065701} },
{"Thori'dal, the Stars' Fury", {6034334, 34334, 334334, 234334, 1005986, 1013081, 1019725, 1026323, 1032887, 1039450, 1046013, 1052576, 1059139, 1065702} },
{"Hammer of Sanctification", {6034335, 34335, 298068, 298069, 298070, 298071, 298072, 298073, 298074, 298075, 298076, 298077, 298078, 298079} },
{"Sunflare", {6034336, 34336, 334336, 234336, 1005987, 1013082, 1019726, 1026324, 1032888, 1039451, 1046014, 1052577, 1059140, 1065703} },
{"Golden Staff of the Sin'dorei", {6034337, 34337, 334337, 234337, 1005988, 1013083, 1019727, 1026325, 1032889, 1039452, 1046015, 1052578, 1059141, 1065704} },
{"Cowl of Light's Purity", {6034339, 34339, 334339, 234339, 1005989, 1013084, 1019728, 1026326, 1032890, 1039453, 1046016, 1052579, 1059142, 1065705} },
{"Dark Conjuror's Collar", {6034340, 34340, 334340, 234340, 1005990, 1013085, 1019729, 1026327, 1032891, 1039454, 1046017, 1052580, 1059143, 1065706} },
{"Borderland Paingrips", {6034341, 34341, 334341, 234341, 1005991, 1013086, 1019730, 1026328, 1032892, 1039455, 1046018, 1052581, 1059144, 1065707} },
{"Handguards of the Dawn", {6034342, 34342, 334342, 234342, 1005992, 1013087, 1019731, 1026329, 1032893, 1039456, 1046019, 1052582, 1059145, 1065708} },
{"Thalassian Ranger Gauntlets", {6034343, 34343, 334343, 234343, 1005993, 1013088, 1019732, 1026330, 1032894, 1039457, 1046020, 1052583, 1059146, 1065709} },
{"Handguards of Defiled Worlds", {6034344, 34344, 334344, 234344, 1005994, 1013089, 1019733, 1026331, 1032895, 1039458, 1046021, 1052584, 1059147, 1065710} },
{"Crown of Anasterian", {6034345, 34345, 334345, 234345, 1005995, 1013090, 1019734, 1026332, 1032896, 1039459, 1046022, 1052585, 1059148, 1065711} },
{"Mounting Vengeance", {6034346, 34346, 334346, 234346, 1005996, 1013091, 1019735, 1026333, 1032897, 1039460, 1046023, 1052586, 1059149, 1065712} },
{"Wand of the Demonsoul", {6034347, 34347, 334347, 234347, 1005997, 1013092, 1019736, 1026334, 1032898, 1039461, 1046024, 1052587, 1059150, 1065713} },
{"Wand of Cleansing Light", {6034348, 34348, 334348, 234348, 1005998, 1013093, 1019737, 1026335, 1032899, 1039462, 1046025, 1052588, 1059151, 1065714} },
{"Blade of Life's Inevitability", {6034349, 34349, 334349, 234349, 1005999, 1013094, 1019738, 1026336, 1032900, 1039463, 1046026, 1052589, 1059152, 1065715} },
{"Gauntlets of the Ancient Shadowmoon", {6034350, 34350, 334350, 234350, 1006001, 1013095, 1019739, 1026337, 1032901, 1039464, 1046027, 1052590, 1059153, 1065716} },
{"Tranquil Majesty Wraps", {6034351, 34351, 334351, 234351, 1006002, 1013096, 1019740, 1026338, 1032902, 1039465, 1046028, 1052591, 1059154, 1065717} },
{"Borderland Fortress Grips", {6034352, 34352, 334352, 234352, 1006003, 1013097, 1019741, 1026339, 1032903, 1039466, 1046029, 1052592, 1059155, 1065718} },
{"Quad Deathblow X44 Goggles", {6034353, 34353, 298080, 298081, 298082, 298083, 298084, 298085, 298086, 298087, 298088, 298089, 298090, 298091} },
{"Mayhem Projection Goggles", {6034354, 34354, 298092, 298093, 298094, 298095, 298096, 298097, 298098, 298099, 298100, 298101, 298102, 298103} },
{"Lightning Etched Specs", {6034355, 34355, 298104, 298105, 298106, 298107, 298108, 298109, 298110, 298111, 298112, 298113, 298114, 298115} },
{"Surestrike Goggles v3.0", {6034356, 34356, 298116, 298117, 298118, 298119, 298120, 298121, 298122, 298123, 298124, 298125, 298126, 298127} },
{"Hard Khorium Goggles", {6034357, 34357, 298128, 298129, 298130, 298131, 298132, 298133, 298134, 298135, 298136, 298137, 298138, 298139} },
{"Hard Khorium Choker", {6034358, 34358, 298140, 298141, 298142, 298143, 298144, 298145, 298146, 298147, 298148, 298149, 298150, 298151} },
{"Pendant of Sunfire", {6034359, 34359, 298152, 298153, 298154, 298155, 298156, 298157, 298158, 298159, 298160, 298161, 298162, 298163} },
{"Amulet of Flowing Life", {6034360, 34360, 298164, 298165, 298166, 298167, 298168, 298169, 298170, 298171, 298172, 298173, 298174, 298175} },
{"Hard Khorium Band", {6034361, 34361, 298176, 298177, 298178, 298179, 298180, 298181, 298182, 298183, 298184, 298185, 298186, 298187} },
{"Loop of Forged Power", {6034362, 34362, 298188, 298189, 298190, 298191, 298192, 298193, 298194, 298195, 298196, 298197, 298198, 298199} },
{"Ring of Flowing Life", {6034363, 34363, 298200, 298201, 298202, 298203, 298204, 298205, 298206, 298207, 298208, 298209, 298210, 298211} },
{"Sunfire Robe", {6034364, 34364, 298212, 298213, 298214, 298215, 298216, 298217, 298218, 298219, 298220, 298221, 298222, 298223} },
{"Robe of Eternal Light", {6034365, 34365, 298224, 298225, 298226, 298227, 298228, 298229, 298230, 298231, 298232, 298233, 298234, 298235} },
{"Sunfire Handwraps", {6034366, 34366, 298236, 298237, 298238, 298239, 298240, 298241, 298242, 298243, 298244, 298245, 298246, 298247} },
{"Hands of Eternal Light", {6034367, 34367, 298248, 298249, 298250, 298251, 298252, 298253, 298254, 298255, 298256, 298257, 298258, 298259} },
{"Carapace of Sun and Shadow", {6034369, 34369, 298260, 298261, 298262, 298263, 298264, 298265, 298266, 298267, 298268, 298269, 298270, 298271} },
{"Gloves of Immortal Dusk", {6034370, 34370, 298272, 298273, 298274, 298275, 298276, 298277, 298278, 298279, 298280, 298281, 298282, 298283} },
{"Leather Chestguard of the Sun", {6034371, 34371, 298284, 298285, 298286, 298287, 298288, 298289, 298290, 298291, 298292, 298293, 298294, 298295} },
{"Leather Gauntlets of the Sun", {6034372, 34372, 298296, 298297, 298298, 298299, 298300, 298301, 298302, 298303, 298304, 298305, 298306, 298307} },
{"Embrace of the Phoenix", {6034373, 34373, 298308, 298309, 298310, 298311, 298312, 298313, 298314, 298315, 298316, 298317, 298318, 298319} },
{"Fletcher's Gloves of the Phoenix", {6034374, 34374, 298320, 298321, 298322, 298323, 298324, 298325, 298326, 298327, 298328, 298329, 298330, 298331} },
{"Sun-Drenched Scale Chestguard", {6034375, 34375, 298332, 298333, 298334, 298335, 298336, 298337, 298338, 298339, 298340, 298341, 298342, 298343} },
{"Sun-Drenched Scale Gloves", {6034376, 34376, 298344, 298345, 298346, 298347, 298348, 298349, 298350, 298351, 298352, 298353, 298354, 298355} },
{"Hard Khorium Battleplate", {6034377, 34377, 298356, 298357, 298358, 298359, 298360, 298361, 298362, 298363, 298364, 298365, 298366, 298367} },
{"Hard Khorium Battlefists", {6034378, 34378, 298368, 298369, 298370, 298371, 298372, 298373, 298374, 298375, 298376, 298377, 298378, 298379} },
{"Sunblessed Breastplate", {6034379, 34379, 298380, 298381, 298382, 298383, 298384, 298385, 298386, 298387, 298388, 298389, 298390, 298391} },
{"Sunblessed Gauntlets", {6034380, 34380, 298392, 298393, 298394, 298395, 298396, 298397, 298398, 298399, 298400, 298401, 298402, 298403} },
{"Felstrength Legplates", {6034381, 34381, 114139, 234381, 1006004, 1013098, 1019742, 1026340, 1032904, 1039467, 1046030, 1052593, 1059156, 1065719} },
{"Judicator's Legguards", {6034382, 34382, 120726, 234382, 1006006, 1013099, 1019743, 1026341, 1032905, 1039468, 1046031, 1052594, 1059157, 1065720} },
{"Kilt of Spiritual Reconstruction", {6034383, 34383, 120776, 234383, 1006007, 1013100, 1019744, 1026342, 1032906, 1039469, 1046032, 1052595, 1059158, 1065721} },
{"Breeches of Natural Splendor", {6034384, 34384, 100687, 234384, 1006009, 1013101, 1019745, 1026343, 1032907, 1039470, 1046033, 1052596, 1059159, 1065722} },
{"Leggings of the Immortal Beast", {6034385, 34385, 120882, 234385, 1006011, 1013102, 1019746, 1026344, 1032908, 1039471, 1046034, 1052597, 1059160, 1065723} },
{"Pantaloons of Growing Strife", {6034386, 34386, 123182, 234386, 1006012, 1013103, 1019747, 1026345, 1032909, 1039472, 1046035, 1052598, 1059161, 1065724} },
{"Pauldrons of Berserking", {6034388, 34388, 123191, 234388, 1006013, 1013104, 1019748, 1026346, 1032910, 1039473, 1046036, 1052599, 1059162, 1065725} },
{"Spaulders of the Thalassian Defender", {6034389, 34389, 128156, 234389, 1006014, 1013105, 1019749, 1026347, 1032911, 1039474, 1046037, 1052600, 1059163, 1065726} },
{"Erupting Epaulets", {6034390, 34390, 112986, 234390, 1006017, 1013106, 1019750, 1026348, 1032912, 1039475, 1046038, 1052601, 1059164, 1065727} },
{"Spaulders of Devastation", {6034391, 34391, 128004, 234391, 1006018, 1013107, 1019751, 1026349, 1032913, 1039476, 1046039, 1052602, 1059165, 1065728} },
{"Demontooth Shoulderpads", {6034392, 34392, 102237, 234392, 1006019, 1013108, 1019752, 1026350, 1032914, 1039477, 1046040, 1052603, 1059166, 1065729} },
{"Shoulderpads of Knowledge's Pursuit", {6034393, 34393, 123841, 234393, 1006020, 1013109, 1019753, 1026351, 1032915, 1039478, 1046041, 1052604, 1059167, 1065730} },
{"Breastplate of Agony's Aversion", {6034394, 34394, 100670, 234394, 1006022, 1013110, 1019754, 1026352, 1032916, 1039479, 1046042, 1052605, 1059168, 1065731} },
{"Noble Judicator's Chestguard", {6034395, 34395, 123079, 234395, 1006023, 1013111, 1019755, 1026353, 1032917, 1039480, 1046043, 1052606, 1059169, 1065732} },
{"Garments of Crashing Shores", {6034396, 34396, 116436, 234396, 1006025, 1013112, 1019756, 1026354, 1032918, 1039481, 1046044, 1052607, 1059170, 1065733} },
{"Bladed Chaos Tunic", {6034397, 34397, 100315, 234397, 1006027, 1013113, 1019757, 1026355, 1032919, 1039482, 1046045, 1052608, 1059171, 1065734} },
{"Utopian Tunic of Elune", {6034398, 34398, 130546, 234398, 1006028, 1013114, 1019758, 1026356, 1032920, 1039483, 1046046, 1052609, 1059172, 1065735} },
{"Robes of Ghostly Hatred", {6034399, 34399, 123625, 234399, 1006029, 1013115, 1019759, 1026357, 1032921, 1039484, 1046047, 1052610, 1059173, 1065736} },
{"Crown of Dath'Remar", {6034400, 34400, 100927, 234400, 1006030, 1013116, 1019760, 1026358, 1032922, 1039485, 1046048, 1052611, 1059174, 1065737} },
{"Helm of Uther's Resolve", {6034401, 34401, 120575, 234401, 1006031, 1013117, 1019761, 1026359, 1032923, 1039486, 1046049, 1052612, 1059175, 1065738} },
{"Shroud of Chieftain Ner'zhul", {6034402, 34402, 123863, 234402, 1006032, 1013118, 1019762, 1026360, 1032924, 1039487, 1046050, 1052613, 1059176, 1065739} },
{"Cover of Ursoc the Mighty", {6034403, 34403, 100903, 234403, 1006033, 1013119, 1019763, 1026361, 1032925, 1039488, 1046051, 1052614, 1059177, 1065740} },
{"Mask of the Fury Hunter", {6034404, 34404, 122767, 234404, 1006034, 1013120, 1019764, 1026362, 1032926, 1039489, 1046052, 1052615, 1059178, 1065741} },
{"Helm of Arcane Purity", {6034405, 34405, 120541, 234405, 1006036, 1013121, 1019765, 1026363, 1032927, 1039490, 1046053, 1052616, 1059179, 1065742} },
{"Gloves of Tyri's Power", {6034406, 34406, 120097, 234406, 1006037, 1013122, 1019766, 1026364, 1032928, 1039491, 1046054, 1052617, 1059180, 1065743} },
{"Tranquil Moonlight Wraps", {6034407, 34407, 130450, 234407, 1006038, 1013123, 1019767, 1026365, 1032929, 1039492, 1046055, 1052618, 1059181, 1065744} },
{"Gloves of the Forest Drifter", {6034408, 34408, 119038, 234408, 1006039, 1013124, 1019768, 1026366, 1032930, 1039493, 1046056, 1052619, 1059182, 1065745} },
{"Gauntlets of the Ancient Frostwolf", {6034409, 34409, 116905, 234409, 1006040, 1013125, 1019769, 1026367, 1032931, 1039494, 1046057, 1052620, 1059183, 1065746} },
{"Crystaline Shard Shield", {6034415, 34415, 298404, 298405, 298406, 298407, 298408, 298409, 298410, 298411, 298412, 298413, 298414, 298415} },
{"Gloves of the Dune", {6034416, 34416, 298416, 298417, 298418, 298419, 298420, 298421, 298422, 298423, 298424, 298425, 298426, 298427} },
{"Marauder's Handwraps", {6034417, 34417, 298428, 298429, 298430, 298431, 298432, 298433, 298434, 298435, 298436, 298437, 298438, 298439} },
{"Scrying Wand", {6034418, 34418, 298440, 298441, 298442, 298443, 298444, 298445, 298446, 298447, 298448, 298449, 298450, 298451} },
{"Thorium Flight Blade", {6034419, 34419, 298452, 298453, 298454, 298455, 298456, 298457, 298458, 298459, 298460, 298461, 298463, 298464} },
{"Cave Crawler's Mail Treads", {6034421, 34421, 298465, 298466, 298467, 298468, 298469, 298470, 298471, 298472, 298473, 298474, 298475, 298476} },
{"Tempered Thorium Boots", {6034422, 34422, 298477, 298478, 298479, 298480, 298481, 298482, 298483, 298484, 298485, 298486, 298487, 298488} },
{"Strength of the High Chief", {6034423, 34423, 298489, 298490, 298491, 298492, 298493, 298494, 298495, 298496, 298497, 298498, 298499, 298500} },
{"Power of the High Chief", {6034424, 34424, 298501, 298502, 298503, 298504, 298505, 298506, 298507, 298508, 298509, 298510, 298511, 298512} },
{"Blackened Naaru Sliver", {6034427, 34427, 334427, 234427, 1006041, 1013126, 1019770, 1026368, 1032932, 1039495, 1046058, 1052621, 1059184, 1065747} },
{"Steely Naaru Sliver", {6034428, 34428, 334428, 234428, 1006042, 1013127, 1019771, 1026369, 1032933, 1039496, 1046059, 1052622, 1059185, 1065748} },
{"Shifting Naaru Sliver", {6034429, 34429, 334429, 234429, 1006043, 1013128, 1019772, 1026370, 1032934, 1039497, 1046060, 1052623, 1059186, 1065749} },
{"Glimmering Naaru Sliver", {6034430, 34430, 334430, 234430, 1006044, 1013129, 1019773, 1026371, 1032935, 1039498, 1046061, 1052624, 1059187, 1065750} },
{"Lightbringer Bands", {6034431, 34431, 121502, 234431, 1006046, 1013130, 1019774, 1026372, 1032936, 1039499, 1046062, 1052625, 1059188, 1065751} },
{"Lightbringer Bracers", {6034432, 34432, 121505, 234432, 1006047, 1013131, 1019775, 1026373, 1032937, 1039500, 1046063, 1052626, 1059189, 1065752} },
{"Lightbringer Wristguards", {6034433, 34433, 122141, 234433, 1006048, 1013132, 1019776, 1026374, 1032938, 1039501, 1046064, 1052627, 1059190, 1065753} },
{"Bracers of Absolution", {6034434, 34434, 100631, 234434, 1006049, 1013133, 1019777, 1026375, 1032939, 1039502, 1046065, 1052628, 1059191, 1065754} },
{"Cuffs of Absolution", {6034435, 34435, 100956, 234435, 1006050, 1013134, 1019778, 1026376, 1032940, 1039503, 1046066, 1052629, 1059192, 1065755} },
{"Bracers of the Malefic", {6034436, 34436, 100660, 234436, 1006051, 1013135, 1019779, 1026377, 1032941, 1039504, 1046067, 1052630, 1059193, 1065756} },
{"Skyshatter Bands", {6034437, 34437, 124127, 234437, 1006052, 1013136, 1019780, 1026378, 1032942, 1039505, 1046068, 1052631, 1059194, 1065757} },
{"Skyshatter Bracers", {6034438, 34438, 124400, 234438, 1006053, 1013137, 1019781, 1026379, 1032943, 1039506, 1046069, 1052632, 1059195, 1065758} },
{"Skyshatter Wristguards", {6034439, 34439, 124527, 234439, 1006054, 1013138, 1019782, 1026380, 1032944, 1039507, 1046070, 1052633, 1059196, 1065759} },
{"Onslaught Bracers", {6034441, 34441, 123141, 234441, 1006055, 1013139, 1019783, 1026381, 1032945, 1039508, 1046071, 1052634, 1059197, 1065760} },
{"Gronnstalker's Bracers", {6034443, 34443, 120308, 234443, 1006057, 1013141, 1019785, 1026383, 1032947, 1039510, 1046073, 1052636, 1059199, 1065762} },
{"Thunderheart Wristguards", {6034444, 34444, 130417, 234444, 1006059, 1013142, 1019786, 1026384, 1032948, 1039511, 1046074, 1052637, 1059200, 1065763} },
{"Thunderheart Bracers", {6034445, 34445, 130396, 234445, 1006060, 1013143, 1019787, 1026385, 1032949, 1039512, 1046075, 1052638, 1059201, 1065764} },
{"Thunderheart Bands", {6034446, 34446, 130393, 234446, 1006062, 1013144, 1019788, 1026386, 1032950, 1039513, 1046076, 1052639, 1059202, 1065765} },
{"Bracers of the Tempest", {6034447, 34447, 100662, 234447, 1006063, 1013145, 1019789, 1026387, 1032951, 1039514, 1046077, 1052640, 1059203, 1065766} },
{"Slayer's Bracers", {6034448, 34448, 127060, 234448, 1006064, 1013146, 1019790, 1026388, 1032952, 1039515, 1046078, 1052641, 1059204, 1065767} },
{"Timbal's Focusing Crystal", {6034470, 34470, 130425, 434470, 1007816, 1014699, 1021363, 1027928, 1034492, 1041055, 1047618, 1054181, 1060744, 1067307} },
{"Vial of the Sunwell", {6034471, 34471, 130674, 434471, 1007817, 1014700, 1021364, 1027929, 1034493, 1041056, 1047619, 1054182, 1060745, 1067308} },
{"Shard of Contempt", {6034472, 34472, 123800, 434472, 1007818, 1014701, 1021365, 1027930, 1034494, 1041057, 1047620, 1054183, 1060746, 1067309} },
{"Commendation of Kael'thas", {6034473, 34473, 100852, 434473, 1007819, 1014702, 1021366, 1027931, 1034495, 1041058, 1047621, 1054184, 1060747, 1067310} },
{"Lightbringer Girdle", {6034485, 34485, 121569, 234485, 1006067, 1013147, 1019791, 1026389, 1032953, 1039516, 1046079, 1052642, 1059205, 1065768} },
{"Lightbringer Belt", {6034487, 34487, 121503, 234487, 1006069, 1013148, 1019792, 1026390, 1032954, 1039517, 1046080, 1052643, 1059206, 1065769} },
{"Lightbringer Waistguard", {6034488, 34488, 122127, 234488, 1006071, 1013149, 1019793, 1026391, 1032955, 1039518, 1046081, 1052644, 1059207, 1065770} },
{"Belt of Absolution", {6034527, 34527, 100260, 234527, 1006072, 1013150, 1019794, 1026392, 1032956, 1039519, 1046082, 1052645, 1059208, 1065771} },
{"Cord of Absolution", {6034528, 34528, 100891, 234528, 1006073, 1013151, 1019795, 1026393, 1032957, 1039520, 1046083, 1052646, 1059209, 1065772} },
{"Belt of the Malefic", {6034541, 34541, 100278, 234541, 1006074, 1013152, 1019796, 1026394, 1032958, 1039521, 1046084, 1052647, 1059210, 1065773} },
{"Skyshatter Cord", {6034542, 34542, 124443, 234542, 1006075, 1013153, 1019797, 1026395, 1032959, 1039522, 1046085, 1052648, 1059211, 1065774} },
{"Skyshatter Belt", {6034543, 34543, 124128, 234543, 1006076, 1013154, 1019798, 1026396, 1032960, 1039523, 1046086, 1052649, 1059212, 1065775} },
{"Skyshatter Girdle", {6034545, 34545, 124458, 234545, 1006077, 1013155, 1019799, 1026397, 1032961, 1039524, 1046087, 1052650, 1059213, 1065776} },
{"Onslaught Belt", {6034546, 34546, 123139, 234546, 1006078, 1013156, 1019800, 1026398, 1032962, 1039525, 1046088, 1052651, 1059214, 1065777} },
{"Gronnstalker's Belt", {6034549, 34549, 120306, 234549, 1006080, 1013158, 1019802, 1026400, 1032964, 1039527, 1046090, 1052653, 1059216, 1065779} },
{"Thunderheart Belt", {6034554, 34554, 130394, 234554, 1006081, 1013159, 1019803, 1026401, 1032965, 1039528, 1046091, 1052654, 1059217, 1065780} },
{"Thunderheart Cord", {6034555, 34555, 130398, 234555, 1006082, 1013160, 1019804, 1026402, 1032966, 1039529, 1046092, 1052655, 1059218, 1065781} },
{"Thunderheart Waistguard", {6034556, 34556, 130416, 234556, 1006084, 1013161, 1019805, 1026403, 1032967, 1039530, 1046093, 1052656, 1059219, 1065782} },
{"Belt of the Tempest", {6034557, 34557, 100282, 234557, 1006085, 1013162, 1019806, 1026404, 1032968, 1039531, 1046094, 1052657, 1059220, 1065783} },
{"Slayer's Belt", {6034558, 34558, 127058, 234558, 1006086, 1013163, 1019807, 1026405, 1032969, 1039532, 1046095, 1052658, 1059221, 1065784} },
{"Lightbringer Treads", {6034559, 34559, 122118, 234559, 1006087, 1013164, 1019808, 1026406, 1032970, 1039533, 1046096, 1052659, 1059222, 1065785} },
{"Lightbringer Stompers", {6034560, 34560, 121835, 234560, 1006088, 1013165, 1019809, 1026407, 1032971, 1039534, 1046097, 1052660, 1059223, 1065786} },
{"Lightbringer Boots", {6034561, 34561, 121504, 234561, 1006089, 1013166, 1019810, 1026408, 1032972, 1039535, 1046098, 1052661, 1059224, 1065787} },
{"Boots of Absolution", {6034562, 34562, 100450, 234562, 1006090, 1013167, 1019811, 1026409, 1032973, 1039536, 1046099, 1052662, 1059225, 1065788} },
{"Treads of Absolution", {6034563, 34563, 130455, 234563, 1006091, 1013168, 1019812, 1026410, 1032974, 1039537, 1046100, 1052663, 1059226, 1065789} },
{"Boots of the Malefic", {6034564, 34564, 100469, 234564, 1006092, 1013169, 1019813, 1026411, 1032975, 1039538, 1046101, 1052664, 1059227, 1065790} },
{"Skyshatter Boots", {6034565, 34565, 124129, 234565, 1006093, 1013170, 1019814, 1026412, 1032976, 1039539, 1046102, 1052665, 1059228, 1065791} },
{"Skyshatter Treads", {6034566, 34566, 124525, 234566, 1006094, 1013171, 1019815, 1026413, 1032977, 1039540, 1046103, 1052666, 1059229, 1065792} },
{"Skyshatter Greaves", {6034567, 34567, 124460, 234567, 1006095, 1013172, 1019816, 1026414, 1032978, 1039541, 1046104, 1052667, 1059230, 1065793} },
{"Onslaught Treads", {6034569, 34569, 123161, 234569, 1006097, 1013174, 1019818, 1026416, 1032980, 1039543, 1046106, 1052669, 1059232, 1065795} },
{"Gronnstalker's Boots", {6034570, 34570, 120307, 234570, 1006098, 1013175, 1019819, 1026417, 1032981, 1039544, 1046107, 1052670, 1059233, 1065796} },
{"Thunderheart Boots", {6034571, 34571, 130395, 234571, 1006100, 1013176, 1019820, 1026418, 1032982, 1039545, 1046108, 1052671, 1059234, 1065797} },
{"Thunderheart Footwraps", {6034572, 34572, 130400, 234572, 1006101, 1013177, 1019821, 1026419, 1032983, 1039546, 1046109, 1052672, 1059235, 1065798} },
{"Thunderheart Treads", {6034573, 34573, 130413, 234573, 1006102, 1013178, 1019822, 1026420, 1032984, 1039547, 1046110, 1052673, 1059236, 1065799} },
{"Boots of the Tempest", {6034574, 34574, 100475, 234574, 1006103, 1013179, 1019823, 1026421, 1032985, 1039548, 1046111, 1052674, 1059237, 1065800} },
{"Slayer's Boots", {6034575, 34575, 127059, 234575, 1006104, 1013180, 1019824, 1026422, 1032986, 1039549, 1046112, 1052675, 1059238, 1065801} },
{"Battlemaster's Cruelty", {6034576, 34576, 298576, 298577, 298578, 298579, 298580, 298581, 298582, 298583, 298584, 298585, 298586, 298587} },
{"Battlemaster's Depravity", {6034577, 34577, 298588, 298589, 298590, 298591, 298592, 298593, 298594, 298595, 298596, 298597, 298598, 298599} },
{"Battlemaster's Determination", {6034578, 34578, 298600, 298601, 298602, 298603, 298604, 298605, 298606, 298607, 298608, 298609, 298610, 298611} },
{"Battlemaster's Audacity", {6034579, 34579, 298612, 298613, 298614, 298615, 298616, 298617, 298618, 298619, 298620, 298621, 298622, 298623} },
{"Battlemaster's Perseverance", {6034580, 34580, 298624, 298625, 298626, 298627, 298628, 298629, 298630, 298631, 298632, 298633, 298634, 298635} },
{"Shoulderplates of Everlasting Pain", {6034601, 34601, 123844, 434601, 1007820, 1014703, 1021367, 1027932, 1034496, 1041059, 1047622, 1054185, 1060748, 1067311} },
{"Eversong Cuffs", {6034602, 34602, 113168, 434602, 1007821, 1014704, 1021368, 1027933, 1034497, 1041060, 1047623, 1054186, 1060749, 1067312} },
{"Distracting Blades", {6034603, 34603, 102320, 434603, 1007822, 1014705, 1021369, 1027934, 1034498, 1041061, 1047624, 1054187, 1060750, 1067313} },
{"Jaded Crystal Dagger", {6034604, 34604, 120707, 434604, 1007823, 1014706, 1021370, 1027935, 1034499, 1041062, 1047625, 1054188, 1060751, 1067314} },
{"Breastplate of Fierce Survival", {6034605, 34605, 100673, 434605, 1007824, 1014707, 1021371, 1027936, 1034500, 1041063, 1047626, 1054189, 1060752, 1067315} },
{"Edge of Oppression", {6034606, 34606, 103894, 434606, 1007825, 1014708, 1021372, 1027937, 1034501, 1041064, 1047627, 1054190, 1060753, 1067316} },
{"Fel-tinged Mantle", {6034607, 34607, 113671, 434607, 1007826, 1014709, 1021373, 1027938, 1034502, 1041065, 1047628, 1054191, 1060754, 1067317} },
{"Rod of the Blazing Light", {6034608, 34608, 123641, 434608, 1007827, 1014710, 1021374, 1027939, 1034503, 1041066, 1047629, 1054192, 1060755, 1067318} },
{"Quickening Blade of the Prince", {6034609, 34609, 123480, 434609, 1007828, 1014711, 1021375, 1027940, 1034504, 1041067, 1047630, 1054193, 1060756, 1067319} },
{"Scarlet Sin'dorei Robes", {6034610, 34610, 123709, 434610, 1007829, 1014712, 1021376, 1027941, 1034505, 1041068, 1047631, 1054194, 1060757, 1067320} },
{"Cudgel of Consecration", {6034611, 34611, 100955, 434611, 1007830, 1014713, 1021377, 1027942, 1034506, 1041069, 1047632, 1054195, 1060758, 1067321} },
{"Greaves of the Penitent Knight", {6034612, 34612, 120200, 434612, 1007831, 1014714, 1021378, 1027943, 1034507, 1041070, 1047633, 1054196, 1060759, 1067322} },
{"Shoulderpads of the Silvermoon Retainer", {6034613, 34613, 123843, 434613, 1007832, 1014715, 1021379, 1027944, 1034508, 1041071, 1047634, 1054197, 1060760, 1067323} },
{"Tunic of the Ranger Lord", {6034614, 34614, 130482, 434614, 1007833, 1014716, 1021380, 1027945, 1034509, 1041072, 1047635, 1054198, 1060761, 1067324} },
{"Netherforce Chestplate", {6034615, 34615, 123010, 434615, 1007834, 1014717, 1021381, 1027946, 1034510, 1041073, 1047636, 1054199, 1060762, 1067325} },
{"Breeching Comet", {6034616, 34616, 100689, 434616, 1007835, 1014718, 1021382, 1027947, 1034511, 1041074, 1047637, 1054200, 1060763, 1067326} },
{"Spinesever", {6034622, 34622, 298636, 298637, 298638, 298639, 298640, 298641, 298642, 298643, 298644, 298645, 298646, 298647} },
{"Kharmaa's Ring of Fate", {6034625, 34625, 298648, 298649, 298650, 298651, 298652, 298653, 298654, 298655, 298656, 298657, 298658, 298659} },
{"Acherus Knight's Greaves", {298661, 34648, 298660, 298662, 298663, 298664, 298665, 298666, 298667, 298668, 298669, 298670, 298671, 298672} },
{"Acherus Knight's Gauntlets", {298674, 34649, 298673, 298675, 298676, 298677, 298678, 298679, 298680, 298681, 298682, 298683, 298684, 298685} },
{"Acherus Knight's Tunic", {298687, 34650, 298686, 298688, 298689, 298690, 298691, 298692, 298693, 298694, 298695, 298696, 298697, 298698} },
{"Acherus Knight's Girdle", {298700, 34651, 298699, 298701, 298702, 298703, 298704, 298705, 298706, 298707, 298708, 298709, 298710, 298711} },
{"Acherus Knight's Hood", {298713, 34652, 298712, 298714, 298715, 298716, 298717, 298718, 298719, 298720, 298721, 298722, 298723, 298724} },
{"Acherus Knight's Wristguard", {298726, 34653, 298725, 298727, 298728, 298729, 298730, 298731, 298732, 298733, 298734, 298735, 298736, 298737} },
{"Acherus Knight's Pauldrons", {298739, 34655, 298738, 298740, 298741, 298742, 298743, 298744, 298745, 298746, 298747, 298748, 298749, 298750} },
{"Acherus Knight's Legplates", {298752, 34656, 298751, 298753, 298754, 298755, 298756, 298757, 298758, 298759, 298760, 298761, 298762, 298763} },
{"Choker of Damnation", {298765, 34657, 298764, 298766, 298767, 298768, 298769, 298770, 298771, 298772, 298773, 298774, 298775, 298776} },
{"Plague Band", {298778, 34658, 298777, 298779, 298780, 298781, 298782, 298783, 298784, 298785, 298786, 298787, 298788, 298789} },
{"Acherus Knight's Shroud", {298791, 34659, 298790, 298792, 298793, 298794, 298795, 298796, 298797, 298798, 298799, 298800, 298801, 298802} },
{"Massacre Sword", {6034661, 34661, 298803, 298804, 298805, 298806, 298807, 298808, 298809, 298810, 298811, 298812, 298813, 298814} },
{"Bombardier's Blade", {6034665, 34665, 298815, 298816, 298817, 298818, 298819, 298820, 298821, 298822, 298823, 298824, 298825, 298826} },
{"The Sunbreaker", {6034666, 34666, 298827, 298828, 298829, 298830, 298831, 298832, 298833, 298834, 298835, 298836, 298837, 298838} },
{"Archmage's Guile", {6034667, 34667, 298839, 298840, 298841, 298842, 298843, 298844, 298845, 298846, 298847, 298848, 298849, 298850} },
{"Seeker's Gavel", {6034670, 34670, 298851, 298852, 298853, 298854, 298855, 298856, 298857, 298858, 298859, 298860, 298861, 298862} },
{"K'iru's Presage", {6034671, 34671, 298863, 298864, 298865, 298866, 298867, 298868, 298869, 298870, 298871, 298872, 298873, 298874} },
{"Inuuro's Blade", {6034672, 34672, 298875, 298876, 298877, 298878, 298879, 298880, 298881, 298882, 298883, 298884, 298885, 298886} },
{"Legionfoe", {6034673, 34673, 298887, 298888, 298889, 298890, 298891, 298892, 298893, 298894, 298895, 298896, 298897, 298898} },
{"Truestrike Crossbow", {6034674, 34674, 298899, 298900, 298901, 298902, 298903, 298904, 298905, 298906, 298907, 298908, 298909, 298910} },
{"Sunward Crest", {6034675, 34675, 298911, 298912, 298913, 298914, 298915, 298916, 298917, 298918, 298919, 298920, 298921, 298922} },
{"Dawnforged Defender", {6034676, 34676, 298923, 298924, 298925, 298926, 298927, 298928, 298929, 298930, 298931, 298932, 298933, 298934} },
{"Shattered Sun Pendant of Restoration", {6034677, 34677, 298935, 298936, 298937, 298938, 298939, 298940, 298941, 298942, 298943, 298944, 298945, 298946} },
{"Shattered Sun Pendant of Acumen", {6034678, 34678, 298947, 298948, 298949, 298950, 298951, 298952, 298953, 298954, 298955, 298956, 298957, 298958} },
{"Shattered Sun Pendant of Might", {6034679, 34679, 298959, 298960, 298961, 298962, 298963, 298964, 298965, 298966, 298967, 298968, 298969, 298970} },
{"Shattered Sun Pendant of Resolve", {6034680, 34680, 298971, 298972, 298973, 298974, 298975, 298976, 298977, 298978, 298979, 298980, 298981, 298982} },
{"Bindings of Raging Fire", {6034697, 34697, 298983, 298984, 298985, 298986, 298987, 298988, 298989, 298990, 298991, 298992, 298993, 298994} },
{"Bracers of the Forest Stalker", {6034698, 34698, 298995, 298996, 298997, 298998, 298999, 299000, 299001, 299002, 299003, 299004, 299005, 299006} },
{"Sun-forged Cleaver", {6034699, 34699, 299007, 299008, 299009, 299010, 299011, 299012, 299013, 299014, 299015, 299016, 299017, 299018} },
{"Gauntlets of Divine Blessings", {6034700, 34700, 299019, 299020, 299021, 299022, 299023, 299024, 299025, 299026, 299027, 299028, 299029, 299030} },
{"Leggings of the Betrayed", {6034701, 34701, 299031, 299032, 299033, 299034, 299035, 299036, 299037, 299038, 299039, 299040, 299041, 299042} },
{"Cloak of Swift Mending", {6034702, 34702, 299043, 299044, 299045, 299046, 299047, 299048, 299049, 299050, 299051, 299052, 299053, 299054} },
{"Latro's Dancing Blade", {6034703, 34703, 299055, 299056, 299057, 299058, 299059, 299060, 299061, 299062, 299063, 299064, 299065, 299066} },
{"Band of Arcane Alacrity", {6034704, 34704, 299067, 299068, 299069, 299070, 299071, 299072, 299073, 299074, 299075, 299076, 299077, 299078} },
{"Bracers of Divine Infusion", {6034705, 34705, 299079, 299080, 299081, 299082, 299083, 299084, 299085, 299086, 299087, 299088, 299089, 299090} },
{"Band of Determination", {6034706, 34706, 299091, 299092, 299093, 299094, 299095, 299096, 299097, 299098, 299099, 299100, 299101, 299102} },
{"Boots of Resuscitation", {6034707, 34707, 299103, 299104, 299105, 299106, 299107, 299108, 299109, 299110, 299111, 299112, 299113, 299114} },
{"Cloak of the Coming Night", {6034708, 34708, 299115, 299116, 299117, 299118, 299119, 299120, 299121, 299122, 299123, 299124, 299125, 299126} },
{"Nightstrike", {6034783, 34783, 299127, 299128, 299129, 299130, 299131, 299132, 299133, 299134, 299135, 299136, 299137, 299138} },
{"Duskhallow Mantle", {6034788, 34788, 299139, 299140, 299141, 299142, 299143, 299144, 299145, 299146, 299147, 299148, 299149, 299150} },
{"Bracers of Slaughter", {6034789, 34789, 299151, 299152, 299153, 299154, 299155, 299156, 299157, 299158, 299159, 299160, 299161, 299162} },
{"Battle-mace of the High Priestess", {6034790, 34790, 299163, 299164, 299165, 299166, 299167, 299168, 299169, 299170, 299171, 299172, 299173, 299174} },
{"Gauntlets of the Tranquil Waves", {6034791, 34791, 299175, 299176, 299177, 299178, 299179, 299180, 299181, 299182, 299183, 299184, 299185, 299186} },
{"Cloak of the Betrayed", {6034792, 34792, 299187, 299188, 299189, 299190, 299191, 299192, 299193, 299194, 299195, 299196, 299197, 299198} },
{"Cord of Reconstruction", {6034793, 34793, 299199, 299200, 299201, 299202, 299203, 299204, 299205, 299206, 299207, 299208, 299209, 299210} },
{"Axe of Shattered Dreams", {6034794, 34794, 299211, 299212, 299213, 299214, 299215, 299216, 299217, 299218, 299219, 299220, 299221, 299222} },
{"Helm of Sanctification", {6034795, 34795, 299223, 299224, 299225, 299226, 299227, 299228, 299229, 299230, 299231, 299232, 299233, 299234} },
{"Robes of Summer Flame", {6034796, 34796, 299235, 299236, 299237, 299238, 299239, 299240, 299241, 299242, 299243, 299244, 299245, 299246} },
{"Sun-infused Focus Staff", {6034797, 34797, 299247, 299248, 299249, 299250, 299251, 299252, 299253, 299254, 299255, 299256, 299257, 299258} },
{"Band of Celerity", {6034798, 34798, 299259, 299260, 299261, 299262, 299263, 299264, 299265, 299266, 299267, 299268, 299269, 299270} },
{"Hauberk of the War Bringer", {6034799, 34799, 299271, 299272, 299273, 299274, 299275, 299276, 299277, 299278, 299279, 299280, 299281, 299282} },
{"Sunstrider Warboots", {6034807, 34807, 299283, 299284, 299285, 299286, 299287, 299288, 299289, 299290, 299291, 299292, 299293, 299294} },
{"Gloves of Arcane Acuity", {6034808, 34808, 299295, 299296, 299297, 299298, 299299, 299300, 299301, 299302, 299303, 299304, 299305, 299306} },
{"Sunrage Treads", {6034809, 34809, 299307, 299308, 299309, 299310, 299311, 299312, 299313, 299314, 299315, 299316, 299317, 299318} },
{"The 2 Ring", {6034837, 34837, 299331, 299332, 299333, 299334, 299335, 299336, 299337, 299338, 299339, 299340, 299341, 299342} },
{"Annihilator Holo-Gogs", {6034847, 34847, 299343, 299344, 299345, 299346, 299347, 299348, 299349, 299350, 299351, 299352, 299353, 299354} },
{"Angelista's Revenge", {6034887, 34887, 299355, 299356, 299357, 299358, 299359, 299360, 299361, 299362, 299363, 299364, 299365, 299366} },
{"Ring of the Stalwart Protector", {6034888, 34888, 299367, 299368, 299369, 299370, 299371, 299372, 299373, 299374, 299375, 299376, 299377, 299378} },
{"Fused Nethergon Band", {6034889, 34889, 299379, 299380, 299381, 299382, 299383, 299384, 299385, 299386, 299387, 299388, 299389, 299390} },
{"Anveena's Touch", {6034890, 34890, 299391, 299392, 299393, 299394, 299395, 299396, 299397, 299398, 299399, 299400, 299401, 299402} },
{"The Blade of Harbingers", {6034891, 34891, 299403, 299404, 299405, 299406, 299407, 299408, 299409, 299410, 299411, 299412, 299413, 299414} },
{"Crossbow of Relentless Strikes", {6034892, 34892, 299415, 299416, 299417, 299418, 299419, 299420, 299421, 299422, 299423, 299424, 299425, 299426} },
{"Vanir's Right Fist of Brutality", {6034893, 34893, 299427, 299428, 299429, 299430, 299431, 299432, 299433, 299434, 299435, 299436, 299437, 299438} },
{"Blade of Serration", {6034894, 34894, 299439, 299440, 299441, 299442, 299443, 299444, 299445, 299446, 299447, 299448, 299449, 299450} },
{"Scryer's Blade of Focus", {6034895, 34895, 299451, 299452, 299453, 299454, 299455, 299456, 299457, 299458, 299459, 299460, 299461, 299462} },
{"Gavel of Naaru Blessings", {6034896, 34896, 299463, 299464, 299465, 299466, 299467, 299468, 299469, 299470, 299471, 299472, 299473, 299474} },
{"Staff of the Forest Lord", {6034898, 34898, 299475, 299476, 299477, 299478, 299479, 299480, 299481, 299482, 299483, 299484, 299485, 299486} },
{"Shroud of Nature's Harmony", {6034900, 34900, 299487, 299488, 299489, 299490, 299491, 299492, 299493, 299494, 299495, 299496, 299497, 299498} },
{"Grovewalker's Leggings", {6034901, 34901, 299499, 299500, 299501, 299502, 299503, 299504, 299505, 299506, 299507, 299508, 299509, 299510} },
{"Oakleaf-Spun Handguards", {6034902, 34902, 299511, 299512, 299513, 299514, 299515, 299516, 299517, 299518, 299519, 299520, 299521, 299522} },
{"Embrace of Starlight", {6034903, 34903, 299523, 299524, 299525, 299526, 299527, 299528, 299529, 299530, 299531, 299532, 299533, 299534} },
{"Barbed Gloves of the Sage", {6034904, 34904, 299535, 299536, 299537, 299538, 299539, 299540, 299541, 299542, 299543, 299544, 299545, 299546} },
{"Crystalwind Leggings", {6034905, 34905, 299547, 299548, 299549, 299550, 299551, 299552, 299553, 299554, 299555, 299556, 299557, 299558} },
{"Embrace of Everlasting Prowess", {6034906, 34906, 299559, 299560, 299561, 299562, 299563, 299564, 299565, 299566, 299567, 299568, 299569, 299570} },
{"Tameless Breeches", {6034910, 34910, 299571, 299572, 299573, 299574, 299575, 299576, 299577, 299578, 299579, 299580, 299581, 299582} },
{"Handwraps of the Aggressor", {6034911, 34911, 299583, 299584, 299585, 299586, 299587, 299588, 299589, 299590, 299591, 299592, 299593, 299594} },
{"Scaled Drakeskin Chestguard", {6034912, 34912, 299595, 299596, 299597, 299598, 299599, 299600, 299601, 299602, 299603, 299604, 299605, 299606} },
{"Leggings of the Pursuit", {6034914, 34914, 299607, 299608, 299609, 299610, 299611, 299612, 299613, 299614, 299615, 299616, 299617, 299618} },
{"Gauntlets of Rapidity", {6034916, 34916, 299619, 299620, 299621, 299622, 299623, 299624, 299625, 299626, 299627, 299628, 299629, 299630} },
{"Shroud of the Lore`nial", {6034917, 34917, 299631, 299632, 299633, 299634, 299635, 299636, 299637, 299638, 299639, 299640, 299641, 299642} },
{"Legwraps of Sweltering Flame", {6034918, 34918, 299643, 299644, 299645, 299646, 299647, 299648, 299649, 299650, 299651, 299652, 299653, 299654} },
{"Boots of Incantations", {6034919, 34919, 299655, 299656, 299657, 299658, 299659, 299660, 299661, 299662, 299663, 299664, 299665, 299666} },
{"Ecclesiastical Cuirass", {6034921, 34921, 299667, 299668, 299669, 299670, 299671, 299672, 299673, 299674, 299675, 299676, 299677, 299678} },
{"Greaves of Pacification", {6034922, 34922, 299679, 299680, 299681, 299682, 299683, 299684, 299685, 299686, 299687, 299688, 299689, 299690} },
{"Waistguard of Reparation", {6034923, 34923, 299691, 299692, 299693, 299694, 299695, 299696, 299697, 299698, 299699, 299700, 299701, 299702} },
{"Gown of Spiritual Wonder", {6034924, 34924, 299703, 299704, 299705, 299706, 299707, 299708, 299709, 299710, 299711, 299712, 299713, 299714} },
{"Adorned Supernal Legwraps", {6034925, 34925, 299715, 299716, 299717, 299718, 299719, 299720, 299721, 299722, 299723, 299724, 299725, 299726} },
{"Slippers of Dutiful Mending", {6034926, 34926, 299727, 299728, 299729, 299730, 299731, 299732, 299733, 299734, 299735, 299736, 299737, 299738} },
{"Tunic of the Dark Hour", {6034927, 34927, 299739, 299740, 299741, 299742, 299743, 299744, 299745, 299746, 299747, 299748, 299749, 299750} },
{"Trousers of the Scryers' Retainer", {6034928, 34928, 299751, 299752, 299753, 299754, 299755, 299756, 299757, 299758, 299759, 299760, 299761, 299762} },
{"Belt of the Silent Path", {6034929, 34929, 299763, 299764, 299765, 299766, 299767, 299768, 299769, 299770, 299771, 299772, 299773, 299774} },
{"Wave of Life Chestguard", {6034930, 34930, 299775, 299776, 299777, 299778, 299779, 299780, 299781, 299782, 299783, 299784, 299785, 299786} },
{"Runed Scales of Antiquity", {6034931, 34931, 299787, 299788, 299789, 299790, 299791, 299792, 299793, 299794, 299795, 299796, 299797, 299798} },
{"Clutch of the Soothing Breeze", {6034932, 34932, 299799, 299800, 299801, 299802, 299803, 299804, 299805, 299806, 299807, 299808, 299809, 299810} },
{"Hauberk of Whirling Fury", {6034933, 34933, 299811, 299812, 299813, 299814, 299815, 299816, 299817, 299818, 299819, 299820, 299821, 299822} },
{"Rushing Storm Kilt", {6034934, 34934, 299823, 299824, 299825, 299826, 299827, 299828, 299829, 299830, 299831, 299832, 299833, 299834} },
{"Aftershock Waistguard", {6034935, 34935, 299835, 299836, 299837, 299838, 299839, 299840, 299841, 299842, 299843, 299844, 299845, 299846} },
{"Tormented Demonsoul Robes", {6034936, 34936, 299847, 299848, 299849, 299850, 299851, 299852, 299853, 299854, 299855, 299856, 299857, 299858} },
{"Corrupted Soulcloth Pantaloons", {6034937, 34937, 299859, 299860, 299861, 299862, 299863, 299864, 299865, 299866, 299867, 299868, 299869, 299870} },
{"Enslaved Doomguard Soulgrips", {6034938, 34938, 299871, 299872, 299873, 299874, 299875, 299876, 299877, 299878, 299879, 299880, 299881, 299882} },
{"Chestplate of Stoicism", {6034939, 34939, 299883, 299884, 299885, 299886, 299887, 299888, 299889, 299890, 299891, 299892, 299893, 299894} },
{"Sunguard Legplates", {6034940, 34940, 299895, 299896, 299897, 299898, 299899, 299900, 299901, 299902, 299903, 299904, 299905, 299906} },
{"Girdle of the Fearless", {6034941, 34941, 299907, 299908, 299909, 299910, 299911, 299912, 299913, 299914, 299915, 299916, 299917, 299918} },
{"Breastplate of Ire", {6034942, 34942, 299919, 299920, 299921, 299922, 299923, 299924, 299925, 299926, 299927, 299928, 299929, 299930} },
{"Legplates of Unending Fury", {6034943, 34943, 299931, 299932, 299933, 299934, 299935, 299936, 299937, 299938, 299939, 299940, 299941, 299942} },
{"Girdle of Seething Rage", {6034944, 34944, 299943, 299944, 299945, 299946, 299947, 299948, 299949, 299950, 299951, 299952, 299953, 299954} },
{"Shattrath Protectorate's Breastplate", {6034945, 34945, 299955, 299956, 299957, 299958, 299959, 299960, 299961, 299962, 299963, 299964, 299965, 299966} },
{"Inscribed Legplates of the Aldor", {6034946, 34946, 299967, 299968, 299969, 299970, 299971, 299972, 299973, 299974, 299975, 299976, 299977, 299978} },
{"Blue's Greaves of the Righteous Guardian", {6034947, 34947, 299979, 299980, 299981, 299982, 299983, 299984, 299985, 299986, 299987, 299988, 299989, 299990} },
{"Swift Blade of Uncertainty", {6034949, 34949, 299991, 299992, 299993, 299994, 299995, 299996, 299997, 299998, 299999, 300095, 300096, 300097} },
{"Vanir's Left Fist of Savagery", {6034950, 34950, 300098, 300099, 300100, 300101, 300102, 300103, 300104, 300105, 300106, 300107, 300108, 300109} },
{"Vanir's Left Fist of Brutality", {6034951, 34951, 300110, 300111, 300112, 300113, 300114, 300115, 300116, 300117, 300118, 300119, 300120, 300121} },
{"The Mutilator", {6034952, 34952, 300122, 300123, 300124, 300125, 300126, 300127, 300128, 300129, 300130, 300131, 300132, 300133} },
{"Brutal Gladiator's Idol of Resolve", {6035019, 35019, 300542, 300543, 300544, 300545, 300546, 300547, 300548, 300549, 300550, 300551, 300552, 300553} },
{"Brutal Gladiator's Idol of Steadfastness", {6035020, 35020, 300554, 300555, 300556, 300557, 300558, 300559, 300560, 300561, 300562, 300563, 300564, 300565} },
{"Brutal Gladiator's Idol of Tenacity", {6035021, 35021, 300566, 300567, 300568, 300569, 300570, 300571, 300572, 300573, 300574, 300575, 300576, 300577} },
{"Brutal Gladiator's Libram of Fortitude", {6035039, 35039, 300782, 300783, 300784, 300785, 300786, 300787, 300788, 300789, 300790, 300791, 300792, 300793} },
{"Brutal Gladiator's Libram of Justice", {6035040, 35040, 300794, 300795, 300796, 300797, 300798, 300799, 300800, 300801, 300802, 300803, 300804, 300805} },
{"Brutal Gladiator's Libram of Vengeance", {6035041, 35041, 300806, 300807, 300808, 300809, 300810, 300811, 300812, 300813, 300814, 300815, 300816, 300817} },
{"Brutal Gladiator's Totem of Indomitability", {6035104, 35104, 301567, 301568, 301569, 301570, 301571, 301572, 301573, 301574, 301575, 301576, 301577, 301578} },
{"Brutal Gladiator's Totem of Survival", {6035105, 35105, 301579, 301580, 301581, 301582, 301583, 301584, 301585, 301586, 301587, 301588, 301589, 301590} },
{"Brutal Gladiator's Totem of the Third Wind", {6035106, 35106, 301591, 301592, 301593, 301594, 301595, 301596, 301597, 301598, 301599, 301600, 301601, 301602} },
{"Powerheal 9000 Lens", {6035181, 35181, 302343, 302344, 302345, 302346, 302347, 302348, 302349, 302350, 302351, 302352, 302353, 302354} },
{"Hyper-Magnified Moon Specs", {6035182, 35182, 302355, 302356, 302357, 302358, 302359, 302360, 302361, 302362, 302363, 302364, 302365, 302366} },
{"Wonderheal XT68 Shades", {6035183, 35183, 302367, 302368, 302369, 302370, 302371, 302372, 302373, 302374, 302375, 302376, 302377, 302378} },
{"Primal-Attuned Goggles", {6035184, 35184, 302379, 302380, 302381, 302382, 302383, 302384, 302385, 302386, 302387, 302388, 302389, 302390} },
{"Justicebringer 3000 Specs", {6035185, 35185, 302391, 302392, 302393, 302394, 302395, 302396, 302397, 302398, 302399, 302400, 302401, 302402} },
{"Battlemaster's Alacrity", {6035326, 35326, 302499, 302500, 302501, 302502, 302503, 302504, 302505, 302506, 302507, 302508, 302509, 302510} },
{"Battlemaster's Alacrity", {6035327, 35327, 302511, 302512, 302513, 302514, 302515, 302516, 302517, 302518, 302519, 302520, 302521, 302522} },
{"Shroud of Winter's Chill", {6035494, 35494, 303606, 303607, 303608, 303609, 303610, 303611, 303612, 303613, 303614, 303615, 303616, 303617} },
{"The Frost Lord's War Cloak", {6035495, 35495, 303618, 303619, 303620, 303621, 303622, 303623, 303624, 303625, 303626, 303627, 303628, 303629} },
{"Icebound Cloak", {6035496, 35496, 303630, 303631, 303632, 303633, 303634, 303635, 303636, 303637, 303638, 303639, 303640, 303641} },
{"Cloak of the Frigid Winds", {6035497, 35497, 303642, 303643, 303644, 303645, 303646, 303647, 303648, 303649, 303650, 303651, 303652, 303653} },
{"Amulet of Bitter Hatred", {6035507, 35507, 303654, 303655, 303656, 303657, 303658, 303659, 303660, 303661, 303662, 303663, 303664, 303665} },
{"Choker of the Arctic Flow", {6035508, 35508, 303666, 303667, 303668, 303669, 303670, 303671, 303672, 303673, 303674, 303675, 303676, 303677} },
{"Amulet of Glacial Tranquility", {6035509, 35509, 303678, 303679, 303680, 303681, 303682, 303683, 303684, 303685, 303686, 303687, 303688, 303689} },
{"Hailstone Pendant", {6035511, 35511, 303690, 303691, 303692, 303693, 303694, 303695, 303696, 303697, 303698, 303699, 303700, 303701} },
{"Frostscythe of Lord Ahune", {6035514, 35514, 303702, 303703, 303704, 303705, 303706, 303707, 303708, 303709, 303710, 303711, 303712, 303713} },
{"Keleseth's Blade of Evocation", {6035570, 35570, 303714, 303715, 303716, 303717, 303718, 303719, 303720, 303721, 303722, 303723, 303724, 303725} },
{"Dragon Stabler's Gauntlets", {6035571, 35571, 303726, 303727, 303728, 303729, 303730, 303731, 303732, 303733, 303734, 303735, 303736, 303737} },
{"Reinforced Velvet Helm", {6035572, 35572, 303738, 303739, 303740, 303741, 303742, 303743, 303744, 303745, 303746, 303747, 303748, 303749} },
{"Arm Blade of Augelmir", {6035573, 35573, 303750, 303751, 303752, 303753, 303754, 303755, 303756, 303757, 303758, 303759, 303760, 303761} },
{"Chestplate of the Northern Lights", {6035574, 35574, 303762, 303763, 303764, 303765, 303766, 303767, 303768, 303769, 303770, 303771, 303772, 303773} },
{"Skarvald's Dragonskin Habergeon", {6035575, 35575, 303774, 303775, 303776, 303777, 303778, 303779, 303780, 303781, 303782, 303783, 303784, 303785} },
{"Ingvar's Monolithic Cleaver", {6035576, 35576, 303786, 303787, 303788, 303789, 303790, 303791, 303792, 303793, 303794, 303795, 303796, 303797} },
{"Holistic Patchwork Breeches", {6035577, 35577, 303798, 303799, 303800, 303801, 303802, 303803, 303804, 303805, 303806, 303807, 303808, 303809} },
{"Overlaid Chain Spaulders", {6035578, 35578, 303810, 303811, 303812, 303813, 303814, 303815, 303816, 303817, 303818, 303819, 303820, 303821} },
{"Vrykul Shackles", {6035579, 35579, 303822, 303823, 303824, 303825, 303826, 303827, 303828, 303829, 303830, 303831, 303832, 303833} },
{"Skein Woven Mantle", {6035580, 35580, 303834, 303835, 303836, 303837, 303838, 303839, 303840, 303841, 303842, 303843, 303844, 303845} },
{"Rocket Boots Xtreme Lite", {6035581, 35581, 303846, 303847, 303848, 303849, 303850, 303851, 303852, 303853, 303854, 303855, 303856, 303857} },
{"Witch Doctor's Wildstaff", {6035583, 35583, 303858, 303859, 303860, 303861, 303862, 303863, 303864, 303865, 303866, 303867, 303868, 303869} },
{"Embroidered Gown of Zul'Drak", {6035584, 35584, 303870, 303871, 303872, 303873, 303874, 303875, 303876, 303877, 303878, 303879, 303880, 303881} },
{"Cannibal's Legguards", {6035585, 35585, 303882, 303883, 303884, 303885, 303886, 303887, 303888, 303889, 303890, 303891, 303892, 303893} },
{"Frozen Scepter of Necromancy", {6035587, 35587, 303894, 303895, 303896, 303897, 303898, 303899, 303900, 303901, 303902, 303903, 303904, 303905} },
{"Forlorn Breastplate of War", {6035588, 35588, 303906, 303907, 303908, 303909, 303910, 303911, 303912, 303913, 303914, 303915, 303916, 303917} },
{"Arcane Focal Signet", {6035589, 35589, 303918, 303919, 303920, 303921, 303922, 303923, 303924, 303925, 303926, 303927, 303928, 303929} },
{"Drakkari Hunting Bow", {6035590, 35590, 303930, 303931, 303932, 303933, 303934, 303935, 303936, 303937, 303938, 303939, 303940, 303941} },
{"Shoulderguards of the Ice Troll", {6035591, 35591, 303942, 303943, 303944, 303945, 303946, 303947, 303948, 303949, 303950, 303951, 303952, 303953} },
{"Hauberk of Totemic Mastery", {6035592, 35592, 303954, 303955, 303956, 303957, 303958, 303959, 303960, 303961, 303962, 303963, 303964, 303965} },
{"Steel Bear Trap Bracers", {6035593, 35593, 303966, 303967, 303968, 303969, 303970, 303971, 303972, 303973, 303974, 303975, 303976, 303977} },
{"Snowmelt Silken Cinch", {6035594, 35594, 303978, 303979, 303980, 303981, 303982, 303983, 303984, 303985, 303986, 303987, 303988, 303989} },
{"Glacier Sharpened Vileblade", {6035595, 35595, 303990, 303991, 303992, 303993, 303994, 303995, 303996, 303997, 303998, 303999, 304000, 304001} },
{"Attuned Crystalline Boots", {6035596, 35596, 304002, 304003, 304004, 304005, 304006, 304007, 304008, 304009, 304010, 304011, 304012, 304013} },
{"Band of Glittering Permafrost", {6035597, 35597, 304014, 304015, 304016, 304017, 304018, 304019, 304020, 304021, 304022, 304023, 304024, 304025} },
{"Tome of the Lore Keepers", {6035598, 35598, 304026, 304027, 304028, 304029, 304030, 304031, 304032, 304033, 304034, 304035, 304036, 304037} },
{"Gauntlets of Serpent Scales", {6035599, 35599, 304038, 304039, 304040, 304041, 304042, 304043, 304044, 304045, 304046, 304047, 304048, 304049} },
{"Cleated Ice Boots", {6035600, 35600, 304050, 304051, 304052, 304053, 304054, 304055, 304056, 304057, 304058, 304059, 304060, 304061} },
{"Drakonid Arm Blade", {6035601, 35601, 304062, 304063, 304064, 304065, 304066, 304067, 304068, 304069, 304070, 304071, 304072, 304073} },
{"Chiseled Stalagmite Pauldrons", {6035602, 35602, 304074, 304075, 304076, 304077, 304078, 304079, 304080, 304081, 304082, 304083, 304084, 304085} },
{"Greaves of the Blue Flight", {6035603, 35603, 304086, 304087, 304088, 304089, 304090, 304091, 304092, 304093, 304094, 304095, 304096, 304097} },
{"Insulating Bindings", {6035604, 35604, 304098, 304099, 304100, 304101, 304102, 304103, 304104, 304105, 304106, 304107, 304108, 304109} },
{"Belt of Draconic Runes", {6035605, 35605, 304110, 304111, 304112, 304113, 304114, 304115, 304116, 304117, 304118, 304119, 304120, 304121} },
{"Blade of Nadox", {6035606, 35606, 304122, 304123, 304124, 304125, 304126, 304127, 304128, 304129, 304130, 304131, 304132, 304133} },
{"Ahn'kahar Handwraps", {6035607, 35607, 304134, 304135, 304136, 304137, 304138, 304139, 304140, 304141, 304142, 304143, 304144, 304145} },
{"Crawler-Emblem Belt", {6035608, 35608, 304146, 304147, 304148, 304149, 304150, 304151, 304152, 304153, 304154, 304155, 304156, 304157} },
{"Talisman of Scourge Command", {6035609, 35609, 304158, 304159, 304160, 304161, 304162, 304163, 304164, 304165, 304166, 304167, 304168, 304169} },
{"Slasher's Amulet", {6035610, 35610, 304170, 304171, 304172, 304173, 304174, 304175, 304176, 304177, 304178, 304179, 304180, 304181} },
{"Gloves of the Blood Prince", {6035611, 35611, 304182, 304183, 304184, 304185, 304186, 304187, 304188, 304189, 304190, 304191, 304192, 304193} },
{"Mantle of Echoing Bats", {6035612, 35612, 304194, 304195, 304196, 304197, 304198, 304199, 304200, 304201, 304202, 304203, 304204, 304205} },
{"Pyramid Embossed Belt", {6035613, 35613, 304206, 304207, 304208, 304209, 304210, 304211, 304212, 304213, 304214, 304215, 304216, 304217} },
{"Volazj's Sabatons", {6035614, 35614, 304218, 304219, 304220, 304221, 304222, 304223, 304224, 304225, 304226, 304227, 304228, 304229} },
{"Glowworm Cavern Bindings", {6035615, 35615, 304230, 304231, 304232, 304233, 304234, 304235, 304236, 304237, 304238, 304239, 304240, 304241} },
{"Spored Tendrils Spaulders", {6035616, 35616, 304242, 304243, 304244, 304245, 304246, 304247, 304248, 304249, 304250, 304251, 304252, 304253} },
{"Wand of Shimmering Scales", {6035617, 35617, 304254, 304255, 304256, 304257, 304258, 304259, 304260, 304261, 304262, 304263, 304264, 304265} },
{"Troll Butcherer", {6035618, 35618, 304266, 304267, 304268, 304269, 304270, 304271, 304272, 304273, 304274, 304275, 304276, 304277} },
{"Infection Resistant Legguards", {6035619, 35619, 304278, 304279, 304280, 304281, 304282, 304283, 304284, 304285, 304286, 304287, 304288, 304289} },
{"Berserker's Horns", {6035620, 35620, 304290, 304291, 304292, 304293, 304294, 304295, 304296, 304297, 304298, 304299, 304300, 304301} },
{"Summoner's Stone Gavel", {6035630, 35630, 304302, 304303, 304304, 304305, 304306, 304307, 304308, 304309, 304310, 304311, 304312, 304313} },
{"Crystal Pendant of Warding", {6035631, 35631, 304314, 304315, 304316, 304317, 304318, 304319, 304320, 304321, 304322, 304323, 304324, 304325} },
{"Robes of Novos", {6035632, 35632, 304326, 304327, 304328, 304329, 304330, 304331, 304332, 304333, 304334, 304335, 304336, 304337} },
{"Staff of the Great Reptile", {6035633, 35633, 304338, 304339, 304340, 304341, 304342, 304343, 304344, 304345, 304346, 304347, 304348, 304349} },
{"Scabrous-Hide Helm", {6035634, 35634, 304350, 304351, 304352, 304353, 304354, 304355, 304356, 304357, 304358, 304359, 304360, 304361} },
{"Stable Master's Breeches", {6035635, 35635, 304362, 304363, 304364, 304365, 304366, 304367, 304368, 304369, 304370, 304371, 304372, 304373} },
{"Tharon'ja's Aegis", {6035636, 35636, 304374, 304375, 304376, 304377, 304378, 304379, 304380, 304381, 304382, 304383, 304384, 304385} },
{"Muradin's Lost Greaves", {6035637, 35637, 304386, 304387, 304388, 304389, 304390, 304391, 304392, 304393, 304394, 304395, 304396, 304397} },
{"Helmet of Living Flesh", {6035638, 35638, 304398, 304399, 304400, 304401, 304402, 304403, 304404, 304405, 304406, 304407, 304408, 304409} },
{"Brighthelm of Guarding", {6035639, 35639, 304410, 304411, 304412, 304413, 304414, 304415, 304416, 304417, 304418, 304419, 304420, 304421} },
{"Darkweb Bindings", {6035640, 35640, 304422, 304423, 304424, 304425, 304426, 304427, 304428, 304429, 304430, 304431, 304432, 304433} },
{"Scytheclaw Boots", {6035641, 35641, 304434, 304435, 304436, 304437, 304438, 304439, 304440, 304441, 304442, 304443, 304444, 304445} },
{"Riot Shield", {6035642, 35642, 304446, 304447, 304448, 304449, 304450, 304451, 304452, 304453, 304454, 304455, 304456, 304457} },
{"Spaulders of Ichoron", {6035643, 35643, 304458, 304459, 304460, 304461, 304462, 304463, 304464, 304465, 304466, 304467, 304468, 304469} },
{"Xevozz's Belt", {6035644, 35644, 304470, 304471, 304472, 304473, 304474, 304475, 304476, 304477, 304478, 304479, 304480, 304481} },
{"Prison Warden's Shotgun", {6035645, 35645, 304482, 304483, 304484, 304485, 304486, 304487, 304488, 304489, 304490, 304491, 304492, 304493} },
{"Lava Burn Gloves", {6035646, 35646, 304494, 304495, 304496, 304497, 304498, 304499, 304500, 304501, 304502, 304503, 304504, 304505} },
{"Handguards of Rapid Pursuit", {6035647, 35647, 304506, 304507, 304508, 304509, 304510, 304511, 304512, 304513, 304514, 304515, 304516, 304517} },
{"Jailer's Baton", {6035649, 35649, 304518, 304519, 304520, 304521, 304522, 304523, 304524, 304525, 304526, 304527, 304528, 304529} },
{"Boots of the Portal Guardian", {6035650, 35650, 304530, 304531, 304532, 304533, 304534, 304535, 304536, 304537, 304538, 304539, 304540, 304541} },
{"Plate Claws of the Dragon", {6035651, 35651, 304542, 304543, 304544, 304545, 304546, 304547, 304548, 304549, 304550, 304551, 304552, 304553} },
{"Incessant Torch", {6035652, 35652, 304554, 304555, 304556, 304557, 304558, 304559, 304560, 304561, 304562, 304563, 304564, 304565} },
{"Girdle of the Mystical Prison", {6035653, 35653, 304566, 304567, 304568, 304569, 304570, 304571, 304572, 304573, 304574, 304575, 304576, 304577} },
{"Bindings of the Bastille", {6035654, 35654, 304578, 304579, 304580, 304581, 304582, 304583, 304584, 304585, 304586, 304587, 304588, 304589} },
{"Cobweb Machete", {6035655, 35655, 304590, 304591, 304592, 304593, 304594, 304595, 304596, 304597, 304598, 304599, 304600, 304601} },
{"Aura Focused Gauntlets", {6035656, 35656, 304602, 304603, 304604, 304605, 304606, 304607, 304608, 304609, 304610, 304611, 304612, 304613} },
{"Exquisite Spider-Silk Footwraps", {6035657, 35657, 304614, 304615, 304616, 304617, 304618, 304619, 304620, 304621, 304622, 304623, 304624, 304625} },
{"Life-Staff of the Web Lair", {6035658, 35658, 304626, 304627, 304628, 304629, 304630, 304631, 304632, 304633, 304634, 304635, 304636, 304637} },
{"Treads of Aspiring Heights", {6035659, 35659, 304638, 304639, 304640, 304641, 304642, 304643, 304644, 304645, 304646, 304647, 304648, 304649} },
{"Spinneret Epaulets", {6035660, 35660, 304650, 304651, 304652, 304653, 304654, 304655, 304656, 304657, 304658, 304659, 304660, 304661} },
{"Signet of Arachnathid Command", {6035661, 35661, 304662, 304663, 304664, 304665, 304666, 304667, 304668, 304669, 304670, 304671, 304672, 304673} },
{"Wing Cover Girdle", {6035662, 35662, 304674, 304675, 304676, 304677, 304678, 304679, 304680, 304681, 304682, 304683, 304684, 304685} },
{"Charmed Silken Cord", {6035663, 35663, 304686, 304687, 304688, 304689, 304690, 304691, 304692, 304693, 304694, 304695, 304697, 304698} },
{"Unknown Archaeologist's Hammer", {6035664, 35664, 304699, 304700, 304701, 304702, 304703, 304704, 304705, 304706, 304707, 304708, 304709, 304710} },
{"Soothing Lichen Wraps", {6035665, 35665, 304711, 304712, 304713, 304714, 304715, 304716, 304717, 304718, 304719, 304720, 304721, 304722} },
{"Mark of the Spider", {6035666, 35666, 304723, 304724, 304725, 304726, 304727, 304728, 304729, 304730, 304731, 304732, 304733, 304734} },
{"Brann's Lost Mining Helmet", {6035670, 35670, 304735, 304736, 304737, 304738, 304739, 304740, 304741, 304742, 304743, 304744, 304745, 304746} },
{"Hollow Geode Helm", {6035672, 35672, 304747, 304748, 304749, 304750, 304751, 304752, 304753, 304754, 304755, 304756, 304757, 304758} },
{"Leggings of Burning Gleam", {6035673, 35673, 304759, 304760, 304761, 304762, 304763, 304764, 304765, 304766, 304767, 304768, 304769, 304770} },
{"Linked Armor of the Sphere", {6035675, 35675, 304771, 304772, 304773, 304774, 304775, 304776, 304777, 304778, 304779, 304780, 304781, 304782} },
{"Constellation Leggings", {6035676, 35676, 304783, 304784, 304785, 304786, 304787, 304788, 304789, 304790, 304791, 304792, 304793, 304794} },
{"Cosmos Vestments", {6035677, 35677, 304795, 304796, 304797, 304798, 304799, 304800, 304801, 304802, 304803, 304804, 304805, 304806} },
{"Ironshaper's Legplates", {6035678, 35678, 304807, 304808, 304809, 304810, 304811, 304812, 304813, 304814, 304815, 304816, 304817, 304818} },
{"Static Cowl", {6035679, 35679, 304819, 304820, 304821, 304822, 304823, 304824, 304825, 304826, 304827, 304828, 304829, 304830} },
{"Amulet of Wills", {6035680, 35680, 304831, 304832, 304833, 304834, 304835, 304836, 304837, 304838, 304839, 304840, 304841, 304842} },
{"Unrelenting Blade", {6035681, 35681, 304843, 304844, 304845, 304846, 304847, 304848, 304849, 304850, 304851, 304852, 304853, 304854} },
{"Rune Giant Bindings", {6035682, 35682, 304855, 304856, 304857, 304858, 304859, 304860, 304861, 304862, 304863, 304864, 304865, 304866} },
{"Palladium Ring", {6035683, 35683, 304867, 304868, 304869, 304870, 304871, 304872, 304873, 304874, 304875, 304876, 304877, 304878} },
{"Figurine - Empyrean Tortoise", {6035693, 35693, 304879, 304880, 304881, 304882, 304883, 304884, 304885, 304886, 304887, 304888, 304889, 304890} },
{"Figurine - Khorium Boar", {6035694, 35694, 304891, 304892, 304893, 304894, 304895, 304896, 304897, 304898, 304899, 304900, 304901, 304902} },
{"Figurine - Crimson Serpent", {6035700, 35700, 304903, 304904, 304905, 304906, 304907, 304908, 304909, 304910, 304911, 304912, 304913, 304914} },
{"Figurine - Shadowsong Panther", {6035702, 35702, 304915, 304916, 304917, 304918, 304919, 304920, 304921, 304922, 304923, 304924, 304925, 304926} },
{"Figurine - Seaspray Albatross", {6035703, 35703, 304927, 304928, 304929, 304930, 304931, 304932, 304933, 304934, 304935, 304936, 304937, 304938} },
{"Ring of Harmonic Beauty", {6035733, 35733, 335733, 235733, 1006121, 1013194, 1019838, 1026436, 1033000, 1039563, 1046126, 1052689, 1059252, 1065815} },
{"Guardian's Alchemist Stone", {304940, 35748, 304939, 304941, 304942, 304943, 304944, 304945, 304946, 304947, 304948, 304949, 304950, 304951} },
{"Sorcerer's Alchemist Stone", {304953, 35749, 304952, 304954, 304955, 304956, 304957, 304958, 304959, 304960, 304961, 304962, 304963, 304964} },
{"Redeemer's Alchemist Stone", {304966, 35750, 304965, 304967, 304968, 304969, 304970, 304971, 304972, 304973, 304974, 304975, 304976, 304977} },
{"Assassin's Alchemist Stone", {304979, 35751, 304978, 304980, 304981, 304982, 304983, 304984, 304985, 304986, 304987, 304988, 304989, 304990} },
{"Bramblethorn Greatstaff", {304992, 35807, 304991, 304993, 304994, 304995, 304996, 304997, 304998, 304999, 305000, 305001, 305002, 305003} },
{"Coldstone Cutlass", {305005, 35808, 305004, 305006, 305007, 305008, 305009, 305010, 305011, 305012, 305013, 305014, 305015, 305016} },
{"Earthspike", {305018, 35809, 305017, 305019, 305020, 305021, 305022, 305023, 305024, 305025, 305026, 305027, 305028, 305029} },
{"Pacifying Pummeler", {305031, 35810, 305030, 305032, 305033, 305034, 305035, 305036, 305037, 305038, 305039, 305040, 305041, 305042} },
{"Elekk-Horn Crossbow", {305044, 35811, 305043, 305045, 305046, 305047, 305048, 305049, 305050, 305051, 305052, 305053, 305054, 305055} },
{"Cragthumper", {305057, 35812, 305056, 305058, 305059, 305060, 305061, 305062, 305063, 305064, 305065, 305066, 305067, 305068} },
{"Benevolent Hood", {305070, 35814, 305069, 305071, 305072, 305073, 305074, 305075, 305076, 305077, 305078, 305079, 305080, 305081} },
{"Bone-Threaded Harness", {305083, 35815, 305082, 305084, 305085, 305086, 305087, 305088, 305089, 305090, 305091, 305092, 305093, 305094} },
{"Blood-Stained Chain Leggings", {305096, 35816, 305095, 305097, 305098, 305099, 305100, 305101, 305102, 305103, 305104, 305105, 305106, 305107} },
{"Nerubian Inner Husk", {305109, 35817, 305108, 305110, 305111, 305112, 305113, 305114, 305115, 305116, 305117, 305118, 305119, 305120} },
{"Stretch-Hide Spaulders", {305122, 35818, 305121, 305123, 305124, 305125, 305126, 305127, 305128, 305129, 305130, 305131, 305132, 305133} },
{"Deacon's Wraps", {305135, 35820, 305134, 305136, 305137, 305138, 305139, 305140, 305141, 305142, 305143, 305144, 305145, 305146} },
{"Streamlined Stompers", {305148, 35821, 305147, 305149, 305150, 305151, 305152, 305153, 305154, 305155, 305156, 305157, 305158, 305159} },
{"Scavenged Tirasian Plate", {305161, 35822, 305160, 305162, 305163, 305164, 305165, 305166, 305167, 305168, 305169, 305170, 305171, 305172} },
{"Ice-Rimed Dagger", {305174, 35823, 305173, 305175, 305176, 305177, 305178, 305179, 305180, 305181, 305182, 305183, 305184, 305185} },
{"Stoneblade Slicer", {305187, 35824, 305186, 305188, 305189, 305190, 305191, 305192, 305193, 305194, 305195, 305196, 305197, 305198} },
{"Whelpling-Skull Zapper", {305200, 35826, 305199, 305201, 305202, 305203, 305204, 305205, 305206, 305207, 305208, 305209, 305210, 305211} },
{"Regal Sceptre", {305213, 35827, 305212, 305214, 305215, 305216, 305217, 305218, 305219, 305220, 305221, 305222, 305223, 305224} },
{"Coldspike Longbow", {305226, 35829, 305225, 305227, 305228, 305229, 305230, 305231, 305232, 305233, 305234, 305235, 305236, 305237} },
{"Worn Vrykul Smasher", {305239, 35830, 305238, 305240, 305241, 305242, 305243, 305244, 305245, 305246, 305247, 305248, 305249, 305250} },
{"Blauvelt's Special Occasion Gloves", {305252, 35832, 305251, 305253, 305254, 305255, 305256, 305257, 305258, 305259, 305260, 305261, 305262, 305263} },
{"Imperious Worghide Cap", {305265, 35833, 305264, 305268, 305269, 305270, 305271, 305272, 305273, 305274, 305275, 305276, 305277, 305278} },
{"Nimblefinger Scaled Gloves", {305280, 35834, 305279, 305281, 305282, 305283, 305284, 305285, 305286, 305287, 305288, 305289, 305290, 305291} },
{"Antique Reinforced Legguards", {305293, 35835, 305292, 305294, 305295, 305296, 305297, 305298, 305299, 305300, 305301, 305302, 305303, 305304} },
{"Runed Clamshell Choker", {305306, 35839, 305305, 305307, 305308, 305309, 305310, 305311, 305312, 305313, 305314, 305315, 305316, 305317} },
{"Frost-Trimmed Gauntlets", {305319, 35841, 305318, 305320, 305321, 305322, 305323, 305324, 305325, 305326, 305327, 305328, 305329, 305330} },
{"Azure Chain Hauberk", {305332, 35842, 305331, 305333, 305334, 305335, 305336, 305337, 305338, 305339, 305340, 305341, 305342, 305343} },
{"Ramshorn-Inlaid Shoulders", {305345, 35843, 305344, 305346, 305347, 305348, 305349, 305350, 305351, 305352, 305353, 305354, 305355, 305356} },
{"Shock-Resistant Hood", {305358, 35844, 305357, 305359, 305360, 305361, 305362, 305363, 305364, 305365, 305366, 305367, 305368, 305369} },
{"Crystalline Star", {305371, 35845, 305370, 305372, 305373, 305374, 305375, 305376, 305377, 305378, 305379, 305380, 305381, 305382} },
{"Banded Chain Gloves", {305384, 35846, 305383, 305385, 305386, 305387, 305388, 305389, 305390, 305391, 305392, 305393, 305394, 305395} },
{"Munificent Legguards", {305397, 35848, 305396, 305398, 305399, 305400, 305401, 305402, 305403, 305404, 305405, 305406, 305407, 305408} },
{"Featherweight Claymore", {305410, 35849, 305409, 305411, 305412, 305413, 305414, 305415, 305416, 305417, 305418, 305419, 305420, 305421} },
{"Acid-Etched Knuckles", {305423, 35851, 305422, 305424, 305425, 305426, 305427, 305428, 305429, 305430, 305431, 305432, 305433, 305434} },
{"Fullered Coldsteel Dagger", {305436, 35852, 305435, 305437, 305438, 305439, 305440, 305441, 305442, 305443, 305444, 305445, 305446, 305447} },
{"Hair-Trigger Blunderbuss", {305449, 35856, 305448, 305450, 305451, 305452, 305453, 305454, 305455, 305456, 305457, 305458, 305459, 305460} },
{"Munificent Bulwark", {305462, 35857, 305461, 305463, 305464, 305465, 305466, 305467, 305468, 305469, 305470, 305471, 305472, 305473} },
{"Tome of Alacrity", {305475, 35858, 305474, 305476, 305477, 305478, 305479, 305480, 305481, 305482, 305483, 305484, 305485, 305486} },
{"Fire-Purifying Tunic", {305488, 35859, 305487, 305489, 305490, 305491, 305492, 305493, 305494, 305495, 305496, 305497, 305498, 305499} },
{"Flexible Leather Footwraps", {305501, 35860, 305500, 305502, 305503, 305504, 305505, 305506, 305507, 305508, 305509, 305510, 305511, 305512} },
{"Inescapable Girdle", {305514, 35861, 305513, 305515, 305516, 305517, 305518, 305519, 305520, 305521, 305522, 305523, 305524, 305525} },
{"Light-Bound Chestguard", {305527, 35862, 305526, 305528, 305529, 305530, 305531, 305532, 305533, 305534, 305535, 305536, 305537, 305538} },
{"Earth-Infused Leggings", {305540, 35863, 305539, 305541, 305542, 305543, 305544, 305545, 305546, 305547, 305548, 305549, 305550, 305551} },
{"Fizznik's Patented Earwarmer", {305553, 35864, 305552, 305554, 305555, 305556, 305557, 305558, 305559, 305560, 305561, 305562, 305563, 305564} },
{"Arcanum Shield", {305566, 35865, 305565, 305567, 305568, 305569, 305570, 305571, 305572, 305573, 305574, 305575, 305576, 305577} },
{"Master Artilleryman Boots", {305579, 35866, 305578, 305580, 305581, 305582, 305583, 305584, 305585, 305586, 305587, 305588, 305589, 305590} },
{"Nimblefinger Band", {305592, 35867, 305591, 305593, 305594, 305595, 305596, 305597, 305598, 305599, 305600, 305601, 305602, 305603} },
{"Grounded Pants", {305605, 35868, 305604, 305606, 305607, 305608, 305609, 305610, 305611, 305612, 305613, 305614, 305615, 305616} },
{"Hex-Linked Stronghelm", {305618, 35869, 305617, 305619, 305620, 305621, 305622, 305623, 305624, 305625, 305626, 305627, 305628, 305629} },
{"Stoneground Cleaver", {305631, 35870, 305630, 305632, 305633, 305634, 305635, 305636, 305637, 305638, 305639, 305640, 305641, 305642} },
{"Indigo Robe of Replenishment", {305644, 35871, 305643, 305645, 305646, 305647, 305648, 305649, 305650, 305651, 305652, 305653, 305654, 305655} },
{"Iron-Studded Leggings", {305657, 35872, 305656, 305658, 305659, 305660, 305661, 305662, 305663, 305664, 305665, 305666, 305667, 305668} },
{"Interlinked Chain Girdle", {305670, 35873, 305669, 305671, 305672, 305673, 305674, 305675, 305676, 305677, 305678, 305679, 305680, 305681} },
{"Beneficent Skullcap", {305683, 35875, 305682, 305684, 305685, 305686, 305687, 305688, 305689, 305690, 305691, 305692, 305693, 305694} },
{"Worgskin Shoulders", {305709, 35877, 305708, 305710, 305711, 305712, 305713, 305714, 305715, 305716, 305717, 305718, 305719, 305720} },
{"Dusk-Linked Leggings", {305722, 35878, 305721, 305723, 305724, 305725, 305726, 305727, 305728, 305729, 305730, 305731, 305732, 305733} },
{"Gold-Plated Coldsteel Girdle", {305735, 35879, 305734, 305736, 305737, 305738, 305739, 305740, 305741, 305742, 305743, 305744, 305745, 305746} },
{"Earthwell Footwraps", {305748, 35880, 305747, 305749, 305750, 305751, 305752, 305753, 305754, 305755, 305756, 305757, 305758, 305759} },
{"Lost Vrykul Signet", {305761, 35881, 305760, 305762, 305763, 305764, 305765, 305766, 305767, 305768, 305769, 305770, 305771, 305772} },
{"Magispike Helm", {305774, 35882, 305773, 305775, 305776, 305777, 305778, 305779, 305780, 305781, 305782, 305783, 305784, 305785} },
{"Silversteel Gauntlets", {305787, 35883, 305786, 305788, 305789, 305790, 305791, 305792, 305793, 305794, 305795, 305796, 305797, 305798} },
{"Regal Pantaloons", {305800, 35884, 305799, 305801, 305802, 305803, 305804, 305805, 305806, 305807, 305808, 305809, 305810, 305811} },
{"Tribal Chestguard", {305813, 35885, 305812, 305814, 305815, 305816, 305817, 305818, 305819, 305820, 305821, 305822, 305823, 305824} },
{"Worgtooth Pendant", {305826, 35886, 305825, 305827, 305828, 305829, 305830, 305831, 305832, 305833, 305834, 305835, 305836, 305837} },
{"Loam-Stained Greaves", {305839, 35887, 305838, 305840, 305841, 305842, 305843, 305844, 305845, 305846, 305847, 305848, 305849, 305850} },
{"Embossed Ermine Girdle", {305852, 35888, 305851, 305853, 305854, 305855, 305856, 305857, 305858, 305859, 305860, 305861, 305862, 305863} },
{"Bone-Inlaid Bracers", {305865, 35889, 305864, 305866, 305867, 305868, 305869, 305870, 305871, 305872, 305873, 305874, 305875, 305876} },
{"Magdun Spaulders", {305878, 35890, 305877, 305879, 305880, 305881, 305882, 305883, 305884, 305885, 305886, 305887, 305888, 305889} },
{"Runeplate Helm", {305891, 35891, 305890, 305892, 305893, 305894, 305895, 305896, 305897, 305898, 305899, 305900, 305901, 305902} },
{"Flamebinder Handwraps", {305904, 35892, 305903, 305905, 305906, 305907, 305908, 305909, 305910, 305911, 305912, 305913, 305914, 305915} },
{"Coldstone-Inlaid Waistguard", {305917, 35893, 305916, 305918, 305919, 305920, 305921, 305922, 305923, 305924, 305925, 305926, 305927, 305928} },
{"Purestrike Bracers", {305930, 35894, 305929, 305931, 305932, 305933, 305934, 305935, 305936, 305937, 305938, 305939, 305940, 305941} },
{"Emeraldscale Pauldrons", {305943, 35895, 305942, 305944, 305945, 305946, 305947, 305948, 305949, 305950, 305951, 305952, 305953, 305954} },
{"Icestriker Bands", {305956, 35896, 305955, 305957, 305958, 305959, 305960, 305961, 305962, 305963, 305964, 305965, 305966, 305967} },
{"Ice-Crusted Cape", {305969, 35897, 305968, 305970, 305971, 305972, 305973, 305974, 305975, 305976, 305977, 305978, 305979, 305980} },
{"Reinforced Tuskhide Hauberk", {305982, 35898, 305981, 305983, 305984, 305985, 305986, 305987, 305988, 305989, 305990, 305991, 305992, 305993} },
{"Bloodbinder's Girdle", {305995, 35899, 305994, 305996, 305997, 305998, 305999, 306000, 306001, 306002, 306003, 306004, 306005, 306006} },
{"Supple Doeskin Moccasins", {306008, 35900, 306007, 306009, 306010, 306011, 306012, 306013, 306014, 306015, 306016, 306017, 306018, 306019} },
{"Rejuvenating Cord", {306021, 35901, 306020, 306022, 306023, 306024, 306025, 306026, 306027, 306028, 306029, 306030, 306031, 306032} },
{"Shock-Bound Spaulders", {306034, 35902, 306033, 306035, 306036, 306037, 306038, 306039, 306040, 306041, 306042, 306043, 306044, 306045} },
{"Onyx Grips", {306047, 35903, 306046, 306048, 306049, 306050, 306051, 306052, 306053, 306054, 306055, 306056, 306057, 306058} },
{"Puissance-Infused Pendant", {306060, 35904, 306059, 306061, 306062, 306063, 306064, 306065, 306066, 306067, 306068, 306069, 306070, 306071} },
{"Vinewoven Tunic", {306073, 35905, 306072, 306074, 306075, 306076, 306077, 306078, 306079, 306080, 306081, 306082, 306083, 306084} },
{"Sun-fired Striders", {306086, 35909, 306085, 306087, 306088, 306089, 306090, 306091, 306092, 306093, 306094, 306095, 306096, 306097} },
{"Shaleground Bracers", {306099, 35910, 306098, 306100, 306101, 306102, 306103, 306104, 306105, 306106, 306107, 306108, 306109, 306110} },
{"Unsparing Band", {306112, 35911, 306111, 306113, 306114, 306115, 306116, 306117, 306118, 306119, 306120, 306121, 306122, 306123} },
{"Crackling Cloak", {306125, 35912, 306124, 306126, 306127, 306128, 306129, 306130, 306131, 306132, 306133, 306134, 306135, 306136} },
{"Gholamweave Leggings", {306138, 35913, 306137, 306139, 306140, 306141, 306142, 306143, 306144, 306145, 306146, 306147, 306148, 306149} },
{"Proto-Drake Tooth Spaulders", {306151, 35914, 306150, 306152, 306153, 306154, 306155, 306156, 306157, 306158, 306159, 306160, 306161, 306162} },
{"Darksteel Ringmail Greaves", {306164, 35915, 306163, 306165, 306166, 306167, 306168, 306169, 306170, 306171, 306172, 306173, 306174, 306175} },
{"Worgblood Berserker's Hauberk", {306177, 35916, 306176, 306178, 306179, 306180, 306181, 306182, 306183, 306184, 306185, 306186, 306187, 306188} },
{"Wrathwrought Shoulderpads", {306190, 35917, 306189, 306191, 306192, 306193, 306194, 306195, 306196, 306197, 306198, 306199, 306200, 306201} },
{"Spiked Skullguard", {306203, 35918, 306202, 306204, 306205, 306206, 306207, 306208, 306209, 306210, 306211, 306212, 306213, 306214} },
{"Whispersteel Handguards", {306216, 35919, 306215, 306217, 306218, 306219, 306220, 306221, 306222, 306223, 306224, 306225, 306226, 306227} },
{"Feather-Lined Shoulderpads", {306229, 35920, 306228, 306230, 306231, 306232, 306233, 306234, 306235, 306236, 306237, 306238, 306239, 306240} },
{"Flint-Reinforced Spaulders", {306242, 35921, 306241, 306243, 306244, 306245, 306246, 306247, 306248, 306249, 306250, 306251, 306252, 306253} },
{"Dark Iron Signet", {306255, 35922, 306254, 306256, 306257, 306258, 306259, 306260, 306261, 306262, 306263, 306264, 306265, 306266} },
{"Cold-Iron Armbands", {306268, 35923, 306267, 306269, 306270, 306271, 306272, 306273, 306274, 306275, 306276, 306277, 306278, 306279} },
{"Arcanum-Bound Bracers", {306281, 35924, 306280, 306282, 306283, 306284, 306285, 306286, 306287, 306288, 306289, 306290, 306291, 306292} },
{"Shimmering Cold-Iron Band", {306294, 35925, 306293, 306295, 306296, 306297, 306298, 306299, 306300, 306301, 306302, 306303, 306304, 306305} },
{"Artfully Tooled Leggings", {306307, 35926, 306306, 306308, 306309, 306310, 306311, 306312, 306313, 306314, 306315, 306316, 306317, 306318} },
{"Songscale Breastplate", {306320, 35927, 306319, 306321, 306322, 306323, 306324, 306325, 306326, 306327, 306328, 306329, 306330, 306331} },
{"Cold-Forged Bronze Legplates", {306333, 35928, 306332, 306334, 306335, 306336, 306337, 306338, 306339, 306340, 306341, 306342, 306343, 306344} },
{"Gholamcloth Wrap", {306346, 35929, 306345, 306347, 306348, 306349, 306350, 306351, 306352, 306353, 306354, 306355, 306356, 306357} },
{"Inscribed Worghide Treads", {306359, 35930, 306358, 306360, 306361, 306362, 306363, 306364, 306365, 306366, 306367, 306368, 306369, 306370} },
{"Appointed Scalemail Leggings", {306372, 35931, 306371, 306373, 306374, 306375, 306376, 306377, 306378, 306379, 306380, 306381, 306382, 306383} },
{"Earthbinder's Regenerating Band", {306385, 35932, 306384, 306386, 306387, 306388, 306389, 306390, 306391, 306392, 306393, 306394, 306395, 306396} },
{"Ramshorn Greathelm", {306398, 35933, 306397, 306399, 306400, 306401, 306402, 306403, 306404, 306405, 306406, 306407, 306408, 306409} },
{"Ghoul-Crushing Stompers", {306411, 35934, 306410, 306412, 306413, 306414, 306415, 306416, 306417, 306418, 306419, 306420, 306421, 306422} },
{"Infused Coldstone Rune", {306424, 35935, 306423, 306425, 306426, 306427, 306428, 306429, 306430, 306431, 306432, 306433, 306434, 306435} },
{"Worg-Fang Talisman", {306437, 35936, 306436, 306438, 306439, 306440, 306441, 306442, 306443, 306444, 306445, 306446, 306447, 306448} },
{"Braxley's Backyard Moonshine", {306450, 35937, 306449, 306451, 306452, 306453, 306454, 306455, 306456, 306457, 306458, 306459, 306460, 306461} },
{"Drape of Munificence", {306463, 35938, 306462, 306464, 306465, 306466, 306467, 306468, 306469, 306470, 306471, 306472, 306473, 306474} },
{"Farshire Belt", {306476, 35955, 306475, 306477, 306478, 306479, 306480, 306481, 306482, 306483, 306484, 306485, 306486, 306487} },
{"Farshire Footpads", {306489, 35956, 306488, 306490, 306491, 306492, 306493, 306494, 306495, 306496, 306497, 306498, 306499, 306500} },
{"Farshire Robe", {306502, 35957, 306501, 306503, 306504, 306505, 306506, 306507, 306508, 306509, 306510, 306511, 306512, 306513} },
{"Farshire Gloves", {306515, 35958, 306514, 306516, 306517, 306518, 306519, 306520, 306521, 306522, 306523, 306524, 306525, 306526} },
{"Farshire Hood", {306528, 35959, 306527, 306529, 306530, 306531, 306532, 306533, 306534, 306535, 306536, 306537, 306538, 306539} },
{"Farshire Pants", {306541, 35960, 306540, 306542, 306543, 306544, 306545, 306546, 306547, 306548, 306549, 306550, 306551, 306552} },
{"Farshire Shoulderpads", {306554, 35961, 306553, 306555, 306556, 306557, 306558, 306559, 306560, 306561, 306562, 306563, 306564, 306565} },
{"Farshire Cuffs", {306567, 35962, 306566, 306568, 306569, 306570, 306571, 306572, 306573, 306574, 306575, 306576, 306577, 306578} },
{"Bloodspore Sash", {306580, 35963, 306579, 306581, 306582, 306583, 306584, 306585, 306586, 306587, 306588, 306589, 306590, 306591} },
{"Bloodspore Sandals", {306593, 35964, 306592, 306594, 306595, 306596, 306597, 306598, 306599, 306600, 306601, 306602, 306603, 306604} },
{"Bloodspore Robe", {306606, 35965, 306605, 306607, 306608, 306609, 306610, 306611, 306612, 306613, 306614, 306615, 306616, 306617} },
{"Bloodspore Gloves", {306619, 35966, 306618, 306620, 306621, 306623, 306624, 306625, 306626, 306627, 306628, 306629, 306630, 306631} },
{"Bloodspore Hood", {306633, 35967, 306632, 306634, 306635, 306636, 306637, 306638, 306639, 306640, 306641, 306642, 306643, 306644} },
{"Bloodspore Leggings", {306646, 35968, 306645, 306647, 306648, 306649, 306650, 306651, 306652, 306653, 306654, 306655, 306656, 306657} },
{"Bloodspore Mantle", {306659, 35969, 306658, 306661, 306662, 306663, 306664, 306665, 306666, 306667, 306668, 306669, 306670, 306671} },
{"Bloodspore Bracelets", {306673, 35970, 306672, 306674, 306675, 306676, 306677, 306678, 306679, 306680, 306681, 306682, 306683, 306684} },
{"Mur'ghoul Girdle", {306686, 35971, 306685, 306687, 306688, 306689, 306690, 306691, 306692, 306693, 306694, 306695, 306696, 306697} },
{"Mur'ghoul Boots", {306699, 35972, 306698, 306700, 306701, 306702, 306703, 306704, 306705, 306706, 306707, 306708, 306709, 306710} },
{"Mur'ghoul Robe", {306712, 35973, 306711, 306713, 306714, 306715, 306716, 306717, 306718, 306719, 306720, 306721, 306743, 306744} },
{"Mur'ghoul Handwraps", {306746, 35974, 306745, 306747, 306748, 306753, 306754, 306755, 306756, 306757, 306758, 306759, 306760, 306761} },
{"Mur'ghoul Cap", {306763, 35975, 306762, 306764, 306765, 306766, 306767, 306768, 306769, 306770, 306771, 306772, 306773, 306774} },
{"Mur'ghoul Leggings", {306776, 35976, 306775, 306777, 306778, 306779, 306780, 306781, 306782, 306783, 306784, 306785, 306786, 306787} },
{"Mur'ghoul Shoulderpads", {306789, 35977, 306788, 306790, 306791, 306792, 306793, 306794, 306795, 306796, 306797, 306798, 306799, 306800} },
{"Mur'ghoul Wristwraps", {306802, 35978, 306801, 306803, 306804, 306805, 306806, 306807, 306808, 306809, 306810, 306811, 306812, 306813} },
{"Foothold Belt", {306815, 35979, 306814, 306816, 306817, 306818, 306819, 306820, 306821, 306822, 306823, 306824, 306825, 306826} },
{"Foothold Boots", {306828, 35980, 306827, 306829, 306830, 306831, 306832, 306833, 306834, 306835, 306836, 306837, 306838, 306839} },
{"Foothold Robe", {306841, 35981, 306840, 306842, 306843, 306844, 306845, 306846, 306847, 306848, 306849, 306850, 306851, 306852} },
{"Foothold Gloves", {306854, 35982, 306853, 306855, 306856, 306857, 306858, 306859, 306860, 306861, 306862, 306863, 306864, 306865} },
{"Foothold Hood", {306867, 35983, 306866, 306868, 306869, 306870, 306871, 306872, 306873, 306874, 306875, 306876, 306877, 306878} },
{"Foothold Pants", {306880, 35984, 306879, 306881, 306882, 306883, 306884, 306885, 306886, 306887, 306888, 306889, 306890, 306891} },
{"Foothold Shoulderpads", {306893, 35985, 306892, 306894, 306895, 306896, 306897, 306898, 306899, 306900, 306901, 306902, 306903, 306904} },
{"Foothold Cuffs", {306906, 35986, 306905, 306907, 306908, 306909, 306910, 306911, 306912, 306913, 306914, 306915, 306916, 306917} },
{"Bristlepine Cord", {306919, 35987, 306918, 306920, 306921, 306922, 306923, 306924, 306925, 306926, 306927, 306928, 306929, 306930} },
{"Bristlepine Sandals", {306932, 35988, 306931, 306933, 306934, 306935, 306936, 306937, 306938, 306939, 306940, 306941, 306942, 306943} },
{"Bristlepine Robe", {306945, 35989, 306944, 306946, 306947, 306948, 306949, 306950, 306951, 306952, 306953, 306954, 306955, 306956} },
{"Bristlepine Handwraps", {306958, 35990, 306957, 306959, 306960, 306961, 306962, 306963, 306964, 306965, 306966, 306967, 306968, 306969} },
{"Bristlepine Headpiece", {306971, 35991, 306970, 306972, 306973, 306974, 306975, 306976, 306977, 306978, 306979, 306980, 306981, 306982} },
{"Bristlepine Leggings", {306984, 35992, 306983, 306985, 306986, 306987, 306988, 306989, 306990, 306991, 306992, 306993, 306994, 306995} },
{"Bristlepine Shoulderpads", {306997, 35993, 306996, 306998, 306999, 307000, 307001, 307002, 307003, 307004, 307005, 307006, 307007, 307008} },
{"Bristlepine Bracers", {307010, 35994, 307009, 307011, 307012, 307013, 307014, 307015, 307016, 307017, 307018, 307019, 307020, 307021} },
{"Voldrune Sash", {307023, 35995, 307022, 307024, 307025, 307026, 307027, 307028, 307029, 307030, 307031, 307032, 307033, 307034} },
{"Voldrune Slippers", {307036, 35996, 307035, 307037, 307038, 307039, 307040, 307041, 307042, 307043, 307044, 307045, 307046, 307047} },
{"Voldrune Robe", {307049, 35997, 307048, 307050, 307051, 307052, 307053, 307054, 307055, 307056, 307057, 307058, 307059, 307060} },
{"Voldrune Gloves", {307062, 35998, 307061, 307063, 307064, 307065, 307066, 307067, 307068, 307069, 307070, 307071, 307072, 307073} },
{"Voldrune Crown", {307075, 35999, 307074, 307076, 307077, 307078, 307079, 307080, 307081, 307082, 307083, 307084, 307085, 307086} },
{"Voldrune Legs", {307088, 36000, 307087, 307089, 307090, 307091, 307092, 307093, 307094, 307095, 307096, 307097, 307098, 307099} },
{"Voldrune Mantle", {307101, 36001, 307100, 307102, 307103, 307104, 307105, 307106, 307107, 307108, 307109, 307110, 307111, 307112} },
{"Voldrune Bracelets", {307114, 36002, 307113, 307115, 307116, 307117, 307118, 307119, 307120, 307121, 307122, 307123, 307124, 307125} },
{"Icemist Sash", {307127, 36003, 307126, 307128, 307129, 307130, 307131, 307132, 307133, 307134, 307135, 307136, 307137, 307138} },
{"Icemist Slippers", {307140, 36004, 307139, 307141, 307142, 307143, 307144, 307145, 307146, 307147, 307148, 307149, 307150, 307151} },
{"Icemist Robe", {307153, 36005, 307152, 307154, 307155, 307156, 307157, 307158, 307159, 307160, 307161, 307162, 307163, 307164} },
{"Icemist Gloves", {307166, 36006, 307165, 307167, 307168, 307169, 307170, 307171, 307172, 307173, 307174, 307175, 307176, 307177} },
{"Icemist Circlet", {307179, 36007, 307178, 307180, 307181, 307182, 307183, 307184, 307185, 307186, 307187, 307188, 307189, 307190} },
{"Icemist Pants", {307192, 36008, 307191, 307193, 307194, 307195, 307196, 307197, 307198, 307199, 307200, 307201, 307202, 307203} },
{"Icemist Mantle", {307205, 36009, 307204, 307206, 307207, 307208, 307209, 307210, 307211, 307212, 307213, 307214, 307215, 307216} },
{"Icemist Bracelets", {307218, 36010, 307217, 307219, 307220, 307221, 307222, 307223, 307224, 307225, 307226, 307227, 307228, 307229} },
{"Tethys Sash", {307231, 36011, 307230, 307232, 307233, 307234, 307235, 307236, 307237, 307238, 307239, 307240, 307241, 307242} },
{"Tethys Slippers", {307244, 36012, 307243, 307245, 307246, 307247, 307248, 307249, 307250, 307251, 307252, 307253, 307254, 307255} },
{"Tethys Robe", {307257, 36013, 307256, 307258, 307259, 307260, 307261, 307262, 307263, 307264, 307265, 307266, 307267, 307268} },
{"Tethys Gloves", {307270, 36014, 307269, 307271, 307272, 307273, 307274, 307275, 307276, 307277, 307278, 307279, 307280, 307281} },
{"Tethys Hood", {307283, 36015, 307282, 307284, 307285, 307286, 307287, 307288, 307289, 307290, 307291, 307292, 307293, 307294} },
{"Tethys Leggings", {307296, 36016, 307295, 307297, 307298, 307299, 307300, 307301, 307302, 307303, 307304, 307305, 307306, 307307} },
{"Tethys Mantle", {307309, 36017, 307308, 307310, 307311, 307312, 307313, 307314, 307315, 307316, 307317, 307318, 307319, 307320} },
{"Tethys Bracelets", {307322, 36018, 307321, 307323, 307324, 307325, 307326, 307327, 307328, 307329, 307330, 307331, 307332, 307333} },
{"Aerie Belt", {307335, 36019, 307334, 307336, 307337, 307338, 307339, 307340, 307341, 307342, 307343, 307344, 307345, 307346} },
{"Aerie Boots", {307348, 36020, 307347, 307349, 307350, 307351, 307352, 307353, 307354, 307355, 307356, 307357, 307358, 307359} },
{"Aerie Robe", {307361, 36021, 307360, 307362, 307363, 307364, 307365, 307366, 307367, 307368, 307369, 307370, 307371, 307372} },
{"Aerie Gloves", {307374, 36022, 307373, 307375, 307376, 307377, 307378, 307379, 307380, 307381, 307382, 307383, 307384, 307385} },
{"Aerie Headpiece", {307387, 36023, 307386, 307388, 307389, 307390, 307391, 307392, 307393, 307394, 307395, 307396, 307397, 307398} },
{"Aerie Pants", {307400, 36024, 307399, 307401, 307402, 307403, 307404, 307405, 307406, 307407, 307408, 307409, 307410, 307411} },
{"Aerie Shoulderpads", {307413, 36025, 307412, 307414, 307415, 307416, 307417, 307418, 307419, 307420, 307421, 307422, 307423, 307424} },
{"Aerie Bracers", {307426, 36026, 307425, 307427, 307428, 307429, 307430, 307431, 307432, 307433, 307434, 307435, 307436, 307437} },
{"Oracle Belt", {307439, 36027, 307438, 307440, 307441, 307442, 307443, 307444, 307445, 307446, 307447, 307448, 307449, 307450} },
{"Oracle Slippers", {307452, 36028, 307451, 307453, 307454, 307455, 307456, 307457, 307458, 307459, 307460, 307461, 307462, 307463} },
{"Oracle Robe", {307465, 36029, 307464, 307466, 307467, 307468, 307469, 307470, 307471, 307472, 307473, 307474, 307475, 307476} },
{"Oracle Gloves", {307478, 36030, 307477, 307479, 307480, 307481, 307482, 307483, 307484, 307485, 307486, 307487, 307488, 307489} },
{"Oracle Circlet", {307491, 36031, 307490, 307492, 307493, 307494, 307495, 307496, 307497, 307498, 307499, 307500, 307501, 307502} },
{"Oracle Leggings", {307504, 36032, 307503, 307505, 307506, 307507, 307508, 307509, 307510, 307511, 307512, 307513, 307514, 307515} },
{"Oracle Mantle", {307517, 36033, 307516, 307518, 307519, 307520, 307521, 307522, 307523, 307524, 307525, 307526, 307527, 307528} },
{"Oracle Bracelets", {307530, 36034, 307529, 307531, 307532, 307533, 307534, 307535, 307536, 307537, 307538, 307539, 307540, 307541} },
{"Condor Belt", {307543, 36035, 307542, 307544, 307545, 307546, 307547, 307548, 307549, 307550, 307551, 307552, 307553, 307554} },
{"Condor Sandals", {307556, 36036, 307555, 307557, 307558, 307559, 307560, 307561, 307562, 307563, 307564, 307565, 307566, 307567} },
{"Condor Robe", {307569, 36037, 307568, 307570, 307571, 307572, 307573, 307574, 307575, 307576, 307577, 307578, 307579, 307580} },
{"Condor Gloves", {307582, 36038, 307581, 307583, 307584, 307585, 307586, 307587, 307588, 307589, 307590, 307591, 307592, 307593} },
{"Condor Headpiece", {307595, 36039, 307594, 307596, 307597, 307598, 307599, 307600, 307601, 307602, 307603, 307604, 307605, 307606} },
{"Condor Pants", {307608, 36040, 307607, 307609, 307610, 307611, 307612, 307613, 307614, 307615, 307616, 307617, 307618, 307619} },
{"Condor Shoulderpads", {307621, 36041, 307620, 307622, 307623, 307624, 307625, 307626, 307627, 307628, 307629, 307630, 307631, 307632} },
{"Condor Bindings", {307634, 36042, 307633, 307635, 307636, 307637, 307638, 307639, 307640, 307641, 307642, 307643, 307644, 307645} },
{"Crystalsong Sash", {307647, 36043, 307646, 307648, 307649, 307650, 307651, 307652, 307653, 307654, 307655, 307656, 307657, 307658} },
{"Crystalsong Slippers", {307660, 36044, 307659, 307661, 307662, 307663, 307664, 307665, 307666, 307667, 307668, 307669, 307670, 307671} },
{"Crystalsong Robe", {307673, 36045, 307672, 307674, 307675, 307676, 307677, 307678, 307679, 307680, 307681, 307682, 307683, 307684} },
{"Crystalsong Gloves", {307686, 36046, 307685, 307687, 307688, 307689, 307690, 307691, 307692, 307693, 307694, 307695, 307696, 307697} },
{"Crystalsong Crown", {307699, 36047, 307698, 307700, 307701, 307702, 307703, 307704, 307705, 307706, 307707, 307708, 307709, 307710} },
{"Crystalsong Leggings", {307712, 36048, 307711, 307713, 307714, 307715, 307716, 307717, 307718, 307719, 307720, 307721, 307722, 307723} },
{"Crystalsong Mantle", {307725, 36049, 307724, 307726, 307727, 307728, 307729, 307730, 307731, 307732, 307733, 307735, 307736, 307737} },
{"Crystalsong Bracelets", {307739, 36050, 307738, 307740, 307741, 307742, 307743, 307744, 307745, 307746, 307747, 307748, 307749, 307750} },
{"Vizier Sash", {307752, 36051, 307751, 307753, 307754, 307755, 307756, 307757, 307758, 307759, 307760, 307761, 307762, 307763} },
{"Vizier Slippers", {307765, 36052, 307764, 307766, 307767, 307768, 307769, 307770, 307771, 307772, 307773, 307774, 307775, 307776} },
{"Vizier Robe", {307778, 36053, 307777, 307779, 307780, 307781, 307782, 307783, 307784, 307785, 307786, 307787, 307788, 307789} },
{"Vizier Gloves", {307791, 36054, 307790, 307792, 307793, 307794, 307795, 307796, 307797, 307798, 307799, 307800, 307801, 307802} },
{"Vizier Hood", {307804, 36055, 307803, 307805, 307806, 307807, 307808, 307809, 307810, 307811, 307812, 307813, 307814, 307815} },
{"Vizier Leggings", {307817, 36056, 307816, 307818, 307819, 307820, 307821, 307822, 307823, 307824, 307825, 307826, 307827, 307828} },
{"Vizier Mantle", {307830, 36057, 307829, 307831, 307832, 307833, 307834, 307835, 307836, 307837, 307838, 307839, 307840, 307841} },
{"Vizier Bracelets", {307843, 36058, 307842, 307844, 307845, 307846, 307847, 307848, 307849, 307850, 307851, 307852, 307853, 307854} },
{"Coldwraith Sash", {307856, 36059, 307855, 307857, 307858, 307859, 307860, 307861, 307862, 307863, 307864, 307865, 307866, 307867} },
{"Coldwraith Boots", {307869, 36060, 307868, 307870, 307871, 307872, 307873, 307874, 307875, 307876, 307877, 307878, 307879, 307880} },
{"Coldwraith Robe", {307882, 36061, 307881, 307883, 307884, 307885, 307886, 307887, 307888, 307889, 307890, 307891, 307892, 307893} },
{"Coldwraith Handwraps", {307895, 36062, 307894, 307896, 307897, 307898, 307899, 307900, 307901, 307902, 307903, 307904, 307905, 307906} },
{"Coldwraith Cowl", {307908, 36063, 307907, 307909, 307910, 307911, 307912, 307913, 307914, 307915, 307916, 307917, 307918, 307919} },
{"Coldwraith Pants", {307921, 36064, 307920, 307922, 307923, 307924, 307925, 307926, 307927, 307928, 307929, 307930, 307931, 307932} },
{"Coldwraith Mantle", {307934, 36065, 307933, 307935, 307936, 307937, 307938, 307939, 307940, 307941, 307942, 307943, 307944, 307945} },
{"Coldwraith Bindings", {307947, 36066, 307946, 307948, 307949, 307950, 307951, 307952, 307953, 307954, 307955, 307956, 307957, 307958} },
{"Daggercap Waistband", {307960, 36067, 307959, 307961, 307962, 307963, 307964, 307965, 307966, 307967, 307968, 307969, 307970, 307971} },
{"Daggercap Boots", {307973, 36068, 307972, 307974, 307975, 307976, 307977, 307978, 307979, 307980, 307981, 307982, 307983, 307984} },
{"Daggercap Jerkin", {307986, 36069, 307985, 307987, 307988, 307989, 307990, 307991, 307992, 307993, 307994, 307995, 307996, 307997} },
{"Daggercap Gloves", {307999, 36070, 307998, 308000, 308001, 308002, 308003, 308004, 308005, 308006, 308007, 308008, 308009, 308010} },
{"Daggercap Cover", {308012, 36071, 308011, 308013, 308014, 308015, 308016, 308017, 308018, 308019, 308020, 308021, 308022, 308023} },
{"Daggercap Trousers", {308025, 36072, 308024, 308026, 308027, 308028, 308029, 308030, 308031, 308032, 308033, 308034, 308035, 308036} },
{"Daggercap Spaulders", {308038, 36073, 308037, 308039, 308040, 308041, 308042, 308043, 308044, 308045, 308046, 308047, 308048, 308049} },
{"Daggercap Bracers", {308051, 36074, 308050, 308052, 308053, 308054, 308055, 308056, 308057, 308058, 308059, 308060, 308061, 308062} },
{"Winterfin Cord", {308064, 36075, 308063, 308065, 308066, 308067, 308068, 308069, 308070, 308071, 308072, 308073, 308074, 308075} },
{"Winterfin Boots", {308077, 36076, 308076, 308078, 308079, 308080, 308081, 308082, 308083, 308084, 308085, 308086, 308087, 308088} },
{"Winterfin Chestpiece", {308090, 36077, 308089, 308091, 308092, 308093, 308094, 308095, 308096, 308097, 308098, 308099, 308100, 308101} },
{"Winterfin Gloves", {308103, 36078, 308102, 308104, 308105, 308106, 308107, 308108, 308109, 308110, 308111, 308112, 308113, 308114} },
{"Winterfin Cowl", {308116, 36079, 308115, 308117, 308118, 308119, 308120, 308121, 308122, 308123, 308124, 308125, 308126, 308127} },
{"Winterfin Legguards", {308129, 36080, 308128, 308130, 308131, 308132, 308133, 308134, 308135, 308136, 308137, 308138, 308139, 308140} },
{"Winterfin Shoulderguards", {308142, 36081, 308141, 308143, 308144, 308145, 308146, 308147, 308148, 308149, 308150, 308151, 308152, 308153} },
{"Winterfin Bindings", {308155, 36082, 308154, 308156, 308157, 308158, 308159, 308160, 308161, 308162, 308163, 308164, 308165, 308166} },
{"Riplash Belt", {308168, 36083, 308167, 308169, 308170, 308171, 308172, 308173, 308174, 308175, 308176, 308177, 308178, 308179} },
{"Riplash Boots", {308181, 36084, 308180, 308182, 308183, 308184, 308185, 308186, 308187, 308188, 308189, 308191, 308192, 308193} },
{"Riplash Jerkin", {308195, 36085, 308194, 308196, 308197, 308198, 308199, 308200, 308201, 308202, 308203, 308204, 308205, 308206} },
{"Riplash Gloves", {308208, 36086, 308207, 308209, 308210, 308211, 308212, 308213, 308214, 308215, 308216, 308217, 308218, 308219} },
{"Riplash Cover", {308221, 36087, 308220, 308222, 308223, 308224, 308225, 308226, 308227, 308228, 308229, 308230, 308231, 308232} },
{"Riplash Leggings", {308234, 36088, 308233, 308235, 308236, 308237, 308238, 308239, 308240, 308241, 308242, 308243, 308244, 308245} },
{"Riplash Pauldrons", {308247, 36089, 308246, 308248, 308249, 308250, 308251, 308252, 308253, 308254, 308255, 308256, 308257, 308258} },
{"Riplash Wristguards", {308260, 36090, 308259, 308261, 308262, 308263, 308264, 308265, 308266, 308267, 308268, 308269, 308270, 308271} },
{"Wildevar Belt", {308273, 36091, 308272, 308274, 308275, 308276, 308277, 308278, 308279, 308280, 308281, 308282, 308283, 308284} },
{"Wildevar Boots", {308286, 36092, 308285, 308287, 308288, 308289, 308290, 308291, 308292, 308293, 308294, 308295, 308296, 308297} },
{"Wildevar Tunic", {308299, 36093, 308298, 308300, 308301, 308302, 308303, 308304, 308305, 308306, 308307, 308308, 308309, 308310} },
{"Wildevar Gloves", {308312, 36094, 308311, 308313, 308314, 308315, 308316, 308317, 308318, 308319, 308320, 308321, 308322, 308323} },
{"Wildevar Cap", {308325, 36095, 308324, 308326, 308327, 308328, 308329, 308330, 308331, 308332, 308333, 308334, 308335, 308336} },
{"Wildevar Pants", {308338, 36096, 308337, 308339, 308340, 308341, 308342, 308343, 308344, 308345, 308346, 308347, 308348, 308349} },
{"Wildevar Shoulderguards", {308351, 36097, 308350, 308352, 308353, 308354, 308355, 308356, 308357, 308358, 308359, 308360, 308361, 308362} },
{"Wildevar Armguards", {308364, 36098, 308363, 308365, 308366, 308367, 308368, 308369, 308370, 308371, 308372, 308373, 308374, 308375} },
{"Caribou Waistband", {308377, 36099, 308376, 308378, 308379, 308380, 308381, 308382, 308383, 308384, 308385, 308386, 308387, 308388} },
{"Caribou Boots", {308390, 36100, 308389, 308391, 308392, 308393, 308394, 308395, 308396, 308397, 308398, 308399, 308400, 308401} },
{"Caribou Vest", {308403, 36101, 308402, 308404, 308405, 308406, 308407, 308408, 308409, 308410, 308411, 308412, 308413, 308414} },
{"Caribou Gloves", {308416, 36102, 308415, 308417, 308418, 308419, 308420, 308421, 308422, 308423, 308424, 308425, 308426, 308427} },
{"Caribou Cowl", {308429, 36103, 308428, 308430, 308431, 308432, 308433, 308434, 308435, 308436, 308437, 308438, 308439, 308440} },
{"Caribou Britches", {308442, 36104, 308441, 308443, 308444, 308445, 308446, 308447, 308448, 308449, 308450, 308451, 308452, 308453} },
{"Caribou Shoulders", {308455, 36105, 308454, 308456, 308457, 308458, 308459, 308460, 308461, 308462, 308463, 308464, 308465, 308466} },
{"Caribou Bands", {308468, 36106, 308467, 308469, 308470, 308471, 308472, 308473, 308474, 308475, 308476, 308477, 308478, 308479} },
{"Vileprey Cord", {308481, 36107, 308480, 308482, 308483, 308484, 308485, 308486, 308487, 308488, 308489, 308490, 308491, 308492} },
{"Vileprey Boots", {308494, 36108, 308493, 308495, 308496, 308497, 308498, 308499, 308500, 308501, 308502, 308503, 308504, 308505} },
{"Vileprey Armor", {308507, 36109, 308506, 308508, 308509, 308510, 308511, 308512, 308513, 308514, 308515, 308516, 308517, 308518} },
{"Vileprey Gloves", {308520, 36110, 308519, 308521, 308522, 308523, 308524, 308525, 308526, 308527, 308528, 308529, 308530, 308531} },
{"Vileprey Hood", {308533, 36111, 308532, 308534, 308535, 308536, 308537, 308538, 308539, 308540, 308541, 308542, 308543, 308544} },
{"Vileprey Leggings", {308546, 36112, 308545, 308547, 308548, 308549, 308550, 308551, 308552, 308553, 308554, 308555, 308556, 308557} },
{"Vileprey Pauldrons", {308559, 36113, 308558, 308560, 308561, 308562, 308563, 308564, 308565, 308566, 308567, 308568, 308569, 308570} },
{"Vileprey Bracers", {308572, 36114, 308571, 308573, 308574, 308575, 308576, 308577, 308578, 308579, 308580, 308581, 308582, 308583} },
{"Taunka Belt", {308585, 36115, 308584, 308586, 308587, 308588, 308589, 308590, 308591, 308592, 308593, 308594, 308595, 308596} },
{"Taunka Boots", {308598, 36116, 308597, 308599, 308600, 308601, 308602, 308603, 308604, 308605, 308606, 308607, 308608, 308609} },
{"Taunka Tunic", {308611, 36117, 308610, 308612, 308613, 308614, 308615, 308616, 308617, 308618, 308619, 308620, 308621, 308622} },
{"Taunka Gloves", {308624, 36118, 308623, 308625, 308626, 308627, 308628, 308629, 308630, 308631, 308632, 308633, 308634, 308635} },
{"Taunka Hat", {308637, 36119, 308636, 308638, 308639, 308640, 308641, 308642, 308643, 308644, 308645, 308646, 308647, 308648} },
{"Taunka Legguards", {308650, 36120, 308649, 308651, 308652, 308653, 308654, 308655, 308656, 308657, 308658, 308659, 308660, 308661} },
{"Taunka Spaulders", {308663, 36121, 308662, 308664, 308665, 308666, 308667, 308668, 308669, 308670, 308671, 308672, 308673, 308674} },
{"Taunka Armguards", {308676, 36122, 308675, 308677, 308678, 308679, 308680, 308681, 308682, 308683, 308684, 308685, 308686, 308687} },
{"Muradin Belt", {308689, 36123, 308688, 308690, 308691, 308692, 308693, 308694, 308695, 308696, 308697, 308698, 308699, 308700} },
{"Muradin Boots", {308702, 36124, 308701, 308703, 308704, 308705, 308706, 308707, 308708, 308709, 308710, 308711, 308712, 308713} },
{"Muradin Chestpiece", {308715, 36125, 308714, 308716, 308717, 308718, 308719, 308720, 308721, 308722, 308723, 308724, 308725, 308726} },
{"Muradin Gloves", {308728, 36126, 308727, 308729, 308730, 308731, 308732, 308733, 308734, 308735, 308736, 308737, 308738, 308739} },
{"Muradin Hood", {308741, 36127, 308740, 308742, 308743, 308744, 308745, 308746, 308747, 308748, 308749, 308750, 308751, 308752} },
{"Muradin Pants", {308754, 36128, 308753, 308755, 308756, 308757, 308758, 308759, 308760, 308761, 308762, 308763, 308764, 308765} },
{"Muradin Shoulders", {308767, 36129, 308766, 308768, 308769, 308770, 308771, 308772, 308773, 308774, 308775, 308776, 308777, 308778} },
{"Muradin Bindings", {308780, 36130, 308779, 308781, 308782, 308783, 308784, 308785, 308786, 308787, 308788, 308789, 308790, 308791} },
{"Wolverine Girdle", {308793, 36131, 308792, 308794, 308795, 308796, 308797, 308798, 308799, 308800, 308801, 308802, 308803, 308804} },
{"Wolverine Boots", {308806, 36132, 308805, 308807, 308808, 308809, 308810, 308811, 308812, 308813, 308814, 308815, 308816, 308817} },
{"Wolverine Jerkin", {308819, 36133, 308818, 308820, 308821, 308822, 308823, 308824, 308825, 308826, 308827, 308828, 308829, 308830} },
{"Wolverine Gloves", {308832, 36134, 308831, 308833, 308834, 308835, 308836, 308837, 308838, 308839, 308840, 308841, 308842, 308843} },
{"Wolverine Cap", {308845, 36135, 308844, 308846, 308847, 308848, 308849, 308850, 308851, 308852, 308853, 308854, 308855, 308856} },
{"Wolverine Leggings", {308858, 36136, 308857, 308859, 308860, 308861, 308862, 308863, 308864, 308865, 308866, 308867, 308868, 308869} },
{"Wolverine Shoulderguards", {308871, 36137, 308870, 308872, 308873, 308874, 308875, 308876, 308877, 308878, 308879, 308880, 308881, 308882} },
{"Wolverine Armguards", {308884, 36138, 308883, 308885, 308886, 308887, 308888, 308889, 308890, 308891, 308892, 308893, 308894, 308895} },
{"Ghrino Belt", {308897, 36139, 308896, 308898, 308899, 308900, 308901, 308902, 308903, 308904, 308905, 308906, 308907, 308908} },
{"Ghrino Boots", {308910, 36140, 308909, 308911, 308912, 308913, 308914, 308915, 308916, 308917, 308918, 308919, 308920, 308921} },
{"Ghrino Vest", {308923, 36141, 308922, 308924, 308925, 308926, 308927, 308928, 308929, 308930, 308931, 308932, 308933, 308934} },
{"Ghrino Gloves", {308936, 36142, 308935, 308937, 308938, 308939, 308940, 308941, 308942, 308943, 308944, 308945, 308946, 308947} },
{"Ghrino Cover", {308949, 36143, 308948, 308950, 308951, 308952, 308953, 308954, 308955, 308956, 308957, 308958, 308959, 308960} },
{"Ghrino Britches", {308962, 36144, 308961, 308963, 308964, 308965, 308966, 308967, 308968, 308969, 308970, 308971, 308972, 308973} },
{"Ghrino Pauldrons", {308975, 36145, 308974, 308976, 308977, 308978, 308979, 308980, 308981, 308982, 308983, 308984, 308985, 308986} },
{"Ghrino Bracers", {308988, 36146, 308987, 308989, 308990, 308991, 308992, 308993, 308994, 308995, 308996, 308997, 308998, 308999} },
{"Pygmy Belt", {309001, 36147, 309000, 309002, 309003, 309004, 309005, 309006, 309007, 309008, 309009, 309010, 309011, 309012} },
{"Pygmy Boots", {309014, 36148, 309013, 309015, 309016, 309017, 309018, 309019, 309020, 309021, 309022, 309023, 309024, 309025} },
{"Pygmy Tunic", {309027, 36149, 309026, 309028, 309029, 309030, 309031, 309032, 309033, 309034, 309035, 309036, 309037, 309038} },
{"Pygmy Gloves", {309040, 36150, 309039, 309041, 309042, 309043, 309044, 309045, 309046, 309047, 309048, 309049, 309050, 309051} },
{"Pygmy Helmet", {309053, 36151, 309052, 309054, 309055, 309056, 309057, 309058, 309059, 309060, 309061, 309062, 309063, 309064} },
{"Pygmy Pants", {309066, 36152, 309065, 309067, 309068, 309069, 309070, 309071, 309072, 309073, 309074, 309075, 309076, 309077} },
{"Pygmy Shoulders", {309079, 36153, 309078, 309080, 309081, 309082, 309083, 309084, 309085, 309086, 309087, 309088, 309089, 309090} },
{"Pygmy Bindings", {309092, 36154, 309091, 309093, 309094, 309095, 309096, 309097, 309098, 309099, 309100, 309101, 309102, 309103} },
{"Wendigo Girdle", {309105, 36155, 309104, 309106, 309107, 309108, 309109, 309110, 309111, 309112, 309113, 309114, 309115, 309116} },
{"Wendigo Boots", {309118, 36156, 309117, 309119, 309120, 309121, 309122, 309123, 309124, 309125, 309126, 309127, 309128, 309129} },
{"Wendigo Chestpiece", {309131, 36157, 309130, 309132, 309133, 309134, 309135, 309136, 309137, 309138, 309139, 309140, 309141, 309142} },
{"Wendigo Gloves", {309144, 36158, 309143, 309145, 309146, 309147, 309148, 309149, 309150, 309151, 309152, 309153, 309154, 309155} },
{"Wendigo Hood", {309157, 36159, 309156, 309158, 309159, 309160, 309161, 309162, 309163, 309164, 309165, 309166, 309167, 309168} },
{"Wendigo Legguards", {309170, 36160, 309169, 309171, 309172, 309173, 309174, 309175, 309176, 309177, 309178, 309179, 309180, 309181} },
{"Wendigo Pauldrons", {309183, 36161, 309182, 309184, 309185, 309186, 309187, 309188, 309189, 309190, 309191, 309192, 309193, 309194} },
{"Wendigo Bands", {309196, 36162, 309195, 309197, 309198, 309199, 309200, 309201, 309202, 309203, 309204, 309205, 309206, 309207} },
{"Webspinner Cord", {309209, 36163, 309208, 309210, 309211, 309212, 309213, 309214, 309215, 309216, 309217, 309218, 309219, 309220} },
{"Webspinner Boots", {309222, 36164, 309221, 309223, 309224, 309225, 309226, 309227, 309228, 309229, 309230, 309231, 309232, 309233} },
{"Webspinner Vest", {309235, 36165, 309234, 309236, 309237, 309238, 309239, 309240, 309241, 309242, 309243, 309244, 309245, 309246} },
{"Webspinner Gloves", {309248, 36166, 309247, 309249, 309250, 309251, 309252, 309253, 309254, 309255, 309256, 309257, 309258, 309259} },
{"Webspinner Hood", {309261, 36167, 309260, 309262, 309263, 309264, 309265, 309266, 309267, 309268, 309269, 309270, 309271, 309272} },
{"Webspinner Leggings", {309274, 36168, 309273, 309275, 309276, 309277, 309278, 309279, 309280, 309281, 309282, 309283, 309284, 309285} },
{"Webspinner Shoulderguards", {309287, 36169, 309286, 309288, 309289, 309290, 309291, 309292, 309293, 309294, 309295, 309296, 309297, 309298} },
{"Webspinner Bindings", {309300, 36170, 309299, 309301, 309302, 309303, 309304, 309305, 309306, 309307, 309308, 309309, 309310, 309311} },
{"Geist Belt", {309313, 36171, 309312, 309314, 309315, 309316, 309317, 309318, 309319, 309320, 309321, 309322, 309323, 309324} },
{"Geist Boots", {309326, 36172, 309325, 309327, 309328, 309329, 309330, 309331, 309332, 309333, 309334, 309335, 309336, 309337} },
{"Geist Tunic", {309339, 36173, 309338, 309340, 309341, 309342, 309343, 309344, 309345, 309346, 309347, 309348, 309349, 309350} },
{"Geist Gloves", {309352, 36174, 309351, 309353, 309354, 309355, 309356, 309357, 309358, 309359, 309360, 309361, 309362, 309363} },
{"Geist Hood", {309365, 36175, 309364, 309366, 309367, 309368, 309369, 309370, 309371, 309372, 309373, 309374, 309375, 309376} },
{"Geist Legguards", {309378, 36176, 309377, 309379, 309380, 309381, 309382, 309383, 309384, 309385, 309386, 309387, 309388, 309389} },
{"Geist Shoulders", {309391, 36177, 309390, 309392, 309393, 309394, 309395, 309396, 309397, 309398, 309399, 309400, 309401, 309403} },
{"Geist Wristguards", {309405, 36178, 309404, 309406, 309407, 309408, 309409, 309410, 309411, 309412, 309413, 309414, 309415, 309416} },
{"Garmaul Waistband", {309418, 36179, 309417, 309419, 309420, 309421, 309422, 309423, 309424, 309425, 309426, 309427, 309428, 309429} },
{"Garmaul Footwraps", {309431, 36180, 309430, 309432, 309433, 309434, 309435, 309436, 309437, 309438, 309439, 309440, 309441, 309442} },
{"Garmaul Chestpiece", {309444, 36181, 309443, 309445, 309446, 309447, 309448, 309449, 309450, 309451, 309452, 309453, 309454, 309455} },
{"Garmaul Fists", {309457, 36182, 309456, 309458, 309459, 309460, 309461, 309462, 309463, 309464, 309465, 309466, 309467, 309468} },
{"Garmaul Helmet", {309470, 36183, 309469, 309471, 309472, 309473, 309474, 309475, 309476, 309477, 309478, 309479, 309480, 309481} },
{"Garmaul Legguards", {309483, 36184, 309482, 309484, 309485, 309486, 309487, 309488, 309489, 309490, 309491, 309492, 309493, 309494} },
{"Garmaul Shoulderguards", {309496, 36185, 309495, 309497, 309498, 309499, 309500, 309501, 309502, 309503, 309504, 309505, 309506, 309507} },
{"Garmaul Bracers", {309509, 36186, 309508, 309510, 309511, 309512, 309513, 309514, 309515, 309516, 309517, 309518, 309519, 309520} },
{"Njord Belt", {309522, 36187, 309521, 309523, 309524, 309525, 309526, 309527, 309528, 309529, 309530, 309531, 309532, 309533} },
{"Njord Boots", {309535, 36188, 309534, 309536, 309537, 309538, 309539, 309540, 309541, 309542, 309543, 309544, 309545, 309546} },
{"Njord Chain Vest", {309548, 36189, 309547, 309549, 309550, 309551, 309552, 309553, 309554, 309555, 309556, 309557, 309558, 309559} },
{"Njord Gauntlets", {309561, 36190, 309560, 309562, 309563, 309564, 309565, 309566, 309567, 309568, 309569, 309570, 309571, 309572} },
{"Njord Helm", {309574, 36191, 309573, 309575, 309576, 309577, 309578, 309579, 309580, 309581, 309582, 309583, 309584, 309585} },
{"Njord Leggings", {309587, 36192, 309586, 309588, 309589, 309590, 309591, 309592, 309593, 309594, 309595, 309596, 309597, 309598} },
{"Njord Shoulderguards", {309600, 36193, 309599, 309601, 309602, 309603, 309604, 309605, 309606, 309607, 309608, 309609, 309610, 309611} },
{"Njord Bracers", {309613, 36194, 309612, 309614, 309615, 309616, 309617, 309618, 309619, 309620, 309621, 309622, 309623, 309624} },
{"Skom Stitched-Belt", {309626, 36195, 309625, 309627, 309628, 309629, 309630, 309631, 309632, 309633, 309634, 309635, 309636, 309637} },
{"Skom Greaves", {309639, 36196, 309638, 309640, 309641, 309642, 309643, 309644, 309645, 309646, 309647, 309648, 309649, 309650} },
{"Skom Chain Vest", {309652, 36197, 309651, 309653, 309654, 309655, 309656, 309657, 309658, 309659, 309660, 309661, 309662, 309663} },
{"Skom Gloves", {309665, 36198, 309664, 309666, 309667, 309668, 309669, 309670, 309671, 309672, 309673, 309674, 309675, 309676} },
{"Skom Helm", {309678, 36199, 309677, 309679, 309680, 309681, 309682, 309683, 309684, 309685, 309686, 309687, 309688, 309689} },
{"Skom Leggings", {309691, 36200, 309690, 309692, 309693, 309694, 309695, 309696, 309697, 309698, 309699, 309700, 309701, 309702} },
{"Skom Spaulders", {309704, 36201, 309703, 309705, 309706, 309707, 309708, 309709, 309710, 309711, 309712, 309713, 309714, 309715} },
{"Skom Bracers", {309717, 36202, 309716, 309718, 309719, 309720, 309721, 309722, 309723, 309724, 309725, 309726, 309727, 309728} },
{"Nifflevar Girdle", {309730, 36203, 309729, 309731, 309732, 309733, 309734, 309735, 309736, 309737, 309738, 309739, 309740, 309741} },
{"Nifflevar Boots", {309743, 36204, 309742, 309744, 309745, 309746, 309747, 309748, 309749, 309750, 309751, 309752, 309753, 309754} },
{"Nifflevar Chestpiece", {309756, 36205, 309755, 309757, 309758, 309759, 309760, 309761, 309762, 309763, 309764, 309765, 309766, 309767} },
{"Nifflevar Gloves", {309769, 36206, 309768, 309770, 309771, 309772, 309773, 309774, 309775, 309776, 309777, 309778, 309779, 309780} },
{"Nifflevar Helmet", {309782, 36207, 309781, 309783, 309784, 309785, 309786, 309787, 309788, 309789, 309790, 309791, 309792, 309793} },
{"Nifflevar Legguards", {309795, 36208, 309794, 309796, 309797, 309798, 309799, 309800, 309801, 309802, 309803, 309804, 309805, 309806} },
{"Nifflevar Shoulderguards", {309808, 36209, 309807, 309809, 309810, 309811, 309812, 309813, 309814, 309815, 309816, 309817, 309818, 309819} },
{"Nifflevar Bindings", {309821, 36210, 309820, 309822, 309823, 309824, 309825, 309826, 309827, 309828, 309829, 309830, 309831, 309832} },
{"Orca Belt", {309834, 36211, 309833, 309835, 309836, 309837, 309838, 309839, 309840, 309841, 309842, 309843, 309844, 309845} },
{"Orca Footwraps", {309847, 36212, 309846, 309848, 309849, 309850, 309851, 309852, 309853, 309854, 309855, 309856, 309857, 309858} },
{"Orca Armor", {309860, 36213, 309859, 309861, 309862, 309863, 309864, 309865, 309866, 309867, 309868, 309869, 309870, 309871} },
{"Orca Fists", {309873, 36214, 309872, 309874, 309875, 309876, 309877, 309878, 309879, 309880, 309881, 309882, 309883, 309884} },
{"Orca Helmet", {309886, 36215, 309885, 309887, 309888, 309889, 309890, 309891, 309892, 309893, 309894, 309895, 309896, 309897} },
{"Orca Legwraps", {309899, 36216, 309898, 309900, 309901, 309902, 309903, 309904, 309905, 309906, 309907, 309908, 309909, 309910} },
{"Orca Spaulders", {309912, 36217, 309911, 309913, 309914, 309915, 309916, 309917, 309918, 309919, 309920, 309921, 309922, 309923} },
{"Orca Bindings", {309925, 36218, 309924, 309926, 309927, 309928, 309929, 309930, 309931, 309932, 309933, 309934, 309935, 309936} },
{"Amberpine Girdle", {309938, 36219, 309937, 309939, 309940, 309941, 309942, 309943, 309944, 309945, 309946, 309947, 309948, 309949} },
{"Amberpine Greaves", {309951, 36220, 309950, 309952, 309953, 309954, 309955, 309956, 309957, 309958, 309959, 309960, 309961, 309962} },
{"Amberpine Chain Vest", {309964, 36221, 309963, 309965, 309966, 309967, 309968, 309969, 309970, 309971, 309972, 309973, 309974, 309975} },
{"Amberpine Gauntlets", {309977, 36222, 309976, 309978, 309979, 309980, 309981, 309982, 309983, 309984, 309985, 309986, 309987, 309988} },
{"Amberpine Helmet", {309990, 36223, 309989, 309991, 309992, 309993, 309994, 309995, 309996, 309997, 309998, 309999, 310000, 310001} },
{"Amberpine Legguards", {310003, 36224, 310002, 310004, 310005, 310006, 310007, 310008, 310009, 310010, 310011, 310012, 310013, 310014} },
{"Amberpine Spaulders", {310016, 36225, 310015, 310017, 310018, 310019, 310020, 310021, 310022, 310023, 310024, 310025, 310026, 310027} },
{"Amberpine Bracers", {310029, 36226, 310028, 310030, 310031, 310032, 310033, 310034, 310035, 310036, 310037, 310038, 310039, 310040} },
{"Trapper Belt", {310042, 36227, 310041, 310043, 310044, 310045, 310046, 310047, 310048, 310049, 310050, 310051, 310052, 310053} },
{"Trapper Footwraps", {310055, 36228, 310054, 310056, 310057, 310058, 310059, 310060, 310061, 310062, 310063, 310064, 310065, 310066} },
{"Trapper Chain Vest", {310068, 36229, 310067, 310069, 310070, 310071, 310072, 310073, 310074, 310075, 310076, 310077, 310078, 310079} },
{"Trapper Gloves", {310081, 36230, 310080, 310082, 310083, 310084, 310085, 310086, 310087, 310088, 310089, 310090, 310091, 310092} },
{"Trapper Helm", {310094, 36231, 310093, 310095, 310096, 310097, 310098, 310099, 310100, 310101, 310102, 310103, 310104, 310105} },
{"Trapper Leggings", {310107, 36232, 310106, 310108, 310109, 310110, 310111, 310112, 310113, 310114, 310115, 310116, 310117, 310118} },
{"Trapper Shoulderguards", {310120, 36233, 310119, 310121, 310122, 310123, 310124, 310125, 310126, 310127, 310128, 310129, 310130, 310131} },
{"Trapper Bracers", {310133, 36234, 310132, 310134, 310135, 310136, 310137, 310138, 310139, 310140, 310141, 310142, 310143, 310144} },
{"Shoveltusk Waistband", {310146, 36235, 310145, 310147, 310148, 310149, 310150, 310151, 310152, 310153, 310154, 310155, 310156, 310157} },
{"Shoveltusk Greaves", {310159, 36236, 310158, 310160, 310161, 310162, 310163, 310164, 310165, 310166, 310167, 310168, 310169, 310170} },
{"Shoveltusk Breastplate", {310172, 36237, 310171, 310173, 310174, 310175, 310176, 310177, 310178, 310179, 310180, 310181, 310182, 310183} },
{"Shoveltusk Gauntlets", {310185, 36238, 310184, 310186, 310187, 310188, 310189, 310190, 310191, 310192, 310193, 310194, 310195, 310196} },
{"Shoveltusk Helmet", {310198, 36239, 310197, 310199, 310200, 310201, 310202, 310203, 310204, 310205, 310206, 310207, 310208, 310209} },
{"Shoveltusk Legguards", {310211, 36240, 310210, 310212, 310213, 310214, 310215, 310216, 310217, 310218, 310219, 310220, 310221, 310222} },
{"Shoveltusk Mantle", {310224, 36241, 310223, 310225, 310226, 310227, 310228, 310229, 310230, 310231, 310232, 310233, 310234, 310235} },
{"Shoveltusk Bindings", {310237, 36242, 310236, 310238, 310239, 310240, 310241, 310242, 310243, 310244, 310245, 310246, 310247, 310248} },
{"Mammoth Girdle", {310250, 36243, 310249, 310251, 310252, 310253, 310254, 310255, 310256, 310257, 310258, 310259, 310260, 310261} },
{"Mammoth Boots", {310263, 36244, 310262, 310264, 310265, 310266, 310267, 310268, 310269, 310270, 310271, 310272, 310273, 310274} },
{"Mammoth Chestpiece", {310276, 36245, 310275, 310277, 310278, 310279, 310280, 310281, 310282, 310283, 310284, 310285, 310286, 310287} },
{"Mammoth Fists", {310289, 36246, 310288, 310290, 310291, 310292, 310293, 310294, 310295, 310296, 310297, 310298, 310299, 310300} },
{"Mammoth Helm", {310302, 36247, 310301, 310303, 310304, 310305, 310306, 310307, 310308, 310309, 310310, 310311, 310312, 310313} },
{"Mammoth Legwraps", {310315, 36248, 310314, 310316, 310317, 310318, 310319, 310320, 310321, 310322, 310323, 310324, 310325, 310326} },
{"Mammoth Spaulders", {310328, 36249, 310327, 310329, 310330, 310331, 310332, 310333, 310334, 310335, 310336, 310337, 310338, 310339} },
{"Mammoth Bindings", {310341, 36250, 310340, 310342, 310343, 310344, 310345, 310346, 310347, 310348, 310349, 310350, 310351, 310352} },
{"Wolvar Belt", {310354, 36251, 310353, 310355, 310356, 310357, 310358, 310359, 310360, 310361, 310362, 310363, 310364, 310365} },
{"Wolvar Greaves", {310367, 36252, 310366, 310368, 310369, 310370, 310371, 310372, 310373, 310374, 310375, 310376, 310377, 310378} },
{"Wolvar Armor", {310380, 36253, 310379, 310381, 310382, 310383, 310384, 310385, 310386, 310387, 310388, 310389, 310390, 310391} },
{"Wolvar Fists", {310393, 36254, 310392, 310394, 310395, 310396, 310397, 310398, 310399, 310400, 310401, 310402, 310403, 310404} },
{"Wolvar Helmet", {310406, 36255, 310405, 310407, 310408, 310409, 310410, 310411, 310412, 310413, 310414, 310415, 310416, 310417} },
{"Wolvar Legguards", {310419, 36256, 310418, 310420, 310421, 310422, 310423, 310424, 310425, 310426, 310427, 310428, 310429, 310430} },
{"Wolvar Shoulderguards", {310432, 36257, 310431, 310433, 310434, 310435, 310436, 310437, 310438, 310439, 310440, 310441, 310442, 310443} },
{"Wolvar Bindings", {310445, 36258, 310444, 310446, 310447, 310448, 310449, 310450, 310451, 310452, 310453, 310454, 310455, 310456} },
{"Cormorant Waistband", {310458, 36259, 310457, 310459, 310460, 310461, 310462, 310463, 310464, 310465, 310466, 310467, 310468, 310469} },
{"Cormorant Footwraps", {310471, 36260, 310470, 310472, 310473, 310474, 310475, 310476, 310477, 310478, 310479, 310483, 310485, 310497} },
{"Cormorant Chain Vest", {310499, 36261, 310498, 310500, 310501, 310502, 310503, 310504, 310505, 310506, 310507, 310508, 310509, 310510} },
{"Cormorant Gloves", {310512, 36262, 310511, 310513, 310514, 310515, 310516, 310517, 310518, 310519, 310520, 310521, 310522, 310523} },
{"Cormorant Helm", {310525, 36263, 310524, 310526, 310527, 310528, 310529, 310530, 310531, 310532, 310533, 310534, 310535, 310536} },
{"Cormorant Leggings", {310538, 36264, 310537, 310539, 310540, 310541, 310542, 310543, 310544, 310545, 310546, 310547, 310548, 310549} },
{"Cormorant Mantle", {310551, 36265, 310550, 310552, 310553, 310554, 310555, 310556, 310557, 310558, 310559, 310560, 310561, 310562} },
{"Cormorant Bracelets", {310564, 36266, 310563, 310565, 310566, 310567, 310568, 310569, 310570, 310571, 310572, 310573, 310574, 310575} },
{"Ulduar Girdle", {310577, 36267, 310576, 310578, 310579, 310580, 310581, 310582, 310583, 310584, 310585, 310586, 310587, 310588} },
{"Ulduar Greaves", {310590, 36268, 310589, 310591, 310592, 310593, 310594, 310595, 310596, 310597, 310598, 310599, 310600, 310601} },
{"Ulduar Breastplate", {310603, 36269, 310602, 310604, 310605, 310606, 310607, 310608, 310609, 310610, 310611, 310612, 310613, 310614} },
{"Ulduar Gauntlets", {310616, 36270, 310615, 310617, 310618, 310619, 310620, 310621, 310622, 310623, 310624, 310625, 310626, 310627} },
{"Ulduar Helm", {310629, 36271, 310628, 310630, 310631, 310632, 310633, 310634, 310635, 310636, 310637, 310638, 310639, 310640} },
{"Ulduar Legguards", {310642, 36272, 310641, 310643, 310644, 310645, 310646, 310647, 310648, 310649, 310650, 310651, 310652, 310653} },
{"Ulduar Shoulderguards", {310655, 36273, 310654, 310656, 310657, 310658, 310659, 310660, 310661, 310662, 310663, 310664, 310665, 310666} },
{"Ulduar Bracers", {310668, 36274, 310667, 310669, 310670, 310671, 310672, 310673, 310674, 310675, 310676, 310677, 310678, 310679} },
{"Spiderlord Belt", {310681, 36275, 310680, 310682, 310683, 310684, 310685, 310686, 310687, 310688, 310689, 310690, 310691, 310692} },
{"Spiderlord Boots", {310694, 36276, 310693, 310695, 310696, 310697, 310698, 310699, 310700, 310701, 310702, 310703, 310704, 310705} },
{"Spiderlord Chestpiece", {310707, 36277, 310706, 310708, 310709, 310710, 310711, 310712, 310713, 310714, 310715, 310716, 310717, 310718} },
{"Spiderlord Gauntlets", {310720, 36278, 310719, 310721, 310722, 310723, 310724, 310725, 310726, 310727, 310728, 310729, 310730, 310731} },
{"Spiderlord Helm", {310733, 36279, 310732, 310734, 310735, 310736, 310737, 310738, 310739, 310740, 310741, 310742, 310743, 310744} },
{"Spiderlord Legguards", {310746, 36280, 310745, 310747, 310748, 310749, 310750, 310751, 310752, 310753, 310754, 310755, 310756, 310757} },
{"Spiderlord Spaulders", {310759, 36281, 310758, 310760, 310761, 310762, 310763, 310764, 310765, 310766, 310767, 310768, 310769, 310770} },
{"Spiderlord Bracers", {310772, 36282, 310771, 310773, 310774, 310775, 310776, 310777, 310778, 310779, 310780, 310781, 310782, 310783} },
{"Spectral Waistband", {310785, 36283, 310784, 310786, 310787, 310788, 310789, 310790, 310791, 310792, 310793, 310794, 310795, 310796} },
{"Spectral Greaves", {310798, 36284, 310797, 310799, 310800, 310801, 310802, 310803, 310804, 310805, 310806, 310807, 310808, 310809} },
{"Spectral Armor", {310811, 36285, 310810, 310812, 310813, 310814, 310815, 310816, 310817, 310818, 310819, 310820, 310821, 310822} },
{"Spectral Gauntlets", {310824, 36286, 310823, 310825, 310826, 310827, 310828, 310829, 310830, 310831, 310832, 310833, 310834, 310835} },
{"Spectral Helmet", {310837, 36287, 310836, 310838, 310839, 310840, 310841, 310842, 310843, 310844, 310845, 310846, 310847, 310848} },
{"Spectral Legwraps", {310850, 36288, 310849, 310851, 310852, 310853, 310854, 310855, 310856, 310857, 310858, 310859, 310860, 310861} },
{"Spectral Mantle", {310863, 36289, 310862, 310864, 310865, 310866, 310867, 310868, 310869, 310870, 310871, 310872, 310873, 310874} },
{"Spectral Bracelets", {310876, 36290, 310875, 310877, 310878, 310879, 310880, 310881, 310882, 310883, 310884, 310885, 310886, 310887} },
{"Westguard Belt", {310889, 36291, 310888, 310890, 310891, 310892, 310893, 310894, 310895, 310896, 310897, 310898, 310899, 310908} },
{"Westguard Greaves", {310915, 36292, 310909, 310916, 310917, 310918, 310919, 310920, 310921, 310922, 310923, 310924, 310925, 310926} },
{"Westguard Armor", {310928, 36293, 310927, 310929, 310930, 310931, 310932, 310933, 310934, 310935, 310936, 310937, 310938, 310939} },
{"Westguard Gloves", {310941, 36294, 310940, 310942, 310943, 310944, 310945, 310946, 310947, 310948, 310949, 310950, 310951, 310952} },
{"Westguard Helm", {310954, 36295, 310953, 310955, 310956, 310957, 310958, 310959, 310960, 310961, 310962, 310963, 310964, 310965} },
{"Westguard Legplates", {310967, 36296, 310966, 310968, 310969, 310970, 310971, 310972, 310973, 310974, 310975, 310976, 310977, 310978} },
{"Westguard Epaulets", {310980, 36297, 310979, 310981, 310982, 310983, 310984, 310985, 310986, 310987, 310988, 310989, 310990, 310991} },
{"Westguard Bracers", {310993, 36298, 310992, 310994, 310995, 310996, 310997, 310998, 310999, 311000, 311001, 311002, 311003, 311004} },
{"Coldrock Girdle", {311006, 36299, 311005, 311007, 311008, 311009, 311010, 311011, 311012, 311013, 311014, 311015, 311016, 311017} },
{"Coldrock Sabatons", {311019, 36300, 311018, 311020, 311021, 311022, 311023, 311024, 311025, 311026, 311027, 311028, 311029, 311030} },
{"Coldrock Breastplate", {311032, 36301, 311031, 311033, 311034, 311035, 311036, 311037, 311038, 311039, 311040, 311041, 311042, 311043} },
{"Coldrock Gauntlets", {311045, 36302, 311044, 311046, 311047, 311048, 311049, 311050, 311051, 311052, 311053, 311054, 311055, 311056} },
{"Coldrock Helmet", {311058, 36303, 311057, 311059, 311060, 311061, 311062, 311063, 311064, 311065, 311066, 311067, 311068, 311069} },
{"Coldrock Legplates", {311071, 36304, 311070, 311072, 311073, 311074, 311075, 311076, 311077, 311078, 311079, 311080, 311081, 311082} },
{"Coldrock Pauldrons", {311084, 36305, 311083, 311085, 311086, 311087, 311088, 311089, 311090, 311091, 311092, 311093, 311094, 311095} },
{"Coldrock Bracers", {311097, 36306, 311096, 311098, 311099, 311100, 311101, 311102, 311103, 311104, 311105, 311106, 311107, 311108} },
{"Baleheim Belt", {311110, 36307, 311109, 311111, 311112, 311113, 311114, 311115, 311116, 311117, 311118, 311119, 311120, 311121} },
{"Baleheim Greaves", {311123, 36308, 311122, 311124, 311125, 311126, 311127, 311128, 311129, 311130, 311131, 311132, 311133, 311134} },
{"Baleheim Armor", {311136, 36309, 311135, 311137, 311138, 311139, 311140, 311141, 311142, 311143, 311144, 311145, 311146, 311147} },
{"Baleheim Gloves", {311149, 36310, 311148, 311150, 311151, 311152, 311153, 311154, 311155, 311156, 311157, 311158, 311159, 311160} },
{"Baleheim Helmet", {311162, 36311, 311161, 311163, 311164, 311165, 311166, 311167, 311168, 311169, 311170, 311171, 311172, 311173} },
{"Baleheim Legguards", {311175, 36312, 311174, 311176, 311177, 311178, 311179, 311180, 311181, 311182, 311183, 311184, 311185, 311186} },
{"Baleheim Epaulets", {311188, 36313, 311187, 311189, 311190, 311191, 311192, 311193, 311194, 311195, 311196, 311197, 311198, 311199} },
{"Baleheim Vambraces", {311201, 36314, 311200, 311202, 311203, 311204, 311205, 311206, 311207, 311208, 311209, 311210, 311211, 311212} },
{"Wyrmskull Girdle", {311214, 36315, 311213, 311215, 311216, 311217, 311218, 311219, 311220, 311221, 311222, 311223, 311224, 311225} },
{"Wyrmskull Sabatons", {311227, 36316, 311226, 311228, 311229, 311230, 311231, 311232, 311233, 311234, 311235, 311236, 311237, 311238} },
{"Wyrmskull Breastplate", {311240, 36317, 311239, 311241, 311242, 311243, 311244, 311245, 311246, 311247, 311248, 311249, 311250, 311251} },
{"Wyrmskull Gauntlets", {311253, 36318, 311252, 311254, 311255, 311256, 311257, 311258, 311259, 311260, 311261, 311262, 311263, 311264} },
{"Wyrmskull Helm", {311266, 36319, 311265, 311267, 311268, 311269, 311270, 311271, 311272, 311273, 311274, 311275, 311276, 311277} },
{"Wyrmskull Legplates", {311279, 36320, 311278, 311280, 311281, 311282, 311283, 311284, 311285, 311286, 311287, 311288, 311289, 311290} },
{"Wyrmskull Epaulets", {311292, 36321, 311291, 311293, 311294, 311295, 311296, 311297, 311298, 311299, 311300, 311301, 311303, 311304} },
{"Wyrmskull Bracers", {311306, 36322, 311305, 311307, 311308, 311309, 311310, 311311, 311312, 311313, 311314, 311315, 311316, 311317} },
{"Halgrind Belt", {311319, 36323, 311318, 311320, 311321, 311322, 311323, 311324, 311325, 311326, 311327, 311328, 311329, 311330} },
{"Halgrind Greaves", {311332, 36324, 311331, 311333, 311334, 311335, 311336, 311337, 311338, 311339, 311340, 311341, 311342, 311343} },
{"Halgrind Carapace", {311345, 36325, 311344, 311346, 311347, 311348, 311349, 311350, 311351, 311352, 311353, 311354, 311355, 311356} },
{"Halgrind Gloves", {311358, 36326, 311357, 311359, 311360, 311361, 311362, 311363, 311364, 311365, 311366, 311367, 311368, 311369} },
{"Halgrind Helmet", {311371, 36327, 311370, 311372, 311373, 311374, 311375, 311376, 311377, 311378, 311379, 311380, 311381, 311382} },
{"Halgrind Legplates", {311384, 36328, 311383, 311385, 311386, 311387, 311388, 311389, 311390, 311391, 311392, 311393, 311394, 311395} },
{"Halgrind Epaulets", {311397, 36329, 311396, 311398, 311399, 311400, 311401, 311402, 311403, 311404, 311405, 311406, 311407, 311408} },
{"Halgrind Bracers", {311410, 36330, 311409, 311411, 311412, 311413, 311414, 311415, 311416, 311417, 311418, 311419, 311420, 311421} },
{"Grizzlemaw Belt", {311423, 36331, 311422, 311424, 311425, 311426, 311427, 311428, 311429, 311430, 311431, 311432, 311433, 311434} },
{"Grizzlemaw Sabatons", {311436, 36332, 311435, 311437, 311438, 311439, 311440, 311441, 311442, 311443, 311444, 311445, 311446, 311447} },
{"Grizzlemaw Armor", {311449, 36333, 311448, 311450, 311451, 311452, 311453, 311454, 311455, 311456, 311457, 311458, 311459, 311460} },
{"Grizzlemaw Gauntlets", {311462, 36334, 311461, 311463, 311464, 311465, 311466, 311467, 311468, 311469, 311470, 311471, 311472, 311473} },
{"Grizzlemaw Helm", {311475, 36335, 311474, 311476, 311477, 311478, 311479, 311480, 311481, 311482, 311483, 311484, 311485, 311486} },
{"Grizzlemaw Legplates", {311488, 36336, 311487, 311489, 311490, 311491, 311492, 311493, 311494, 311495, 311496, 311497, 311498, 311499} },
{"Grizzlemaw Epaulets", {311501, 36337, 311500, 311502, 311503, 311504, 311505, 311506, 311507, 311508, 311509, 311510, 311511, 311512} },
{"Grizzlemaw Vambraces", {311514, 36338, 311513, 311515, 311516, 311517, 311518, 311519, 311520, 311521, 311522, 311523, 311524, 311525} },
{"Bloodmar Girdle", {311527, 36339, 311526, 311528, 311529, 311530, 311531, 311532, 311533, 311534, 311535, 311536, 311537, 311538} },
{"Bloodmar Sabatons", {311540, 36340, 311539, 311541, 311542, 311543, 311544, 311545, 311546, 311547, 311548, 311549, 311550, 311551} },
{"Bloodmar Breastplate", {311553, 36341, 311552, 311554, 311555, 311556, 311557, 311558, 311559, 311560, 311561, 311562, 311563, 311564} },
{"Bloodmar Gauntlets", {311566, 36342, 311565, 311567, 311568, 311569, 311570, 311571, 311572, 311573, 311574, 311575, 311576, 311577} },
{"Bloodmar Helm", {311579, 36343, 311578, 311580, 311581, 311582, 311583, 311584, 311585, 311586, 311587, 311588, 311589, 311590} },
{"Bloodmar Legplates", {311592, 36344, 311591, 311593, 311594, 311595, 311596, 311597, 311598, 311599, 311600, 311601, 311602, 311603} },
{"Bloodmar Pauldrons", {311605, 36345, 311604, 311606, 311607, 311608, 311609, 311610, 311611, 311612, 311613, 311614, 311615, 311616} },
{"Bloodmar Vambraces", {311618, 36346, 311617, 311619, 311620, 311621, 311622, 311623, 311624, 311625, 311626, 311627, 311628, 311629} },
{"Jormungar Girdle", {311631, 36347, 311630, 311632, 311633, 311634, 311635, 311636, 311637, 311638, 311639, 311640, 311641, 311642} },
{"Jormungar Sabatons", {311644, 36348, 311643, 311645, 311646, 311647, 311648, 311649, 311650, 311651, 311652, 311653, 311654, 311655} },
{"Jormungar Breastplate", {311657, 36349, 311656, 311658, 311659, 311660, 311661, 311662, 311663, 311664, 311665, 311666, 311667, 311668} },
{"Jormungar Gauntlets", {311670, 36350, 311669, 311671, 311672, 311673, 311674, 311675, 311676, 311677, 311678, 311679, 311680, 311681} },
{"Jormungar Helmet", {311683, 36351, 311682, 311684, 311685, 311686, 311687, 311688, 311689, 311690, 311691, 311692, 311693, 311694} },
{"Jormungar Legplates", {311696, 36352, 311695, 311697, 311698, 311699, 311700, 311701, 311702, 311703, 311704, 311705, 311706, 311707} },
{"Jormungar Pauldrons", {311709, 36353, 311708, 311710, 311711, 311712, 311713, 311714, 311715, 311716, 311717, 311718, 311719, 311720} },
{"Jormungar Bracers", {311722, 36354, 311721, 311723, 311724, 311725, 311726, 311727, 311728, 311729, 311730, 311731, 311732, 311733} },
{"Frostpaw Belt", {311735, 36355, 311734, 311736, 311737, 311738, 311739, 311740, 311741, 311742, 311743, 311744, 311745, 311746} },
{"Frostpaw Greaves", {311748, 36356, 311747, 311749, 311750, 311751, 311752, 311753, 311754, 311755, 311756, 311757, 311758, 311759} },
{"Frostpaw Armor", {311761, 36357, 311760, 311762, 311763, 311764, 311765, 311766, 311767, 311768, 311769, 311770, 311771, 311772} },
{"Frostpaw Gauntlets", {311774, 36358, 311773, 311775, 311776, 311777, 311778, 311779, 311780, 311781, 311782, 311783, 311784, 311785} },
{"Frostpaw Helmet", {311787, 36359, 311786, 311788, 311789, 311790, 311791, 311792, 311793, 311794, 311795, 311796, 311797, 311798} },
{"Frostpaw Legguards", {311800, 36360, 311799, 311801, 311802, 311803, 311804, 311805, 311806, 311807, 311808, 311809, 311810, 311811} },
{"Frostpaw Epaulets", {311813, 36361, 311812, 311814, 311815, 311816, 311817, 311818, 311819, 311820, 311821, 311822, 311823, 311824} },
{"Frostpaw Vambraces", {311826, 36362, 311825, 311827, 311828, 311829, 311830, 311831, 311832, 311833, 311834, 311835, 311836, 311837} },
{"Magnataur Girdle", {311839, 36363, 311838, 311840, 311841, 311842, 311843, 311844, 311845, 311846, 311847, 311848, 311849, 311850} },
{"Magnataur Sabatons", {311852, 36364, 311851, 311853, 311854, 311855, 311856, 311857, 311858, 311859, 311860, 311861, 311862, 311863} },
{"Magnataur Breastplate", {311865, 36365, 311864, 311866, 311867, 311868, 311869, 311870, 311871, 311872, 311873, 311874, 311875, 311876} },
{"Magnataur Gauntlets", {311878, 36366, 311877, 311879, 311880, 311881, 311882, 311883, 311884, 311885, 311886, 311887, 311888, 311889} },
{"Magnataur Helm", {311891, 36367, 311890, 311892, 311893, 311894, 311895, 311896, 311897, 311898, 311899, 311900, 311901, 311902} },
{"Magnataur Legplates", {311904, 36368, 311903, 311905, 311906, 311907, 311908, 311909, 311910, 311911, 311912, 311913, 311914, 311915} },
{"Magnataur Pauldrons", {311917, 36369, 311916, 311918, 311919, 311924, 311928, 311930, 311931, 311932, 311933, 311934, 311935, 311936} },
{"Magnataur Bracers", {311938, 36370, 311937, 311939, 311940, 311941, 311942, 311943, 311944, 311945, 311946, 311947, 311948, 311949} },
{"Kraken Girdle", {311951, 36371, 311950, 311952, 311953, 311954, 311955, 311956, 311957, 311958, 311959, 311960, 311961, 311962} },
{"Kraken Greaves", {311964, 36372, 311963, 311965, 311966, 311967, 311968, 311969, 311970, 311971, 311972, 311973, 311974, 311975} },
{"Kraken Breastplate", {311977, 36373, 311976, 311978, 311979, 311980, 311981, 311982, 311983, 311984, 311985, 311986, 311987, 311988} },
{"Kraken Gauntlets", {311990, 36374, 311989, 311991, 311992, 311993, 311994, 311995, 311996, 311997, 311998, 311999, 312000, 312001} },
{"Kraken Helm", {312003, 36375, 312002, 312004, 312005, 312006, 312007, 312008, 312009, 312010, 312011, 312012, 312013, 312014} },
{"Kraken Legplates", {312016, 36376, 312015, 312017, 312018, 312019, 312020, 312021, 312022, 312023, 312024, 312025, 312026, 312027} },
{"Kraken Epaulets", {312029, 36377, 312028, 312030, 312031, 312032, 312033, 312034, 312035, 312036, 312037, 312038, 312039, 312040} },
{"Kraken Vambraces", {312042, 36378, 312041, 312043, 312044, 312045, 312046, 312047, 312048, 312049, 312050, 312051, 312052, 312053} },
{"Golem Girdle", {312055, 36379, 312054, 312056, 312057, 312058, 312059, 312060, 312061, 312062, 312063, 312064, 312065, 312066} },
{"Golem Sabatons", {312068, 36380, 312067, 312069, 312070, 312071, 312072, 312073, 312074, 312075, 312076, 312077, 312078, 312079} },
{"Golem Breastplate", {312081, 36381, 312080, 312082, 312083, 312084, 312085, 312086, 312087, 312088, 312089, 312090, 312091, 312092} },
{"Golem Gauntlets", {312094, 36382, 312093, 312095, 312096, 312097, 312098, 312099, 312100, 312101, 312102, 312103, 312104, 312105} },
{"Golem Helmet", {312107, 36383, 312106, 312108, 312109, 312110, 312111, 312112, 312113, 312114, 312115, 312116, 312117, 312118} },
{"Golem Legplates", {312120, 36384, 312119, 312121, 312122, 312123, 312124, 312125, 312126, 312127, 312128, 312129, 312130, 312131} },
{"Golem Pauldrons", {312133, 36385, 312132, 312134, 312135, 312136, 312137, 312138, 312139, 312140, 312141, 312142, 312143, 312144} },
{"Golem Vambraces", {312146, 36386, 312145, 312147, 312148, 312149, 312150, 312151, 312152, 312153, 312154, 312155, 312156, 312157} },
{"Revenant Belt", {312159, 36387, 312158, 312160, 312161, 312162, 312163, 312164, 312165, 312166, 312167, 312168, 312169, 312170} },
{"Revenant Greaves", {312172, 36388, 312171, 312173, 312174, 312175, 312176, 312177, 312178, 312179, 312180, 312181, 312182, 312183} },
{"Revenant Armor", {312185, 36389, 312184, 312186, 312187, 312188, 312189, 312190, 312191, 312192, 312193, 312194, 312195, 312196} },
{"Revenant Gauntlets", {312198, 36390, 312197, 312199, 312200, 312201, 312202, 312203, 312204, 312205, 312206, 312207, 312208, 312209} },
{"Revenant Helmet", {312211, 36391, 312210, 312212, 312213, 312214, 312215, 312216, 312217, 312218, 312219, 312220, 312221, 312222} },
{"Revenant Legguards", {312224, 36392, 312223, 312225, 312226, 312227, 312228, 312229, 312230, 312231, 312232, 312233, 312234, 312235} },
{"Revenant Epaulets", {312237, 36393, 312236, 312238, 312239, 312240, 312241, 312242, 312243, 312244, 312245, 312246, 312247, 312248} },
{"Revenant Bracers", {312250, 36394, 312249, 312251, 312252, 312253, 312254, 312255, 312256, 312257, 312258, 312259, 312260, 312261} },
{"Necropolis Girdle", {312263, 36395, 312262, 312264, 312265, 312266, 312267, 312268, 312269, 312270, 312271, 312272, 312273, 312274} },
{"Necropolis Sabatons", {312276, 36396, 312275, 312277, 312278, 312279, 312280, 312281, 312282, 312283, 312284, 312285, 312286, 312287} },
{"Necropolis Breastplate", {312289, 36397, 312288, 312290, 312291, 312292, 312293, 312294, 312295, 312296, 312297, 312298, 312299, 312300} },
{"Necropolis Gloves", {312302, 36398, 312301, 312303, 312304, 312305, 312306, 312307, 312308, 312309, 312310, 312311, 312312, 312313} },
{"Necropolis Helm", {312315, 36399, 312314, 312316, 312317, 312318, 312319, 312320, 312321, 312322, 312323, 312324, 312325, 312326} },
{"Necropolis Legplates", {312328, 36400, 312327, 312329, 312330, 312331, 312332, 312333, 312334, 312335, 312336, 312337, 312338, 312339} },
{"Necropolis Epaulets", {312341, 36401, 312340, 312342, 312343, 312344, 312345, 312346, 312347, 312348, 312349, 312350, 312351, 312352} },
{"Necropolis Vambraces", {312354, 36402, 312353, 312355, 312356, 312357, 312358, 312359, 312360, 312361, 312362, 312363, 312364, 312365} },
{"Riding Cloak", {312367, 36403, 312366, 312368, 312369, 312370, 312371, 312372, 312373, 312374, 312375, 312376, 312377, 312378} },
{"Suede Cloak", {312380, 36404, 312379, 312381, 312382, 312383, 312384, 312385, 312386, 312387, 312388, 312389, 312390, 312391} },
{"Double Cape", {312393, 36405, 312392, 312394, 312395, 312396, 312397, 312398, 312399, 312400, 312401, 312402, 312403, 312404} },
{"Wayfarer's Cloak", {312406, 36406, 312405, 312407, 312408, 312409, 312410, 312411, 312412, 312413, 312414, 312415, 312416, 312417} },
{"Lace-Trimmed Cloak", {312419, 36407, 312418, 312420, 312421, 312422, 312423, 312424, 312425, 312426, 312427, 312428, 312429, 312430} },
{"Reversible Wool Cape", {312432, 36408, 312431, 312433, 312434, 312435, 312436, 312437, 312438, 312439, 312440, 312441, 312442, 312443} },
{"Crushed Velvet Cloak", {312445, 36409, 312444, 312446, 312447, 312448, 312449, 312450, 312451, 312452, 312453, 312454, 312455, 312456} },
{"Caribou Skin Cloak", {312458, 36410, 312457, 312459, 312460, 312461, 312462, 312463, 312464, 312465, 312466, 312467, 312468, 312469} },
{"Brawler's Cape", {312471, 36411, 312470, 312472, 312473, 312474, 312475, 312476, 312477, 312478, 312479, 312480, 312481, 312482} },
{"Fleece Cloak", {312484, 36412, 312483, 312485, 312486, 312487, 312488, 312489, 312490, 312491, 312492, 312493, 312494, 312495} },
{"Dyed Taffeta Cape", {312497, 36413, 312496, 312498, 312499, 312500, 312501, 312502, 312503, 312504, 312505, 312506, 312507, 312508} },
{"Mammoth Fur Cloak", {312510, 36414, 312509, 312511, 312512, 312513, 312514, 312515, 312516, 312517, 312518, 312519, 312520, 312521} },
{"Vintage Satin Cloak", {312523, 36415, 312522, 312524, 312525, 312526, 312527, 312528, 312529, 312530, 312531, 312532, 312533, 312534} },
{"Regal Cloak", {312536, 36416, 312535, 312537, 312538, 312539, 312540, 312541, 312542, 312543, 312544, 312545, 312546, 312547} },
{"Oval Ring", {312549, 36417, 312548, 312550, 312551, 312552, 312553, 312554, 312555, 312556, 312557, 312558, 312559, 312560} },
{"Floral Loop", {312562, 36418, 312561, 312563, 312564, 312565, 312566, 312567, 312568, 312569, 312570, 312571, 312572, 312573} },
{"Glass Ring", {312575, 36419, 312574, 312576, 312577, 312578, 312579, 312580, 312581, 312582, 312583, 312584, 312585, 312586} },
{"Gemstone Ring", {312588, 36420, 312587, 312589, 312590, 312591, 312592, 312593, 312594, 312595, 312596, 312597, 312598, 312599} },
{"Devotional Band", {312601, 36421, 312600, 312602, 312603, 312604, 312605, 312606, 312607, 312608, 312609, 312610, 312611, 312612} },
{"Filigree Ring", {312614, 36422, 312613, 312615, 312616, 312617, 312618, 312619, 312620, 312621, 312622, 312623, 312624, 312625} },
{"Posy Ring", {312627, 36423, 312626, 312628, 312629, 312630, 312631, 312632, 312633, 312634, 312635, 312636, 312637, 312638} },
{"Cameo Ring", {312640, 36424, 312639, 312641, 312642, 312643, 312644, 312645, 312646, 312647, 312648, 312649, 312650, 312651} },
{"Gold Twisted Ring", {312653, 36425, 312652, 312654, 312655, 312656, 312657, 312658, 312659, 312660, 312661, 312662, 312663, 312664} },
{"Stirrup Ring", {312666, 36426, 312665, 312667, 312668, 312669, 312670, 312671, 312672, 312673, 312674, 312675, 312676, 312677} },
{"Engraved Ring", {312679, 36427, 312678, 312680, 312681, 312682, 312683, 312684, 312685, 312686, 312687, 312688, 312689, 312690} },
{"Bouquet Ring", {312692, 36428, 312691, 312693, 312694, 312695, 312696, 312697, 312698, 312699, 312700, 312701, 312702, 312703} },
{"Spur Ring", {312705, 36429, 312704, 312706, 312707, 312708, 312709, 312710, 312711, 312712, 312713, 312714, 312715, 312716} },
{"Puzzle Ring", {312718, 36430, 312717, 312719, 312720, 312721, 312722, 312723, 312724, 312725, 312726, 312727, 312728, 312729} },
{"Painted Wooden Beads", {312731, 36431, 312730, 312732, 312733, 312734, 312735, 312736, 312737, 312738, 312739, 312740, 312741, 312742} },
{"Silver Rope Chain", {312744, 36432, 312743, 312745, 312746, 312747, 312748, 312749, 312750, 312751, 312752, 312753, 312754, 312755} },
{"Snake Entwined Necklace", {312757, 36433, 312756, 312758, 312759, 312760, 312761, 312762, 312763, 312764, 312765, 312766, 312767, 312768} },
{"Gold Mesh Collar", {312770, 36434, 312769, 312771, 312772, 312773, 312774, 312775, 312776, 312777, 312778, 312779, 312780, 312781} },
{"Embroidered Pendant", {312783, 36435, 312782, 312784, 312785, 312786, 312787, 312788, 312789, 312790, 312791, 312792, 312793, 312794} },
{"Jasper Bead Necklace", {312796, 36436, 312795, 312797, 312798, 312799, 312800, 312801, 312802, 312803, 312804, 312805, 312806, 312807} },
{"Figaro Chain", {312809, 36437, 312808, 312810, 312811, 312812, 312813, 312814, 312815, 312816, 312817, 312818, 312819, 312820} },
{"Shark-Toothed Necklace", {312822, 36438, 312821, 312823, 312824, 312825, 312826, 312827, 312828, 312829, 312830, 312831, 312832, 312833} },
{"Serpentine Chain", {312835, 36439, 312834, 312836, 312837, 312838, 312839, 312840, 312841, 312842, 312843, 312844, 312845, 312846} },
{"Gold Clasped Chain", {312848, 36440, 312847, 312849, 312850, 312851, 312852, 312853, 312854, 312855, 312856, 312857, 312858, 312859} },
{"Pearl Woven Choker", {312861, 36441, 312860, 312862, 312863, 312864, 312865, 312866, 312867, 312868, 312869, 312870, 312871, 312872} },
{"Silken Cord Amulet", {312874, 36442, 312873, 312875, 312876, 312877, 312878, 312879, 312880, 312881, 312882, 312883, 312884, 312885} },
{"Platinum Medallion", {312887, 36443, 312886, 312888, 312889, 312890, 312891, 312892, 312893, 312894, 312895, 312896, 312897, 312898} },
{"Ice Encrusted Amulet", {312900, 36444, 312899, 312901, 312902, 312903, 312904, 312905, 312906, 312907, 312908, 312909, 312910, 312911} },
{"Riveted Shield", {312913, 36445, 312912, 312914, 312915, 312916, 312917, 312918, 312919, 312920, 312921, 312922, 312923, 312924} },
{"Forged-Iron Shield", {312926, 36446, 312925, 312927, 312928, 312929, 312930, 312931, 312932, 312933, 312934, 312935, 312936, 312937} },
{"Kaskala Buckler", {312939, 36447, 312938, 312940, 312941, 312942, 312943, 312944, 312945, 312946, 312947, 312948, 312949, 312950} },
{"Spiked Targe", {312952, 36448, 312951, 312953, 312954, 312955, 312956, 312957, 312958, 312959, 312960, 312961, 312962, 312963} },
{"Vrykul Shield", {312965, 36449, 312964, 312966, 312967, 312968, 312969, 312970, 312971, 312972, 312973, 312974, 312975, 312976} },
{"Strapped Heater Shield", {312978, 36450, 312977, 312979, 312980, 312981, 312982, 312983, 312984, 312985, 312986, 312987, 312988, 312989} },
{"Kamagua Shield", {312991, 36451, 312990, 312992, 312993, 312994, 312995, 312996, 312997, 312998, 312999, 313005, 313010, 313011} },
{"Spoke Shield", {313014, 36452, 313012, 313016, 313017, 313018, 313019, 313020, 313021, 313024, 313025, 313026, 313027, 313029} },
{"Embossed Brazen Shield", {313032, 36453, 313031, 313033, 313034, 313035, 313037, 313038, 313039, 313041, 313042, 313043, 313045, 313046} },
{"Domed Buckler", {313049, 36454, 313048, 313050, 313051, 313052, 313054, 313055, 313057, 313058, 313059, 313061, 313062, 313063} },
{"Plated Bulwark", {313065, 36455, 313064, 313068, 313069, 313071, 313074, 313076, 313078, 313079, 313080, 313081, 313082, 313084} },
{"Icy Kite Shield", {313087, 36456, 313086, 313088, 313089, 313090, 313092, 313093, 313094, 313095, 313097, 313098, 313099, 313100} },
{"Ivory Shield", {313103, 36457, 313102, 313104, 313105, 313106, 313108, 313109, 313110, 313112, 313114, 313115, 313117, 313119} },
{"Frozen Shield", {313124, 36458, 313121, 313127, 313128, 313129, 313131, 313132, 313134, 313136, 313137, 313138, 313139, 313140} },
{"Icy Orb", {313142, 36459, 313141, 313143, 313145, 313147, 313148, 313149, 313150, 313151, 313152, 313153, 313154, 313155} },
{"Northern Star", {313157, 36460, 313156, 313158, 313159, 313160, 313161, 313162, 313163, 313164, 313165, 313166, 313167, 313168} },
{"Demon-Skull Orb", {313170, 36461, 313169, 313171, 313172, 313173, 313174, 313175, 313176, 313177, 313178, 313179, 313180, 313181} },
{"Coldarra Crystal", {313183, 36462, 313182, 313184, 313185, 313186, 313187, 313188, 313189, 313190, 313191, 313192, 313193, 313194} },
{"Polished Orb", {313196, 36463, 313195, 313197, 313198, 313199, 313200, 313201, 313202, 313203, 313204, 313205, 313206, 313207} },
{"Darkened Scepter", {313209, 36464, 313208, 313210, 313211, 313212, 313213, 313214, 313215, 313216, 313217, 313218, 313219, 313220} },
{"Evergreen Branch", {313222, 36465, 313221, 313223, 313224, 313225, 313226, 313227, 313228, 313229, 313230, 313231, 313232, 313233} },
{"Facetted Orb", {313235, 36466, 313234, 313236, 313237, 313238, 313239, 313240, 313241, 313242, 313243, 313244, 313245, 313246} },
{"Reflecting Sphere", {313248, 36467, 313247, 313249, 313250, 313251, 313252, 313253, 313254, 313255, 313256, 313257, 313258, 313259} },
{"Glistening Star", {313261, 36468, 313260, 313262, 313263, 313264, 313265, 313266, 313267, 313268, 313269, 313270, 313271, 313272} },
{"Lidless Orb", {313274, 36469, 313273, 313275, 313276, 313277, 313278, 313279, 313280, 313281, 313282, 313283, 313284, 313285} },
{"Gilded Scepter", {313287, 36470, 313286, 313288, 313289, 313290, 313291, 313292, 313293, 313294, 313295, 313296, 313297, 313298} },
{"Ice Crystal", {313300, 36471, 313299, 313301, 313302, 313303, 313304, 313305, 313306, 313307, 313308, 313309, 313310, 313311} },
{"Carved Rod", {313313, 36472, 313312, 313314, 313315, 313316, 313317, 313318, 313319, 313320, 313321, 313322, 313323, 313324} },
{"Pioneer's Dagger", {313326, 36473, 313325, 313327, 313328, 313329, 313330, 313331, 313332, 313333, 313334, 313335, 313336, 313337} },
{"Engraved Dagger", {313339, 36474, 313338, 313340, 313341, 313342, 313343, 313344, 313345, 313346, 313347, 313348, 313349, 313350} },
{"Seal Shortblade", {313352, 36475, 313351, 313353, 313354, 313355, 313356, 313357, 313358, 313359, 313360, 313361, 313362, 313363} },
{"Whale Ripper", {313365, 36476, 313364, 313366, 313367, 313368, 313369, 313370, 313371, 313372, 313373, 313374, 313375, 313376} },
{"Twin-Edged Stiletto", {313378, 36477, 313377, 313379, 313380, 313381, 313382, 313383, 313384, 313385, 313386, 313387, 313388, 313389} },
{"Frosty Talon", {313391, 36478, 313390, 313392, 313393, 313394, 313395, 313396, 313397, 313398, 313399, 313400, 313401, 313402} },
{"Snobold Ripper", {313404, 36479, 313403, 313405, 313406, 313407, 313408, 313409, 313410, 313411, 313412, 313413, 313414, 313415} },
{"Ebony Dagger", {313417, 36480, 313416, 313418, 313419, 313420, 313421, 313422, 313423, 313424, 313425, 313426, 313427, 313428} },
{"Trapper Knife", {313430, 36481, 313429, 313431, 313432, 313433, 313434, 313435, 313436, 313437, 313438, 313439, 313440, 313441} },
{"Parrying Dagger", {313443, 36482, 313442, 313444, 313445, 313446, 313447, 313448, 313449, 313450, 313451, 313452, 313453, 313454} },
{"Mandible Edge", {313456, 36483, 313455, 313457, 313458, 313459, 313460, 313461, 313462, 313463, 313464, 313465, 313466, 313467} },
{"Etched Dagger", {313469, 36484, 313468, 313470, 313471, 313472, 313473, 313474, 313475, 313476, 313477, 313478, 313479, 313480} },
{"Sinuous Keris", {313482, 36485, 313481, 313483, 313484, 313485, 313486, 313487, 313488, 313489, 313490, 313491, 313492, 313493} },
{"Ornate Pugio", {313495, 36486, 313494, 313496, 313497, 313498, 313499, 313500, 313501, 313502, 313503, 313504, 313505, 313506} },
{"Stone-Headed Gavel", {313508, 36487, 313507, 313509, 313510, 313511, 313512, 313513, 313514, 313515, 313516, 313517, 313518, 313519} },
{"Conifer Club", {313521, 36488, 313520, 313522, 313523, 313524, 313525, 313526, 313527, 313528, 313529, 313530, 313531, 313532} },
{"Iron Flanged Scepter", {313534, 36489, 313533, 313535, 313536, 313537, 313538, 313539, 313540, 313541, 313542, 313543, 313544, 313545} },
{"Tuskarr Cudgel", {313547, 36490, 313546, 313548, 313549, 313550, 313551, 313552, 313553, 313554, 313555, 313556, 313557, 313558} },
{"Serrated Maul", {313560, 36491, 313559, 313561, 313562, 313563, 313564, 313565, 313566, 313567, 313568, 313569, 313570, 313571} },
{"Peaked Club", {313573, 36492, 313572, 313574, 313575, 313576, 313577, 313578, 313579, 313580, 313581, 313582, 313583, 313584} },
{"Furbolg Truncheon", {313586, 36493, 313585, 313587, 313588, 313589, 313590, 313591, 313592, 313593, 313594, 313595, 313596, 313597} },
{"Barbed Star", {313599, 36494, 313598, 313600, 313601, 313602, 313603, 313604, 313605, 313606, 313607, 313608, 313609, 313610} },
{"Ferrous Hammer", {313612, 36495, 313611, 313613, 313614, 313615, 313616, 313617, 313618, 313619, 313620, 313621, 313622, 313623} },
{"Brass-Bound Cudgel", {313625, 36496, 313624, 313626, 313627, 313628, 313629, 313630, 313631, 313632, 313633, 313634, 313635, 313636} },
{"Adamant Mallet", {313638, 36497, 313637, 313639, 313640, 313641, 313642, 313643, 313644, 313645, 313646, 313647, 313648, 313649} },
{"Nerubian Mace", {313651, 36498, 313650, 313652, 313653, 313654, 313655, 313656, 313657, 313658, 313659, 313660, 313661, 313662} },
{"Frigid War-Mace", {313664, 36499, 313663, 313665, 313666, 313667, 313668, 313669, 313670, 313671, 313672, 313673, 313674, 313675} },
{"Gargoyle's Mace", {313677, 36500, 313676, 313678, 313679, 313680, 313681, 313682, 313683, 313684, 313685, 313686, 313687, 313688} },
{"Granite Maul", {313690, 36501, 313689, 313691, 313692, 313693, 313694, 313695, 313696, 313697, 313698, 313699, 313700, 313701} },
{"Ungainly Mace", {313703, 36502, 313702, 313704, 313705, 313706, 313707, 313708, 313709, 313710, 313711, 313712, 313713, 313714} },
{"Toothless Bludgeon", {313716, 36503, 313715, 313717, 313718, 313719, 313720, 313721, 313722, 313723, 313724, 313725, 313726, 313727} },
{"Cleft-Edged Hammer", {313729, 36504, 313728, 313730, 313731, 313732, 313733, 313734, 313735, 313736, 313737, 313738, 313739, 313740} },
{"Frosted Steel Mallet", {313742, 36505, 313741, 313743, 313744, 313745, 313746, 313747, 313748, 313749, 313750, 313751, 313752, 313753} },
{"Vaulted Mace", {313755, 36506, 313754, 313756, 313757, 313758, 313759, 313760, 313761, 313762, 313763, 313764, 313765, 313766} },
{"Iron-Molded Fist", {313768, 36507, 313767, 313769, 313770, 313771, 313772, 313773, 313774, 313775, 313776, 313777, 313778, 313779} },
{"Cumbersome Sledgehammer", {313781, 36508, 313780, 313782, 313783, 313784, 313785, 313786, 313787, 313788, 313789, 313790, 313791, 313792} },
{"Femur-Shafted Mace", {313794, 36509, 313793, 313795, 313796, 313797, 313798, 313799, 313800, 313801, 313802, 313803, 313804, 313805} },
{"Lumbering Bludgeon", {313807, 36510, 313806, 313808, 313809, 313810, 313811, 313812, 313813, 313814, 313815, 313816, 313817, 313818} },
{"Arctic War Hammer", {313820, 36511, 313819, 313821, 313822, 313823, 313824, 313825, 313826, 313827, 313828, 313829, 313830, 313831} },
{"Onerous Mallet", {313833, 36512, 313832, 313834, 313835, 313836, 313837, 313838, 313839, 313840, 313841, 313842, 313843, 313844} },
{"Lode-Headed Hammer", {313846, 36513, 313845, 313847, 313848, 313849, 313850, 313851, 313852, 313853, 313854, 313855, 313856, 313857} },
{"Kingly Battlehammer", {313859, 36514, 313858, 313860, 313861, 313862, 313863, 313864, 313865, 313866, 313867, 313868, 313869, 313870} },
{"Raider's Cutlass", {313872, 36515, 313871, 313873, 313874, 313875, 313876, 313877, 313878, 313879, 313880, 313881, 313882, 313883} },
{"Tribal Blade", {313885, 36516, 313884, 313886, 313887, 313888, 313889, 313890, 313891, 313892, 313893, 313894, 313895, 313896} },
{"Iron-Grip Shortsword", {313898, 36517, 313897, 313899, 313900, 313901, 313902, 313903, 313904, 313905, 313906, 313907, 313908, 313909} },
{"Tundra's Edge", {313911, 36518, 313910, 313912, 313913, 313914, 313915, 313916, 313917, 313918, 313919, 313920, 313921, 313922} },
{"Moonlit Katana", {313924, 36519, 313923, 313925, 313926, 313927, 313928, 313929, 313930, 313931, 313932, 313933, 313934, 313935} },
{"Chopping Wideblade", {313937, 36520, 313936, 313938, 313939, 313940, 313941, 313942, 313943, 313944, 313945, 313946, 313947, 313948} },
{"Shimmering Sabre", {313950, 36521, 313949, 313951, 313952, 313953, 313954, 313955, 313956, 313957, 313958, 313959, 313960, 313961} },
{"Scored Blade", {313963, 36522, 313962, 313964, 313965, 313966, 313967, 313968, 313969, 313970, 313971, 313972, 313973, 313974} },
{"Trollish Slicer", {313976, 36523, 313975, 313977, 313978, 313979, 313980, 313981, 313982, 313983, 313984, 313985, 313986, 313987} },
{"Primitive Scimitar", {313989, 36524, 313988, 313990, 313991, 313992, 313993, 313994, 313995, 313996, 313997, 313998, 313999, 314002} },
{"Craggy Machete", {314004, 36525, 314003, 314005, 314006, 314007, 314008, 314009, 314010, 314011, 314012, 314013, 314014, 314015} },
{"Sleeted Longsword", {314017, 36526, 314016, 314018, 314019, 314020, 314021, 314022, 314023, 314024, 314025, 314026, 314027, 314028} },
{"Blackened Blade", {314030, 36527, 314029, 314031, 314032, 314033, 314034, 314035, 314036, 314037, 314038, 314039, 314040, 314041} },
{"Skeleton's Sword", {314043, 36528, 314042, 314044, 314045, 314046, 314047, 314048, 314049, 314050, 314051, 314052, 314053, 314054} },
{"Unearthed Broadsword", {314056, 36529, 314055, 314057, 314058, 314059, 314060, 314061, 314062, 314063, 314064, 314065, 314066, 314067} },
{"Whetted Ironblade", {314069, 36530, 314068, 314070, 314071, 314072, 314073, 314074, 314075, 314076, 314077, 314078, 314079, 314080} },
{"Sawtooth Greatsword", {314082, 36531, 314081, 314083, 314084, 314085, 314086, 314087, 314088, 314089, 314090, 314091, 314092, 314093} },
{"Shark Fin Blade", {314095, 36532, 314094, 314096, 314097, 314098, 314099, 314100, 314101, 314102, 314103, 314104, 314105, 314106} },
{"Adorned Broadsword", {314108, 36533, 314107, 314109, 314110, 314111, 314112, 314113, 314114, 314115, 314116, 314117, 314118, 314119} },
{"Tempered-Steel Blade", {314121, 36534, 314120, 314122, 314123, 314124, 314125, 314126, 314127, 314128, 314129, 314130, 314131, 314132} },
{"Dragon's Rib Sword", {314134, 36535, 314133, 314135, 314136, 314137, 314138, 314139, 314140, 314141, 314142, 314143, 314144, 314145} },
{"Inlaid Greatsword", {314147, 36536, 314146, 314148, 314149, 314150, 314151, 314152, 314153, 314154, 314155, 314156, 314157, 314158} },
{"Fur-Grip Broadsword", {314160, 36537, 314159, 314161, 314162, 314163, 314164, 314165, 314166, 314167, 314168, 314169, 314170, 314171} },
{"Trollish Destroyer", {314173, 36538, 314172, 314174, 314175, 314176, 314177, 314178, 314179, 314180, 314181, 314182, 314183, 314184} },
{"Chilled Warblade", {314186, 36539, 314185, 314187, 314188, 314189, 314190, 314191, 314192, 314193, 314194, 314195, 314196, 314197} },
{"Petrified Sword", {314199, 36540, 314198, 314200, 314201, 314202, 314203, 314204, 314205, 314206, 314207, 314208, 314209, 314210} },
{"Wintry Claymore", {314212, 36541, 314211, 314213, 314214, 314215, 314216, 314217, 314218, 314219, 314220, 314221, 314222, 314223} },
{"Invasion Blade", {314225, 36542, 314224, 314226, 314227, 314228, 314229, 314230, 314231, 314232, 314233, 314234, 314235, 314236} },
{"Survival Stick", {314238, 36543, 314237, 314239, 314240, 314241, 314242, 314243, 314244, 314245, 314246, 314247, 314248, 314249} },
{"Journeyed Staff", {314251, 36544, 314250, 314252, 314253, 314254, 314255, 314256, 314257, 314258, 314259, 314260, 314261, 314262} },
{"Branched Stick", {314264, 36545, 314263, 314265, 314266, 314267, 314268, 314269, 314270, 314271, 314272, 314273, 314274, 314275} },
{"Unusual Staff", {314277, 36546, 314276, 314278, 314279, 314280, 314281, 314282, 314283, 314284, 314285, 314286, 314287, 314288} },
{"Jester's Stick", {314290, 36547, 314289, 314291, 314292, 314293, 314294, 314295, 314296, 314297, 314298, 314299, 314300, 314301} },
{"Promised Staff", {314303, 36548, 314302, 314304, 314305, 314306, 314307, 314308, 314309, 314310, 314311, 314312, 314313, 314314} },
{"Pulsing Quarterstaff", {314316, 36549, 314315, 314317, 314318, 314319, 314320, 314321, 314322, 314323, 314324, 314325, 314326, 314327} },
{"Refulgent Staff", {314329, 36550, 314328, 314330, 314331, 314332, 314333, 314334, 314335, 314336, 314337, 314338, 314339, 314340} },
{"Ritual Greatstaff", {314342, 36551, 314341, 314343, 314344, 314345, 314346, 314347, 314348, 314349, 314350, 314351, 314352, 314353} },
{"Spiked Greatstaff", {314355, 36552, 314354, 314356, 314357, 314358, 314359, 314360, 314361, 314362, 314363, 314364, 314365, 314366} },
{"Desecrated Staff", {314368, 36553, 314367, 314369, 314370, 314371, 314372, 314373, 314374, 314375, 314376, 314377, 314378, 314379} },
{"Cursed Staff", {314381, 36554, 314380, 314382, 314383, 314384, 314385, 314386, 314387, 314388, 314389, 314390, 314391, 314392} },
{"Minion Staff", {314394, 36555, 314393, 314395, 314396, 314397, 314398, 314399, 314400, 314401, 314402, 314403, 314404, 314405} },
{"Apocalyptic Staff", {314407, 36556, 314406, 314408, 314409, 314410, 314411, 314412, 314413, 314414, 314415, 314416, 314417, 314418} },
{"Meat Ripper", {314420, 36557, 314419, 314421, 314422, 314423, 314424, 314425, 314426, 314427, 314428, 314429, 314430, 314431} },
{"Curved Scratcher", {314433, 36558, 314432, 314434, 314435, 314436, 314437, 314438, 314439, 314440, 314441, 314442, 314443, 314444} },
{"Prized Handscythes", {314446, 36559, 314445, 314447, 314448, 314449, 314450, 314451, 314452, 314453, 314454, 314455, 314456, 314457} },
{"Fighter's Grip", {314459, 36560, 314458, 314460, 314461, 314462, 314463, 314464, 314465, 314466, 314467, 314468, 314469, 314470} },
{"Mummified Paw", {314472, 36561, 314471, 314473, 314474, 314475, 314476, 314477, 314478, 314479, 314480, 314481, 314482, 314483} },
{"Blue-Nailed Claws", {314485, 36562, 314484, 314486, 314487, 314488, 314489, 314490, 314491, 314492, 314493, 314494, 314495, 314496} },
{"Gloved Talons", {314498, 36563, 314497, 314499, 314500, 314501, 314502, 314503, 314504, 314505, 314506, 314507, 314508, 314509} },
{"Spider Claw", {314511, 36564, 314510, 314512, 314513, 314514, 314515, 314516, 314517, 314518, 314519, 314520, 314521, 314522} },
{"Hero's Knuckles", {314524, 36565, 314523, 314525, 314526, 314527, 314528, 314529, 314530, 314531, 314532, 314533, 314534, 314535} },
{"Gilded Fangs", {314537, 36566, 314536, 314538, 314539, 314540, 314541, 314542, 314543, 314544, 314545, 314546, 314547, 314548} },
{"Six-Fingered Claws", {314550, 36567, 314549, 314551, 314552, 314556, 314559, 314560, 314561, 314562, 314563, 314564, 314565, 314566} },
{"Hollowed Bone Knuckles", {314568, 36568, 314567, 314569, 314570, 314571, 314572, 314573, 314574, 314575, 314576, 314577, 314578, 314579} },
{"Savage Talons", {314581, 36569, 314580, 314582, 314583, 314584, 314585, 314586, 314587, 314588, 314589, 314590, 314591, 314592} },
{"Corrupted Scythes", {314594, 36570, 314593, 314595, 314596, 314597, 314598, 314599, 314600, 314601, 314602, 314603, 314604, 314605} },
{"Splicing Axe", {314607, 36571, 314606, 314608, 314609, 314610, 314611, 314612, 314613, 314614, 314615, 314616, 314617, 314618} },
{"Dinged Cleaver", {314620, 36572, 314619, 314621, 314622, 314623, 314624, 314625, 314626, 314627, 314628, 314629, 314630, 314631} },
{"Primeval Adze", {314633, 36573, 314632, 314634, 314635, 314636, 314637, 314638, 314639, 314640, 314641, 314642, 314643, 314644} },
{"Bone Cleaver", {314646, 36574, 314645, 314647, 314648, 314649, 314650, 314651, 314652, 314653, 314654, 314655, 314656, 314657} },
{"Dragonflayer Hatchet", {314659, 36575, 314658, 314660, 314661, 314662, 314663, 314664, 314665, 314666, 314667, 314668, 314669, 314670} },
{"Beaked Axe", {314672, 36576, 314671, 314673, 314674, 314675, 314676, 314677, 314678, 314679, 314680, 314681, 314682, 314683} },
{"Disk Axe", {314685, 36577, 314684, 314686, 314687, 314688, 314689, 314690, 314691, 314692, 314693, 314694, 314695, 314696} },
{"Troll Chopper", {314698, 36578, 314697, 314699, 314700, 314701, 314702, 314703, 314704, 314705, 314706, 314707, 314708, 314709} },
{"Boreal Woodchopper", {314716, 36579, 314715, 314717, 314718, 314719, 314720, 314721, 314722, 314723, 314724, 314725, 314726, 314727} },
{"Dire Axe", {314729, 36580, 314728, 314730, 314731, 314732, 314733, 314734, 314735, 314736, 314737, 314738, 314739, 314740} },
{"Wolvar Handaxe", {314742, 36581, 314741, 314743, 314744, 314745, 314746, 314747, 314748, 314749, 314750, 314751, 314752, 314753} },
{"Ice Pick", {314755, 36582, 314754, 314756, 314757, 314758, 314759, 314760, 314761, 314762, 314763, 314764, 314765, 314766} },
{"Skeletal Hacker", {314768, 36583, 314767, 314769, 314770, 314771, 314772, 314773, 314774, 314775, 314776, 314777, 314778, 314779} },
{"Snowy Edge", {314781, 36584, 314780, 314782, 314783, 314784, 314785, 314786, 314787, 314788, 314789, 314790, 314791, 314792} },
{"Finned Battleaxe", {314794, 36585, 314793, 314795, 314796, 314797, 314798, 314799, 314800, 314801, 314802, 314803, 314804, 314805} },
{"Wreaking Battleaxe", {314807, 36586, 314806, 314808, 314809, 314810, 314811, 314812, 314813, 314814, 314815, 314816, 314817, 314818} },
{"Taunka Axe", {314820, 36587, 314819, 314821, 314822, 314823, 314824, 314825, 314826, 314827, 314828, 314829, 314830, 314831} },
{"Burning Battleaxe", {314833, 36588, 314832, 314834, 314835, 314836, 314837, 314838, 314839, 314840, 314841, 314842, 314843, 314844} },
{"Segmenting Broadaxe", {314846, 36589, 314845, 314847, 314848, 314849, 314850, 314851, 314852, 314853, 314854, 314855, 314856, 314857} },
{"Bone Plate Axe", {314859, 36590, 314858, 314860, 314861, 314862, 314863, 314864, 314865, 314866, 314867, 314868, 314869, 314870} },
{"Winged Axe", {314872, 36591, 314871, 314873, 314874, 314875, 314876, 314877, 314878, 314879, 314880, 314881, 314882, 314883} },
{"Deforester Axe", {314885, 36592, 314884, 314886, 314887, 314888, 314889, 314890, 314891, 314892, 314893, 314894, 314895, 314896} },
{"Troll Decollator", {314898, 36593, 314897, 314899, 314900, 314901, 314902, 314903, 314904, 314905, 314906, 314907, 314908, 314909} },
{"Fracturing Battleaxe", {314911, 36594, 314910, 314912, 314913, 314914, 314915, 314916, 314917, 314918, 314919, 314920, 314921, 314922} },
{"Planate Broadaxe", {314924, 36595, 314923, 314925, 314926, 314927, 314928, 314929, 314930, 314931, 314932, 314933, 314934, 314935} },
{"Rupturing Axe", {314937, 36596, 314936, 314938, 314939, 314940, 314941, 314942, 314943, 314944, 314945, 314946, 314947, 314948} },
{"Ice-Splintering Axe", {314950, 36597, 314949, 314951, 314952, 314953, 314954, 314955, 314956, 314957, 314958, 314959, 314960, 314961} },
{"Scarlet Battle Axe", {314963, 36598, 314962, 314964, 314965, 314966, 314967, 314968, 314969, 314970, 314971, 314972, 314973, 314974} },
{"Ocean Trident", {314976, 36599, 314975, 314977, 314978, 314979, 314980, 314981, 314982, 314983, 314986, 314995, 314996, 314997} },
{"Village Scythe", {314999, 36600, 314998, 315000, 315001, 315002, 315003, 315004, 315005, 315006, 315007, 315008, 315009, 315010} },
{"Patient Harpoon", {315012, 36601, 315011, 315013, 315014, 315015, 315016, 315017, 315018, 315019, 315020, 315021, 315022, 315023} },
{"Rust-Covered Polearm", {315025, 36602, 315024, 315026, 315027, 315028, 315029, 315030, 315031, 315032, 315033, 315034, 315035, 315036} },
{"Archaic Longspear", {315038, 36603, 315037, 315039, 315040, 315041, 315042, 315043, 315044, 315045, 315046, 315047, 315048, 315049} },
{"Grizzly Glaive", {315051, 36604, 315050, 315052, 315053, 315054, 315055, 315056, 315057, 315058, 315059, 315060, 315061, 315062} },
{"Wind Scythe", {315064, 36605, 315063, 315065, 315066, 315067, 315068, 315069, 315070, 315071, 315072, 315073, 315074, 315075} },
{"Rugged Polearm", {315077, 36606, 315076, 315078, 315079, 315080, 315081, 315082, 315083, 315084, 315085, 315086, 315087, 315088} },
{"Dwarven Halberd", {315090, 36607, 315089, 315091, 315092, 315093, 315094, 315095, 315096, 315097, 315098, 315099, 315100, 315101} },
{"Piercing Glaive", {315103, 36608, 315102, 315104, 315105, 315106, 315107, 315108, 315109, 315110, 315111, 315112, 315113, 315114} },
{"Abandoned Spear", {315116, 36609, 315115, 315117, 315118, 315119, 315120, 315121, 315122, 315123, 315124, 315125, 315126, 315127} },
{"Plagued Pike", {315129, 36610, 315128, 315130, 315131, 315132, 315133, 315134, 315135, 315136, 315137, 315138, 315139, 315140} },
{"Bleak Scythe", {315142, 36611, 315141, 315143, 315144, 315145, 315146, 315147, 315148, 315149, 315150, 315151, 315152, 315153} },
{"Scourge War Spear", {315155, 36612, 315154, 315156, 315157, 315158, 315159, 315160, 315161, 315162, 315163, 315164, 315165, 315166} },
{"Honorable Longbow", {315168, 36613, 315167, 315169, 315170, 315171, 315172, 315173, 315174, 315175, 315176, 315177, 315178, 315179} },
{"Yew Bow", {315181, 36614, 315180, 315182, 315183, 315184, 315185, 315186, 315187, 315188, 315189, 315190, 315191, 315192} },
{"Expert's Longbow", {315194, 36615, 315193, 315195, 315196, 315197, 315198, 315199, 315200, 315201, 315202, 315203, 315204, 315205} },
{"Dutiful Longbow", {315207, 36616, 315206, 315208, 315209, 315210, 315211, 315212, 315213, 315214, 315215, 315216, 315217, 315218} },
{"Yielding Bow", {315220, 36617, 315219, 315221, 315222, 315223, 315224, 315225, 315226, 315227, 315228, 315229, 315230, 315231} },
{"Twisted Longbow", {315233, 36618, 315232, 315234, 315235, 315236, 315237, 315238, 315239, 315240, 315241, 315242, 315243, 315244} },
{"Astral Light Bow", {315246, 36619, 315245, 315247, 315248, 315249, 315250, 315251, 315252, 315253, 315254, 315255, 315256, 315257} },
{"Tracking Bow", {315259, 36620, 315258, 315260, 315261, 315262, 315263, 315264, 315265, 315266, 315267, 315268, 315269, 315270} },
{"Advanced Flatbow", {315272, 36621, 315271, 315273, 315274, 315275, 315276, 315277, 315278, 315279, 315280, 315281, 315282, 315283} },
{"Acute Shortbow", {315285, 36622, 315284, 315286, 315287, 315288, 315289, 315290, 315291, 315292, 315293, 315294, 315295, 315296} },
{"Harnessed Longbow", {315298, 36623, 315297, 315299, 315300, 315301, 315302, 315303, 315304, 315305, 315306, 315307, 315308, 315309} },
{"Shrieking Bow", {315311, 36624, 315310, 315312, 315313, 315314, 315315, 315316, 315317, 315318, 315319, 315320, 315321, 315322} },
{"Massive Recurved Bow", {315324, 36625, 315323, 315325, 315326, 315327, 315328, 315329, 315330, 315331, 315332, 315333, 315334, 315335} },
{"Military Compound Bow", {315337, 36626, 315336, 315338, 315339, 315340, 315341, 315342, 315343, 315344, 315345, 315346, 315347, 315348} },
{"Composite Crossbow", {315350, 36627, 315349, 315351, 315352, 315353, 315354, 315355, 315356, 315357, 315358, 315359, 315360, 315361} },
{"Under-Arm Crossbow", {315363, 36628, 315362, 315364, 315365, 315366, 315367, 315368, 315369, 315370, 315371, 315372, 315373, 315374} },
{"Ferocious Crossbow", {315376, 36629, 315375, 315377, 315378, 315379, 315380, 315381, 315382, 315383, 315384, 315385, 315386, 315387} },
{"Sinewed Crossbow", {315389, 36630, 315388, 315390, 315391, 315392, 315393, 315394, 315395, 315396, 315397, 315398, 315399, 315400} },
{"Slingshot Crossbow", {315415, 36632, 315414, 315416, 315417, 315418, 315419, 315420, 315421, 315422, 315423, 315424, 315425, 315426} },
{"Palisade Crossbow", {315428, 36633, 315427, 315429, 315430, 315431, 315432, 315433, 315434, 315435, 315436, 315437, 315438, 315439} },
{"Pain Repeater", {315441, 36634, 315440, 315442, 315443, 315444, 315445, 315446, 315447, 315448, 315449, 315450, 315451, 315452} },
{"Marvelous Crossbow", {315454, 36635, 315453, 315455, 315456, 315457, 315458, 315459, 315460, 315461, 315462, 315463, 315464, 315465} },
{"Arbalest Crossbow", {315467, 36636, 315466, 315468, 315469, 315470, 315471, 315472, 315473, 315474, 315475, 315476, 315477, 315478} },
{"Horrific Crossbow", {315480, 36637, 315479, 315481, 315482, 315483, 315484, 315485, 315486, 315487, 315488, 315489, 315490, 315491} },
{"Bloody Crossbow", {315493, 36638, 315492, 315494, 315495, 315496, 315497, 315498, 315499, 315500, 315501, 315502, 315503, 315504} },
{"Brutal Ballista", {315506, 36639, 315505, 315507, 315508, 315509, 315510, 315511, 315512, 315513, 315514, 315515, 315516, 315517} },
{"Scourge Crossbow", {315519, 36640, 315518, 315520, 315521, 315522, 315523, 315524, 315525, 315526, 315527, 315528, 315529, 315530} },
{"Bound Musket", {315532, 36641, 315531, 315533, 315534, 315535, 315536, 315537, 315538, 315539, 315540, 315541, 315542, 315543} },
{"Flintlock Gun", {315545, 36642, 315544, 315546, 315547, 315548, 315549, 315550, 315551, 315552, 315553, 315554, 315555, 315556} },
{"Tracker's Musket", {315558, 36643, 315557, 315559, 315560, 315561, 315562, 315563, 315564, 315565, 315566, 315567, 315568, 315569} },
{"Inelegant Musket", {315571, 36644, 315570, 315572, 315573, 315574, 315575, 315576, 315577, 315578, 315579, 315580, 315581, 315582} },
{"Tuskarr Boomstick", {315584, 36645, 315583, 315585, 315586, 315587, 315588, 315589, 315590, 315591, 315592, 315593, 315594, 315595} },
{"Haggard Gun", {315597, 36646, 315596, 315598, 315599, 315600, 315601, 315602, 315603, 315604, 315605, 315606, 315607, 315608} },
{"Noisy Blaster", {315610, 36647, 315609, 315611, 315612, 315613, 315614, 315615, 315616, 315617, 315618, 315619, 315620, 315621} },
{"Trapper's Rifle", {315623, 36648, 315622, 315624, 315625, 315626, 315627, 315628, 315629, 315630, 315631, 315632, 315633, 315634} },
{"Tundra Rifle", {315636, 36649, 315635, 315637, 315638, 315639, 315640, 315641, 315642, 315643, 315644, 315645, 315646, 315647} },
{"Mammoth Gun", {315649, 36650, 315648, 315650, 315651, 315652, 315653, 315654, 315655, 315656, 315657, 315658, 315659, 315660} },
{"Muzzled Musket", {315662, 36651, 315661, 315663, 315664, 315665, 315666, 315667, 315668, 315669, 315670, 315671, 315672, 315673} },
{"Stocky Shotgun", {315675, 36652, 315674, 315676, 315677, 315678, 315679, 315680, 315681, 315682, 315683, 315684, 315685, 315686} },
{"Precipice Longrifle", {315688, 36653, 315687, 315689, 315690, 315691, 315692, 315693, 315694, 315695, 315696, 315697, 315698, 315699} },
{"Harsh-Winter Rifle", {315701, 36654, 315700, 315702, 315703, 315704, 315705, 315706, 315707, 315708, 315709, 315710, 315711, 315712} },
{"Pearled Wand", {315714, 36655, 315713, 315715, 315716, 315717, 315718, 315719, 315720, 315721, 315722, 315723, 315724, 315725} },
{"Darkened Wand", {315727, 36656, 315726, 315728, 315729, 315730, 315731, 315732, 315733, 315734, 315735, 315736, 315737, 315738} },
{"Vicious Wand", {315740, 36657, 315739, 315741, 315742, 315743, 315744, 315745, 315746, 315747, 315748, 315749, 315750, 315751} },
{"Extinguished Spark", {315753, 36658, 315752, 315754, 315755, 315756, 315757, 315758, 315759, 315760, 315761, 315762, 315763, 315764} },
{"Shivery Wand", {315766, 36659, 315765, 315767, 315768, 315769, 315770, 315771, 315772, 315773, 315774, 315775, 315776, 315777} },
{"Melted Wand", {315779, 36660, 315778, 315780, 315781, 315782, 315783, 315784, 315785, 315786, 315787, 315788, 315789, 315790} },
{"Enigmatic Wand", {315792, 36661, 315791, 315793, 315794, 315795, 315796, 315797, 315798, 315799, 315800, 315801, 315802, 315803} },
{"Voodoo Wand", {315805, 36662, 315804, 315806, 315807, 315808, 315809, 315810, 315811, 315812, 315813, 315814, 315815, 315816} },
{"Ancient Wand", {315818, 36663, 315817, 315819, 315820, 315821, 315822, 315823, 315824, 315825, 315826, 315827, 315828, 315829} },
{"Chilled Wand", {315831, 36664, 315830, 315832, 315833, 315834, 315835, 315836, 315837, 315838, 315839, 315840, 315841, 315842} },
{"Wasteland Wand", {315844, 36665, 315843, 315845, 315846, 315847, 315848, 315849, 315850, 315851, 315852, 315853, 315854, 315855} },
{"Polar Wand", {315857, 36666, 315856, 315858, 315859, 315860, 315861, 315862, 315863, 315864, 315865, 315866, 315867, 315868} },
{"Solid Ice Wand", {315870, 36667, 315869, 315871, 315872, 315873, 315874, 315875, 315876, 315877, 315878, 315879, 315880, 315881} },
{"Mindless Wand", {315883, 36668, 315882, 315884, 315885, 315886, 315887, 315888, 315889, 315890, 315891, 315892, 315893, 315894} },
{"Eccentric Dagger", {315896, 36669, 315895, 315897, 315898, 315899, 315900, 315901, 315902, 315903, 315904, 315905, 315906, 315907} },
{"Gypsy Blade", {315909, 36670, 315908, 315910, 315911, 315912, 315913, 315914, 315915, 315916, 315917, 315918, 315919, 315920} },
{"Ominous Dagger", {315922, 36671, 315921, 315923, 315924, 315925, 315926, 315927, 315928, 315929, 315930, 315931, 315932, 315933} },
{"Strange Dagger", {315935, 36672, 315934, 315936, 315937, 315938, 315939, 315940, 315941, 315942, 315943, 315944, 315945, 315946} },
{"Wise Dagger", {315948, 36673, 315947, 315949, 315950, 315951, 315952, 315953, 315954, 315955, 315956, 315957, 315958, 315959} },
{"Old Tooth", {315961, 36674, 315960, 315962, 315963, 315964, 315965, 315966, 315967, 315968, 315969, 315970, 315971, 315972} },
{"Sockeye Dagger", {315974, 36675, 315973, 315975, 315976, 315977, 315978, 315979, 315980, 315981, 315982, 315983, 315984, 315985} },
{"Water Blade", {315987, 36676, 315986, 315988, 315989, 315990, 315991, 315992, 315993, 315994, 315995, 315996, 315997, 315998} },
{"Levitating Dagger", {316000, 36677, 315999, 316001, 316002, 316003, 316004, 316005, 316006, 316007, 316008, 316009, 316010, 316011} },
{"Runed Talon", {316013, 36678, 316012, 316014, 316015, 316016, 316017, 316018, 316019, 316020, 316021, 316022, 316023, 316024} },
{"Singing Dagger", {316026, 36679, 316025, 316027, 316028, 316029, 316030, 316031, 316032, 316033, 316034, 316035, 316036, 316037} },
{"Mystic Fang", {316039, 36680, 316038, 316040, 316041, 316042, 316043, 316044, 316045, 316046, 316047, 316048, 316049, 316050} },
{"Wisdom Carver", {316052, 36681, 316051, 316053, 316054, 316055, 316056, 316057, 316058, 316059, 316060, 316061, 316062, 316063} },
{"Seduced Blade", {316065, 36682, 316064, 316066, 316067, 316068, 316069, 316070, 316071, 316072, 316073, 316074, 316075, 316076} },
{"Enshrined Mace", {316078, 36683, 316077, 316079, 316080, 316081, 316082, 316083, 316084, 316085, 316086, 316087, 316088, 316089} },
{"Ambrosial Hammer", {316091, 36684, 316090, 316092, 316093, 316094, 316095, 316096, 316097, 316098, 316099, 316100, 316101, 316102} },
{"Placid Lightmace", {316104, 36685, 316103, 316105, 316106, 316107, 316108, 316109, 316110, 316111, 316112, 316113, 316114, 316115} },
{"Harmonious Scepter", {316117, 36686, 316116, 316118, 316119, 316120, 316121, 316122, 316123, 316124, 316125, 316126, 316127, 316128} },
{"Illuminated Scepter", {316130, 36687, 316129, 316131, 316132, 316133, 316134, 316135, 316136, 316137, 316138, 316139, 316140, 316141} },
{"Sacrosanct Mace", {316143, 36688, 316142, 316144, 316145, 316146, 316147, 316148, 316149, 316150, 316151, 316152, 316153, 316154} },
{"Refreshing Hammer", {316156, 36689, 316155, 316157, 316158, 316159, 316160, 316161, 316162, 316163, 316164, 316165, 316166, 316167} },
{"Unearthly Scepter", {316169, 36690, 316168, 316170, 316171, 316172, 316173, 316174, 316175, 316176, 316177, 316178, 316179, 316180} },
{"Dignified Hammer", {316182, 36691, 316181, 316183, 316184, 316185, 316186, 316187, 316188, 316189, 316190, 316191, 316192, 316193} },
{"Remedial Mace", {316195, 36692, 316194, 316196, 316197, 316198, 316199, 316200, 316201, 316202, 316203, 316204, 316205, 316206} },
{"Serene Hammer", {316208, 36693, 316207, 316209, 316210, 316211, 316212, 316213, 316214, 316215, 316216, 316217, 316218, 316219} },
{"Beatific Mace", {316221, 36694, 316220, 316222, 316223, 316224, 316225, 316226, 316227, 316228, 316229, 316230, 316231, 316232} },
{"Dogmatic Scepter", {316234, 36695, 316233, 316235, 316236, 316237, 316238, 316239, 316240, 316241, 316242, 316243, 316244, 316245} },
{"Graced Scepter", {316247, 36696, 316246, 316248, 316249, 316250, 316251, 316252, 316253, 316254, 316255, 316256, 316257, 316258} },
{"Aquatic Greatstaff", {316260, 36697, 316259, 316261, 316262, 316263, 316264, 316265, 316266, 316267, 316268, 316269, 316270, 316271} },
{"Conifer Cone Staff", {316273, 36698, 316272, 316274, 316275, 316276, 316277, 316278, 316279, 316280, 316281, 316282, 316283, 316284} },
{"Iceberg Staff", {316286, 36699, 316285, 316287, 316288, 316289, 316290, 316291, 316292, 316293, 316294, 316295, 316296, 316297} },
{"Peat Greatstaff", {316299, 36700, 316298, 316300, 316301, 316302, 316303, 316304, 316305, 316306, 316307, 316308, 316309, 316310} },
{"Pine Needle Staff", {316312, 36701, 316311, 316313, 316314, 316315, 316316, 316317, 316318, 316319, 316320, 316321, 316322, 316323} },
{"Melting Icestaff", {316325, 36702, 316324, 316326, 316327, 316328, 316329, 316330, 316331, 316332, 316333, 316334, 316335, 316336} },
{"Tusked Greatstaff", {316338, 36703, 316337, 316339, 316340, 316341, 316342, 316343, 316344, 316345, 316346, 316347, 316348, 316349} },
{"Hive Comb Staff", {316351, 36704, 316350, 316352, 316353, 316354, 316355, 316356, 316357, 316358, 316359, 316360, 316361, 316362} },
{"Geyser Staff", {316364, 36705, 316363, 316365, 316366, 316367, 316368, 316369, 316370, 316371, 316372, 316373, 316374, 316375} },
{"Tenacious Vine Staff", {316377, 36706, 316376, 316378, 316379, 316380, 316381, 316382, 316383, 316384, 316385, 316386, 316387, 316388} },
{"Cascading Water Staff", {316390, 36707, 316389, 316391, 316392, 316393, 316394, 316395, 316396, 316397, 316398, 316399, 316400, 316401} },
{"Snow Blossom Staff", {316403, 36708, 316402, 316404, 316405, 316406, 316407, 316408, 316409, 316410, 316411, 316412, 316413, 316414} },
{"Crystal Woodstaff", {316416, 36709, 316415, 316417, 316418, 316419, 316420, 316421, 316422, 316423, 316424, 316425, 316426, 316427} },
{"Avalanche Staff", {316429, 36710, 316428, 316430, 316431, 316432, 316433, 316434, 316435, 316436, 316437, 316438, 316439, 316440} },
{"Forsaken Edge", {316442, 36711, 316441, 316443, 316444, 316445, 316446, 316447, 316448, 316449, 316450, 316451, 316452, 316453} },
{"Howling Throwing Knives", {316455, 36712, 316454, 316456, 316457, 316458, 316459, 316460, 316461, 316462, 316463, 316464, 316465, 316466} },
{"Reaching Star", {316468, 36713, 316467, 316469, 316470, 316471, 316472, 316473, 316474, 316475, 316476, 316477, 316478, 316479} },
{"Tuskarr's Piercers", {316481, 36714, 316480, 316482, 316483, 316484, 316485, 316486, 316487, 316488, 316489, 316490, 316491, 316492} },
{"Runed Shuriken", {316494, 36715, 316493, 316495, 316496, 316497, 316498, 316499, 316500, 316501, 316502, 316503, 316504, 316505} },
{"Threatening Darts", {316507, 36716, 316506, 316508, 316509, 316510, 316511, 316512, 316513, 316514, 316515, 316516, 316517, 316518} },
{"Venture Co. Throwing Axe", {316520, 36717, 316519, 316521, 316522, 316523, 316524, 316525, 316526, 316527, 316528, 316529, 316530, 316531} },
{"Nexus Shrike", {316533, 36718, 316532, 316534, 316535, 316536, 316537, 316538, 316539, 316540, 316541, 316542, 316543, 316544} },
{"Hunter's Scout", {316546, 36719, 316545, 316547, 316548, 316549, 316550, 316551, 316552, 316553, 316554, 316555, 316556, 316557} },
{"Flying Knives", {316559, 36720, 316558, 316560, 316561, 316562, 316563, 316564, 316565, 316566, 316567, 316568, 316569, 316570} },
{"Dragon's Teeth", {316572, 36721, 316571, 316573, 316574, 316575, 316576, 316577, 316578, 316579, 316580, 316581, 316582, 316583} },
{"Pyramid Throwing Star", {316585, 36722, 316584, 316586, 316587, 316588, 316589, 316590, 316591, 316592, 316593, 316594, 316595, 316596} },
{"Clawed Shuriken", {316598, 36723, 316597, 316599, 316600, 316601, 316602, 316603, 316604, 316605, 316606, 316607, 316608, 316609} },
{"Frozen Throwing Blades", {316611, 36724, 316610, 316612, 316613, 316614, 316615, 316616, 316617, 316618, 316619, 316620, 316621, 316622} },
{"HF BLUE Leather DPS Chest", {6036866, 36866, 316635, 316636, 316637, 316638, 316639, 316640, 316641, 316642, 316643, 316644, 316645, 316646} },
{"HF BLUE Plate DPS Chest", {6036867, 36867, 316647, 316648, 316649, 316650, 316651, 316652, 316653, 316654, 316655, 316656, 316657, 316658} },
{"Fury of the Encroaching Storm", {6036871, 36871, 316659, 316660, 316661, 316662, 316663, 316664, 316665, 316666, 316667, 316668, 316669, 316670} },
{"Mender of the Oncoming Dawn", {6036872, 36872, 316671, 316672, 316673, 316674, 316675, 316676, 316677, 316678, 316679, 316680, 316681, 316682} },
{"Horn of the Herald", {6036874, 36874, 316683, 316684, 316685, 316686, 316687, 316688, 316689, 316690, 316691, 316692, 316693, 316694} },
{"Writhing Longstaff", {316696, 36878, 316695, 316697, 316698, 316699, 316700, 316701, 316702, 316703, 316704, 316705, 316706, 316707} },
{"Soldier's Spiked Mace", {316709, 36879, 316708, 316710, 316711, 316712, 316713, 316714, 316715, 316716, 316717, 316718, 316719, 316720} },
{"Vicious Spellblade", {316722, 36880, 316721, 316723, 316724, 316725, 316726, 316727, 316728, 316729, 316730, 316731, 316732, 316733} },
{"Medic's Morning Star", {316735, 36881, 316734, 316736, 316737, 316738, 316739, 316740, 316741, 316742, 316743, 316744, 316745, 316746} },
{"Warsong Longbow", {316748, 36882, 316747, 316749, 316750, 316751, 316752, 316753, 316754, 316755, 316756, 316757, 316758, 316759} },
{"Combatant Greatsword", {316761, 36883, 316760, 316762, 316763, 316764, 316765, 316766, 316767, 316768, 316769, 316770, 316771, 316772} },
{"Transborean Cover", {316774, 36884, 316773, 316775, 316776, 316777, 316778, 316779, 316780, 316781, 316782, 316783, 316784, 316785} },
{"Marshwalker Chestpiece", {316787, 36885, 316786, 316788, 316789, 316790, 316791, 316792, 316793, 316794, 316869, 316870, 316871, 316872} },
{"Westrift Leggings", {316874, 36886, 316873, 316875, 316876, 316877, 316878, 316879, 316880, 316881, 316882, 316883, 316884, 316885} },
{"Mightstone Pauldrons", {316887, 36887, 316886, 316888, 316889, 316890, 316891, 316892, 316893, 316894, 316895, 316896, 316967, 316968} },
{"Marshwalker Legguards", {316970, 36888, 316969, 316971, 316972, 316973, 316974, 316975, 316976, 316977, 316978, 316979, 316980, 316981} },
{"Tundrastrider Coif", {316983, 36937, 316982, 316984, 316985, 316986, 316987, 316988, 316989, 316990, 316991, 316992, 316993, 316994} },
{"Mightstone Breastplate", {316996, 36938, 316995, 316997, 316998, 316999, 317000, 317001, 317002, 317003, 317004, 317005, 317006, 317007} },
{"Nymph Stockings", {317009, 36939, 317008, 317010, 317011, 317012, 317013, 317014, 317015, 317016, 317017, 317018, 317019, 317020} },
{"Timeless Beads of Eternos", {6036943, 36943, 317034, 317035, 317036, 317037, 317038, 317039, 317040, 317041, 317042, 317043, 317044, 317045} },
{"Lifeblade of Belgaristrasz", {6036944, 36944, 317046, 317047, 317048, 317049, 317050, 317051, 317052, 317053, 317054, 317055, 317056, 317057} },
{"Verdisa's Cuffs of Dreaming", {6036945, 36945, 317058, 317059, 317060, 317061, 317062, 317070, 317079, 317080, 317081, 317083, 317084, 317085} },
{"Runic Cage Chestpiece", {6036946, 36946, 317086, 317087, 317088, 317089, 317090, 317091, 317092, 317093, 317094, 317095, 317096, 317097} },
{"Centrifuge Core Cloak", {6036947, 36947, 317098, 317099, 317100, 317101, 317108, 317111, 317112, 317113, 317114, 317115, 317116, 317117} },
{"Horned Helm of Varos", {6036948, 36948, 317118, 317119, 317120, 317121, 317122, 317123, 317124, 317125, 317126, 317127, 317128, 317129} },
{"Gloves of the Azure-Lord", {6036949, 36949, 317130, 317131, 317132, 317133, 317134, 317135, 317136, 317137, 317138, 317139, 317140, 317141} },
{"Wing Commander's Breastplate", {6036950, 36950, 317142, 317143, 317144, 317145, 317146, 317147, 317148, 317149, 317150, 317151, 317152, 317153} },
{"Sidestepping Handguards", {6036951, 36951, 317154, 317155, 317156, 317157, 317158, 317159, 317160, 317161, 317162, 317163, 317164, 317165} },
{"Girdle of Obscuring", {6036952, 36952, 317166, 317167, 317168, 317169, 317170, 317171, 317172, 317173, 317174, 317175, 317176, 317177} },
{"Spaulders of Skillful Maneuvers", {6036953, 36953, 317178, 317179, 317180, 317181, 317182, 317183, 317184, 317185, 317186, 317187, 317188, 317189} },
{"The Conjurer's Slippers", {6036954, 36954, 317190, 317191, 317192, 317193, 317194, 317195, 317196, 317197, 317198, 317199, 317200, 317201} },
{"Dragonflight Great-Ring", {6036961, 36961, 317202, 317203, 317204, 317205, 317206, 317207, 317208, 317209, 317210, 317211, 317212, 317213} },
{"Wyrmclaw Battleaxe", {6036962, 36962, 317214, 317215, 317216, 317217, 317218, 317219, 317220, 317221, 317222, 317224, 317225, 317226} },
{"Helm of the Ley-Guardian", {6036969, 36969, 317227, 317228, 317229, 317230, 317231, 317232, 317233, 317234, 317235, 317236, 317237, 317238} },
{"Headguard of Westrift", {6036971, 36971, 317239, 317240, 317241, 317242, 317243, 317244, 317245, 317246, 317247, 317248, 317249, 317250} },
{"Tome of Arcane Phenomena", {6036972, 36972, 317251, 317252, 317253, 317254, 317255, 317256, 317257, 317258, 317259, 317260, 317261, 317262} },
{"Vestments of the Scholar", {6036973, 36973, 317263, 317264, 317265, 317266, 317267, 317268, 317269, 317270, 317271, 317272, 317273, 317274} },
{"Eregos' Ornamented Chestguard", {6036974, 36974, 317275, 317276, 317277, 317278, 317279, 317280, 317281, 317282, 317283, 317284, 317285, 317286} },
{"Malygos' Favor", {6036975, 36975, 317287, 317288, 317289, 317290, 317291, 317292, 317293, 317294, 317295, 317296, 317297, 317298} },
{"Ring-Lord's Leggings", {6036976, 36976, 317299, 317300, 317301, 317302, 317303, 317304, 317305, 317306, 317307, 317308, 317309, 317310} },
{"Bindings of the Construct", {6036977, 36977, 317311, 317312, 317313, 317314, 317315, 317316, 317317, 317318, 317319, 317320, 317321, 317322} },
{"Ley-Whelphide Belt", {6036978, 36978, 317323, 317324, 317325, 317326, 317327, 317328, 317329, 317330, 317331, 317332, 317333, 317334} },
{"Bjarngrim Family Signet", {6036979, 36979, 317335, 317336, 317337, 317338, 317339, 317340, 317341, 317342, 317343, 317344, 317345, 317346} },
{"Hewn Sparring Quarterstaff", {6036980, 36980, 317347, 317348, 317349, 317350, 317351, 317352, 317353, 317354, 317355, 317356, 317357, 317358} },
{"Hardened Vrykul Throwing Axe", {6036981, 36981, 317359, 317360, 317361, 317362, 317363, 317364, 317365, 317366, 317367, 317368, 317369, 317370} },
{"Mantle of Electrical Charges", {6036982, 36982, 317371, 317372, 317373, 317374, 317375, 317376, 317377, 317378, 317379, 317380, 317381, 317382} },
{"Cape of Seething Steam", {6036983, 36983, 317383, 317384, 317385, 317386, 317387, 317388, 317389, 317390, 317391, 317392, 317393, 317394} },
{"Eternally Folded Blade", {6036984, 36984, 317395, 317396, 317397, 317398, 317399, 317400, 317401, 317402, 317403, 317404, 317405, 317406} },
{"Volkhan's Hood", {6036985, 36985, 317407, 317408, 317409, 317410, 317411, 317412, 317413, 317414, 317415, 317416, 317417, 317418} },
{"Kilt of Molten Golems", {6036986, 36986, 317419, 317420, 317421, 317422, 317423, 317424, 317425, 317426, 317427, 317428, 317429, 317430} },
{"Chaotic Spiral Amulet", {6036988, 36988, 317431, 317432, 317433, 317434, 317435, 317436, 317437, 317438, 317439, 317440, 317441, 317442} },
{"Ancient Measuring Rod", {6036989, 36989, 317443, 317444, 317445, 317446, 317447, 317448, 317449, 317450, 317451, 317452, 317453, 317454} },
{"Raiments of the Titans", {6036991, 36991, 317455, 317456, 317457, 317458, 317459, 317460, 317461, 317462, 317463, 317464, 317465, 317466} },
{"Leather-Braced Chain Leggings", {6036992, 36992, 317467, 317468, 317469, 317470, 317471, 317472, 317473, 317474, 317475, 317476, 317477, 317478} },
{"Seal of the Pantheon", {6036993, 36993, 317479, 317480, 317481, 317482, 317483, 317484, 317485, 317486, 317487, 317488, 317489, 317490} },
{"Projectile Activator", {6036994, 36994, 317491, 317492, 317493, 317494, 317495, 317496, 317497, 317498, 317499, 317500, 317501, 317502} },
{"Fists of Loken", {6036995, 36995, 317503, 317504, 317505, 317506, 317507, 317508, 317509, 317510, 317511, 317512, 317513, 317514} },
{"Hood of the Furtive Assassin", {6036996, 36996, 317515, 317516, 317517, 317518, 317519, 317520, 317521, 317522, 317523, 317524, 317525, 317526} },
{"Sash of the Hardened Watcher", {6036997, 36997, 317527, 317528, 317529, 317530, 317531, 317532, 317533, 317534, 317535, 317536, 317537, 317538} },
{"Assailant Shroud", {317540, 36998, 317539, 317541, 317542, 317543, 317544, 317545, 317546, 317547, 317548, 317549, 317550, 317551} },
{"Boots of the Terrestrial Guardian", {6036999, 36999, 317552, 317553, 317554, 317555, 317556, 317557, 317558, 317559, 317560, 317561, 317562, 317563} },
{"Storming Vortex Bracers", {6037000, 37000, 317564, 317565, 317566, 317567, 317568, 317569, 317570, 317571, 317572, 317573, 317574, 317575} },
{"Binder's Links", {317577, 37002, 317576, 317578, 317579, 317580, 317581, 317582, 317583, 317584, 317585, 317586, 317587, 317588} },
{"Plainwatcher Legplates", {317590, 37004, 317589, 317591, 317592, 317593, 317594, 317595, 317596, 317597, 317598, 317599, 317600, 317601} },
{"D.E.H.T.A. Overshirt", {317603, 37005, 317602, 317604, 317605, 317606, 317607, 317608, 317609, 317610, 317611, 317612, 317613, 317614} },
{"Faux Leather Hood", {317616, 37007, 317615, 317617, 317618, 317619, 317620, 317621, 317622, 317623, 317624, 317625, 317626, 317627} },
{"Ethical Epaulettes", {317629, 37008, 317628, 317630, 317631, 317632, 317633, 317634, 317635, 317636, 317637, 317638, 317639, 317640} },
{"Moral Sabatons", {317642, 37009, 317641, 317643, 317644, 317645, 317646, 317647, 317648, 317649, 317650, 317651, 317652, 317653} },
{"Rod of Poacher Punishment", {317655, 37014, 317654, 317656, 317657, 317658, 317659, 317660, 317661, 317662, 317663, 317664, 317665, 317666} },
{"Dowsing Rod", {317668, 37015, 317667, 317669, 317670, 317671, 317672, 317673, 317674, 317675, 317676, 317677, 317678, 317679} },
{"Wand of the Keeper", {317681, 37016, 317680, 317682, 317683, 317684, 317685, 317686, 317687, 317688, 317689, 317690, 317691, 317692} },
{"Nimble Blade", {317694, 37017, 317693, 317695, 317696, 317697, 317698, 317699, 317700, 317701, 317702, 317703, 317704, 317705} },
{"G.E.H.T.A.", {317707, 37018, 317706, 317708, 317709, 317710, 317711, 317712, 317713, 317714, 317715, 317716, 317717, 317718} },
{"Borean Ward", {317720, 37019, 317719, 317721, 317722, 317723, 317724, 317725, 317726, 317727, 317728, 317729, 317730, 317731} },
{"Claw of the Tuskarr", {317733, 37021, 317732, 317734, 317735, 317736, 317737, 317738, 317739, 317740, 317741, 317742, 317743, 317744} },
{"Shark Stabber", {317746, 37022, 317745, 317747, 317748, 317749, 317750, 317751, 317752, 317753, 317754, 317755, 317756, 317757} },
{"Compact Arrow Launcher", {317759, 37023, 317758, 317760, 317761, 317762, 317763, 317764, 317765, 317766, 317767, 317768, 317769, 317770} },
{"Medicine Stick", {317772, 37024, 317771, 317773, 317774, 317775, 317776, 317777, 317778, 317779, 317780, 317781, 317783, 317784} },
{"Blubber Carver", {317786, 37025, 317785, 317787, 317788, 317789, 317790, 317791, 317792, 317793, 317794, 317795, 317796, 317797} },
{"Spirit Channeller's Rod", {317799, 37026, 317798, 317800, 317801, 317802, 317803, 317804, 317805, 317806, 317807, 317808, 317809, 317810} },
{"Condor-Bone Star", {317812, 37028, 317811, 317813, 317814, 317815, 317816, 317817, 317818, 317819, 317820, 317821, 317822, 317823} },
{"Fin Carver", {317825, 37029, 317824, 317826, 317827, 317828, 317829, 317830, 317831, 317832, 317833, 317834, 317835, 317836} },
{"Blubber Grinder", {317838, 37030, 317837, 317839, 317840, 317841, 317842, 317843, 317844, 317845, 317846, 317847, 317848, 317849} },
{"Zook's Walking Stick", {317851, 37031, 317850, 317852, 317853, 317854, 317855, 317856, 317857, 317858, 317859, 317860, 317861, 317862} },
{"Edge of the Tuskarr", {317864, 37032, 317863, 317865, 317866, 317867, 317868, 317869, 317870, 317871, 317872, 317873, 317874, 317875} },
{"Manual of the Tides", {317877, 37033, 317876, 317878, 317879, 317880, 317881, 317882, 317883, 317884, 317885, 317886, 317887, 317888} },
{"Lobstrock Slicer", {317890, 37034, 317889, 317891, 317892, 317893, 317894, 317895, 317896, 317897, 317898, 317899, 317900, 317901} },
{"Fish-Eye Poker", {317903, 37036, 317902, 317904, 317905, 317906, 317907, 317908, 317909, 317910, 317911, 317912, 317913, 317914} },
{"Ritualistic Athame", {6037037, 37037, 317915, 317916, 317917, 317918, 317919, 317920, 317921, 317922, 317923, 317924, 317925, 317926} },
{"Brazier Igniter", {6037038, 37038, 317927, 317928, 317929, 317930, 317931, 317932, 317933, 317934, 317935, 317936, 317937, 317938} },
{"Mrgl Blade", {317940, 37039, 317939, 317941, 317942, 317943, 317944, 317945, 317946, 317947, 317948, 317949, 317950, 317951} },
{"Svala's Bloodied Shackles", {6037040, 37040, 317952, 317953, 317954, 317955, 317956, 317957, 317958, 317959, 317960, 317961, 317962, 317963} },
{"Scepter of the Winterfin", {317965, 37041, 317964, 317966, 317967, 317968, 317969, 317970, 317971, 317972, 317973, 317974, 317975, 317976} },
{"Glimmering Orca Tooth", {317978, 37042, 317977, 317979, 317980, 317981, 317982, 317983, 317984, 317985, 317986, 317987, 317988, 317989} },
{"Tear-Linked Gauntlets", {6037043, 37043, 317990, 317991, 317992, 317993, 317994, 317995, 317996, 317997, 317998, 317999, 318000, 318001} },
{"Amphibious Speargun", {318003, 37044, 318002, 318004, 318005, 318006, 318007, 318008, 318009, 318010, 318011, 318012, 318013, 318014} },
{"Shell Smasher", {318016, 37046, 318015, 318017, 318018, 318019, 318020, 318021, 318022, 318023, 318024, 318025, 318026, 318027} },
{"Branch of Everlasting Flame", {318029, 37047, 318028, 318030, 318031, 318032, 318033, 318034, 318035, 318036, 318037, 318038, 318039, 318040} },
{"Shroud of Resurrection", {6037048, 37048, 318041, 318042, 318043, 318044, 318045, 318046, 318047, 318048, 318049, 318050, 318051, 318052} },
{"Lost Marksman's Rifle", {318054, 37049, 318053, 318055, 318056, 318057, 318058, 318059, 318060, 318061, 318062, 318063, 318064, 318065} },
{"Trophy Gatherer", {6037050, 37050, 318066, 318067, 318068, 318069, 318070, 318071, 318072, 318073, 318074, 318075, 318076, 318077} },
{"Seal of Valgarde", {6037051, 37051, 318078, 318079, 318080, 318081, 318082, 318083, 318084, 318085, 318086, 318087, 318088, 318089} },
{"Reanimated Armor", {6037052, 37052, 318090, 318091, 318092, 318093, 318094, 318095, 318096, 318097, 318098, 318099, 318100, 318101} },
{"Amulet of Deflected Blows", {6037053, 37053, 318102, 318103, 318104, 318105, 318106, 318107, 318108, 318109, 318110, 318111, 318112, 318113} },
{"Frostbiter", {318115, 37054, 318114, 318116, 318117, 318118, 318119, 318120, 318121, 318122, 318123, 318124, 318125, 318126} },
{"Silken Amice of the Ymirjar", {6037055, 37055, 318127, 318128, 318129, 318130, 318131, 318132, 318133, 318134, 318135, 318136, 318137, 318138} },
{"Harpooner's Striders", {6037056, 37056, 318139, 318140, 318141, 318142, 318143, 318144, 318145, 318146, 318147, 318148, 318149, 318150} },
{"Drake Rider's Tunic", {6037057, 37057, 318151, 318152, 318153, 318154, 318155, 318156, 318157, 318158, 318159, 318160, 318161, 318162} },
{"Signet of Ranulf", {6037058, 37058, 318163, 318164, 318165, 318166, 318167, 318168, 318169, 318170, 318171, 318172, 318173, 318174} },
{"Jeweled Coronation Sword", {6037060, 37060, 318175, 318176, 318177, 318178, 318179, 318180, 318181, 318182, 318183, 318184, 318185, 318186} },
{"Tor's Crest", {6037061, 37061, 318187, 318188, 318189, 318190, 318191, 318192, 318193, 318194, 318195, 318196, 318197, 318198} },
{"Crown of Forgotten Kings", {6037062, 37062, 318199, 318200, 318201, 318202, 318204, 318206, 318207, 318208, 318209, 318210, 318211, 318212} },
{"Vestige of Haldor", {6037064, 37064, 318213, 318214, 318215, 318216, 318217, 318218, 318219, 318220, 318221, 318222, 318223, 318224} },
{"Ymiron's Blade", {6037065, 37065, 318225, 318226, 318227, 318228, 318229, 318230, 318231, 318232, 318233, 318234, 318235, 318236} },
{"Ancient Royal Legguards", {6037066, 37066, 318237, 318238, 318239, 318240, 318241, 318242, 318243, 318244, 318245, 318246, 318247, 318248} },
{"Ceremonial Pyre Mantle", {6037067, 37067, 318249, 318250, 318251, 318252, 318253, 318254, 318255, 318256, 318257, 318258, 318259, 318260} },
{"Berserker's Sabatons", {6037068, 37068, 318261, 318262, 318263, 318264, 318265, 318266, 318267, 318268, 318269, 318270, 318271, 318272} },
{"Dragonflayer Seer's Bindings", {6037069, 37069, 318273, 318274, 318275, 318276, 318277, 318278, 318279, 318280, 318281, 318282, 318283, 318284} },
{"Tundra Wolf Boots", {6037070, 37070, 318285, 318286, 318287, 318288, 318289, 318290, 318291, 318292, 318293, 318294, 318295, 318296} },
{"Jagged Icefist", {318298, 37072, 318297, 318299, 318300, 318301, 318302, 318303, 318304, 318305, 318306, 318307, 318308, 318309} },
{"Hungering Greatstaff", {318311, 37073, 318310, 318312, 318313, 318314, 318315, 318316, 318317, 318318, 318319, 318320, 318321, 318322} },
{"Greatmother's Talisman of Cleansing", {318324, 37074, 318323, 318325, 318326, 318327, 318328, 318329, 318330, 318331, 318332, 318333, 318334, 318335} },
{"Serrated Scale Shank", {318337, 37075, 318336, 318338, 318339, 318340, 318341, 318342, 318343, 318344, 318345, 318346, 318347, 318348} },
{"Fiery Prod", {318350, 37076, 318349, 318351, 318352, 318353, 318354, 318355, 318356, 318357, 318358, 318359, 318360, 318361} },
{"Smoldering Talon", {318363, 37077, 318362, 318364, 318365, 318366, 318367, 318368, 318369, 318370, 318371, 318372, 318373, 318374} },
{"Rod of the Crimson Keeper", {318376, 37078, 318375, 318377, 318378, 318379, 318380, 318381, 318382, 318383, 318384, 318385, 318386, 318387} },
{"Enchanted Wire Stitching", {6037079, 37079, 318388, 318389, 318390, 318391, 318392, 318393, 318394, 318395, 318396, 318397, 318398, 318399} },
{"Crimson Will", {318401, 37080, 318400, 318402, 318403, 318404, 318405, 318406, 318407, 318408, 318409, 318410, 318411, 318412} },
{"Meathook's Slicer", {6037081, 37081, 318413, 318414, 318415, 318416, 318417, 318418, 318419, 318420, 318421, 318422, 318423, 318424} },
{"Slaughterhouse Sabatons", {6037082, 37082, 318425, 318426, 318427, 318428, 318429, 318430, 318431, 318432, 318433, 318434, 318435, 318436} },
{"Kilt of Sewn Flesh", {6037083, 37083, 318437, 318438, 318439, 318440, 318441, 318442, 318443, 318444, 318445, 318446, 318447, 318448} },
{"Flowing Cloak of Command", {6037084, 37084, 318449, 318450, 318451, 318452, 318453, 318454, 318455, 318456, 318457, 318458, 318459, 318460} },
{"Tome of Salramm", {6037086, 37086, 318461, 318462, 318463, 318464, 318465, 318466, 318467, 318468, 318469, 318470, 318471, 318472} },
{"Spiked Metal Cilice", {6037088, 37088, 318473, 318474, 318475, 318476, 318477, 318478, 318479, 318480, 318481, 318482, 318483, 318484} },
{"Waistband of the Thuzadin", {6037095, 37095, 318485, 318486, 318487, 318488, 318489, 318490, 318491, 318492, 318493, 318494, 318495, 318496} },
{"Necklace of the Chrono-Lord", {6037096, 37096, 318497, 318498, 318499, 318500, 318501, 318502, 318503, 318504, 318505, 318506, 318507, 318508} },
{"Sempiternal Staff", {6037099, 37099, 318509, 318510, 318511, 318512, 318513, 318514, 318515, 318516, 318517, 318518, 318519, 318520} },
{"Treads of Altered History", {6037105, 37105, 318521, 318522, 318523, 318524, 318525, 318526, 318527, 318528, 318529, 318530, 318531, 318532} },
{"Ouroboros Belt", {6037106, 37106, 318533, 318534, 318535, 318536, 318537, 318538, 318539, 318540, 318541, 318542, 318543, 318544} },
{"Leeka's Shield", {6037107, 37107, 318545, 318546, 318547, 318548, 318549, 318550, 318551, 318552, 318553, 318554, 318555, 318556} },
{"Dreadlord's Blade", {6037108, 37108, 318557, 318558, 318559, 318560, 318561, 318562, 318563, 318564, 318565, 318566, 318567, 318568} },
{"Discarded Silver Hand Spaulders", {6037109, 37109, 318569, 318570, 318571, 318572, 318573, 318574, 318575, 318576, 318577, 318578, 318579, 318580} },
{"Gauntlets of Dark Conversion", {6037110, 37110, 318581, 318582, 318583, 318584, 318585, 318586, 318587, 318588, 318589, 318590, 318591, 318592} },
{"Soul Preserver", {6037111, 37111, 318593, 318594, 318595, 318596, 318597, 318598, 318599, 318600, 318601, 318602, 318603, 318604} },
{"Beguiling Scepter", {6037112, 37112, 318605, 318606, 318607, 318610, 318611, 318612, 318613, 318614, 318615, 318616, 318617, 318618} },
{"Demonic Fabric Bands", {6037113, 37113, 318619, 318620, 318621, 318622, 318623, 318624, 318625, 318626, 318627, 318628, 318629, 318630} },
{"Gloves of Northern Lordaeron", {6037114, 37114, 318631, 318632, 318633, 318634, 318635, 318636, 318637, 318638, 318639, 318640, 318641, 318642} },
{"Crusader's Square Pauldrons", {6037115, 37115, 318643, 318644, 318645, 318646, 318647, 318648, 318649, 318650, 318651, 318652, 318653, 318654} },
{"Epaulets of Market Row", {6037116, 37116, 318655, 318656, 318657, 318658, 318659, 318660, 318661, 318662, 318663, 318664, 318665, 318666} },
{"King's Square Bracers", {6037117, 37117, 318667, 318668, 318669, 318670, 318671, 318672, 318673, 318674, 318675, 318676, 318677, 318678} },
{"Taut Driftwood Bow", {318680, 37122, 318679, 318681, 318682, 318683, 318684, 318685, 318686, 318687, 318688, 318689, 318690, 318691} },
{"Brightbrew Charm", {6037127, 37127, 318692, 318693, 318694, 318695, 318696, 318697, 318698, 318699, 318700, 318701, 318702, 318703} },
{"Balebrew Charm", {6037128, 37128, 318704, 318705, 318706, 318707, 318708, 318709, 318710, 318711, 318712, 318714, 318716, 318717} },
{"Regenerative Cloth", {319274, 37203, 319273, 319275, 319276, 319277, 319278, 319279, 319280, 319281, 319282, 319283, 319284, 319285} },
{"Transborean Leggings", {319287, 37204, 319286, 319288, 319289, 319290, 319291, 319292, 319293, 319294, 319295, 319296, 319297, 319298} },
{"Transborean Mantle", {319300, 37205, 319299, 319301, 319302, 319303, 319304, 319305, 319306, 319307, 319308, 319309, 319310, 319311} },
{"Weathered Worker Cloak", {319313, 37206, 319312, 319314, 319315, 319316, 319317, 319318, 319319, 319320, 319321, 319322, 319323, 319324} },
{"Seafarer Boots", {319326, 37207, 319325, 319327, 319328, 319329, 319330, 319331, 319332, 319333, 319338, 319359, 319366, 319383} },
{"Transborean Bracers", {319404, 37208, 319384, 319408, 319409, 319410, 319411, 319412, 319413, 319414, 319415, 319416, 319417, 319418} },
{"Wharfmaster's Hat", {319420, 37209, 319419, 319421, 319422, 319423, 319424, 319425, 319426, 319427, 319428, 319429, 319440, 319441} },
{"Seafarer Cinch", {319443, 37210, 319442, 319444, 319445, 319446, 319447, 319448, 319449, 319450, 319451, 319452, 319453, 319454} },
{"Iceflow Footwraps", {319456, 37211, 319455, 319457, 319458, 319459, 319460, 319461, 319462, 319463, 319464, 319465, 319466, 319467} },
{"Transborean Wraps", {319469, 37212, 319468, 319470, 319471, 319472, 319473, 319474, 319475, 319476, 319477, 319478, 319479, 319480} },
{"Iceflow Wristwraps", {319482, 37213, 319481, 319483, 319484, 319485, 319486, 319487, 319488, 319489, 319490, 319491, 319492, 319493} },
{"Sweltering Leggings", {319495, 37214, 319494, 319496, 319497, 319498, 319499, 319500, 319501, 319502, 319503, 319504, 319505, 319506} },
{"Lost Sea Oculus", {319508, 37215, 319507, 319509, 319510, 319511, 319512, 319513, 319514, 319515, 319516, 319517, 319518, 319519} },
{"Sweltering Handwraps", {319605, 37223, 319604, 319606, 319607, 319608, 319609, 319610, 319611, 319612, 319613, 319614, 319615, 319616} },
{"Sweltering Belt", {319618, 37224, 319617, 319619, 319620, 319621, 319622, 319623, 319624, 319625, 319626, 319627, 319628, 319629} },
{"Sweltering Sandals", {319631, 37225, 319630, 319632, 319633, 319634, 319635, 319636, 319637, 319638, 319639, 319640, 319641, 319642} },
{"Sweltering Robes", {319644, 37226, 319643, 319645, 319646, 319647, 319648, 319649, 319650, 319651, 319652, 319653, 319654, 319655} },
{"Seafarer Mantle", {319657, 37227, 319656, 319658, 319659, 319660, 319661, 319662, 319663, 319664, 319665, 319666, 319667, 319668} },
{"Sweltering Cuffs", {319670, 37228, 319669, 319671, 319672, 319673, 319674, 319675, 319676, 319677, 319678, 319679, 319680, 319681} },
{"Frostspeaker Collar", {319695, 37231, 319694, 319696, 319697, 319698, 319699, 319700, 319701, 319702, 319703, 319704, 319705, 319706} },
{"Layered Frost Hood", {319720, 37234, 319719, 319721, 319722, 319723, 319724, 319725, 319726, 319727, 319728, 319729, 319730, 319731} },
{"Layered Frost Sandals", {319782, 37239, 319781, 319783, 319784, 319785, 319786, 319787, 319788, 319789, 319790, 319791, 319792, 319793} },
{"Layered Frost Robes", {320100, 37270, 320099, 320101, 320102, 320103, 320104, 320105, 320106, 320107, 320108, 320109, 320110, 320111} },
{"Dusk Watcher's Belt", {320113, 37271, 320112, 320114, 320115, 320116, 320117, 320118, 320119, 320120, 320121, 320122, 320123, 320124} },
{"Wizzlenob Shoulder Covers", {320126, 37272, 320125, 320127, 320128, 320129, 320130, 320131, 320132, 320133, 320134, 320135, 320136, 320137} },
{"Crimson Keeper Mitts", {320139, 37273, 320138, 320140, 320141, 320142, 320143, 320144, 320145, 320146, 320147, 320148, 320149, 320150} },
{"Mender's Cover", {320152, 37274, 320151, 320153, 320154, 320155, 320156, 320157, 320158, 320159, 320160, 320161, 320162, 320163} },
{"Mantle of Congealed Anger", {320165, 37275, 320164, 320166, 320167, 320168, 320169, 320170, 320171, 320172, 320173, 320174, 320175, 320176} },
{"Gorge's Loungewear", {320178, 37276, 320177, 320179, 320180, 320181, 320182, 320183, 320184, 320185, 320186, 320187, 320188, 320189} },
{"Ermine Ruff Cloak", {320191, 37277, 320190, 320192, 320193, 320194, 320195, 320196, 320197, 320198, 320199, 320200, 320201, 320202} },
{"Flame Hardened Waistband", {320230, 37280, 320229, 320231, 320232, 320233, 320234, 320235, 320236, 320237, 320238, 320239, 320240, 320241} },
{"Cavernous Gauntlets", {320256, 37282, 320255, 320267, 320268, 320269, 320270, 320271, 320272, 320273, 320274, 320275, 320276, 320277} },
{"Wandering Healer's Kilt", {320279, 37283, 320278, 320280, 320281, 320282, 320283, 320284, 320285, 320286, 320287, 320288, 320289, 320290} },
{"Grips of the Windswept Plains", {320493, 37319, 320492, 320494, 320495, 320496, 320497, 320498, 320499, 320500, 320501, 320502, 320503, 320504} },
{"Spaulders of Echoing Truth", {320506, 37320, 320505, 320507, 320508, 320509, 320510, 320511, 320512, 320513, 320514, 320515, 320516, 320517} },
{"Flame Hardened Wristbindings", {320532, 37322, 320531, 320533, 320534, 320535, 320536, 320537, 320538, 320539, 320540, 320541, 320542, 320543} },
{"Warsong Scout Spaulders", {320571, 37325, 320570, 320572, 320573, 320574, 320575, 320576, 320577, 320578, 320579, 320580, 320581, 320582} },
{"Reinforced Caribou-Hide Leggings", {320584, 37351, 320583, 320585, 320586, 320587, 320588, 320589, 320590, 320591, 320592, 320593, 320594, 320595} },
{"Regenerative Hide Harness", {320597, 37352, 320596, 320598, 320599, 320600, 320601, 320602, 320603, 320604, 320605, 320606, 320607, 320608} },
{"Reinforced Caribou-Hide Helm", {320610, 37353, 320609, 320611, 320612, 320613, 320614, 320615, 320616, 320617, 320618, 320619, 320620, 320621} },
{"Reinforced Caribou-Hide Boots", {320623, 37354, 320622, 320624, 320625, 320626, 320627, 320628, 320629, 320630, 320631, 320632, 320633, 320634} },
{"Reinforced Caribou-Hide Chestguard", {320636, 37355, 320635, 320637, 320638, 320639, 320640, 320641, 320642, 320643, 320644, 320645, 320646, 320647} },
{"Rhinohide Wristwraps", {320649, 37356, 320648, 320650, 320651, 320652, 320653, 320654, 320655, 320656, 320657, 320658, 320659, 320660} },
{"Shivering Healer's Cloak", {320662, 37357, 320661, 320663, 320664, 320665, 320666, 320667, 320668, 320669, 320670, 320671, 320672, 320673} },
{"Rhinohide Gloves", {320843, 37375, 320842, 320844, 320845, 320846, 320847, 320848, 320849, 320850, 320851, 320852, 320853, 320854} },
{"Sealskin Bindings", {320880, 37378, 320879, 320881, 320882, 320883, 320884, 320885, 320886, 320887, 320888, 320889, 320890, 320891} },
{"Whalehunter Leggings", {320905, 37380, 320904, 320906, 320907, 320908, 320909, 320910, 320911, 320912, 320913, 320914, 320915, 320916} },
{"Charred Drakehide Belt", {320918, 37382, 320917, 320919, 320920, 320921, 320922, 320923, 320924, 320925, 320926, 320927, 320928, 320929} },
{"Seared Scale Cape", {320931, 37383, 320930, 320932, 320933, 320934, 320935, 320936, 320937, 320938, 320939, 320940, 320941, 320942} },
{"Seared Harness", {320956, 37385, 320955, 320957, 320958, 320959, 320960, 320961, 320962, 320963, 320964, 320965, 320966, 320967} },
{"Ruby Heart Spaulders", {320969, 37386, 320968, 320970, 320971, 320972, 320973, 320974, 320975, 320976, 320977, 320978, 320979, 320980} },
{"Charred Treads", {320982, 37387, 320981, 320983, 320984, 320985, 320986, 320987, 320988, 320989, 320990, 320991, 320992, 320993} },
{"Reinforced Elastic Band", {320995, 37388, 320994, 320996, 320997, 320998, 320999, 321000, 321001, 321002, 321003, 321004, 321005, 321006} },
{"Rhinohide Mask", {321032, 37391, 321031, 321033, 321034, 321035, 321036, 321037, 321038, 321039, 321040, 321041, 321042, 321043} },
{"Soggy Hide Pauldrons", {321045, 37392, 321044, 321046, 321047, 321048, 321049, 321050, 321051, 321052, 321053, 321054, 321055, 321056} },
{"Shadewrap Gloves", {321058, 37393, 321057, 321059, 321060, 321061, 321062, 321063, 321064, 321065, 321066, 321067, 321068, 321069} },
{"Marshwalker Waistguard", {321071, 37394, 321070, 321072, 321073, 321074, 321075, 321076, 321077, 321078, 321079, 321080, 321081, 321082} },
{"Whalehunter Gloves", {321096, 37396, 321095, 321097, 321098, 321099, 321100, 321101, 321102, 321103, 321104, 321105, 321106, 321107} },
{"Floodplain Shoulderpads", {321136, 37399, 321135, 321137, 321138, 321139, 321140, 321141, 321142, 321143, 321144, 321145, 321146, 321147} },
{"Whalehunter Cuffs", {321149, 37400, 321148, 321150, 321151, 321152, 321153, 321154, 321155, 321156, 321157, 321158, 321159, 321160} },
{"Floodplain Vest", {321174, 37402, 321173, 321175, 321176, 321177, 321178, 321179, 321180, 321181, 321182, 321183, 321184, 321185} },
{"Marshwalker Boots", {321187, 37403, 321186, 321188, 321189, 321190, 321191, 321192, 321193, 321194, 321195, 321196, 321197, 321198} },
{"Floodplain Cover", {321200, 37404, 321199, 321201, 321202, 321203, 321204, 321205, 321206, 321207, 321208, 321209, 321210, 321211} },
{"Marshwalker Pauldrons", {321213, 37405, 321212, 321214, 321215, 321216, 321217, 321218, 321219, 321220, 321221, 321222, 321223, 321224} },
{"Denwatcher's Leggings", {321226, 37406, 321225, 321227, 321228, 321229, 321230, 321231, 321232, 321233, 321234, 321235, 321236, 321237} },
{"Farseer's Headpiece", {321294, 37414, 321293, 321295, 321296, 321297, 321298, 321299, 321300, 321301, 321302, 321303, 321304, 321305} },
{"Tundrastrider Ringmail", {321307, 37415, 321306, 321308, 321309, 321310, 321311, 321312, 321313, 321314, 321315, 321316, 321317, 321318} },
{"Westrift Handcovers", {321320, 37417, 321319, 321321, 321322, 321323, 321324, 321325, 321326, 321327, 321328, 321339, 321340, 321341} },
{"Seaspeaker Legguards", {321358, 37418, 321342, 321363, 321369, 321371, 321377, 321378, 321379, 321380, 321381, 321382, 321383, 321384} },
{"Seaspeaker Mantle", {321386, 37419, 321385, 321419, 321420, 321421, 321422, 321423, 321424, 321425, 321426, 321427, 321428, 321429} },
{"Sharkproof Boots", {321431, 37420, 321430, 321432, 321433, 321434, 321435, 321436, 321437, 321438, 321439, 321440, 321441, 321442} },
{"Waverunner Waistband", {321444, 37421, 321443, 321445, 321446, 321447, 321448, 321449, 321450, 321451, 321465, 321504, 321505, 321506} },
{"Westrift Wristguards", {321508, 37422, 321507, 321509, 321510, 321511, 321512, 321513, 321514, 321515, 321516, 321517, 321518, 321519} },
{"Sharkproof Coif", {321521, 37423, 321520, 321522, 321523, 321524, 321525, 321526, 321527, 321528, 321529, 321530, 321531, 321532} },
{"Plainhunter's Epaulettes", {321534, 37424, 321533, 321535, 321536, 321537, 321538, 321539, 321540, 321541, 321542, 321543, 321544, 321545} },
{"Tundrastrider Boots", {321547, 37425, 321546, 321548, 321549, 321550, 321551, 321552, 321553, 321554, 321555, 321556, 321557, 321558} },
{"Rusty Mesh Leggings", {321560, 37426, 321559, 321561, 321562, 321563, 321564, 321565, 321566, 321567, 321568, 321569, 321570, 321571} },
{"Plainhunter's Waistband", {321573, 37427, 321572, 321574, 321575, 321576, 321577, 321578, 321580, 321584, 321587, 321588, 321589, 321590} },
{"Ring-Ridden Wrist Protectors", {321592, 37428, 321591, 321593, 321594, 321595, 321612, 321613, 321614, 321628, 321629, 321630, 321631, 321632} },
{"Glimmering Ringmail Gloves", {321634, 37429, 321633, 321636, 321637, 321638, 321640, 321641, 321642, 321643, 321644, 321646, 321649, 321653} },
{"Layered Scale Boots", {321655, 37433, 321654, 321656, 321657, 321658, 321659, 321660, 321661, 321662, 321709, 321710, 321711, 321712} },
{"Cauterizing Chain Strand", {321714, 37434, 321713, 321716, 321717, 321718, 321719, 321720, 321721, 321722, 321723, 321724, 321725, 321726} },
{"Flame Infused Bindings", {321728, 37435, 321727, 321729, 321730, 321731, 321732, 321733, 321734, 321735, 321736, 321737, 321738, 321739} },
{"Seaspeaker Gloves", {321741, 37436, 321740, 321742, 321743, 321744, 321745, 321746, 321747, 321748, 321749, 321750, 321751, 321752} },
{"Plainhunter's Chestpiece", {321754, 37437, 321753, 321755, 321756, 321757, 321758, 321759, 321760, 321761, 321762, 321763, 321764, 321765} },
{"Spiked Magmoth Gloves", {321767, 37439, 321766, 321768, 321769, 321770, 321771, 321772, 321773, 321774, 321775, 321776, 321777, 321778} },
{"Spiked Magmoth Chestpiece", {321780, 37440, 321779, 321781, 321782, 321783, 321784, 321785, 321786, 321787, 321788, 321789, 321790, 321791} },
{"Spiked Magmoth Mantle", {321793, 37441, 321792, 321794, 321795, 321796, 321797, 321798, 321799, 321807, 321808, 321811, 321812, 321813} },
{"Chilled Mail Boots", {321816, 37442, 321815, 321817, 321818, 321819, 321820, 321821, 321822, 321823, 321824, 321825, 321826, 321827} },
{"Spiked Magmoth Helm", {321829, 37443, 321828, 321830, 321831, 321832, 321833, 321834, 321835, 321840, 321841, 321842, 321843, 321844} },
{"Tank Commander's Treads", {321860, 37446, 321859, 321861, 321862, 321863, 321864, 321865, 321866, 321867, 321868, 321869, 321870, 321871} },
{"Reinforced Mendicant's Cowl", {321873, 37447, 321872, 321874, 321875, 321876, 321877, 321878, 321879, 321880, 321881, 321882, 321883, 321884} },
{"Cauterizing Chain Leggings", {321967, 37456, 321966, 321968, 321969, 321970, 321971, 321972, 321973, 321974, 321975, 321976, 321977, 321978} },
{"Wristguards of Rocky Horror", {321993, 37458, 321992, 321994, 321995, 321996, 321997, 321998, 321999, 322000, 322001, 322002, 322003, 322004} },
{"Tidebreaker Trident", {6037461, 37461, 322005, 322006, 322007, 322008, 322009, 322010, 322011, 322012, 322013, 322014, 322015, 322016} },
{"Sea King's Crown", {322018, 37462, 322017, 322019, 322020, 322021, 322022, 322023, 322024, 322025, 322026, 322027, 322028, 322029} },
{"Winterfin Patch of Honor", {322031, 37463, 322030, 322032, 322033, 322034, 322035, 322036, 322037, 322038, 322039, 322040, 322041, 322042} },
{"Girdle of Ripped Space", {322096, 37471, 322095, 322097, 322098, 322099, 322100, 322101, 322102, 322103, 322104, 322105, 322106, 322107} },
{"Benign Crusader's Plate", {322148, 37475, 322147, 322149, 322150, 322151, 322152, 322153, 322154, 322155, 322156, 322157, 322158, 322159} },
{"Gorge's Breastplate of Bloodrage", {322161, 37476, 322160, 322162, 322163, 322164, 322165, 322166, 322167, 322168, 322169, 322170, 322171, 322172} },
{"Amberplate Grips", {322187, 37478, 322186, 322188, 322189, 322190, 322191, 322192, 322193, 322194, 322195, 322196, 322197, 322198} },
{"Amberplate Legguards", {322200, 37479, 322199, 322201, 322202, 322203, 322204, 322205, 322206, 322207, 322208, 322209, 322210, 322211} },
{"Mightstone Helm", {322213, 37480, 322212, 322214, 322215, 322216, 322217, 322218, 322219, 322220, 322221, 322222, 322223, 322224} },
{"Chestguard of Salved Wounds", {322226, 37481, 322225, 322227, 322228, 322229, 322230, 322231, 322232, 322233, 322234, 322235, 322236, 322237} },
{"Mightstone Legplates", {322239, 37482, 322238, 322240, 322241, 322242, 322243, 322244, 322245, 322246, 322247, 322248, 322249, 322250} },
{"Seabone Heaume", {322252, 37483, 322251, 322253, 322254, 322255, 322256, 322257, 322258, 322259, 322260, 322261, 322262, 322263} },
{"Mendicant's Treads", {322265, 37484, 322264, 322266, 322267, 322268, 322269, 322270, 322271, 322272, 322273, 322274, 322275, 322276} },
{"Clam Collector Gauntlets", {322278, 37485, 322277, 322279, 322280, 322281, 322282, 322283, 322284, 322285, 322286, 322287, 322288, 322289} },
{"Landlocked Wristguards", {322291, 37486, 322290, 322292, 322293, 322294, 322295, 322296, 322297, 322298, 322299, 322300, 322301, 322302} },
{"Seabone Legplates", {322304, 37487, 322303, 322305, 322306, 322307, 322308, 322309, 322310, 322311, 322312, 322313, 322314, 322315} },
{"Battle Leader's Breastplate", {322317, 37505, 322316, 322318, 322319, 322320, 322321, 322322, 322323, 322324, 322325, 322326, 322327, 322328} },
{"Bogstrok Plate Gloves", {322330, 37506, 322329, 322331, 322332, 322333, 322334, 322335, 322336, 322337, 322338, 322339, 322340, 322341} },
{"Chilled Shoulderplates", {322343, 37507, 322342, 322344, 322345, 322346, 322347, 322348, 322349, 322350, 322351, 322352, 322353, 322354} },
{"Sinking Pauldrons", {322356, 37508, 322355, 322357, 322358, 322359, 322360, 322361, 322362, 322363, 322364, 322365, 322366, 322367} },
{"Seething Waistguard", {322369, 37509, 322368, 322370, 322371, 322372, 322373, 322374, 322375, 322376, 322377, 322378, 322379, 322380} },
{"Wristguards of Edification", {322382, 37510, 322381, 322383, 322384, 322385, 322386, 322387, 322388, 322389, 322390, 322391, 322392, 322393} },
{"Crucible Waistguard", {322395, 37511, 322394, 322397, 322398, 322400, 322401, 322403, 322404, 322405, 322406, 322407, 322408, 322409} },
{"Gauntlets of the Crimson Guardian", {322411, 37512, 322410, 322412, 322413, 322414, 322415, 322432, 322433, 322434, 322435, 322444, 322445, 322446} },
{"Helm of the Crimson Drakonid", {322448, 37513, 322447, 322449, 322450, 322451, 322452, 322453, 322454, 322455, 322456, 322457, 322458, 322459} },
{"Freed Shackles", {322461, 37514, 322460, 322462, 322463, 322472, 322473, 322474, 322475, 322484, 322485, 322486, 322487, 322520} },
{"Lost Crusader Waistguard", {322522, 37515, 322521, 322523, 322524, 322525, 322526, 322527, 322528, 322529, 322530, 322531, 322532, 322533} },
{"Chilled Greaves", {322535, 37516, 322534, 322536, 322537, 322538, 322539, 322540, 322541, 322542, 322543, 322544, 322545, 322546} },
{"Chilled Pauldrons", {322548, 37517, 322547, 322549, 322550, 322551, 322552, 322553, 322554, 322555, 322556, 322557, 322558, 322559} },
{"Amberplate Waistguard", {322561, 37518, 322560, 322562, 322563, 322564, 322565, 322566, 322567, 322568, 322569, 322570, 322571, 322572} },
{"Amberplate Headguard", {322574, 37519, 322573, 322575, 322576, 322577, 322578, 322579, 322580, 322581, 322582, 322583, 322584, 322585} },
{"Plainkeeper Blockade", {322587, 37520, 322586, 322588, 322589, 322590, 322591, 322592, 322593, 322594, 322595, 322596, 322597, 322598} },
{"Icechill Buckler", {322600, 37521, 322599, 322601, 322602, 322603, 322604, 322605, 322606, 322607, 322608, 322609, 322610, 322611} },
{"Earthborn Greaves", {322613, 37522, 322612, 322614, 322615, 322616, 322617, 322618, 322619, 322620, 322621, 322622, 322623, 322624} },
{"Rigid Tuskring", {322626, 37523, 322625, 322627, 322628, 322629, 322630, 322631, 322632, 322633, 322634, 322635, 322636, 322637} },
{"Scout's Signet Ring", {322639, 37524, 322638, 322640, 322641, 322642, 322643, 322644, 322645, 322646, 322647, 322648, 322649, 322650} },
{"Deep Sea Tuskring", {322652, 37525, 322651, 322653, 322654, 322655, 322656, 322657, 322658, 322659, 322660, 322661, 322662, 322663} },
{"Thin Dexterity Enhancing Tube", {322665, 37526, 322664, 322666, 322667, 322668, 322669, 322670, 322671, 322672, 322673, 322674, 322675, 322676} },
{"Shimmering Band", {322678, 37527, 322677, 322679, 322680, 322681, 322682, 322683, 322684, 322685, 322686, 322687, 322688, 322689} },
{"Dry Earth Circle", {322692, 37528, 322690, 322693, 322694, 322695, 322696, 322697, 322698, 322699, 322700, 322701, 322702, 322703} },
{"Shivering Healer's Ring", {322705, 37529, 322704, 322706, 322707, 322708, 322709, 322710, 322717, 322719, 322723, 322724, 322725, 322726} },
{"Icy Ripper Ring", {322728, 37530, 322727, 322729, 322733, 322734, 322735, 322736, 322737, 322738, 322739, 322740, 322741, 322742} },
{"Stave of the Windborn", {322757, 37535, 322756, 322758, 322759, 322760, 322761, 322762, 322763, 322764, 322765, 322766, 322767, 322768} },
{"Stave of the Spiritcaller", {322783, 37537, 322782, 322784, 322785, 322786, 322787, 322788, 322789, 322790, 322791, 322792, 322793, 322794} },
{"Giant Turtle Collar", {322796, 37541, 322795, 322797, 322805, 322814, 322817, 322822, 322823, 322824, 322825, 322826, 322827, 322828} },
{"Pugnacious Collar", {322830, 37543, 322829, 322831, 322832, 322833, 322834, 322835, 322836, 322837, 322838, 322839, 322840, 322841} },
{"Drakebone Necklace", {322843, 37544, 322842, 322844, 322845, 322846, 322847, 322848, 322849, 322850, 322851, 322852, 322853, 322854} },
{"Graven Shoveltusk Pendant", {322856, 37545, 322855, 322857, 322858, 322859, 322860, 322861, 322862, 322863, 322864, 322865, 322866, 322867} },
{"Choker of the Northern Wind", {322869, 37546, 322868, 322870, 322871, 322872, 322873, 322874, 322875, 322876, 322877, 322878, 322879, 322880} },
{"Fireborn Warhammer", {322882, 37547, 322881, 322883, 322884, 322885, 322886, 322887, 322888, 322889, 322890, 322891, 322892, 322893} },
{"Iceflow Collar", {322895, 37548, 322894, 322896, 322897, 322898, 322899, 322900, 322901, 322902, 322903, 322904, 322905, 322906} },
{"Warsong's Wrath", {322908, 37555, 322907, 322909, 322910, 322911, 322912, 322913, 322914, 322915, 322916, 322917, 322918, 322919} },
{"Talisman of the Tundra", {322921, 37556, 322920, 322922, 322923, 322924, 322925, 322926, 322927, 322928, 322929, 322930, 322931, 322932} },
{"Warsong's Fervor", {322934, 37557, 322933, 322944, 322945, 322946, 322948, 322949, 322950, 322951, 322952, 322953, 322955, 322956} },
{"Tidal Boon", {322958, 37558, 322957, 322959, 322962, 322963, 322964, 322965, 322966, 322969, 322970, 322971, 322972, 322973} },
{"Serrah's Star", {322975, 37559, 322974, 322976, 322977, 322978, 322979, 322980, 322982, 322984, 322985, 322986, 322987, 322989} },
{"Vial of Renewal", {322991, 37560, 322990, 322992, 322993, 322995, 322996, 322997, 322998, 322999, 323002, 323003, 323007, 323008} },
{"Fury of the Crimson Drake", {323011, 37562, 323010, 323012, 323013, 323015, 323016, 323022, 323024, 323026, 323034, 323051, 323052, 323055} },
{"Scaled Flame Cloak", {323074, 37564, 323058, 323076, 323077, 323078, 323079, 323080, 323081, 323082, 323083, 323084, 323085, 323086} },
{"Durable Worghide Cape", {323088, 37566, 323087, 323089, 323090, 323091, 323092, 323093, 323094, 323095, 323096, 323097, 323098, 323099} },
{"Direbrew's Shanker", {6037597, 37597, 323231, 323232, 323233, 323234, 323235, 323236, 323239, 323240, 323241, 323243, 323244, 323245} },
{"Epic Bland Dagger", {6037611, 37611, 323246, 323247, 323248, 323249, 323250, 323251, 323252, 323253, 323254, 323255, 323256, 323257} },
{"Legguards of Brutalization", {6037743, 37743, 324457, 324458, 324459, 324460, 324461, 324462, 324463, 324464, 324465, 324466, 324467, 324468} },
{"Horrorblood Treads", {6037744, 37744, 324469, 324470, 324471, 324472, 324473, 324474, 324475, 324476, 324477, 324478, 324479, 324480} },
{"Greenhealer's Garb", {6037745, 37745, 324481, 324482, 324483, 324484, 324485, 324486, 324487, 324488, 324489, 324490, 324491, 324492} },
{"Helm of the Burning Soul", {6037746, 37746, 324493, 324494, 324495, 324496, 324497, 324498, 324499, 324500, 324501, 324502, 324503, 324504} },
{"Beneficent Bulwark", {6037747, 37747, 324505, 324506, 324507, 324508, 324509, 324510, 324511, 324512, 324513, 324514, 324515, 324516} },
{"Winterfall's Frozen Necklace", {6037748, 37748, 324517, 324518, 324519, 324520, 324521, 324522, 324523, 324524, 324525, 324526, 324527, 324528} },
{"Shocking Claws", {6037749, 37749, 324529, 324530, 324531, 324532, 324533, 324534, 324535, 324536, 324537, 324538, 324539, 324540} },
{"Tooga's Lost Toenail", {6037751, 37751, 324541, 324542, 324543, 324544, 324545, 324546, 324547, 324548, 324549, 324550, 324551, 324552} },
{"Sandals of Broken Dreams", {6037752, 37752, 324553, 324554, 324555, 324556, 324557, 324558, 324559, 324560, 324561, 324562, 324563, 324564} },
{"Mendicant's Robe of Mendacity", {6037753, 37753, 324565, 324567, 324568, 324569, 324570, 324571, 324572, 324573, 324574, 324575, 324576, 324577} },
{"Shimmersteel Hood", {6037754, 37754, 324578, 324579, 324580, 324581, 324582, 324583, 324584, 324585, 324586, 324587, 324588, 324589} },
{"Leggings of the Icy Heart", {6037755, 37755, 324590, 324591, 324592, 324593, 324594, 324595, 324596, 324597, 324598, 324599, 324600, 324601} },
{"Zoe's Comforting Cape", {6037756, 37756, 324602, 324603, 324604, 324605, 324606, 324607, 324608, 324609, 324610, 324611, 324612, 324613} },
{"Charlotte's Chastizing Pauldrons", {6037757, 37757, 324614, 324615, 324616, 324617, 324618, 324619, 324620, 324621, 324622, 324623, 324624, 324625} },
{"Raine's Choker of Combustion", {6037758, 37758, 324626, 324627, 324628, 324629, 324630, 324631, 324632, 324633, 324634, 324635, 324636, 324637} },
{"Rhie-ay's Clutching Gauntlets", {6037759, 37759, 324638, 324639, 324640, 324641, 324642, 324643, 324644, 324645, 324646, 324647, 324648, 324649} },
{"Cracklefire Wristguards", {6037760, 37760, 324650, 324651, 324652, 324653, 324654, 324655, 324656, 324657, 324658, 324659, 324660, 324661} },
{"Shimmerthread Girdle", {6037761, 37761, 324662, 324663, 324664, 324665, 324666, 324667, 324668, 324669, 324670, 324671, 324672, 324673} },
{"Many-Pocketed Belt", {6037762, 37762, 324674, 324675, 324676, 324677, 324678, 324679, 324680, 324681, 324682, 324683, 324684, 324685} },
{"Treads of the Purifier", {6037763, 37763, 324686, 324687, 324688, 324689, 324690, 324691, 324692, 324693, 324694, 324695, 324696, 324697} },
{"Corehound Fang Shoulderpads", {6037764, 37764, 324698, 324699, 324700, 324701, 324702, 324703, 324704, 324705, 324706, 324707, 324708, 324709} },
{"Leggings of the Water Moccasin", {6037765, 37765, 324710, 324711, 324712, 324713, 324714, 324715, 324716, 324717, 324718, 324719, 324720, 324721} },
{"Bracers of Unmitigated Larceny", {6037766, 37766, 324722, 324723, 324724, 324725, 324726, 324727, 324728, 324729, 324730, 324731, 324732, 324733} },
{"Ryft's Deathgaze", {6037767, 37767, 324734, 324735, 324736, 324737, 324738, 324739, 324740, 324741, 324742, 324743, 324744, 324745} },
{"Leggings of Violent Exsanguination", {6037768, 37768, 324746, 324747, 324748, 324749, 324750, 324751, 324752, 324753, 324754, 324755, 324756, 324757} },
{"Gnarled Shovelhorn Spaulders", {6037769, 37769, 324758, 324759, 324760, 324761, 324762, 324763, 324764, 324765, 324766, 324767, 324768, 324769} },
{"Bulge-Concealing Breastplate", {6037770, 37770, 324770, 324771, 324772, 324773, 324774, 324775, 324776, 324777, 324778, 324779, 324780, 324781} },
{"Wristguards of Verdant Recovery", {6037771, 37771, 324782, 324783, 324784, 324785, 324786, 324787, 324788, 324789, 324790, 324791, 324792, 324793} },
{"Wub's Electrospike Spaulders", {6037772, 37772, 324794, 324795, 324796, 324797, 324798, 324799, 324800, 324801, 324802, 324803, 324804, 324805} },
{"Shock-Inducing Girdle", {6037773, 37773, 324806, 324807, 324808, 324809, 324810, 324811, 324812, 324813, 324814, 324815, 324816, 324817} },
{"Leggings of Aqueous Dissolution", {6037774, 37774, 324818, 324819, 324820, 324821, 324822, 324823, 324824, 324825, 324826, 324827, 324828, 324829} },
{"Helm of the Broken Ram", {6037775, 37775, 324830, 324831, 324832, 324833, 324834, 324835, 324836, 324837, 324838, 324839, 324840, 324841} },
{"Bracers of Accurate Fire", {6037776, 37776, 324842, 324843, 324844, 324845, 324846, 324847, 324848, 324849, 324850, 324851, 324852, 324853} },
{"Bracers of Sizzling Heat", {6037777, 37777, 324854, 324855, 324856, 324857, 324858, 324859, 324860, 324861, 324862, 324863, 324864, 324865} },
{"Girdle of Unerring Flight", {6037778, 37778, 324866, 324867, 324868, 324869, 324870, 324871, 324872, 324873, 324874, 324875, 324876, 324877} },
{"Nixod's Chain-Threshed Spaulders", {6037779, 37779, 324878, 324879, 324880, 324881, 324882, 324883, 324884, 324885, 324886, 324887, 324888, 324889} },
{"Condor-Bone Chestguard", {6037780, 37780, 324890, 324891, 324892, 324893, 324894, 324895, 324896, 324897, 324898, 324899, 324900, 324901} },
{"Grips of the Warming Heart", {6037781, 37781, 324902, 324903, 324904, 324905, 324906, 324907, 324908, 324909, 324910, 324911, 324912, 324913} },
{"Gauntlets of the Cheerful Hearth", {6037782, 37782, 324914, 324915, 324916, 324917, 324918, 324919, 324920, 324921, 324922, 324923, 324924, 324925} },
{"Blood-Tempered Spaulders", {6037783, 37783, 324926, 324927, 324928, 324929, 324930, 324931, 324932, 324933, 324934, 324935, 324936, 324937} },
{"Girdle of the Howling Berserker", {6037785, 37785, 324950, 324951, 324952, 324953, 324954, 324955, 324956, 324957, 324958, 324959, 324960, 324961} },
{"Legguards of the Forlorn Seas", {6037786, 37786, 324962, 324963, 324964, 324965, 324966, 324967, 324968, 324969, 324970, 324971, 324972, 324973} },
{"Greathelm of the Unyielding Bull", {6037787, 37787, 324974, 324975, 324976, 324977, 324978, 324979, 324980, 324981, 324982, 324983, 324984, 324985} },
{"Gauntlets of Disembowelment", {6037789, 37789, 324998, 324999, 325000, 325001, 325002, 325003, 325004, 325005, 325006, 325007, 325008, 325009} },
{"Belt of Crystalline Tears", {6037790, 37790, 325010, 325011, 325012, 325013, 325014, 325015, 325016, 325017, 325018, 325019, 325020, 325021} },
{"Agin's Crushing Carapace", {6037792, 37792, 325034, 325035, 325036, 325037, 325038, 325039, 325040, 325041, 325042, 325043, 325044, 325045} },
{"Skullcage of Eternal Terror", {6037793, 37793, 325046, 325047, 325048, 325049, 325050, 325051, 325052, 325053, 325054, 325055, 325056, 325057} },
{"Torta's Oversized Choker", {6037794, 37794, 325058, 325059, 325060, 325061, 325062, 325063, 325064, 325065, 325066, 325067, 325068, 325069} },
{"Grips of the Valiant Champion", {6037795, 37795, 325070, 325071, 325072, 325073, 325074, 325075, 325076, 325077, 325078, 325079, 325080, 325081} },
{"Earthbound Cape", {6037796, 37796, 325082, 325083, 325084, 325085, 325086, 325087, 325088, 325089, 325090, 325091, 325092, 325093} },
{"Cloak of the Agile Mind", {6037797, 37797, 325094, 325095, 325096, 325097, 325098, 325099, 325100, 325101, 325102, 325103, 325104, 325105} },
{"Elanor's Edge", {6037802, 37802, 325154, 325155, 325156, 325157, 325158, 325159, 325160, 325161, 325162, 325163, 325164, 325165} },
{"Lola's Lifegiving Branch", {6037803, 37803, 325166, 325167, 325168, 325169, 325170, 325171, 325172, 325173, 325174, 325175, 325176, 325177} },
{"Bloodwood Greatstaff", {6037804, 37804, 325178, 325179, 325180, 325181, 325182, 325183, 325184, 325185, 325186, 325187, 325188, 325189} },
{"Melia's Magnificent Scepter", {6037805, 37805, 325190, 325191, 325192, 325193, 325194, 325195, 325196, 325197, 325198, 325199, 325200, 325201} },
{"Zabra's Misplaced Staff", {6037806, 37806, 325202, 325203, 325204, 325205, 325206, 325207, 325208, 325209, 325210, 325211, 325212, 325213} },
{"Lydia's Sharpened Swordbreaker", {6037807, 37807, 325214, 325215, 325216, 325217, 325218, 325219, 325220, 325221, 325222, 325223, 325224, 325225} },
{"Dragonjaw Mauler", {6037808, 37808, 325226, 325227, 325228, 325229, 325230, 325231, 325232, 325233, 325234, 325235, 325236, 325237} },
{"Roc-Feather Longbow", {6037809, 37809, 325238, 325239, 325240, 325241, 325242, 325243, 325244, 325245, 325246, 325247, 325248, 325249} },
{"Blade-Binding Bulwark", {6037810, 37810, 325250, 325251, 325252, 325253, 325254, 325255, 325256, 325257, 325258, 325259, 325260, 325261} },
{"Captain Carver's Persuader", {6037811, 37811, 325262, 325263, 325264, 325265, 325266, 325267, 325268, 325269, 325270, 325271, 325272, 325273} },
{"Petrified Ironwood Smasher", {6037812, 37812, 325274, 325275, 325276, 325277, 325278, 325279, 325280, 325281, 325282, 325283, 325284, 325285} },
{"Banner Slicer", {6037813, 37813, 325286, 325287, 325288, 325289, 325290, 325291, 325292, 325293, 325294, 325295, 325296, 325297} },
{"Branch of Sinful Reprieve", {6037817, 37817, 325310, 325311, 325312, 325313, 325314, 325315, 325316, 325317, 325318, 325319, 325320, 325321} },
{"Milan's Mastercraft Band", {6037819, 37819, 325334, 325335, 325336, 325337, 325338, 325339, 325340, 325341, 325342, 325343, 325344, 325345} },
{"Raine's Signet of Blasting", {6037821, 37821, 325358, 325359, 325360, 325361, 325362, 325363, 325364, 325365, 325366, 325367, 325368, 325369} },
{"Twisted Puzzle-Ring", {6037822, 37822, 325370, 325371, 325372, 325373, 325374, 325375, 325376, 325377, 325378, 325379, 325380, 325381} },
{"Draconic Choker of Ferocity", {6037823, 37823, 325382, 325383, 325384, 325385, 325386, 325387, 325388, 325389, 325390, 325391, 325392, 325393} },
{"Gwyneth's Runed Dragonwand", {6037824, 37824, 325394, 325395, 325396, 325397, 325398, 325399, 325400, 325401, 325402, 325403, 325404, 325405} },
{"Fear, Warglaive of Azzinoth", {113614, 37918, 337918, 237918, 1006122, 1013195, 1019839, 1026437, 1033001, 1039564, 1046127, 1052690, 1059253, 1065816} },
{"Hatred, Warglaive of Azzinoth", {120475, 37935, 337935, 237935, 1006124, 1013196, 1019840, 1026438, 1033002, 1039565, 1046128, 1052691, 1059254, 1065817} },
{"Fisherman's Earwarmer", {326025, 37936, 326024, 326026, 326027, 326028, 326029, 326030, 326031, 326032, 326033, 326034, 326035, 326036} },
{"Alystros's Plume Cinch", {326038, 37937, 326037, 326039, 326040, 326041, 326042, 326043, 326044, 326045, 326046, 326047, 326048, 326049} },
{"Visionary's Robes", {326051, 37938, 326050, 326052, 326053, 326054, 326055, 326056, 326057, 326058, 326059, 326060, 326061, 326062} },
{"Baleen Braided Collar", {326064, 37939, 326063, 326065, 326066, 326067, 326068, 326069, 326070, 326071, 326072, 326073, 326074, 326075} },
{"Mantle of Itharius", {326077, 37940, 326076, 326078, 326079, 326080, 326081, 326082, 326083, 326084, 326085, 326086, 326087, 326088} },
{"Fading Handwraps", {326090, 37941, 326089, 326091, 326092, 326093, 326094, 326095, 326096, 326097, 326098, 326099, 326100, 326101} },
{"Kirin Tor Initiate's Sandals", {326103, 37942, 326102, 326104, 326105, 326106, 326107, 326108, 326109, 326110, 326111, 326112, 326113, 326114} },
{"Kirin Tor Initiate's Cowl", {326116, 37943, 326115, 326117, 326118, 326119, 326120, 326121, 326122, 326123, 326124, 326125, 326126, 326127} },
{"High Priest Forith's Robes", {326129, 37944, 326128, 326130, 326131, 326132, 326133, 326134, 326135, 326136, 326137, 326138, 326139, 326140} },
{"Thin Jormungar Legwraps", {326142, 37945, 326141, 326143, 326144, 326145, 326146, 326147, 326148, 326149, 326150, 326151, 326152, 326153} },
{"Miraculous Waistwarming Band", {326155, 37947, 326154, 326156, 326157, 326158, 326159, 326160, 326161, 326162, 326163, 326164, 326165, 326166} },
{"Refractive Shoulderpads", {326168, 37948, 326167, 326169, 326170, 326171, 326172, 326173, 326174, 326175, 326176, 326177, 326178, 326179} },
{"Saboteur's Wrap", {326181, 37949, 326180, 326182, 326183, 326184, 326185, 326186, 326187, 326188, 326189, 326190, 326191, 326192} },
{"Highseas Wristwraps", {326194, 37950, 326193, 326195, 326196, 326197, 326198, 326199, 326200, 326201, 326202, 326203, 326204, 326205} },
{"Wastewind Garments", {326207, 37953, 326206, 326208, 326209, 326210, 326211, 326212, 326213, 326214, 326215, 326216, 326217, 326218} },
{"Wastewind Cinch", {326220, 37954, 326219, 326221, 326222, 326223, 326224, 326225, 326226, 326227, 326228, 326229, 326230, 326231} },
{"DB26 Healer Cloak", {326233, 37955, 326232, 326234, 326235, 326236, 326237, 326238, 326239, 326240, 326241, 326242, 326243, 326244} },
{"Frontrunner's Blessed Handwraps", {326246, 37956, 326245, 326247, 326248, 326249, 326250, 326251, 326252, 326253, 326254, 326255, 326256, 326257} },
{"Wastewind Bracers", {326259, 37957, 326258, 326260, 326261, 326262, 326263, 326264, 326265, 326266, 326267, 326268, 326269, 326270} },
{"Wastewind Headcover", {326272, 37958, 326271, 326273, 326274, 326275, 326276, 326277, 326278, 326279, 326280, 326281, 326282, 326283} },
{"Wastewind Pauldrons", {326285, 37959, 326284, 326286, 326287, 326288, 326289, 326290, 326291, 326292, 326293, 326294, 326295, 326296} },
{"Oath Signet", {326298, 37960, 326297, 326299, 326300, 326301, 326302, 326303, 326304, 326305, 326306, 326307, 326308, 326309} },
{"Wastewind Leggings", {326311, 37961, 326310, 326312, 326313, 326314, 326315, 326316, 326317, 326318, 326319, 326320, 326321, 326322} },
{"Treads of the Charred Canyon", {326324, 37962, 326323, 326325, 326326, 326327, 326328, 326329, 326330, 326331, 326332, 326333, 326334, 326335} },
{"Wastewind Handwraps", {326337, 37963, 326336, 326338, 326339, 326340, 326341, 326342, 326343, 326344, 326345, 326346, 326347, 326348} },
{"Spiderwarder Braces", {326350, 37964, 326349, 326351, 326352, 326353, 326354, 326355, 326356, 326357, 326358, 326359, 326360, 326361} },
{"Wyrmward Cover", {326363, 37965, 326362, 326364, 326365, 326366, 326367, 326368, 326369, 326370, 326371, 326372, 326373, 326374} },
{"Bracers of Nature's Fury", {326376, 37966, 326375, 326377, 326378, 326379, 326380, 326381, 326382, 326383, 326384, 326385, 326386, 326387} },
{"DB42 Spell Ring4", {326389, 37967, 326388, 326390, 326391, 326392, 326393, 326394, 326395, 326396, 326397, 326398, 326399, 326400} },
{"Robe of Calcified Tears", {326402, 37968, 326401, 326403, 326404, 326405, 326406, 326407, 326408, 326409, 326410, 326411, 326412, 326413} },
{"Chaos Mender Cloak", {326415, 37969, 326414, 326416, 326417, 326418, 326419, 326420, 326421, 326422, 326423, 326424, 326425, 326426} },
{"Feathers of the Dragon Wastes", {326428, 37970, 326427, 326429, 326430, 326431, 326432, 326433, 326434, 326435, 326436, 326437, 326438, 326439} },
{"Sash of the Nibbling Plague", {326441, 37971, 326440, 326442, 326443, 326444, 326445, 326446, 326447, 326448, 326449, 326450, 326451, 326452} },
{"DB54 Healer Neck2", {326454, 37976, 326453, 326455, 326456, 326457, 326458, 326459, 326460, 326461, 326462, 326463, 326464, 326465} },
{"Moa'ki Thresherhide Tunic", {326467, 37980, 326466, 326468, 326469, 326470, 326471, 326472, 326473, 326474, 326475, 326476, 326477, 326478} },
{"Ancient Dreamer's Leggings", {326480, 37981, 326479, 326481, 326482, 326483, 326484, 326485, 326486, 326487, 326488, 326489, 326490, 326491} },
{"Gleaming Tuskring", {326493, 37982, 326492, 326494, 326495, 326496, 326497, 326498, 326499, 326500, 326501, 326502, 326503, 326504} },
{"Gloves of the Emerald Stalker", {326506, 37983, 326505, 326507, 326508, 326509, 326510, 326511, 326512, 326513, 326514, 326515, 326516, 326517} },
{"Deathtouched Boots", {326519, 37984, 326518, 326520, 326521, 326522, 326523, 326524, 326525, 326526, 326527, 326528, 326529, 326530} },
{"Violet Stalker Shoulderpads", {326532, 37985, 326531, 326533, 326534, 326535, 326536, 326537, 326538, 326539, 326540, 326541, 326542, 326543} },
{"Hood of the Forgotten Rifleman", {326545, 37986, 326544, 326546, 326547, 326548, 326549, 326550, 326551, 326552, 326553, 326554, 326555, 326556} },
{"Violet Stalker Bracers", {326558, 37987, 326557, 326559, 326560, 326561, 326562, 326563, 326564, 326565, 326566, 326567, 326568, 326569} },
{"Lord Prestor's Drape", {326571, 37988, 326570, 326572, 326573, 326574, 326575, 326576, 326577, 326578, 326579, 326580, 326581, 326582} },
{"Rattlebore Slayer Leggings", {326584, 37989, 326583, 326585, 326586, 326587, 326588, 326589, 326590, 326591, 326592, 326593, 326594, 326595} },
{"Narf's Explosiveproof Strand", {326597, 37990, 326596, 326598, 326599, 326600, 326601, 326602, 326603, 326604, 326605, 326606, 326607, 326608} },
{"Hyper-amplified Natural Leather Vest", {326610, 37991, 326609, 326611, 326612, 326613, 326614, 326615, 326616, 326617, 326618, 326619, 326620, 326621} },
{"Ritual Neckguard", {326623, 37992, 326622, 326624, 326625, 326626, 326627, 326628, 326629, 326630, 326631, 326632, 326633, 326634} },
{"Glade Wanderer Boots", {326636, 37993, 326635, 326637, 326638, 326639, 326640, 326641, 326642, 326643, 326644, 326645, 326646, 326647} },
{"Snowfall Reaver Hood", {326649, 37995, 326648, 326650, 326651, 326652, 326653, 326654, 326655, 326656, 326657, 326658, 326659, 326660} },
{"Snowfall Reaver Gloves", {326662, 37996, 326661, 326663, 326664, 326665, 326666, 326667, 326668, 326669, 326670, 326671, 326672, 326673} },
{"Snowfall Reaver Boots", {326675, 37998, 326674, 326676, 326677, 326678, 326679, 326680, 326681, 326682, 326683, 326684, 326685, 326686} },
{"Glade Wanderer Bracers", {326688, 37999, 326687, 326689, 326690, 326691, 326692, 326693, 326694, 326695, 326696, 326697, 326698, 326699} },
{"Snowfall Reaver Breastplate", {326701, 38000, 326700, 326702, 326703, 326704, 326705, 326706, 326707, 326708, 326709, 326710, 326711, 326712} },
{"Snowfall Reaver Pauldrons", {326714, 38001, 326713, 326715, 326716, 326717, 326718, 326719, 326720, 326721, 326722, 326723, 326724, 326725} },
{"Honorborn Cloak", {326727, 38002, 326726, 326728, 326729, 326730, 326731, 326732, 326733, 326734, 326735, 326736, 326737, 326738} },
{"Snowfall Reaver Leggings", {326740, 38003, 326739, 326741, 326742, 326743, 326744, 326745, 326746, 326747, 326748, 326749, 326750, 326751} },
{"Scourgeslayer Belt", {326753, 38004, 326752, 326754, 326755, 326756, 326757, 326758, 326759, 326760, 326761, 326762, 326763, 326764} },
{"Spiritfury Bands", {326766, 38005, 326765, 326767, 326768, 326769, 326770, 326771, 326772, 326773, 326774, 326775, 326776, 326777} },
{"Glade Wanderer Belt", {326779, 38006, 326778, 326780, 326781, 326782, 326783, 326784, 326785, 326786, 326787, 326788, 326789, 326790} },
{"Canyon Runner's Vest", {326792, 38007, 326791, 326793, 326794, 326795, 326796, 326797, 326798, 326799, 326800, 326801, 326802, 326803} },
{"Lothalar Woodwalker Belt", {326805, 38008, 326804, 326806, 326807, 326808, 326809, 326810, 326811, 326812, 326813, 326814, 326815, 326816} },
{"Scourgeslayer Cover", {326818, 38010, 326817, 326819, 326820, 326821, 326822, 326823, 326824, 326825, 326826, 326827, 326828, 326829} },
{"Torturer's Fleshwoven Leggings", {326831, 38011, 326830, 326832, 326833, 326834, 326835, 326836, 326837, 326838, 326839, 326840, 326841, 326842} },
{"Lothalar Woodwalker Bracers", {326844, 38012, 326843, 326845, 326846, 326847, 326848, 326849, 326850, 326851, 326852, 326853, 326854, 326855} },
{"Lothalar Woodwalker Shoulders", {326857, 38013, 326856, 326858, 326859, 326860, 326861, 326862, 326863, 326864, 326865, 326866, 326867, 326868} },
{"Vermin-Handler's Gauntlets", {326870, 38014, 326869, 326871, 326872, 326873, 326874, 326875, 326876, 326877, 326878, 326879, 326880, 326881} },
{"Sharkdiver's Leggings", {326883, 38023, 326882, 326884, 326885, 326886, 326887, 326888, 326889, 326890, 326891, 326892, 326893, 326894} },
{"Verdant Linked Boots", {326896, 38024, 326895, 326897, 326898, 326899, 326900, 326901, 326902, 326903, 326904, 326905, 326906, 326907} },
{"Guiding Gloves of the Seer", {326909, 38025, 326908, 326910, 326911, 326912, 326913, 326914, 326915, 326916, 326917, 326918, 326919, 326920} },
{"Sharkdiver's Bracers", {326923, 38026, 326922, 326924, 326925, 326926, 326927, 326928, 326929, 326930, 326931, 326932, 326933, 326934} },
{"Verdant Hunter's Guise", {326936, 38027, 326935, 326937, 326938, 326939, 326940, 326941, 326942, 326943, 326944, 326945, 326946, 326947} },
{"Ring of the Afterlife", {326949, 38028, 326948, 326950, 326951, 326952, 326953, 326954, 326955, 326956, 326957, 326958, 326959, 326960} },
{"Azurehunter Handguards", {326962, 38029, 326961, 326963, 326964, 326965, 326966, 326967, 326968, 326969, 326970, 326971, 326972, 326973} },
{"Chestpiece of the Forgotten Captain", {326975, 38030, 326974, 326976, 326977, 326978, 326979, 326980, 326981, 326982, 326983, 326984, 326985, 326986} },
{"Azurehunter Legguards", {326988, 38031, 326987, 326989, 326990, 326991, 326992, 326993, 326994, 326995, 326996, 326997, 326998, 326999} },
{"Wyrm-slave Collar", {327001, 38032, 327000, 327002, 327003, 327004, 327005, 327006, 327007, 327008, 327009, 327010, 327011, 327012} },
{"Ice Heart Chestguard", {327014, 38033, 327013, 327015, 327016, 327017, 327018, 327019, 327020, 327021, 327022, 327023, 327024, 327025} },
{"Serrated Chain Links", {327027, 38034, 327026, 327028, 327029, 327030, 327031, 327032, 327033, 327034, 327035, 327036, 327037, 327038} },
{"Tightened Chainmesh Boots", {327040, 38035, 327039, 327041, 327042, 327043, 327044, 327045, 327046, 327047, 327048, 327049, 327050, 327051} },
{"Circlet of the Forgotten Mercenary", {327053, 38036, 327052, 327054, 327055, 327056, 327057, 327058, 327059, 327060, 327061, 327062, 327063, 327064} },
{"Westwind Shoulderguards", {327066, 38037, 327065, 327067, 327068, 327069, 327070, 327071, 327072, 327073, 327074, 327075, 327076, 327077} },
{"Iceshear Pauldrons", {327079, 38039, 327078, 327080, 327081, 327082, 327083, 327084, 327085, 327086, 327087, 327088, 327089, 327090} },
{"Iceshear Bindings", {327092, 38040, 327091, 327093, 327094, 327095, 327096, 327097, 327098, 327099, 327100, 327101, 327102, 327103} },
{"Westwind Waistband", {327105, 38041, 327104, 327106, 327107, 327108, 327109, 327110, 327111, 327112, 327113, 327114, 327115, 327116} },
{"Scourge Ghoul Collar", {327118, 38042, 327117, 327119, 327120, 327121, 327122, 327123, 327124, 327125, 327126, 327127, 327128, 327129} },
{"Anub'ar-Husk Leggings", {327131, 38043, 327130, 327132, 327133, 327134, 327135, 327136, 327137, 327138, 327139, 327140, 327141, 327142} },
{"Anub'ar-Husk Shoulderguards", {327144, 38044, 327143, 327145, 327146, 327147, 327148, 327149, 327150, 327151, 327152, 327153, 327154, 327155} },
{"Anub'ar-Husk Helm", {327157, 38045, 327156, 327158, 327159, 327160, 327161, 327162, 327163, 327164, 327165, 327166, 327167, 327168} },
{"Wyrmfire Gloves", {327170, 38046, 327169, 327171, 327172, 327173, 327174, 327175, 327176, 327177, 327178, 327179, 327180, 327181} },
{"Belt of Ghostly Essence", {327183, 38047, 327182, 327184, 327185, 327186, 327187, 327188, 327189, 327190, 327191, 327192, 327193, 327194} },
{"Breastplate of Sizzling Chitin", {327196, 38048, 327195, 327197, 327198, 327199, 327200, 327201, 327202, 327203, 327204, 327205, 327206, 327207} },
{"Wyrmchaser's Waistguard", {327209, 38049, 327208, 327210, 327211, 327212, 327213, 327214, 327215, 327216, 327217, 327218, 327219, 327220} },
{"Star's Rest Treads", {327222, 38051, 327221, 327223, 327224, 327225, 327226, 327227, 327228, 327229, 327230, 327231, 327232, 327233} },
{"Wyrmfire Links", {327248, 38053, 327247, 327249, 327250, 327251, 327252, 327253, 327254, 327255, 327256, 327257, 327258, 327259} },
{"Paingiver Wristguards", {327261, 38054, 327260, 327262, 327263, 327264, 327265, 327266, 327267, 327268, 327269, 327270, 327271, 327272} },
{"Ridgehunter Gauntlets", {327274, 38055, 327273, 327275, 327276, 327277, 327278, 327279, 327280, 327281, 327282, 327283, 327284, 327285} },
{"Ridgehunter Chestguard", {327287, 38056, 327286, 327288, 327289, 327290, 327291, 327292, 327293, 327294, 327295, 327296, 327297, 327298} },
{"Rodent-Proof Headguard", {327300, 38057, 327299, 327301, 327302, 327303, 327304, 327305, 327306, 327307, 327308, 327309, 327310, 327311} },
{"Sinner's Repentance", {327313, 38068, 327312, 327314, 327315, 327316, 327317, 327318, 327319, 327320, 327321, 327322, 327323, 327324} },
{"Foresight's Anticipation", {327326, 38070, 327325, 327327, 327328, 327329, 327330, 327331, 327332, 327333, 327334, 327335, 327336, 327337} },
{"Valonforth's Remembrance", {327339, 38071, 327338, 327340, 327341, 327342, 327343, 327344, 327345, 327346, 327347, 327348, 327349, 327350} },
{"Thunder Capacitor", {327352, 38072, 327351, 327353, 327354, 327355, 327356, 327357, 327358, 327359, 327360, 327361, 327362, 327363} },
{"Will of the Red Dragonflight", {327365, 38073, 327364, 327366, 327367, 327368, 327369, 327370, 327371, 327372, 327373, 327374, 327375, 327376} },
{"Automated Weapon Coater", {327378, 38080, 327377, 327379, 327380, 327381, 327382, 327383, 327384, 327385, 327386, 327387, 327388, 327389} },
{"Scarab of Isanoth", {327391, 38081, 327390, 327392, 327393, 327394, 327395, 327396, 327397, 327398, 327399, 327400, 327401, 327402} },
{"Crustacean Stompers", {327404, 38084, 327403, 327405, 327406, 327407, 327408, 327409, 327410, 327411, 327412, 327413, 327414, 327415} },
{"Belt of the Emerald Guardian", {327417, 38085, 327416, 327418, 327419, 327420, 327421, 327422, 327423, 327424, 327425, 327426, 327427, 327428} },
{"Vigilant Skullcap", {327430, 38086, 327429, 327431, 327432, 327433, 327434, 327435, 327436, 327437, 327438, 327439, 327440, 327441} },
{"Sea Rusted Gauntlets", {327443, 38087, 327442, 327444, 327445, 327446, 327447, 327448, 327449, 327450, 327451, 327452, 327453, 327454} },
{"Breastplate of Nature's Ire", {327456, 38088, 327455, 327457, 327458, 327459, 327460, 327461, 327462, 327463, 327464, 327465, 327466, 327467} },
{"Crystalplate Pauldrons", {327469, 38092, 327468, 327470, 327471, 327472, 327473, 327474, 327475, 327476, 327477, 327478, 327479, 327480} },
{"Dalaran Sentry Wristbraces", {327482, 38093, 327481, 327483, 327484, 327485, 327486, 327487, 327488, 327489, 327490, 327491, 327492, 327493} },
{"Dalaran Sentry Headguard", {327495, 38094, 327494, 327496, 327497, 327498, 327499, 327500, 327501, 327502, 327503, 327504, 327505, 327506} },
{"Legplates of the Conquered Knight", {327508, 38095, 327507, 327509, 327510, 327511, 327512, 327513, 327514, 327515, 327516, 327517, 327518, 327519} },
{"Crystalplate Legguards", {327521, 38096, 327520, 327522, 327523, 327524, 327525, 327526, 327527, 327528, 327529, 327530, 327531, 327532} },
{"Experimental Utility Belt", {327534, 38097, 327533, 327535, 327536, 327537, 327538, 327539, 327540, 327541, 327542, 327543, 327544, 327545} },
{"Crystalplate Gauntlets", {327547, 38100, 327546, 327548, 327549, 327550, 327551, 327552, 327553, 327554, 327555, 327556, 327557, 327558} },
{"Stonepath Sabatons", {327560, 38101, 327559, 327561, 327562, 327563, 327564, 327565, 327566, 327567, 327568, 327569, 327570, 327571} },
{"Stonepath Gauntlets", {327573, 38102, 327572, 327574, 327575, 327576, 327577, 327578, 327579, 327580, 327581, 327582, 327583, 327584} },
{"Petrified Bone Chestguard", {327586, 38103, 327585, 327587, 327588, 327589, 327590, 327591, 327592, 327593, 327594, 327595, 327596, 327597} },
{"Stonepath Helm", {327599, 38104, 327598, 327600, 327601, 327602, 327603, 327604, 327605, 327606, 327607, 327608, 327609, 327610} },
{"Stonepath Pauldrons", {327612, 38105, 327611, 327613, 327614, 327615, 327616, 327617, 327618, 327619, 327620, 327621, 327622, 327623} },
{"Petrified Bone Footguards", {327625, 38106, 327624, 327626, 327627, 327628, 327629, 327630, 327631, 327632, 327633, 327634, 327635, 327636} },
{"Stonepath Chestguard", {327638, 38107, 327637, 327639, 327640, 327641, 327642, 327643, 327644, 327645, 327646, 327647, 327648, 327649} },
{"Conscript's Ruby Waistguard", {327651, 38108, 327650, 327652, 327653, 327654, 327655, 327656, 327657, 327658, 327659, 327660, 327661, 327662} },
{"Wraithshimmer Legplates", {327664, 38109, 327663, 327665, 327666, 327667, 327668, 327669, 327670, 327671, 327672, 327673, 327674, 327675} },
{"Legplates of the Agmar Preserver", {327677, 38110, 327676, 327678, 327679, 327680, 327681, 327682, 327683, 327684, 327685, 327686, 327687, 327688} },
{"Wyrmbane Wristguards", {327690, 38111, 327689, 327691, 327692, 327693, 327694, 327695, 327696, 327697, 327698, 327699, 327700, 327701} },
{"Bark Covered Pauldrons", {327703, 38112, 327702, 327704, 327705, 327706, 327707, 327708, 327709, 327710, 327711, 327712, 327713, 327714} },
{"Chestplate of the Ruby Champion", {327716, 38114, 327715, 327717, 327718, 327719, 327720, 327721, 327722, 327723, 327724, 327725, 327726, 327727} },
{"Sabatons of the Enforcer", {327729, 38115, 327728, 327730, 327731, 327732, 327733, 327734, 327735, 327736, 327737, 327738, 327739, 327740} },
{"Plated Magnataur Leggings", {327742, 38116, 327741, 327743, 327744, 327745, 327746, 327747, 327748, 327749, 327750, 327751, 327752, 327753} },
{"Dreadtalon's Clutch", {327755, 38117, 327754, 327756, 327757, 327758, 327759, 327760, 327761, 327762, 327763, 327764, 327765, 327766} },
{"Bite-Proof Grips", {327768, 38118, 327767, 327769, 327770, 327771, 327772, 327773, 327774, 327775, 327776, 327777, 327778, 327779} },
{"Frostbite Warstaff", {327781, 38126, 327780, 327782, 327783, 327784, 327785, 327786, 327787, 327788, 327789, 327790, 327791, 327792} },
{"Carved Dragonbone Mace", {327794, 38127, 327793, 327795, 327796, 327797, 327798, 327799, 327800, 327801, 327802, 327803, 327804, 327805} },
{"Staff of the Spiked Beast", {327807, 38128, 327806, 327808, 327809, 327810, 327811, 327812, 327813, 327814, 327815, 327816, 327817, 327818} },
{"Staff of the Ley Mender", {327820, 38129, 327819, 327821, 327822, 327823, 327824, 327825, 327826, 327827, 327828, 327829, 327830, 327831} },
{"Emme's Lost Spellblade", {327833, 38130, 327832, 327834, 327835, 327836, 327837, 327838, 327839, 327840, 327841, 327842, 327843, 327844} },
{"Staff of Ruby Wood", {327846, 38131, 327845, 327847, 327848, 327849, 327850, 327851, 327852, 327853, 327854, 327855, 327856, 327857} },
{"Moonrest Garden Stave", {327859, 38132, 327858, 327860, 327861, 327862, 327863, 327864, 327865, 327866, 327867, 327868, 327869, 327870} },
{"Timeshattered Spire", {327872, 38133, 327871, 327873, 327874, 327875, 327876, 327877, 327878, 327879, 327880, 327881, 327882, 327883} },
{"Bloodtinged Spellblade", {327885, 38134, 327884, 327886, 327887, 327888, 327889, 327890, 327891, 327892, 327893, 327894, 327895, 327896} },
{"Mace of the Fallen Raven Priest", {327898, 38135, 327897, 327899, 327900, 327901, 327902, 327903, 327904, 327905, 327906, 327907, 327908, 327909} },
{"Endurance of the Spell Warder", {327911, 38137, 327910, 327912, 327913, 327914, 327915, 327916, 327917, 327918, 327919, 327921, 327922, 327923} },
{"Keldonus's Missing Spellshard", {327925, 38138, 327924, 327926, 327927, 327928, 327929, 327930, 327931, 327932, 327933, 327934, 327935, 327936} },
{"DB50 Spell Staff4", {327938, 38140, 327937, 327939, 327940, 327941, 327942, 327943, 327944, 327945, 327946, 327947, 327948, 327949} },
{"Coldwind Scratching Pole", {327951, 38141, 327950, 327952, 327953, 327954, 327955, 327956, 327957, 327958, 327959, 327960, 327961, 327962} },
{"Infused Dragonbone Splinter", {327964, 38142, 327963, 327965, 327966, 327967, 327968, 327969, 327970, 327971, 327972, 327973, 327974, 327975} },
{"Composite Harpyspine Staff", {327977, 38143, 327976, 327978, 327979, 327980, 327981, 327982, 327983, 327984, 327985, 327986, 327987, 327988} },
{"Gleaming Iceblade", {327990, 38146, 327989, 327991, 327992, 327993, 327994, 327995, 327996, 327997, 327998, 327999, 328000, 328001} },
{"Corrupted Band", {328003, 38147, 328002, 328004, 328005, 328006, 328007, 328008, 328009, 328010, 328011, 328012, 328013, 328014} },
{"Chilled Headsmasher", {328016, 38148, 328015, 328017, 328018, 328019, 328020, 328021, 328022, 328023, 328024, 328025, 328026, 328027} },
{"Imported Ironshod Crossbow", {328029, 38150, 328028, 328030, 328031, 328032, 328033, 328034, 328035, 328036, 328037, 328038, 328039, 328040} },
{"Daschal's Discarded Shiv", {328042, 38151, 328041, 328043, 328044, 328045, 328046, 328047, 328048, 328049, 328050, 328051, 328052, 328053} },
{"Mace of the Violet Guardian", {328055, 38152, 328054, 328056, 328057, 328058, 328059, 328060, 328061, 328062, 328063, 328064, 328065, 328066} },
{"Mana Infused Claw", {328068, 38153, 328067, 328069, 328070, 328071, 328072, 328073, 328074, 328075, 328076, 328077, 328078, 328079} },
{"Taigasha", {328081, 38154, 328080, 328082, 328083, 328084, 328085, 328086, 328087, 328088, 328089, 328090, 328091, 328092} },
{"Shortblade of the Ruby Ally", {328094, 38155, 328093, 328095, 328096, 328097, 328098, 328099, 328100, 328101, 328102, 328103, 328104, 328105} },
{"Battered Magnataur Dualblade", {328107, 38156, 328106, 328108, 328109, 328110, 328111, 328112, 328113, 328114, 328115, 328116, 328117, 328118} },
{"Longbow of the Ruby Rider", {328120, 38157, 328119, 328121, 328122, 328123, 328124, 328125, 328126, 328127, 328128, 328129, 328130, 328131} },
{"Keen Woodland Shank", {328146, 38169, 328145, 328147, 328148, 328149, 328150, 328151, 328152, 328153, 328154, 328155, 328156, 328157} },
{"Spiked Coldwind Club", {328159, 38170, 328158, 328160, 328161, 328162, 328163, 328164, 328165, 328166, 328167, 328168, 328169, 328170} },
{"Battleworn Magnataur Crusher", {328172, 38171, 328171, 328173, 328174, 328175, 328176, 328177, 328178, 328179, 328180, 328181, 328182, 328183} },
{"Crossbow of the Hardened Ranger", {328185, 38172, 328184, 328186, 328187, 328188, 328189, 328190, 328191, 328192, 328193, 328194, 328195, 328196} },
{"Dagger of the Returning Past", {328198, 38173, 328197, 328199, 328200, 328201, 328202, 328203, 328204, 328205, 328206, 328207, 328208, 328209} },
{"Time-Bending Smasher", {328211, 38174, 328210, 328212, 328213, 328214, 328215, 328216, 328217, 328218, 328219, 328220, 328221, 328222} },
{"The Horseman's Blade", {6038175, 38175, 328223, 328224, 328225, 328226, 328227, 328228, 328229, 328230, 328231, 328232, 328233, 328234} },
{"Stronghold Battlemace", {328236, 38176, 328235, 328237, 328238, 328239, 328240, 328241, 328242, 328243, 328244, 328245, 328246, 328247} },
{"Siege Captain's Gun", {328249, 38177, 328248, 328250, 328251, 328252, 328253, 328254, 328255, 328256, 328257, 328258, 328259, 328260} },
{"Battlement Enforcer's Axe", {328262, 38178, 328261, 328263, 328264, 328265, 328266, 328267, 328268, 328269, 328270, 328271, 328272, 328273} },
{"Warblade of the Forgotten Footman", {328275, 38181, 328274, 328276, 328277, 328278, 328279, 328280, 328281, 328282, 328283, 328284, 328285, 328286} },
{"Reactive Waraxe", {328288, 38187, 328287, 328289, 328290, 328291, 328292, 328293, 328294, 328295, 328296, 328297, 328298, 328299} },
{"Claw of the Undead Ravager", {328301, 38188, 328300, 328302, 328303, 328304, 328305, 328306, 328307, 328308, 328309, 328310, 328311, 328312} },
{"Backtwister", {328314, 38189, 328313, 328315, 328316, 328317, 328318, 328319, 328320, 328321, 328322, 328323, 328324, 328325} },
{"Scourgeslayer's Shank", {328327, 38190, 328326, 328328, 328329, 328330, 328331, 328332, 328333, 328334, 328335, 328336, 328337, 328338} },
{"Compact Explosive Delivery Device", {328340, 38191, 328339, 328341, 328342, 328343, 328344, 328345, 328346, 328347, 328348, 328349, 328350, 328351} },
{"Mageslayer Rifle", {328353, 38194, 328352, 328354, 328355, 328356, 328357, 328358, 328359, 328360, 328361, 328362, 328363, 328364} },
{"Magister's Bane", {328366, 38195, 328365, 328367, 328368, 328369, 328370, 328371, 328372, 328373, 328374, 328375, 328376, 328377} },
{"Bloodsmeared Brutalizer", {328379, 38196, 328378, 328380, 328381, 328382, 328383, 328384, 328385, 328386, 328387, 328388, 328389, 328390} },
{"Mounted Boneshredder", {328392, 38197, 328391, 328393, 328394, 328395, 328396, 328397, 328398, 328399, 328400, 328401, 328402, 328403} },
{"Joint-Severing Quickblade", {328405, 38198, 328404, 328406, 328407, 328408, 328409, 328410, 328411, 328412, 328413, 328414, 328415, 328416} },
{"Twig of Happy Reminders", {328418, 38202, 328417, 328419, 328420, 328421, 328422, 328423, 328424, 328425, 328426, 328427, 328428, 328429} },
{"DB38 Spell Wand2", {328431, 38204, 328430, 328432, 328433, 328434, 328435, 328436, 328437, 328438, 328439, 328440, 328441, 328442} },
{"Wand of Blinding Light", {328444, 38206, 328443, 328445, 328446, 328447, 328448, 328449, 328450, 328451, 328452, 328455, 328456, 328457} },
{"Wand of Purifying Fire", {328459, 38207, 328458, 328460, 328461, 328462, 328463, 328464, 328465, 328466, 328467, 328468, 328469, 328470} },
{"Valiance Longbow", {328472, 38208, 328471, 328473, 328474, 328475, 328476, 328478, 328479, 328480, 328481, 328482, 328483, 328484} },
{"Death Knight's Anguish", {328486, 38212, 328485, 328487, 328488, 328489, 328490, 328491, 328492, 328493, 328494, 328495, 328496, 328497} },
{"Harbinger's Wrath", {328499, 38213, 328498, 328500, 328501, 328513, 328526, 328527, 328531, 328532, 328533, 328534, 328535, 328536} },
{"Hypergizmatic Energy Booster", {328538, 38214, 328537, 328539, 328540, 328541, 328542, 328543, 328544, 328546, 328547, 328548, 328549, 328550} },
{"Tome of the Violet Tower", {328552, 38217, 328551, 328553, 328554, 328555, 328556, 328557, 328558, 328559, 328560, 328561, 328562, 328563} },
{"Executioner's Band", {6038218, 38218, 328564, 328571, 328574, 328575, 328576, 328577, 328580, 328595, 328596, 328598, 328605, 328607} },
{"Ring of Decimation", {6038219, 38219, 328613, 328614, 328615, 328616, 328617, 328618, 328619, 328620, 328622, 328623, 328624, 328625} },
{"Signet of Swift Judgment", {6038220, 38220, 328626, 328627, 328628, 328629, 328630, 328632, 328634, 328635, 328636, 328637, 328638, 328639} },
{"Shroud of Fluid Strikes", {6038221, 38221, 328640, 328641, 328642, 328643, 328644, 328645, 328646, 328648, 328650, 328651, 328664, 328665} },
{"Mantle of Keristrasza", {6038222, 38222, 328667, 328668, 328676, 328677, 328678, 328679, 328680, 328681, 328682, 328683, 328684, 328685} },
{"Cloak of Azure Lights", {6038223, 38223, 328686, 328687, 328688, 328689, 328690, 328691, 328692, 328693, 328694, 328695, 328696, 328697} },
{"Life Binder Talisman", {328699, 38224, 328698, 328700, 328701, 328702, 328703, 328704, 328705, 328706, 328707, 328708, 328709, 328710} },
{"Chain of the Tolling Bell", {6038226, 38226, 328711, 328712, 328713, 328714, 328715, 328716, 328717, 328718, 328719, 328720, 328721, 328722} },
{"Indomitable Choker of Light", {6038227, 38227, 328723, 328724, 328725, 328736, 328737, 328738, 328739, 328758, 328759, 328760, 328761, 328769} },
{"Pendant of Revolutionary Thought", {6038228, 38228, 328784, 328786, 328787, 328788, 328798, 328805, 328806, 328807, 328808, 328809, 328811, 328812} },
{"Clutch of Undying Will", {6038230, 38230, 328813, 328814, 328815, 328816, 328817, 328818, 328819, 328820, 328821, 328829, 328831, 328832} },
{"Choker of Forceful Redemption", {6038231, 38231, 328833, 328834, 328835, 328836, 328837, 328838, 328839, 328840, 328841, 328842, 328843, 328844} },
{"Chain of Vigilant Thought", {6038232, 38232, 328845, 328846, 328847, 328848, 328849, 328850, 328851, 328852, 328853, 328854, 328855, 328856} },
{"Axe of Frozen Death", {6038237, 38237, 328857, 328858, 328859, 328860, 328861, 328862, 328863, 328864, 328865, 328866, 328867, 328868} },
{"Borean Smasher", {6038238, 38238, 328869, 328870, 328871, 328872, 328873, 328874, 328875, 328876, 328877, 328878, 328879, 328880} },
{"Tower of the Infinite Mind", {6038239, 38239, 328881, 328882, 328883, 328884, 328885, 328886, 328887, 328888, 328889, 328890, 328891, 328892} },
{"Staff of the Purposeful Mendicant", {6038240, 38240, 328893, 328894, 328895, 328896, 328897, 328898, 328899, 328900, 328901, 328902, 328903, 328904} },
{"Fury of the Raging Dragon", {6038241, 38241, 328905, 328906, 328907, 328908, 328909, 328910, 328911, 328912, 328913, 328914, 328915, 328916} },
{"Fang of the Desolate Soul", {6038242, 38242, 328917, 328918, 328919, 328920, 328921, 328922, 328923, 328924, 328925, 328926, 328927, 328928} },
{"Valorous Exterminator", {6038244, 38244, 328942, 328943, 328944, 328945, 328946, 328947, 328948, 328949, 328950, 328951, 328952, 328953} },
{"Crystalline Providence", {6038245, 38245, 328954, 328955, 328956, 328957, 328958, 328959, 328960, 328961, 328962, 328965, 328969, 328970} },
{"Skull-Forged Blunderbuss", {6038246, 38246, 328971, 328972, 328973, 328974, 328975, 328976, 328977, 328978, 328979, 328980, 328981, 328982} },
{"Entrail Render", {6038247, 38247, 328983, 328984, 328985, 328986, 328987, 328988, 328989, 328990, 328991, 328992, 328993, 328994} },
{"Torch of the Fallen Souls", {6038248, 38248, 328995, 328996, 328997, 328998, 328999, 329000, 329001, 329002, 329003, 329004, 329005, 329006} },
{"Activist's Signet of Blasting", {6038250, 38250, 329007, 329008, 329009, 329010, 329013, 329014, 329018, 329024, 329025, 329026, 329027, 329041} },
{"Ring of Indignant Rage", {6038251, 38251, 329051, 329052, 329101, 329102, 329103, 329104, 329105, 329106, 329107, 329108, 329109, 329110} },
{"Band of Wholesome Preservation", {6038252, 38252, 329111, 329112, 329113, 329114, 329115, 329116, 329117, 329118, 329119, 329120, 329121, 329122} },
{"Strike of the Seas", {6038257, 38257, 329162, 329163, 329164, 329165, 329166, 329167, 329168, 329169, 329170, 329171, 329172, 329173} },
{"Sailor's Knotted Charm", {6038258, 38258, 329174, 329175, 329176, 329177, 329178, 329179, 329180, 329181, 329182, 329183, 329184, 329185} },
{"First Mate's Pocketwatch", {6038259, 38259, 329186, 329187, 329188, 329189, 329190, 329191, 329192, 329193, 329194, 329195, 329196, 329197} },
{"Bland Two-Handed Blade", {6038282, 38282, 329198, 329199, 329200, 329201, 329202, 329203, 329204, 329205, 329206, 329207, 329208, 329209} },
{"Siegemaster's Torch Ring", {329211, 38284, 329210, 329212, 329213, 329214, 329215, 329216, 329217, 329218, 329219, 329220, 329221, 329222} },
{"Empty Mug of Direbrew", {6038287, 38287, 329223, 329224, 329225, 329226, 329227, 329228, 329229, 329230, 329231, 329232, 329233, 329234} },
{"Direbrew Hops", {6038288, 38288, 329235, 329236, 329237, 329238, 329239, 329240, 329241, 329242, 329243, 329244, 329245, 329246} },
{"Coren's Lucky Coin", {6038289, 38289, 329247, 329248, 329249, 329250, 329251, 329252, 329253, 329254, 329255, 329256, 329257, 329258} },
{"Dark Iron Smoking Pipe", {6038290, 38290, 329259, 329260, 329261, 329262, 329263, 329264, 329265, 329266, 329267, 329268, 329269, 329270} },
{"Suntouched Flowers", {329272, 38293, 329271, 329273, 329274, 329275, 329276, 329277, 329278, 329279, 329280, 329281, 329282, 329283} },
{"Venture Bay Buccaneer's Cape", {6038353, 38353, 329322, 329323, 329324, 329325, 329326, 329327, 329328, 329329, 329330, 329331, 329332, 329333} },
{"Oil-Stained Tarp", {6038354, 38354, 329334, 329335, 329336, 329337, 329338, 329339, 329340, 329341, 329342, 329343, 329344, 329345} },
{"Thick Goblin Back Protector ", {6038355, 38355, 329346, 329347, 329348, 329349, 329350, 329351, 329352, 329353, 329354, 329355, 329356, 329357} },
{"Venture Battle Wand", {6038356, 38356, 329358, 329359, 329360, 329361, 329362, 329363, 329364, 329365, 329366, 329367, 329368, 329369} },
{"Sharpened Throwing Gizmo", {6038357, 38357, 329370, 329371, 329372, 329373, 329374, 329375, 329376, 329377, 329378, 329379, 329380, 329381} },
{"Arcane Revitalizer", {6038358, 38358, 329382, 329383, 329384, 329385, 329386, 329387, 329388, 329389, 329390, 329391, 329392, 329393} },
{"Goblin Repetition Reducer", {6038359, 38359, 329394, 329395, 329396, 329397, 329398, 329399, 329400, 329401, 329402, 329403, 329404, 329405} },
{"Idol of Arcane Terror", {6038360, 38360, 329406, 329407, 329408, 329409, 329410, 329411, 329412, 329413, 329414, 329415, 329416, 329417} },
{"Venture Co. Lightning Rod", {6038361, 38361, 329418, 329419, 329420, 329421, 329422, 329423, 329424, 329425, 329426, 329427, 329428, 329429} },
{"Venture Co. Libram of Retribution", {6038362, 38362, 329430, 329431, 329432, 329433, 329434, 329435, 329436, 329437, 329438, 329439, 329440, 329441} },
{"Venture Co. Libram of Protection", {6038363, 38363, 329442, 329443, 329444, 329445, 329446, 329447, 329448, 329449, 329450, 329451, 329452, 329453} },
{"Venture Co. Libram of Mostly Holy Deeds", {6038364, 38364, 329454, 329455, 329456, 329457, 329459, 329460, 329461, 329462, 329463, 329464, 329465, 329466} },
{"Idol of Perspicacious Attacks", {6038365, 38365, 329467, 329468, 329469, 329470, 329471, 329472, 329473, 329474, 329475, 329476, 329477, 329478} },
{"Idol of Pure Thoughts", {6038366, 38366, 329479, 329480, 329481, 329482, 329483, 329484, 329485, 329486, 329487, 329488, 329489, 329490} },
{"Venture Co. Flame Slicer", {6038367, 38367, 329491, 329492, 329493, 329494, 329495, 329496, 329497, 329498, 329499, 329500, 329501, 329502} },
{"Totem of the Bay", {6038368, 38368, 329503, 329504, 329505, 329506, 329507, 329508, 329509, 329510, 329511, 329512, 329513, 329514} },
{"Valonforth's Folly", {329516, 38383, 329515, 329517, 329518, 329519, 329520, 329521, 329522, 329523, 329524, 329525, 329526, 329527} },
{"Grizzled Hat", {6038387, 38387, 329528, 329529, 329530, 329531, 329532, 329533, 329534, 329535, 329536, 329537, 329538, 329539} },
{"Cap of the North", {6038388, 38388, 329540, 329541, 329542, 329543, 329544, 329545, 329546, 329547, 329548, 329549, 329550, 329551} },
{"Comfy Raccoonskin Hat", {6038389, 38389, 329552, 329553, 329554, 329555, 329556, 329557, 329558, 329559, 329560, 329561, 329562, 329563} },
{"The Rugged Marksman", {6038390, 38390, 329564, 329565, 329566, 329567, 329568, 329569, 329570, 329571, 329572, 329573, 329574, 329575} },
{"Arctic Chestpiece", {329577, 38400, 329576, 329578, 329579, 329580, 329581, 329582, 329583, 329584, 329585, 329586, 329587, 329588} },
{"Arctic Leggings", {329590, 38401, 329589, 329591, 329592, 329593, 329594, 329595, 329596, 329597, 329598, 329599, 329600, 329601} },
{"Arctic Shoulderpads", {329603, 38402, 329602, 329604, 329605, 329606, 329607, 329608, 329609, 329610, 329611, 329612, 329613, 329614} },
{"Arctic Gloves", {329616, 38403, 329615, 329617, 329618, 329619, 329620, 329621, 329622, 329623, 329624, 329625, 329626, 329627} },
{"Arctic Boots", {329629, 38404, 329628, 329630, 329631, 329632, 329633, 329634, 329635, 329636, 329637, 329638, 329639, 329640} },
{"Arctic Belt", {329642, 38405, 329641, 329643, 329644, 329645, 329646, 329647, 329648, 329649, 329650, 329651, 329652, 329653} },
{"Iceborne Belt", {329655, 38406, 329654, 329656, 329657, 329658, 329659, 329660, 329661, 329662, 329663, 329664, 329665, 329666} },
{"Iceborne Boots", {329668, 38407, 329667, 329669, 329670, 329671, 329672, 329673, 329674, 329675, 329676, 329677, 329678, 329679} },
{"Iceborne Chestguard", {329681, 38408, 329680, 329682, 329683, 329684, 329685, 329686, 329687, 329688, 329689, 329690, 329691, 329692} },
{"Iceborne Gloves", {329694, 38409, 329693, 329695, 329696, 329697, 329698, 329699, 329700, 329701, 329702, 329703, 329704, 329705} },
{"Iceborne Leggings", {329707, 38410, 329706, 329708, 329709, 329710, 329711, 329712, 329713, 329714, 329715, 329716, 329717, 329718} },
{"Iceborne Shoulderpads", {329720, 38411, 329719, 329721, 329722, 329723, 329724, 329725, 329726, 329727, 329728, 329729, 329730, 329731} },
{"Frostscale Belt", {329733, 38412, 329732, 329734, 329735, 329736, 329737, 329738, 329739, 329740, 329741, 329742, 329743, 329744} },
{"Frostscale Boots", {329746, 38413, 329745, 329747, 329748, 329749, 329750, 329751, 329752, 329768, 329769, 329770, 329771, 329772} },
{"Frostscale Chestguard", {329774, 38414, 329773, 329775, 329776, 329777, 329778, 329779, 329780, 329781, 329782, 329783, 329784, 329785} },
{"Frostscale Gloves", {329787, 38415, 329786, 329788, 329789, 329790, 329791, 329792, 329793, 329794, 329795, 329796, 329797, 329798} },
{"Frostscale Leggings", {329800, 38416, 329799, 329801, 329802, 329803, 329804, 329805, 329806, 329807, 329808, 329809, 329810, 329811} },
{"Nerubian Shoulders", {329813, 38417, 329812, 329814, 329815, 329816, 329817, 329818, 329819, 329820, 329821, 329822, 329823, 329824} },
{"Nerubian Belt", {329826, 38418, 329825, 329827, 329828, 329829, 329830, 329831, 329832, 329833, 329834, 329835, 329836, 329837} },
{"Nerubian Boots", {329839, 38419, 329838, 329840, 329841, 329842, 329843, 329844, 329845, 329846, 329847, 329848, 329849, 329850} },
{"Nerubian Chestguard", {329852, 38420, 329851, 329853, 329854, 329855, 329856, 329857, 329858, 329859, 329860, 329861, 329862, 329863} },
{"Nerubian Gloves", {329865, 38421, 329864, 329866, 329867, 329868, 329869, 329870, 329871, 329872, 329873, 329874, 329875, 329876} },
{"Nerubian Legguards", {329878, 38422, 329877, 329879, 329880, 329881, 329882, 329883, 329884, 329885, 329886, 329887, 329888, 329889} },
{"Frostscale Shoulders", {329891, 38424, 329890, 329892, 329893, 329894, 329895, 329896, 329897, 329898, 329899, 329900, 329901, 329902} },
{"Arctic Wristguards", {329904, 38433, 329903, 329905, 329906, 329907, 329908, 329909, 329910, 329911, 329912, 329913, 329914, 329915} },
{"Iceborne Wristguards", {329917, 38434, 329916, 329919, 329926, 329927, 329928, 329929, 329930, 329931, 329932, 329933, 329934, 329935} },
{"Nerubian Bracers", {329937, 38435, 329936, 329938, 329939, 329940, 329941, 329942, 329943, 329944, 329945, 329946, 329952, 329953} },
{"Frostscale Bracers", {329955, 38436, 329954, 329956, 329957, 329958, 329959, 329960, 329961, 329963, 329964, 329967, 329968, 329969} },
{"Arctic Helm", {329971, 38437, 329970, 329973, 329974, 329975, 329978, 329979, 329980, 329999, 330000, 330001, 330002, 330003} },
{"Iceborne Helm", {330005, 38438, 330004, 330006, 330007, 330009, 330010, 330011, 330012, 330013, 330014, 330015, 330016, 330017} },
{"Nerubian Helm", {330019, 38439, 330018, 330031, 330032, 330033, 330034, 330035, 330036, 330037, 330038, 330039, 330040, 330041} },
{"Frostscale Helm", {330043, 38440, 330042, 330044, 330045, 330046, 330069, 330070, 330071, 330072, 330073, 330074, 330076, 330077} },
{"Cloak of Harsh Winds", {6038441, 38441, 330078, 330086, 330087, 330088, 330089, 330093, 330094, 330128, 330147, 330155, 330156, 330157} },
{"Mail Melee Leatherworking Chest", {6038442, 38442, 330158, 330174, 330175, 330176, 330177, 330178, 330179, 330180, 330181, 330182, 330183, 330184} },
{"Mail Melee Leatherworking Shoulders", {6038443, 38443, 330186, 330187, 330188, 330191, 330193, 330195, 330197, 330198, 330199, 330200, 330201, 330202} },
{"Mail Melee Leatherworking Bracer", {6038444, 38444, 330203, 330204, 330208, 330209, 330218, 330224, 330225, 330226, 330227, 330251, 330252, 330253} },
{"Mail Caster Leatherworking Helm", {6038445, 38445, 330254, 330255, 330256, 330257, 330258, 330259, 330260, 330261, 330262, 330263, 330264, 330265} },
{"Bulwark of the Warchief", {6038452, 38452, 330266, 330267, 330268, 330269, 330270, 330271, 330272, 330273, 330274, 330275, 330276, 330277} },
{"Shield of the Lion-hearted", {6038453, 38453, 330278, 330279, 330280, 330281, 330282, 330283, 330284, 330285, 330286, 330287, 330288, 330289} },
{"Warsong Punisher", {6038454, 38454, 330290, 330291, 330292, 330293, 330294, 330295, 330296, 330297, 330298, 330299, 330300, 330301} },
{"Hammer of the Alliance Vanguard", {6038455, 38455, 330302, 330303, 330304, 330305, 330306, 330307, 330308, 330309, 330310, 330312, 330313, 330314} },
{"Sin'dorei Recurve Bow", {6038456, 38456, 330315, 330316, 330317, 330318, 330319, 330320, 330321, 330322, 330323, 330324, 330325, 330326} },
{"Sawed-off Hand Cannon", {6038457, 38457, 330327, 330328, 330329, 330330, 330331, 330332, 330333, 330334, 330335, 330336, 330337, 330338} },
{"Darkspear Orb", {6038458, 38458, 330339, 330340, 330341, 330342, 330343, 330344, 330345, 330346, 330347, 330348, 330349, 330350} },
{"Orb of the Eastern Kingdoms", {6038459, 38459, 330351, 330352, 330353, 330354, 330355, 330356, 330357, 330358, 330359, 330360, 330361, 330362} },
{"Charged Wand of the Cleft", {6038460, 38460, 330363, 330364, 330365, 330366, 330367, 330368, 330369, 330370, 330371, 330372, 330373, 330374} },
{"Warsong Shanker", {6038461, 38461, 330375, 330376, 330377, 330378, 330379, 330380, 330381, 330382, 330383, 330384, 330385, 330386} },
{"Warsong Stormshield ", {6038462, 38462, 330387, 330388, 330389, 330390, 330391, 330392, 330393, 330394, 330395, 330396, 330397, 330398} },
{"Lordaeron's Resolve ", {6038463, 38463, 330399, 330400, 330401, 330402, 330403, 330404, 330405, 330406, 330407, 330408, 330409, 330410} },
{"Gnomish Magician's Quill", {6038464, 38464, 330411, 330412, 330413, 330414, 330415, 330416, 330417, 330418, 330419, 330420, 330421, 330422} },
{"Vanguard Soldier's Dagger", {6038465, 38465, 330423, 330424, 330425, 330426, 330427, 330428, 330429, 330430, 330431, 330432, 330433, 330434} },
{"Kalu'ak Peacebringer", {6038468, 38468, 330435, 330436, 330437, 330438, 330439, 330440, 330441, 330442, 330443, 330444, 330445, 330448} },
{"QA Test Slow Fist Weapon", {6038469, 38469, 330451, 330452, 330453, 330454, 330455, 330456, 330457, 330458, 330459, 330460, 330461, 330462} },
{"QA Test Slow Gun", {6038471, 38471, 330463, 330464, 330465, 330466, 330467, 330468, 330469, 330470, 330471, 330472, 330473, 330474} },
{"QA Test Slow Two-Handed Mace", {6038480, 38480, 330475, 330476, 330477, 330478, 330479, 330480, 330481, 330482, 330483, 330484, 330485, 330486} },
{"QA Test Slow Two-Handed Axe", {6038481, 38481, 330487, 330488, 330489, 330490, 330491, 330492, 330493, 330494, 330495, 330496, 330497, 330498} },
{"Don Carlos' Famous Hat", {6038506, 38506, 102324, 438506, 1007837, 1014720, 1021384, 1027949, 1034513, 1041076, 1047639, 1054202, 1060765, 1067328} },
{"Legpads of the Inquisitor", {330565, 38528, 330564, 330566, 330567, 330568, 330569, 330570, 330571, 330572, 330573, 330574, 330575, 330576} },
{"Robe of the Justicebringer", {330578, 38529, 330577, 330579, 330580, 330581, 330582, 330583, 330584, 330585, 330586, 330587, 330588, 330589} },
{"Wrap of Vigorous Destruction", {6038530, 38530, 330590, 330591, 330592, 330593, 330594, 330595, 330596, 330597, 330598, 330599, 330600, 330601} },
{"Links of Righteous Persecution", {6038531, 38531, 330602, 330603, 330604, 330605, 330606, 330607, 330608, 330609, 330610, 330611, 330612, 330613} },
{"Belt of Vengeful Purification", {6038532, 38532, 330614, 330615, 330616, 330617, 330618, 330622, 330623, 330624, 330625, 330628, 330630, 330631} },
{"Girdle of Forceful Annihilation", {6038533, 38533, 330632, 330633, 330634, 330635, 330636, 330637, 330638, 330639, 330640, 330645, 330646, 330647} },
{"Purity-Anointed Warbands", {6038534, 38534, 330648, 330649, 330650, 330651, 330652, 330653, 330654, 330655, 330656, 330657, 330658, 330659} },
{"Wristguards of the Remorseful", {6038535, 38535, 330660, 330661, 330662, 330669, 330670, 330671, 330672, 330679, 330688, 330689, 330690, 330691} },
{"Bindings of the Forceful Vanquisher", {6038536, 38536, 330692, 330693, 330694, 330695, 330696, 330697, 330698, 330699, 330700, 330701, 330702, 330703} },
{"Cuffs of the Decapitator", {6038537, 38537, 330704, 330705, 330706, 330707, 330708, 330709, 330710, 330711, 330712, 330713, 330714, 330715} },
{"Sandals of Chaos Resolution", {6038540, 38540, 330716, 330717, 330718, 330719, 330721, 330722, 330723, 330724, 330725, 330726, 330727, 330728} },
{"Implacable Zombie Crushers", {6038541, 38541, 330729, 330730, 330731, 330732, 330733, 330734, 330735, 330736, 330737, 330738, 330739, 330740} },
{"Treads of the Valiant Struggle", {6038542, 38542, 330741, 330742, 330743, 330744, 330745, 330746, 330747, 330748, 330749, 330750, 330751, 330752} },
{"Reinforced Traveler's Boots", {6038543, 38543, 330753, 330754, 330755, 330756, 330757, 330758, 330759, 330760, 330761, 330762, 330763, 330764} },
{"Bounty Procurement Enhancer", {6038572, 38572, 330765, 330766, 330767, 330768, 330769, 330770, 330771, 330772, 330773, 330774, 330775, 330776} },
{"Black Chitinguard Boots", {6038590, 38590, 330814, 330815, 330816, 330817, 330818, 330819, 330820, 330821, 330822, 330823, 330824, 330825} },
{"Dark Arctic Leggings", {6038591, 38591, 330826, 330827, 330828, 330829, 330830, 330831, 330832, 330833, 330834, 330835, 330836, 330837} },
{"Dark Arctic Chestpiece", {6038592, 38592, 330838, 330839, 330840, 330841, 330842, 330843, 330844, 330845, 330846, 330847, 330848, 330849} },
{"Ringlet of Repose", {6038611, 38611, 330850, 330851, 330852, 330853, 330854, 330855, 330856, 330857, 330858, 330859, 330860, 330867} },
{"Chain of Fiery Orbs", {6038613, 38613, 330875, 330876, 330877, 330890, 330920, 330921, 330922, 330923, 330924, 330925, 330926, 330927} },
{"Embrace of Sorrow", {6038614, 38614, 330928, 330929, 330930, 330931, 330932, 330933, 330934, 330935, 330936, 330937, 330938, 330939} },
{"Greatsword of the Ebon Blade", {6038632, 38632, 330977, 330978, 330979, 330980, 330981, 330982, 330983, 330984, 330985, 330986, 330987, 330988} },
{"Greataxe of the Ebon Blade", {6038633, 38633, 330989, 330990, 330991, 330992, 330993, 330994, 330995, 330996, 330997, 330998, 330999, 331000} },
{"Greathelm of the Scourge Champion", {6038661, 38661, 331001, 331002, 331003, 331004, 331005, 331006, 331007, 331008, 331009, 331010, 331011, 331012} },
{"Bladed Ebon Amulet", {6038662, 38662, 331013, 331014, 331015, 331016, 331017, 331018, 331019, 331020, 331021, 331022, 331023, 331024} },
{"Blood-soaked Saronite Plated Spaulders", {6038663, 38663, 331025, 331026, 331027, 331028, 331029, 331030, 331031, 331032, 331033, 331034, 331035, 331036} },
{"Sky Darkener's Shroud of the Unholy", {6038664, 38664, 331037, 331038, 331039, 331040, 331041, 331042, 331043, 331044, 331045, 331046, 331047, 331048} },
{"Saronite War Plate", {6038665, 38665, 331049, 331050, 331051, 331052, 331053, 331054, 331055, 331056, 331057, 331058, 331059, 331060} },
{"Plated Saronite Bracers", {6038666, 38666, 331061, 331062, 331063, 331064, 331065, 331066, 331067, 331068, 331069, 331070, 331071, 331072} },
{"Bloodbane's Gauntlets of Command", {6038667, 38667, 331073, 331074, 331075, 331076, 331077, 331078, 331079, 331080, 331081, 331082, 331083, 331084} },
{"The Plaguebringer's Girdle", {6038668, 38668, 331085, 331086, 331087, 331088, 331089, 331090, 331091, 331092, 331093, 331094, 331095, 331096} },
{"Engraved Saronite Legplates", {6038669, 38669, 331097, 331098, 331099, 331100, 331101, 331102, 331103, 331104, 331105, 331106, 331107, 331108} },
{"Greaves of the Slaughter", {6038670, 38670, 331109, 331110, 331111, 331112, 331113, 331114, 331115, 331116, 331117, 331118, 331119, 331120} },
{"Valanar's Signet Ring", {6038671, 38671, 331121, 331122, 331123, 331124, 331125, 331126, 331127, 331128, 331129, 331130, 331131, 331132} },
{"Keleseth's Signet Ring", {6038672, 38672, 331133, 331134, 331135, 331136, 331137, 331138, 331139, 331140, 331141, 331142, 331143, 331144} },
{"Soul Harvester's Charm", {6038674, 38674, 331145, 331146, 331147, 331148, 331149, 331150, 331151, 331152, 331153, 331154, 331155, 331156} },
{"Signet of the Dark Brotherhood", {6038675, 38675, 331157, 331158, 331159, 331160, 331161, 331162, 331163, 331164, 331165, 331166, 331167, 331168} },
{"ObsoleteSigil of the Dark Rider (OLD)", {6038683, 38683, 331169, 331170, 331171, 331172, 331173, 331174, 331175, 331176, 331177, 331178, 331179, 331180} },
{"Runed Soulblade", {6038707, 38707, 331195, 331196, 331197, 331198, 331199, 331200, 331201, 331202, 331203, 331204, 331205, 331206} },
{"Wayfinder's Bracers", {331208, 38710, 331207, 331209, 331210, 331211, 331212, 331213, 331214, 331215, 331216, 331217, 331218, 331219} },
{"Grounded Gloves", {331221, 38711, 331220, 331222, 331223, 331224, 331225, 331226, 331227, 331228, 331229, 331230, 331231, 331232} },
{"Headbinder's Crown", {331234, 38712, 331233, 331235, 331236, 331237, 331238, 331239, 331240, 331241, 331242, 331243, 331244, 331245} },
{"Spaulders of Foresight", {331247, 38713, 331246, 331248, 331249, 331250, 331251, 331252, 331253, 331254, 331255, 331256, 331257, 331258} },
{"Path-Cutter's Cord", {331260, 38714, 331259, 331261, 331262, 331263, 331264, 331265, 331266, 331267, 331268, 331269, 331270, 331271} },
{"Forge-Scarred Sandals", {331273, 38715, 331272, 331274, 331275, 331276, 331277, 331278, 331279, 331280, 331281, 331282, 331283, 331296} },
{"Ethereal Hood", {331301, 38716, 331300, 331302, 331307, 331309, 331310, 331311, 331312, 331313, 331314, 331315, 331316, 331317} },
{"Dusty Miner's Leggings", {331325, 38717, 331324, 331327, 331337, 331341, 331344, 331345, 331346, 331347, 331348, 331349, 331350, 331351} },
{"Wispy Shoulderpads", {331353, 38718, 331352, 331354, 331355, 331356, 331357, 331358, 331359, 331360, 331361, 331362, 331363, 331364} },
{"Robe of Expurgation", {331366, 38719, 331365, 331367, 331368, 331369, 331370, 331371, 331372, 331373, 331374, 331375, 331376, 331377} },
{"Instigator's Gloves", {331379, 38726, 331378, 331380, 331381, 331382, 331383, 331384, 331385, 331386, 331387, 331388, 331389, 331390} },
{"Foreseer's Girdle", {331392, 38727, 331391, 331393, 331394, 331395, 331396, 331397, 331398, 331399, 331400, 331401, 331402, 331403} },
{"Kilt of Peaceful Reclamation", {331405, 38728, 331404, 331406, 331407, 331408, 331409, 331410, 331411, 331412, 331413, 331414, 331415, 331416} },
{"Sandals of Quick Escape", {331418, 38729, 331417, 331419, 331420, 331421, 331422, 331423, 331424, 331425, 331426, 331427, 331428, 331429} },
{"Bell-Ringer's Shoulderpads", {331431, 38730, 331430, 331432, 331433, 331434, 331435, 331436, 331437, 331438, 331439, 331440, 331441, 331442} },
{"Bramble-Proof Leggings", {331444, 38732, 331443, 331445, 331446, 331447, 331448, 331449, 331450, 331451, 331452, 331453, 331454, 331455} },
{"Raiment of the Caged Beast", {331457, 38733, 331456, 331458, 331459, 331460, 331461, 331462, 331463, 331464, 331465, 331466, 331467, 331468} },
{"Abandoned Hood", {331470, 38734, 331469, 331471, 331472, 331473, 331474, 331475, 331476, 331477, 331478, 331479, 331480, 331481} },
{"Specially Treated Robes", {331483, 38735, 331482, 331484, 331485, 331486, 331487, 331488, 331489, 331490, 331491, 331492, 331493, 331494} },
{"Smuggler's Bracers", {331496, 38736, 331495, 331497, 331498, 331499, 331500, 331501, 331502, 331503, 331504, 331505, 331506, 331507} },
{"Shock-Proof Head Protector", {331509, 38737, 331508, 331510, 331511, 331512, 331513, 331514, 331515, 331516, 331517, 331518, 331519, 331520} },
{"Fleshwerk Shackles", {331522, 38739, 331521, 331523, 331524, 331525, 331526, 331527, 331528, 331529, 331530, 331531, 331532, 331533} },
{"Gloves of Tormented Recollection", {331535, 38741, 331534, 331536, 331537, 331538, 331539, 331540, 331541, 331542, 331543, 331544, 331545, 331546} },
{"Band of the Tender", {331548, 38743, 331547, 331549, 331550, 331551, 331552, 331553, 331554, 331555, 331556, 331557, 331558, 331559} },
{"Solstice Signet", {331561, 38744, 331560, 331562, 331563, 331564, 331565, 331566, 331567, 331568, 331569, 331570, 331571, 331572} },
{"Fetid Loop", {331574, 38745, 331573, 331575, 331576, 331577, 331578, 331579, 331580, 331581, 331582, 331583, 331584, 331585} },
{"Rancid Signet", {331587, 38746, 331586, 331588, 331589, 331590, 331591, 331592, 331593, 331594, 331595, 331596, 331597, 331598} },
{"Mildly Tarnished Ring", {331600, 38747, 331599, 331601, 331602, 331603, 331604, 331605, 331606, 331607, 331608, 331609, 331610, 331611} },
{"Seal of the Slumbering Wolf", {331613, 38748, 331612, 331614, 331615, 331616, 331617, 331618, 331619, 331620, 331621, 331622, 331623, 331624} },
{"Thane-Reaper's Signet", {331626, 38749, 331625, 331627, 331628, 331629, 331630, 331631, 331632, 331633, 331634, 331635, 331636, 331637} },
{"Worgslayer's Ring", {331639, 38750, 331638, 331640, 331641, 331642, 331643, 331644, 331645, 331646, 331647, 331648, 331649, 331650} },
{"Vengeful Spirit Beads", {331652, 38751, 331651, 331653, 331654, 331655, 331656, 331657, 331658, 331659, 331660, 331661, 331662, 331663} },
{"Tatjana's Pendant", {331665, 38752, 331664, 331666, 331667, 331668, 331669, 331670, 331671, 331672, 331673, 331674, 331675, 331676} },
{"Hoarder's Necklace", {331678, 38753, 331677, 331679, 331680, 331681, 331682, 331683, 331684, 331685, 331686, 331687, 331688, 331689} },
{"Pruning Pendant", {331691, 38754, 331690, 331692, 331693, 331694, 331695, 331696, 331697, 331698, 331699, 331700, 331701, 331702} },
{"Scepter of Passionate Reprisal", {331704, 38755, 331703, 331705, 331706, 331707, 331708, 331709, 331710, 331711, 331712, 331713, 331714, 331715} },
{"Drape of Horticultural Sanitization", {331717, 38756, 331716, 331718, 331719, 331720, 331721, 331722, 331723, 331724, 331725, 331726, 331727, 331728} },
{"Drape of the Possessive Soul", {331730, 38757, 331729, 331731, 331732, 331733, 331734, 331735, 331736, 331737, 331738, 331739, 331740, 331741} },
{"Therapeutic Cloak", {331743, 38758, 331742, 331744, 331745, 331746, 331747, 331748, 331749, 331750, 331751, 331752, 331753, 331754} },
{"Injured Trapper's Cloak", {331756, 38759, 331755, 331757, 331758, 331759, 331760, 331761, 331762, 331763, 331764, 331765, 331766, 331767} },
{"Mendicant's Charm", {331769, 38760, 331768, 331770, 331771, 331772, 331773, 331774, 331775, 331776, 331777, 331778, 331779, 331780} },
{"Talon of Hatred", {331782, 38761, 331781, 331783, 331784, 331785, 331786, 331787, 331788, 331789, 331790, 331791, 331792, 331793} },
{"Insignia of Bloody Fire", {331795, 38762, 331794, 331796, 331797, 331798, 331799, 331800, 331801, 331802, 331803, 331804, 331805, 331806} },
{"Futuresight Rune", {331808, 38763, 331807, 331809, 331810, 331811, 331812, 331813, 331814, 331815, 331816, 331817, 331818, 331819} },
{"Rune of Finite Variation", {331821, 38764, 331820, 331822, 331823, 331824, 331825, 331826, 331827, 331828, 331829, 331830, 331831, 331832} },
{"Rune of Infinite Power", {331834, 38765, 331833, 331835, 331836, 331837, 331838, 331839, 331840, 331841, 331842, 331843, 331844, 331845} },
{"Wolfslayer's Crest", {331847, 39010, 331846, 331848, 331849, 331850, 331851, 331852, 331853, 331854, 331855, 331856, 331857, 331858} },
{"Bloody Bulwark", {331860, 39011, 331859, 331861, 331862, 331863, 331864, 331865, 331866, 331867, 331868, 331869, 331870, 331871} },
{"Discoverer's Mitts", {331873, 39013, 331872, 331874, 331875, 331876, 331877, 331878, 331879, 331880, 331881, 331882, 331883, 331884} },
{"Crackpot Spaulders", {331886, 39015, 331885, 331887, 331888, 331889, 331890, 331891, 331892, 331893, 331894, 331895, 331896, 331897} },
{"Tunic of the Rectified Thane", {331899, 39016, 331898, 331900, 331901, 331902, 331903, 331904, 331905, 331906, 331907, 331908, 331909, 331910} },
{"Belt of Keen Hearing", {331912, 39017, 331911, 331913, 331914, 331915, 331916, 331917, 331918, 331919, 331920, 331921, 331922, 331923} },
{"Boots of Safe Travel", {331925, 39018, 331924, 331926, 331927, 331928, 331929, 331930, 331931, 331932, 331933, 331934, 331935, 331936} },
{"Iron-Shatter Leggings", {331938, 39019, 331937, 331939, 331940, 331941, 331942, 331943, 331944, 331945, 331946, 331947, 331948, 331949} },
{"Drakuru's Ghastly Helm", {331951, 39020, 331950, 331952, 331953, 331954, 331955, 331956, 331957, 331958, 331959, 331960, 331961, 331962} },
{"Ectoplasm Stained Wristguards", {331964, 39021, 331963, 331965, 331966, 331967, 331968, 331969, 331970, 331971, 331972, 331973, 331974, 331975} },
{"Helm of Rising Smoke", {331977, 39022, 331976, 331978, 331979, 331980, 331981, 331982, 331983, 331984, 331985, 331986, 331987, 331988} },
{"Wax-Coated Chestguard", {331990, 39023, 331989, 331991, 331992, 331993, 331994, 331995, 331996, 331997, 331998, 331999, 332000, 332001} },
{"Shackles of Sanity", {332003, 39025, 332002, 332004, 332005, 332006, 332007, 332008, 332009, 332010, 332011, 332012, 332013, 332014} },
{"Pauldrons of the Prophet", {332016, 39026, 332015, 332017, 332018, 332019, 332020, 332021, 332022, 332023, 332024, 332025, 332026, 332027} },
{"Leggings of Anger Management", {332029, 39027, 332028, 332030, 332031, 332032, 332033, 332034, 332035, 332036, 332037, 332038, 332039, 332040} },
{"Coiled Leather Gauntlets", {332042, 39028, 332041, 332043, 332044, 332045, 332046, 332047, 332048, 332049, 332050, 332051, 332052, 332053} },
{"Waistguard of Expedient Procurement", {332055, 39029, 332054, 332056, 332057, 332058, 332059, 332060, 332061, 332062, 332063, 332064, 332065, 332066} },
{"Patchhide Pants", {332068, 39030, 332067, 332069, 332070, 332071, 332072, 332073, 332074, 332075, 332076, 332077, 332078, 332079} },
{"Boots of Internal Strife", {332081, 39031, 332080, 332082, 332083, 332084, 332085, 332086, 332087, 332088, 332089, 332090, 332091, 332092} },
{"Discarded Miner's Jerkin", {332094, 39033, 332093, 332095, 332096, 332097, 332098, 332099, 332100, 332101, 332102, 332103, 332104, 332105} },
{"Bearskin Helm", {332107, 39034, 332106, 332108, 332109, 332110, 332111, 332112, 332113, 332114, 332115, 332116, 332117, 332118} },
{"Glacier-walker's Mukluks", {332120, 39035, 332119, 332121, 332122, 332123, 332124, 332125, 332126, 332127, 332128, 332129, 332130, 332131} },
{"Hulking Horror Tunic", {332133, 39036, 332132, 332134, 332135, 332136, 332137, 332138, 332139, 332140, 332141, 332142, 332143, 332144} },
{"Fleshwerk Wristguards", {332146, 39038, 332145, 332147, 332148, 332149, 332150, 332151, 332152, 332153, 332154, 332155, 332156, 332157} },
{"Gloves of Troubled Memory", {332159, 39040, 332158, 332160, 332161, 332162, 332163, 332164, 332165, 332166, 332167, 332168, 332169, 332170} },
{"Trailbreaker's Spaulders", {332172, 39043, 332171, 332173, 332174, 332175, 332176, 332177, 332178, 332179, 332180, 332181, 332182, 332183} },
{"Short-Circuiting Boots", {332185, 39044, 332184, 332186, 332187, 332188, 332189, 332191, 332192, 332193, 332194, 332195, 332196, 332197} },
{"Legguards of Refuted Feudalism", {332199, 39045, 332198, 332200, 332201, 332202, 332203, 332204, 332205, 332206, 332207, 332208, 332209, 332210} },
{"Shoulderpads of Imminent Disaster", {332212, 39046, 332211, 332213, 332214, 332215, 332216, 332217, 332218, 332219, 332220, 332221, 332222, 332223} },
{"Legguards of Unerring Navigation", {332225, 39047, 332224, 332226, 332227, 332228, 332229, 332230, 332231, 332233, 332244, 332246, 332249, 332272} },
{"Flame-Tested Chestguard", {332277, 39048, 332274, 332281, 332282, 332283, 332284, 332285, 332286, 332287, 332288, 332289, 332290, 332291} },
{"Helm of Spirit Links", {332293, 39049, 332292, 332294, 332295, 332296, 332297, 332298, 332299, 332300, 332301, 332302, 332303, 332304} },
{"Ghostridden Waistguard", {332306, 39050, 332305, 332307, 332308, 332309, 332310, 332311, 332312, 332313, 332314, 332315, 332316, 332317} },
{"Plane-shifted Boots", {332319, 39051, 332318, 332320, 332321, 332322, 332355, 332356, 332357, 332358, 332359, 332360, 332364, 332371} },
{"Acid-Resistant Hauberk", {332378, 39052, 332372, 332379, 332380, 332381, 332382, 332383, 332384, 332386, 332387, 332388, 332389, 332390} },
{"Helm of the Furbolg Purifier", {332392, 39053, 332391, 332393, 332394, 332395, 332396, 332397, 332398, 332399, 332400, 332401, 332402, 332403} },
{"Gossamer-Stained Grips", {332405, 39054, 332404, 332406, 332407, 332408, 332409, 332410, 332411, 332412, 332413, 332414, 332415, 332416} },
{"Handguards of Extermination", {332418, 39055, 332417, 332419, 332420, 332421, 332422, 332423, 332424, 332425, 332426, 332427, 332428, 332429} },
{"Whip-Stitched Wristguards", {332431, 39056, 332430, 332432, 332433, 332434, 332435, 332436, 332437, 332438, 332439, 332440, 332441, 332442} },
{"Polished Staghorn Helm", {332444, 39057, 332443, 332445, 332446, 332447, 332448, 332449, 332450, 332451, 332452, 332453, 332454, 332455} },
{"Legguards of Swift Pursuit", {332457, 39058, 332456, 332458, 332459, 332460, 332461, 332462, 332463, 332464, 332465, 332466, 332467, 332468} },
{"Wristguard of the Tormented Soul", {332470, 39059, 332469, 332472, 332473, 332474, 332475, 332476, 332477, 332478, 332479, 332480, 332481, 332482} },
{"Patched Trapper Pauldrons", {332485, 39060, 332484, 332486, 332487, 332488, 332489, 332490, 332491, 332492, 332493, 332494, 332495, 332498} },
{"Herbalist's Pauldrons", {332502, 39062, 332499, 332503, 332504, 332506, 332507, 332508, 332509, 332511, 332514, 332520, 332522, 332523} },
{"Hide-Lined Chestguard", {332530, 39064, 332529, 332531, 332532, 332533, 332534, 332535, 332536, 332537, 332538, 332539, 332540, 332541} },
{"Skycaptain's Belt", {332543, 39065, 332542, 332544, 332545, 332546, 332547, 332548, 332549, 332550, 332551, 332552, 332553, 332554} },
{"Leggings of the Turning Point", {332556, 39066, 332555, 332557, 332558, 332559, 332560, 332561, 332562, 332563, 332564, 332565, 332566, 332567} },
{"Flesh-scaled Bracers", {332569, 39068, 332568, 332570, 332571, 332572, 332573, 332574, 332575, 332576, 332577, 332578, 332579, 332580} },
{"Gloves of the Mad Bomber", {332582, 39070, 332581, 332583, 332584, 332585, 332586, 332587, 332588, 332589, 332590, 332591, 332592, 332594} },
{"Blacksoul Protector's Hauberk", {332596, 39072, 332595, 332597, 332598, 332599, 332600, 332601, 332602, 332603, 332604, 332605, 332607, 332609} },
{"Root of the Everlasting", {332611, 39073, 332610, 332612, 332613, 332614, 332615, 332616, 332617, 332618, 332619, 332620, 332621, 332622} },
{"Drape of Distilled Hatred", {332624, 39074, 332623, 332625, 332626, 332627, 332628, 332629, 332630, 332631, 332632, 332633, 332634, 332635} },
{"Waywalker's Girdle", {332637, 39075, 332636, 332638, 332639, 332640, 332641, 332642, 332643, 332644, 332645, 332646, 332647, 332648} },
{"Golem-Rider's Greaves", {332650, 39076, 332649, 332651, 332652, 332653, 332654, 332655, 332656, 332657, 332658, 332659, 332660, 332661} },
{"Skull-Reshaper's Helm ", {332663, 39077, 332662, 332664, 332665, 332666, 332667, 332668, 332669, 332670, 332671, 332672, 332673, 332674} },
{"Whispering Stompers", {332676, 39078, 332675, 332677, 332678, 332679, 332680, 332681, 332682, 332683, 332684, 332685, 332686, 332687} },
{"Bracers of the Chaperon", {332689, 39079, 332688, 332690, 332691, 332692, 332693, 332694, 332695, 332696, 332697, 332698, 332699, 332700} },
{"Grips of Flawed Temper", {332702, 39080, 332701, 332703, 332704, 332705, 332706, 332707, 332708, 332709, 332710, 332711, 332712, 332713} },
{"Spiritforged Helm", {332715, 39081, 332714, 332716, 332717, 332718, 332719, 332720, 332721, 332722, 332723, 332724, 332725, 332726} },
{"Shocksteel Shoulderguards", {332728, 39082, 332727, 332729, 332730, 332731, 332732, 332733, 332734, 332735, 332736, 332737, 332738, 332739} },
{"Cobalt Shoulders", {332741, 39083, 332740, 332742, 332743, 332744, 332745, 332746, 332747, 332748, 332749, 332750, 332751, 332752} },
{"Cobalt Helm", {332754, 39084, 332753, 332755, 332756, 332757, 332758, 332759, 332760, 332761, 332762, 332763, 332764, 332765} },
{"Cobalt Chestpiece", {332767, 39085, 332766, 332768, 332769, 332770, 332771, 332772, 332773, 332774, 332775, 332776, 332777, 332778} },
{"Cobalt Legplates", {332780, 39086, 332779, 332781, 332782, 332783, 332784, 332785, 332786, 332787, 332788, 332789, 332790, 332791} },
{"Cobalt Belt", {332793, 39087, 332792, 332794, 332795, 332796, 332797, 332798, 332799, 332800, 332801, 332802, 332803, 332804} },
{"Cobalt Boots", {332806, 39088, 332805, 332807, 332808, 332809, 332810, 332811, 332812, 332813, 332814, 332815, 332816, 332817} },
{"Spiritforged Legguards", {332819, 39089, 332818, 332820, 332821, 332822, 332823, 332824, 332825, 332826, 332827, 332828, 332829, 332830} },
{"Chestplate of Untimely Rewards", {332832, 39090, 332831, 332833, 332834, 332835, 332836, 332839, 332840, 332841, 332842, 332843, 332844, 332845} },
{"Blood-Spattered Spaulders", {332847, 39091, 332846, 332848, 332849, 332850, 332851, 332852, 332853, 332854, 332855, 332856, 332857, 332858} },
{"Thought-Purifying Protector", {332860, 39092, 332859, 332861, 332862, 332863, 332864, 332865, 332866, 332867, 332868, 332869, 332870, 332871} },
{"Chestguard of Expressed Fury", {332873, 39093, 332872, 332874, 332875, 332876, 332877, 332878, 332879, 332880, 332881, 332882, 332883, 332884} },
{"Load-Bearing Girdle", {332886, 39094, 332885, 332887, 332888, 332889, 332890, 332891, 332892, 332893, 332894, 332895, 332896, 332897} },
{"Hammer-Holder's Gauntlets", {332899, 39095, 332898, 332900, 332901, 332902, 332903, 332904, 332905, 332906, 332907, 332908, 332909, 332910} },
{"Snaptooth Legplates", {332912, 39096, 332911, 332913, 332914, 332915, 332916, 332917, 332918, 332919, 332920, 332921, 332922, 332923} },
{"Sabatons of Crushed Humanity", {332925, 39097, 332924, 332926, 332927, 332928, 332929, 332930, 332931, 332932, 332933, 332934, 332935, 332936} },
{"Rusty Cave Stompers", {332938, 39098, 332937, 332939, 332940, 332941, 332942, 332945, 332946, 332947, 332948, 332949, 332950, 332951} },
{"Carapace of the Fallen", {332953, 39099, 332952, 332954, 332955, 332956, 332957, 332958, 332959, 332960, 332961, 332962, 332963, 332964} },
{"Plated Bracelet of the Skies", {332966, 39100, 332965, 332967, 332968, 332969, 332970, 332971, 332972, 332973, 332974, 332975, 332976, 332977} },
{"Icewalker's Spikes", {332979, 39102, 332978, 332980, 332981, 332982, 332983, 332984, 332985, 332986, 332987, 332988, 332989, 332990} },
{"Hardened Bone Wrist Protectors", {332992, 39104, 332991, 332993, 332994, 332995, 332996, 332997, 332998, 332999, 333000, 333001, 333002, 333003} },
{"Girdle of Growing Vines", {333005, 39105, 333004, 333006, 333007, 333008, 333009, 333010, 333011, 333012, 333013, 333014, 333015, 333016} },
{"Bloodstained Helmet", {333018, 39108, 333017, 333019, 333020, 333021, 333022, 333023, 333024, 333025, 333026, 333027, 333028, 333029} },
{"Branch of the Roaming Spirit", {333031, 39109, 333030, 333032, 333033, 333034, 333035, 333036, 333037, 333038, 333039, 333040, 333041, 333042} },
{"Staff of Righteous Vengeance", {333044, 39110, 333043, 333045, 333046, 333047, 333048, 333049, 333050, 333051, 333052, 333053, 333056, 333057} },
{"Talon of Freedom", {333060, 39112, 333059, 333061, 333062, 333063, 333064, 333065, 333066, 333067, 333068, 333069, 333070, 333071} },
{"Jagged Troll Render", {333073, 39113, 333072, 333074, 333075, 333076, 333077, 333078, 333079, 333080, 333081, 333082, 333083, 333084} },
{"Axe of the Warlord's Demise", {333086, 39114, 333085, 333087, 333088, 333089, 333090, 333091, 333092, 333093, 333094, 333095, 333096, 333097} },
{"Axe of Bloodstained Ice", {333099, 39115, 333098, 333100, 333101, 333102, 333103, 333104, 333105, 333106, 333107, 333108, 333109, 333110} },
{"Grinder of Reverse Emancipation", {333112, 39116, 333111, 333113, 333114, 333115, 333116, 333117, 333118, 333119, 333120, 333121, 333122, 333123} },
{"Liberator's Blade", {333125, 39117, 333124, 333126, 333127, 333128, 333129, 333130, 333131, 333132, 333133, 333134, 333135, 333136} },
{"Glowing Voodoo Orb", {333138, 39118, 333137, 333139, 333140, 333141, 333142, 333143, 333144, 333145, 333146, 333147, 333148, 333149} },
{"Bondsniper", {333151, 39119, 333150, 333152, 333153, 333154, 333155, 333156, 333157, 333158, 333159, 333160, 333161, 333162} },
{"Spire of Soaring Rumination", {333164, 39120, 333163, 333165, 333166, 333167, 333168, 333169, 333170, 333171, 333172, 333173, 333174, 333175} },
{"Cultist's Cauldron Stirrer", {333177, 39121, 333176, 333178, 333179, 333180, 333181, 333182, 333183, 333184, 333185, 333186, 333187, 333188} },
{"Branch of Insightful Dreams", {333190, 39124, 333189, 333192, 333193, 333194, 333195, 333196, 333197, 333198, 333199, 333200, 333201, 333202} },
{"Beaked Dagger", {333205, 39125, 333204, 333207, 333208, 333209, 333210, 333212, 333213, 333217, 333218, 333219, 333220, 333221} },
{"Serrated Cold-Iron Slicer", {333223, 39127, 333222, 333224, 333225, 333226, 333227, 333228, 333229, 333230, 333231, 333232, 333233, 333234} },
{"Yoke Slasher", {333236, 39128, 333235, 333237, 333238, 333239, 333240, 333241, 333242, 333243, 333244, 333245, 333246, 333247} },
{"Spike of Renounced Autonomy", {333249, 39129, 333248, 333250, 333251, 333252, 333253, 333254, 333255, 333256, 333257, 333258, 333259, 333260} },
{"Corrupter's Shanker", {333262, 39130, 333261, 333263, 333264, 333265, 333266, 333267, 333268, 333269, 333270, 333271, 333272, 333273} },
{"Warbling Crossbow", {333275, 39131, 333274, 333276, 333277, 333278, 333279, 333280, 333282, 333284, 333287, 333288, 333289, 333290} },
{"Sword of the Caged Mind", {333292, 39132, 333291, 333294, 333295, 333296, 333301, 333302, 333304, 333305, 333306, 333307, 333308, 333309} },
{"Necrolord's Sacrificial Dagger", {333311, 39133, 333310, 333312, 333313, 333314, 333315, 333316, 333318, 333319, 333320, 333321, 333323, 333324} },
{"Bow of Regression", {333330, 39134, 333325, 333331, 333333, 333334, 333335, 333336, 333337, 333338, 333339, 333340, 333341, 333342} },
{"Wyrmstalker's Bow", {333344, 39135, 333343, 333345, 333346, 333347, 333348, 333349, 333350, 333351, 333352, 333353, 333355, 333358} },
{"Reanimator's Hacker", {333360, 39136, 333359, 333361, 333362, 333363, 333364, 333365, 333366, 333367, 333368, 333369, 333370, 333371} },
{"Deadly Razordarts", {333373, 39138, 333372, 333374, 333375, 333376, 333377, 333378, 333379, 333380, 333381, 333382, 333383, 333384} },
{"Mace of Helotry", {333425, 39142, 333424, 333426, 333427, 333428, 333429, 333430, 333431, 333433, 333434, 333435, 333436, 333437} },
{"Writhing Mace", {333439, 39143, 333438, 333440, 333441, 333442, 333443, 333444, 333445, 333447, 333448, 333449, 333450, 333451} },
{"Twisted Hooligan Whacker", {333454, 39144, 333452, 333455, 333456, 333457, 333458, 333459, 333460, 333461, 333462, 333470, 333472, 333475} },
{"Sky Darkener's Shroud of Blood", {6039320, 39320, 334817, 334818, 334819, 334820, 334821, 334822, 334823, 334824, 334825, 334826, 334827, 334828} },
{"Shroud of the North Wind", {6039322, 39322, 334829, 334830, 334831, 334832, 334833, 334834, 334835, 334836, 334837, 334838, 334839, 334840} },
{"Scrap-Hide Spaulders", {334842, 39323, 334841, 334843, 334844, 334845, 334846, 334847, 334848, 334849, 334850, 334851, 334852, 334853} },
{"Fingers of Dextrous Decimation", {334855, 39330, 334854, 334856, 334857, 334858, 334859, 334860, 334861, 334862, 334863, 334864, 334865, 334866} },
{"Tooth-Marked Girdle", {334868, 39331, 334867, 334869, 334870, 334871, 334872, 334873, 334874, 334875, 334876, 334877, 334878, 334879} },
{"Ogre-Crushing Wristguards", {334881, 39332, 334880, 334882, 334883, 334884, 334885, 334886, 334887, 334888, 334889, 334890, 334891, 334892} },
{"Nimblefoot Moccasins", {334894, 39333, 334893, 334895, 334896, 334897, 334898, 334899, 334900, 334901, 334902, 334903, 334904, 334905} },
{"Leggings of Mending Fronds", {334907, 39335, 334906, 334908, 334909, 334910, 334911, 334912, 334913, 334914, 334915, 334916, 334917, 334918} },
{"Bracers of Prompt Reclamation", {334920, 39336, 334919, 334921, 334922, 334923, 334924, 334925, 334926, 334927, 334928, 334929, 334930, 334931} },
{"Stained Coop Warmer", {334933, 39337, 334932, 334934, 334935, 334936, 334937, 334938, 334939, 334940, 334941, 334942, 334943, 334944} },
{"Chitin-Reinforced Hood", {334970, 39346, 334969, 334971, 334972, 334973, 334974, 334975, 334976, 334977, 334978, 334979, 334980, 334981} },
{"Gloves of the Crackling Storm", {334983, 39347, 334982, 334984, 334985, 334986, 334987, 334988, 334989, 334990, 334991, 334992, 334993, 334994} },
{"Aged Watcher's Legwraps", {334996, 39348, 334995, 334997, 334998, 334999, 335000, 335001, 335002, 335003, 335004, 335005, 335006, 335007} },
{"Binding of Purified Corpses", {335009, 39363, 335008, 335010, 335011, 335012, 335013, 335014, 335015, 335016, 335017, 335018, 335019, 335020} },
{"Lifewarden's Raiment", {335035, 39365, 335034, 335036, 335037, 335038, 335039, 335040, 335041, 335042, 335043, 335044, 335045, 335046} },
{"Spaulders of the Runeseeker", {335048, 39366, 335047, 335049, 335050, 335051, 335052, 335053, 335054, 335055, 335056, 335057, 335058, 335059} },
{"Cowl of the Purifier", {335061, 39367, 335060, 335062, 335063, 335064, 335065, 335066, 335067, 335068, 335069, 335070, 335071, 335072} },
{"Field Researcher's Boots", {335074, 39368, 335073, 335075, 335076, 335077, 335078, 335079, 335080, 335081, 335082, 335083, 335084, 335085} },
{"Mantle of the Dark Messenger", {335111, 39372, 335110, 335112, 335113, 335114, 335115, 335116, 335117, 335118, 335119, 335120, 335121, 335122} },
{"Bracers of Rapid Death", {335124, 39373, 335123, 335125, 335126, 335127, 335128, 335129, 335130, 335131, 335132, 335133, 335134, 335135} },
{"Crocscale Moccasins", {335137, 39374, 335136, 335138, 335139, 335140, 335141, 335142, 335143, 335144, 335145, 335146, 335147, 335148} },
{"Dreadsaber Tooth Shoulderpads", {335150, 39375, 335149, 335151, 335152, 335153, 335154, 335155, 335156, 335157, 335158, 335159, 335160, 335161} },
{"Bracers of the Rejuvenated Forest", {335163, 39376, 335162, 335164, 335165, 335166, 335167, 335168, 335169, 335170, 335171, 335172, 335173, 335174} },
{"Toenail Belt", {335176, 39377, 335175, 335177, 335178, 335179, 335180, 335181, 335182, 335183, 335184, 335185, 335186, 335187} },
{"Ragged Leaf Grips", {335189, 39378, 335188, 335190, 335191, 335192, 335193, 335194, 335195, 335196, 335197, 335198, 335199, 335200} },
{"Legguards of the Aggressive Emissary", {335214, 39380, 335213, 335215, 335216, 335217, 335218, 335219, 335220, 335221, 335222, 335223, 335224, 335225} },
{"Egg-Warming Boots", {335227, 39383, 335226, 335228, 335229, 335230, 335231, 335232, 335233, 335234, 335235, 335236, 335237, 335238} },
{"Helm of the Ancient Horn", {335240, 39385, 335239, 335241, 335242, 335243, 335244, 335245, 335246, 335247, 335248, 335249, 335250, 335251} },
{"Stinger-Proof Chestguard", {335265, 39387, 335264, 335266, 335267, 335268, 335269, 335270, 335271, 335272, 335273, 335274, 335275, 335276} },
{"Static-Dispersing Shoulderpads", {335425, 39400, 335424, 335426, 335427, 335428, 335429, 335430, 335431, 335432, 335433, 335434, 335435, 335436} },
{"Binding of the Ancient Keeper", {335450, 39402, 335449, 335451, 335452, 335453, 335454, 335455, 335456, 335457, 335458, 335459, 335460, 335461} },
{"Splattered Zombie Wristguards", {335499, 39406, 335498, 335500, 335501, 335502, 335503, 335504, 335505, 335506, 335507, 335508, 335509, 335510} },
{"Legguards of Guided Travel", {335561, 39411, 335560, 335562, 335563, 335564, 335565, 335566, 335567, 335568, 335569, 335570, 335571, 335572} },
{"Scourgebane Treads", {335574, 39412, 335573, 335575, 335576, 335577, 335578, 335579, 335580, 335581, 335582, 335583, 335584, 335585} },
{"Hydrafang Breeches", {335587, 39413, 335586, 335588, 335589, 335590, 335591, 335592, 335593, 335594, 335595, 335596, 335597, 335598} },
{"Gilly's Strangulation Gauntlets", {335600, 39414, 335599, 335601, 335602, 335603, 335604, 335605, 335606, 335607, 335608, 335609, 335610, 335611} },
{"Faceguard of Flawless Aim", {335758, 39428, 335757, 335759, 335760, 335761, 335762, 335763, 335764, 335765, 335766, 335767, 335768, 335769} },
{"Pauldrons of Swift Replenishment", {335771, 39429, 335770, 335772, 335773, 335774, 335775, 335776, 335777, 335778, 335779, 335780, 335781, 335782} },
{"Spitelinked Bracers", {335784, 39430, 335783, 335785, 335786, 335787, 335788, 335789, 335790, 335791, 335792, 335793, 335794, 335795} },
{"Shaved Rhinohorn Chestguard", {335797, 39431, 335796, 335798, 335799, 335800, 335801, 335802, 335803, 335804, 335805, 335806, 335807, 335808} },
{"Belt of Misconceptions", {335810, 39432, 335809, 335811, 335812, 335813, 335814, 335815, 335816, 335817, 335818, 335819, 335820, 335821} },
{"Clear Earthen Scalemail", {335823, 39433, 335822, 335824, 335825, 335826, 335827, 335828, 335829, 335830, 335831, 335832, 335833, 335834} },
{"Straw-Lined Leggings", {335836, 39435, 335835, 335837, 335838, 335839, 335840, 335841, 335842, 335843, 335844, 335845, 335846, 335847} },
{"Insect-Filtering Faceguard", {335849, 39436, 335848, 335850, 335851, 335852, 335853, 335854, 335855, 335856, 335857, 335858, 335859, 335860} },
{"Belt of Trapped Lightning", {335862, 39437, 335861, 335863, 335864, 335865, 335866, 335867, 335868, 335869, 335870, 335871, 335872, 335873} },
{"Rockhandler's Gloves", {335875, 39438, 335874, 335876, 335877, 335878, 335879, 335880, 335881, 335882, 335883, 335884, 335885, 335886} },
{"Skeleton Smashers", {335888, 39439, 335887, 335889, 335890, 335891, 335892, 335893, 335894, 335895, 335896, 335897, 335898, 335899} },
{"Treads of Bound Life", {335914, 39441, 335913, 335915, 335916, 335917, 335918, 335919, 335920, 335921, 335922, 335923, 335924, 335925} },
{"Seeing-Eye Belt", {335927, 39442, 335926, 335928, 335929, 335930, 335931, 335932, 335933, 335934, 335935, 335936, 335937, 335938} },
{"Chain Gloves of the Demonic Minion", {335940, 39443, 335939, 335941, 335942, 335943, 335944, 335945, 335946, 335947, 335948, 335949, 335950, 335951} },
{"Keeper's Touch", {335953, 39444, 335952, 335954, 335955, 335956, 335957, 335958, 335959, 335960, 335961, 335962, 335963, 335964} },
{"Roc Hunter's Bracer", {335966, 39445, 335965, 335967, 335968, 335969, 335970, 335971, 335972, 335973, 335974, 335975, 335976, 335977} },
{"Pauldrons of Resolution", {335979, 39446, 335978, 335980, 335981, 335982, 335983, 335984, 335985, 335986, 335987, 335988, 335989, 335990} },
{"Helm of Brutal Slaughter", {335992, 39448, 335991, 335993, 335994, 335995, 335996, 335997, 335998, 335999, 336000, 336001, 336002, 336003} },
{"Wristguards of Titanic Vengeance", {336005, 39449, 336004, 336006, 336007, 336008, 336009, 336010, 336011, 336012, 336013, 336014, 336015, 336016} },
{"Bug-Smashing Pauldrons", {336018, 39450, 336017, 336019, 336020, 336021, 336022, 336023, 336024, 336025, 336026, 336027, 336028, 336029} },
{"Pauldrons of the Silent Mist", {336031, 39451, 336030, 336032, 336033, 336034, 336035, 336036, 336037, 336038, 336039, 336040, 336041, 336042} },
{"Roaming Wristguards", {336044, 39452, 336043, 336045, 336046, 336047, 336048, 336049, 336050, 336051, 336052, 336053, 336054, 336055} },
{"Rhino-Tail Girdle", {336057, 39453, 336056, 336058, 336059, 336060, 336061, 336062, 336063, 336064, 336065, 336066, 336067, 336068} },
{"Handguards of Transient Friendship", {336070, 39454, 336069, 336071, 336072, 336073, 336074, 336075, 336076, 336077, 336078, 336079, 336080, 336081} },
{"Cracked Nest Stabilizer", {336083, 39455, 336082, 336084, 336085, 336086, 336087, 336088, 336089, 336090, 336091, 336092, 336093, 336094} },
{"Zepik's Grounded Legplates", {336096, 39457, 336095, 336097, 336098, 336099, 336100, 336101, 336102, 336103, 336104, 336105, 336106, 336107} },
{"Cultbreaker's Chestguard", {336109, 39458, 336108, 336110, 336111, 336112, 336113, 336114, 336115, 336116, 336117, 336118, 336119, 336120} },
{"Preservative-Stained Gauntlets", {336122, 39459, 336121, 336123, 336124, 336125, 336126, 336127, 336128, 336129, 336130, 336131, 336132, 336133} },
{"Muck-Stained Carapace", {336148, 39461, 336147, 336149, 336150, 336151, 336152, 336153, 336154, 336155, 336156, 336157, 336158, 336159} },
{"Legplates of the Northern Expedition", {336161, 39462, 336160, 336162, 336163, 336164, 336165, 336166, 336167, 336168, 336169, 336170, 336171, 336172} },
{"Norrington's Burnished Breastplate", {336174, 39463, 336173, 336175, 336176, 336177, 336178, 336179, 336180, 336181, 336182, 336183, 336184, 336185} },
{"Lifegiver's Ward", {336187, 39464, 336186, 336188, 336189, 336190, 336191, 336192, 336193, 336194, 336195, 336196, 336197, 336198} },
{"Pathfinding Treads", {336200, 39465, 336199, 336201, 336202, 336203, 336204, 336205, 336206, 336207, 336208, 336209, 336210, 336211} },
{"Boots of Dominance", {336213, 39466, 336212, 336214, 336215, 336216, 336217, 336218, 336219, 336220, 336221, 336222, 336223, 336224} },
{"Gutbuster of Aldur'thar", {336262, 39471, 336261, 336263, 336264, 336265, 336266, 336267, 336268, 336269, 336270, 336271, 336272, 336273} },
{"Ring of Devoted Promises", {336299, 39474, 336298, 336300, 336301, 336302, 336303, 336304, 336305, 336306, 336307, 336308, 336309, 336310} },
{"Cloak of Renewed Hope", {336336, 39479, 336335, 336337, 336338, 336339, 336340, 336341, 336342, 336343, 336344, 336345, 336346, 336347} },
{"Bent Crocolisk Tooth", {336349, 39480, 336348, 336350, 336351, 336352, 336353, 336354, 336355, 336356, 336357, 336358, 336359, 336360} },
{"Signet of the Avenging Heart", {336362, 39481, 336361, 336363, 336364, 336365, 336366, 336367, 336368, 336369, 336370, 336371, 336372, 336373} },
{"Ring of Misinterpreted Gestures", {336375, 39482, 336374, 336376, 336377, 336378, 336379, 336380, 336381, 336382, 336383, 336384, 336385, 336386} },
{"Nesingwary Brush Burner", {6039488, 39488, 336447, 336448, 336449, 336450, 336451, 336452, 336453, 336454, 336455, 336456, 336457, 336458} },
{"Bronzed Dome Protector", {336592, 39503, 336591, 336593, 336594, 336595, 336596, 336597, 336598, 336599, 336600, 336601, 336602, 336603} },
{"Stonebound Chestguard", {336618, 39508, 336617, 336619, 336620, 336621, 336622, 336623, 336624, 336625, 336626, 336627, 336628, 336629} },
{"Thundercloud Grasps", {6039536, 39536, 336799, 336800, 336801, 336802, 336803, 336804, 336805, 336806, 336807, 336808, 336809, 336810} },
{"Drape of the Offered Branch", {337784, 39672, 337783, 337785, 337786, 337787, 337788, 337789, 337790, 337791, 337792, 337793, 337794, 337795} },
{"Lightning Beetle's Cape", {337797, 39673, 337796, 337798, 337799, 337800, 337801, 337802, 337803, 337804, 337805, 337806, 337807, 337808} },
{"Cloak of the Buzzing Swarm", {337810, 39674, 337809, 337811, 337812, 337813, 337814, 337815, 337816, 337817, 337818, 337819, 337820, 337821} },
{"Cloak of the Hardened Tortoise", {337823, 39675, 337822, 337824, 337825, 337826, 337827, 337828, 337829, 337830, 337831, 337832, 337833, 337834} },
{"Verdant Tundra Cap", {337958, 39707, 337957, 337959, 337960, 337961, 337962, 337963, 337964, 337965, 337966, 337967, 337968, 337969} },
{"Verdant Tundra Shoulderpads", {337971, 39708, 337970, 337972, 337973, 337974, 337975, 337976, 337977, 337978, 337979, 337980, 337981, 337982} },
{"Verdant Tundra Boots", {337984, 39709, 337983, 337985, 337986, 337987, 337988, 337989, 337990, 337991, 337992, 337993, 337994, 337995} },
{"Verdant Tundra Belt", {337997, 39710, 337996, 337998, 337999, 338000, 338001, 338002, 338003, 338004, 338005, 338006, 338007, 338008} },
{"Verdant Tundra Bracers", {338010, 39711, 338009, 338011, 338012, 338013, 338014, 338015, 338016, 338017, 338018, 338019, 338020, 338021} },
{"Soothsayer's Hood", {338467, 39770, 338466, 338468, 338469, 338470, 338471, 338472, 338473, 338474, 338475, 338476, 338477, 338478} },
{"Embattled Legwraps", {338480, 39771, 338479, 338481, 338482, 338483, 338484, 338485, 338486, 338487, 338488, 338489, 338490, 338491} },
{"Bloodbinder's Wrist Wraps", {338493, 39772, 338492, 338494, 338495, 338496, 338497, 338498, 338499, 338500, 338501, 338502, 338503, 338504} },
{"Soothsayer's Shoulderpads", {338506, 39773, 338505, 338507, 338508, 338509, 338510, 338511, 338512, 338513, 338514, 338515, 338516, 338517} },
{"Soothsayer's Sandals", {338519, 39775, 338518, 338520, 338521, 338522, 338523, 338524, 338525, 338526, 338527, 338528, 338529, 338530} },
{"Bloodbinder's Shoulderguards", {338532, 39776, 338531, 338533, 338534, 338535, 338536, 338537, 338538, 338539, 338540, 338541, 338542, 338543} },
{"Band of Misty Mojo", {338545, 39777, 338544, 338546, 338547, 338548, 338549, 338550, 338551, 338552, 338553, 338554, 338555, 338556} },
{"Bloodletter's Legplates", {338558, 39778, 338557, 338559, 338560, 338561, 338562, 338563, 338564, 338565, 338566, 338567, 338568, 338569} },
{"Crusader's Ripcord", {338571, 39779, 338570, 338572, 338573, 338574, 338575, 338576, 338577, 338578, 338579, 338580, 338581, 338582} },
{"Valiant Belt of Battle", {338584, 39780, 338583, 338585, 338586, 338587, 338588, 338589, 338590, 338591, 338592, 338593, 338594, 338595} },
{"Bloodbinder's Raiment", {338597, 39781, 338596, 338598, 338599, 338600, 338601, 338602, 338603, 338604, 338605, 338606, 338607, 338608} },
{"Thick Bracers of Battle", {338610, 39782, 338609, 338611, 338612, 338613, 338614, 338615, 338616, 338617, 338618, 338619, 338620, 338621} },
{"Bloodbinder's Gauntlets", {338623, 39783, 338622, 338624, 338625, 338626, 338627, 338628, 338629, 338630, 338631, 338632, 338633, 338634} },
{"Staff of the Dutybound", {338636, 39784, 338635, 338637, 338638, 338639, 338640, 338641, 338642, 338643, 338644, 338645, 338646, 338647} },
{"Soothsayer's Garb", {338649, 39785, 338648, 338650, 338651, 338652, 338653, 338654, 338655, 338656, 338657, 338658, 338659, 338660} },
{"Band of the Bloodletter", {338662, 39786, 338661, 338663, 338664, 338665, 338666, 338667, 338668, 338669, 338670, 338671, 338672, 338673} },
{"Soothsayer's Handwraps", {338675, 39787, 338674, 338676, 338677, 338678, 338679, 338680, 338681, 338682, 338683, 338684, 338685, 338686} },
{"Leggings of the Ritual", {338688, 39788, 338687, 338689, 338690, 338691, 338692, 338693, 338694, 338695, 338696, 338697, 338698, 338699} },
{"Bloodbinder's Shoulderpads", {338701, 39789, 338700, 338702, 338703, 338704, 338705, 338706, 338707, 338708, 338709, 338710, 338711, 338712} },
{"Gauntlets of the Altar", {338714, 39790, 338713, 338715, 338716, 338717, 338718, 338719, 338720, 338721, 338722, 338723, 338724, 338725} },
{"Soothsayer's Wristwraps", {338727, 39791, 338726, 338728, 338729, 338730, 338731, 338732, 338733, 338734, 338735, 338736, 338737, 338738} },
{"Ritualistic Band of Light", {338740, 39792, 338739, 338741, 338742, 338743, 338744, 338745, 338746, 338747, 338748, 338749, 338750, 338751} },
{"Neckcharm of Mighty Mojo", {338753, 39793, 338752, 338754, 338755, 338756, 338757, 338758, 338759, 338760, 338761, 338762, 338763, 338764} },
{"Bloodbinder's Gloves", {338766, 39794, 338765, 338767, 338768, 338769, 338770, 338771, 338772, 338773, 338774, 338775, 338776, 338777} },
{"Boots of the Altar", {338779, 39795, 338778, 338780, 338781, 338782, 338783, 338784, 338785, 338786, 338787, 338788, 338789, 338790} },
{"Boots of the Great Sacrifice", {338792, 39796, 338791, 338793, 338794, 338795, 338796, 338797, 338798, 338799, 338800, 338801, 338802, 338803} },
{"Bloodbinder's Hood", {338805, 39797, 338804, 338806, 338807, 338808, 338809, 338810, 338811, 338812, 338813, 338814, 338815, 338816} },
{"Ring of Ancestral Protectors", {338818, 39798, 338817, 338819, 338820, 338821, 338822, 338823, 338824, 338825, 338826, 338827, 338828, 338829} },
{"Rescuer's Chestguard", {338831, 39799, 338830, 338832, 338833, 338834, 338835, 338836, 338837, 338838, 338839, 338840, 338841, 338842} },
{"Pantaloons of the Dutybound", {338844, 39800, 338843, 338845, 338846, 338847, 338848, 338849, 338850, 338851, 338852, 338853, 338854, 338855} },
{"Boots of the Rescuer", {338857, 39801, 338856, 338858, 338859, 338860, 338861, 338862, 338863, 338864, 338865, 338866, 338867, 338868} },
{"Crusader's Greatblade", {338870, 39802, 338869, 338871, 338872, 338873, 338874, 338875, 338876, 338877, 338878, 338879, 338880, 338881} },
{"Gauntlets of the Great Sacrifice", {338883, 39803, 338882, 338884, 338885, 338886, 338887, 338888, 338889, 338890, 338891, 338892, 338893, 338894} },
{"Braided Bat Sinew", {338896, 39804, 338895, 338897, 338898, 338899, 338900, 338901, 338902, 338903, 338904, 338905, 338906, 338907} },
{"Chestplate of the Altar", {338909, 39805, 338908, 338910, 338911, 338912, 338913, 338914, 338915, 338916, 338917, 338918, 338919, 338920} },
{"Blade of Diligence", {338922, 39806, 338921, 338923, 338924, 338925, 338926, 338927, 338928, 338929, 338930, 338931, 338932, 338933} },
{"Rescuer's Cloak", {338935, 39807, 338934, 338936, 338937, 338938, 338939, 338940, 338941, 338942, 338943, 338944, 338945, 338946} },
{"Staff of Diligence", {338948, 39808, 338947, 338949, 338950, 338951, 338952, 338953, 338954, 338955, 338956, 338957, 338958, 338959} },
{"Sandals of Spying", {338961, 39809, 338960, 338962, 338963, 338964, 338965, 338966, 338967, 338968, 338969, 338970, 338971, 338972} },
{"Cords of Duplicity", {338974, 39810, 338973, 338975, 338976, 338977, 338978, 338979, 338980, 338981, 338982, 338983, 338984, 338985} },
{"Badge of the Infiltrator", {338987, 39811, 338986, 338988, 338989, 338990, 338991, 338992, 338993, 338994, 338995, 338996, 338997, 338998} },
{"Soiled Trousers", {339000, 39812, 338999, 339001, 339002, 339003, 339004, 339005, 339006, 339007, 339008, 339009, 339010, 339011} },
{"Slippers of the Broken Front", {339013, 39814, 339012, 339014, 339015, 339016, 339017, 339018, 339019, 339020, 339021, 339022, 339023, 339024} },
{"Bloodbinder's Links", {339026, 39815, 339025, 339027, 339028, 339029, 339030, 339031, 339032, 339033, 339034, 339035, 339036, 339037} },
{"Medic's Hood", {339039, 39816, 339038, 339040, 339041, 339042, 339043, 339044, 339045, 339046, 339047, 339048, 339049, 339050} },
{"Brazen Offender's Shoulderplates", {339052, 39817, 339051, 339053, 339054, 339055, 339056, 339057, 339058, 339059, 339060, 339061, 339062, 339063} },
{"Frigid Crossbow", {339065, 39818, 339064, 339066, 339067, 339068, 339069, 339070, 339071, 339072, 339073, 339074, 339075, 339076} },
{"Blade of Valorous Service", {339091, 39820, 339090, 339092, 339093, 339094, 339095, 339096, 339097, 339098, 339099, 339100, 339101, 339102} },
{"Spiritist's Focus", {339104, 39821, 339103, 339105, 339106, 339107, 339108, 339109, 339110, 339111, 339112, 339113, 339114, 339115} },
{"Knife of the Dutybound", {339117, 39822, 339116, 339118, 339119, 339120, 339121, 339122, 339123, 339124, 339125, 339126, 339127, 339128} },
{"Dutybound Mace of Purity", {339130, 39823, 339129, 339131, 339132, 339133, 339134, 339135, 339136, 339137, 339138, 339139, 339140, 339141} },
{"Cleaver of Diligence", {339143, 39824, 339142, 339144, 339145, 339146, 339147, 339148, 339149, 339150, 339151, 339152, 339153, 339154} },
{"Belt of the Bloodbinder", {339156, 39825, 339155, 339157, 339158, 339159, 339160, 339161, 339162, 339163, 339164, 339165, 339166, 339167} },
{"Bloodletter's Blade", {339169, 39826, 339168, 339170, 339171, 339172, 339173, 339174, 339175, 339176, 339177, 339178, 339179, 339180} },
{"Vile Tome of Tenets", {339182, 39827, 339181, 339183, 339184, 339185, 339186, 339187, 339188, 339189, 339190, 339191, 339192, 339193} },
{"High-Strung Bow", {339208, 39829, 339207, 339209, 339210, 339211, 339212, 339213, 339214, 339215, 339216, 339217, 339218, 339219} },
{"Fist of Subtlety", {339221, 39830, 339220, 339222, 339223, 339224, 339225, 339226, 339227, 339228, 339229, 339230, 339231, 339232} },
{"Petrified Ghoul Finger", {339234, 39831, 339233, 339235, 339236, 339237, 339238, 339239, 339240, 339241, 339242, 339243, 339244, 339245} },
{"Supple Bloodbinder's Boots", {339247, 39833, 339246, 339248, 339249, 339250, 339251, 339252, 339253, 339254, 339255, 339256, 339257, 339258} },
{"Embattled Jerkin", {339260, 39834, 339259, 339261, 339262, 339263, 339264, 339265, 339266, 339267, 339268, 339269, 339270, 339271} },
{"Supple Bloodbinder's Helm", {339273, 39835, 339272, 339274, 339275, 339276, 339277, 339278, 339279, 339280, 339281, 339282, 339283, 339284} },
{"Supple Mantle of the Bloodletter", {339286, 39836, 339285, 339287, 339288, 339289, 339290, 339291, 339292, 339293, 339294, 339295, 339296, 339297} },
{"Gloves of Swift Death", {339299, 39837, 339298, 339300, 339301, 339302, 339303, 339304, 339305, 339306, 339307, 339308, 339309, 339310} },
{"Supple Belt of the Bloodletter", {339312, 39838, 339311, 339313, 339314, 339315, 339316, 339317, 339318, 339319, 339320, 339321, 339322, 339323} },
{"Ritualistic Shoulderguards", {339325, 39839, 339324, 339326, 339327, 339328, 339329, 339330, 339331, 339332, 339333, 339334, 339335, 339336} },
{"Rescuer's Ripcord", {339338, 39840, 339337, 339339, 339340, 339341, 339342, 339343, 339344, 339345, 339346, 339347, 339348, 339349} },
{"Ancestral Girdle", {339351, 39841, 339350, 339352, 339353, 339354, 339355, 339356, 339357, 339358, 339359, 339360, 339361, 339362} },
{"Bloodletter's Boots", {339364, 39842, 339363, 339365, 339366, 339367, 339368, 339369, 339370, 339371, 339372, 339373, 339374, 339375} },
{"Supple Wristguards", {339377, 39843, 339376, 339378, 339379, 339380, 339381, 339382, 339383, 339384, 339385, 339386, 339387, 339388} },
{"Ritualistic Shield", {339390, 39844, 339389, 339391, 339392, 339393, 339394, 339395, 339396, 339397, 339398, 339399, 339400, 339401} },
{"Ancestral Gauntlets", {339403, 39845, 339402, 339404, 339405, 339406, 339407, 339408, 339409, 339410, 339411, 339412, 339413, 339414} },
{"Bloodletter's Headgear", {339416, 39846, 339415, 339417, 339418, 339419, 339420, 339421, 339422, 339423, 339424, 339425, 339426, 339427} },
{"Ancestral War Boots", {339429, 39847, 339428, 339430, 339431, 339432, 339433, 339434, 339435, 339436, 339437, 339438, 339439, 339440} },
{"Neckcharm of the Bloodletter", {339442, 39848, 339441, 339443, 339444, 339445, 339446, 339447, 339448, 339449, 339450, 339451, 339452, 339453} },
{"Belt of Divine Ancestry", {339455, 39849, 339454, 339456, 339457, 339458, 339459, 339460, 339461, 339462, 339463, 339464, 339465, 339466} },
{"Wristguards of Service", {339468, 39850, 339467, 339469, 339470, 339471, 339472, 339473, 339474, 339475, 339476, 339477, 339478, 339479} },
{"Ribbed Helm of Servitude", {339481, 39851, 339480, 339482, 339483, 339484, 339485, 339486, 339487, 339488, 339489, 339490, 339491, 339492} },
{"Victorious Spellblade", {339494, 39852, 339493, 339495, 339496, 339497, 339498, 339499, 339500, 339501, 339502, 339503, 339504, 339505} },
{"Thorny Bough of the Light", {339507, 39853, 339506, 339508, 339509, 339510, 339511, 339512, 339513, 339514, 339515, 339516, 339517, 339518} },
{"Huntsman's Jerkin", {339520, 39854, 339519, 339521, 339522, 339523, 339524, 339525, 339526, 339527, 339528, 339529, 339530, 339531} },
{"Gauntlets of the Gatherer", {339533, 39855, 339532, 339534, 339535, 339536, 339537, 339538, 339539, 339540, 339541, 339542, 339543, 339544} },
{"Bloodletter's Pants", {339546, 39856, 339545, 339547, 339548, 339549, 339550, 339551, 339552, 339553, 339554, 339555, 339556, 339557} },
{"Rescuer's Binding", {339559, 39857, 339558, 339560, 339561, 339562, 339563, 339564, 339565, 339566, 339567, 339568, 339569, 339570} },
{"Drape of the Bloodletter", {339572, 39858, 339571, 339573, 339574, 339575, 339576, 339577, 339578, 339579, 339580, 339581, 339582, 339583} },
{"Bloodletter's Skullcap", {339585, 39859, 339584, 339586, 339587, 339588, 339589, 339590, 339591, 339592, 339593, 339594, 339595, 339596} },
{"Vindicator's Bracers of Sacrifice", {339598, 39860, 339597, 339599, 339600, 339601, 339602, 339603, 339604, 339605, 339606, 339607, 339608, 339609} },
{"Supple Bloodbinder's Leggings", {339611, 39861, 339610, 339612, 339613, 339614, 339615, 339616, 339617, 339618, 339619, 339620, 339621, 339622} },
{"Supple Vest of the Bloodletter", {339624, 39862, 339623, 339625, 339626, 339627, 339628, 339629, 339630, 339631, 339632, 339633, 339634, 339635} },
{"Supple Vest of the Bloodbinder", {339637, 39863, 339636, 339638, 339639, 339640, 339641, 339642, 339643, 339644, 339645, 339646, 339647, 339648} },
{"Belt of Service", {339650, 39864, 339649, 339651, 339652, 339653, 339654, 339655, 339656, 339657, 339658, 339659, 339660, 339661} },
{"Knuckle of Victory", {339663, 39865, 339662, 339664, 339665, 339666, 339667, 339668, 339669, 339670, 339671, 339672, 339673, 339674} },
{"Gauntlets of the Secret Agent", {339676, 39866, 339675, 339677, 339678, 339679, 339680, 339681, 339682, 339683, 339684, 339685, 339686, 339687} },
{"Bat Fur Mitts", {339689, 39867, 339688, 339690, 339691, 339692, 339693, 339694, 339695, 339696, 339697, 339698, 339699, 339700} },
{"Ravager's Skullcap", {339702, 39868, 339701, 339703, 339704, 339705, 339706, 339707, 339708, 339709, 339710, 339711, 339712, 339713} },
{"Double-Agent's Wristwraps", {339715, 39869, 339714, 339716, 339717, 339718, 339719, 339720, 339721, 339722, 339723, 339724, 339725, 339726} },
{"Drape of Duplicity", {339728, 39870, 339727, 339729, 339730, 339731, 339732, 339733, 339734, 339735, 339736, 339737, 339738, 339739} },
{"Subtle Boots of the Infiltrator", {339741, 39871, 339740, 339742, 339743, 339744, 339745, 339746, 339747, 339748, 339749, 339750, 339751, 339752} },
{"Helm of Subtle Whispers", {339754, 39872, 339753, 339755, 339756, 339757, 339758, 339759, 339760, 339761, 339762, 339763, 339764, 339765} },
{"Skins of Subterfuge", {339767, 39873, 339766, 339768, 339769, 339770, 339771, 339772, 339773, 339774, 339775, 339776, 339777, 339778} },
{"Infiltrator's Shield", {339780, 39874, 339779, 339781, 339782, 339783, 339784, 339785, 339786, 339787, 339788, 339789, 339790, 339791} },
{"Shoulderguards of Subterfuge", {339793, 39875, 339792, 339794, 339795, 339796, 339797, 339798, 339799, 339800, 339801, 339802, 339803, 339804} },
{"Aged Abomination Tripe", {339806, 39876, 339805, 339807, 339808, 339809, 339810, 339811, 339812, 339813, 339814, 339815, 339816, 339817} },
{"Belt of the Betrayer", {339819, 39877, 339818, 339820, 339821, 339822, 339823, 339824, 339825, 339826, 339827, 339828, 339829, 339830} },
{"Redigested Mail Scraps", {339832, 39880, 339831, 339833, 339834, 339835, 339836, 339837, 339838, 339839, 339840, 339841, 339842, 339843} },
{"Mantle of Reanimation", {339845, 39881, 339844, 339846, 339847, 339848, 339849, 339850, 339851, 339852, 339853, 339854, 339855, 339856} },
{"Carved Bone Helm", {339858, 39882, 339857, 339859, 339860, 339861, 339862, 339863, 339864, 339865, 339866, 339867, 339868, 339869} },
{"Greenhealer's Gauntlets", {339871, 39886, 339870, 339872, 339873, 339874, 339875, 339876, 339877, 339878, 339879, 339880, 339881, 339882} },
{"Geist Stalker Leggings", {339884, 39887, 339883, 339885, 339886, 339887, 339888, 339889, 339890, 339891, 339892, 339893, 339894, 339895} },
{"Scourgebane Pauldrons", {339897, 39888, 339896, 339898, 339899, 339900, 339901, 339902, 339903, 339904, 339905, 339906, 339907, 339908} },
{"Horn of Argent Fury", {339910, 39889, 339909, 339911, 339912, 339913, 339914, 339915, 339916, 339917, 339918, 339919, 339920, 339921} },
{"Purifier's Pantaloons", {339923, 39890, 339922, 339924, 339925, 339926, 339927, 339928, 339929, 339930, 339931, 339932, 339933, 339934} },
{"Brazen Offender's Helm", {339936, 39891, 339935, 339937, 339938, 339939, 339940, 339941, 339942, 339943, 339944, 339945, 339946, 339947} },
{"Ancestral Chestplates", {339949, 39893, 339948, 339950, 339951, 339952, 339953, 339954, 339955, 339956, 339957, 339958, 339959, 339960} },
{"Gaze of the Punishing Construct", {6040290, 40290, 341256, 341257, 341258, 341259, 341260, 341261, 341262, 341263, 341264, 341265, 341266, 341267} },
{"Helm of the Avenging Protector", {6040291, 40291, 341268, 341269, 341270, 341271, 341272, 341273, 341274, 341275, 341276, 341277, 341278, 341279} },
{"Headguard of Vast Destruction", {6040292, 40292, 341280, 341281, 341282, 341283, 341284, 341285, 341289, 341290, 341291, 341295, 341296, 341300} },
{"Helm of Towering Rage", {6040293, 40293, 341301, 341302, 341306, 341307, 341308, 341310, 341311, 341312, 341313, 341314, 341316, 341317} },
{"Greathelm of the Titan Protectorate", {6040295, 40295, 341330, 341331, 341332, 341333, 341334, 341335, 341336, 341337, 341338, 341339, 341340, 341341} },
{"Polished Protodrake Cloak", {6040353, 40353, 342011, 342012, 342013, 342014, 342015, 342019, 342020, 342021, 342022, 342023, 342024, 342025} },
{"Monster Slayer's Kit", {6040354, 40354, 342026, 342027, 342028, 342029, 342030, 342031, 342032, 342033, 342048, 342049, 342050, 342051} },
{"Naxxramas 40 Test God Sword", {6040480, 40480, 343228, 343229, 343230, 343231, 343232, 343233, 343234, 343235, 343236, 343237, 343238, 343239} },
{"Insignia of the Scourge", {343253, 40483, 343252, 343254, 343255, 343256, 343257, 343258, 343259, 343260, 343261, 343262, 343263, 343264} },
{"Argent War Horn", {6040492, 40492, 343325, 343326, 343327, 343328, 343329, 343330, 343331, 343332, 343333, 343334, 343335, 343336} },
{"Argent Tome", {6040593, 40593, 344353, 344354, 344355, 344356, 344357, 344358, 344359, 344360, 344361, 344362, 344363, 344364} },
{"Argent Dawn Banner", {6040601, 40601, 344389, 344390, 344391, 344392, 344393, 344394, 344395, 344396, 344397, 344398, 344399, 344400} },
{"Cobalt Triangle Shield", {344426, 40668, 344425, 344427, 344428, 344429, 344430, 344431, 344432, 344433, 344434, 344435, 344436, 344437} },
{"Tempered Saronite Belt", {6040669, 40669, 344438, 344439, 344440, 344441, 344442, 344443, 344444, 344445, 344446, 344447, 344448, 344449} },
{"Saronite Defender", {6040670, 40670, 344450, 344451, 344452, 344453, 344454, 344455, 344456, 344457, 344458, 344459, 344460, 344461} },
{"Tempered Saronite Boots", {6040671, 40671, 344462, 344463, 344464, 344465, 344466, 344467, 344468, 344469, 344470, 344471, 344472, 344473} },
{"Tempered Saronite Breastplate", {6040672, 40672, 344474, 344475, 344476, 344477, 344478, 344479, 344480, 344481, 344482, 344483, 344484, 344485} },
{"Tempered Saronite Helm", {6040673, 40673, 344486, 344487, 344488, 344489, 344490, 344491, 344492, 344493, 344494, 344495, 344496, 344497} },
{"Tempered Saronite Legplates", {6040674, 40674, 344498, 344499, 344500, 344501, 344502, 344503, 344504, 344505, 344506, 344507, 344508, 344509} },
{"Tempered Saronite Shoulders", {6040675, 40675, 344510, 344511, 344512, 344513, 344514, 344515, 344516, 344517, 344518, 344519, 344520, 344521} },
{"Enticing Sabatons", {6040755, 40755, 345384, 345385, 345386, 345387, 345388, 345389, 345390, 345391, 345392, 345393, 345394, 345395} },
{"Shoulders of the Seducer", {6040756, 40756, 345396, 345397, 345398, 345399, 345400, 345401, 345402, 345403, 345404, 345405, 345406, 345407} },
{"Shackles of Dark Whispers", {6040757, 40757, 345408, 345409, 345410, 345411, 345412, 345413, 345414, 345415, 345416, 345417, 345418, 345419} },
{"Shroud of Temptation", {6040758, 40758, 345420, 345421, 345422, 345423, 345424, 345425, 345426, 345427, 345428, 345429, 345430, 345431} },
{"Robinson Test Helm", {6040762, 40762, 345432, 345433, 345447, 345448, 345449, 345450, 345451, 345452, 345453, 345454, 345455, 345456} },
{"Sonic Booster", {6040767, 40767, 345457, 345458, 345459, 345460, 345461, 345462, 345463, 345464, 345465, 345466, 345467, 345468} },
{"Sigil of the Frozen Conscience", {6040822, 40822, 345912, 345913, 345914, 345915, 345916, 345917, 345918, 345919, 345920, 345921, 345922, 345923} },
{"ObsoleteSigil of Pestilential Touch", {6040832, 40832, 346032, 346033, 346034, 346035, 346036, 346037, 346038, 346039, 346040, 346041, 346042, 346043} },
{"ObsoleteSigil of the Glorious Mistake", {6040839, 40839, 346080, 346081, 346082, 346083, 346084, 346085, 346086, 346087, 346088, 346089, 346090, 346091} },
{"Noise Machine", {6040865, 40865, 346376, 346377, 346378, 346379, 346380, 346381, 346382, 346383, 346384, 346385, 346386, 346387} },
{"Sigil of the Wild Buck", {6040867, 40867, 346400, 346401, 346402, 346403, 346404, 346405, 346406, 346407, 346408, 346409, 346410, 346411} },
{"Sigil of Arthritic Binding", {6040875, 40875, 346472, 346473, 346474, 346475, 346476, 346477, 346478, 346479, 346480, 346481, 346482, 346483} },
{"Gnomish X-Ray Specs", {6040895, 40895, 346622, 346623, 346624, 346625, 346626, 346627, 346628, 346629, 346630, 346631, 346632, 346633} },
{"Spiked Cobalt Helm", {346869, 40942, 346868, 346870, 346871, 346872, 346873, 346874, 346875, 346876, 346877, 346878, 346879, 346880} },
{"Spiked Cobalt Legplates", {346882, 40943, 346881, 346883, 346884, 346885, 346886, 346887, 346888, 346889, 346890, 346891, 346892, 346893} },
{"Spiked Cobalt Boots", {346895, 40949, 346894, 346896, 346897, 346898, 346899, 346900, 346901, 346902, 346903, 346904, 346905, 346906} },
{"Spiked Cobalt Shoulders", {346908, 40950, 346907, 346909, 346910, 346911, 346912, 346913, 346914, 346915, 346916, 346917, 346918, 346919} },
{"Spiked Cobalt Chestpiece", {346921, 40951, 346920, 346922, 346923, 346924, 346925, 346926, 346927, 346928, 346929, 346930, 346931, 346932} },
{"Spiked Cobalt Gauntlets", {346934, 40952, 346933, 346935, 346936, 346937, 346938, 346939, 346940, 346941, 346942, 346943, 346944, 346945} },
{"Spiked Cobalt Belt", {346947, 40953, 346946, 346948, 346949, 346950, 346951, 346952, 346953, 346954, 346955, 346956, 346957, 346958} },
{"Spiked Cobalt Bracers", {346960, 40954, 346959, 346961, 346962, 346963, 346964, 346965, 346966, 346967, 346968, 346969, 346970, 346971} },
{"Horned Cobalt Helm", {346973, 40955, 346972, 346974, 346975, 346976, 346977, 346978, 346979, 346980, 346981, 346982, 346983, 346984} },
{"Reinforced Cobalt Shoulders", {346986, 40956, 346985, 346987, 346988, 346989, 346990, 346991, 346992, 346993, 346994, 346995, 346996, 346997} },
{"Reinforced Cobalt Helm", {346999, 40957, 346998, 347000, 347001, 347002, 347003, 347004, 347005, 347006, 347007, 347008, 347009, 347010} },
{"Reinforced Cobalt Legplates", {347012, 40958, 347011, 347013, 347014, 347015, 347016, 347017, 347018, 347019, 347020, 347021, 347022, 347023} },
{"Reinforced Cobalt Chestpiece", {347025, 40959, 347024, 347026, 347027, 347028, 347029, 347030, 347031, 347032, 347033, 347034, 347035, 347036} },
{"Mechanized Snow Goggles", {6041112, 41112, 348247, 348248, 348249, 348250, 348251, 348252, 348253, 348254, 348255, 348257, 348259, 348260} },
{"Saronite Bulwark", {6041113, 41113, 348261, 348262, 348263, 348264, 348265, 348266, 348267, 348268, 348269, 348270, 348272, 348274} },
{"Tempered Saronite Gauntlets", {6041114, 41114, 348275, 348276, 348277, 348278, 348279, 348280, 348281, 348282, 348283, 348284, 348285, 348287} },
{"Tempered Saronite Bracers", {6041116, 41116, 348289, 348290, 348291, 348292, 348293, 348294, 348295, 348296, 348297, 348298, 348299, 348300} },
{"Saronite Protector", {6041117, 41117, 348302, 348304, 348305, 348306, 348307, 348308, 348309, 348310, 348311, 348312, 348313, 348314} },
{"Brilliant Saronite Legplates", {6041126, 41126, 348329, 348330, 348331, 348333, 348335, 348336, 348337, 348338, 348339, 348340, 348341, 348342} },
{"Brilliant Saronite Gauntlets", {6041127, 41127, 348343, 348344, 348345, 348346, 348348, 348350, 348351, 348352, 348353, 348354, 348355, 348356} },
{"Brilliant Saronite Boots", {6041128, 41128, 348357, 348358, 348359, 348360, 348361, 348363, 348365, 348366, 348367, 348368, 348369, 348370} },
{"Brilliant Saronite Breastplate", {6041129, 41129, 348371, 348372, 348373, 348374, 348375, 348376, 348378, 348380, 348381, 348382, 348383, 348384} },
{"Honed Cobalt Cleaver", {6041181, 41181, 348683, 348684, 348685, 348686, 348687, 348688, 348689, 348690, 348691, 348692, 348693, 348694} },
{"Savage Cobalt Slicer", {6041182, 41182, 348695, 348696, 348697, 348698, 348699, 348700, 348701, 348702, 348703, 348704, 348705, 348706} },
{"Saronite Ambusher", {6041183, 41183, 348707, 348708, 348709, 348710, 348711, 348712, 348713, 348714, 348715, 348716, 348717, 348718} },
{"Saronite Shiv", {6041184, 41184, 348719, 348720, 348721, 348722, 348723, 348724, 348726, 348727, 348728, 348729, 348730, 348731} },
{"Furious Saronite Beatstick", {6041185, 41185, 348732, 348733, 348734, 348735, 348736, 348737, 348738, 348739, 348740, 348741, 348742, 348743} },
{"Corroded Saronite Edge", {6041186, 41186, 348744, 348745, 348746, 348747, 348748, 348749, 348750, 348751, 348752, 348753, 348754, 348755} },
{"Corroded Saronite Woundbringer", {6041187, 41187, 348756, 348757, 348758, 348759, 348760, 348761, 348762, 348763, 348764, 348765, 348766, 348767} },
{"Saronite Mindcrusher", {6041188, 41188, 348768, 348769, 348770, 348771, 348772, 348773, 348774, 348775, 348776, 348777, 348778, 348779} },
{"Chestplate of Conquest", {6041189, 41189, 348780, 348781, 348782, 348783, 348784, 348785, 348786, 348787, 348788, 348789, 348790, 348791} },
{"Legplates of Conquest", {6041190, 41190, 348792, 348793, 348794, 348795, 348796, 348797, 348798, 348799, 348800, 348801, 348802, 348803} },
{"Cloak of Tormented Skies", {6041238, 41238, 349152, 349153, 349154, 349155, 349156, 349157, 349158, 349159, 349160, 349161, 349162, 349163} },
{"Sturdy Cobalt Quickblade", {349165, 41239, 349164, 349166, 349167, 349168, 349169, 349170, 349171, 349172, 349173, 349174, 349175, 349176} },
{"Cobalt Tenderizer", {349178, 41240, 349177, 349179, 349180, 349181, 349182, 349183, 349184, 349185, 349186, 349187, 349188, 349189} },
{"Sure-fire Shuriken", {349191, 41241, 349190, 349192, 349193, 349194, 349195, 349196, 349197, 349198, 349199, 349200, 349201, 349202} },
{"Forged Cobalt Claymore", {349204, 41242, 349203, 349205, 349206, 349207, 349208, 349209, 349210, 349211, 349212, 349213, 349214, 349215} },
{"Notched Cobalt War Axe", {349217, 41243, 349216, 349218, 349219, 349220, 349221, 349222, 349223, 349224, 349225, 349226, 349227, 349228} },
{"Deadly Saronite Dirk", {6041245, 41245, 349229, 349230, 349231, 349232, 349233, 349234, 349235, 349236, 349237, 349238, 349239, 349240} },
{"Staff of the Shadow Flame (Purple Enchant)", {6041342, 41342, 349889, 349890, 349891, 349892, 349893, 349894, 349895, 349896, 349897, 349898, 349899, 349900} },
{"Helm of Command", {6041344, 41344, 349901, 349902, 349903, 349904, 349905, 349906, 349907, 349908, 349909, 349910, 349911, 349912} },
{"Daunting Legplates", {6041345, 41345, 349913, 349914, 349915, 349916, 349917, 349918, 349919, 349920, 349921, 349922, 349923, 349924} },
{"Righteous Greaves", {6041346, 41346, 349925, 349926, 349927, 349928, 349929, 349930, 349931, 349932, 349933, 349934, 349935, 349936} },
{"Vengeance Bindings", {6041355, 41355, 350098, 350099, 350100, 350101, 350102, 350103, 350104, 350105, 350106, 350107, 350108, 350109} },
{"Righteous Gauntlets", {6041356, 41356, 350110, 350111, 350112, 350113, 350114, 350115, 350116, 350117, 350118, 350119, 350120, 350121} },
{"Daunting Handguards", {6041357, 41357, 350122, 350123, 350124, 350125, 350126, 350127, 350128, 350129, 350130, 350131, 350132, 350133} },
{"Frostwoven Wristwraps", {350236, 41512, 350235, 350237, 350238, 350239, 350240, 350241, 350242, 350243, 350244, 350245, 350246, 350247} },
{"Frostwoven Shoulders", {350249, 41513, 350248, 350250, 350251, 350252, 350253, 350254, 350255, 350256, 350257, 350258, 350259, 350260} },
{"Frostwoven Robe", {350262, 41515, 350261, 350263, 350264, 350265, 350266, 350267, 350268, 350269, 350270, 350271, 350272, 350273} },
{"Frostwoven Leggings", {350287, 41519, 350286, 350288, 350289, 350290, 350291, 350292, 350293, 350294, 350295, 350296, 350297, 350298} },
{"Frostwoven Boots", {350300, 41520, 350299, 350301, 350302, 350303, 350304, 350305, 350306, 350307, 350308, 350309, 350310, 350311} },
{"Frostwoven Cowl", {350313, 41521, 350312, 350314, 350315, 350316, 350317, 350318, 350319, 350320, 350321, 350322, 350323, 350324} },
{"Frostwoven Belt", {350326, 41522, 350325, 350327, 350328, 350329, 350330, 350331, 350332, 350333, 350334, 350335, 350336, 350337} },
{"Mystic Frostwoven Shoulders", {6041523, 41523, 350338, 350339, 350340, 350341, 350342, 350343, 350344, 350345, 350346, 350347, 350348, 350349} },
{"Mystic Frostwoven Robe", {6041525, 41525, 350350, 350352, 350355, 350356, 350357, 350358, 350359, 350360, 350361, 350362, 350363, 350364} },
{"Mystic Frostwoven Wristwraps", {6041528, 41528, 350365, 350366, 350367, 350368, 350369, 350370, 350371, 350372, 350373, 350374, 350375, 350376} },
{"Duskweave Belt", {350378, 41543, 350377, 350379, 350380, 350381, 350382, 350383, 350384, 350385, 350386, 350387, 350388, 350389} },
{"Duskweave Boots", {350391, 41544, 350390, 350392, 350393, 350394, 350395, 350396, 350397, 350398, 350399, 350400, 350401, 350402} },
{"Duskweave Gloves", {350404, 41545, 350403, 350405, 350406, 350407, 350408, 350409, 350410, 350411, 350412, 350416, 350417, 350418} },
{"Duskweave Cowl", {350420, 41546, 350419, 350421, 350422, 350423, 350424, 350430, 350431, 350432, 350433, 350434, 350435, 350436} },
{"Duskweave Leggings", {350438, 41548, 350437, 350439, 350440, 350441, 350442, 350443, 350444, 350445, 350446, 350447, 350448, 350449} },
{"Duskweave Robe", {350451, 41549, 350450, 350452, 350453, 350454, 350455, 350456, 350457, 350458, 350459, 350460, 350461, 350462} },
{"Duskweave Shoulders", {350464, 41550, 350463, 350465, 350466, 350467, 350468, 350469, 350470, 350471, 350472, 350473, 350474, 350475} },
{"Duskweave Wristwraps", {350477, 41551, 350476, 350478, 350479, 350480, 350481, 350482, 350483, 350484, 350485, 350486, 350487, 350488} },
{"Black Duskweave Leggings", {6041553, 41553, 350489, 350490, 350491, 350492, 350493, 350494, 350495, 350496, 350497, 350498, 350499, 350500} },
{"Black Duskweave Robe", {6041554, 41554, 350501, 350502, 350503, 350504, 350505, 350506, 350507, 350508, 350509, 350510, 350511, 350512} },
{"Black Duskweave Wristwraps", {6041555, 41555, 350513, 350514, 350515, 350516, 350517, 350518, 350519, 350520, 350521, 350522, 350523, 350524} },
{"Battlemaster's Celerity", {6041587, 41587, 350525, 350526, 350527, 350528, 350529, 350530, 350531, 350532, 350533, 350534, 350535, 350536} },
{"Battlemaster's Aggression", {6041588, 41588, 350537, 350538, 350539, 350540, 350541, 350542, 350543, 350544, 350545, 350546, 350547, 350548} },
{"Battlemaster's Resolve", {6041589, 41589, 350549, 350550, 350551, 350552, 350553, 350554, 350555, 350556, 350557, 350558, 350559, 350560} },
{"Battlemaster's Courage", {6041590, 41590, 350561, 350562, 350563, 350564, 350565, 350566, 350567, 350568, 350569, 350570, 350571, 350572} },
{"Cloak of the Moon", {6041607, 41607, 350597, 350598, 350599, 350600, 350601, 350602, 350603, 350604, 350605, 350606, 350607, 350608} },
{"Cloak of Frozen Spirits", {6041608, 41608, 350609, 350610, 350611, 350612, 350613, 350614, 350615, 350616, 350617, 350618, 350619, 350620} },
{"The Fire Extinguisher", {6041755, 41755, 351465, 351467, 351468, 351470, 351472, 351473, 351474, 351476, 351478, 351479, 351480, 351481} },
{"Heart's Blood Signet", {351484, 41756, 351482, 351486, 351487, 351489, 351491, 351492, 351494, 351496, 351497, 351499, 351501, 351502} },
{"Vest of Unyielding Companionship", {351505, 41757, 351503, 351507, 351508, 351509, 351511, 351513, 351514, 351515, 351516, 351517, 351518, 351519} },
{"Blood-Bond Helm", {351521, 41758, 351520, 351522, 351523, 351524, 351525, 351526, 351527, 351528, 351529, 351530, 351531, 351532} },
{"Shackles of Perpetual Friendship", {351534, 41759, 351533, 351535, 351536, 351538, 351540, 351541, 351543, 351545, 351546, 351547, 351548, 351549} },
{"Emancipator's Robes", {351551, 41760, 351550, 351552, 351553, 351554, 351555, 351556, 351557, 351558, 351559, 351560, 351561, 351562} },
{"Wristguard of Healing Fingers", {351564, 41761, 351563, 351565, 351566, 351567, 351568, 351569, 351570, 351571, 351572, 351573, 351574, 351575} },
{"Freedom-Path Treads", {351577, 41762, 351576, 351578, 351579, 351580, 351581, 351582, 351583, 351584, 351585, 351586, 351587, 351588} },
{"Leggings of the Canny Chief", {351590, 41763, 351589, 351591, 351592, 351593, 351594, 351595, 351596, 351597, 351598, 351599, 351600, 351601} },
{"Icier Barbed Spear", {6041815, 41815, 351704, 351705, 351706, 351707, 351708, 351709, 351710, 351711, 351712, 351713, 351714, 351715} },
{"De-Raged Waraxe", {6041816, 41816, 351716, 351717, 351718, 351719, 351720, 351721, 351722, 351723, 351724, 351725, 351726, 351727} },
{"Chilly Slobberknocker", {6041821, 41821, 351728, 351729, 351730, 351731, 351732, 351733, 351734, 351735, 351736, 351737, 351738, 351739} },
{"Screw-Sprung Fixer-Upper", {6041822, 41822, 351740, 351741, 351742, 351743, 351744, 351745, 351746, 351747, 351748, 351749, 351750, 351751} },
{"Crimson Cranium Crusher", {6041824, 41824, 351752, 351753, 351754, 351755, 351756, 351757, 351758, 351759, 351760, 351761, 351762, 351763} },
{"Wodin's Second-Best Shanker", {6041825, 41825, 351764, 351765, 351766, 351767, 351768, 351769, 351770, 351771, 351772, 351773, 351774, 351775} },
{"Grips of the Giant-Rider", {6041826, 41826, 351776, 351777, 351778, 351779, 351780, 351781, 351782, 351783, 351784, 351785, 351786, 351787} },
{"Horns of Electrified Terror", {6041829, 41829, 351812, 351813, 351814, 351815, 351816, 351817, 351818, 351819, 351820, 351821, 351822, 351823} },
{"Bracers of Vengeful Flight", {6041844, 41844, 351938, 351939, 351940, 351941, 351942, 351943, 351944, 351945, 351946, 351947, 351948, 351949} },
{"Life-Light Pauldrons", {6041845, 41845, 351950, 351951, 351952, 351953, 351954, 351955, 351956, 351957, 351958, 351959, 351960, 351961} },
{"Clutch of the Storm Giant", {6041846, 41846, 351962, 351963, 351964, 351965, 351966, 351967, 351968, 351969, 351970, 351971, 351972, 351973} },
{"Robe of the Conquered Prophet", {6041890, 41890, 352371, 352372, 352373, 352374, 352375, 352376, 352377, 352378, 352379, 352380, 352381, 352382} },
{"Intricate Zandalari Tunic", {6041891, 41891, 352383, 352384, 352385, 352386, 352387, 352388, 352389, 352390, 352391, 352392, 352393, 352394} },
{"Chestguard of Rampaging Fury", {6041905, 41905, 352533, 352534, 352535, 352536, 352537, 352538, 352539, 352540, 352541, 352542, 352543, 352544} },
{"Links of the Terrified Deity", {6041932, 41932, 352803, 352804, 352805, 352806, 352807, 352808, 352809, 352810, 352811, 352812, 352813, 352814} },
{"Cobalt Bracers", {353202, 41974, 353201, 353203, 353204, 353205, 353206, 353207, 353208, 353209, 353210, 353211, 353212, 353213} },
{"Cobalt Gauntlets", {353215, 41975, 353214, 353216, 353217, 353218, 353219, 353220, 353221, 353222, 353223, 353224, 353225, 353226} },
{"Hat of Wintry Doom", {6041984, 41984, 353227, 353228, 353229, 353230, 353231, 353232, 353233, 353234, 353235, 353236, 353237, 353238} },
{"Silky Iceshard Boots", {6041985, 41985, 353239, 353240, 353241, 353242, 353243, 353244, 353245, 353246, 353247, 353248, 353249, 353250} },
{"Deep Frozen Cord", {6041986, 41986, 353251, 353252, 353253, 353254, 353255, 353256, 353257, 353258, 353259, 353260, 353261, 353262} },
{"Staff of the Sorrowful Chieftain", {6041987, 41987, 353263, 353264, 353265, 353266, 353267, 353268, 353269, 353270, 353271, 353272, 353273, 353274} },
{"Frostmoon Pants", {6042093, 42093, 354284, 354285, 354286, 354287, 354288, 354289, 354290, 354291, 354292, 354293, 354294, 354295} },
{"Light Blessed Mittens", {6042095, 42095, 354296, 354297, 354298, 354299, 354300, 354301, 354302, 354303, 354304, 354305, 354306, 354307} },
{"Aurora Slippers", {6042096, 42096, 354308, 354309, 354310, 354311, 354312, 354313, 354314, 354315, 354316, 354317, 354318, 354319} },
{"Bloodstone Band", {355722, 42336, 355721, 355723, 355724, 355725, 355726, 355727, 355728, 355729, 355730, 355731, 355732, 355733} },
{"Sun Rock Ring", {355735, 42337, 355734, 355736, 355737, 355738, 355739, 355740, 355741, 355742, 355743, 355744, 355745, 355746} },
{"Jade Dagger Pendant", {6042338, 42338, 355747, 355748, 355749, 355750, 355751, 355752, 355753, 355754, 355755, 355756, 355757, 355758} },
{"Blood Sun Necklace", {6042339, 42339, 355759, 355760, 355761, 355762, 355763, 355764, 355765, 355766, 355767, 355768, 355769, 355770} },
{"Dream Signet", {6042340, 42340, 355771, 355772, 355773, 355774, 355775, 355776, 355777, 355778, 355779, 355780, 355781, 355782} },
{"Cudgel of Saronite Justice", {6042443, 42443, 356143, 356144, 356145, 356146, 356147, 356148, 356149, 356150, 356151, 356152, 356153, 356154} },
{"Leggings of Visceral Strikes", {6042731, 42731, 358581, 358582, 358583, 358584, 358585, 358586, 358587, 358588, 358589, 358590, 358591, 358592} },
{"Monster - Staff, Xarantaur's Staff", {6042755, 42755, 358593, 358594, 358595, 358596, 358597, 358598, 358599, 358600, 358601, 358602, 358603, 358604} },
{"Time-Twisted Wraps", {6042758, 42758, 358605, 358606, 358607, 358608, 358609, 358610, 358611, 358612, 358613, 358614, 358615, 358616} },
{"Sandals of Mystical Evolution", {6042760, 42760, 358617, 358618, 358619, 358620, 358621, 358622, 358623, 358624, 358625, 358626, 358627, 358628} },
{"Time-Stop Gloves", {6042761, 42761, 358629, 358630, 358631, 358632, 358633, 358634, 358635, 358636, 358637, 358638, 358639, 358640} },
{"Treads of Torn Future", {6042762, 42762, 358641, 358642, 358643, 358644, 358645, 358646, 358647, 358648, 358649, 358650, 358651, 358652} },
{"Bindings of Sabotage", {6042763, 42763, 358653, 358654, 358655, 358656, 358657, 358658, 358659, 358660, 358661, 358662, 358663, 358664} },
{"Gauntlets of the Disturbed Giant", {6042765, 42765, 358665, 358666, 358667, 358668, 358669, 358670, 358671, 358672, 358673, 358674, 358675, 358676} },
{"Spiked Treads of Mutation", {6042766, 42766, 358677, 358678, 358679, 358680, 358681, 358682, 358683, 358684, 358685, 358686, 358687, 358688} },
{"Invigorating Sabatons", {6042767, 42767, 358689, 358690, 358691, 358692, 358693, 358694, 358695, 358696, 358697, 358698, 358699, 358700} },
{"Boots of the Unbowed Protector", {6042768, 42768, 358701, 358702, 358703, 358704, 358705, 358706, 358707, 358708, 358709, 358710, 358711, 358712} },
{"Mammoth Sinew Cinch", {358714, 42785, 358713, 358715, 358716, 358717, 358718, 358719, 358720, 358721, 358722, 358723, 358724, 358725} },
{"Daschal's Serrated Blade", {358727, 42786, 358726, 358728, 358729, 358730, 358731, 358732, 358733, 358734, 358735, 358736, 358737, 358738} },
{"Ironwool Bindings", {358740, 42787, 358739, 358741, 358742, 358743, 358744, 358745, 358746, 358747, 358748, 358749, 358750, 358751} },
{"Frosthowl Cinch", {358753, 42788, 358752, 358754, 358755, 358756, 358757, 358758, 358759, 358760, 358761, 358762, 358763, 358764} },
{"Boots of the Howling Winds", {358766, 42789, 358765, 358767, 358768, 358769, 358770, 358771, 358772, 358773, 358774, 358775, 358776, 358777} },
{"K3 Surgeon's Gloves", {358779, 42790, 358778, 358780, 358781, 358782, 358783, 358784, 358785, 358786, 358787, 358788, 358789, 358790} },
{"Ring of Order", {358792, 42791, 358791, 358793, 358794, 358795, 358796, 358797, 358798, 358799, 358800, 358801, 358802, 358803} },
{"Vestments of Dun Niffelem", {358805, 42792, 358804, 358806, 358807, 358808, 358809, 358810, 358811, 358812, 358813, 358814, 358815, 358816} },
{"Locket of Snowcrest", {358818, 42793, 358817, 358819, 358820, 358821, 358822, 358823, 358824, 358825, 358826, 358827, 358828, 358829} },
{"Hardened Vine of the Mauler", {358831, 42794, 358830, 358832, 358833, 358834, 358835, 358836, 358837, 358838, 358839, 358840, 358841, 358842} },
{"Leggings of Renewed Hope", {358844, 42795, 358843, 358845, 358846, 358847, 358848, 358849, 358850, 358851, 358852, 358853, 358854, 358855} },
{"Lantern of Enchanted Flame", {358857, 42796, 358856, 358858, 358859, 358860, 358861, 358862, 358863, 358864, 358865, 358866, 358867, 358868} },
{"Mammoth Hide Galoshes", {358870, 42798, 358869, 358871, 358872, 358873, 358874, 358875, 358876, 358877, 358878, 358879, 358880, 358881} },
{"Snowblind Butcher", {358883, 42799, 358882, 358884, 358885, 358886, 358887, 358888, 358889, 358890, 358891, 358892, 358893, 358894} },
{"Gale-wind Guard", {358896, 42800, 358895, 358897, 358898, 358899, 358900, 358901, 358902, 358903, 358904, 358905, 358906, 358907} },
{"Nomadic Bracers", {358909, 42801, 358908, 358910, 358911, 358912, 358913, 358914, 358915, 358916, 358917, 358918, 358919, 358920} },
{"Hardened Whipping Belt", {358922, 42802, 358921, 358923, 358924, 358925, 358926, 358927, 358928, 358929, 358930, 358931, 358932, 358933} },
{"Buckshot-Proof Battlesurgeon's Protector", {358935, 42803, 358934, 358936, 358937, 358938, 358939, 358940, 358941, 358942, 358943, 358944, 358945, 358946} },
{"Spiked Iceclimber's Boots", {358948, 42804, 358947, 358949, 358950, 358951, 358952, 358953, 358954, 358955, 358956, 358957, 358958, 358959} },
{"Njormeld's Pauldrons", {358961, 42805, 358960, 358962, 358963, 358964, 358965, 358966, 358967, 358968, 358969, 358970, 358971, 358972} },
{"Storm-weathered Cuffs", {358974, 42806, 358973, 358975, 358976, 358977, 358978, 358979, 358980, 358981, 358982, 358983, 358984, 358985} },
{"Blade of the Inception", {358987, 42807, 358986, 358988, 358989, 358990, 358991, 358992, 358993, 358994, 358995, 358996, 358997, 358998} },
{"Bouldercrag's Pendant", {359000, 42808, 358999, 359001, 359002, 359003, 359004, 359005, 359006, 359007, 359008, 359009, 359010, 359011} },
{"Bloodied Leather Gloves", {359013, 42809, 359012, 359014, 359015, 359016, 359017, 359018, 359019, 359020, 359021, 359022, 359023, 359024} },
{"Wooly Cowl", {359026, 42810, 359025, 359027, 359028, 359029, 359030, 359031, 359032, 359033, 359034, 359035, 359036, 359037} },
{"Twisted Reflection", {359039, 42811, 359038, 359040, 359041, 359042, 359043, 359044, 359045, 359046, 359047, 359048, 359049, 359050} },
{"Chestplate of the Northern Ranger", {359065, 42813, 359064, 359066, 359067, 359068, 359069, 359070, 359071, 359072, 359073, 359074, 359075, 359076} },
{"Broken Chastity Belt", {359078, 42814, 359077, 359079, 359080, 359081, 359082, 359083, 359084, 359085, 359086, 359087, 359088, 359089} },
{"Mammoth Mukluks", {359091, 42815, 359090, 359092, 359093, 359094, 359095, 359096, 359097, 359098, 359099, 359100, 359101, 359102} },
{"Cuffs of Invention", {359104, 42816, 359103, 359105, 359106, 359107, 359108, 359109, 359110, 359111, 359112, 359113, 359114, 359115} },
{"Reforged Chain Leggings", {359117, 42817, 359116, 359118, 359119, 359120, 359121, 359122, 359123, 359124, 359125, 359126, 359127, 359128} },
{"Stormstalker's Clutch", {359130, 42818, 359129, 359131, 359132, 359133, 359134, 359135, 359136, 359137, 359138, 359139, 359140, 359141} },
{"Maker's Touch", {359143, 42819, 359142, 359144, 359145, 359146, 359147, 359148, 359149, 359150, 359151, 359152, 359153, 359154} },
{"Mantle of Bouldercrag", {359156, 42820, 359155, 359157, 359158, 359159, 359160, 359161, 359162, 359163, 359164, 359165, 359166, 359167} },
{"Belt of the Stormforged", {359169, 42821, 359168, 359170, 359171, 359172, 359173, 359174, 359175, 359176, 359177, 359178, 359179, 359180} },
{"K3 Pachyderm Prevention Device", {359182, 42822, 359181, 359183, 359184, 359185, 359186, 359187, 359188, 359189, 359190, 359191, 359192, 359193} },
{"Ricket's Beatstick", {359195, 42823, 359194, 359196, 359197, 359198, 359199, 359200, 359201, 359202, 359203, 359204, 359205, 359206} },
{"Maker's Edge", {359208, 42824, 359207, 359209, 359210, 359211, 359212, 359213, 359214, 359215, 359216, 359217, 359218, 359219} },
{"Polished Tusk Shackles", {359221, 42825, 359220, 359222, 359223, 359224, 359225, 359226, 359227, 359228, 359229, 359230, 359231, 359232} },
{"Goblin Damage Absorber", {359234, 42826, 359233, 359235, 359236, 359237, 359238, 359239, 359240, 359241, 359242, 359243, 359244, 359245} },
{"Rockshaper's Resolve", {359247, 42827, 359246, 359248, 359249, 359250, 359251, 359252, 359253, 359254, 359255, 359256, 359257, 359258} },
{"Garm's Ward", {359260, 42828, 359259, 359261, 359262, 359263, 359264, 359265, 359266, 359267, 359268, 359269, 359270, 359271} },
{"Plated Skullguard", {359273, 42829, 359272, 359274, 359275, 359276, 359277, 359278, 359279, 359280, 359281, 359282, 359283, 359284} },
{"Ring of Jokkum", {359286, 42830, 359285, 359287, 359288, 359289, 359290, 359291, 359292, 359293, 359294, 359295, 359296, 359297} },
{"Maiden's Dagger", {359299, 42831, 359298, 359300, 359301, 359302, 359303, 359304, 359305, 359306, 359307, 359308, 359309, 359310} },
{"Coldblooded Legplates", {359312, 42832, 359311, 359313, 359314, 359315, 359316, 359317, 359318, 359319, 359320, 359321, 359322, 359323} },
{"Jawbreakers", {359325, 42833, 359324, 359326, 359327, 359328, 359329, 359330, 359331, 359332, 359333, 359334, 359335, 359336} },
{"Mantle of Long Winter", {359338, 42834, 359337, 359339, 359340, 359341, 359342, 359343, 359344, 359345, 359346, 359347, 359348, 359349} },
{"Backhanded Grips", {359351, 42835, 359350, 359352, 359353, 359354, 359355, 359356, 359357, 359358, 359359, 359360, 359361, 359362} },
{"Rockshaper Stompers", {359364, 42836, 359363, 359365, 359366, 359367, 359368, 359369, 359370, 359371, 359372, 359373, 359374, 359375} },
{"Leggings of the Frozen Wastes", {359377, 42841, 359376, 359378, 359379, 359380, 359381, 359382, 359383, 359384, 359385, 359386, 359387, 359388} },
{"Fur-Lined Shoulder Warmers", {359390, 42842, 359389, 359391, 359392, 359393, 359394, 359395, 359396, 359397, 359398, 359399, 359400, 359401} },
{"Mildred's Cowl", {359403, 42843, 359402, 359404, 359405, 359406, 359407, 359408, 359409, 359410, 359411, 359412, 359413, 359414} },
{"Robes of Lightning", {6042844, 42844, 359415, 359416, 359417, 359418, 359419, 359420, 359421, 359422, 359423, 359424, 359425, 359426} },
{"Brunnhildar Runed Ring", {359428, 42845, 359427, 359429, 359430, 359431, 359432, 359433, 359434, 359435, 359436, 359437, 359438, 359439} },
{"Jormungar Galoshes", {359441, 42846, 359440, 359442, 359443, 359444, 359445, 359446, 359447, 359448, 359449, 359450, 359451, 359452} },
{"Terrace Gazer's Gloves", {359454, 42847, 359453, 359455, 359456, 359457, 359458, 359459, 359460, 359461, 359462, 359463, 359464, 359465} },
{"Razor-sharp Icicle", {359467, 42848, 359466, 359468, 359469, 359470, 359471, 359472, 359473, 359474, 359475, 359476, 359477, 359478} },
{"Flowing Valkyrion Robes", {359480, 42849, 359479, 359481, 359482, 359483, 359484, 359485, 359486, 359487, 359488, 359489, 359490, 359491} },
{"Flamebringer's Crown", {359493, 42850, 359492, 359494, 359495, 359496, 359497, 359498, 359499, 359500, 359501, 359502, 359503, 359504} },
{"Thorim's Riding Crop", {359554, 42857, 359553, 359555, 359556, 359557, 359558, 359559, 359560, 359561, 359562, 359563, 359564, 359565} },
{"Crossbow of the Storms", {359567, 42858, 359566, 359568, 359569, 359570, 359571, 359572, 359573, 359574, 359575, 359576, 359577, 359578} },
{"Thorim's Crusher", {359580, 42859, 359579, 359581, 359582, 359583, 359584, 359585, 359586, 359587, 359588, 359589, 359590, 359591} },
{"Broodmother's Protector", {359593, 42860, 359592, 359594, 359595, 359596, 359597, 359598, 359599, 359600, 359601, 359602, 359603, 359604} },
{"Jormungar Fang", {359606, 42861, 359605, 359607, 359608, 359609, 359610, 359611, 359612, 359613, 359614, 359615, 359616, 359617} },
{"Hyldnir Painbringer", {359619, 42862, 359618, 359620, 359621, 359622, 359623, 359624, 359625, 359626, 359627, 359628, 359629, 359630} },
{"Sharpened Hyldnir Harpoon", {359632, 42863, 359631, 359633, 359634, 359635, 359636, 359637, 359638, 359639, 359640, 359641, 359642, 359643} },
{"Frozen Mood Ring", {359645, 42864, 359644, 359646, 359647, 359648, 359649, 359650, 359651, 359652, 359653, 359654, 359655, 359656} },
{"Frost Hardened Bracers", {359658, 42865, 359657, 359659, 359660, 359661, 359662, 359663, 359664, 359665, 359666, 359667, 359668, 359669} },
{"Fur-Lined Mittens", {359671, 42866, 359670, 359672, 359673, 359674, 359675, 359676, 359677, 359678, 359679, 359680, 359681, 359682} },
{"Cured Proto-Drake Leggings", {359684, 42867, 359683, 359685, 359686, 359687, 359688, 359689, 359690, 359691, 359692, 359693, 359694, 359695} },
{"Hyldnir Headcracker", {359697, 42868, 359696, 359698, 359699, 359700, 359701, 359702, 359703, 359704, 359705, 359706, 359707, 359708} },
{"Yeti Hide Mantle", {359710, 42869, 359709, 359711, 359712, 359713, 359714, 359715, 359716, 359717, 359718, 359719, 359720, 359721} },
{"Hibernal Chestguard", {359723, 42870, 359722, 359724, 359725, 359726, 359727, 359728, 359729, 359730, 359731, 359732, 359733, 359734} },
{"Bracer of Tarbash", {359736, 42871, 359735, 359737, 359738, 359739, 359740, 359741, 359742, 359743, 359744, 359745, 359746, 359747} },
{"Proto-Drake Cover", {359749, 42872, 359748, 359750, 359751, 359752, 359753, 359754, 359755, 359756, 359757, 359758, 359759, 359760} },
{"Wooly Stompers", {359762, 42874, 359761, 359763, 359764, 359765, 359766, 359767, 359768, 359769, 359770, 359771, 359772, 359773} },
{"Light-Touched Mantle", {359788, 42876, 359787, 359789, 359790, 359791, 359792, 359793, 359794, 359795, 359796, 359797, 359798, 359799} },
{"Chestguard of the Frozen Ascent", {359801, 42877, 359800, 359802, 359803, 359804, 359805, 359806, 359807, 359808, 359809, 359810, 359811, 359812} },
{"Vrykul Training Helm", {359814, 42878, 359813, 359815, 359816, 359817, 359818, 359819, 359820, 359821, 359822, 359823, 359824, 359825} },
{"Crown of Hyldnir", {359827, 42879, 359826, 359828, 359829, 359830, 359831, 359832, 359833, 359834, 359835, 359836, 359837, 359838} },
{"Astrid's Riding Gloves", {359840, 42880, 359839, 359841, 359842, 359843, 359844, 359845, 359846, 359847, 359848, 359849, 359850, 359851} },
{"Bjornrittar's Chilled Legguards", {359853, 42881, 359852, 359854, 359855, 359856, 359857, 359858, 359859, 359860, 359861, 359862, 359863, 359864} },
{"Thorim's Grasp", {359866, 42882, 359865, 359867, 359868, 359869, 359870, 359871, 359872, 359874, 359875, 359876, 359877, 359878} },
{"Iva's Boots", {359880, 42883, 359879, 359881, 359882, 359884, 359885, 359886, 359887, 359888, 359889, 359890, 359891, 359892} },
{"Steel-tipped Snowboots", {359894, 42884, 359893, 359895, 359896, 359897, 359898, 359899, 359900, 359901, 359902, 359903, 359904, 359905} },
{"Pauldrons of the Ascent", {359933, 42887, 359932, 359934, 359935, 359936, 359937, 359938, 359939, 359940, 359941, 359942, 359943, 359944} },
{"Summit Bracers", {359946, 42888, 359945, 359947, 359948, 359949, 359950, 359951, 359952, 359953, 359954, 359955, 359956, 359957} },
{"Mildred's Grasp", {359959, 42889, 359958, 359960, 359961, 359962, 359963, 359964, 359965, 359966, 359967, 359968, 359969, 359970} },
{"Proto-scale Pants", {359972, 42890, 359971, 359973, 359974, 359975, 359976, 359977, 359978, 359979, 359980, 359981, 359982, 359983} },
{"Brunnhildar Snowkickers", {359985, 42891, 359984, 359986, 359987, 359988, 359989, 359990, 359991, 359992, 359993, 359994, 359995, 359996} },
{"Scaled Proto-Wristguard", {359998, 42892, 359997, 359999, 360000, 360001, 360002, 360003, 360004, 360005, 360006, 360007, 360008, 360009} },
{"Shoulders of Earthen Might", {360011, 42893, 360010, 360012, 360013, 360014, 360015, 360016, 360017, 360018, 360019, 360020, 360021, 360022} },
{"Scaled Jormungar Protector", {360024, 42895, 360023, 360025, 360026, 360027, 360028, 360029, 360030, 360031, 360032, 360033, 360034, 360035} },
{"Valkyrion Tracker's Chestguard", {360037, 42896, 360036, 360038, 360039, 360040, 360041, 360042, 360043, 360044, 360045, 360046, 360047, 360048} },
{"Blessed Spaulders of Undead Slaying", {6043068, 43068, 360279, 360280, 360281, 360282, 360283, 360284, 360285, 360286, 360287, 360288, 360289, 360290} },
{"Blessed Breastplate of Undead Slaying", {6043069, 43069, 360291, 360292, 360293, 360294, 360295, 360296, 360297, 360298, 360299, 360300, 360301, 360302} },
{"Blessed Gauntlets of Undead Slaying", {6043070, 43070, 360303, 360304, 360305, 360306, 360307, 360308, 360309, 360310, 360311, 360312, 360313, 360314} },
{"Blessed Legplates of Undead Slaying", {6043071, 43071, 360315, 360316, 360317, 360318, 360319, 360320, 360321, 360322, 360323, 360324, 360325, 360326} },
{"Blessed Robe of Undead Cleansing", {6043072, 43072, 360327, 360328, 360329, 360330, 360331, 360332, 360333, 360334, 360335, 360336, 360337, 360338} },
{"Blessed Gloves of Undead Cleansing", {6043073, 43073, 360339, 360340, 360341, 360342, 360343, 360344, 360345, 360346, 360347, 360348, 360349, 360350} },
{"Blessed Mantle of Undead Cleansing", {6043074, 43074, 360351, 360352, 360353, 360354, 360355, 360356, 360357, 360358, 360359, 360360, 360361, 360362} },
{"Blessed Trousers of Undead Cleansing", {6043075, 43075, 360363, 360364, 360365, 360366, 360367, 360368, 360369, 360370, 360371, 360372, 360373, 360374} },
{"Blessed Tunic of Undead Slaying", {6043076, 43076, 360375, 360376, 360377, 360378, 360379, 360380, 360381, 360382, 360383, 360384, 360385, 360386} },
{"Blessed Shoulderpads of Undead Slaying", {6043077, 43077, 360387, 360388, 360389, 360390, 360391, 360392, 360393, 360394, 360395, 360396, 360397, 360398} },
{"Blessed Grips of Undead Slaying", {6043078, 43078, 360399, 360400, 360401, 360402, 360403, 360404, 360405, 360406, 360407, 360408, 360409, 360410} },
{"Blessed Leggings of Undead Slaying", {6043079, 43079, 360411, 360412, 360413, 360414, 360415, 360416, 360417, 360418, 360419, 360420, 360421, 360422} },
{"Blessed Hauberk of Undead Slaying", {6043080, 43080, 360423, 360424, 360425, 360426, 360427, 360428, 360429, 360430, 360431, 360432, 360433, 360434} },
{"Blessed Pauldrons of Undead Slaying", {6043081, 43081, 360435, 360436, 360437, 360438, 360439, 360440, 360441, 360442, 360443, 360444, 360445, 360446} },
{"Blessed Handguards of Undead Slaying", {6043082, 43082, 360447, 360448, 360449, 360450, 360451, 360452, 360453, 360454, 360455, 360456, 360457, 360458} },
{"Blessed Greaves of Undead Slaying", {6043083, 43083, 360459, 360460, 360461, 360462, 360463, 360464, 360465, 360466, 360467, 360468, 360469, 360470} },
{"Razorstrike Breastplate", {6043129, 43129, 360483, 360484, 360485, 360486, 360487, 360488, 360489, 360490, 360491, 360492, 360493, 360494} },
{"Virulent Spaulders", {6043130, 43130, 360495, 360496, 360497, 360498, 360499, 360500, 360501, 360502, 360503, 360504, 360505, 360506} },
{"Eaglebane Bracers", {6043131, 43131, 360507, 360508, 360509, 360510, 360511, 360512, 360513, 360514, 360515, 360516, 360517, 360518} },
{"Nightshock Hood", {6043132, 43132, 360519, 360520, 360521, 360522, 360523, 360524, 360525, 360526, 360527, 360528, 360529, 360530} },
{"Nightshock Girdle", {6043133, 43133, 360531, 360532, 360533, 360534, 360535, 360536, 360537, 360538, 360539, 360540, 360541, 360542} },
{"Leggings of Fastidious Decapitation", {6043160, 43160, 360543, 360544, 360545, 360546, 360547, 360548, 360549, 360550, 360551, 360552, 360553, 360554} },
{"Legguards of Solemn Revenge", {6043161, 43161, 360555, 360556, 360557, 360558, 360559, 360560, 360561, 360562, 360563, 360564, 360565, 360566} },
{"Ceremonial Pike Leggings", {6043162, 43162, 360567, 360568, 360569, 360570, 360571, 360572, 360573, 360574, 360575, 360576, 360577, 360578} },
{"Legplates of the Vengeful Mendicant", {6043163, 43163, 360579, 360580, 360581, 360582, 360583, 360584, 360585, 360586, 360587, 360588, 360589, 360590} },
{"Sly Mojo Sash", {6043164, 43164, 360591, 360592, 360593, 360594, 360595, 360596, 360597, 360598, 360599, 360600, 360601, 360602} },
{"Strange Voodoo Belt", {6043165, 43165, 360603, 360604, 360605, 360606, 360607, 360608, 360609, 360610, 360611, 360612, 360613, 360614} },
{"Ranger's Belt of the Fallen Empire", {6043167, 43167, 360615, 360616, 360617, 360618, 360619, 360620, 360621, 360622, 360623, 360624, 360625, 360626} },
{"Clasp of the Fallen Demi-God", {6043168, 43168, 360627, 360628, 360629, 360630, 360631, 360632, 360633, 360634, 360635, 360636, 360637, 360638} },
{"Fur-lined Moccasins", {6043171, 43171, 360639, 360640, 360641, 360642, 360643, 360644, 360645, 360646, 360647, 360648, 360649, 360650} },
{"Rhino Hide Kneeboots", {6043172, 43172, 360651, 360652, 360653, 360654, 360655, 360656, 360657, 360658, 360659, 360660, 360661, 360662} },
{"Scaled Boots of Fallen Hope", {6043173, 43173, 360663, 360664, 360665, 360666, 360667, 360668, 360669, 360670, 360671, 360672, 360673, 360674} },
{"Trollkickers", {6043174, 43174, 360675, 360676, 360677, 360678, 360679, 360680, 360681, 360682, 360683, 360684, 360685, 360686} },
{"Slippers of the Mojo Dojo", {6043176, 43176, 360687, 360688, 360689, 360690, 360691, 360692, 360693, 360694, 360695, 360696, 360697, 360698} },
{"Voodoo Signet", {6043177, 43177, 360699, 360700, 360701, 360702, 360703, 360704, 360705, 360706, 360707, 360708, 360709, 360710} },
{"Ring of Foul Mojo", {6043178, 43178, 360711, 360712, 360713, 360714, 360715, 360716, 360717, 360718, 360719, 360720, 360721, 360722} },
{"Solid Platinum Band", {6043179, 43179, 360723, 360724, 360725, 360726, 360727, 360728, 360729, 360730, 360731, 360732, 360733, 360734} },
{"Lion's Head Ring", {6043180, 43180, 360735, 360736, 360737, 360738, 360739, 360740, 360741, 360742, 360743, 360744, 360745, 360746} },
{"Shoulders of the Northern Lights", {6043181, 43181, 360747, 360748, 360749, 360750, 360751, 360752, 360753, 360754, 360755, 360756, 360757, 360758} },
{"Cured Mammoth Hide Mantle", {6043182, 43182, 360759, 360760, 360761, 360762, 360763, 360764, 360765, 360766, 360767, 360768, 360769, 360770} },
{"Tundra Tracker's Shoulderguards", {6043183, 43183, 360771, 360772, 360773, 360774, 360775, 360776, 360777, 360778, 360779, 360780, 360781, 360782} },
{"Tundra Pauldrons", {6043184, 43184, 360783, 360784, 360785, 360786, 360787, 360788, 360789, 360790, 360791, 360792, 360793, 360794} },
{"Wand of Chilled Renewal", {6043185, 43185, 360795, 360796, 360797, 360798, 360799, 360800, 360801, 360802, 360803, 360804, 360805, 360806} },
{"Iceshrieker's Touch", {6043186, 43186, 360807, 360808, 360809, 360810, 360811, 360812, 360813, 360814, 360815, 360816, 360817, 360818} },
{"Weighted Throwing Axe", {6043187, 43187, 360819, 360820, 360821, 360822, 360823, 360824, 360825, 360826, 360827, 360828, 360829, 360830} },
{"Razor-sharp Ice Shards", {6043188, 43188, 360831, 360832, 360833, 360834, 360835, 360836, 360837, 360838, 360839, 360840, 360841, 360842} },
{"Amberglow Signet", {6043189, 43189, 360843, 360844, 360845, 360846, 360847, 360848, 360849, 360850, 360851, 360852, 360853, 360854} },
{"Iceforged Battle Ring", {6043190, 43190, 360855, 360856, 360857, 360858, 360859, 360860, 360861, 360862, 360863, 360864, 360865, 360866} },
{"Jagged Ice Band", {6043191, 43191, 360867, 360868, 360869, 360870, 360871, 360872, 360873, 360874, 360875, 360876, 360877, 360878} },
{"Ring of the Northern Winds", {6043192, 43192, 360879, 360880, 360881, 360882, 360883, 360884, 360885, 360886, 360887, 360888, 360889, 360890} },
{"Lightning Infused Mantle", {6043193, 43193, 360891, 360892, 360893, 360894, 360895, 360896, 360897, 360898, 360899, 360900, 360901, 360902} },
{"Charred Leather Shoulderguards", {6043194, 43194, 360903, 360904, 360905, 360906, 360907, 360908, 360909, 360910, 360911, 360912, 360913, 360914} },
{"Stormforged Shoulders", {6043195, 43195, 360915, 360916, 360917, 360918, 360919, 360920, 360921, 360922, 360923, 360924, 360925, 360926} },
{"Pauldrons of Extinguished Hatred", {6043197, 43197, 360927, 360928, 360929, 360930, 360931, 360932, 360933, 360934, 360935, 360936, 360937, 360938} },
{"Mantle of Volkhan", {6043198, 43198, 360939, 360940, 360941, 360942, 360943, 360944, 360945, 360946, 360947, 360948, 360949, 360950} },
{"Snowdrift Pantaloons", {6043200, 43200, 360951, 360952, 360953, 360954, 360955, 360956, 360957, 360958, 360959, 360960, 360961, 360962} },
{"Leggings of Heightened Renewal", {6043201, 43201, 360963, 360964, 360965, 360966, 360967, 360968, 360969, 360970, 360971, 360972, 360973, 360974} },
{"Jormungar Hide Legguards", {6043202, 43202, 360975, 360976, 360977, 360978, 360979, 360980, 360981, 360982, 360983, 360984, 360985, 360986} },
{"Iron Colossus Legplates", {6043203, 43203, 360987, 360988, 360989, 360990, 360991, 360992, 360993, 360994, 360995, 360996, 360997, 360998} },
{"Hyldnir Runeweaver's Garb", {361000, 43204, 360999, 361001, 361002, 361003, 361004, 361005, 361006, 361007, 361008, 361009, 361010, 361011} },
{"Hardened Tongue Tunic", {6043207, 43207, 361012, 361013, 361014, 361015, 361016, 361017, 361018, 361019, 361020, 361021, 361022, 361023} },
{"Lightningbringer's Hauberk", {6043208, 43208, 361024, 361025, 361026, 361027, 361028, 361029, 361030, 361031, 361032, 361033, 361034, 361035} },
{"Breastplate of Jagged Stone", {6043209, 43209, 361036, 361037, 361038, 361039, 361040, 361041, 361042, 361043, 361044, 361045, 361046, 361047} },
{"Gloves of the Servant", {6043210, 43210, 361048, 361049, 361050, 361051, 361052, 361053, 361054, 361055, 361056, 361057, 361058, 361059} },
{"Rough Climber's Grips", {6043211, 43211, 361060, 361061, 361062, 361063, 361064, 361065, 361066, 361067, 361068, 361069, 361070, 361071} },
{"Gauntlets of the Windreacher", {6043212, 43212, 361072, 361073, 361074, 361075, 361076, 361077, 361078, 361079, 361080, 361081, 361082, 361083} },
{"Gauntlets of Vigilance", {6043213, 43213, 361084, 361085, 361086, 361087, 361088, 361089, 361090, 361091, 361092, 361093, 361094, 361095} },
{"Crystal Citrine Necklace", {361097, 43244, 361096, 361098, 361099, 361100, 361101, 361102, 361103, 361104, 361105, 361106, 361107, 361108} },
{"Crystal Chalcedony Amulet", {361110, 43245, 361109, 361111, 361112, 361113, 361114, 361115, 361116, 361117, 361118, 361119, 361120, 361121} },
{"Earthshadow Ring", {6043246, 43246, 361122, 361123, 361124, 361125, 361126, 361127, 361128, 361129, 361130, 361131, 361132, 361133} },
{"Jade Ring of Slaying", {6043247, 43247, 361134, 361135, 361136, 361137, 361138, 361139, 361140, 361141, 361142, 361143, 361144, 361145} },
{"Stoneguard Band", {361147, 43248, 361146, 361148, 361149, 361150, 361151, 361152, 361153, 361154, 361155, 361156, 361157, 361158} },
{"Shadowmight Ring", {361160, 43249, 361159, 361161, 361162, 361163, 361164, 361165, 361166, 361167, 361168, 361169, 361170, 361171} },
{"Ring of Earthen Might", {6043250, 43250, 361172, 361173, 361174, 361175, 361176, 361177, 361178, 361179, 361180, 361181, 361182, 361183} },
{"Ring of Scarlet Shadows", {6043251, 43251, 361184, 361185, 361186, 361187, 361188, 361189, 361190, 361191, 361192, 361193, 361194, 361195} },
{"Windfire Band", {6043252, 43252, 361196, 361197, 361198, 361199, 361200, 361201, 361202, 361203, 361204, 361205, 361206, 361207} },
{"Ring of Northern Tears", {6043253, 43253, 361208, 361209, 361210, 361211, 361212, 361213, 361214, 361215, 361216, 361217, 361218, 361219} },
{"Seafoam Gauntlets", {6043255, 43255, 361220, 361221, 361222, 361223, 361224, 361225, 361226, 361227, 361228, 361229, 361230, 361231} },
{"Jormscale Footpads", {6043256, 43256, 361232, 361233, 361234, 361235, 361236, 361237, 361238, 361239, 361240, 361241, 361242, 361243} },
{"Wildscale Breastplate", {6043257, 43257, 361244, 361245, 361246, 361247, 361248, 361249, 361250, 361251, 361252, 361253, 361254, 361255} },
{"Purehorn Spaulders", {6043258, 43258, 361256, 361257, 361258, 361259, 361260, 361261, 361262, 361263, 361264, 361265, 361266, 361267} },
{"Jedoga's Greatring", {6043277, 43277, 361389, 361390, 361391, 361392, 361393, 361394, 361395, 361396, 361397, 361398, 361399, 361400} },
{"Cloak of the Darkcaster", {6043278, 43278, 361401, 361402, 361403, 361404, 361405, 361406, 361407, 361408, 361409, 361410, 361411, 361412} },
{"Battlechest of the Twilight Cult", {6043279, 43279, 361413, 361414, 361415, 361416, 361417, 361418, 361419, 361420, 361421, 361422, 361423, 361424} },
{"Shroud of Akali", {6043305, 43305, 361521, 361522, 361523, 361524, 361525, 361526, 361527, 361528, 361529, 361530, 361531, 361532} },
{"Gal'darah's Signet", {6043306, 43306, 361533, 361534, 361535, 361536, 361537, 361538, 361539, 361540, 361541, 361542, 361543, 361544} },
{"Amulet of the Stampede", {6043309, 43309, 361545, 361546, 361547, 361548, 361549, 361550, 361551, 361552, 361553, 361554, 361555, 361556} },
{"Void Sentry Legplates", {6043353, 43353, 361605, 361606, 361607, 361608, 361609, 361610, 361611, 361612, 361613, 361614, 361615, 361616} },
{"Pendant of Shadow Beams", {6043358, 43358, 361617, 361618, 361619, 361620, 361621, 361622, 361623, 361624, 361625, 361626, 361627, 361628} },
{"Screeching Cape", {6043363, 43363, 361629, 361630, 361631, 361632, 361633, 361634, 361635, 361636, 361637, 361638, 361639, 361640} },
{"Trousers of the Arakkoa", {6043375, 43375, 361641, 361642, 361643, 361644, 361645, 361646, 361647, 361648, 361649, 361650, 361651, 361652} },
{"Band of Eyes", {6043382, 43382, 361653, 361654, 361655, 361656, 361657, 361658, 361659, 361660, 361661, 361662, 361663, 361664} },
{"Shoulderplates of the Beholder", {6043387, 43387, 361665, 361666, 361667, 361668, 361669, 361670, 361671, 361672, 361673, 361674, 361675, 361676} },
{"Fire Eater's Guide", {6043660, 43660, 362572, 362573, 362574, 362575, 362576, 362577, 362578, 362579, 362580, 362581, 362582, 362583} },
{"Book of Stars", {6043661, 43661, 362584, 362585, 362586, 362587, 362588, 362589, 362590, 362591, 362592, 362593, 362594, 362595} },
{"Stormbound Tome", {6043663, 43663, 362596, 362597, 362598, 362599, 362600, 362601, 362602, 362603, 362604, 362605, 362606, 362607} },
{"Manual of Clouds", {6043664, 43664, 362608, 362609, 362610, 362611, 362612, 362613, 362614, 362615, 362616, 362617, 362618, 362619} },
{"Hellfire Tome", {6043666, 43666, 362620, 362621, 362622, 362623, 362624, 362625, 362626, 362627, 362628, 362629, 362630, 362631} },
{"Book of Clever Tricks", {6043667, 43667, 362632, 362633, 362634, 362635, 362636, 362637, 362638, 362639, 362640, 362641, 362642, 362643} },
{"Touch of Light", {363771, 43828, 363770, 363772, 363773, 363774, 363775, 363776, 363777, 363778, 363779, 363780, 363781, 363782} },
{"Crusader's Locket", {363784, 43829, 363783, 363785, 363786, 363787, 363788, 363789, 363790, 363791, 363792, 363793, 363794, 363795} },
{"Cobalt's Shoulderguards", {363797, 43830, 363796, 363798, 363799, 363800, 363801, 363802, 363803, 363804, 363805, 363806, 363807, 363808} },
{"Enchanted Plate Waistguard", {363810, 43831, 363809, 363811, 363812, 363813, 363814, 363815, 363816, 363817, 363818, 363819, 363820, 363821} },
{"The Argent Resolve", {363823, 43832, 363822, 363824, 363825, 363826, 363827, 363828, 363829, 363830, 363831, 363832, 363833, 363834} },
{"Blade of Echoes", {363836, 43833, 363835, 363837, 363838, 363839, 363840, 363841, 363842, 363843, 363844, 363845, 363846, 363847} },
{"Staff of Redeemed Souls", {363849, 43834, 363848, 363850, 363851, 363852, 363853, 363854, 363855, 363856, 363857, 363858, 363859, 363860} },
{"Hand of Gustav", {363862, 43835, 363861, 363863, 363864, 363865, 363866, 363867, 363868, 363869, 363870, 363871, 363872, 363873} },
{"Thorny Rose Brooch", {363875, 43836, 363874, 363876, 363877, 363878, 363879, 363880, 363881, 363882, 363883, 363884, 363885, 363886} },
{"Softly Glowing Orb", {363888, 43837, 363887, 363889, 363890, 363891, 363892, 363893, 363894, 363895, 363896, 363897, 363898, 363899} },
{"Chuchu's Tiny Box of Horrors", {363901, 43838, 363900, 363902, 363903, 363904, 363905, 363906, 363907, 363908, 363909, 363910, 363911, 363912} },
{"Leiah's Footpads", {363914, 43839, 363913, 363915, 363916, 363917, 363918, 363919, 363920, 363921, 363922, 363923, 363924, 363925} },
{"Sixen's Skullcap", {363927, 43840, 363926, 363928, 363929, 363930, 363931, 363932, 363933, 363934, 363935, 363936, 363937, 363938} },
{"Argent Girdle", {363940, 43841, 363939, 363941, 363942, 363943, 363944, 363945, 363946, 363947, 363948, 363949, 363950, 363951} },
{"Jayde's Reinforced Handguards", {363953, 43842, 363952, 363954, 363955, 363956, 363957, 363958, 363959, 363960, 363961, 363962, 363963, 363964} },
{"Iron Coffin Lid", {363966, 43843, 363965, 363967, 363968, 363969, 363970, 363971, 363972, 363973, 363974, 363975, 363976, 363977} },
{"Ebon Pauldrons", {363979, 43844, 363978, 363980, 363981, 363982, 363983, 363984, 363985, 363986, 363987, 363988, 363989, 363990} },
{"Legplates of Dominion", {363992, 43845, 363991, 363993, 363994, 363995, 363996, 363997, 363998, 363999, 364000, 364001, 364002, 364003} },
{"Helmet of the Dedicated", {364005, 43846, 364004, 364006, 364007, 364008, 364009, 364010, 364011, 364012, 364013, 364014, 364015, 364016} },
{"Demolisher's Grips", {364018, 43847, 364017, 364019, 364020, 364021, 364022, 364023, 364024, 364025, 364026, 364027, 364028, 364029} },
{"Chain of the Sovereign", {364044, 43849, 364043, 364045, 364046, 364047, 364048, 364049, 364050, 364051, 364052, 364053, 364054, 364055} },
{"Adepts Wristwraps", {364057, 43855, 364056, 364058, 364059, 364060, 364061, 364062, 364063, 364064, 364065, 364066, 364067, 364068} },
{"Sigrid's Mittens", {364070, 43856, 364069, 364071, 364072, 364073, 364074, 364075, 364076, 364077, 364078, 364079, 364080, 364081} },
{"Duke Lankral's Velvet Slippers", {364083, 43857, 364082, 364084, 364085, 364086, 364087, 364088, 364089, 364090, 364091, 364092, 364093, 364094} },
{"Vrykul Crusher", {364096, 43858, 364095, 364097, 364098, 364099, 364100, 364101, 364102, 364103, 364104, 364105, 364106, 364107} },
{"Shadow Vault Cowl", {364109, 43859, 364108, 364110, 364111, 364112, 364113, 364114, 364115, 364116, 364117, 364118, 364119, 364120} },
{"Brilliant Saronite Belt", {6043860, 43860, 364121, 364122, 364123, 364124, 364125, 364126, 364127, 364128, 364129, 364130, 364131, 364132} },
{"Bone Witch's Drape", {364134, 43861, 364133, 364135, 364136, 364137, 364138, 364139, 364140, 364141, 364142, 364143, 364144, 364145} },
{"Mantle of the Underhalls", {364147, 43862, 364146, 364148, 364149, 364150, 364151, 364152, 364153, 364154, 364155, 364156, 364157, 364158} },
{"Pantaloons of the Water Magi", {364160, 43863, 364159, 364161, 364162, 364163, 364164, 364165, 364166, 364167, 364168, 364169, 364170, 364171} },
{"Brilliant Saronite Bracers", {6043864, 43864, 364172, 364173, 364174, 364175, 364176, 364177, 364178, 364179, 364180, 364181, 364182, 364183} },
{"Brilliant Saronite Pauldrons", {6043865, 43865, 364184, 364185, 364186, 364187, 364188, 364189, 364190, 364191, 364192, 364193, 364194, 364195} },
{"Lithe Stalker's Cord", {364197, 43866, 364196, 364198, 364199, 364200, 364201, 364202, 364203, 364204, 364205, 364206, 364207, 364208} },
{"Brilliant Saronite Helm", {6043870, 43870, 364209, 364210, 364211, 364212, 364213, 364214, 364215, 364216, 364217, 364218, 364219, 364220} },
{"Saronite Spellblade", {6043871, 43871, 364221, 364222, 364223, 364224, 364225, 364226, 364227, 364228, 364229, 364230, 364231, 364232} },
{"Weeping Mantle", {364234, 43872, 364233, 364235, 364236, 364237, 364238, 364239, 364240, 364241, 364242, 364243, 364244, 364245} },
{"Frail Bone Wand", {364247, 43873, 364246, 364248, 364249, 364250, 364251, 364252, 364253, 364254, 364255, 364256, 364257, 364258} },
{"Lady Nightswood's Engagement Ring", {364260, 43874, 364259, 364261, 364262, 364263, 364264, 364265, 364266, 364267, 364268, 364269, 364270, 364271} },
{"Axe of the Cunning", {364273, 43875, 364272, 364274, 364275, 364276, 364277, 364278, 364279, 364280, 364281, 364282, 364283, 364284} },
{"Blood-forged Circle", {364286, 43877, 364285, 364287, 364288, 364289, 364290, 364291, 364292, 364293, 364294, 364295, 364296, 364297} },
{"Gryphon Rider's Bracers", {364312, 43879, 364311, 364313, 364314, 364315, 364316, 364317, 364318, 364319, 364320, 364321, 364322, 364323} },
{"Fair Touch of the Crusader", {364325, 43880, 364324, 364326, 364327, 364328, 364329, 364330, 364331, 364332, 364333, 364334, 364335, 364336} },
{"Demolisher Driver's Dustcoat", {364338, 43881, 364337, 364339, 364340, 364341, 364342, 364343, 364344, 364345, 364346, 364347, 364348, 364349} },
{"Cultist's Cowl", {364351, 43882, 364350, 364352, 364353, 364354, 364355, 364356, 364357, 364358, 364359, 364360, 364361, 364362} },
{"Arete's Command", {364364, 43883, 364363, 364365, 364366, 364367, 364368, 364369, 364370, 364371, 364372, 364373, 364374, 364375} },
{"Amulet of the Malefic Necromancer", {364377, 43884, 364376, 364378, 364379, 364380, 364381, 364382, 364383, 364384, 364385, 364386, 364387, 364388} },
{"Scourgehammer", {364390, 43885, 364389, 364391, 364392, 364393, 364394, 364395, 364396, 364397, 364398, 364399, 364400, 364401} },
{"Blunt Brainwasher", {364403, 43888, 364402, 364404, 364405, 364406, 364407, 364408, 364409, 364410, 364411, 364412, 364413, 364414} },
{"Hulking Abomination Hide Cloak", {364416, 43889, 364415, 364417, 364418, 364419, 364420, 364421, 364422, 364423, 364424, 364425, 364426, 364427} },
{"Interrogator's Flaming Knuckles", {364429, 43890, 364428, 364430, 364431, 364432, 364433, 364434, 364435, 364436, 364437, 364438, 364439, 364440} },
{"Jhaeqon's Tunic", {364442, 43891, 364441, 364443, 364444, 364445, 364446, 364447, 364448, 364449, 364450, 364451, 364452, 364453} },
{"Refurbished Demolisher Gear Belt", {364455, 43892, 364454, 364456, 364457, 364458, 364459, 364460, 364461, 364462, 364463, 364464, 364465, 364466} },
{"Olakin's Enchanted Torch", {364468, 43893, 364467, 364469, 364470, 364471, 364472, 364473, 364474, 364475, 364476, 364477, 364478, 364479} },
{"Gryphon Hide Moccasins", {364481, 43894, 364480, 364482, 364483, 364484, 364485, 364486, 364487, 364488, 364489, 364490, 364491, 364492} },
{"Grotesque Butcher's Pants", {364507, 43896, 364506, 364508, 364509, 364510, 364511, 364512, 364513, 364514, 364515, 364516, 364517, 364518} },
{"Frost Climber's Hatchet", {364520, 43897, 364519, 364521, 364522, 364523, 364524, 364525, 364526, 364527, 364528, 364529, 364530, 364531} },
{"Icy Quick Edge", {364533, 43898, 364532, 364534, 364535, 364536, 364537, 364538, 364539, 364540, 364541, 364542, 364543, 364544} },
{"Sapph's Cleaver", {364546, 43899, 364545, 364547, 364548, 364549, 364550, 364551, 364552, 364553, 364554, 364555, 364556, 364557} },
{"Fleshwerk Throwing Glaive", {364559, 43900, 364558, 364560, 364561, 364562, 364563, 364564, 364565, 364566, 364567, 364568, 364569, 364570} },
{"Ring of the Fallen Shadow Adept", {364572, 43903, 364571, 364573, 364574, 364575, 364576, 364577, 364578, 364579, 364580, 364581, 364582, 364583} },
{"Discarded Slaughterhouse Gloves", {364585, 43904, 364584, 364586, 364587, 364588, 364589, 364590, 364591, 364592, 364593, 364594, 364595, 364596} },
{"Fur-lined Helm", {364598, 43905, 364597, 364599, 364600, 364601, 364602, 364603, 364604, 364605, 364606, 364607, 364608, 364609} },
{"Cunning Leather Tunic", {364611, 43906, 364610, 364612, 364613, 364614, 364615, 364616, 364617, 364618, 364619, 364620, 364621, 364622} },
{"Spear-Sisters Mantle", {364624, 43907, 364623, 364625, 364626, 364627, 364628, 364629, 364630, 364631, 364632, 364633, 364634, 364635} },
{"Boots of the Fallen Thane", {364637, 43908, 364636, 364638, 364639, 364640, 364641, 364642, 364643, 364644, 364645, 364646, 364647, 364648} },
{"Belt of Njorndar", {364650, 43909, 364649, 364651, 364652, 364653, 364654, 364655, 364656, 364657, 364658, 364659, 364660, 364661} },
{"Gloves of the Flayed", {364663, 43910, 364662, 364664, 364665, 364666, 364667, 364668, 364669, 364670, 364671, 364672, 364673, 364674} },
{"Vile's Poker", {364676, 43911, 364675, 364677, 364678, 364679, 364680, 364681, 364682, 364683, 364684, 364685, 364686, 364687} },
{"Vest of Jotunheim", {364689, 43912, 364688, 364690, 364691, 364692, 364693, 364694, 364695, 364696, 364697, 364698, 364699, 364700} },
{"Efrem's Bracers", {364702, 43913, 364701, 364703, 364704, 364705, 364706, 364707, 364708, 364709, 364710, 364711, 364712, 364713} },
{"Girdle of Reprieve", {364715, 43914, 364714, 364716, 364717, 364718, 364719, 364720, 364721, 364722, 364723, 364724, 364725, 364726} },
{"Pilot's Knife", {364728, 43915, 364727, 364729, 364730, 364731, 364732, 364733, 364734, 364735, 364736, 364737, 364738, 364739} },
{"Mace of the Final Command", {364741, 43916, 364740, 364742, 364743, 364744, 364745, 364746, 364747, 364748, 364749, 364750, 364751, 364752} },
{"Ritualist's Bloodletter", {364754, 43917, 364753, 364755, 364756, 364757, 364758, 364759, 364760, 364761, 364762, 364763, 364764, 364765} },
{"Shooter's Glory", {364767, 43918, 364766, 364768, 364769, 364770, 364771, 364772, 364773, 364774, 364775, 364776, 364777, 364778} },
{"Curved Assassin's Dagger", {364780, 43919, 364779, 364781, 364782, 364783, 364784, 364785, 364786, 364787, 364788, 364789, 364790, 364791} },
{"Growler's Intimidation", {364793, 43920, 364792, 364794, 364795, 364796, 364797, 364798, 364799, 364800, 364801, 364802, 364803, 364804} },
{"Staff of Interrogation", {364806, 43921, 364805, 364807, 364808, 364809, 364810, 364811, 364812, 364813, 364814, 364815, 364816, 364817} },
{"Bloodblade", {364832, 43923, 364831, 364833, 364834, 364835, 364836, 364837, 364838, 364839, 364840, 364841, 364842, 364843} },
{"Illskar's Greatcloak", {364845, 43924, 364844, 364846, 364847, 364848, 364849, 364850, 364851, 364852, 364853, 364854, 364855, 364856} },
{"Shadow Vault Shawl", {364858, 43925, 364857, 364859, 364860, 364861, 364862, 364863, 364864, 364865, 364866, 364867, 364868, 364869} },
{"Signet of Baron Sliver", {364871, 43926, 364870, 364872, 364873, 364874, 364875, 364876, 364877, 364878, 364879, 364880, 364881, 364882} },
{"Wrought-Iron Staff", {364884, 43927, 364883, 364885, 364886, 364887, 364888, 364889, 364890, 364891, 364892, 364893, 364894, 364895} },
{"Bow of Bone and Sinew", {364897, 43928, 364896, 364898, 364899, 364900, 364901, 364902, 364903, 364904, 364905, 364906, 364907, 364908} },
{"Vile's Uglystick", {364910, 43929, 364909, 364911, 364912, 364913, 364914, 364915, 364916, 364917, 364918, 364919, 364920, 364921} },
{"Accelerator Stompers", {364923, 43930, 364922, 364924, 364925, 364926, 364927, 364928, 364929, 364930, 364931, 364932, 364933, 364934} },
{"Savryn's Muddy Boots", {364936, 43931, 364935, 364937, 364938, 364939, 364940, 364941, 364942, 364943, 364944, 364945, 364946, 364947} },
{"Drivetrain Chain Leggings", {364949, 43932, 364948, 364950, 364951, 364952, 364953, 364954, 364955, 364956, 364957, 364958, 364959, 364960} },
{"Gauntlets of Urgency", {364962, 43933, 364961, 364963, 364964, 364965, 364966, 364967, 364968, 364969, 364970, 364971, 364972, 364973} },
{"Enchanted Bracelets of the Scout", {364975, 43934, 364974, 364976, 364977, 364978, 364979, 364980, 364981, 364982, 364983, 364984, 364985, 364986} },
{"Links of the Battlemender", {364988, 43935, 364987, 364989, 364990, 364991, 364992, 364993, 364994, 364995, 364996, 364997, 364998, 364999} },
{"Blood-stalker's Cover", {365014, 43937, 365013, 365015, 365016, 365017, 365018, 365019, 365020, 365021, 365022, 365023, 365024, 365025} },
{"Breastplate of Splattered Blood", {365040, 43939, 365039, 365041, 365042, 365043, 365044, 365045, 365046, 365047, 365048, 365049, 365050, 365051} },
{"Plated Legs of the Unholy", {365053, 43940, 365052, 365054, 365055, 365056, 365057, 365058, 365059, 365060, 365061, 365062, 365063, 365064} },
{"Grimy Saronite Pauldrons", {365066, 43941, 365065, 365067, 365068, 365069, 365070, 365071, 365072, 365073, 365074, 365075, 365076, 365077} },
{"Jotunheim Shackles", {365079, 43942, 365078, 365080, 365081, 365082, 365083, 365084, 365085, 365086, 365087, 365088, 365089, 365090} },
{"Gauntlets of the Holy Gladiator", {365092, 43943, 365091, 365093, 365094, 365095, 365096, 365097, 365098, 365099, 365100, 365101, 365102, 365103} },
{"Rings of Nergeld", {365105, 43944, 365104, 365106, 365107, 365108, 365109, 365110, 365111, 365112, 365113, 365114, 365115, 365116} },
{"Blackened Breastplate of the Vault", {365118, 43945, 365117, 365119, 365120, 365121, 365122, 365123, 365124, 365125, 365126, 365127, 365128, 365129} },
{"Chestplate of the Glacial Crusader", {365131, 43946, 365130, 365132, 365133, 365134, 365135, 365136, 365137, 365138, 365139, 365140, 365141, 365142} },
{"Stability Girdle", {365144, 43947, 365143, 365145, 365146, 365147, 365148, 365149, 365150, 365151, 365152, 365153, 365154, 365155} },
{"Blood-encrusted Boots", {365157, 43948, 365156, 365158, 365159, 365160, 365161, 365162, 365163, 365164, 365165, 365166, 365167, 365168} },
{"Chain Gloves of the Quarry", {365254, 43976, 365253, 365255, 365256, 365257, 365258, 365259, 365260, 365261, 365262, 365263, 365264, 365265} },
{"Links of the Sleep-Watcher", {365267, 43977, 365266, 365268, 365269, 365270, 365271, 365272, 365273, 365274, 365275, 365276, 365277, 365278} },
{"Circlet of Suffering", {365280, 43978, 365279, 365281, 365282, 365283, 365284, 365285, 365286, 365287, 365288, 365289, 365290, 365291} },
{"Glaciel Ranger's Leggings", {365293, 43979, 365292, 365294, 365295, 365296, 365297, 365298, 365299, 365300, 365301, 365302, 365303, 365304} },
{"Thane's Restraints", {365306, 43980, 365305, 365307, 365308, 365309, 365310, 365311, 365312, 365313, 365314, 365315, 365316, 365317} },
{"Gauntlets of Onu'zun", {365319, 43981, 365318, 365320, 365321, 365322, 365323, 365324, 365325, 365326, 365327, 365328, 365329, 365330} },
{"Architect's Spaulders", {365332, 43982, 365331, 365333, 365334, 365335, 365336, 365337, 365338, 365339, 365340, 365341, 365342, 365343} },
{"Cannoneer's Fuselighter", {6044013, 44013, 365563, 365564, 365565, 365566, 365567, 365568, 365569, 365570, 365571, 365572, 365573, 365574} },
{"Fezzik's Pocketwatch", {6044014, 44014, 365575, 365576, 365577, 365578, 365579, 365580, 365581, 365582, 365583, 365584, 365585, 365586} },
{"Cannoneer's Morale", {6044015, 44015, 365587, 365588, 365589, 365590, 365591, 365592, 365593, 365594, 365595, 365596, 365597, 365598} },
{"Wristguard of the Bone Witch", {6044016, 44016, 365599, 365600, 365601, 365602, 365603, 365604, 365605, 365606, 365607, 365608, 365609, 365610} },
{"Emeline's Locket", {6044017, 44017, 365611, 365612, 365613, 365614, 365615, 365616, 365617, 365618, 365619, 365620, 365621, 365622} },
{"Bridenbrad's Sash", {6044018, 44018, 365623, 365624, 365625, 365626, 365627, 365628, 365629, 365630, 365631, 365632, 365633, 365634} },
{"The Argent Skullcap", {6044019, 44019, 365635, 365636, 365637, 365638, 365639, 365640, 365641, 365642, 365643, 365644, 365645, 365646} },
{"Bloodbane's Fall", {6044020, 44020, 365647, 365648, 365649, 365650, 365651, 365652, 365653, 365654, 365655, 365656, 365657, 365658} },
{"The Darkspeaker's Footpads", {6044021, 44021, 365659, 365660, 365661, 365662, 365663, 365664, 365665, 365666, 365667, 365668, 365669, 365670} },
{"The Witching Grimoire", {6044022, 44022, 365671, 365672, 365673, 365674, 365675, 365676, 365677, 365678, 365679, 365680, 365681, 365682} },
{"Bonecaster's Endgame", {6044023, 44023, 365683, 365684, 365685, 365686, 365687, 365688, 365689, 365690, 365691, 365692, 365693, 365694} },
{"The Darkspeaker's Treads", {6044024, 44024, 365695, 365696, 365697, 365698, 365699, 365700, 365701, 365702, 365703, 365704, 365705, 365706} },
{"Bloodbane Cloak", {6044025, 44025, 365707, 365708, 365709, 365710, 365711, 365712, 365713, 365714, 365715, 365716, 365717, 365718} },
{"Bloodbane's Resolve", {6044026, 44026, 365719, 365720, 365721, 365722, 365723, 365724, 365725, 365726, 365727, 365728, 365729, 365730} },
{"Bloodbane Shroud", {6044027, 44027, 365731, 365732, 365733, 365734, 365735, 365736, 365737, 365738, 365739, 365740, 365741, 365742} },
{"Vengance Shiv", {6044028, 44028, 365743, 365744, 365745, 365746, 365747, 365748, 365749, 365750, 365751, 365752, 365753, 365754} },
{"Quickblade of Cold Return", {6044029, 44029, 365755, 365756, 365757, 365758, 365759, 365760, 365761, 365762, 365763, 365764, 365765, 365766} },
{"The Darkspeaker's Sabatons", {6044030, 44030, 365767, 365768, 365769, 365770, 365771, 365772, 365773, 365774, 365775, 365776, 365777, 365778} },
{"The Darkspeaker's Iron Walkers", {6044031, 44031, 365779, 365780, 365781, 365782, 365783, 365784, 365785, 365786, 365787, 365788, 365789, 365790} },
{"Bulwark of Redemption", {6044032, 44032, 365791, 365792, 365793, 365794, 365795, 365796, 365797, 365798, 365799, 365800, 365801, 365802} },
{"The Severed Noose of Westwind", {6044033, 44033, 365803, 365804, 365805, 365806, 365807, 365808, 365809, 365810, 365811, 365812, 365813, 365814} },
{"Amulet of the Crusade", {6044034, 44034, 365815, 365816, 365817, 365818, 365819, 365820, 365821, 365822, 365823, 365824, 365825, 365826} },
{"Reinforced Titanium Neckguard", {6044035, 44035, 365827, 365828, 365829, 365830, 365831, 365832, 365833, 365834, 365835, 365836, 365837, 365838} },
{"Njorndar Furywraps", {6044036, 44036, 365839, 365840, 365841, 365842, 365843, 365844, 365845, 365846, 365847, 365848, 365849, 365850} },
{"Iskalder's Fate", {6044037, 44037, 365851, 365852, 365853, 365854, 365855, 365856, 365857, 365858, 365859, 365860, 365861, 365862} },
{"Battlescar Spirebands", {6044038, 44038, 365863, 365864, 365865, 365866, 365867, 365868, 365869, 365870, 365871, 365872, 365873, 365874} },
{"Signet of Bridenbrad", {6044039, 44039, 365875, 365876, 365877, 365878, 365879, 365880, 365881, 365882, 365883, 365884, 365885, 365886} },
{"The Crusader's Resolution", {6044040, 44040, 365887, 365888, 365889, 365890, 365891, 365892, 365893, 365894, 365895, 365896, 365897, 365898} },
{"Belt of the Never-Forgotten", {6044041, 44041, 365899, 365900, 365901, 365902, 365903, 365904, 365905, 365906, 365907, 365908, 365909, 365910} },
{"Chained Belt of Remembrance", {6044042, 44042, 365911, 365912, 365913, 365914, 365915, 365916, 365917, 365918, 365919, 365920, 365921, 365922} },
{"Girdle of Eternal Memory", {6044043, 44043, 365923, 365924, 365925, 365926, 365927, 365928, 365929, 365930, 365931, 365932, 365933, 365934} },
{"Tirion's Headwrap", {6044044, 44044, 365935, 365936, 365937, 365938, 365939, 365940, 365941, 365942, 365943, 365944, 365945, 365946} },
{"Crusader's Coif", {6044045, 44045, 365947, 365948, 365949, 365950, 365951, 365952, 365953, 365954, 365955, 365956, 365957, 365958} },
{"The Argent Crown", {6044046, 44046, 365959, 365960, 365961, 365962, 365963, 365964, 365965, 365966, 365967, 365968, 365969, 365970} },
{"Traditional Flensing Knife", {6044051, 44051, 365983, 365984, 365985, 365986, 365987, 365988, 365989, 365990, 365991, 365992, 365993, 365994} },
{"Totemic Purification Rod", {6044052, 44052, 365995, 365996, 365997, 365998, 365999, 366000, 366001, 366002, 366003, 366004, 366005, 366006} },
{"Whale-Stick Harpoon", {6044053, 44053, 366007, 366008, 366009, 366010, 366011, 366012, 366013, 366014, 366015, 366016, 366017, 366018} },
{"Whale-Skin Breastplate", {6044054, 44054, 366019, 366020, 366021, 366022, 366023, 366024, 366025, 366026, 366027, 366028, 366029, 366030} },
{"Whale-Skin Vest", {6044055, 44055, 366031, 366032, 366033, 366034, 366035, 366036, 366037, 366038, 366039, 366040, 366041, 366042} },
{"Ivory-Reinforced Chestguard", {6044057, 44057, 366043, 366044, 366045, 366046, 366047, 366048, 366049, 366050, 366051, 366052, 366053, 366054} },
{"Whalebone Carapace", {6044058, 44058, 366055, 366056, 366057, 366058, 366059, 366060, 366061, 366062, 366063, 366064, 366065, 366066} },
{"Cuttlefish Scale Breastplate", {6044059, 44059, 366067, 366068, 366069, 366070, 366071, 366072, 366073, 366074, 366075, 366076, 366077, 366078} },
{"Cuttlefish Tooth Ringmail", {6044060, 44060, 366079, 366080, 366081, 366082, 366083, 366084, 366085, 366086, 366087, 366088, 366089, 366090} },
{"Pigment-Stained Robes", {6044061, 44061, 366091, 366092, 366093, 366094, 366095, 366096, 366097, 366098, 366099, 366100, 366101, 366102} },
{"Turtle-Minders Robe", {6044062, 44062, 366103, 366104, 366105, 366106, 366107, 366108, 366109, 366110, 366111, 366112, 366113, 366114} },
{"Fishy Cinch", {6044104, 44104, 366333, 366334, 366335, 366336, 366337, 366338, 366339, 366340, 366341, 366342, 366343, 366344} },
{"Glitterscale Wrap", {6044106, 44106, 366358, 366359, 366360, 366361, 366362, 366363, 366364, 366365, 366366, 366367, 366368, 366369} },
{"Shinygem Rod", {6044108, 44108, 366383, 366384, 366385, 366386, 366387, 366388, 366389, 366390, 366391, 366392, 366393, 366394} },
{"Toothslice Helm", {6044109, 44109, 366395, 366396, 366397, 366398, 366399, 366400, 366401, 366402, 366403, 366404, 366405, 366406} },
{"Sharkjaw Cap", {6044110, 44110, 366407, 366408, 366409, 366410, 366411, 366412, 366413, 366414, 366415, 366416, 366417, 366418} },
{"Gold Star Spaulders", {6044111, 44111, 366419, 366420, 366421, 366422, 366423, 366424, 366425, 366426, 366427, 366428, 366429, 366430} },
{"Glimmershell Shoulder Protectors", {6044112, 44112, 366431, 366432, 366433, 366434, 366435, 366436, 366437, 366438, 366439, 366440, 366441, 366442} },
{"Muddied Crimson Gloves", {6044116, 44116, 366443, 366444, 366445, 366446, 366447, 366448, 366449, 366450, 366451, 366452, 366453, 366454} },
{"Azure Strappy Pants", {6044117, 44117, 366455, 366456, 366457, 366458, 366459, 366460, 366461, 366462, 366463, 366464, 366465, 366466} },
{"Stolen Vrykul Harpoon", {6044118, 44118, 366467, 366468, 366469, 366470, 366471, 366472, 366473, 366474, 366475, 366476, 366477, 366478} },
{"Giant-Sized Gauntlets", {6044120, 44120, 366479, 366480, 366481, 366482, 366483, 366484, 366485, 366486, 366487, 366488, 366489, 366490} },
{"Sparkly Shiny Gloves", {6044121, 44121, 366491, 366492, 366493, 366494, 366495, 366496, 366497, 366498, 366499, 366500, 366501, 366502} },
{"Scavenged Feathery Leggings", {6044122, 44122, 366503, 366504, 366505, 366506, 366507, 366508, 366509, 366510, 366511, 366512, 366513, 366514} },
{"Discarded Titanium Legplates", {6044123, 44123, 366515, 366516, 366517, 366518, 366519, 366520, 366521, 366522, 366523, 366524, 366525, 366526} },
{"Lightblade Rivener", {6044166, 44166, 366527, 366528, 366529, 366530, 366531, 366532, 366533, 366534, 366535, 366536, 366537, 366538} },
{"Shroud of Dedicated Research", {6044167, 44167, 366539, 366540, 366541, 366542, 366543, 366544, 366545, 366546, 366547, 366548, 366549, 366550} },
{"Helm of the Majestic Stag", {6044170, 44170, 366551, 366552, 366553, 366554, 366555, 366556, 366557, 366558, 366559, 366560, 366561, 366562} },
{"Fang of Truth", {6044187, 44187, 366671, 366672, 366673, 366674, 366675, 366676, 366677, 366678, 366679, 366680, 366681, 366682} },
{"Cloak of Peaceful Resolutions", {6044188, 44188, 366683, 366684, 366685, 366686, 366687, 366688, 366689, 366690, 366691, 366692, 366693, 366694} },
{"Giant Ring Belt", {6044189, 44189, 366695, 366696, 366697, 366698, 366699, 366700, 366701, 366702, 366703, 366704, 366705, 366706} },
{"Spaulders of Frozen Knives", {6044190, 44190, 366707, 366708, 366709, 366710, 366711, 366712, 366713, 366714, 366715, 366716, 366717, 366718} },
{"Sash of the Wizened Wyrm", {6044196, 44196, 366779, 366780, 366781, 366782, 366783, 366784, 366785, 366786, 366787, 366788, 366789, 366790} },
{"Bracers of Accorded Courtesy", {6044197, 44197, 366791, 366792, 366793, 366794, 366795, 366796, 366797, 366798, 366799, 366800, 366801, 366802} },
{"Frostwoven Gloves", {366912, 44211, 366911, 366913, 366914, 366915, 366916, 366917, 366918, 366919, 366920, 366921, 366922, 366923} },
{"Purifying Torch", {6044214, 44214, 366937, 366938, 366939, 366940, 366941, 366942, 366943, 366944, 366945, 366946, 366947, 366948} },
{"Cloak of Holy Extermination", {6044216, 44216, 366962, 366963, 366964, 366965, 366966, 366967, 366968, 366969, 366970, 366971, 366972, 366973} },
{"Darkmoon Dirk", {6044217, 44217, 366974, 366975, 366976, 366977, 366978, 366979, 366980, 366981, 366982, 366983, 366984, 366985} },
{"Darkmoon Executioner", {6044218, 44218, 366986, 366987, 366988, 366989, 366990, 366991, 366992, 366993, 366994, 366995, 366996, 366997} },
{"Darkmoon Magestaff", {6044219, 44219, 366998, 366999, 367000, 367001, 367002, 367003, 367004, 367005, 367006, 367007, 367008, 367009} },
{"Standard Issue Legguards", {6044239, 44239, 367010, 367011, 367012, 367013, 367014, 367015, 367016, 367017, 367018, 367019, 367020, 367021} },
{"Special Issue Legplates", {6044240, 44240, 367022, 367023, 367024, 367025, 367026, 367027, 367028, 367029, 367030, 367031, 367032, 367033} },
{"Unholy Persuader", {6044241, 44241, 367034, 367035, 367036, 367037, 367038, 367039, 367040, 367041, 367042, 367043, 367044, 367045} },
{"Dark Soldier Cape", {6044242, 44242, 367046, 367047, 367048, 367049, 367050, 367051, 367052, 367053, 367054, 367055, 367056, 367057} },
{"Toxin-Tempered Sabatons", {6044243, 44243, 367058, 367059, 367060, 367061, 367062, 367063, 367064, 367065, 367066, 367067, 367068, 367069} },
{"Ring of Temerity", {6044334, 44334, 367433, 367434, 367435, 367436, 367437, 367438, 367439, 367440, 367441, 367442, 367443, 367444} },
{"Band of Motivation", {6044335, 44335, 367445, 367446, 367447, 367448, 367449, 367450, 367451, 367452, 367453, 367454, 367455, 367456} },
{"Flourishing Band", {6044336, 44336, 367457, 367458, 367459, 367460, 367461, 367462, 367463, 367464, 367465, 367466, 367467, 367468} },
{"Staunch Signet", {6044337, 44337, 367469, 367470, 367471, 367472, 367473, 367474, 367475, 367476, 367477, 367478, 367479, 367480} },
{"Cuffs of Gratitude", {6044338, 44338, 367481, 367482, 367483, 367484, 367485, 367486, 367487, 367488, 367489, 367490, 367491, 367492} },
{"Soaring Wristwraps", {6044339, 44339, 367493, 367494, 367495, 367496, 367497, 367498, 367499, 367500, 367501, 367502, 367503, 367504} },
{"Bindings of Raelorasz", {6044340, 44340, 367505, 367506, 367507, 367508, 367509, 367510, 367511, 367512, 367513, 367514, 367515, 367516} },
{"Bracers of Reverence", {6044341, 44341, 367517, 367518, 367519, 367520, 367521, 367522, 367523, 367524, 367525, 367526, 367527, 367528} },
{"Tattooed Deerskin Leggings", {6044342, 44342, 367529, 367530, 367531, 367532, 367533, 367534, 367535, 367536, 367537, 367538, 367539, 367540} },
{"Conferred Pantaloons", {6044343, 44343, 367541, 367542, 367543, 367544, 367545, 367546, 367547, 367548, 367549, 367550, 367551, 367552} },
{"Labyrinthine Legguards", {6044344, 44344, 367553, 367554, 367555, 367556, 367557, 367558, 367559, 367560, 367561, 367562, 367563, 367564} },
{"Dalaran Warden's Legplates", {6044345, 44345, 367565, 367566, 367567, 367568, 367569, 367570, 367571, 367572, 367573, 367574, 367575, 367576} },
{"Warchief's Leggings of Wisdom", {6044346, 44346, 367577, 367578, 367579, 367580, 367581, 367582, 367583, 367584, 367585, 367586, 367587, 367588} },
{"Warchief's Legguards of Heroism", {6044347, 44347, 367589, 367590, 367591, 367592, 367593, 367594, 367595, 367596, 367597, 367598, 367599, 367600} },
{"Warchief's Leggings of Valor", {6044348, 44348, 367601, 367602, 367603, 367604, 367605, 367606, 367607, 367608, 367609, 367610, 367611, 367612} },
{"Warchief's Legplates of Carnage", {6044349, 44349, 367613, 367614, 367615, 367616, 367617, 367618, 367619, 367620, 367621, 367622, 367623, 367624} },
{"Mantle of Thwarted Evil", {6044350, 44350, 367625, 367626, 367627, 367628, 367629, 367630, 367631, 367632, 367633, 367634, 367635, 367636} },
{"Shoulderpads of Abhorrence", {6044351, 44351, 367637, 367638, 367639, 367640, 367641, 367642, 367643, 367644, 367645, 367646, 367647, 367648} },
{"Shoulderplates of the Abolished", {6044352, 44352, 367649, 367650, 367651, 367652, 367653, 367654, 367655, 367656, 367657, 367658, 367659, 367660} },
{"Epaulets of the Faceless Ones", {6044353, 44353, 367661, 367662, 367663, 367664, 367665, 367666, 367667, 367668, 367669, 367670, 367671, 367672} },
{"Assault Hauberk", {6044354, 44354, 367673, 367674, 367675, 367676, 367677, 367678, 367679, 367680, 367681, 367682, 367683, 367684} },
{"Incursion Vestments", {6044355, 44355, 367685, 367686, 367687, 367688, 367689, 367690, 367691, 367692, 367693, 367694, 367695, 367696} },
{"Vest of the Assailant", {6044356, 44356, 367697, 367698, 367699, 367700, 367701, 367702, 367703, 367704, 367705, 367706, 367707, 367708} },
{"Besieging Breastplate", {6044357, 44357, 367709, 367710, 367711, 367712, 367713, 367714, 367715, 367716, 367717, 367718, 367719, 367720} },
{"Kilix's Silk Slippers", {6044358, 44358, 367721, 367722, 367723, 367724, 367725, 367726, 367727, 367728, 367729, 367730, 367731, 367732} },
{"Don Soto's Boots", {6044359, 44359, 367733, 367734, 367735, 367736, 367737, 367738, 367739, 367740, 367741, 367742, 367743, 367744} },
{"Husk Shard Sabatons", {6044360, 44360, 367745, 367746, 367747, 367748, 367749, 367750, 367751, 367752, 367753, 367754, 367755, 367756} },
{"Greaves of the Traitor", {6044361, 44361, 367757, 367758, 367759, 367760, 367761, 367762, 367763, 367764, 367765, 367766, 367767, 367768} },
{"Expelling Gauntlets", {6044362, 44362, 367769, 367770, 367771, 367772, 367773, 367774, 367775, 367776, 367777, 367778, 367779, 367780} },
{"Purging Handguards", {6044363, 44363, 367781, 367782, 367783, 367784, 367785, 367786, 367787, 367788, 367789, 367790, 367791, 367792} },
{"Wraps of Quelled Bane", {6044364, 44364, 367793, 367794, 367795, 367796, 367797, 367798, 367799, 367800, 367801, 367802, 367803, 367804} },
{"Gloves of Banished Infliction", {6044365, 44365, 367805, 367806, 367807, 367808, 367809, 367810, 367811, 367812, 367813, 367814, 367815, 367816} },
{"Shameful Cuffs", {6044366, 44366, 367817, 367818, 367819, 367820, 367821, 367822, 367823, 367824, 367825, 367826, 367827, 367828} },
{"Scorned Bands", {6044367, 44367, 367829, 367830, 367831, 367832, 367833, 367834, 367835, 367836, 367837, 367838, 367839, 367840} },
{"Accused Wristguards", {6044368, 44368, 367841, 367842, 367843, 367844, 367845, 367846, 367847, 367848, 367849, 367850, 367851, 367852} },
{"Disavowed Bracers", {6044369, 44369, 367853, 367854, 367855, 367856, 367857, 367858, 367859, 367860, 367861, 367862, 367863, 367864} },
{"Mantle of the Intrepid Explorer", {6044370, 44370, 367865, 367866, 367867, 367868, 367869, 367870, 367871, 367872, 367873, 367874, 367875, 367876} },
{"Shoulderpads of the Adventurer", {6044371, 44371, 367877, 367878, 367879, 367880, 367881, 367882, 367883, 367884, 367885, 367886, 367887, 367888} },
{"Spaulders of Lost Secrets", {6044372, 44372, 367889, 367890, 367891, 367892, 367893, 367894, 367895, 367896, 367897, 367898, 367899, 367900} },
{"Pauldrons of Reconnaissance", {6044373, 44373, 367901, 367902, 367903, 367904, 367905, 367906, 367907, 367908, 367909, 367910, 367911, 367912} },
{"Amulet of the Tranquil Mind", {6044374, 44374, 367913, 367914, 367915, 367916, 367917, 367918, 367919, 367920, 367921, 367922, 367923, 367924} },
{"Razor-Blade Pendant", {6044375, 44375, 367925, 367926, 367927, 367928, 367929, 367930, 367931, 367932, 367933, 367934, 367935, 367936} },
{"Necklace of Fragmented Light", {6044376, 44376, 367937, 367938, 367939, 367940, 367941, 367942, 367943, 367944, 367945, 367946, 367947, 367948} },
{"Woven Steel Necklace", {6044377, 44377, 367949, 367950, 367951, 367952, 367953, 367954, 367955, 367956, 367957, 367958, 367959, 367960} },
{"Mantle of the Flesh Giant", {6044378, 44378, 367961, 367962, 367963, 367964, 367965, 367966, 367967, 367968, 367969, 367970, 367971, 367972} },
{"Shoulderpads of Fleshwerks", {6044379, 44379, 367973, 367974, 367975, 367976, 367977, 367978, 367979, 367980, 367981, 367982, 367983, 367984} },
{"Giant Champion's Spaulders", {6044380, 44380, 367985, 367986, 367987, 367988, 367989, 367990, 367991, 367992, 367993, 367994, 367995, 367996} },
{"Pauldrons of Morbidus", {6044381, 44381, 367997, 367998, 367999, 368000, 368001, 368002, 368003, 368004, 368005, 368006, 368007, 368008} },
{"Robes of Refrained Celebration", {6044382, 44382, 368009, 368010, 368011, 368012, 368013, 368014, 368015, 368016, 368017, 368018, 368019, 368020} },
{"Battleplate of Unheard Ovation", {6044383, 44383, 368021, 368022, 368023, 368024, 368025, 368026, 368027, 368028, 368029, 368030, 368031, 368032} },
{"Chestguard of Unwanted Success", {6044384, 44384, 368033, 368034, 368035, 368036, 368037, 368038, 368039, 368040, 368041, 368042, 368043, 368044} },
{"Tunic of the Unduly Victorious", {6044385, 44385, 368045, 368046, 368047, 368048, 368049, 368050, 368051, 368052, 368053, 368054, 368055, 368056} },
{"Newt-Eye Ring", {6044386, 44386, 368057, 368058, 368059, 368060, 368061, 368062, 368063, 368064, 368065, 368066, 368067, 368068} },
{"Bat-Wool Signet", {6044387, 44387, 368069, 368070, 368071, 368072, 368073, 368074, 368075, 368076, 368077, 368078, 368079, 368080} },
{"Frog-Toe Band", {6044388, 44388, 368081, 368082, 368083, 368084, 368085, 368086, 368087, 368088, 368089, 368090, 368091, 368092} },
{"Cast Steel Choker", {6044391, 44391, 368093, 368094, 368095, 368096, 368097, 368098, 368099, 368100, 368101, 368102, 368103, 368104} },
{"Necklace of Permeation", {6044392, 44392, 368105, 368106, 368107, 368108, 368109, 368110, 368111, 368112, 368113, 368114, 368115, 368116} },
{"Polished Zombie Exterminator", {6044393, 44393, 368117, 368118, 368119, 368120, 368121, 368122, 368123, 368124, 368125, 368126, 368127, 368128} },
{"Encrusted Zombie Finger", {6044394, 44394, 368129, 368130, 368131, 368132, 368133, 368134, 368135, 368136, 368137, 368138, 368139, 368140} },
{"Touch of Unlife", {6044395, 44395, 368141, 368142, 368143, 368144, 368145, 368146, 368147, 368148, 368149, 368150, 368151, 368152} },
{"Gloves of the Time Guardian", {6044396, 44396, 368153, 368154, 368155, 368156, 368157, 368158, 368159, 368160, 368161, 368162, 368163, 368164} },
{"Handwraps of Preserved History", {6044397, 44397, 368165, 368166, 368167, 368168, 368169, 368170, 368171, 368172, 368173, 368174, 368175, 368176} },
{"Grips of Chronological Events", {6044398, 44398, 368177, 368178, 368179, 368180, 368181, 368182, 368183, 368184, 368185, 368186, 368187, 368188} },
{"Gauntlets of The Culling", {6044399, 44399, 368189, 368190, 368191, 368192, 368193, 368194, 368195, 368196, 368197, 368198, 368199, 368200} },
{"Necklace of Calm Skies", {6044400, 44400, 368201, 368202, 368203, 368204, 368205, 368206, 368207, 368208, 368209, 368210, 368211, 368212} },
{"Hundred Tooth Necklace", {6044401, 44401, 368213, 368214, 368215, 368216, 368217, 368218, 368219, 368220, 368221, 368222, 368223, 368224} },
{"Tiled-Stone Pendant", {6044402, 44402, 368225, 368226, 368227, 368228, 368229, 368230, 368231, 368232, 368233, 368234, 368235, 368236} },
{"Amulet of Constrained Power", {6044403, 44403, 368237, 368238, 368239, 368240, 368241, 368242, 368243, 368244, 368245, 368246, 368247, 368248} },
{"Bauble-Woven Gown", {6044404, 44404, 368249, 368250, 368251, 368252, 368253, 368254, 368255, 368256, 368257, 368258, 368259, 368260} },
{"Exotic Leather Tunic", {6044405, 44405, 368261, 368262, 368263, 368264, 368265, 368266, 368267, 368268, 368269, 368270, 368271, 368272} },
{"Gilded Ringmail Hauberk", {6044406, 44406, 368273, 368274, 368275, 368276, 368277, 368278, 368279, 368280, 368281, 368282, 368283, 368284} },
{"Silver-Plated Battlechest", {6044407, 44407, 368285, 368286, 368287, 368288, 368289, 368290, 368291, 368292, 368293, 368294, 368295, 368296} },
{"Cowl of the Vindictive Captain", {6044408, 44408, 368297, 368298, 368299, 368300, 368301, 368302, 368303, 368304, 368305, 368306, 368307, 368308} },
{"Headguard of Retaliation", {6044409, 44409, 368309, 368310, 368311, 368312, 368313, 368314, 368315, 368316, 368317, 368318, 368319, 368320} },
{"Helmet of Just Retribution", {6044410, 44410, 368321, 368322, 368323, 368324, 368325, 368326, 368327, 368328, 368329, 368330, 368331, 368332} },
{"Platehelm of Irate Revenge", {6044411, 44411, 368333, 368334, 368335, 368336, 368337, 368338, 368339, 368340, 368341, 368342, 368343, 368344} },
{"Faceguard of Punishment", {6044412, 44412, 368345, 368346, 368347, 368348, 368349, 368350, 368351, 368352, 368353, 368354, 368355, 368356} },
{"Dark Frostscale Chestpiece", {368478, 44428, 368477, 368479, 368480, 368481, 368482, 368483, 368484, 368485, 368486, 368487, 368488, 368489} },
{"Dark Frostscale Leggings", {6044436, 44436, 368514, 368515, 368516, 368517, 368518, 368519, 368520, 368521, 368522, 368523, 368524, 368525} },
{"Dark Frostscale Breastplate", {6044437, 44437, 368526, 368527, 368528, 368529, 368530, 368531, 368532, 368533, 368534, 368535, 368536, 368537} },
{"Dragonstompers", {6044438, 44438, 368538, 368539, 368540, 368541, 368542, 368543, 368544, 368545, 368546, 368547, 368548, 368549} },
{"Dark Iceborne Leggings", {6044440, 44440, 368550, 368551, 368552, 368553, 368554, 368555, 368556, 368557, 368558, 368559, 368560, 368561} },
{"Dark Iceborne Chestguard", {6044441, 44441, 368562, 368563, 368564, 368565, 368566, 368567, 368568, 368569, 368570, 368571, 368572, 368573} },
{"Bugsquashers", {6044442, 44442, 368574, 368575, 368576, 368577, 368578, 368579, 368580, 368581, 368582, 368583, 368584, 368585} },
{"Dark Nerubian Leggings", {6044443, 44443, 368586, 368587, 368588, 368589, 368590, 368591, 368592, 368593, 368594, 368595, 368596, 368597} },
{"Dark Nerubian Chestpiece", {6044444, 44444, 368598, 368599, 368600, 368601, 368602, 368603, 368604, 368605, 368606, 368607, 368608, 368609} },
{"Scaled Icewalkers", {6044445, 44445, 368610, 368611, 368612, 368613, 368614, 368615, 368616, 368617, 368618, 368619, 368620, 368621} },
{"Dustbringer", {6044505, 44505, 368634, 368635, 368636, 368637, 368638, 368639, 368640, 368641, 368642, 368643, 368644, 368645} },
{"Medallion of Heroism", {6044579, 44579, 368646, 368647, 368648, 368649, 368650, 368651, 368652, 368653, 368654, 368655, 368656, 368657} },
{"Warchief's Legguards of Brutality", {6044583, 44583, 368658, 368659, 368660, 368661, 368662, 368663, 368664, 368665, 368666, 368667, 368668, 368669} },
{"Warchief's Leggings of Foresight", {6044590, 44590, 368670, 368671, 368672, 368673, 368674, 368675, 368676, 368677, 368678, 368679, 368680, 368681} },
{"Wrynn's Leggings of Foresight", {6044591, 44591, 368682, 368683, 368684, 368685, 368686, 368687, 368688, 368689, 368690, 368691, 368692, 368693} },
{"Wrynn's Leggings of Valor", {6044592, 44592, 368694, 368695, 368696, 368697, 368698, 368699, 368700, 368701, 368702, 368703, 368704, 368705} },
{"Wrynn's Leggings of Wisdom", {6044593, 44593, 368706, 368707, 368708, 368709, 368710, 368711, 368712, 368713, 368714, 368715, 368716, 368717} },
{"Wrynn's Legguards of Brutality", {6044594, 44594, 368718, 368719, 368720, 368721, 368722, 368723, 368724, 368725, 368726, 368727, 368728, 368729} },
{"Wrynn's Legguards of Heroism", {6044595, 44595, 368730, 368731, 368732, 368733, 368734, 368735, 368736, 368737, 368738, 368739, 368740, 368741} },
{"Wrynn's Legplates of Carnage", {6044596, 44596, 368742, 368743, 368744, 368745, 368746, 368747, 368748, 368749, 368750, 368751, 368752, 368753} },
{"Medallion of Heroism", {6044597, 44597, 368754, 368755, 368756, 368757, 368758, 368759, 368760, 368761, 368762, 368763, 368764, 368765} },
{"Crystalbark's Toenail", {6044649, 44649, 368766, 368767, 368768, 368769, 368770, 368771, 368772, 368773, 368774, 368775, 368776, 368777} },
{"Flumblub's Seat Cushion", {6044666, 44666, 368874, 368875, 368876, 368877, 368878, 368879, 368880, 368881, 368882, 368883, 368884, 368885} },
{"Mammoth-Hair Crown", {6044667, 44667, 368886, 368887, 368888, 368889, 368890, 368891, 368892, 368893, 368894, 368895, 368896, 368897} },
{"Egg-Warming Blanket", {6044668, 44668, 368898, 368899, 368900, 368901, 368902, 368903, 368904, 368905, 368906, 368907, 368908, 368909} },
{"Worgen-Scored Shackles", {6044669, 44669, 368910, 368911, 368912, 368913, 368914, 368915, 368916, 368917, 368918, 368919, 368920, 368921} },
{"Soul-Sealed Belt", {6044670, 44670, 368922, 368923, 368924, 368925, 368926, 368927, 368928, 368929, 368930, 368931, 368932, 368933} },
{"Highlord's Padded Legguards", {6044671, 44671, 368934, 368935, 368936, 368937, 368938, 368939, 368940, 368941, 368942, 368943, 368944, 368945} },
{"Seal-Fur Spaulders", {6044672, 44672, 368946, 368947, 368948, 368949, 368950, 368951, 368952, 368953, 368954, 368955, 368956, 368957} },
{"Mammoth-Riding Boots", {6044673, 44673, 368958, 368959, 368960, 368961, 368962, 368963, 368964, 368965, 368966, 368967, 368968, 368969} },
{"Ichor-Stained Wraps", {6044674, 44674, 368970, 368971, 368972, 368973, 368974, 368975, 368976, 368977, 368978, 368979, 368980, 368981} },
{"Rock-Giant's Pinky Cover", {6044675, 44675, 368982, 368983, 368984, 368985, 368986, 368987, 368988, 368989, 368990, 368991, 368992, 368993} },
{"Syreian's Leggings", {6044676, 44676, 368994, 368995, 368996, 368997, 368998, 368999, 369000, 369001, 369002, 369003, 369004, 369005} },
{"Eternal Observer's Legplates", {6044677, 44677, 369006, 369007, 369008, 369009, 369010, 369011, 369012, 369013, 369014, 369015, 369016, 369017} },
{"Titanium Brain-Gear", {6044681, 44681, 369018, 369019, 369020, 369021, 369022, 369023, 369024, 369025, 369026, 369027, 369028, 369029} },
{"Time-Forward Talisman", {6044682, 44682, 369030, 369031, 369032, 369033, 369034, 369035, 369036, 369037, 369038, 369039, 369040, 369041} },
{"King's Eyesocket", {6044683, 44683, 369042, 369043, 369044, 369045, 369046, 369047, 369048, 369049, 369050, 369051, 369052, 369053} },
{"Calcified Web Spaulders", {6044685, 44685, 369054, 369055, 369056, 369057, 369058, 369059, 369060, 369061, 369062, 369063, 369064, 369065} },
{"Ethereal Terror Handwraps", {6044686, 44686, 369066, 369067, 369068, 369069, 369070, 369071, 369072, 369073, 369074, 369075, 369076, 369077} },
{"Loque'Nahak's Pelt", {6044687, 44687, 369078, 369079, 369080, 369081, 369082, 369083, 369084, 369085, 369086, 369087, 369088, 369089} },
{"Loque'Nahak's Severed Fang", {6044688, 44688, 369090, 369091, 369092, 369093, 369094, 369095, 369096, 369097, 369098, 369099, 369100, 369101} },
{"Aotona's Collar", {6044691, 44691, 369102, 369103, 369104, 369105, 369106, 369107, 369108, 369109, 369110, 369111, 369112, 369113} },
{"Corroded Faceguard", {6044695, 44695, 369114, 369115, 369116, 369117, 369118, 369119, 369120, 369121, 369122, 369123, 369124, 369125} },
{"Giant's Toewrap", {6044696, 44696, 369126, 369127, 369128, 369129, 369130, 369131, 369132, 369133, 369134, 369135, 369136, 369137} },
{"Val'kyr Vestments", {6044697, 44697, 369138, 369139, 369140, 369141, 369142, 369143, 369144, 369145, 369146, 369147, 369148, 369149} },
{"Dark Herring", {369151, 44703, 369150, 369152, 369153, 369154, 369155, 369156, 369157, 369158, 369159, 369160, 369161, 369162} },
{"Dirkee's Superstructure", {6044708, 44708, 369163, 369164, 369165, 369166, 369167, 369168, 369169, 369170, 369171, 369172, 369173, 369174} },
{"Bouquet of Ebon Roses", {369176, 44731, 369175, 369177, 369178, 369179, 369180, 369181, 369182, 369183, 369184, 369185, 369186, 369187} },
{"Azure Dragonleather Helm", {6044732, 44732, 369188, 369189, 369190, 369191, 369192, 369193, 369194, 369195, 369196, 369197, 369198, 369199} },
{"Hammer of Quiet Mourning", {6044734, 44734, 369200, 369201, 369202, 369203, 369204, 369205, 369206, 369207, 369208, 369209, 369210, 369211} },
{"Crescent of Brooding Fury", {6044735, 44735, 369212, 369213, 369214, 369215, 369216, 369217, 369218, 369219, 369220, 369221, 369222, 369223} },
{"Sword of Heartwrenching Slaughter", {6044736, 44736, 369224, 369225, 369226, 369227, 369228, 369229, 369230, 369231, 369232, 369233, 369234, 369235} },
{"Mechanized Snow Goggles", {6044740, 44740, 369236, 369237, 369238, 369239, 369240, 369241, 369242, 369243, 369244, 369245, 369246, 369247} },
{"Mechanized Snow Goggles", {6044741, 44741, 369248, 369249, 369250, 369251, 369252, 369253, 369254, 369255, 369256, 369257, 369258, 369259} },
{"Mechanized Snow Goggles", {6044742, 44742, 369260, 369261, 369262, 369263, 369264, 369265, 369266, 369267, 369268, 369269, 369270, 369271} },
{"Blade of the Empty Void", {6044745, 44745, 369272, 369273, 369274, 369275, 369276, 369277, 369278, 369279, 369280, 369281, 369282, 369283} },
{"Knife of the Tarnished Soul", {6044746, 44746, 369284, 369285, 369286, 369287, 369288, 369289, 369290, 369291, 369292, 369293, 369294, 369295} },
{"Hammer of Wrenching Change", {6044747, 44747, 369296, 369297, 369298, 369299, 369300, 369301, 369302, 369303, 369304, 369305, 369306, 369307} },
{"Stave of Youthful Sorrow", {6044748, 44748, 369308, 369309, 369310, 369311, 369312, 369313, 369314, 369315, 369316, 369317, 369318, 369319} },
{"Arcanite Ripper (NEW)", {6044924, 44924, 369608, 369609, 369610, 369611, 369612, 369613, 369614, 369615, 369616, 369617, 369618, 369619} },
{"Gruffscale Leggings", {369718, 45052, 369717, 369719, 369720, 369721, 369722, 369723, 369724, 369725, 369726, 369727, 369728, 369729} },
{"QA Test Normalized Two-Hander", {6045174, 45174, 370487, 370488, 370489, 370490, 370491, 370492, 370493, 370494, 370495, 370496, 370497, 370498} },
{"QA Test Normalized Ranged Weapon", {6045175, 45175, 370499, 370500, 370501, 370502, 370503, 370504, 370505, 370506, 370507, 370508, 370509, 370510} },
{"Test Melee Rifle [PH]", {374610, 45575, 374609, 374611, 374612, 374613, 374614, 374615, 374616, 374617, 374618, 374619, 374620, 374621} },
{"High-powered Flashlight", {6045631, 45631, 374888, 374889, 374890, 374891, 374892, 374893, 374894, 374895, 374896, 374897, 374898, 374899} },
{"Twilight Tome", {6045849, 45849, 375717, 375718, 375719, 375720, 375721, 375722, 375723, 375724, 375725, 375726, 375727, 375728} },
{"Rituals of the New Moon", {6045850, 45850, 375729, 375730, 375731, 375732, 375733, 375734, 375735, 375736, 375737, 375738, 375739, 375740} },
{"Rituals of the New Moon", {6045851, 45851, 375741, 375742, 375743, 375744, 375745, 375746, 375747, 375748, 375749, 375750, 375751, 375752} },
{"Rituals of the New Moon", {6045852, 45852, 375753, 375754, 375755, 375756, 375757, 375758, 375759, 375760, 375761, 375762, 375763, 375764} },
{"Rituals of the New Moon", {6045853, 45853, 375765, 375766, 375767, 375768, 375769, 375770, 375771, 375772, 375773, 375774, 375775, 375776} },
{"Rituals of the New Moon", {6045854, 45854, 375777, 375778, 375779, 375780, 375781, 375782, 375783, 375784, 375785, 375786, 375787, 375788} },
{"Gondria's Spectral Claw", {6046324, 46324, 380131, 380132, 380133, 380134, 380135, 380136, 380137, 380138, 380139, 380140, 380141, 380142} },
{"Skoll's Fang", {6049227, 49227, 388355, 388356, 388357, 388358, 388359, 388360, 388361, 388362, 388363, 388364, 388365, 388366} },
{"Ashbringer (Extra Effects)", {391814, 50442, 391813, 391815, 391816, 391817, 391818, 391819, 391820, 391821, 391822, 391823, 391824, 391825} },
{"Pristine Glowbear Pelt", {6051958, 51958, 397193, 397194, 397195, 397196, 397197, 397198, 397199, 397200, 397201, 397202, 397203, 397204} },
{"Vigorous Belt", {6051959, 51959, 397205, 397206, 397207, 397208, 397209, 397210, 397211, 397212, 397213, 397214, 397215, 397216} },
{"Vigorous Gloves", {6051960, 51960, 397217, 397218, 397219, 397220, 397221, 397222, 397223, 397224, 397225, 397226, 397227, 397228} },
{"Vigorous Shoulderguards", {6051961, 51961, 397229, 397230, 397231, 397232, 397233, 397234, 397235, 397236, 397237, 397238, 397239, 397240} },
{"Vigorous Bracers", {6051962, 51962, 397241, 397242, 397243, 397244, 397245, 397246, 397247, 397248, 397249, 397250, 397251, 397252} },
{"Vigorous Stompers", {6051963, 51963, 397253, 397254, 397255, 397256, 397257, 397258, 397259, 397260, 397261, 397262, 397263, 397264} },
{"Vigorous Spaulders", {6051966, 51966, 397291, 397292, 397293, 397294, 397295, 397296, 397297, 397298, 397299, 397300, 397301, 397302} },
{"Enumerated Sandals", {6051967, 51967, 397303, 397304, 397305, 397306, 397307, 397308, 397309, 397310, 397311, 397312, 397313, 397314} },
{"Enumerated Shoulders", {6051969, 51969, 397328, 397329, 397330, 397331, 397332, 397333, 397334, 397335, 397336, 397337, 397338, 397339} },
{"Enumerated Gloves", {6051970, 51970, 397340, 397341, 397342, 397343, 397344, 397345, 397346, 397347, 397348, 397349, 397350, 397351} },
{"Enumerated Belt", {6051971, 51971, 397352, 397353, 397354, 397355, 397356, 397357, 397358, 397359, 397360, 397361, 397362, 397363} },
{"Enumerated Bracers", {6051972, 51972, 397364, 397365, 397366, 397367, 397368, 397369, 397370, 397371, 397372, 397373, 397374, 397375} },
{"Enumerated Shoulderpads", {6051974, 51974, 397389, 397390, 397391, 397392, 397393, 397394, 397395, 397396, 397397, 397398, 397399, 397400} },
{"Earthbound Shoulders", {6051975, 51975, 397401, 397402, 397403, 397404, 397405, 397406, 397407, 397408, 397409, 397410, 397411, 397412} },
{"Earthbound Shoulderguards", {6051976, 51976, 397413, 397414, 397415, 397416, 397417, 397418, 397419, 397420, 397421, 397422, 397423, 397424} },
{"Earthbound Girdle", {6051977, 51977, 397425, 397426, 397427, 397428, 397429, 397430, 397431, 397432, 397433, 397434, 397435, 397436} },
{"Earthbound Grips", {6051979, 51979, 397450, 397451, 397452, 397453, 397454, 397455, 397456, 397457, 397458, 397459, 397460, 397461} },
{"Earthbound Wristguards", {6051981, 51981, 397475, 397476, 397477, 397478, 397479, 397480, 397481, 397482, 397483, 397484, 397485, 397486} },
{"Earthbound Boots", {6051982, 51982, 397487, 397488, 397489, 397490, 397491, 397492, 397493, 397494, 397495, 397496, 397497, 397498} },
{"Stalwart Shoulderguards", {6051983, 51983, 397499, 397500, 397501, 397502, 397503, 397504, 397505, 397506, 397507, 397508, 397509, 397510} },
{"Stalwart Shoulderpads", {6051984, 51984, 397511, 397512, 397513, 397514, 397515, 397516, 397517, 397518, 397519, 397520, 397521, 397522} },
{"Stalwart Belt", {6051985, 51985, 397523, 397524, 397525, 397526, 397527, 397528, 397529, 397530, 397531, 397532, 397533, 397534} },
{"Stalwart Grips", {6051987, 51987, 397535, 397536, 397537, 397538, 397539, 397540, 397541, 397542, 397543, 397544, 397545, 397546} },
{"Stalwart Bands", {6051989, 51989, 397547, 397548, 397549, 397550, 397551, 397552, 397553, 397554, 397555, 397556, 397557, 397558} },
{"Stalwart Treads", {6051990, 51990, 397559, 397560, 397561, 397562, 397563, 397564, 397565, 397566, 397567, 397568, 397569, 397570} },
{"Turbulent Signet", {6051991, 51991, 397571, 397572, 397573, 397574, 397575, 397576, 397577, 397578, 397579, 397580, 397581, 397582} },
{"Tumultuous Ring", {6051992, 51992, 397583, 397584, 397585, 397586, 397587, 397588, 397589, 397590, 397591, 397592, 397593, 397594} },
{"Turbulent Cloak", {6051993, 51993, 397595, 397596, 397597, 397598, 397599, 397600, 397601, 397602, 397603, 397604, 397605, 397606} },
{"Turbulent Necklace", {6051995, 51995, 397620, 397621, 397622, 397623, 397624, 397625, 397626, 397627, 397628, 397629, 397630, 397631} },
{"Stalwart Spaulders", {6051997, 51997, 397645, 397646, 397647, 397648, 397649, 397650, 397651, 397652, 397653, 397654, 397655, 397656} },
{"Vigorous Spaulders", {6051998, 51998, 397657, 397658, 397659, 397660, 397661, 397662, 397663, 397664, 397665, 397666, 397667, 397668} }
}
--[[
AL_FindId(name, difficulty)
Finds the Ids of other difficulties based on the name of the item and the difficulty parameter given.
On the form of {Name, {normal, heroic, mythic, mythic1, mythic2, ... ,mythicN}}
]]
function AL_FindId(name, difficulty)
for index, items in pairs(ItemIDsDatabase) do
for key, eachItem in ipairs(items) do
if eachItem == name then
return items[2][difficulty]
end
end
end
end
-- https://replit.com/languages/lua
-- ItemIDsDatabase = {
-- --name, {normal, heroic, mythic, mythicN}
-- {"test1", {1000, 2000, 3000, 4000} },
-- {"test2", {1002, 2002, 3002, 4002} },
-- }
-- --[[
-- AL_FindId(name, difficulty)
-- Finds the Ids of other difficulties based on the name of the item and the difficulty parameter given.
-- On the form of {Name, {normal, heroic, mythic, mythic1, mythic2, ... ,mythicN}}
-- ]]
-- name = "test1"
-- difficulty = 2
-- for index, items in pairs(ItemIDsDatabase) do
-- --print(index, '\t', items)
-- for key, eachItem in ipairs(items) do
-- -- for key2, eachItem2 in ipairs(eachItem) do
-- -- print('\t', items[1], eachItem2)
-- -- end
-- print("test")
-- if eachItem == name then
-- print(key, '\t', eachItem)
-- print(items[2][difficulty])
-- end
-- -- print('\t', key, value)
-- end
-- end