From 8ff8606d09888bdfdf34799aa83f841345ecd567 Mon Sep 17 00:00:00 2001 From: HoliestWoW Date: Wed, 14 Jan 2026 13:37:20 -0500 Subject: [PATCH 01/12] Fixed TBC not working properly --- CharacterStatusScreen.lua | 3 +- Hardcore.lua | 162 +++++++++++++++++++++++++++++------ Hardcore_TBC.toc | 174 ++++++++++++++++++++++++++++++++++++++ InspectStatusScreen.lua | 22 +++-- LevelToast.lua | 2 +- MainMenu.lua | 10 +-- Security.lua | 2 +- dungeon-db-tbc.lua | 169 ++++++++++++++++++++++++++++++++++++ id_to_npc_classic.lua | 2 +- id_to_npc_tbc.lua | 0 npc_to_id_classic.lua | 2 +- 11 files changed, 508 insertions(+), 40 deletions(-) create mode 100644 Hardcore_TBC.toc create mode 100644 dungeon-db-tbc.lua create mode 100644 id_to_npc_tbc.lua diff --git a/CharacterStatusScreen.lua b/CharacterStatusScreen.lua index 576b36e6..293abea0 100644 --- a/CharacterStatusScreen.lua +++ b/CharacterStatusScreen.lua @@ -44,6 +44,7 @@ end local f if _G["HardcoreBuildLabel"] ~= "Cata" then f = CreateFrame("Frame", "HardcoreOuterFrame", Panel) + f:SetFrameStrata("HIGH") f:SetSize(400, 400) f:SetPoint("CENTER") f:Hide() @@ -478,7 +479,7 @@ function ShowCharacterHC(_hardcore_character) UpdateCharacterHC( _hardcore_character, UnitName("player"), - GetAddOnMetadata("Hardcore", "Version"), + C_AddOns.GetAddOnMetadata("Hardcore", "Version"), f2, class, class_en, diff --git a/Hardcore.lua b/Hardcore.lua index da7224e0..2560aea0 100644 --- a/Hardcore.lua +++ b/Hardcore.lua @@ -468,6 +468,8 @@ function FailureFunction(achievement_name) then if Hardcore_Character.game_version == "WotLK" then max_level = 80 + elseif Hardcore_Character.game_version == "TBC" then + max_level = 70 else max_level = 85 end @@ -780,6 +782,8 @@ TradeFrameTradeButton:SetScript("OnClick", function() then if Hardcore_Character.game_version == "WotLK" then max_level = 80 + elseif Hardcore_Character.game_version == "TBC" then + max_level = 70 else max_level = 85 end @@ -811,6 +815,38 @@ function Hardcore:Startup() -- the entry point of our addon -- called inside loading screen before player sees world, some api functions are not available yet. + if not Hardcore.Original_ChatFrame1_AddMessage then + Hardcore.Original_ChatFrame1_AddMessage = ChatFrame1.AddMessage + end + + ChatFrame1.AddMessage = function(self, text, ...) + -- Safety check: ensure text exists and buffer is active + if text and HIDE_RTP_CHAT_MSG_BUFFER > 0 then + + -- Define the patterns to look for (strip the %s variable) + local totalPrefix = string.gsub(TIME_PLAYED_TOTAL, "%%s", "") + local levelPrefix = string.gsub(TIME_PLAYED_LEVEL, "%%s", "") + + -- Check for "Total time played" + if string.find(text, totalPrefix, 1, true) then + -- Return without calling original function -> Message Hidden + return + end + + -- Check for "Time played this level" + if string.find(text, levelPrefix, 1, true) then + -- Decrement buffer + HIDE_RTP_CHAT_MSG_BUFFER = HIDE_RTP_CHAT_MSG_BUFFER - 1 + if HIDE_RTP_CHAT_MSG_BUFFER < 0 then HIDE_RTP_CHAT_MSG_BUFFER = 0 end + + return -- Message Hidden + end + end + + -- If not hidden, pass it to the real chat frame + return Hardcore.Original_ChatFrame1_AddMessage(self, text, ...) + end + -- event handling helper self:SetScript("OnEvent", function(self, event, ...) self[event](self, ...) @@ -959,6 +995,39 @@ function Hardcore:PLAYER_LOGIN() -- For dungeon tracking targetting of door npcs --self:RegisterEvent("ADDON_ACTION_FORBIDDEN") + + ChatFrame_AddMessageEventFilter("CHAT_MSG_SYSTEM", function(frame, event, message, ...) + if HIDE_RTP_CHAT_MSG_BUFFER > 0 then + -- Get the localized global strings for time played and strip the "%s" variable + -- This ensures it works on all client languages + local totalPrefix = string.gsub(TIME_PLAYED_TOTAL, "%%s", "") -- "Total time played: " + local levelPrefix = string.gsub(TIME_PLAYED_LEVEL, "%%s", "") -- "Time played this level: " + + -- Check if the message starts with "Total time played" + if string.find(message, totalPrefix, 1, true) then + if debug then + Hardcore:Debug("ChatFilter: Hidden 'Total' message: " .. message) + end + -- We hide this line, but don't decrement yet because the 'Level' line comes next + return true + end + + -- Check if the message starts with "Time played this level" + if string.find(message, levelPrefix, 1, true) then + if debug then + Hardcore:Debug("ChatFilter: Hidden 'Level' message. Decrementing Buffer.") + end + + -- This is usually the last message in the block, so we decrement now + HIDE_RTP_CHAT_MSG_BUFFER = HIDE_RTP_CHAT_MSG_BUFFER - 1 + if HIDE_RTP_CHAT_MSG_BUFFER < 0 then HIDE_RTP_CHAT_MSG_BUFFER = 0 end + + return true + end + end + + return false, message, ... + end) Hardcore:InitializeSavedVariables() Hardcore:InitializeSettingsSavedVariables() @@ -1046,7 +1115,7 @@ function Hardcore:PLAYER_LOGIN() -- check players version against highest version local FULL_PLAYER_NAME = Hardcore_GetPlayerPlusRealmName() - Hardcore:CheckVersionsAndUpdate(FULL_PLAYER_NAME, GetAddOnMetadata("Hardcore", "Version")) + Hardcore:CheckVersionsAndUpdate(FULL_PLAYER_NAME, C_AddOns.GetAddOnMetadata("Hardcore", "Version")) -- reset debug log; To view debug log, log out and see saved variables before logging back in Hardcore_Settings.debug_log = {} @@ -1242,17 +1311,19 @@ function Hardcore:INSPECT_READY(...) hooksecurefunc("CharacterFrameTab_OnClick", function(self) local name = self:GetName() - if - (name ~= "InspectFrameTab3" and _G["HardcoreBuildLabel"] ~= "WotLK") - or (name ~= "InspectFrameTab4" and _G["HardcoreBuildLabel"] == "WotLK") - then -- 3:era, 4:wotlk + -- Determine if we are on a version with 3 default tabs (TBC, WotLK, Cata) or 2 (Era/SoM) + local isExpansion = _G["HardcoreBuildLabel"] == "WotLK" or _G["HardcoreBuildLabel"] == "TBC" or _G["HardcoreBuildLabel"] == "Cata" + + -- Target Tab is 4 for Expansions, 3 for Era + local targetTabName = isExpansion and "InspectFrameTab4" or "InspectFrameTab3" + local targetTabID = isExpansion and 4 or 3 + + if name ~= targetTabName then return end - if _G["HardcoreBuildLabel"] == "WotLK" then - PanelTemplates_SetTab(InspectFrame, 4) - else - PanelTemplates_SetTab(InspectFrame, 3) - end + + PanelTemplates_SetTab(InspectFrame, targetTabID) + if _G["InspectPaperDollFrame"] ~= nil then _G["InspectPaperDollFrame"]:Hide() end @@ -1948,11 +2019,27 @@ end local Cached_ChatFrame_DisplayTimePlayed = ChatFrame_DisplayTimePlayed ChatFrame_DisplayTimePlayed = function(...) - if HIDE_RTP_CHAT_MSG_BUFFER > 0 then + -- Debug: Check what the buffer sees when the game tries to print the message + if debug then + Hardcore:Debug("Game attempted to display TimePlayed. Current Buffer: " .. tostring(HIDE_RTP_CHAT_MSG_BUFFER)) + end + + if HIDE_RTP_CHAT_MSG_BUFFER == 1 then HIDE_RTP_CHAT_MSG_BUFFER = HIDE_RTP_CHAT_MSG_BUFFER - 1 - return - end - return Cached_ChatFrame_DisplayTimePlayed(...) + if debug then + Hardcore:Debug("Message Hidden. New Buffer: " .. tostring(HIDE_RTP_CHAT_MSG_BUFFER)) + end + return + elseif HIDE_RTP_CHAT_MSG_BUFFER == 2 then + HIDE_RTP_CHAT_MSG_BUFFER = HIDE_RTP_CHAT_MSG_BUFFER - 2 + if debug then + Hardcore:Debug("Messages Hidden. New Buffer: " .. tostring(HIDE_RTP_CHAT_MSG_BUFFER)) + end + return + end + + -- If buffer is 0, we let the message through + return Cached_ChatFrame_DisplayTimePlayed(...) end function Hardcore:RequestTimePlayed() @@ -1974,6 +2061,8 @@ function Hardcore:ShouldShowPlaytimeWarning(level, percentage) then if Hardcore_Character.game_version == "WotLK" then level = (level * 60) / 80 + elseif Hardcore_Character.game_version == "TBC" then + level = (level * 60) / 70 else -- Cataclysm or other level = (level * 60) / 85 end @@ -2333,6 +2422,8 @@ local function levelToast(rea_name, rea_class, rea_level) toastMaxLevel = "85" elseif _G["HardcoreBuildLabel"] == "WotLK" then toastMaxLevel = "80" + elseif _G["HardcoreBuildLabel"] == "TBC" then + toastMaxLevel = "70" end if tostring(rea_level) ~= toastMaxLevel then return @@ -2687,7 +2778,7 @@ function Hardcore:FormatRow(row, fullcolor, formattype) local version if row.name == FULL_PLAYER_NAME then - version = GetAddOnMetadata("Hardcore", "Version") + version = C_AddOns.GetAddOnMetadata("Hardcore", "Version") else version = guild_versions[row.name] end @@ -3105,7 +3196,7 @@ function Hardcore:initMinimapButton() if not tooltip or not tooltip.AddLine then return end - tooltip:AddLine("Hardcore (" .. GetAddOnMetadata("Hardcore", "Version") .. ")") + tooltip:AddLine("Hardcore (" .. C_AddOns.GetAddOnMetadata("Hardcore", "Version") .. ")") tooltip:AddLine("|cFFCFCFCFleft click|r toggle hc window") tooltip:AddLine("|cFFCFCFCFright click|r open hc options") end, @@ -3335,7 +3426,7 @@ end local ATTRIBUTE_SEPARATOR = "_" function Hardcore:GenerateVerificationString() - local version = GetAddOnMetadata("Hardcore", "Version") + local version = C_AddOns.GetAddOnMetadata("Hardcore", "Version") local _, class, _, race, _, name = GetPlayerInfoByGUID(UnitGUID("player")) local realm = GetRealmName() local level = UnitLevel("player") @@ -3382,7 +3473,7 @@ function Hardcore:InitiatePulse() local isInGuild, _, guild_rank_index = GetGuildInfo("player") if CTL and isInGuild then -- Send along the version we're using - local version = GetAddOnMetadata("Hardcore", "Version") + local version = C_AddOns.C_AddOns.GetAddOnMetadata("Hardcore", "Version") local commMessage = COMM_COMMANDS[1] .. COMM_COMMAND_DELIM .. version CTL:SendAddonMessage("BULK", COMM_NAME, commMessage, "GUILD") hc_guild_rank_index = guild_rank_index @@ -3400,7 +3491,7 @@ end function Hardcore:SendCharacterData(dest) if CTL then local commMessage = COMM_COMMANDS[4] .. COMM_COMMAND_DELIM - commMessage = commMessage .. GetAddOnMetadata("Hardcore", "Version") .. COMM_FIELD_DELIM -- Add Version + commMessage = commMessage .. C_AddOns.C_AddOns.GetAddOnMetadata("Hardcore", "Version") .. COMM_FIELD_DELIM -- Add Version if Hardcore_Character.first_recorded ~= nil and Hardcore_Character.first_recorded ~= -1 then commMessage = commMessage .. Hardcore_Character.first_recorded .. COMM_FIELD_DELIM -- Add creation time else @@ -3502,7 +3593,7 @@ function Hardcore:ReceivePulse(data, sender) Hardcore:CheckVersionsAndUpdate(sender, data) -- Set my versions - local version = GetAddOnMetadata("Hardcore", "Version") + local version = C_AddOns.C_AddOns.GetAddOnMetadata("Hardcore", "Version") if version ~= guild_highest_version then guild_versions_status[FULL_PLAYER_NAME] = "outdated" end @@ -3517,7 +3608,7 @@ end function Hardcore:CheckVersionsAndUpdate(playername, versionstring) if guild_highest_version == nil then - guild_highest_version = GetAddOnMetadata("Hardcore", "Version") + guild_highest_version = C_AddOns.C_AddOns.GetAddOnMetadata("Hardcore", "Version") end -- Hardcore:Debug('Comparing: data: '..versionstring.. ' to guild_highest_version: '..guild_highest_version) @@ -3629,11 +3720,34 @@ ChatFrame_AddMessageEventFilter("CHAT_MSG_GUILD", function(frame, event, message -- note that you must return *all* of the values that were passed to your filter, even ones you didn't change end) -ChatFrame_AddMessageEventFilter("CHAT_MSG_SYSTEM", function(frame, event, message, sender, ...) - if message:match("No player named") and message:match("is currently playing") then - return true, nil, sender, ... +ChatFrame_AddMessageEventFilter("CHAT_MSG_GUILD", function(frame, event, message, sender, ...) + if + hc_mute_inguild + and guild_online[sender] + and guild_online[sender]["level"] + and tonumber(hc_mute_inguild) >= guild_online[sender]["level"] + then + return + end + + if Hardcore_Settings.filter_f_in_chat then + if message == "f" or message == "F" then + return true, message, sender, ... + end + end + if Hardcore_Settings.show_version_in_chat then + if guild_versions[sender] then + message = "|cfffd9122[" .. guild_versions[sender] .. "]|r " .. message + end + end + + local _name, _ = string.split("-", sender) + if _G.hc_online_player_ranks[_name] and _G.hc_online_player_ranks[_name] == "officer" then + message = "\124cFFFF0000\124r " .. message + -- message = "|T" .. "Interface\\Addons\\Hardcore\\Media\\icon_crown.blp" .. ":8:8:0:0:64:64:4:60:4:60|t " .. message -- crown end return false, message, sender, ... -- don't hide this message + -- note that you must return *all* of the values that were passed to your filter, even ones you didn't change end) ChatFrame_AddMessageEventFilter("CHAT_MSG_CHANNEL", function(frame, event, message, sender, ...) diff --git a/Hardcore_TBC.toc b/Hardcore_TBC.toc new file mode 100644 index 00000000..e6ac3517 --- /dev/null +++ b/Hardcore_TBC.toc @@ -0,0 +1,174 @@ + +## Interface: 20505 +## Title: Hardcore 0.11.58b +## Notes: Supports TBC Hardcore +## Author: The Classic Hardcore team, Molikar (Sean Kennedy) +## X-License: All Rights Reserved +## X-Category: Leveling,Guild +## Version: 0.11.58b + + +## DefaultState: enabled +## SavedVariables: Hardcore_Settings,Backup_Character_Data +## SavedVariablesPerCharacter: WARNING,Hardcore_Character + +embeds.xml + +Libs/ascii85/ascii85.lua +CustomLayouts.lua +utils.lua +Security.lua +Hardcore.xml + +#Tokens +DKToken.lua +PartyChangeToken.lua + +Achievements/AchievementG.lua + +Achievements/Solo.lua +Achievements/Duo.lua +Achievements/Trio.lua +#Begin achievement modules +Achievements/Arcanist.lua +Achievements/FireAndFrost.lua +Achievements/ShadowAndFlame.lua +Achievements/AnimalFriend.lua +Achievements/Berserker.lua +Achievements/Bloodbath.lua +Achievements/CloseCombat.lua +Achievements/Cyromancer.lua +Achievements/DruidOfTheClaw.lua +Achievements/Ephemeral.lua +Achievements/Felfire.lua +Achievements/Grounded.lua +Achievements/Hammertime.lua +Achievements/Homebound.lua +Achievements/Humanist.lua +Achievements/ICanSeeYou.lua +Achievements/ImpMaster.lua +Achievements/InsaneInTheMembrane.lua +Achievements/LoneWolf.lua +Achievements/MortalPet.lua +Achievements/Naturalist.lua +Achievements/NobodyGotTimeForThat.lua +Achievements/NoHealthPotions.lua +Achievements/NoHit.lua +Achievements/NotSoDeadly.lua +Achievements/NotSoTalented.lua +Achievements/NotTheBlessedRun.lua +Achievements/NoWayOut.lua +Achievements/Nudist.lua +Achievements/Pacifist.lua +Achievements/PartnerUp.lua +Achievements/Pyromancer.lua +Achievements/Scavenger.lua +#Achievements/Speedrunner.lua +Achievements/SelfMade.lua +Achievements/ShadowEmbrace.lua +Achievements/Shivved.lua +Achievements/Shocked.lua +Achievements/SolitaryStruggle.lua +Achievements/SwordAndBoard.lua +Achievements/TiedHands.lua +Achievements/Thunderstruck.lua +Achievements/TotemicMisery.lua +Achievements/TrueBeliever.lua +Achievements/TunnelVision.lua +Achievements/Unrestored.lua +Achievements/WhiteKnight.lua +Achievements/Vagrant.lua +Achievements/VoidServant.lua +Achievements/SelfMadeDuo.lua +Achievements/SelfMadeTrio.lua +#End achievement modules + +#Start passive achievements +Achievements/KingOfTheJungle.lua +#Achievements/ShyRotam.lua +Achievements/HighChiefWinterfall.lua +Achievements/OfForgottenMemories.lua +Achievements/Maltorious.lua +Achievements/PawnCapturesQueen.lua +Achievements/Deathclasp.lua +Achievements/AFinalBlow.lua +Achievements/SummoningThePrincess.lua +Achievements/AbsentMindedProspector.lua +Achievements/TheHuntCompleted.lua +Achievements/MageSummoner.lua +Achievements/EarthenArise.lua +Achievements/GetMeOutOfHere.lua +Achievements/RitesOfTheEarthmother.lua +Achievements/KimjaelIndeed.lua +Achievements/Counterattack.lua +Achievements/TidalCharmAcquired.lua +Achievements/MasterLeatherworker.lua +Achievements/MasterBlacksmith.lua +Achievements/MasterAlchemist.lua +Achievements/MasterEnchanter.lua +Achievements/MasterTailoring.lua +Achievements/MasterEngineering.lua +Achievements/MasterSkinner.lua +Achievements/MasterMiner.lua +Achievements/MasterHerbalism.lua +Achievements/MasterFishing.lua +Achievements/MasterCooking.lua +Achievements/MasterFirstAid.lua +Achievements/Parkour.lua +Achievements/Tainted.lua +Achievements/TheDungeonCrawler.lua +Achievements/SpeedrunnerTen.lua +Achievements/SpeedrunnerTwenty.lua +Achievements/SpeedrunnerThirty.lua +Achievements/SpeedrunnerForty.lua +Achievements/SpeedrunnerFifty.lua +Achievements/SpeedrunnerSixty.lua +#Achievements/SpeedrunnerFifteen.lua +Achievements/DarkHeart.lua +Achievements/AgainstLordShalzaru.lua +Achievements/TestOfEndurance.lua +Achievements/CuergosGold.lua +Achievements/TheStonesThatBindUs.lua +Achievements/GalensEscape.lua +Achievements/Morladim.lua +Achievements/TheForgottenHeirloom.lua +Achievements/Hogger.lua +Achievements/Fangore.lua +Achievements/DragonkinMenace.lua +Achievements/Kromgul.lua +Achievements/NothingButTheTruth.lua +Achievements/SealOfEarth.lua +Achievements/TremorsofEarth.lua +Achievements/Vagash.lua +Achievements/InDefenseOfTheKing.lua +Achievements/DefeatNekrosh.lua +Achievements/DruidOfTheClawQuest.lua +Achievements/TheCrownOfWill.lua +Achievements/BattleOfHillsbrad.lua +Achievements/TheWeaver.lua +Achievements/TheFamilyCrypt.lua +Achievements/HintsOfANewPlague.lua +Achievements/RecoverTheKey.lua +Achievements/StinkysEscape.lua +Achievements/BurningShadows.lua +#End passive achievements + +CharacterStatusScreen.lua +InspectStatusScreen.lua +AchievementTab.lua +FirstMenuScreen.lua +ReloadReminder.lua +dungeon-db-tbc.lua +Dungeons.lua +Survey.lua +MainMenu.lua +TextureUtils.lua +TextureInfo.lua +AchievementAlertFrame.lua +id_to_npc_classic.lua +npc_to_id_classic.lua +DeathLog.lua +SlashCommands.lua +LevelToast.lua +Hardcore.lua + diff --git a/InspectStatusScreen.lua b/InspectStatusScreen.lua index 4b58db91..327a94af 100644 --- a/InspectStatusScreen.lua +++ b/InspectStatusScreen.lua @@ -2,6 +2,7 @@ local IPanel = CreateFrame("Frame", nil, CharacterFrame) IPanel:SetPoint("TOPLEFT", CharacterFrame, "TOPLEFT", -50, -200) IPanel:SetPoint("BOTTOMRIGHT", CharacterFrame, "BOTTOMRIGHT", -200, 0) local I_f = CreateFrame("Frame", "YourFrameName", IPanel) +I_f:SetFrameStrata("HIGH") I_f:SetSize(400, 400) I_f:SetPoint("CENTER") I_f:Hide() @@ -50,12 +51,21 @@ function ShowInspectHC(_hardcore_character, other_name, version) IPanel:SetParent(InspectFrame) IPanel:SetPoint("TOPLEFT", InspectFrame, "TOPLEFT", -50, -200) IPanel:SetPoint("BOTTOMRIGHT", InspectFrame, "BOTTOMRIGHT", -200, 0) - I_t:SetPoint("TOPLEFT", InspectFrame, "TOPLEFT", 2, -1) - I_tr:SetPoint("TOPLEFT", InspectFrame, "TOPLEFT", 258, -1) - I_bl:SetPoint("TOPLEFT", InspectFrame, "TOPLEFT", 2, -257) - I_br:SetPoint("TOPLEFT", InspectFrame, "TOPLEFT", 258, -257) - I_f2:SetPoint("TOPLEFT", InspectFrame, "TOPLEFT", 8, -38) - title_text:SetPoint("TOPLEFT", InspectFrame, "TOPLEFT", 150, -45) + + -- Adjusted Offsets: Moved UP (+Y) and LEFT (-X) + -- If it is still not perfect, adjust these numbers. + -- Make X more negative to go Left. Make Y more positive to go Up. + local xOffset = -12 + local yOffset = 13 + + I_t:SetPoint("TOPLEFT", InspectFrame, "TOPLEFT", xOffset, yOffset) + I_tr:SetPoint("TOPLEFT", InspectFrame, "TOPLEFT", xOffset + 256, yOffset) + I_bl:SetPoint("TOPLEFT", InspectFrame, "TOPLEFT", xOffset, yOffset - 256) + I_br:SetPoint("TOPLEFT", InspectFrame, "TOPLEFT", xOffset + 256, yOffset - 256) + + -- Adjust content and title relative to the new background position + I_f2:SetPoint("TOPLEFT", InspectFrame, "TOPLEFT", xOffset + 6, yOffset - 37) + title_text:SetPoint("TOPLEFT", InspectFrame, "TOPLEFT", xOffset + 148, yOffset - 44) local class, class_en, _ = UnitClass("target") UpdateCharacterHC(_hardcore_character, other_name, version, I_f2, class, class_en, UnitLevel("target")) diff --git a/LevelToast.lua b/LevelToast.lua index e66ff40f..3bf1e54e 100644 --- a/LevelToast.lua +++ b/LevelToast.lua @@ -63,7 +63,7 @@ frame.desc:SetPoint("TOP", 10, -30) frame.desc:SetTextColor(1, 0.8, 0, 1) frame.desc:SetJustifyH("LEFT") frame.desc:SetFont("Fonts\\blei00d.TTF", 14, "") -frame.desc:SetText("New level 60!") +frame.desc:SetText("New level 70!") local ticker_handler = nil local main_alpha = 0 diff --git a/MainMenu.lua b/MainMenu.lua index f1e93831..c07ba011 100644 --- a/MainMenu.lua +++ b/MainMenu.lua @@ -750,7 +750,7 @@ local function DrawVerifyTab(container, _hardcore_character) local string_format_new = true local first_menu_description local function GenerateVerificationString() - local version = GetAddOnMetadata("Hardcore", "Version") + local version = C_AddOns.GetAddOnMetadata("Hardcore", "Version") local _, class, _, race, _, name = GetPlayerInfoByGUID(UnitGUID("player")) local realm = GetRealmName() local level = UnitLevel("player") @@ -805,7 +805,7 @@ local function DrawVerifyTab(container, _hardcore_character) end end - local version = GetAddOnMetadata("Hardcore", "Version") + local version = C_AddOns.GetAddOnMetadata("Hardcore", "Version") local _, class, _, race, _, name = GetPlayerInfoByGUID(UnitGUID("player")) local realm = GetRealmName() local level = UnitLevel("player") @@ -1348,7 +1348,7 @@ local function DrawDungeonsTab(container, _hardcore_character) boss_data:SetText(boss_str) end - local version = GetAddOnMetadata("Hardcore", "Version") + local version = C_AddOns.GetAddOnMetadata("Hardcore", "Version") -- Add the banner local first_menu_description_title = AceGUI:Create("Label") @@ -1495,7 +1495,7 @@ local function DrawDungeonsTab(container, _hardcore_character) "|c00FFFF00You've run " .. #_hardcore_character.dt.runs .. " dungeons. (" - .. GetAddOnMetadata("Hardcore", "Version") + .. C_AddOns.GetAddOnMetadata("Hardcore", "Version") .. ", " .. UnitName("player") .. ", " @@ -1588,7 +1588,7 @@ local function DrawAccountabilityTab(container) ) or player_name_short == UnitName("player") then if player_name_short == UnitName("player") then - version_text = GetAddOnMetadata("Hardcore", "Version") + version_text = C_AddOns.GetAddOnMetadata("Hardcore", "Version") else version_text = hardcore_modern_menu_state.guild_versions[player_name_long] end diff --git a/Security.lua b/Security.lua index 826d4b80..13b0f419 100644 --- a/Security.lua +++ b/Security.lua @@ -177,7 +177,7 @@ function Hardcore_StoreCharacterInfo( level ) Hardcore_Character.char_info.class = class Hardcore_Character.char_info.name = name Hardcore_Character.char_info.realm = realm - Hardcore_Character.char_info.version = GetAddOnMetadata("Hardcore", "Version") + Hardcore_Character.char_info.version = C_AddOns.GetAddOnMetadata("Hardcore", "Version") if level == nil then Hardcore_Character.char_info.level = UnitLevel("player") else diff --git a/dungeon-db-tbc.lua b/dungeon-db-tbc.lua new file mode 100644 index 00000000..d463ba5b --- /dev/null +++ b/dungeon-db-tbc.lua @@ -0,0 +1,169 @@ +-- dungeon-db-tbc.lua +-- Dungeon data for the dungeon tracker +-- Written by Frank de Jong and edited by Jordan Thomas + + +-- dt_db ( = dungeon tracker database ) +-- +-- Contains all the info for the dungeons: +-- { instanceMapID, zoneID, "English Name", type = { "D", "R", "B", "O" }, max_players, max_runs, { max_level_era, max_level_wotlk }, { quests }, { bosses } }, +-- Types: D = dungeon (5-player), R = raid, B = battleground, O = other + +-- The following dungeon table was compiled with help from @Jordynna (thanks!) +-- Note that quests that can be completed inside the instance have been removed, as they can lead to double runs, +-- when the player's client crashes after turning them in inside the dungeon. + +dt_db = { + + -- Era dungeons + { 389, 2437, "Ragefire Chasm", "D", 5, 1, { 18, 20 }, + { 5728, 5761, 5723, 5724, 5725 }, -- "Searching for the lost satchel" replaced by "Returning the Lost satchel" because the former can be finished inside + {{"Bazzalan",11519}, {"Taramagan the Hungerer",11520}, {"Oggleflint",11517}, {"Jergosh the Invoker",11518}} + }, + { 43, 718, "Wailing Caverns", "D", 5, 1, { 24, 24 }, + { 914, 1487, 3366 }, -- Leaders of the Fang, Deviate Eradication, The Glowing Shard + {{"Mutanus",3654}, {"Kresh",3653}, {"Lady Anacondra",3671}, {"Lord Cobrahn",3669}, {"Lord Pythas",3670}, {"Skum",3674}, {"Lord Serpentis",3673}, {"Verdan the Everliving",5775}} + }, + { 36, 1581, "The Deadmines", "D", 5, 1, { 26, 24 }, + { 2040, 166, 373 }, -- Underground Assault, The Defias Brotherhood, The Unsent Letter + {{"Edwin VanCleef",639}, {"Rhahk'Zor",644}, {"Sneed's Shredder",642}, {"Gilnid",1763}, {"Mr. Smite",646}, {"Captain Greenskin",647}, {"Cookie",645}} + }, + { 33, 209, "Shadowfang Keep", "D", 5, 1, { 30, 25 }, + { 1013, 1014 }, -- The Book of Ur, Arugal Must Die // Deathstalkers in Shadowfang removed (inside completion) + {{"Archmage Arugal",4275}, {"Rethilgore",3914}, {"Razorclaw the Butcher",3886}, {"Baron Silverlaine",3887}, {"Commander Springvale",4278}, {"Odo the Blindwatcher",4279}, {"Fenrus the Devourer",4274}, {"Wolf Master Nandos",3927}} + }, + { 48, 719, "Blackfathom Deeps", "D", 5, 1, { 32, 28 }, + { 971, 1199, 6565, 6921, 1200, 6561, 6922 }, -- 1198 removed (inside completion) + {{"Aku'mai",4829}, {"Ghamoo-ra",4887}, {"Lady Sarevess",4831}, {"Gelihast",6243}, {"Lorgus Jett",12902}, {"Twilight Lord Kelris",4832}, {"Old Serra'kis",4830}} + }, + { 34, 717, "The Stockade", "D", 5, 1, { 32, 29 }, + { 387, 386, 378, 388, 377, 391 }, + {{"Bazil Thredd",1716}, {"Targorr the Dread",1696}, {"Kam Deepfury",1666}, {"Hamhock",1717}, {"Dextren Ward",1663}} + }, + { 47, 491, "Razorfen Kraul", "D", 5, 1, { 38, 31 }, + { 1221, 1102, 1109, 1101, 1142, 6522 }, -- 1144 removed (inside completion) + {{"Charlga Razorflank",4421}, {"Roogug",6168}, {"Aggem Thorncurse",4424}, {"Death Speaker Jargba",4428}, {"Overlord Ramtusk",4420}, {"Agathelos the Raging",4422}} + }, + { 90, 721, "Gnomeregan", "D", 5, 1, { 38, 32 }, + { 2904, 2924, 2930, 2929, 2841 }, -- 2945, 2951 removed (inside completion), 2929 removed (outside quest) + {{"Mekgineer Thermaplugg",7800}, {"Grubbis ",7361}, {"Viscous Fallout",7079}, {"Electrocutioner 6000",6235}, {"Crowd Pummeler 9-60",6229}} + }, + { 129, 722, "Razorfen Downs", "D", 5, 1, { 46, 41 }, + { 3636, 3341 }, -- 3525 removed (inside completion) + {{"Amnennar the Coldbringer",7358}, {"Tuten'kash",7355}, {"Mordresh Fire Eye",7357}, {"Glutton",8567}} + }, + { 189, 796, "Scarlet Monastery", "D", 5, 1, { 45, 44 }, + {}, + {} -- Empty boss list allows logging of bosses in the wings (do not touch!) + }, + { 18901, 79601, "Scarlet Monastery (GY)", "D", 5, 1, { 45, 44 }, -- Bit of a hack here, the 4 wings don't have a separate ID, so we fake one for them + {}, -- No quests in GY + { {"Bloodmage Thalnos", 4543}, {"Interrogator Vishas", 3983} } + }, + { 18902, 79602, "Scarlet Monastery (Lib)", "D", 5, 1, { 45, 44 }, + { 1050, 1053, 1049, 1048, 1160, 1951 }, -- 1048+1053: kill 4 bosses needs Lib+Cath+Arm + { {"Arcanist Doan", 6487}, {"Houndmaster Loksey", 3974} } + }, + { 18903, 79603, "Scarlet Monastery (Cath)", "D", 5, 1, { 45, 44 }, + { 1053, 1048 }, -- 1048+1053: kill 4 bosses needs Lib+Cath+Arm + { {"Scarlet Commander Mograine", 3976}, {"High Inquisitor Whitemane", 3977}, {"High Inquisitor Fairbanks", 4542 } } + }, + { 18904, 79604, "Scarlet Monastery (Arm)", "D", 5, 1, { 45, 44 }, + { 1053, 1048 }, -- 1048+1053: kill 4 bosses needs Lib+Cath+Arm + { {"Herod", 3975} } + }, + { 70, 1137, "Uldaman", "D", 5, 1, { 51, 44 }, + { 2240, 1139, 2204 }, -- 2278 removed (inside completion) + {{"Archaedas",2748}, {"Revelosh",6910}, {"Ironaya",7228}, {"Obsidian Sentinel",7023}, {"Ancient Stone Keeper",7206}, {"Galgann Firehammer",7291}, {"Grimlok",4854}} + }, + { 209, 1176, "Zul'Farrak", "D", 5, 1, { 54, 50 }, + { 3042, 2865, 2846, 2768, 2770, 3527, 2991, 2936 }, + {{"Chief Ukorz Sandscalp",7267}, {"Ruuzlu",7797}, {"Antu'sul",8127}, {"Theka the Martyr",7272}, {"Witch Doctor Zum'rah",7271}, {"Nekrum Gutchewer",7796}, {"Shadowpriest Sezz'ziz",7275}, {"Sergeant Bly",7604}, {"Hydromancer Velratha",7795}} + }, + { 349, 2100, "Maraudon", "D", 5, 1, { 55, 52 }, + { 7041, 7029, 7065, 7064, 7067 }, -- 7044+7046 removed (inside completion) + {{"Princess Theradras",12201}, {"Noxxion",13282}, {"Razorlash",12258}, {"Lord Vyletongue",12236}, {"Celebras the Cursed",12225}, {"Landslide",12203}, {"Tinkerer Gizlock",13601}, {"Rotgrip",13596}} + }, + { 109, 1477, "The Temple of Atal'Hakkar", "D", 5, 1, { 60, 54 }, + { 3528 }, -- 1475, 4143, 4146, removed: tablets and haze drop outside; 3446+3373+3447 removed (inside completion) + {{"Shade of Eranikus",5709}, {"Atal'alarion",8580}, {"Dreamscythe",5721}, {"Weaver",5720}, {"Jammal'an the Prophet",5710}, {"Ogom the Wretched",5711}, {"Morphaz",5719}, {"Hazzas",5722}, {"Avatar of Hakkar",8443}} + }, + { 229, 1583, "Blackrock Spire", "D", 10, 1, { 60, 62 }, + { 4701, 4724, 4903, 4862, 4729, 4788, 4768, 4974, 4764, 5102, 6821 }, -- 4982+5001+7761 removed (inside completion) + {{"General Drakkisath",10363}, {"Highlord Omokk",9196}, {"Shadow Hunter Vosh'gajin",9236}, {"War Master Voone",9237}, {"Mor Grayhoof",16080}, {"Mother Smolderweb",10596}, + {"Urok Doomhowl",10584}, {"Quartermaster Zigris",9736}, {"Halycon",10220}, {"Gizrul the Slavener",10268},{"Overlord Wyrmthalak",9537}, + {"Pyroguard Emberseer",9816}, {"Solakar Flamewreath",10264}, {"Goraluk Anvilcrack",10899}, {"Warchief Rend Blackhand",10429}, {"Gyth",10339}, {"The Beast",10430} + } + }, -- UBRS and LBRS are one instance + { 230, 1584, "Blackrock Depths", "D", 5, 1, { 60, 60 }, + { 4136, 4123, 4286, 4126, 4081, 4134 }, + {{"Emperor Dagran Thaurissan",9019}, {"Lord Roccor",9025}, {"Bael'Gar",9016}, {"Houndmaster Grebmar",9319}, {"High Interrogator Gerstahn",9018}, {"High Justice Grimstone",10096}, + {"Pyromancer Loregrain",9024}, {"General Angerforge",9033}, {"Golem Lord Argelmach",8983}, + {"Ribbly Screwspigot",9543}, {"Hurley Blackbreath",9537}, {"Plugger Spazzring",9499}, {"Phalanx",9502}, + {"Lord Incendius",9017}, {"Fineous Darkvire",9056}, {"Warder Stilgiss",9041}, {"Ambassador Flamelash",9156}, {"Magmus",9938}, + {"Princess Moira Bronzebeard",8929}} + }, + { 289, 2057, "Scholomance", "D", 5, 1, { 60, 62 }, + { 5529, 5582, 5382, 5384, 5466, 5343, 5341 }, + {{"Darkmaster Gandling",1853}, {"Kirtonos the Herald",10506}, {"Jandice Barov",10503}, {"Rattlegore",11622}, {"Marduk Blackpool",10433}, {"Vectus",10432}, {"Ras Frostwhisper",10508}, {"Instructor Malicia",10505}, {"Doctor Theolin Krastinov",11261}, {"Lorekeeper Polkelt",10901}, {"The Ravenian",10507}, {"Lord Alexei Barov",10504}, {"Lady Ilucia Barov",10502}} + }, + { 429, 2557, "Dire Maul", "D", 5, 1, { 60, 62 }, + { 7488, 7489, 7441, 5526 }, -- 7461+7462+7703 removed (inside completion) + { {"King Gordok",11501},{"Pusillin",14354},{"Lethendris",14327}, {"Hydrospawn",13280}, {"Zevrim Thornhoof",11490},{"Alzzin the Wildshaper",11492}, + {"Guard Mol'dar",14326},{"Stomper Kreeg",14322},{"Guard Fengus",14321},{"Guard Slip'kik",14323},{"Captain Kromcrush",14325},{"Cho'Rush the Observer",14324}, + {"Tendris Warpwood",11489},{"Magister Kalendris",11487},{"Tsu'zee",11467},{"Illyanna Ravenoak",11488},{"Immol'thar",11496},{"Prince Tortheldrin",11486}, + } + }, + { 329, 2017, "Stratholme", "D", 5, 1, { 60, 62 }, + { 5282, 5214, 5251, 5262, 5848, 5212, 5263, 5243, 6163 }, -- 5122+5463+8945 removed (inside completion) + { {"Baron Rivendare",10440}, + {"Fras Siabi",11058}, {"The Unforgiven",10516}, {"Postmaster Malown",11143},{"Timmy the Cruel",10808}, + {"Malor the Zealous",11032},{"Cannon Master Willey",10997}, {"Crimson Hammersmith",11120}, {"Archivist Galford",10811},{"Balnazzar",10813}, + {"Magistrate Barthilas",10435},{"Nerub'enkan",10437}, {"Baroness Anastari",10436}, {"Maleki the Pallid",10438},{"Ramstein the Gorger",10439} + } + }, -- Undead / Live parts are one instance + + -- Era Raids + { 249, 2159, "Onyxia's Lair", "R", 40, 1000, { 1000, 1000 }, {} }, + { 309, 1977, "Zul'Gurub", "R", 20, 1000, { 1000, 1000 }, {} }, + { 409, 2717, "Molten Core", "R", 40, 1000, { 1000, 1000 }, {} }, + { 469, 2677, "Blackwing Lair", "R", 40, 1000, { 1000, 1000 }, {} }, + { 509, 3429, "Ruins of Ahn'Qiraj", "R", 20, 1000, { 1000, 1000 }, {} }, + { 531, 3428, "Ahn'Qiraj", "R", 40, 1000, { 1000, 1000 }, {} }, + + -- Era Battlegrounds + { 489, 3277, "Warsong Gulch", "B", 10, 1000, { 1000, 1000 }, {} }, + { 30, 2597, "Alterac Valley", "B", 40, 1000, { 1000, 1000 }, {} }, + { 529, 3358, "Arathi Basin", "B", 15, 1000, { 1000, 1000 }, {} }, + + -- TBC dungeons + { 543, 3562, "Hellfire Ramparts", "D", 5, 1, { 1000, 64 }, { 9575, 9572, 9587, 9588 } }, + { 542, 3713, "The Blood Furnace", "D", 5, 1, { 1000, 65 }, { 9607, 9608, 9589, 9590 } }, + { 547, 3717, "The Slave Pens", "D", 5, 1, { 1000, 66 }, { 9738 } }, + { 546, 3716, "The Underbog", "D", 5, 1, { 1000, 66 }, { 9738, 9717, 9719 } }, -- 9715 removed because also drops in Steamvault + { 557, 3792, "Mana-Tombs", "D", 5, 1, { 1000, 68 }, { 10216, 10218, 10165 } }, + { 558, 3790, "Auchenai Crypts", "D", 5, 1, { 1000, 70 }, { 10164, 10167 } }, -- "All remaining TBC dungeons have a MAX level of 70" + { 560, 2367, "Old Hillsbrad Foothills", "D", 5, 1, { 1000, 70 }, { 10283, 10284, 10285 } }, + { 556, 3791, "Sethekk Halls", "D", 5, 1, { 1000, 70 }, { 10097, 10098 } }, + { 553, 3847, "The Botanica", "D", 5, 1, { 1000, 70 }, { 10704, 10257, 10897 } }, + { 555, 3789, "Shadow Labyrinth", "D", 5, 1, { 1000, 70 }, { 10885, 10094, 10095, 10091, 10649, 10666, 9831 } }, + { 545, 3715, "The Steamvault", "D", 5, 1, { 1000, 70 }, { 9763, 9832, 10667, 10885 } }, + { 540, 3714, "The Shattered Halls", "D", 5, 1, { 1000, 70 }, { 9492, 9495, 9493, 9496, 10670 } }, + { 554, 3849, "The Mechanar", "D", 5, 1, { 1000, 70 }, { 10704, 10665 } }, + { 269, 2366, "The Black Morass", "D", 5, 1, { 1000, 70 }, { 10296, 10297, 10298, 9836, 9837, 10902 } }, + { 552, 3848, "The Arcatraz", "D", 5, 1, { 1000, 70 }, { 9832, 10886 } }, + { 585, 4131, "Magisters' Terrace", "D", 5, 1, { 1000, 70 }, { 11492, 11499 } }, + -- TBC Raids + { 532, 3457, "Karazhan", "R", 10, 1000, { 1000, 1000 }, {} }, + { 533, 3456, "Naxxramas", "R", 40, 1000, { 1000, 1000 }, {} }, + { 534, 3606, "Hyjal Summit", "R", 25, 1000, { 1000, 1000 }, {} }, + { 544, 3836, "Magtheridon's Lair", "R", 25, 1000, { 1000, 1000 }, {} }, + { 548, 3607, "Serpentshrine Cavern", "R", 25, 1000, { 1000, 1000 }, {} }, + { 564, 3959, "Black Temple", "R", 25, 1000, { 1000, 1000 }, {} }, + { 565, 3923, "Gruul's Lair", "R", 25, 1000, { 1000, 1000 }, {} }, + { 568, 3805, "Zul'Aman", "R", 10, 1000, { 1000, 1000 }, {} }, + { 580, 4075, "Sunwell Plateau", "R", 25, 1000, { 1000, 1000 }, {} }, + { 550, 3845, "Tempest Keep", "R", 25, 1000, { 1000, 1000 }, {} }, + -- TBC Battlegrounds + { 566, 3820, "The Eye of the Storm", "B", 15, 1000, { 1000, 1000 }, {} }, +} \ No newline at end of file diff --git a/id_to_npc_classic.lua b/id_to_npc_classic.lua index 4f10baef..4a2139c2 100644 --- a/id_to_npc_classic.lua +++ b/id_to_npc_classic.lua @@ -1 +1 @@ -id_to_npc = {[3]="Flesh Eater",[6]="Kobold Vermin",[19]="Benny Questgiver",[29]="Kanrethad",[30]="Forest Spider",[31]="Furbolg",[36]="Harvest Golem",[38]="Defias Thug",[40]="Kobold Miner",[43]="Mine Spider",[46]="Murloc Forager",[48]="Skeletal Warrior",[49]="Lesser Succubus",[54]="Corina Steele",[55]="Mean Ed the Blacksmith",[60]="Ruklar the Trapper",[61]="Thuros Lightfingers",[62]="Gug Fatcandle",[65]="Peasant Woman",[66]="Tharynn Bouden",[67]="[UNUSED] Marlon Darnik",[68]="Stormwind City Guard",[69]="Diseased Timber Wolf",[70]="[UNUSED] Lower Class Citizen",[71]="Rankist",[72]="[UNUSED] Antaris the Trader",[73]="Veraina the Apothecary",[74]="Kurran Steele",[75]="[UNUSED] Vashaum Nightwither",[78]="Janos Hammerknuckle",[79]="Narg the Taskmaster",[80]="Kobold Laborer",[81]="[UNUSED] Luglar the Clogger",[82]="Crazy Leonetti",[89]="Infernal",[90]="Sea Giant",[92]="Rock Elemental",[93]="Centaur",[94]="Cutpurse",[95]="Defias Smuggler",[97]="Riverpaw Runt",[98]="Riverpaw Taskmaster",[99]="Morgaine the Sly",[100]="Gruff Swiftbite",[102]="Bronze Dragonspawn",[103]="Garrick Padfoot",[105]="Tall Strider",[106]="Kodo Beast",[107]="Raptor",[108]="Green Dragonspawn",[109]="White Dragonspawn",[111]="Priest",[112]="Priestess",[113]="Stonetusk Boar",[114]="Harvest Watcher",[115]="Harvest Reaper",[116]="Bandit",[117]="Riverpaw Gnoll",[118]="Prowler",[119]="Longsnout",[120]="Forest Stalker",[121]="Defias Pathstalker",[122]="Defias Highwayman",[123]="Riverpaw Mongrel",[124]="Riverpaw Brute",[125]="Riverpaw Overseer",[126]="Murloc Coastrunner",[127]="Murloc Tidehunter",[128]="Angry Programmer Tweedle Dee",[129]="Angry Programmer Tweedle Dum",[130]="Programmer Vendor",[149]="[UNUSED] Small Black Dragon Whelp",[150]="[UNUSED] Brother Milius",[151]="Brog Hamfist",[152]="Brother Danil",[153]="Bethina",[154]="Greater Fleshripper",[157]="Goretusk",[161]="[UNUSED] Ander the Monk",[165]="[UNUSED] Small Child",[167]="Morhan Coppertongue",[171]="Murloc Warrior",[190]="Dermot Johns",[193]="Blue Dragonspawn",[196]="Eagan Peltskinner",[197]="Marshal McBride",[198]="Khelden Bremen",[199]="Young Fleshripper",[202]="Rotting Horror",[203]="Skeletal Mage",[204]="[UNUSED] Cackle Flamebone",[205]="Nightbane Dark Runner",[206]="Nightbane Vile Fang",[210]="Bone Chewer",[212]="Splinter Fist Warrior",[213]="Starving Dire Wolf",[215]="Defias Night Runner",[217]="Venom Web Spider",[218]="Grave Robber",[222]="Nillen Andemar",[223]="Dan Golthas",[225]="Gavin Gnarltree",[226]="Morg Gnarltree",[227]="Mabel Solaj",[228]="Avette Fellwood",[232]="Farmer Ray",[233]="Farmer Saldean",[234]="Marshal Gryan Stoutmantle",[235]="Salma Saldean",[237]="Farmer Furlbrow",[238]="Verna Furlbrow",[239]="Grimbooze Thunderbrew",[240]="Marshal Dughan",[243]="[UNUSED] Greeby Mudwhisker TEST",[244]="Ma Stonefield",[247]="Billy Maclure",[248]="Gramma Stonefield",[250]="Pa Maclure",[251]="Maybell Maclure",[252]="Tommy Joe Stonefield",[253]="William Pestle",[255]="Gerard Tiller",[257]="Kobold Worker",[258]="Joshua Maclure",[261]="Guard Thomas",[263]="Lord Ello Ebonlocke",[264]="Commander Althea Ebonlocke",[265]="Madame Eva",[266]="Wiley the Black",[267]="Clerk Daltry",[268]="Sirra Von'Indi",[269]="Role Dreuger",[270]="Councilman Millstipe",[271]="Ambassador Berrybuck",[272]="Chef Grual",[273]="Tavernkeep Smitts",[274]="Barkeep Hann",[275]="Whit Wantmal",[276]="Viktori Prism'Antras",[277]="Roberto Pupellyverbos",[278]="Sara Timberlain",[279]="Morgan Pestle",[280]="Placeholder - Jasperlode Mine",[284]="Brown Horse",[285]="Murloc",[287]="Placeholder - Darkhollow Mine",[288]="Jitters",[289]="Abercrombie",[290]="Placeholder - Fargodeep Mine",[291]="Placeholder Chest of Drawers",[294]="Marshal Haggard",[295]="Innkeeper Farley",[296]="[UNUSED] Goodmother Jans",[297]="Caretaker Folsom",[299]="Young Wolf",[300]="Zzarc' Vul",[302]="Blind Mary",[304]="Felsteed",[305]="White Stallion",[306]="Palomino",[307]="Pinto",[308]="Black Stallion",[311]="Sven Yorgen",[313]="Theocritus",[314]="Eliza",[315]="Stalvan Mistmantle",[319]="[UNUSED] Brother Benthas",[325]="Hogan Ference",[327]="Goldtooth",[328]="Zaldimar Wefhellt",[329]="Earth Elemental",[330]="Princess",[331]="Maginor Dumas",[332]="Master Mathias Shaw",[334]="Gath'Ilzogg",[335]="Singe",[338]="Mazen Mac'Nadir",[339]="[UNUSED] Helgor the Pugilist",[340]="Kendor Kabonka",[341]="Foreman Oslow",[342]="Martie Jainrose",[343]="Chef Breanna",[344]="Magistrate Solomon",[345]="Bellygrub",[346]="Barkeep Daniels",[347]="Grizzle Halfmane",[348]="Zem Leeward",[349]="Corporal Keeshan",[351]="Peasant",[352]="Dungar Longdrink",[353]="Antonia Dart",[356]="Black Wolf",[358]="Timber Wolf",[359]="Riding Wolf (Winter)",[365]="Scott's Flying Mount",[372]="Karm Ironquill",[374]="Cog Glitzspinner",[375]="Priestess Anetta",[376]="High Priestess Laurena",[377]="Priestess Josetta",[379]="Darcy Parker",[381]="Dockmaster Baren",[382]="Marshal Marris",[383]="Jason Mathers",[384]="Katie Hunter",[385]="Horse",[390]="Porcine Entourage",[391]="Old Murk-Eye",[392]="Captain Grayson",[395]="Markus",[397]="Grand Magus Doane",[399]="Boy - placeholder 05",[412]="Stitches",[415]="Verner Osgood",[416]="Imp",[417]="Felhunter",[422]="Murloc Flesheater",[423]="Redridge Mongrel",[424]="Redridge Poacher",[426]="Redridge Brute",[428]="Dire Condor",[429]="Shadowhide Darkweaver",[430]="Redridge Mystic",[431]="Shadowhide Slayer",[432]="Shadowhide Brute",[433]="Shadowhide Gnoll",[434]="Rabid Shadowhide Gnoll",[435]="Blackrock Champion",[436]="Blackrock Shadowcaster",[437]="Blackrock Renegade",[440]="Blackrock Grunt",[441]="Black Dragon Whelp",[442]="Tarantula",[445]="Redridge Alpha",[446]="Redridge Basher",[448]="Hogger",[449]="Defias Knuckleduster",[450]="Defias Renegade Mage",[452]="Riverpaw Bandit",[453]="Riverpaw Mystic",[454]="Young Goretusk",[456]="Murloc Minor Oracle",[458]="Murloc Hunter",[459]="Drusilla La Salle",[460]="Alamar Grimm",[461]="Demisette Cloyce",[462]="Vultros",[464]="Watch Captain Parker",[465]="Barkeep Dobbins",[466]="General Marcus Jonathan",[467]="The Defias Traitor",[468]="Town Crier",[469]="Lieutenant Doren",[471]="Mother Fang",[472]="Fedfennel",[473]="Morgan the Collector",[474]="Rogue Wizard",[475]="Kobold Tunneler",[476]="Kobold Geomancer",[478]="Riverpaw Outrunner",[480]="Rusty Harvest Golem",[481]="Defias Footpad",[482]="Elling Trias",[483]="Elaine Trias",[485]="Blackrock Outrunner",[486]="Tharil'zun",[487]="Protector Bialon",[488]="Protector Weaver",[489]="Protector Dutfield",[490]="Protector Gariel",[491]="Quartermaster Lewis",[494]="Watcher Bukouris",[495]="Watcher Keefer",[499]="Watcher Paige",[500]="Riverpaw Scout",[501]="Riverpaw Herbalist",[502]="Benny Blaanco",[503]="Lord Malathrom",[504]="Defias Trapper",[505]="Greater Tarantula",[506]="Sergeant Brashclaw",[507]="Fenros",[509]="[UNUSED] Long Fang",[510]="Water Elemental",[511]="Insane Ghoul",[513]="Murloc Netter",[514]="Smith Argus",[515]="Murloc Raider",[517]="Murloc Oracle",[518]="Yowler",[519]="Slark",[520]="Brack",[521]="Lupos",[522]="Mor'Ladim",[523]="Thor",[524]="Rockhide Boar",[525]="Mangy Wolf",[531]="Skeletal Fiend",[533]="Nightbane Shadow Weaver",[534]="Nefaru",[539]="Pygmy Venom Web Spider",[543]="Nalesette Wildbringer",[544]="Murloc Nightcrawler",[545]="Murloc Tidecaller",[547]="Great Goretusk",[548]="Murloc Minor Tidecaller",[550]="Defias Messenger",[565]="Rabid Dire Wolf",[568]="Shadowhide Warrior",[569]="Green Recluse",[570]="Brain Eater",[572]="Leprithus",[573]="Foe Reaper 4000",[574]="Naraxis",[575]="Fire Elemental",[576]="Watcher Ladimore",[578]="Murloc Scout",[579]="Shadowhide Assassin",[580]="Redridge Drudger",[582]="Old Blanchy",[583]="Ambusher",[584]="Kazon",[587]="Bloodscalp Warrior",[588]="Bloodscalp Scout",[589]="Defias Pillager",[590]="Defias Looter",[594]="Defias Henchman",[595]="Bloodscalp Hunter",[596]="Brainwashed Noble",[597]="Bloodscalp Berserker",[598]="Defias Miner",[599]="Marisa du'Paige",[603]="Grimtooth",[604]="Plague Spreader",[612]="[UNUSED] Rabid Mrs. Whipple",[615]="Blackrock Tracker",[616]="Chatter",[619]="Defias Conjurer",[620]="Chicken",[622]="Goblin Engineer",[623]="Skeletal Miner",[624]="Undead Excavator",[625]="Undead Dynamiter",[626]="Foreman Thistlenettle",[628]="Black Ravager",[633]="Elaine Carevin",[634]="Defias Overseer",[636]="Defias Blackguard",[639]="Edwin VanCleef",[641]="Goblin Woodcarver",[642]="Sneed's Shredder",[643]="Sneed",[644]="Rhahk'Zor",[645]="Cookie",[646]="Mr. Smite",[647]="Captain Greenskin",[648]="Bridge Worker Trent",[649]="Bridge Worker Dmitri",[650]="Bridge Worker Jess",[651]="Bridge Worker Daniel",[652]="Bridge Worker Matthew",[653]="Bridge Worker Alex",[656]="Wilder Thistlenettle",[657]="Defias Pirate",[658]="Sten Stoutarm",[659]="El Pollo Grande",[660]="Bloodscalp Witch Doctor",[661]="Jonathan Carevin",[663]="Calor",[664]="Benjamin Carevin",[667]="Skullsplitter Warrior",[669]="Skullsplitter Hunter",[670]="Skullsplitter Witch Doctor",[671]="Bloodscalp Headhunter",[672]="Skullsplitter Spiritchaser",[674]="Venture Co. Strip Miner",[675]="Venture Co. Foreman",[676]="Venture Co. Surveyor",[677]="Venture Co. Tinkerer",[678]="Mosh'Ogg Mauler",[679]="Mosh'Ogg Shaman",[680]="Mosh'Ogg Lord",[681]="Young Stranglethorn Tiger",[682]="Stranglethorn Tiger",[683]="Young Panther",[684]="Shadowmaw Panther",[685]="Stranglethorn Raptor",[686]="Lashtail Raptor",[687]="Jungle Stalker",[688]="Stone Maw Basilisk",[689]="Crystal Spine Basilisk",[690]="Cold Eye Basilisk",[691]="Lesser Water Elemental",[694]="Bloodscalp Axe Thrower",[696]="Skullsplitter Axe Thrower",[697]="Bloodscalp Shaman",[698]="Bloodscalp Tiger",[699]="Bloodscalp Beastmaster",[701]="Bloodscalp Mystic",[702]="Bloodscalp Scavenger",[703]="General Fangore",[704]="Ragged Timber Wolf",[705]="Ragged Young Wolf",[706]="Frostmane Troll Whelp",[707]="Rockjaw Trogg",[708]="Small Crag Boar",[709]="Mosh'Ogg Warmonger",[710]="Mosh'Ogg Spellcrafter",[711]="Ardo Dirtpaw",[712]="Redridge Thrasher",[713]="Balir Frosthammer",[714]="Talin Keeneye",[715]="Hemet Nesingwary Jr.",[716]="Barnil Stonepot",[717]="Ajeck Rouack",[718]="Sir S. J. Erlgadin",[721]="Rabbit",[723]="Mosh'Ogg Butcher",[724]="Burly Rockjaw Trogg",[727]="Ironforge Mountaineer",[728]="Bhag'thera",[729]="Sin'Dall",[730]="Tethis",[731]="King Bangalash",[732]="Murloc Lurker",[733]="Sergeant Yohwa",[734]="Corporal Bluth",[735]="Murloc Streamrunner",[736]="Panther",[737]="Kebok",[738]="Private Thorsen",[739]="Brother Nimetz",[740]="Adolescent Whelp",[741]="Dreaming Whelp",[742]="Green Wyrmkin",[743]="Wyrmkin Dreamwalker",[744]="Green Scalebane",[745]="Scalebane Captain",[746]="Elder Dragonkin",[747]="Marsh Murloc",[750]="Marsh Inkspewer",[751]="Marsh Flesheater",[752]="Marsh Oracle",[754]="Rebel Watchman",[755]="Lost One Mudlurker",[756]="Skullsplitter Panther",[757]="Lost One Fisherman",[759]="Lost One Hunter",[760]="Lost One Muckdweller",[761]="Lost One Seer",[762]="Lost One Riftseeker",[763]="Lost One Chieftain",[764]="Swampwalker",[765]="Swampwalker Elder",[766]="Tangled Horror",[767]="Swamp Jaguar",[768]="Shadow Panther",[769]="Deathstrike Tarantula",[770]="Corporal Kaleb",[771]="Commander Felstrom",[772]="Stranglethorn Tigress",[773]="Krazek",[775]="Kurzen's Agent",[777]="Amy Davenport",[780]="Skullsplitter Mystic",[781]="Skullsplitter Headhunter",[782]="Skullsplitter Scout",[783]="Skullsplitter Berserker",[784]="Skullsplitter Beastmaster",[785]="Skeletal Warder",[786]="Grelin Whitebeard",[787]="Skeletal Healer",[789]="Kimberly Hiett",[790]="Karen Taylor",[791]="Lindsay Ashlock",[793]="Kara Adams",[794]="Matt",[795]="Mark",[796]="Joshua",[797]="Bo",[798]="Solomon",[799]="Kevin",[800]="Kyle",[801]="Eric",[802]="Jay",[804]="Dana",[805]="Cameron",[806]="John",[807]="Lisa",[808]="Grik'nir the Cold",[810]="Aaron",[811]="Jose",[812]="Alma Jainrose",[813]="Colonel Kurzen",[814]="Sergeant Malthus",[815]="Bookie Herod",[818]="Mai'Zoth",[819]="Servant of Ilgalar",[820]="Scout Riell",[821]="Captain Danuvin",[822]="Young Forest Bear",[823]="Sergeant Willem",[824]="Defias Digger",[826]="Watcher Jan",[827]="Watcher Mocarski",[828]="Watcher Petras",[829]="Adlin Pridedrift",[830]="Sand Crawler",[831]="Sea Crawler",[832]="Unbound Cyclone",[833]="Coyote Packleader",[834]="Coyote",[836]="Durnan Furcutter",[837]="Branstock Khalder",[840]="Watcher Backus",[842]="Lumberjack",[843]="Gina MacGregor",[844]="Antonio Perelli",[846]="Rotten Ghoul",[847]="Nathan",[848]="Madison",[849]="Rachel",[850]="Erin",[851]="Hannah",[852]="Feral Spirit",[853]="Coldridge Mountaineer",[854]="Young Jungle Stalker",[855]="Young Stranglethorn Raptor",[856]="Young Lashtail Raptor",[857]="Donal Osgood",[858]="Sorrow Spinner",[859]="Guard Berton",[861]="Stonard Scout",[862]="Stonard Explorer",[863]="Stonard Hunter",[864]="Stonard Orc",[865]="Stonard Wayfinder",[866]="Stonard Grunt",[867]="Stonard Cartographer",[868]="Stonard Shaman",[869]="Protector Dorana",[870]="Protector Deni",[871]="Saltscale Warrior",[873]="Saltscale Oracle",[874]="Protector Korelor",[875]="Saltscale Tide Lord",[876]="Protector Leick",[877]="Saltscale Forager",[878]="Scout Galiaan",[879]="Saltscale Hunter",[880]="Erlan Drudgemoor",[881]="Surena Caledon",[883]="Deer",[885]="Watcher Keller",[886]="Watcher Hartin",[887]="Watcher Jordan",[888]="Watcher Dodds",[889]="Splinter Fist Ogre",[890]="Fawn",[891]="Splinter Fist Fire Weaver",[892]="Splinter Fist Taskmaster",[893]="Lars",[894]="Homer Stonefield",[895]="Thorgas Grimson",[896]="Veldan Lightfoot",[898]="Nightbane Worgen",[900]="Bailiff Conacher",[903]="Guard Howe",[905]="Sharptooth Frenzy",[906]="Maximillian Crowe",[907]="Keras Wolfheart",[908]="Flora Silverwind",[909]="Defias Night Blade",[910]="Defias Enchanter",[911]="Llane Beshere",[912]="Thran Khorman",[913]="Lyria Du Lac",[914]="Ander Germaine",[915]="Jorik Kerridan",[916]="Solm Hargrin",[917]="Keryn Sylvius",[918]="Osborne the Night Man",[920]="Nightbane Tainted One",[921]="Venture Co. Lumberjack",[922]="Silt Crawler",[923]="Young Black Ravager",[925]="Brother Sammuel",[926]="Bromos Grummner",[927]="Brother Wilhelm",[928]="Lord Grayson Shadowbreaker",[930]="Black Widow Hatchling",[931]="Ariena Stormfeather",[932]="Guard Ashlock",[933]="Guard Hiett",[934]="Guard Clarke",[935]="Guard Pearce",[936]="Guard Adams",[937]="Kurzen Jungle Fighter",[938]="Kurzen Commando",[939]="Kurzen Elite",[940]="Kurzen Medicine Man",[941]="Kurzen Headshrinker",[942]="Kurzen Witch Doctor",[943]="Kurzen Wrangler",[944]="Marryk Nurribit",[945]="Rybrad Coldbank",[946]="Frostmane Novice",[947]="Rohh the Silent",[948]="Rotted One",[949]="Carrion Recluse",[950]="Swamp Talker",[951]="Brother Paxton",[952]="Brother Neals",[954]="Kat Sampson",[955]="Sergeant De Vries",[956]="Dorin Songblade",[957]="Dane Lindgren",[958]="Dawn Brightstar",[959]="Morley Eberlein",[960]="Gunder Thornbush",[963]="Deputy Rainer",[976]="Kurzen War Tiger",[977]="Kurzen War Panther",[978]="Kurzen Subchief",[979]="Kurzen Shadow Hunter",[980]="Grimnal",[981]="Hartash",[982]="Thultash",[983]="Thultazor",[984]="Thralosh",[985]="Malosh",[986]="Haromm",[987]="Ogromm",[988]="Kartosh",[989]="Banalash",[999]="Watcher Royce",[1000]="Watcher Blomberg",[1001]="Watcher Hutchins",[1007]="Mosshide Gnoll",[1008]="Mosshide Mongrel",[1009]="Mosshide Mistweaver",[1010]="Mosshide Fenrunner",[1011]="Mosshide Trapper",[1012]="Mosshide Brute",[1013]="Mosshide Mystic",[1014]="Mosshide Alpha",[1015]="Highland Raptor",[1016]="Highland Lashtail",[1017]="Highland Scytheclaw",[1018]="Highland Razormaw",[1019]="Elder Razormaw",[1020]="Mottled Raptor",[1021]="Mottled Screecher",[1022]="Mottled Scytheclaw",[1023]="Mottled Razormaw",[1024]="Bluegill Murloc",[1025]="Bluegill Puddlejumper",[1026]="Bluegill Forager",[1027]="Bluegill Warrior",[1028]="Bluegill Muckdweller",[1029]="Bluegill Oracle",[1030]="Black Slime",[1031]="Crimson Ooze",[1032]="Black Ooze",[1033]="Monstrous Ooze",[1034]="Dragonmaw Raider",[1035]="Dragonmaw Swamprunner",[1036]="Dragonmaw Centurion",[1037]="Dragonmaw Battlemaster",[1038]="Dragonmaw Shadowwarder",[1039]="Fen Dweller",[1040]="Fen Creeper",[1041]="Fen Lord",[1042]="Red Whelp",[1043]="Lost Whelp",[1044]="Flamesnorting Whelp",[1045]="Red Dragonspawn",[1046]="Red Wyrmkin",[1047]="Red Scalebane",[1048]="Scalebane Lieutenant",[1049]="Wyrmkin Firebrand",[1050]="Scalebane Royal Guard",[1051]="Dark Iron Dwarf",[1052]="Dark Iron Saboteur",[1053]="Dark Iron Tunneler",[1054]="Dark Iron Demolitionist",[1057]="Dragonmaw Bonewarder",[1059]="Ana'thek the Cruel",[1060]="Mogh the Undying",[1061]="Gan'zulah",[1062]="Nezzliok the Dire",[1063]="Jade",[1064]="Grom'gol Grunt",[1065]="Riverpaw Shaman",[1068]="Gorn",[1069]="Crimson Whelp",[1070]="Deputy Feldon",[1071]="Longbraid the Grim",[1072]="Roggo Harlbarrow",[1073]="Ashlan Stonesmirk",[1074]="Motley Garmason",[1075]="Rhag Garmason",[1076]="Merrin Rockweaver",[1077]="Prospector Whelgar",[1078]="Ormer Ironbraid",[1081]="Mire Lord",[1082]="Sawtooth Crocolisk",[1083]="Murloc Shorestriker",[1084]="Young Sawtooth Crocolisk",[1085]="Elder Stranglethorn Tiger",[1087]="Sawtooth Snapper",[1088]="Monstrous Crawler",[1089]="Mountaineer Cobbleflint",[1090]="Mountaineer Wallbang",[1091]="Mountaineer Gravelgaw",[1092]="Captain Rugelfuss",[1093]="Chief Engineer Hinderweir VII",[1094]="Venture Co. Miner",[1095]="Venture Co. Workboss",[1096]="Venture Co. Geologist",[1097]="Venture Co. Mechanic",[1098]="Watcher Merant",[1099]="Watcher Gelwin",[1100]="Watcher Selkin",[1101]="Watcher Thayer",[1103]="Eldrin",[1104]="Grundel Harkin",[1105]="Jern Hornhelm",[1106]="Lost One Cook",[1108]="Mistvale Gorilla",[1109]="Fleshripper",[1110]="Skeletal Raider",[1111]="Leech Stalker",[1112]="Leech Widow",[1114]="Jungle Thunderer",[1115]="Rockjaw Skullthumper",[1116]="Rockjaw Ambusher",[1117]="Rockjaw Bonesnapper",[1118]="Rockjaw Backbreaker",[1119]="Hammerspine",[1120]="Frostmane Troll",[1121]="Frostmane Snowstrider",[1122]="Frostmane Hideskinner",[1123]="Frostmane Headhunter",[1124]="Frostmane Shadowcaster",[1125]="Crag Boar",[1126]="Large Crag Boar",[1127]="Elder Crag Boar",[1128]="Young Black Bear",[1129]="Black Bear",[1130]="Bjarn",[1131]="Winter Wolf",[1132]="Timber",[1133]="Starving Winter Wolf",[1134]="Young Wendigo",[1135]="Wendigo",[1137]="Edan the Howler",[1138]="Snow Tracker Wolf",[1139]="Magistrate Bluntnose",[1140]="Razormaw Matriarch",[1141]="Angus Stern",[1142]="Mosh'Ogg Brute",[1144]="Mosh'Ogg Witch Doctor",[1146]="Vharr",[1147]="Hragran",[1148]="Nerrist",[1149]="Uthok",[1150]="River Crocolisk",[1151]="Saltwater Crocolisk",[1152]="Snapjaw Crocolisk",[1153]="Torren Squarejaw",[1154]="Marek Ironheart",[1155]="Kelt Thomasin",[1156]="Vyrin Swiftwind",[1157]="Cursed Sailor",[1158]="Cursed Marine",[1159]="First Mate Snellig",[1160]="Captain Halyndor",[1161]="Stonesplinter Trogg",[1162]="Stonesplinter Scout",[1163]="Stonesplinter Skullthumper",[1164]="Stonesplinter Bonesnapper",[1165]="Stonesplinter Geomancer",[1166]="Stonesplinter Seer",[1167]="Stonesplinter Digger",[1169]="Dark Iron Insurgent",[1172]="Tunnel Rat Vermin",[1173]="Tunnel Rat Scout",[1174]="Tunnel Rat Geomancer",[1175]="Tunnel Rat Digger",[1176]="Tunnel Rat Forager",[1177]="Tunnel Rat Surveyor",[1178]="Mo'grosh Ogre",[1179]="Mo'grosh Enforcer",[1180]="Mo'grosh Brute",[1181]="Mo'grosh Shaman",[1182]="Brother Anton",[1183]="Mo'grosh Mystic",[1184]="Cliff Lurker",[1185]="Wood Lurker",[1186]="Black Bear",[1187]="Daryl the Youngling",[1188]="Grizzled Black Bear",[1189]="Black Bear Patriarch",[1190]="Mountain Boar",[1191]="Mangy Mountain Boar",[1192]="Elder Mountain Boar",[1193]="Loch Frenzy",[1194]="Mountain Buzzard",[1195]="Forest Lurker",[1196]="Ice Claw Bear",[1197]="Stonesplinter Shaman",[1198]="Rallic Finn",[1199]="Juvenile Snow Leopard",[1200]="Morbent Fel",[1201]="Snow Leopard",[1202]="Tunnel Rat Kobold",[1203]="Watcher Sarys",[1204]="Watcher Corwin",[1205]="Grawmug",[1206]="Gnasher",[1207]="Brawler",[1210]="Chok'sul",[1211]="Leper Gnome",[1212]="Bishop Farthing",[1213]="Godric Rothgar",[1214]="Aldren Cordon",[1215]="Alchemist Mallory",[1216]="Shore Crawler",[1217]="Glorin Steelbrow",[1218]="Herbalist Pomeroy",[1222]="Dark Iron Sapper",[1224]="Young Threshadon",[1225]="Ol' Sooty",[1226]="Maxan Anvol",[1227]="Rygal Rocknell",[1228]="Magis Sparkmantle",[1229]="Granis Swiftaxe",[1230]="[UNUSED] Lexin Haze",[1231]="Grif Wildheart",[1232]="Azar Stronghammer",[1233]="[UNUSED] Shaethis Darkoak",[1234]="Hogral Bakkan",[1236]="Kobold Digger",[1237]="Kazan Mogosh",[1238]="Gamili Frosthide",[1239]="First Mate Fitzsimmons",[1240]="Boran Ironclink",[1241]="Tognus Flintfire",[1242]="Karl Boran",[1243]="Hegnar Rumbleshot",[1244]="Rethiel the Greenwarden",[1245]="Kogan Forgestone",[1246]="Vosur Brakthel",[1247]="Innkeeper Belm",[1249]="Quartermaster Hudson",[1250]="Drake Lindgren",[1251]="Splinter Fist Firemonger",[1252]="Senir Whitebeard",[1253]="Father Gavin",[1254]="Foreman Stonebrow",[1255]="Prospector Gehn",[1256]="Quarrymaster Thesten",[1257]="Keldric Boucher",[1258]="Black Ravager Mastiff",[1259]="Gobbler",[1260]="Great Father Arctikus",[1261]="Veron Amberstill",[1263]="Yarlyn Amberstill",[1265]="Rudra Amberstill",[1266]="Tundra MacGrann",[1267]="Ragnar Thunderbrew",[1268]="Ozzie Togglevolt",[1269]="Razzle Sprysprocket",[1270]="Fetid Corpse",[1271]="Old Icebeard",[1273]="Grawn Thromwyn",[1274]="Senator Barin Redstone",[1275]="Kyra Boucher",[1276]="Mountaineer Brokk",[1277]="Mountaineer Ganin",[1278]="Mountaineer Stenn",[1279]="Mountaineer Flint",[1280]="Mountaineer Droken",[1281]="Mountaineer Zaren",[1282]="Mountaineer Veek",[1283]="Mountaineer Kalmir",[1284]="Archbishop Benedictus",[1285]="Thurman Mullby",[1286]="Edna Mullby",[1287]="Marda Weller",[1289]="Gunther Weller",[1291]="Carla Granger",[1292]="Maris Granger",[1293]="Ambo Cash",[1294]="Aldric Moore",[1295]="Lara Moore",[1296]="Felder Stover",[1297]="Lina Stover",[1298]="Frederick Stover",[1299]="Lisbeth Schneider",[1300]="Lawrence Schneider",[1301]="Julia Gallina",[1302]="Bernard Gump",[1303]="Felicia Gump",[1304]="Darian Singh",[1305]="Jarel Moor",[1307]="Charys Yserian",[1308]="Owen Vaughn",[1309]="Wynne Larson",[1310]="Evan Larson",[1311]="Joachim Brenlow",[1312]="Ardwyn Cailen",[1313]="Maria Lumere",[1314]="Duncan Cullen",[1315]="Allan Hafgan",[1316]="Adair Gilroy",[1317]="Lucan Cordell",[1318]="Jessara Cordell",[1319]="Bryan Cross",[1320]="Seoman Griffith",[1321]="Alyssa Griffith",[1322]="Maxton Strang",[1323]="Osric Strang",[1324]="Heinrich Stone",[1325]="Jasper Fel",[1326]="Sloan McCoy",[1327]="Reese Langston",[1328]="Elly Langston",[1329]="Mountaineer Naarh",[1330]="Mountaineer Tyraw",[1331]="Mountaineer Luxst",[1332]="Mountaineer Morran",[1333]="Gerik Koen",[1334]="Mountaineer Hammerfall",[1335]="Mountaineer Yuttha",[1336]="Mountaineer Zwarn",[1337]="Mountaineer Gwarth",[1338]="Mountaineer Dalk",[1339]="Mayda Thane",[1340]="Mountaineer Kadrell",[1341]="Wilhelm Strang",[1342]="Mountaineer Rockgar",[1343]="Mountaineer Stormpike",[1344]="Prospector Ironband",[1345]="Magmar Fellhew",[1346]="Georgio Bolero",[1347]="Alexandra Bolero",[1348]="Gregory Ardus",[1349]="Agustus Moulaine",[1350]="Theresa Moulaine",[1351]="Brother Cassius",[1352]="Fluffy",[1353]="Sarltooth",[1354]="Apprentice Soren",[1355]="Cook Ghilm",[1356]="Prospector Stormpike",[1358]="Miner Grothor",[1360]="Miner Grumnal",[1362]="Gothor Brumn",[1364]="Balgaras the Foul",[1365]="Goli Krumn",[1366]="Adam",[1367]="Billy",[1368]="Justin",[1370]="Brandon",[1371]="Roman",[1373]="Jarven Thunderbrew",[1374]="Rejold Barleybrew",[1375]="Marleth Barleybrew",[1376]="Beldin Steelgrill",[1377]="Pilot Stonegear",[1378]="Pilot Bellowfiz",[1379]="Miran",[1380]="Saean",[1381]="Krakk",[1382]="Mudduk",[1383]="Snarl",[1385]="Brawn",[1386]="Rogvar",[1387]="Thysta",[1388]="Vagash",[1393]="Berserk Trogg",[1395]="Ol' Beasley",[1397]="Frostmane Seer",[1398]="Boss Galgosh",[1399]="Magosh",[1400]="Wetlands Crocolisk",[1402]="Topper McNabb",[1404]="Kragg",[1405]="Morris Lawry",[1407]="Sranda",[1410]="Firewing Bloodwarder",[1411]="Ian Strom",[1412]="Squirrel",[1413]="Janey Anship",[1414]="Lisan Pierce",[1415]="Suzanne",[1416]="Grimand Elmore",[1417]="Young Wetlands Crocolisk",[1418]="Bluegill Raider",[1419]="Fizzles",[1420]="Toad",[1421]="Private Merle",[1422]="Corporal Sethman",[1423]="Stormwind Guard",[1424]="Master Digger",[1425]="Kubb",[1426]="Riverpaw Miner",[1427]="Harlan Bagley",[1428]="Rema Schneider",[1429]="Thurman Schneider",[1430]="Tomas",[1431]="Suzetta Gallina",[1432]="Renato Gallina",[1433]="Corbett Schneider",[1434]="Menethil Sentry",[1435]="Zardeth of the Black Claw",[1436]="Watcher Cutford",[1437]="Thomas Booker",[1439]="Lord Baurles K. Wishock",[1440]="Milton Sheaf",[1441]="Brak Durnad",[1442]="Helgrum the Swift",[1443]="Fel'zerul",[1444]="Brother Kristoff",[1445]="Jesse Halloran",[1446]="Regina Halloran",[1447]="Gimlok Rumdnul",[1448]="Neal Allen",[1449]="Witch Doctor Unbagwa",[1450]="Brahnmar",[1451]="Camerick Jongleur",[1452]="Gruham Rumdnul",[1453]="Dewin Shimmerdawn",[1454]="Jennabink Powerseam",[1456]="Kersok Prond",[1457]="Samor Festivus",[1458]="Telurinon Moonshadow",[1459]="Naela Trance",[1460]="Unger Statforth",[1461]="Murndan Derth",[1462]="Edwina Monzor",[1463]="Falkan Armonis",[1464]="Innkeeper Helbrek",[1465]="Drac Roughcut",[1466]="Gretta Finespindle",[1469]="Vrok Blunderblast",[1470]="Ghak Healtouch",[1471]="Jannos Ironwill",[1472]="Morgg Stormshot",[1473]="Kali Healtouch",[1474]="Rann Flamespinner",[1475]="Menethil Guard",[1476]="Hargin Mundar",[1477]="Christoph Faral",[1478]="Aedis Brom",[1479]="Timothy Clark",[1480]="Caitlin Grassman",[1481]="Bart Tidewater",[1482]="Andrea Halloran",[1483]="Murphy West",[1484]="Derina Rumdnul",[1487]="Splinter Fist Enslaver",[1488]="Zanzil Zombie",[1489]="Zanzil Hunter",[1490]="Zanzil Witch Doctor",[1491]="Zanzil Naga",[1492]="Gorlash",[1493]="Mok'rash the Cleaver",[1494]="Negolash",[1495]="Deathguard Linnea",[1496]="Deathguard Dillinger",[1497]="Gunther Arcanus",[1498]="Bethor Iceshard",[1499]="Magistrate Sevren",[1500]="Coleman Farthing",[1501]="Mindless Zombie",[1502]="Wretched Ghoul",[1504]="Young Night Web Spider",[1505]="Night Web Spider",[1506]="Scarlet Convert",[1507]="Scarlet Initiate",[1508]="Young Scavenger",[1509]="Ragged Scavenger",[1511]="Enraged Silverback Gorilla",[1512]="Duskbat",[1513]="Mangy Duskbat",[1514]="Mokk the Savage",[1515]="Executor Zygand",[1516]="Konda",[1518]="Apothecary Johaan",[1519]="Deathguard Simmer",[1520]="Rattlecage Soldier",[1521]="Gretchen Dedmar",[1522]="Darkeye Bonecaster",[1523]="Cracked Skull Soldier",[1525]="Rotting Dead",[1526]="Ravaged Corpse",[1527]="Hungering Dead",[1528]="Shambling Horror",[1529]="Bleeding Horror",[1530]="Rotting Ancestor",[1531]="Lost Soul",[1532]="Wandering Spirit",[1533]="Tormented Spirit",[1534]="Wailing Ancestor",[1535]="Scarlet Warrior",[1536]="Scarlet Missionary",[1537]="Scarlet Zealot",[1538]="Scarlet Friar",[1539]="Scarlet Neophyte",[1540]="Scarlet Vanguard",[1541]="Vile Fin Murloc",[1543]="Vile Fin Puddlejumper",[1544]="Vile Fin Minor Oracle",[1545]="Vile Fin Muckdweller",[1546]="[UNUSED] Kegnar Thraln",[1547]="Decrepit Darkhound",[1548]="Cursed Darkhound",[1549]="Ravenous Darkhound",[1550]="Thrashtail Basilisk",[1551]="Ironjaw Basilisk",[1552]="Scale Belly",[1553]="Greater Duskbat",[1554]="Vampiric Duskbat",[1555]="Vicious Night Web Spider",[1557]="Elder Mistvale Gorilla",[1558]="Silverback Patriarch",[1559]="King Mukla",[1560]="Yvette Farthing",[1561]="Bloodsail Raider",[1562]="Bloodsail Mage",[1563]="Bloodsail Swashbuckler",[1564]="Bloodsail Warlock",[1565]="Bloodsail Sea Dog",[1568]="Undertaker Mordo",[1569]="Shadow Priest Sarvis",[1570]="Executor Arren",[1571]="Shellei Brondir",[1572]="Thorgrum Borrelson",[1573]="Gryth Thurden",[1574]="Mage 1",[1575]="Mage 5",[1629]="Priest 20",[1632]="Adele Fielder",[1642]="Northshire Guard",[1645]="Quartermaster Hicks",[1646]="Baros Alexston",[1650]="Terry Palin",[1651]="Lee Brown",[1652]="Deathguard Burgess",[1653]="Bloodsail Elder Magus",[1654]="Gregor Agamand",[1655]="Nissa Agamand",[1656]="Thurman Agamand",[1657]="Devlin Agamand",[1658]="Captain Dargol",[1660]="Scarlet Bodyguard",[1661]="Novice Elreth",[1662]="Captain Perrine",[1663]="Dextren Ward",[1664]="Captain Vachon",[1665]="Captain Melrache",[1666]="Kam Deepfury",[1667]="Meven Korgal",[1668]="William MacGregor",[1669]="Defias Profiteer",[1670]="Mike Miller",[1671]="Lamar Veisilli",[1672]="Lohgan Eva",[1673]="Alyssa Eva",[1674]="Rot Hide Gnoll",[1675]="Rot Hide Mongrel",[1676]="Finbus Geargrind",[1678]="Vernon Hale",[1679]="Avarus Kharag",[1680]="Matthew Hooper",[1681]="Brock Stoneseeker",[1682]="Yanni Stoutheart",[1683]="Warg Deepwater",[1684]="Khara Deepwater",[1685]="Xandar Goodbeard",[1686]="Irene Sureshot",[1687]="Cliff Hadin",[1688]="Night Web Matriarch",[1689]="Scarred Crag Boar",[1690]="Thrawn Boltar",[1691]="Kreg Bilmn",[1692]="Golorn Frostbeard",[1693]="Loch Crocolisk",[1694]="Loslor Rudge",[1695]="Rendow",[1696]="Targorr the Dread",[1697]="Keeg Gibn",[1698]="Frast Dokner",[1699]="Gremlock Pilsnor",[1700]="Paxton Ganter",[1701]="Dank Drizzlecut",[1702]="Bronk Guzzlegear",[1703]="Uthrar Threx",[1706]="Prisoner",[1707]="Defias Captive",[1708]="Defias Inmate",[1711]="Convict",[1713]="Elder Shadowmaw Panther",[1715]="Insurgent",[1716]="Bazil Thredd",[1717]="Hamhock",[1718]="Rockjaw Raider",[1719]="Warden Thelwater",[1720]="Bruegal Ironknuckle",[1721]="Nikova Raskol",[1725]="Defias Watchman",[1726]="Defias Magician",[1727]="Defias Worker",[1729]="Defias Evoker",[1731]="Goblin Craftsman",[1732]="Defias Squallshaper",[1733]="Zggi",[1735]="Deathguard Abraham",[1736]="Deathguard Randolph",[1737]="Deathguard Oliver",[1738]="Deathguard Terrence",[1739]="Deathguard Phillip",[1740]="Deathguard Saltain",[1741]="Deathguard Bartrand",[1742]="Deathguard Bartholomew",[1743]="Deathguard Lawrence",[1744]="Deathguard Mort",[1745]="Deathguard Morris",[1746]="Deathguard Cyrus",[1747]="Anduin Wrynn",[1748]="Highlord Bolvar Fordragon",[1749]="Lady Katrana Prestor",[1750]="Grand Admiral Jes-Tereth",[1751]="Mithras Ironhill",[1752]="Caledra Dawnbreeze",[1753]="Maggot Eye",[1754]="Lord Gregor Lescovar",[1755]="Marzon the Silent Blade",[1756]="Stormwind Royal Guard",[1757]="Mega Rabbit",[1763]="Gilnid",[1764]="Greater Feral Spirit",[1765]="Worg",[1766]="Rabid Worg",[1767]="Vile Fin Shredder",[1768]="Vile Fin Tidehunter",[1769]="Moonrage Whitescalp",[1770]="Moonrage Darkrunner",[1772]="Rot Hide Gladerunner",[1773]="Rot Hide Mystic",[1775]="Zun'dartha",[1776]="Magtoor",[1777]="Dakk Blunderblast",[1778]="Ferocious Grizzled Bear",[1779]="Moonrage Glutton",[1780]="Skitterweb Striker",[1781]="Skitterweb Lurker",[1782]="Moonrage Darksoul",[1783]="Skeletal Flayer",[1784]="Skeletal Sorcerer",[1785]="Skeletal Terror",[1787]="Skeletal Executioner",[1788]="Skeletal Warlord",[1789]="Skeletal Acolyte",[1791]="Slavering Ghoul",[1793]="Rotting Ghoul",[1794]="Soulless Ghoul",[1795]="Searing Ghoul",[1796]="Freezing Ghoul",[1797]="Giant Rabid Bear",[1800]="Cold Wraith",[1801]="Blood Wraith",[1802]="Hungering Wraith",[1804]="Wailing Death",[1805]="Flesh Golem",[1806]="Vile Slime",[1808]="Devouring Ooze",[1809]="Carrion Vulture",[1812]="Rotting Behemoth",[1813]="Decaying Horror",[1815]="Diseased Black Bear",[1816]="Diseased Grizzly",[1817]="Diseased Wolf",[1821]="Carrion Lurker",[1822]="Venom Mist Lurker",[1824]="Plague Lurker",[1826]="Scarlet Mage",[1827]="Scarlet Sentinel",[1831]="Scarlet Hunter",[1832]="Scarlet Magus",[1833]="Scarlet Knight",[1834]="Scarlet Paladin",[1835]="Scarlet Invoker",[1836]="Scarlet Cavalier",[1837]="Scarlet Judge",[1838]="Scarlet Interrogator",[1839]="Scarlet High Clerist",[1840]="Grand Inquisitor Isillien",[1841]="Scarlet Executioner",[1842]="Highlord Taelan Fordring",[1843]="Foreman Jerris",[1844]="Foreman Marcrid",[1845]="High Protector Tarsen",[1846]="High Protector Lorik",[1847]="Foulmane",[1848]="Lord Maldazzar",[1849]="Dreadwhisper",[1850]="Putridius",[1851]="The Husk",[1852]="Araj the Summoner",[1853]="Darkmaster Gandling",[1854]="High Priest Thel'danis",[1855]="Tirion Fordring",[1860]="Voidwalker",[1863]="Succubus",[1865]="Ravenclaw Raider",[1866]="Ravenclaw Slave",[1867]="Dalaran Apprentice",[1868]="Ravenclaw Servant",[1869]="Ravenclaw Champion",[1870]="Hand of Ravenclaw",[1871]="Eliza's Guard",[1872]="Tharek Blackstone",[1880]="Berte",[1883]="Scarlet Worker",[1884]="Scarlet Lumberjack",[1885]="Scarlet Smith",[1888]="Ambermill Watcher",[1889]="Ambermill Witchalok",[1890]="Rattlecage Skeleton",[1891]="Pyrewood Watcher",[1892]="Moonrage Watcher",[1893]="Moonrage Sentry",[1894]="Pyrewood Sentry",[1895]="Pyrewood Elder",[1896]="Moonrage Elder",[1901]="Kelstrum Stonebreaker",[1907]="Naga Explorer",[1908]="Vile Fin Oracle",[1909]="Vile Fin Lakestalker",[1910]="Muad",[1911]="Deeb",[1912]="Ambermill Protector",[1913]="Ambermill Warder",[1914]="Ambermill Mage",[1915]="Ambermill Conjuror",[1916]="Stephen Bhartec",[1917]="Daniel Ulfman",[1918]="Karrel Grayves",[1919]="Samuel Fipps",[1920]="Dalaran Spellscribe",[1921]="Combat Dummy",[1922]="Gray Forest Wolf",[1923]="Bloodsnout Worg",[1924]="Moonrage Bloodhowler",[1931]="Captured Scarlet Zealot",[1933]="Sheep",[1934]="Tirisfal Farmer",[1935]="Tirisfal Farmhand",[1936]="Farmer Solliden",[1937]="Apothecary Renferrel",[1938]="Dalar Dawnweaver",[1939]="Rot Hide Brute",[1940]="Rot Hide Plague Weaver",[1941]="Rot Hide Graverobber",[1942]="Rot Hide Savage",[1943]="Raging Rot Hide",[1944]="Rot Hide Bruiser",[1946]="Lillith Nefara",[1947]="Thule Ravenclaw",[1948]="Snarlmane",[1949]="Servant of Azora",[1950]="Rane Yorick",[1951]="Quinn Yorick",[1952]="High Executor Hadrec",[1953]="Lake Skulker",[1954]="Elder Lake Skulker",[1955]="Lake Creeper",[1956]="Elder Lake Creeper",[1957]="Vile Fin Shorecreeper",[1958]="Vile Fin Tidecaller",[1959]="Mountaineer Barleybrew",[1960]="Pilot Hammerfoot",[1961]="Mangeclaw",[1963]="Vidra Hearthstove",[1964]="Treant",[1965]="Mountaineer Thalos",[1971]="Ivar the Foul",[1972]="Grimson the Pale",[1973]="Ravenclaw Guardian",[1974]="Ravenclaw Drudger",[1975]="Eastvale Lumberjack",[1976]="Stormwind City Patroller",[1977]="Senator Mehr Stonehallow",[1978]="Deathstalker Erland",[1981]="Dark Iron Ambusher",[1983]="Nightlash",[1984]="Young Thistle Boar",[1985]="Thistle Boar",[1986]="Webwood Spider",[1988]="Grell",[1989]="Grellkin",[1992]="Tarindrella",[1993]="Greenpaw",[1994]="Githyiss the Vile",[1995]="Strigid Owl",[1996]="Strigid Screecher",[1997]="Strigid Hunter",[1998]="Webwood Lurker",[1999]="Webwood Venomfang",[2000]="Webwood Silkspinner",[2001]="Giant Webwood Spider",[2002]="Rascal Sprite",[2003]="Shadow Sprite",[2004]="Dark Sprite",[2005]="Vicious Grell",[2006]="Gnarlpine Ursa",[2007]="Gnarlpine Gardener",[2008]="Gnarlpine Warrior",[2009]="Gnarlpine Shaman",[2010]="Gnarlpine Defender",[2011]="Gnarlpine Augur",[2012]="Gnarlpine Pathfinder",[2013]="Gnarlpine Avenger",[2014]="Gnarlpine Totemic",[2015]="Bloodfeather Harpy",[2017]="Bloodfeather Rogue",[2018]="Bloodfeather Sorceress",[2019]="Bloodfeather Fury",[2020]="Bloodfeather Wind Witch",[2021]="Bloodfeather Matriarch",[2022]="Timberling",[2025]="Timberling Bark Ripper",[2027]="Timberling Trampler",[2029]="Timberling Mire Beast",[2030]="Elder Timberling",[2031]="Young Nightsaber",[2032]="Mangy Nightsaber",[2033]="Elder Nightsaber",[2034]="Feral Nightsaber",[2038]="Lord Melenas",[2039]="Ursal the Mauler",[2041]="Ancient Protector",[2042]="Nightsaber",[2043]="Nightsaber Stalker",[2044]="Forlorn Spirit",[2046]="Andrew Krighton",[2050]="Raleigh Andrean",[2053]="Haggard Refugee",[2054]="Sickly Refugee",[2055]="Master Apothecary Faranell",[2056]="Ravenclaw Apparition",[2057]="Huldar",[2058]="Deathstalker Faerleia",[2060]="Councilman Smithers",[2061]="Councilman Thatcher",[2062]="Councilman Hendricks",[2063]="Councilman Wilhelm",[2064]="Councilman Hartin",[2065]="Councilman Cooper",[2066]="Councilman Higarth",[2067]="Councilman Brunswick",[2068]="Lord Mayor Morrison",[2069]="Moonstalker",[2070]="Moonstalker Runt",[2071]="Moonstalker Matriarch",[2077]="Melithar Staghelm",[2078]="Athridas Bearmantle",[2079]="Ilthalaine",[2080]="Denalan",[2081]="Sentinel Kyra Starsong",[2082]="Gilshalan Windwalker",[2083]="Syral Bladeleaf",[2084]="Natheril Raincaller",[2086]="Valstag Ironjaw",[2089]="Giant Wetlands Crocolisk",[2090]="Ma'ruk Wyrmscale",[2091]="Chieftain Nek'rosh",[2092]="Pilot Longbeard",[2093]="Einar Stonegrip",[2094]="James Halloran",[2096]="Tarrel Rockweaver",[2097]="Harlo Barnaby",[2098]="Ram",[2099]="Maiden's Virtue Crewman",[2102]="Dragonmaw Grunt",[2103]="Dragonmaw Scout",[2104]="Captain Stoutfist",[2105]="Mountaineer Dokkin",[2106]="Apothecary Berard",[2107]="Gaerolas Talvethren",[2108]="Garneg Charskull",[2110]="Black Rat",[2111]="Sida",[2112]="Farrin Daris",[2113]="Archibald Kava",[2114]="Faruza",[2115]="Joshua Kien",[2116]="Blacksmith Rand",[2117]="Harold Raims",[2118]="Abigail Shiel",[2119]="Dannal Stern",[2120]="Archmage Ataeric",[2121]="Shadow Priest Allister",[2122]="David Trias",[2123]="Dark Cleric Duesten",[2124]="Isabella",[2126]="Maximillion",[2127]="Rupert Boch",[2128]="Cain Firesong",[2129]="Dark Cleric Beryl",[2130]="Marion Call",[2131]="Austil de Mon",[2132]="Carolai Anise",[2134]="Mrs. Winters",[2135]="Abe Winters",[2136]="Oliver Dwor",[2137]="Eliza Callen",[2140]="Edwin Harly",[2142]="Watcher Callahan",[2149]="Dark Iron Raider",[2150]="Zenn Foulhoof",[2151]="Moon Priestess Amara",[2152]="Gnarlpine Ambusher",[2153]="Terl Arakor",[2155]="Sentinel Shayla Nightbreeze",[2156]="Cracked Golem",[2157]="Stone Behemoth",[2158]="Gravelflint Scout",[2159]="Gravelflint Bonesnapper",[2160]="Gravelflint Geomancer",[2162]="Agal",[2163]="Thistle Bear",[2164]="Rabid Thistle Bear",[2165]="Grizzled Thistle Bear",[2166]="Oakenscowl",[2167]="Blackwood Pathfinder",[2168]="Blackwood Warrior",[2169]="Blackwood Totemic",[2170]="Blackwood Ursa",[2171]="Blackwood Shaman",[2172]="Strider Clutchmother",[2173]="Reef Frenzy",[2174]="Coastal Frenzy",[2175]="Shadowclaw",[2176]="Cursed Highborne",[2177]="Writhing Highborne",[2178]="Wailing Highborne",[2179]="Stormscale Wave Rider",[2180]="Stormscale Siren",[2181]="Stormscale Myrmidon",[2182]="Stormscale Sorceress",[2183]="Stormscale Warrior",[2184]="Lady Moongazer",[2185]="Darkshore Thresher",[2186]="Carnivous the Breaker",[2187]="Elder Darkshore Thresher",[2188]="Deep Sea Threshadon",[2189]="Vile Sprite",[2190]="Wild Grell",[2191]="Licillin",[2192]="Firecaller Radison",[2198]="Crier Goodman",[2201]="Greymist Raider",[2202]="Greymist Coastrunner",[2203]="Greymist Seer",[2204]="Greymist Netter",[2205]="Greymist Warrior",[2206]="Greymist Hunter",[2207]="Greymist Oracle",[2208]="Greymist Tidehunter",[2209]="Deathguard Gavin",[2210]="Deathguard Royann",[2211]="Captured Mountaineer",[2212]="Deth'ryll Satyr",[2214]="Deathstalker Lesh",[2215]="High Executor Darthalia",[2216]="Apothecary Lydon",[2225]="Zora Guthrek",[2226]="Karos Razok",[2227]="Sharlindra",[2228]="Lieutenant Farren Orinelle",[2229]="Krusk",[2230]="Umpi",[2231]="Pygmy Tide Crawler",[2232]="Tide Crawler",[2233]="Encrusted Tide Crawler",[2234]="Young Reef Crawler",[2235]="Reef Crawler",[2236]="Raging Reef Crawler",[2237]="Moonstalker Sire",[2238]="Tog'thar",[2239]="Drull",[2240]="Syndicate Footpad",[2241]="Syndicate Thief",[2242]="Syndicate Spy",[2243]="Syndicate Sentry",[2244]="Syndicate Shadow Mage",[2245]="Syndicate Saboteur",[2246]="Syndicate Assassin",[2247]="Syndicate Enforcer",[2248]="Cave Yeti",[2249]="Ferocious Yeti",[2250]="Mountain Yeti",[2251]="Giant Yeti",[2252]="Crushridge Ogre",[2253]="Crushridge Brute",[2254]="Crushridge Mauler",[2255]="Crushridge Mage",[2256]="Crushridge Enforcer",[2257]="Mug'thol",[2258]="Maggarrak",[2260]="Syndicate Rogue",[2261]="Syndicate Watchman",[2263]="Marshal Redpath",[2264]="Hillsbrad Tailor",[2265]="Hillsbrad Apprentice Blacksmith",[2266]="Hillsbrad Farmer",[2267]="Hillsbrad Peasant",[2268]="Hillsbrad Footman",[2269]="Hillsbrad Miner",[2270]="Hillsbrad Sentry",[2271]="Dalaran Shield Guard",[2272]="Dalaran Theurgist",[2274]="Stanley",[2275]="Enraged Stanley",[2276]="Magistrate Henry Maleb",[2277]="Loremaster Dibbs",[2278]="Melisara",[2283]="Ravenclaw Regent",[2284]="Captured Farmer",[2285]="Count Remington Ridgewell",[2287]="Crushridge Warmonger",[2299]="Borgus Stoutarm",[2302]="Aethalas",[2303]="Lyranne Feathersong",[2304]="Captain Ironhill",[2305]="Foreman Bonds",[2306]="Baron Vardus",[2307]="Caretaker Caice",[2308]="Andrew Brownell",[2309]="Thomas Arlento",[2310]="Jamie Nore",[2311]="Doreen Beltis",[2314]="Sahvan Bloodshadow",[2315]="Maquell Ebonwood",[2316]="Gol'dir",[2317]="Elysa",[2318]="Argus Shadow Mage",[2319]="Syndicate Wizard",[2320]="Nagaz",[2321]="Foreststrider Fledgling",[2322]="Foreststrider",[2323]="Giant Foreststrider",[2324]="Blackwood Windtalker",[2326]="Thamner Pol",[2327]="Shaina Fuller",[2329]="Michelle Belle",[2330]="Karlee Chaddis",[2331]="Paige Chaddis",[2332]="Valdred Moray",[2333]="Henchman Valik",[2334]="Event Generator 001",[2335]="Magistrate Burnside",[2336]="Dark Strand Fanatic",[2337]="Dark Strand Voidcaller",[2338]="Twilight Disciple",[2339]="Twilight Thug",[2344]="Dun Garok Mountaineer",[2345]="Dun Garok Rifleman",[2346]="Dun Garok Priest",[2347]="Wild Gryphon",[2348]="Elder Moss Creeper",[2349]="Domesticated Creeper",[2350]="Forest Creeper",[2351]="Gray Bear",[2352]="Innkeeper Anderson",[2354]="Vicious Gray Bear",[2356]="Elder Gray Bear",[2357]="Merideth Carlson",[2358]="Dalaran Summoner",[2359]="Elemental Slave",[2360]="Hillsbrad Farmhand",[2361]="Tamara Armstrong",[2362]="Hemmit Armstrong",[2363]="Apprentice Honeywell",[2364]="Neema",[2365]="Bront Coldcleave",[2366]="Barkeep Kelly",[2367]="Donald Rabonne",[2368]="Daggerspine Shorestalker",[2369]="Daggerspine Shorehunter",[2370]="Daggerspine Screamer",[2371]="Daggerspine Siren",[2372]="Mudsnout Gnoll",[2373]="Mudsnout Shaman",[2374]="Torn Fin Muckdweller",[2375]="Torn Fin Coastrunner",[2376]="Torn Fin Oracle",[2377]="Torn Fin Tidehunter",[2378]="Kundric Zanden",[2379]="Caretaker Smithers",[2380]="Nandar Branson",[2381]="Micha Yance",[2382]="Darren Malvew",[2383]="Lindea Rabonne",[2384]="Starving Mountain Lion",[2385]="Foothill Stalker",[2386]="Alliance Guard",[2387]="Hillsbrad Councilman",[2388]="Innkeeper Shay",[2389]="Zarise",[2390]="Aranae Venomblood",[2391]="Serge Hinott",[2392]="Delia Verana",[2393]="Christoph Jeffcoat",[2394]="Mallen Swain",[2395]="Vinna Wayne",[2396]="Hans Zandin",[2397]="Derak Nightfall",[2398]="Tara Coldgaze",[2399]="Daryl Stack",[2400]="Craig Hewitt",[2401]="Kayren Soothallow",[2402]="Shara Blazen",[2403]="Farmer Getz",[2404]="Blacksmith Verringtan",[2405]="Tarren Mill Deathguard",[2406]="Mountain Lion",[2407]="Hulking Mountain Lion",[2408]="Snapjaw",[2409]="Felicia Maline",[2410]="Magus Wordeen Voidglare",[2411]="Ricter",[2412]="Alina",[2413]="Dermot",[2414]="Kegan Darkmar",[2415]="Warden Belamoore",[2416]="Crushridge Plunderer",[2417]="Grel'borg the Miser",[2418]="Deathguard Samsa",[2419]="Deathguard Humbert",[2420]="Targ",[2421]="Muckrake",[2422]="Glommus",[2423]="Lord Aliden Perenolde",[2424]="Guild Banker",[2425]="Varimathras",[2427]="Jailor Eston",[2428]="Jailor Marlgen",[2429]="Novice Thaivand",[2430]="Chef Jessen",[2431]="Jailor Borhuin",[2432]="Darla Harris",[2433]="Helcular's Remains",[2434]="Shadowy Assassin",[2435]="Southshore Crier",[2436]="Farmer Kent",[2437]="Keeper Bel'varil",[2438]="Bartolo Ginsetti",[2439]="Major Samuelson",[2440]="Drunken Footpad",[2442]="Cow",[2447]="Narillasanz",[2448]="Clerk Horrace Whitesteed",[2449]="Citizen Wilkes",[2450]="Miner Hackett",[2451]="Farmer Kalaba",[2452]="Skhowl",[2453]="Lo'Grosh",[2455]="Olivia Burnside",[2456]="Newton Burnside",[2457]="John Burnside",[2458]="Randolph Montague",[2459]="Mortimer Montague",[2460]="Barnum Stonemantle",[2461]="Bailey Stonemantle",[2462]="Flesh Eating Worm",[2464]="Commander Aggro'gosh",[2465]="Far Seer Mok'thardin",[2466]="Mountaineer Grugelm",[2468]="Mountaineer Thar",[2469]="Mountaineer Rharen",[2470]="Watcher Fraizer",[2473]="Granistad",[2474]="Kurdros",[2475]="Sloth",[2476]="Gosh-Haldir",[2477]="Gradok",[2478]="Haren Swifthoof",[2479]="Sludge",[2480]="Bro'kin",[2481]="Bliztik",[2482]="Zarena Cromwind",[2483]="Jaquilina Dramet",[2485]="Larimaine Purdue",[2486]="Fin Fizracket",[2487]="Fleet Master Seahorn",[2488]="Deeg",[2489]="Milstaff Stormeye",[2490]="First Mate Crazz",[2491]="Whiskey Slim",[2492]="Lexington Mortaim",[2493]="Dizzy One-Eye",[2494]="Privateer Bloads",[2495]="Drizzlik",[2496]="Baron Revilgaz",[2497]="Nimboya",[2498]="Crank Fizzlebub",[2499]="Markel Smythe",[2500]="Captain Hecklebury Smotts",[2503]="Hillsbrad Foreman",[2504]="Donyal Tovald",[2505]="Saltwater Snapjaw",[2506]="Mountaineer Harn",[2507]="Mountaineer Uthan",[2508]="Mountaineer Wuar",[2509]="Mountaineer Cragg",[2510]="Mountaineer Ozmok",[2511]="Mountaineer Bludd",[2512]="Mountaineer Roghan",[2513]="Mountaineer Janha",[2514]="Mountaineer Modax",[2515]="Mountaineer Fazgard",[2516]="Mountaineer Kamdar",[2517]="Mountaineer Langarr",[2518]="Mountaineer Swarth",[2519]="Kin'weelay",[2520]="Remote-Controlled Golem",[2521]="Skymane Gorilla",[2522]="Jaguero Stalker",[2523]="Searing Totem",[2524]="Mountaineer Haggis",[2525]="Mountaineer Barn",[2526]="Mountaineer Morlic",[2527]="Mountaineer Angst",[2528]="Mountaineer Haggil",[2529]="Son of Arugal",[2530]="Yenniku",[2531]="Minion of Doane",[2532]="Donna",[2533]="William",[2534]="Zanzil the Outcast",[2536]="Jon-Jon the Crow",[2540]="Ambermill Serpent",[2541]="Lord Sakrasis",[2542]="Catelyn the Blade",[2543]="Archmage Ansirem Runeweaver",[2544]="Southern Sand Crawler",[2546]="Fleet Master Firallon",[2547]="Ironpatch",[2548]="Captain Keelhaul",[2549]="Garr Salthoof",[2550]="Captain Stillwater",[2551]="Brutus",[2552]="Witherbark Troll",[2553]="Witherbark Shadowcaster",[2554]="Witherbark Axe Thrower",[2555]="Witherbark Witch Doctor",[2556]="Witherbark Headhunter",[2557]="Witherbark Shadow Hunter",[2558]="Witherbark Berserker",[2559]="Highland Strider",[2560]="Highland Thrasher",[2561]="Highland Fleshstalker",[2562]="Boulderfist Ogre",[2563]="Plains Creeper",[2564]="Boulderfist Enforcer",[2565]="Giant Plains Creeper",[2566]="Boulderfist Brute",[2567]="Boulderfist Magus",[2569]="Boulderfist Mauler",[2570]="Boulderfist Shaman",[2571]="Boulderfist Lord",[2572]="Drywhisker Kobold",[2573]="Drywhisker Surveyor",[2574]="Drywhisker Digger",[2575]="Dark Iron Supplier",[2577]="Dark Iron Shadowcaster",[2578]="Young Mesa Buzzard",[2579]="Mesa Buzzard",[2580]="Elder Mesa Buzzard",[2581]="Dabyrie Militia",[2582]="Dabyrie Laborer",[2583]="Stromgarde Troll Hunter",[2584]="Stromgarde Defender",[2585]="Stromgarde Soldier",[2586]="Syndicate Highwayman",[2587]="Syndicate Pathstalker",[2588]="Syndicate Prowler",[2589]="Syndicate Mercenary",[2590]="Syndicate Conjuror",[2591]="Syndicate Magus",[2592]="Rumbling Exile",[2594]="Sprogger",[2595]="Daggerspine Raider",[2596]="Daggerspine Sorceress",[2597]="Lord Falconcrest",[2598]="Darbel Montrose",[2599]="Otto",[2600]="Singer",[2601]="Foulbelly",[2602]="Ruul Onestone",[2603]="Kovork",[2604]="Molok the Crusher",[2605]="Zalas Witherbark",[2606]="Nimar the Slayer",[2607]="Prince Galen Trollbane",[2608]="Commander Amaren",[2609]="Geomancer Flintdagger",[2610]="Shakes O'Breen",[2611]="Fozruk",[2612]="Lieutenant Valorcall",[2614]="Air Force Alarm Bot (Alliance)",[2615]="Air Force Alarm Bot (Horde)",[2616]="Privateer Groy",[2618]="Hammerfall Peon",[2619]="Hammerfall Grunt",[2620]="Prairie Dog",[2621]="Hammerfall Guardian",[2622]="Sly Garrett",[2623]="Spirit of Old",[2624]="Gazban",[2625]="Viznik Goldgrubber",[2626]="Old Man Heming",[2627]="Grarnik Goodstitch",[2628]="Dalaran Worker",[2630]="Earthbind Totem",[2634]="Princess Poobah",[2635]="Elder Snapjaw Crocolisk",[2636]="Blackwater Deckhand",[2637]="Syndicate Bomb",[2638]="Syndicate Spectre",[2639]="Vilebranch Axe Thrower",[2640]="Vilebranch Witch Doctor",[2641]="Vilebranch Headhunter",[2642]="Vilebranch Shadowcaster",[2643]="Vilebranch Berserker",[2644]="Vilebranch Hideskinner",[2645]="Vilebranch Shadow Hunter",[2646]="Vilebranch Blood Drinker",[2647]="Vilebranch Soul Eater",[2648]="Vilebranch Aman'zasi Guard",[2649]="Witherbark Scalper",[2650]="Witherbark Zealot",[2651]="Witherbark Hideskinner",[2652]="Witherbark Venomblood",[2653]="Witherbark Sadist",[2654]="Witherbark Caller",[2655]="Green Sludge",[2656]="Jade Ooze",[2657]="Trained Razorbeak",[2658]="Razorbeak Gryphon",[2659]="Razorbeak Skylord",[2663]="Narkk",[2664]="Kelsey Yance",[2667]="Ward of Laze",[2668]="Danielle Zipstitch",[2669]="Sheri Zipstitch",[2670]="Xizk Goodstitch",[2671]="Mechanical Squirrel",[2672]="Cowardly Crosby",[2673]="Target Dummy",[2674]="Advanced Target Dummy",[2675]="Explosive Sheep",[2676]="Compact Harvest Reaper",[2678]="Mechanical Dragonling",[2679]="Wenna Silkbeard",[2680]="Vilebranch Wolf Pup",[2681]="Vilebranch Raiding Wolf",[2682]="Fradd Swiftgear",[2683]="Namdo Bizzfizzle",[2684]="Rizz Loosebolt",[2685]="Mazk Snipeshot",[2686]="Witherbark Broodguard",[2687]="Gnaz Blunderflame",[2688]="Ruppo Zipcoil",[2691]="Highvale Outrunner",[2692]="Highvale Scout",[2693]="Highvale Marksman",[2694]="Highvale Ranger",[2695]="Sara Balloo",[2696]="Foggy MacKreel",[2697]="Clyde Ranthal",[2698]="George Candarte",[2699]="Rikqiz",[2700]="Captain Nials",[2701]="Dustbelcher Ogre",[2703]="Zengu",[2704]="Hanashi",[2705]="Brewmeister Bilger",[2706]="Tor'gan",[2707]="Shadra",[2708]="Archmage Malin",[2711]="Phin Odelic",[2712]="Quae",[2713]="Kinelory",[2714]="Forsaken Courier",[2715]="Dustbelcher Brute",[2716]="Dustbelcher Wyrmhunter",[2717]="Dustbelcher Mauler",[2718]="Dustbelcher Shaman",[2719]="Dustbelcher Lord",[2720]="Dustbelcher Ogre Mage",[2721]="Forsaken Bodyguard",[2723]="Stone Golem",[2725]="Scalding Whelp",[2726]="Scorched Guardian",[2727]="Crag Coyote",[2728]="Feral Crag Coyote",[2729]="Elder Crag Coyote",[2730]="Rabid Crag Coyote",[2731]="Ridge Stalker",[2732]="Ridge Huntress",[2733]="Apothecary Jorell",[2734]="Ridge Stalker Patriarch",[2735]="Lesser Rock Elemental",[2736]="Greater Rock Elemental",[2737]="Durtham Greldon",[2738]="Stromgarde Cavalryman",[2739]="Shadowforge Tunneler",[2740]="Shadowforge Darkweaver",[2742]="Shadowforge Chanter",[2743]="Shadowforge Warrior",[2744]="Shadowforge Commander",[2745]="Ambassador Infernus",[2748]="Archaedas",[2749]="Barricade",[2751]="War Golem",[2752]="Rumbler",[2753]="Barnabus",[2754]="Anathemus",[2755]="Myzrael",[2757]="Blacklash",[2759]="Hematus",[2760]="Burning Exile",[2761]="Cresting Exile",[2762]="Thundering Exile",[2763]="Thenan",[2764]="Sleeby",[2765]="Znort",[2766]="Lolo the Lookout",[2767]="First Mate Nilzlix",[2768]="Professor Phizzlethorpe",[2769]="Captain Steelgut",[2770]="Tallow",[2771]="Drum Fel",[2772]="Korin Fel",[2773]="Or'Kalar",[2774]="Doctor Draxlegauge",[2775]="Daggerspine Marauder",[2776]="Vengeful Surge",[2778]="Deckhand Moishe",[2779]="Prince Nazjak",[2780]="Caretaker Nevlin",[2781]="Caretaker Weston",[2782]="Caretaker Alaric",[2783]="Marez Cowl",[2784]="King Magni Bronzebeard",[2785]="Theldurin the Lost",[2786]="Gerrig Bonegrip",[2787]="Zaruk",[2788]="Apprentice Kryten",[2789]="Skuerto",[2790]="Grand Mason Marblesten",[2791]="Enraged Rock Elemental",[2792]="Gor'mul",[2793]="Kor'gresh Coldrage",[2794]="Summoned Guardian",[2796]="Faelyssa",[2797]="Hovrak Gutrender",[2798]="Pand Stonebinder",[2799]="Lucian Fenner",[2801]="Tresa MacGregor",[2802]="Susan Tillinghast",[2803]="Malygen",[2804]="Kurden Bloodclaw",[2805]="Deneb Walker",[2806]="Bale",[2808]="Vikki Lonsav",[2810]="Hammon Karwn",[2812]="Drovnar Strongbrew",[2814]="Narj Deepslice",[2816]="Androd Fadran",[2817]="Rigglefuzz",[2818]="Slagg",[2819]="Tunkk",[2820]="Graud",[2821]="Keena",[2829]="Starving Buzzard",[2830]="Parched Buzzard",[2831]="Giant Buzzard",[2832]="Nixxrax Fillamug",[2834]="Myizz Luckycatch",[2835]="Cedrik Prose",[2836]="Brikk Keencraft",[2837]="Jaxin Chong",[2838]="Crazk Sparks",[2839]="Haren Kanmae",[2840]="Kizz Bluntstrike",[2842]="Wigcik",[2843]="Jutak",[2844]="Hurklor",[2845]="Fargon Mortalak",[2846]="Blixrez Goodstitch",[2847]="Jansen Underwood",[2848]="Glyx Brewright",[2849]="Qixdi Goodstitch",[2850]="Broken Tooth",[2851]="Urda",[2852]="Enslaved Druid of the Talon",[2853]="Freed Druid of the Talon",[2855]="Snang",[2856]="Angrun",[2857]="Thund",[2858]="Gringer",[2859]="Gyll",[2860]="Sigrun Ironhew",[2861]="Gorrik",[2870]="[UNUSED] Henria Derth",[2876]="Grunenstur Balindom",[2878]="Peria Lamenur",[2879]="Karrina Mekenda",[2880]="[UNUSED] Hurom Juggendolf",[2881]="Durdek Karrin",[2887]="Prismatic Exile",[2888]="Garek",[2892]="Stonevault Seer",[2893]="Stonevault Bonesnapper",[2894]="Stonevault Shaman",[2906]="Dustbelcher Warrior",[2907]="Dustbelcher Mystic",[2908]="Grawl",[2909]="Hammertoe Grez",[2910]="Prospector Ryedol",[2911]="Archaeologist Flagongut",[2912]="Chief Archaeologist Greywhisker",[2913]="Archaeologist Hollee",[2914]="Snake",[2915]="Hammertoe's Spirit",[2916]="Historian Karnik",[2917]="Prospector Remtravel",[2918]="Advisor Belgrum",[2919]="Fam'retor Guardian",[2920]="Lucien Tosselwrench",[2921]="Lotwil Veriatus",[2922]="Servo",[2923]="Mangy Silvermane",[2924]="Silvermane Wolf",[2925]="Silvermane Howler",[2926]="Silvermane Stalker",[2927]="Vicious Owlbeast",[2928]="Primitive Owlbeast",[2929]="Savage Owlbeast",[2930]="Sentinel Glynda Nal'Shea",[2931]="Zaricotl",[2932]="Magregan Deepshadow",[2934]="Keeper Bel'dugur",[2937]="Dagun the Ravenous",[2941]="Lanie Reed",[2943]="Ransin Donner",[2944]="Boss Tho'grun",[2945]="Murdaloc",[2946]="Puppet of Helcular",[2947]="Harken Windtotem",[2948]="Mull Thunderhorn",[2949]="Palemane Tanner",[2950]="Palemane Skinner",[2951]="Palemane Poacher",[2952]="Bristleback Invaders",[2953]="Bristleback Shaman",[2954]="Bristleback Battleboar",[2955]="Plainstrider",[2956]="Adult Plainstrider",[2957]="Elder Plainstrider",[2958]="Prairie Wolf",[2959]="Prairie Stalker",[2960]="Prairie Wolf Alpha",[2961]="Mountain Cougar",[2962]="Windfury Harpy",[2963]="Windfury Wind Witch",[2964]="Windfury Sorceress",[2965]="Windfury Matriarch",[2966]="Young Battleboar",[2967]="Galak Centaur",[2968]="Galak Outrunner",[2969]="Wiry Swoop",[2970]="Swoop",[2971]="Taloned Swoop",[2972]="Kodo Calf",[2973]="Kodo Bull",[2974]="Kodo Matriarch",[2975]="Venture Co. Hireling",[2976]="Venture Co. Laborer",[2977]="Venture Co. Taskmaster",[2978]="Venture Co. Worker",[2979]="Venture Co. Supervisor",[2980]="Grull Hawkwind",[2981]="Chief Hawkwind",[2982]="Seer Graytongue",[2983]="The Plains Vision",[2984]="Seer Wiserunner",[2985]="Ruul Eagletalon",[2986]="Dorn Plainstalker",[2987]="Eyahn Eagletalon",[2988]="Morin Cloudstalker",[2989]="Bael'dun Digger",[2990]="Bael'dun Appraiser",[2991]="Greatmother Hawkwind",[2992]="Healing Ward V",[2993]="Baine Bloodhoof",[2994]="Ancestral Spirit",[2995]="Tal",[2996]="Torn",[2997]="Jyn Stonehoof",[2998]="Karn Stonehoof",[2999]="Taur Stonehoof",[3000]="Gibbert",[3001]="Brek Stonehoof",[3002]="Kurm Stonehoof",[3003]="Fyr Mistrunner",[3004]="Tepa",[3005]="Mahu",[3007]="Una",[3008]="Mak",[3009]="Bena Winterhoof",[3010]="Mani Winterhoof",[3011]="Teg Dawnstrider",[3012]="Nata Dawnstrider",[3013]="Komin Winterhoof",[3014]="Nida Winterhoof",[3015]="Kuna Thunderhorn",[3016]="Tand",[3017]="Nan Mistrunner",[3018]="Hogor Thunderhoof",[3019]="Delgo Ragetotem",[3020]="Etu Ragetotem",[3021]="Kard Ragetotem",[3022]="Sunn Ragetotem",[3023]="Sura Wildmane",[3024]="Tah Winterhoof",[3025]="Kaga Mistrunner",[3026]="Aska Mistrunner",[3027]="Naal Mistrunner",[3028]="Kah Mistrunner",[3029]="Sewa Mistrunner",[3030]="Siln Skychaser",[3031]="Tigor Skychaser",[3032]="Beram Skychaser",[3033]="Turak Runetotem",[3034]="Sheal Runetotem",[3035]="Flatland Cougar",[3036]="Kym Wildmane",[3037]="Sheza Wildmane",[3038]="Kary Thunderhorn",[3039]="Holt Thunderhorn",[3040]="Urek Thunderhorn",[3041]="Torm Ragetotem",[3042]="Sark Ragetotem",[3043]="Ker Ragetotem",[3044]="Miles Welsh",[3045]="Malakai Cross",[3046]="Father Cobb",[3047]="Archmage Shymm",[3048]="Ursyn Ghull",[3049]="Thurston Xane",[3050]="Veren Tallstrider",[3051]="Supervisor Fizsprocket",[3052]="Skorn Whitecloud",[3053]="Synge",[3054]="Zarlman Two-Moons",[3055]="Maur Raincaller",[3056]="Ghost Howl",[3057]="Cairne Bloodhoof",[3058]="Arra'chea",[3059]="Harutt Thunderhorn",[3060]="Gart Mistrunner",[3061]="Lanka Farshot",[3062]="Meela Dawnstrider",[3063]="Krang Stonehoof",[3064]="Gennia Runetotem",[3065]="Yaw Sharpmane",[3066]="Narm Skychaser",[3067]="Pyall Silentstride",[3068]="Mazzranache",[3069]="Chaw Stronghide",[3072]="Kawnie Softbreeze",[3073]="Marjak Keenblade",[3074]="Varia Hardhide",[3075]="Bronk Steelrage",[3076]="Moorat Longstride",[3077]="Mahnott Roughwound",[3078]="Kennah Hawkseye",[3079]="Varg Windwhisper",[3080]="Harant Ironbrace",[3081]="Wunna Darkmane",[3083]="Honor Guard",[3084]="Bluffwatcher",[3085]="Gloria Femmel",[3086]="Gretchen Vogel",[3087]="Crystal Boughman",[3088]="Henry Chapal",[3089]="Sherman Femmel",[3090]="Gerald Crawley",[3091]="Franklin Hamar",[3092]="Tagain",[3093]="Grod",[3094]="Unseen",[3095]="Fela",[3096]="Captured Servant of Azora",[3097]="Bernard Brubaker",[3098]="Mottled Boar",[3099]="Dire Mottled Boar",[3100]="Elder Mottled Boar",[3101]="Vile Familiar",[3102]="Felstalker",[3103]="Makrura Clacker",[3104]="Makrura Shellhide",[3105]="Makrura Snapclaw",[3106]="Surf Crawler",[3107]="Mature Surf Crawler",[3108]="Encrusted Surf Crawler",[3110]="Dreadmaw Crocolisk",[3111]="Razormane Quilboar",[3112]="Razormane Scout",[3113]="Razormane Dustrunner",[3114]="Razormane Battleguard",[3115]="Dustwind Harpy",[3116]="Dustwind Pillager",[3117]="Dustwind Savage",[3118]="Dustwind Storm Witch",[3119]="Kolkar Drudge",[3120]="Kolkar Outrunner",[3121]="Durotar Tiger",[3122]="Bloodtalon Taillasher",[3123]="Bloodtalon Scythemaw",[3124]="Scorpid Worker",[3125]="Clattering Scorpid",[3126]="Armored Scorpid",[3127]="Venomtail Scorpid",[3128]="Kul Tiras Sailor",[3129]="Kul Tiras Marine",[3130]="Thunder Lizard",[3131]="Lightning Hide",[3133]="Herble Baubbletump",[3134]="Kzixx",[3135]="Malissa",[3136]="Clarise Gnarltree",[3137]="Matt Johnson",[3138]="Scott Carevin",[3139]="Gar'Thok",[3140]="Lar Prowltusk",[3141]="Makrura Elder",[3142]="Orgnil Soulscar",[3143]="Gornek",[3144]="Eitrigg",[3145]="Zureetha Fargaze",[3147]="Furl Scornbrow",[3149]="Nez'raz",[3150]="Hin Denburg",[3153]="Frang",[3154]="Jen'shan",[3155]="Rwag",[3156]="Nartok",[3157]="Shikrik",[3158]="Duokna",[3159]="Kzan Thornslash",[3160]="Huklah",[3161]="Rarc",[3162]="Burdrak Harglhelm",[3163]="Uhgar",[3164]="Jark",[3165]="Ghrawt",[3166]="Cutac",[3167]="Wuark",[3168]="Flakk",[3169]="Tarshaw Jaggedscar",[3170]="Kaplak",[3171]="Thotar",[3172]="Dhugru Gorelust",[3173]="Swart",[3174]="Dwukk",[3175]="Krunn",[3177]="Turuk Amberstill",[3178]="Stuart Fleming",[3179]="Harold Riggs",[3180]="Dark Iron Entrepreneur",[3181]="Fremal Doohickey",[3182]="Junder Brokk",[3183]="Yarrog Baneshadow",[3184]="Miao'zan",[3185]="Mishiki",[3186]="K'waii",[3187]="Tai'tasi",[3188]="Master Gadrin",[3189]="Kor'ghan",[3190]="Rhinag",[3191]="Cook Torka",[3192]="Lieutenant Benedict",[3193]="Misha Tor'kren",[3194]="Vel'rin Fang",[3195]="Burning Blade Thug",[3196]="Burning Blade Neophyte",[3197]="Burning Blade Fanatic",[3198]="Burning Blade Apprentice",[3199]="Burning Blade Cultist",[3203]="Fizzle Darkclaw",[3204]="Gazz'uz",[3205]="Zalazane",[3206]="Voodoo Troll",[3207]="Hexed Troll",[3208]="Margoz",[3209]="Brave Windfeather",[3210]="Brave Proudsnout",[3211]="Brave Lightninghorn",[3212]="Brave Ironhorn",[3213]="Brave Running Wolf",[3214]="Brave Greathoof",[3215]="Brave Strongbash",[3216]="Neeru Fireblade",[3217]="Brave Dawneagle",[3218]="Brave Swiftwind",[3219]="Brave Leaping Deer",[3220]="Brave Darksky",[3221]="Brave Rockhorn",[3222]="Brave Wildrunner",[3223]="Brave Rainchaser",[3224]="Brave Cloudmane",[3225]="Corrupted Mottled Boar",[3226]="Corrupted Scorpid",[3227]="Corrupted Bloodtalon Scythemaw",[3228]="Corrupted Surf Crawler",[3230]="Nazgrel",[3231]="Corrupted Dreadmaw Crocolisk",[3232]="Bristleback Interloper",[3233]="Lorekeeper Raintotem",[3234]="Lost Barrens Kodo",[3235]="Greater Barrens Kodo",[3236]="Barrens Kodo",[3237]="Wooly Kodo",[3238]="Stormhide",[3239]="Thunderhead",[3240]="Stormsnout",[3241]="Savannah Patriarch",[3242]="Zhevra Runner",[3243]="Savannah Highmane",[3244]="Greater Plainstrider",[3245]="Ornery Plainstrider",[3246]="Fleeting Plainstrider",[3247]="Thunderhawk Hatchling",[3248]="Barrens Giraffe",[3249]="Greater Thunderhawk",[3250]="Silithid Creeper",[3251]="Silithid Grub",[3252]="Silithid Swarmer",[3253]="Silithid Harvester",[3254]="Sunscale Lashtail",[3255]="Sunscale Screecher",[3256]="Sunscale Scytheclaw",[3257]="Ishamuhale",[3258]="Bristleback Hunter",[3260]="Bristleback Water Seeker",[3261]="Bristleback Thornweaver",[3263]="Bristleback Geomancer",[3265]="Razormane Hunter",[3266]="Razormane Defender",[3267]="Razormane Plunderer",[3268]="Razormane Thornweaver",[3269]="Razormane Geomancer",[3270]="Elder Mystic Razorsnout",[3271]="Razormane Mystic",[3272]="Kolkar Wrangler",[3273]="Kolkar Stormer",[3274]="Kolkar Pack Runner",[3275]="Kolkar Marauder",[3276]="Witchwing Harpy",[3277]="Witchwing Roguefeather",[3278]="Witchwing Slayer",[3279]="Witchwing Ambusher",[3280]="Witchwing Windcaller",[3281]="Sarkoth",[3282]="Venture Co. Mercenary",[3283]="Venture Co. Enforcer",[3284]="Venture Co. Drudger",[3285]="Venture Co. Peon",[3286]="Venture Co. Overseer",[3287]="Hana'zua",[3289]="Spirit of Minshina",[3290]="Deek Fizzlebizz",[3291]="Greishan Ironstove",[3292]="Brewmaster Drohn",[3293]="Rezlak",[3294]="Ophek",[3295]="Sludge Anomaly",[3296]="Orgrimmar Grunt",[3297]="Sen'jin Watcher",[3298]="Gabrielle Chase",[3300]="Adder",[3301]="Morgan Ladimore",[3304]="Master Vornal",[3305]="Grisha",[3306]="Keldas",[3309]="Karus",[3310]="Doras",[3312]="Olvia",[3313]="Trak'gen",[3314]="Urtharo",[3315]="Tor'phan",[3316]="Handor",[3317]="Ollanus",[3318]="Koma",[3319]="Sana",[3320]="Soran",[3321]="Morgum",[3322]="Kaja",[3323]="Horthus",[3324]="Grol'dar",[3325]="Mirket",[3326]="Zevrost",[3327]="Gest",[3328]="Ormok",[3329]="Kor'jus",[3330]="Muragus",[3331]="Kareth",[3332]="Lumak",[3333]="Shankys",[3334]="Rekkul",[3335]="Hagrus",[3336]="Takrin Pathseeker",[3337]="Kargal Battlescar",[3338]="Sergra Darkthorn",[3339]="Captain Thalo'thas Brightsun",[3341]="Gann Stonespire",[3342]="Shan'ti",[3343]="Grelkor",[3344]="Kardris Dreamseeker",[3345]="Godan",[3346]="Kithas",[3347]="Yelmak",[3348]="Kor'geld",[3349]="Ukra'nor",[3350]="Asoran",[3351]="Magenius",[3352]="Ormak Grimshot",[3353]="Grezz Ragefist",[3354]="Sorek",[3355]="Saru Steelfury",[3356]="Sumi",[3357]="Makaru",[3358]="Gorina",[3359]="Kiro",[3360]="Koru",[3361]="Shoma",[3362]="Ogunaro Wolfrunner",[3363]="Magar",[3364]="Borya",[3365]="Karolek",[3366]="Tamar",[3367]="Felika",[3368]="Borstan",[3369]="Gotri",[3370]="Urtrun Clanbringer",[3371]="Tamaro",[3372]="Sarlek",[3373]="Arnok",[3374]="Bael'dun Excavator",[3375]="Bael'dun Foreman",[3376]="Bael'dun Soldier",[3377]="Bael'dun Rifleman",[3378]="Bael'dun Officer",[3379]="Burning Blade Bruiser",[3380]="Burning Blade Acolyte",[3381]="Southsea Brigand",[3382]="Southsea Cannoneer",[3383]="Southsea Cutthroat",[3384]="Southsea Privateer",[3385]="Theramore Marine",[3386]="Theramore Preserver",[3387]="Jorn Skyseer",[3388]="Mahren Skyseer",[3389]="Regthar Deathgate",[3390]="Apothecary Helbrim",[3391]="Gazlowe",[3392]="Prospector Khazgorm",[3393]="Captain Fairmount",[3394]="Barak Kodobane",[3395]="Verog the Dervish",[3396]="Hezrul Bloodmark",[3397]="Kolkar Bloodcharger",[3398]="Gesharahan",[3399]="Zamja",[3400]="Xen'to",[3401]="Shenthul",[3402]="Zando'zan",[3403]="Sian'tsu",[3404]="Jandi",[3405]="Zeal'aya",[3406]="Xor'juul",[3407]="Sian'dur",[3408]="Zel'mak",[3409]="Zendo'jian",[3410]="Jin'sora",[3411]="Denni'ka",[3412]="Nogg",[3413]="Sovik",[3414]="General Twinbraid",[3415]="Savannah Huntress",[3416]="Savannah Matriarch",[3417]="Living Flame",[3418]="Kirge Sternhorn",[3419]="Apothecary Zamah",[3421]="Feegly the Exiled",[3424]="Thunderhawk Cloudscraper",[3425]="Savannah Prowler",[3426]="Zhevra Charger",[3428]="Korran",[3429]="Thork",[3430]="Mangletooth",[3431]="Grenthar",[3432]="Mankrik",[3433]="Tatternack Steelforge",[3434]="Nak",[3435]="Lok Orcbane",[3436]="Kuz",[3438]="Kreenig Snarlsnout",[3439]="Wizzlecrank's Shredder",[3441]="Melor Stonehoof",[3442]="Sputtervalve",[3443]="Grub",[3444]="Dig Rat",[3445]="Supervisor Lugwizzle",[3446]="Mebok Mizzyrix",[3447]="Pawe Mistrunner",[3448]="Tonga Runetotem",[3449]="Darsok Swiftdagger",[3450]="Defias Companion",[3451]="Pilot Wizzlecrank",[3452]="Serena Bloodfeather",[3453]="Wharfmaster Dizzywig",[3454]="Cannoneer Smythe",[3455]="Cannoneer Whessan",[3456]="Razormane Pathfinder",[3457]="Razormane Stalker",[3458]="Razormane Seer",[3459]="Razormane Warfrenzy",[3461]="Oasis Snapjaw",[3462]="Elder Barrens Giraffe",[3463]="Wandering Barrens Giraffe",[3464]="Gazrog",[3465]="Gilthares Firebough",[3466]="Zhevra Courser",[3467]="Baron Longshore",[3468]="Ancient of Lore",[3469]="Ancient of War",[3470]="Rathorian",[3471]="Tinkerer Sniggles",[3472]="Washte Pawne",[3473]="Owatanka",[3474]="Lakota'mani",[3475]="Echeyakee",[3476]="Isha Awak",[3477]="Hraq",[3478]="Traugh",[3479]="Nargal Deatheye",[3480]="Moorane Hearthgrain",[3481]="Barg",[3482]="Tari'qa",[3483]="Jahan Hawkwing",[3484]="Kil'hala",[3485]="Wrahk",[3486]="Halija Whitestrider",[3487]="Kalyimah Stormcloud",[3488]="Uthrok",[3489]="Zargh",[3490]="Hula'mahi",[3491]="Ironzar",[3492]="Vexspindle",[3493]="Grazlix",[3494]="Tinkerwiz",[3495]="Gagsprocket",[3496]="Fuzruckle",[3497]="Kilxx",[3498]="Jazzik",[3499]="Ranik",[3500]="Tarhus",[3501]="Horde Guard",[3502]="Ratchet Bruiser",[3503]="Silithid Protector",[3504]="Gil",[3505]="Pat",[3507]="Andi",[3508]="Mikey",[3509]="Geoff",[3510]="Twain",[3511]="Steven",[3512]="Jimmy",[3513]="Miss Danna",[3514]="Tenaron Stormgrip",[3515]="Corithras Moonrage",[3516]="Arch Druid Fandral Staghelm",[3517]="Rellian Greenspyre",[3518]="Thomas Miller",[3519]="Sentinel Arynia Cloudsbreak",[3520]="Ol' Emma",[3521]="Ak'Zeloth",[3522]="Constance Brisboise",[3523]="Bowen Brisboise",[3524]="Spirit Wolf",[3527]="Healing Stream Totem",[3528]="Pyrewood Armorer",[3529]="Moonrage Armorer",[3530]="Pyrewood Tailor",[3531]="Moonrage Tailor",[3532]="Pyrewood Leatherworker",[3533]="Moonrage Leatherworker",[3534]="Wallace the Blind",[3535]="Blackmoss the Fetid",[3536]="Kris Legace",[3537]="Zixil",[3538]="Overwatch Mark I",[3539]="Ott",[3540]="Hal McAllister",[3541]="Sarah Raycroft",[3542]="Jaysin Lanyda",[3543]="Robert Aebischer",[3544]="Jason Lemieux",[3545]="Claude Erksine",[3546]="Bernie Heisten",[3547]="Hamlin Atkins",[3548]="Selina Weston",[3549]="Shelene Rhobart",[3550]="Martine Tramblay",[3551]="Patrice Dwyer",[3552]="Alexandre Lefevre",[3553]="Sebastian Meloche",[3554]="Andrea Boynton",[3555]="Johan Focht",[3556]="Andrew Hilbert",[3557]="Guillaume Sorouy",[3560]="Healing Ward",[3561]="Kyrai",[3562]="Alaindia",[3566]="Flatland Prowler",[3567]="Tallonkai Swiftroot",[3568]="Mist",[3569]="Bogling",[3570]="Cleansed Timberling",[3571]="Teldrassil Sentinel",[3572]="Zizzek",[3573]="Mana Spring Totem",[3577]="Ambermill Brewmaster",[3578]="Ambermill Miner",[3579]="Stoneclaw Totem",[3580]="Crafticus Rabbitus",[3581]="Sewer Beast",[3582]="Aman",[3583]="Barithras Moonshade",[3584]="Therylune",[3585]="Therysil",[3586]="Miner Johnson",[3587]="Lyrai",[3588]="Khardan Proudblade",[3589]="Keina",[3590]="Janna Brightmoon",[3591]="Freja Nightwing",[3592]="Andiss",[3593]="Alyissia",[3594]="Frahun Shadewhisper",[3595]="Shanda",[3596]="Ayanna Everstride",[3597]="Mardant Strongoak",[3598]="Kyra Windblade",[3599]="Jannok Breezesong",[3600]="Laurna Morninglight",[3601]="Dazalar",[3602]="Kal",[3603]="Cyndra Kindwhisper",[3604]="Malorne Bladeleaf",[3605]="Nadyia Maneweaver",[3606]="Alanna Raveneye",[3607]="Androl Oakhand",[3608]="Aldia",[3609]="Shalomon",[3610]="Jeena Featherbow",[3611]="Brannol Eaglemoon",[3612]="Sinda",[3613]="Meri Ironweave",[3614]="Narret Shadowgrove",[3615]="Devrak",[3616]="Onu",[3617]="Lordaeron Citizen",[3619]="Ghost Saber",[3620]="Harruk",[3621]="Kurll",[3622]="Grokor",[3624]="Zudd",[3625]="Rarck",[3626]="Jenn Langston",[3627]="Erich Lohan",[3628]="Steven Lohan",[3629]="David Langston",[3630]="Deviate Coiler",[3631]="Deviate Stinglash",[3632]="Deviate Creeper",[3633]="Deviate Slayer",[3634]="Deviate Stalker",[3636]="Deviate Ravager",[3637]="Deviate Guardian",[3638]="Devouring Ectoplasm",[3639]="Sentinel Tysha Moonblade",[3640]="Evolving Ectoplasm",[3641]="Deviate Lurker",[3644]="Cerellean Whiteclaw",[3649]="Thundris Windweaver",[3650]="Asterion",[3652]="Trigore the Lasher",[3653]="Kresh",[3654]="Mutanus the Devourer",[3655]="Mad Magglish",[3657]="Sentinel Elissa Starbreeze",[3658]="Lizzarik",[3659]="Jorb",[3660]="Athrikus Narassin",[3661]="Balthule Shadowstrike",[3662]="Delmanis the Hated",[3663]="Delgren the Purifier",[3664]="Ilkrud Magthrull",[3665]="Crane Operator Bigglefuzz",[3666]="Wizbang Cranktoggle",[3667]="Anaya Dawnrunner",[3669]="Lord Cobrahn",[3670]="Lord Pythas",[3671]="Lady Anacondra",[3672]="Boahn",[3673]="Lord Serpentis",[3674]="Skum",[3678]="Muyoh",[3679]="Naralex",[3680]="Serpentbloom Snake",[3681]="Wisp",[3682]="Vrang Wildgore",[3683]="Kiknikle",[3684]="Pizznukle",[3685]="Harb Clawhoof",[3688]="Reban Freerunner",[3689]="Laer Stepperunner",[3690]="Kar Stormsinger",[3691]="Raene Wolfrunner",[3692]="Volcor",[3693]="Terenthis",[3694]="Sentinel Selarin",[3695]="Grimclaw",[3696]="Ran Bloodtooth",[3698]="Bolyun",[3700]="Jadenvis Seawatcher",[3701]="Tharnariun Treetender",[3702]="Alanndarian Nightsong",[3703]="Krulmoo Fullmoon",[3704]="Mahani",[3705]="Gahroot",[3706]="Tai'jin",[3707]="Ken'jai",[3708]="Gruna",[3711]="Wrathtail Myrmidon",[3712]="Wrathtail Razortail",[3713]="Wrathtail Wave Rider",[3715]="Wrathtail Sea Witch",[3717]="Wrathtail Sorceress",[3721]="Mystlash Hydra",[3722]="Mystlash Flayer",[3725]="Dark Strand Cultist",[3727]="Dark Strand Enforcer",[3728]="Dark Strand Adept",[3730]="Dark Strand Excavator",[3732]="Forsaken Seeker",[3733]="Forsaken Herbalist",[3734]="Orc Overseer",[3735]="Apothecary Falthis",[3736]="Darkslayer Mordenthal",[3737]="Saltspittle Puddlejumper",[3739]="Saltspittle Warrior",[3740]="Saltspittle Muckdweller",[3742]="Saltspittle Oracle",[3743]="Foulweald Warrior",[3745]="Foulweald Pathfinder",[3746]="Foulweald Den Watcher",[3748]="Foulweald Shaman",[3749]="Foulweald Ursa",[3750]="Foulweald Totemic",[3752]="Xavian Rogue",[3754]="Xavian Betrayer",[3755]="Xavian Felsworn",[3757]="Xavian Hellcaller",[3758]="Felmusk Satyr",[3759]="Felmusk Rogue",[3762]="Felmusk Felsworn",[3763]="Felmusk Shadowstalker",[3765]="Bleakheart Satyr",[3767]="Bleakheart Trickster",[3770]="Bleakheart Shadowstalker",[3771]="Bleakheart Hellcaller",[3772]="Lesser Felguard",[3773]="Akkrilus",[3774]="Felslayer",[3779]="Syurana",[3780]="Singed Shambler",[3781]="Shadethicket Wood Shaper",[3782]="Shadethicket Stone Mover",[3783]="Shadethicket Raincaller",[3784]="Shadethicket Bark Ripper",[3789]="Terrowulf Fleshripper",[3791]="Terrowulf Shadow Weaver",[3792]="Terrowulf Packlord",[3794]="Druid of the Talon",[3795]="Druid of the Claw",[3797]="Cenarion Protector",[3799]="Severed Druid",[3801]="Severed Sleeper",[3802]="Severed Dreamer",[3803]="Severed Keeper",[3804]="Forsaken Intruder",[3806]="Forsaken Infiltrator",[3807]="Forsaken Assassin",[3808]="Forsaken Dark Stalker",[3809]="Ashenvale Bear",[3810]="Elder Ashenvale Bear",[3811]="Giant Ashenvale Bear",[3812]="Clattering Crawler",[3814]="Spined Crawler",[3815]="Blink Dragon",[3816]="Wild Buck",[3817]="Shadowhorn Stag",[3818]="Elder Shadowhorn Stag",[3819]="Wildthorn Stalker",[3820]="Wildthorn Venomspitter",[3821]="Wildthorn Lurker",[3823]="Ghostpaw Runner",[3824]="Ghostpaw Howler",[3825]="Ghostpaw Alpha",[3831]="[UNUSED] Ancient Guardian",[3833]="Cenarion Vindicator",[3834]="Crazed Ancient",[3835]="Biletoad",[3836]="Mountaineer Pebblebitty",[3838]="Vesprystus",[3840]="Druid of the Fang",[3841]="Teldira Moonfeather",[3842]="Brombar Higgleby",[3843]="Anaya",[3844]="Healing Ward IV",[3845]="Shindrell Swiftfire",[3846]="Talen",[3847]="Orendil Broadleaf",[3848]="Kayneth Stillwind",[3849]="Deathstalker Adamant",[3850]="Sorcerer Ashcrombe",[3851]="Shadowfang Whitescalp",[3853]="Shadowfang Moonwalker",[3854]="Shadowfang Wolfguard",[3855]="Shadowfang Darksoul",[3857]="Shadowfang Glutton",[3859]="Shadowfang Ragetooth",[3861]="Bleak Worg",[3862]="Slavering Worg",[3863]="Lupine Horror",[3864]="Fel Steed",[3865]="Shadow Charger",[3866]="Vile Bat",[3868]="Blood Seeker",[3869]="Lesser Gargoyle",[3870]="Stone Sleeper",[3872]="Deathsworn Captain",[3873]="Tormented Officer",[3875]="Haunted Servitor",[3877]="Wailing Guardsman",[3879]="Dark Strand Assassin",[3880]="Sentinel Melyria Frostshadow",[3881]="Grimtak",[3882]="Zlagk",[3883]="Moodan Sungrain",[3884]="Jhawna Oatwind",[3885]="Sentinel Velene Starstrike",[3886]="Razorclaw the Butcher",[3887]="Baron Silverlaine",[3888]="Korra",[3890]="Brakgul Deathbringer",[3891]="Teronis' Corpse",[3892]="Relara Whitemoon",[3893]="Forsaken Scout",[3894]="Pelturas Whitemoon",[3897]="Krolg",[3898]="Aligar the Tormentor",[3899]="Balizar the Umbrage",[3900]="Caedakar the Vicious",[3901]="Illiyana",[3902]="Searing Totem II",[3903]="Searing Totem III",[3904]="Searing Totem IV",[3906]="Healing Stream Totem II",[3907]="Healing Stream Totem III",[3908]="Healing Stream Totem IV",[3909]="Healing Stream Totem V",[3911]="Stoneclaw Totem II",[3912]="Stoneclaw Totem III",[3913]="Stoneclaw Totem IV",[3914]="Rethilgore",[3915]="Dagri",[3916]="Shael'dryn",[3917]="Befouled Water Elemental",[3919]="Withered Ancient",[3920]="Anilia",[3921]="Thistlefur Ursa",[3922]="Thistlefur Totemic",[3923]="Thistlefur Den Watcher",[3924]="Thistlefur Shaman",[3925]="Thistlefur Avenger",[3926]="Thistlefur Pathfinder",[3927]="Wolf Master Nandos",[3928]="Rotting Slime",[3931]="Shadethicket Oracle",[3932]="Bloodtooth Guard",[3933]="Hai'zan",[3934]="Innkeeper Boorand Plainswind",[3935]="Toddrick",[3936]="Shandris Feathermoon",[3937]="Kira Songshine",[3939]="Razormane Wolf",[3940]="Taneel Darkwood",[3941]="Uthil Mooncall",[3942]="Mavoris Cloudsbreak",[3943]="Ruuzel",[3944]="Wrathtail Priestess",[3945]="Caravaneer Ruzzgot",[3946]="Velinde Starsong",[3947]="Goblin Shipbuilder",[3948]="Honni Goldenoat",[3950]="Minor Water Guardian",[3951]="Bhaldaran Ravenshade",[3952]="Aeolynn",[3953]="Tandaan Lightmane",[3954]="Dalria",[3955]="Shandrina",[3956]="Harklan Moongrove",[3957]="Jainay Featherbreeze",[3958]="Lardan",[3959]="Nantar",[3960]="Ulthaan",[3961]="Maliynn",[3962]="Haljan Oakheart",[3963]="Danlaar Nightstride",[3964]="Kylanna",[3965]="Cylania Rootstalker",[3967]="Aayndia Floralwind",[3968]="Sentry Totem",[3969]="Fahran Silentblade",[3970]="Llana",[3974]="Houndmaster Loksey",[3975]="Herod",[3976]="Scarlet Commander Mograine",[3977]="High Inquisitor Whitemane",[3978]="Sage Truthseeker",[3979]="Librarian Mae Paledust",[3980]="Raleigh the Devout",[3981]="Vorrel Sengutz",[3982]="Monika Sengutz",[3983]="Interrogator Vishas",[3984]="Nancy Vishas",[3985]="Grandpa Vishas",[3986]="Sarilus Foulborne",[3987]="Dal Bloodclaw",[3988]="Venture Co. Operator",[3989]="Venture Co. Logger",[3991]="Venture Co. Deforester",[3992]="Venture Co. Holdout",[3993]="Venture Co. Machine Smith",[3994]="Keeper Albagorm",[3995]="Witch Doctor Jin'Zil",[3996]="Faldreas Goeth'Shael",[3998]="Windshear Vermin",[3999]="Windshear Digger",[4001]="Windshear Tunnel Rat",[4002]="Windshear Stonecutter",[4003]="Windshear Geomancer",[4004]="Windshear Overlord",[4005]="Deepmoss Creeper",[4006]="Deepmoss Webspinner",[4007]="Deepmoss Venomspitter",[4008]="Cliff Stormer",[4009]="Raging Cliff Stormer",[4011]="Young Pridewing",[4012]="Pridewing Wyvern",[4013]="Pridewing Skyhunter",[4014]="Pridewing Consort",[4015]="Pridewing Patriarch",[4016]="Fey Dragon",[4017]="Wily Fey Dragon",[4018]="Antlered Courser",[4019]="Great Courser",[4020]="Sap Beast",[4021]="Corrupted Sap Beast",[4022]="Bloodfury Harpy",[4023]="Bloodfury Roguefeather",[4024]="Bloodfury Slayer",[4025]="Bloodfury Ambusher",[4026]="Bloodfury Windcaller",[4027]="Bloodfury Storm Witch",[4028]="Charred Ancient",[4029]="Blackened Ancient",[4030]="Vengeful Ancient",[4031]="Fledgling Chimaera",[4032]="Young Chimaera",[4034]="Enraged Stone Spirit",[4035]="Furious Stone Spirit",[4036]="Rogue Flame Spirit",[4037]="Burning Ravager",[4038]="Burning Destroyer",[4040]="Cave Stalker",[4041]="Scorched Basilisk",[4042]="Singed Basilisk",[4043]="Galthuk",[4044]="Blackened Basilisk",[4046]="Magatha Grimtotem",[4047]="Zor Lonetree",[4048]="Falfindel Waywarder",[4049]="Seereth Stonebreak",[4050]="Cenarion Caretaker",[4051]="Cenarion Botanist",[4052]="Cenarion Druid",[4053]="Daughter of Cenarius",[4054]="Laughing Sister",[4056]="Mirkfallon Keeper",[4057]="Son of Cenarius",[4059]="Forest Spirit",[4061]="Mirkfallon Dryad",[4062]="Dark Iron Bombardier",[4063]="Feeboz",[4064]="Blackrock Scout",[4065]="Blackrock Sentry",[4066]="Nal'taszar",[4067]="Twilight Runner",[4068]="Serpent Messenger",[4070]="Venture Co. Builder",[4072]="Prisoner of Jin'Zil",[4073]="XT:4",[4074]="XT:9",[4075]="Rat",[4076]="Roach",[4077]="Gaxim Rustfizzle",[4078]="Collin Mauren",[4079]="Sentinel Thenysil",[4080]="Kaela Shadowspear",[4081]="Lomac Gearstrip",[4082]="Grawnal",[4083]="Jeeda",[4084]="Chylina",[4085]="Nizzik",[4086]="Veenix",[4087]="Arias'ta Bladesinger",[4088]="Elanaria",[4089]="Sildanair",[4090]="Astarii Starseeker",[4091]="Jandria",[4092]="Lariia",[4093]="[Deprecated for 4.x]Galak Wrangler",[4094]="[Deprecated for 4.x]Galak Scout",[4095]="Galak Mauler",[4096]="[Deprecated for 4.x]Galak Windchaser",[4097]="Galak Stormer",[4099]="Galak Marauder",[4100]="Screeching Harpy",[4101]="Screeching Roguefeather",[4104]="Screeching Windcaller",[4107]="Highperch Wyvern",[4109]="Highperch Consort",[4110]="Highperch Patriarch",[4111]="Gravelsnout Kobold",[4112]="Gravelsnout Vermin",[4113]="Gravelsnout Digger",[4114]="Gravelsnout Forager",[4116]="Gravelsnout Surveyor",[4117]="Cloud Serpent",[4118]="Venomous Cloud Serpent",[4119]="Elder Cloud Serpent",[4120]="Thundering Boulderkin",[4124]="Needles Cougar",[4126]="Crag Stalker",[4127]="Hecklefang Hyena",[4128]="Hecklefang Stalker",[4129]="Hecklefang Snarler",[4130]="[Deprecated for 4.x]Silithid Searcher",[4131]="[Deprecated for 4.x]Silithid Invader",[4132]="Krkk'kx",[4133]="[Deprecated for 4.x]Silithid Hive Drone",[4138]="Jeen'ra Nightrunner",[4139]="Scorpid Terror",[4140]="Scorpid Reaver",[4142]="[Deprecated for 4.x]Sparkleshell Tortoise",[4143]="Sparkleshell Snapper",[4144]="Sparkleshell Borer",[4146]="Jocaste",[4147]="[Deprecated for 4.x]Saltstone Basilisk",[4150]="[Deprecated for 4.x]Saltstone Gazer",[4151]="[Deprecated for 4.x]Saltstone Crystalhide",[4154]="Salt Flats Scavenger",[4155]="Idriana",[4156]="Astaia",[4158]="Salt Flats Vulture",[4159]="Me'lynn",[4160]="Ainethil",[4161]="Lysheana",[4163]="Syurna",[4164]="Cylania",[4165]="Elissa Dumas",[4166]="Gazelle",[4167]="Dendrythis",[4168]="Elynna",[4169]="Jaeana",[4170]="Ellandrieth",[4171]="Merelyssa",[4172]="Anadyia",[4173]="Landria",[4175]="Vinasia",[4177]="Melea",[4180]="Ealyshia Dewwhisper",[4181]="Fyrenna",[4182]="Dalmond",[4183]="Naram Longclaw",[4184]="Geenia Sunshadow",[4185]="Shaldyn",[4186]="Mavralyn",[4187]="Harlon Thornguard",[4188]="Illyanie",[4189]="Valdaron",[4190]="Kyndri",[4191]="Allyndia",[4192]="Taldan",[4193]="Grondal Moonbreeze",[4194]="Ullanna",[4195]="Tiyani",[4196]="Silithid Swarm",[4197]="Ken'zigla",[4198]="Braelyn Firehand",[4200]="Laird",[4201]="Ziz Fizziks",[4202]="Gerenzo Wrenchwhistle",[4203]="Ariyell Skyshadow",[4204]="Firodren Mooncaller",[4205]="Dorion",[4208]="Lairn",[4209]="Garryeth",[4210]="Alegorn",[4211]="Dannelor",[4212]="Telonis",[4213]="Taladan",[4214]="Erion Shadewhisper",[4215]="Anishar",[4216]="Chardryn",[4217]="Mathrengyl Bearwalker",[4218]="Denatharion",[4219]="Fylerian Nightwing",[4220]="Cyroen",[4221]="Talaelar",[4222]="Voloren",[4223]="Fyldan",[4225]="Saenorion",[4226]="Ulthir",[4228]="Vaean",[4229]="Mythrin'dir",[4230]="Yldan",[4231]="Kieran",[4232]="Glorandiir",[4233]="Mythidan",[4234]="Andrus",[4235]="Turian",[4236]="Cyridan",[4240]="Caynrus",[4241]="Mydrannul",[4242]="Frostsaber Companion",[4243]="Nightshade",[4244]="Shadow",[4248]="Pesterhide Hyena",[4249]="Pesterhide Snarler",[4250]="Galak Packhound",[4251]="Goblin Racer",[4252]="Gnome Racer",[4254]="Geofram Bouldertoe",[4255]="Brogus Thunderbrew",[4256]="Golnir Bouldertoe",[4257]="Lana Thunderbrew",[4258]="Bengus Deepforge",[4259]="Thurgrum Deepforge",[4260]="Venture Co. Shredder",[4262]="Darnassus Sentinel",[4263]="Deepmoss Hatchling",[4264]="Deepmoss Matriarch",[4265]="Nyoma",[4266]="Danlyia",[4267]="Daelyshia",[4269]="Chestnut Mare",[4270]="Riding Wolf (Red)",[4271]="Dire Wolf",[4272]="Brown Wolf",[4273]="Keeper Ordanus",[4274]="Fenrus the Devourer",[4275]="Archmage Arugal",[4276]="Piznik",[4277]="Eye of Kilrogg",[4278]="Commander Springvale",[4279]="Odo the Blindwatcher",[4280]="Scarlet Preserver",[4281]="Scarlet Scout",[4282]="Scarlet Magician",[4283]="Scarlet Sentry",[4284]="Scarlet Augur",[4285]="Scarlet Disciple",[4286]="Scarlet Soldier",[4287]="Scarlet Gallant",[4288]="Scarlet Beastmaster",[4289]="Scarlet Evoker",[4290]="Scarlet Guardsman",[4291]="Scarlet Diviner",[4292]="Scarlet Protector",[4293]="Scarlet Scryer",[4294]="Scarlet Sorcerer",[4295]="Scarlet Myrmidon",[4296]="Scarlet Adept",[4297]="Scarlet Conjuror",[4298]="Scarlet Defender",[4299]="Scarlet Chaplain",[4300]="Scarlet Wizard",[4301]="Scarlet Centurion",[4302]="Scarlet Champion",[4303]="Scarlet Abbot",[4304]="Scarlet Tracking Hound",[4305]="Kriggon Talsone",[4306]="Scarlet Torturer",[4307]="Heldan Galesong",[4308]="Unfettered Spirit",[4309]="Gorm Grimtotem",[4310]="Cor Grimtotem",[4311]="Holgar Stormaxe",[4312]="Tharm",[4314]="Gorkas",[4316]="Kolkar Packhound",[4317]="Nyse",[4319]="Thyssiana",[4320]="Caelyb",[4321]="Baldruc",[4323]="Searing Hatchling",[4324]="Searing Whelp",[4328]="Firemane Scalebane",[4329]="Firemane Scout",[4331]="Firemane Ash Tail",[4334]="Firemane Flamecaller",[4339]="Brimgore",[4341]="Drywallow Crocolisk",[4342]="Drywallow Vicejaw",[4343]="Drywallow Snapper",[4344]="Mottled Drywallow Crocolisk",[4345]="Drywallow Daggermaw",[4346]="Noxious Flayer",[4347]="Noxious Reaver",[4348]="Noxious Shredder",[4351]="Bloodfen Raptor",[4352]="Bloodfen Screecher",[4355]="Bloodfen Scytheclaw",[4356]="Bloodfen Razormaw",[4357]="Bloodfen Lashtail",[4358]="Mirefin Puddlejumper",[4359]="Mirefin Murloc",[4360]="Mirefin Warrior",[4361]="Mirefin Muckdweller",[4362]="Mirefin Coastrunner",[4363]="Mirefin Oracle",[4364]="Strashaz Warrior",[4366]="Strashaz Serpent Guard",[4368]="Strashaz Myrmidon",[4370]="Strashaz Sorceress",[4371]="Strashaz Siren",[4374]="Strashaz Hydra",[4376]="Darkmist Spider",[4377]="Darkmist Hatchling",[4378]="Darkmist Recluse",[4379]="Darkmist Silkspinner",[4380]="Darkmist Widow",[4382]="Withervine Creeper",[4385]="Withervine Rager",[4386]="Withervine Bark Ripper",[4387]="Withervine Mire Beast",[4388]="Young Murk Thresher",[4389]="Murk Thresher",[4390]="Elder Murk Thresher",[4391]="Swamp Ooze",[4392]="Corrosive Swamp Ooze",[4393]="Acidic Swamp Ooze",[4394]="Bubbling Swamp Ooze",[4396]="Mudrock Tortoise",[4397]="Mudrock Spikeshell",[4398]="Mudrock Burrower",[4399]="Mudrock Borer",[4400]="Mudrock Snapjaw",[4401]="Muckshell Clacker",[4402]="Muckshell Snapclaw",[4403]="Muckshell Pincer",[4404]="Muckshell Scrabbler",[4405]="Muckshell Razorclaw",[4407]="Teloren",[4409]="Gatekeeper Kordurus",[4411]="Darkfang Lurker",[4412]="Darkfang Creeper",[4413]="Darkfang Spider",[4414]="Darkfang Venomspitter",[4415]="Giant Darkfang Spider",[4416]="Defias Strip Miner",[4417]="Defias Taskmaster",[4418]="Defias Wizard",[4419]="Race Master Kronkrider",[4420]="Overlord Ramtusk",[4421]="Charlga Razorflank",[4422]="Agathelos the Raging",[4423]="Darnassian Protector",[4424]="Aggem Thorncurse",[4425]="Blind Hunter",[4427]="Ward Guardian",[4428]="Death Speaker Jargba",[4429]="Goblin Pit Crewman",[4430]="Gnome Pit Crewman",[4435]="Razorfen Warrior",[4436]="Razorfen Quilguard",[4437]="Razorfen Warden",[4438]="Razorfen Spearhide",[4440]="Razorfen Totemic",[4442]="Razorfen Defender",[4444]="Deathstalker Vincent",[4449]="Crazzle Sprysprocket",[4450]="Rugfizzle",[4451]="Auld Stonespire",[4452]="Kravel Koalbeard",[4453]="Wizzle Brassbolts",[4454]="Fizzle Brassbolts",[4455]="Red Jack Flint",[4456]="Fiora Longears",[4457]="Murkgill Forager",[4458]="Murkgill Hunter",[4459]="Murkgill Oracle",[4460]="Murkgill Coldbringer",[4461]="Murkgill Warrior",[4462]="Blackrock Hunter",[4463]="Blackrock Summoner",[4464]="Blackrock Gladiator",[4465]="Vilebranch Warrior",[4466]="Vilebranch Scalper",[4467]="Vilebranch Soothsayer",[4468]="Jade Sludge",[4469]="Emerald Ooze",[4472]="Haunting Vision",[4474]="Rotting Cadaver",[4475]="Blighted Zombie",[4479]="Fardel Dabyrie",[4480]="Kenata Dabyrie",[4481]="Marcel Dabyrie",[4483]="Moktar Krin",[4484]="Feero Ironhand",[4485]="Belgrom Rockmaul",[4486]="Genavie Callow",[4488]="Parqual Fintallas",[4489]="Braug Dimspirit",[4490]="Grenka Bloodscreech",[4493]="Scarlet Avenger",[4494]="Scarlet Spellbinder",[4495]="Gnome Pit Boss",[4496]="Goblin Pit Boss",[4497]="Captain Quirk",[4498]="Maurin Bonesplitter",[4499]="Rok'Alim the Pounder",[4500]="Overlord Mok'Morokk",[4501]="Draz'Zilb",[4502]="Tharg",[4503]="Mudcrush Durtfeet",[4504]="Frostmaw",[4505]="Bloodsail Deckhand",[4506]="Bloodsail Swabby",[4507]="Daisy",[4508]="Willix the Importer",[4509]="Sargath",[4510]="Heralath Fallowbrook",[4511]="Agam'ar",[4512]="Rotting Agam'ar",[4514]="Raging Agam'ar",[4515]="Death's Head Acolyte",[4516]="Death's Head Adept",[4517]="Death's Head Priest",[4518]="Death's Head Sage",[4519]="Death's Head Seer",[4520]="Razorfen Geomancer",[4521]="Treshala Fallowbrook",[4522]="Razorfen Dustweaver",[4523]="Razorfen Groundshaker",[4525]="Razorfen Earthbreaker",[4526]="Wind Howler",[4528]="Stone Rumbler",[4530]="Razorfen Handler",[4531]="Razorfen Beast Trainer",[4532]="Razorfen Beastmaster",[4534]="Tamed Hyena",[4535]="Tamed Battleboar",[4538]="Kraul Bat",[4539]="Greater Kraul Bat",[4540]="Scarlet Monk",[4541]="Blood of Agamaggan",[4542]="High Inquisitor Fairbanks",[4543]="Bloodmage Thalnos",[4544]="Krueg Skullsplitter",[4545]="Nag'zehn",[4546]="Bor'zehn",[4547]="Tarkreu Shadowstalker",[4548]="Steelsnap",[4549]="William Montague",[4550]="Ophelia Montague",[4551]="Michael Garrett",[4552]="Eunice Burch",[4553]="Ronald Burch",[4554]="Tawny Grisette",[4555]="Eleanor Rusk",[4556]="Gordon Wendham",[4557]="Louis Warren",[4558]="Lauren Newcomb",[4559]="Timothy Weldon",[4560]="Walter Ellingson",[4561]="Daniel Bartlett",[4562]="Thomas Mordan",[4563]="Kaal Soulreaper",[4564]="Luther Pickman",[4565]="Richard Kerwin",[4566]="Kaelystia Hatebringer",[4567]="Pierce Shackleton",[4568]="Anastasia Hartwell",[4569]="Charles Seaton",[4570]="Sydney Upton",[4571]="Morley Bates",[4572]="Silas Zimmer",[4573]="Armand Cromwell",[4574]="Lizbeth Cromwell",[4575]="Hannah Akeley",[4576]="Josef Gregorian",[4577]="Millie Gregorian",[4578]="Josephine Lister",[4580]="Lucille Castleton",[4581]="Salazar Bloch",[4582]="Carolyn Ward",[4583]="Miles Dexter",[4584]="Gregory Charles",[4585]="Ezekiel Graves",[4586]="Graham Van Talen",[4587]="Elizabeth Van Talen",[4588]="Arthur Moore",[4589]="Joseph Moore",[4590]="Jonathan Chambers",[4591]="Mary Edras",[4592]="Nathaniel Steenwick",[4593]="Christoph Walker",[4594]="Angela Curthas",[4595]="Baltus Fowler",[4596]="James Van Brunt",[4597]="Samuel Van Brunt",[4598]="Brom Killian",[4599]="Sarah Killian",[4600]="Geoffrey Hartwell",[4601]="Francis Eliot",[4602]="Benijah Fenner",[4603]="Nicholas Atwood",[4604]="Abigail Sawyer",[4605]="Basil Frye",[4606]="Aelthalyste",[4607]="Father Lankester",[4608]="Father Lazarus",[4609]="Doctor Marsh",[4610]="Algernon",[4611]="Doctor Herbert Halsey",[4612]="Boyle",[4613]="Christopher Drakul",[4614]="Martha Alliestar",[4615]="Katrina Alliestar",[4616]="Lavinia Crowe",[4617]="Thaddeus Webb",[4618]="Martek the Exiled",[4619]="Geltharis",[4620]="Fobeed",[4623]="Quilguard Champion",[4624]="Booty Bay Bruiser",[4625]="Death's Head Ward Keeper",[4627]="Arugal's Voidwalker",[4629]="Trackmaster Zherin",[4630]="Pozzik",[4631]="Wharfmaster Lozgil",[4632]="Kolkar Centaur",[4633]="Kolkar Scout",[4634]="Kolkar Mauler",[4635]="Kolkar Windchaser",[4636]="Kolkar Battle Lord",[4637]="Kolkar Destroyer",[4638]="Magram Scout",[4639]="Magram Outrunner",[4640]="Magram Wrangler",[4641]="Magram Windchaser",[4642]="Magram Stormer",[4643]="Magram Pack Runner",[4644]="Magram Marauder",[4645]="Magram Mauler",[4646]="Gelkis Outrunner",[4647]="Gelkis Scout",[4648]="Gelkis Stamper",[4649]="Gelkis Windchaser",[4651]="Gelkis Earthcaller",[4652]="Gelkis Mauler",[4653]="Gelkis Marauder",[4654]="Maraudine Scout",[4655]="Maraudine Wrangler",[4656]="Maraudine Mauler",[4657]="Maraudine Windchaser",[4658]="Maraudine Stormer",[4659]="Maraudine Marauder",[4660]="Maraudine Bonepaw",[4661]="Gelkis Rumbler",[4662]="Magram Bonepaw",[4663]="Burning Blade Augur",[4664]="Burning Blade Reaver",[4665]="Burning Blade Adept",[4666]="Burning Blade Felsworn",[4667]="Burning Blade Shadowmage",[4668]="Burning Blade Summoner",[4670]="Hatefury Rogue",[4671]="Hatefury Trickster",[4672]="Hatefury Felsworn",[4673]="Hatefury Betrayer",[4674]="Hatefury Shadowstalker",[4675]="Hatefury Hellcaller",[4676]="Lesser Infernal",[4677]="Doomwarder",[4678]="Mana Eater",[4679]="Nether Maiden",[4680]="Doomwarder Captain",[4681]="Mage Hunter",[4682]="Nether Sister",[4684]="Nether Sorceress",[4685]="Ley Hunter",[4686]="Deepstrider Giant",[4687]="Deepstrider Searcher",[4688]="Bonepaw Hyena",[4689]="Starving Bonepaw",[4690]="Rabid Bonepaw",[4692]="Dread Swoop",[4693]="Dread Flyer",[4694]="Dread Ripper",[4695]="Carrion Horror",[4696]="Scorpashi Snapper",[4697]="Scorpashi Lasher",[4699]="Scorpashi Venomlash",[4700]="Aged Kodo",[4701]="Dying Kodo",[4702]="Ancient Kodo",[4705]="Burning Blade Invoker",[4706]="Razzeric",[4707]="Zuzubee",[4708]="Shreev",[4709]="Zamek",[4710]="Gray Ram",[4711]="Slitherblade Naga",[4712]="Slitherblade Sorceress",[4713]="Slitherblade Warrior",[4714]="Slitherblade Myrmidon",[4715]="Slitherblade Razortail",[4716]="Slitherblade Tidehunter",[4718]="Slitherblade Oracle",[4719]="Slitherblade Sea Witch",[4720]="Rizzle Brassbolts",[4721]="Zangen Stonehoof",[4722]="Rau Cliffrunner",[4723]="Foreman Cozzle",[4726]="Raging Thunder Lizard",[4727]="Elder Thunder Lizard",[4728]="Gritjaw Basilisk",[4729]="Hulking Gritjaw Basilisk",[4730]="Lelanai",[4731]="Zachariah Post",[4732]="Randal Hunter",[4752]="Kildar",[4753]="Jartsam",[4772]="Ultham Ironhorn",[4773]="Velma Warnam",[4775]="Felicia Doan",[4777]="White Ram",[4778]="Riding Ram (Blue)",[4779]="Brown Ram",[4780]="Riding Ram (Black)",[4781]="Snufflenose Gopher",[4782]="Truk Wildbeard",[4783]="Dawnwatcher Selgorm",[4784]="Argent Guard Manados",[4785]="Illusionary Nightmare",[4786]="Dawnwatcher Shaedlass",[4787]="Scout Thaelrid",[4788]="Fallenroot Satyr",[4789]="Fallenroot Rogue",[4791]="Nazeer Bloodpike",[4794]="Morgan Stern",[4795]="Force of Nature",[4798]="Fallenroot Shadowstalker",[4799]="Fallenroot Hellcaller",[4802]="Blackfathom Tide Priestess",[4803]="Blackfathom Oracle",[4805]="Blackfathom Sea Witch",[4807]="Blackfathom Myrmidon",[4809]="Twilight Acolyte",[4810]="Twilight Reaver",[4811]="Twilight Aquamancer",[4812]="Twilight Loreseeker",[4813]="Twilight Shadowmage",[4814]="Twilight Elementalist",[4815]="Murkshallow Snapclaw",[4818]="Blindlight Murloc",[4819]="Blindlight Muckdweller",[4820]="Blindlight Oracle",[4821]="Skittering Crustacean",[4822]="Snapping Crustacean",[4823]="Barbed Crustacean",[4824]="Aku'mai Fisher",[4825]="Aku'mai Snapjaw",[4827]="Deep Pool Threshfin",[4829]="Aku'mai",[4830]="Old Serra'kis",[4831]="Lady Sarevess",[4832]="Twilight Lord Kelris",[4834]="Theramore Infiltrator",[4841]="Deadmire",[4842]="Earthcaller Halmgar",[4844]="Shadowforge Surveyor",[4845]="Shadowforge Ruffian",[4846]="Shadowforge Digger",[4847]="Shadowforge Relic Hunter",[4848]="Shadowforge Darkcaster",[4849]="Shadowforge Archaeologist",[4850]="Stonevault Cave Lurker",[4851]="Stonevault Rockchewer",[4852]="Stonevault Oracle",[4853]="Stonevault Geomancer",[4854]="Grimlok",[4855]="Stonevault Brawler",[4856]="Stonevault Cave Hunter",[4857]="Stone Keeper",[4860]="Stone Steward",[4861]="Shrike Bat",[4863]="Jadespine Basilisk",[4872]="Obsidian Golem",[4875]="Turhaw",[4876]="Jawn Highmesa",[4877]="Jandia",[4878]="Montarr",[4879]="Ogg'marr",[4883]="Krak",[4884]="Zulrg",[4885]="Gregor MacVince",[4886]="Hans Weston",[4887]="Ghamoo-Ra",[4888]="Marie Holdston",[4889]="Torq Ironblast",[4890]="Piter Verance",[4891]="Dwane Wertle",[4892]="Jensen Farran",[4893]="Bartender Lillian",[4894]="Craig Nollward",[4895]="Smiling Jim",[4896]="Charity Mipsy",[4897]="Helenia Olden",[4898]="Brant Jasperbloom",[4899]="Uma Bartulm",[4900]="Alchemist Narett",[4901]="Sara Pierce",[4902]="Mikal Pierce",[4921]="Guard Byron",[4922]="Guard Edward",[4923]="Guard Jarad",[4924]="Combat Master Criton",[4926]="Krog",[4941]="Caz Twosprocket",[4943]="Mosarn",[4944]="Captain Garran Vimes",[4945]="Goblin Drag Car",[4946]="Gnome Drag Car",[4947]="Theramore Lieutenant",[4948]="Adjutant Tesoran",[4949]="Thrall",[4950]="Spot",[4951]="Theramore Practicing Guard",[4952]="Theramore Combat Dummy",[4953]="Moccasin",[4954]="Uttnar",[4955]="Theramore Archery Target 1",[4958]="Haunting Spirit",[4959]="Jorgen",[4960]="Bishop DeLavey",[4961]="Dashel Stonefist",[4963]="Mikhail",[4964]="Commander Samaul",[4965]="Pained",[4966]="Private Hendel",[4967]="Archmage Tervosh",[4968]="Lady Jaina Proudmoore",[4969]="Old Town Thug",[4971]="Slim's Friend",[4972]="Kagoro",[4973]="Guard Lasiter",[4974]="Aldwin Laughlin",[4975]="Theramore Archery Target 2",[4977]="Murkshallow Softshell",[4978]="Aku'mai Servant",[4979]="Theramore Guard",[4980]="Paval Reethe",[4981]="Ben Trias",[4982]="Thomas",[4983]="Ogron",[4984]="Argos Nightwhisper",[4992]="World Warrior Trainer",[4995]="Stockade Guard",[4996]="Injured Stockade Guard",[5042]="Nurse Lillian",[5043]="Defias Rioter",[5044]="Theramore Skirmisher",[5045]="Private Hallan",[5046]="Lieutenant Caldwell",[5047]="Ellaercia",[5048]="Deviate Adder",[5049]="Lyesa Steelbrow",[5052]="Edward Remington",[5053]="Deviate Crocolisk",[5054]="Krumn",[5055]="Deviate Lasher",[5056]="Deviate Dreadfang",[5057]="Theramore Deserter",[5058]="Wolfguard Worg",[5060]="World Banker",[5081]="Connor Rivers",[5082]="Vincent Hyal",[5083]="Paymaster Lendry",[5085]="Sentry Point Guard",[5086]="Captain Wymor",[5087]="Do'gol",[5088]="Falgran Hastil",[5089]="Balos Jacken",[5090]="Combat Master Szigeti",[5091]="Guard Kahil",[5092]="Guard Lana",[5093]="Guard Narrisha",[5094]="Guard Tark",[5095]="Captain Andrews",[5096]="Captain Thomas",[5097]="Lupine Delusion",[5099]="Soleil Stonemantle",[5100]="Fillius Fizzlespinner",[5101]="Bryllia Ironbrand",[5102]="Dolman Steelfury",[5103]="Grenil Steelfury",[5106]="Bromiir Ormsen",[5107]="Mangorn Flinthammer",[5108]="Raena Flinthammer",[5109]="Myra Tyrngaarde",[5110]="Barim Jurgenstaad",[5111]="Innkeeper Firebrew",[5112]="Gwenna Firebrew",[5113]="Kelv Sternhammer",[5114]="Bilban Tosslespanner",[5115]="Daera Brightspear",[5116]="Olmin Burningbeard",[5117]="Regnus Thundergranite",[5118]="Brogun Stoneshield",[5119]="Hegnar Swiftaxe",[5120]="Brenwyn Wintersteel",[5121]="Kelomir Ironhand",[5122]="Skolmin Goldfury",[5123]="Bretta Goldfury",[5124]="Sognar Cliffbeard",[5125]="Dolkin Craghelm",[5126]="Olthran Craghelm",[5127]="Fimble Finespindle",[5128]="Bombus Finespindle",[5129]="Lissyphus Finespindle",[5130]="Jondor Steelbrow",[5132]="Pithwick",[5133]="Harick Boulderdrum",[5134]="Jonivera Farmountain",[5135]="Svalbrad Farmountain",[5137]="Reyna Stonebranch",[5138]="Gwina Stonebranch",[5139]="Kurdrum Barleybeard",[5140]="Edris Barleybeard",[5141]="Theodrus Frostbeard",[5142]="Braenna Flintcrag",[5143]="Toldren Deepiron",[5144]="Bink",[5145]="Juli Stormkettle",[5146]="Nittlebur Sparkfizzle",[5147]="Valgar Highforge",[5148]="Beldruk Doombrow",[5149]="Brandur Ironhammer",[5150]="Nissa Firestone",[5151]="Ginny Longberry",[5152]="Bingus",[5153]="Jormund Stonebrow",[5154]="Poranna Snowbraid",[5155]="Ingrys Stonebrow",[5156]="Maeva Snowbraid",[5157]="Gimble Thistlefuzz",[5158]="Tilli Thistlefuzz",[5159]="Daryl Riknussun",[5160]="Emrul Riknussun",[5161]="Grimnur Stonebrand",[5162]="Tansy Puddlefizz",[5163]="Burbik Gearspanner",[5164]="Grumnus Steelshaper",[5165]="Hulfdan Blackbeard",[5166]="Ormyr Flinteye",[5167]="Fenthwick",[5169]="Tynnus Venomsprout",[5170]="Hjoldir Stoneblade",[5171]="Thistleheart",[5172]="Briarthorn",[5173]="Alexander Calder",[5174]="Springspindle Fizzlegear",[5175]="Gearcutter Cogspinner",[5177]="Tally Berryfizz",[5178]="Soolie Berryfizz",[5184]="Theramore Sentry",[5185]="Hammerhead Shark",[5186]="Basking Shark",[5188]="Garyl",[5189]="Thrumn",[5190]="Merill Pleasance",[5191]="Shalumon",[5193]="Rebecca Laughlin",[5194]="Black Riding Wolf",[5195]="Brown Riding Wolf",[5196]="Gray Riding Wolf",[5197]="Red Riding Wolf",[5198]="Arctic Riding Wolf",[5199]="Medic Tamberlyn",[5200]="Medic Helaina",[5202]="Archery Target",[5204]="Apothecary Zinge",[5224]="Murk Slitherer",[5225]="Murk Spitter",[5226]="Murk Worm",[5228]="Saturated Ooze",[5229]="Gordunni Ogre",[5232]="Gordunni Brute",[5234]="Gordunni Mauler",[5235]="Fungal Ooze",[5236]="Gordunni Shaman",[5237]="Gordunni Ogre Mage",[5238]="Gordunni Battlemaster",[5239]="Gordunni Mage-Lord",[5240]="Gordunni Warlock",[5241]="Gordunni Warlord",[5243]="Cursed Atal'ai",[5244]="Zukk'ash Stinger",[5245]="Zukk'ash Wasp",[5246]="Zukk'ash Worker",[5247]="Zukk'ash Tunneler",[5249]="Woodpaw Mongrel",[5251]="Woodpaw Trapper",[5253]="Woodpaw Brute",[5254]="Woodpaw Mystic",[5255]="Woodpaw Reaver",[5256]="Atal'ai Warrior",[5258]="Woodpaw Alpha",[5259]="Atal'ai Witch Doctor",[5260]="Groddoc Ape",[5261]="Enthralled Atal'ai",[5262]="Groddoc Thunderer",[5263]="Mummified Atal'ai",[5267]="Unliving Atal'ai",[5268]="Ironfur Bear",[5269]="Atal'ai Priest",[5270]="Atal'ai Corpse Eater",[5271]="Atal'ai Deathwalker",[5272]="Grizzled Ironfur Bear",[5273]="Atal'ai High Priest",[5274]="Ironfur Patriarch",[5276]="Sprite Dragon",[5277]="Nightmare Scalebane",[5278]="Sprite Darter",[5280]="Nightmare Wyrmkin",[5283]="Nightmare Wanderer",[5286]="Longtooth Runner",[5287]="Longtooth Howler",[5288]="Rabid Longtooth",[5291]="Hakkari Frostwing",[5292]="Feral Scar Yeti",[5293]="Hulking Feral Scar",[5295]="Enraged Feral Scar",[5296]="Rage Scar Yeti",[5297]="Elder Rage Scar",[5299]="Ferocious Rage Scar",[5300]="Frayfeather Hippogryph",[5304]="Frayfeather Stagwing",[5305]="Frayfeather Skystormer",[5306]="Frayfeather Patriarch",[5307]="Vale Screecher",[5308]="Rogue Vale Screecher",[5312]="Lethlas",[5314]="Phantim",[5317]="Jademir Oracle",[5319]="Jademir Tree Warder",[5320]="Jademir Boughguard",[5327]="Coast Crawl Snapclaw",[5328]="Coast Crawl Deepseer",[5331]="Hatecrest Warrior",[5332]="Hatecrest Wave Rider",[5333]="Hatecrest Serpent Guard",[5334]="Hatecrest Myrmidon",[5335]="Hatecrest Screamer",[5336]="Hatecrest Sorceress",[5337]="Hatecrest Siren",[5343]="Lady Szallah",[5345]="Diamond Head",[5346]="Bloodroar the Stalker",[5347]="Antilus the Soarer",[5348]="Dreamwatcher Forktongue",[5349]="Arash-ethis",[5350]="Qirot",[5352]="Old Grizzlegut",[5353]="Itharius",[5354]="Gnarl Leafbrother",[5355]="Firewing Defender",[5356]="Snarler",[5357]="Land Walker",[5358]="Cliff Giant",[5359]="Shore Strider",[5360]="Deep Strider",[5361]="Wave Strider",[5362]="Northspring Harpy",[5363]="Northspring Roguefeather",[5364]="Northspring Slayer",[5366]="Northspring Windcaller",[5384]="Brohann Caskbelly",[5385]="Watcher Mahar Ba",[5386]="Acolyte Dellis",[5387]="High Explorer Magellas",[5388]="Ingo Woolybush",[5389]="Prospector Gunstan",[5390]="Sage Palerunner",[5391]="Galen Goodward",[5392]="Yarr Hammerstone",[5393]="Quartermaster Lungertz",[5394]="Neeka Bloodscar",[5395]="Felgur Twocuts",[5396]="Captain Pentigast",[5397]="Uthek the Wise",[5398]="Warug",[5399]="Veyzhak the Cannibal",[5400]="Zekkis",[5401]="Kazkaz the Unholy",[5402]="Khan Hratha",[5403]="Riding White Stallion",[5407]="Nightmare",[5409]="Harvester Swarm",[5411]="Krinkle Goodsteel",[5412]="Gurda Wildmane",[5413]="Furen Longbeard",[5414]="Apothecary Faustin",[5416]="Infiltrator Marksen",[5418]="Deathstalker Zraedus",[5419]="Glasshide Basilisk",[5420]="Glasshide Gazer",[5421]="Glasshide Petrifier",[5422]="Scorpid Hunter",[5423]="Scorpid Tail Lasher",[5424]="Scorpid Dunestalker",[5425]="Starving Blisterpaw",[5426]="Blisterpaw Hyena",[5427]="Rabid Blisterpaw",[5428]="Roc",[5429]="Fire Roc",[5430]="Searing Roc",[5431]="Surf Glider",[5432]="Giant Surf Glider",[5434]="Coral Shark",[5435]="Sand Shark",[5441]="Hazzali Wasp",[5450]="Hazzali Stinger",[5451]="Hazzali Swarmer",[5452]="Hazzali Worker",[5453]="Hazzali Tunneler",[5454]="Hazzali Sandreaver",[5455]="Centipaar Wasp",[5456]="Centipaar Stinger",[5457]="Centipaar Swarmer",[5458]="Centipaar Worker",[5459]="Centipaar Tunneler",[5460]="Centipaar Sandreaver",[5461]="Sea Elemental",[5462]="Sea Spray",[5464]="Watchmaster Sorigal",[5465]="Land Rager",[5466]="Coast Strider",[5467]="Deep Dweller",[5469]="Dune Smasher",[5470]="Raging Dune Smasher",[5471]="Dunemaul Ogre",[5472]="Dunemaul Enforcer",[5473]="Dunemaul Ogre Mage",[5474]="Dunemaul Brute",[5475]="Dunemaul Warlock",[5476]="Watcher Biggs",[5477]="Noboru the Cudgel",[5479]="Wu Shen",[5480]="Ilsa Corbin",[5481]="Thistleshrub Dew Collector",[5482]="Stephen Ryback",[5483]="Erika Tate",[5484]="Brother Benjamin",[5485]="Thistleshrub Rootshaper",[5489]="Brother Joshua",[5490]="Gnarled Thistleshrub",[5491]="Arthur the Faithful",[5492]="Katherine the Pure",[5493]="Arnold Leland",[5494]="Catherine Leland",[5495]="Ursula Deline",[5496]="Sandahl",[5497]="Jennea Cannon",[5498]="Elsharin",[5499]="Lilyssia Nightbreeze",[5500]="Tel'Athir",[5501]="Kaerbrus",[5502]="Shylamiir",[5503]="Eldraeith",[5504]="Sheldras Moontree",[5505]="Theridran",[5506]="Maldryn",[5508]="Strumner Flintheel",[5509]="Kathrum Axehand",[5510]="Thulman Flintcrag",[5511]="Therum Deepforge",[5512]="Kaita Deepforge",[5513]="Gelman Stonehand",[5514]="Brooke Stonebraid",[5515]="Einris Brightspear",[5516]="Ulfir Ironbeard",[5517]="Thorfin Stoneshield",[5518]="Lilliam Sparkspindle",[5519]="Billibub Cogspinner",[5520]="Spackle Thornberry",[5523]="War Party Kodo",[5524]="Caravan Watcher",[5525]="Caravan Packhorse",[5543]="Clarice Foster",[5546]="Grunt Zuul",[5547]="Grunt Tharlak",[5564]="Simon Tanner",[5565]="Jillian Tanner",[5566]="Tannysa",[5567]="Sellandus",[5568]="Captured Leper Gnome",[5569]="Fizzlebang Booms",[5570]="Bruuk Barleybeard",[5591]="Dar",[5592]="Tok'Kar",[5593]="Katar",[5594]="Alchemist Pestlezugg",[5595]="Ironforge Guard",[5597]="Grunt Komak",[5598]="Atal'ai Exile",[5599]="Kon Yelloweyes",[5600]="Khan Dez'hepah",[5601]="Khan Jehn",[5602]="Khan Shaka",[5603]="Grunt Mojka",[5605]="Tisa Martine",[5606]="Goma",[5607]="Roger",[5608]="Jamin",[5609]="Zazo",[5610]="Kozish",[5611]="Barkeep Morag",[5612]="Gimrizz Shadowcog",[5613]="Doyo'da",[5614]="Sarok",[5615]="Wastewander Rogue",[5616]="Wastewander Thief",[5617]="Wastewander Shadow Mage",[5618]="Wastewander Bandit",[5620]="Bartender Wental",[5622]="Ongeku",[5623]="Wastewander Assassin",[5624]="Undercity Guardian",[5629]="Theramore Commando",[5634]="Rhapsody Shindigger",[5635]="Falstad Wildhammer",[5636]="Gryphon Master Talonaxe",[5637]="Roetten Stonehammer",[5638]="Kreldig Ungor",[5639]="Craven Drok",[5640]="Keldran",[5641]="Takata Steelblade",[5642]="Vahlarriel Demonslayer",[5643]="Tyranis Malem",[5644]="Dalinda Malem",[5645]="Sandfury Hideskinner",[5646]="Sandfury Axe Thrower",[5647]="Sandfury Firecaller",[5648]="Sandfury Shadowcaster",[5649]="Sandfury Blood Drinker",[5650]="Sandfury Witch Doctor",[5651]="Patrick Garrett",[5652]="Undercity Practice Dummy",[5653]="Tyler",[5654]="Edward",[5655]="Robert Gossom",[5656]="Richard Van Brunt",[5657]="Marla Fowler",[5658]="Chloe Curthas",[5659]="Andrew Hartwell",[5660]="Riley Walker",[5661]="Brother Malach",[5662]="Sergeant Houser",[5663]="Travist Bosk",[5664]="Eldin Partridge",[5665]="Alyssa Blaye",[5666]="Gunther's Visage",[5667]="Venya Marthand",[5668]="Mattie Alred",[5669]="Helena Atwood",[5670]="Edrick Killian",[5674]="Practice Target",[5675]="Carendin Halgar",[5676]="Summoned Voidwalker",[5677]="Summoned Succubus",[5679]="Lysta Bancroft",[5680]="Male Human Captive",[5681]="Female Human Captive",[5682]="Dalin Forgewright",[5683]="Comar Villard",[5685]="Captive Ghoul",[5686]="Captive Zombie",[5687]="Captive Abomination",[5688]="Innkeeper Renee",[5690]="Clyde Kellen",[5691]="Dalin Forgewright Projection",[5692]="Comar Villard Projection",[5693]="Godrick Farsan",[5694]="High Sorcerer Andromath",[5695]="Vance Undergloom",[5696]="Gerard Abernathy",[5697]="Theresa",[5698]="Joanna Whitehall",[5699]="Leona Tharpe",[5700]="Samantha Shackleton",[5701]="Selina Pickman",[5702]="Jezelle Pruitt",[5703]="Winifred Kerwin",[5704]="Adrian Bartlett",[5705]="Victor Bartholomew",[5706]="Davitt Hickson",[5707]="Reginald Grimsford",[5708]="Spawn of Hakkar",[5709]="Shade of Eranikus",[5710]="Jammal'an the Prophet",[5711]="Ogom the Wretched",[5712]="Zolo",[5713]="Gasher",[5714]="Loro",[5715]="Hukku",[5716]="Zul'Lor",[5717]="Mijan",[5718]="Rothos",[5719]="Morphaz",[5720]="Weaver",[5721]="Dreamscythe",[5722]="Hazzas",[5723]="Warug's Target Dummy",[5724]="Ageron Kargal",[5725]="Deathguard Lundmark",[5726]="Jezelle's Felhunter",[5727]="Jezelle's Felsteed",[5728]="Jezelle's Succubus",[5729]="Jezelle's Voidwalker",[5730]="Jezelle's Imp",[5731]="Apothecary Vallia",[5732]="Apothecary Katrina",[5733]="Apothecary Lycanus",[5734]="Apothecary Keever",[5735]="Caged Human Female",[5736]="Caged Human Male",[5738]="Caged Dwarf Male",[5739]="Caged Squirrel",[5741]="Caged Rabbit",[5742]="Caged Toad",[5743]="Caged Sheep",[5744]="Cedric Stumpel",[5747]="Hepzibah Sedgewick",[5748]="Killian Sanatha",[5749]="Kayla Smithe",[5750]="Gina Lang",[5752]="Corporal Melkins",[5753]="Martha Strain",[5754]="Zane Bradford",[5755]="Deviate Viper",[5756]="Deviate Venomwing",[5757]="Lilly",[5758]="Leo Sarn",[5759]="Nurse Neela",[5760]="Lord Azrethoc",[5761]="Deviate Shambler",[5762]="Deviate Moccasin",[5763]="Nightmare Ectoplasm",[5765]="Ruzan",[5766]="Savannah Cub",[5767]="Nalpak",[5768]="Ebru",[5769]="Arch Druid Hamuul Runetotem",[5770]="Nara Wildmane",[5771]="Jugkar Grim'rod",[5772]="Lord Azrethoc's Image",[5773]="Jugkar Grim'rod's Image",[5774]="Riding Wolf",[5775]="Verdan the Everliving",[5779]="Summoned Viper",[5780]="Cloned Ectoplasm",[5781]="Silithid Creeper Egg",[5782]="Crildor",[5783]="Kalldan Felmoon",[5784]="Waldor",[5785]="Sister Hatelash",[5786]="Snagglespear",[5787]="Enforcer Emilgund",[5788]="Gelgann Direforge",[5792]="Drag Master Miglen",[5797]="Aean Swiftriver",[5798]="Thora Feathermoon",[5799]="Hannah Bladeleaf",[5800]="Marcus Bel",[5806]="Treant Ally",[5807]="The Rake",[5808]="Warlord Kolkanis",[5809]="Sergeant Curtis",[5810]="Uzzek",[5811]="Kamari",[5812]="Tumi",[5814]="Innkeeper Thulbek",[5815]="Kurgul",[5816]="Katis",[5817]="Shimra",[5819]="Mirelle Tremayne",[5820]="Gillian Moore",[5821]="Sheldon Von Croy",[5822]="Felweaver Scornn",[5823]="Death Flayer",[5824]="Captain Flat Tusk",[5826]="Geolord Mottle",[5827]="Brontus",[5828]="Humar the Pridelord",[5829]="Snort the Heckler",[5830]="Sister Rathtalon",[5831]="Swiftmane",[5832]="Thunderstomp",[5833]="Margol the Rager",[5834]="Azzere the Skyblade",[5835]="Foreman Grills",[5836]="Engineer Whirleygig",[5837]="Stonearm",[5838]="Brokespear",[5839]="Dark Iron Geologist",[5840]="Dark Iron Steamsmith",[5841]="Rocklance",[5842]="Takk the Leaper",[5843]="Slave Worker",[5844]="Dark Iron Slaver",[5846]="Dark Iron Taskmaster",[5847]="Heggin Stonewhisker",[5848]="Malgin Barleybrew",[5849]="Digger Flameforge",[5850]="Blazing Elemental",[5851]="Captain Gerogg Hammertoe",[5852]="Inferno Elemental",[5853]="Tempered War Golem",[5854]="Heavy War Golem",[5855]="Magma Elemental",[5856]="Glassweb Spider",[5857]="Searing Lava Spider",[5858]="Greater Lava Spider",[5859]="Hagg Taurenbane",[5860]="Twilight Dark Shaman",[5861]="Twilight Fire Guard",[5862]="Twilight Geomancer",[5863]="Geopriest Gukk'rok",[5864]="Swinegart Spearhide",[5865]="Dishu",[5868]="Evil Squirrel",[5870]="Krond",[5871]="Larhka",[5873]="Stoneskin Totem",[5874]="Strength of Earth Totem",[5875]="Gan'rul Bloodeye",[5878]="Thun'grim Firegaze",[5879]="Fire Nova Totem",[5880]="Un'Thuwa",[5881]="Cursed Sycamore",[5882]="Pephredo",[5883]="Enyo",[5884]="Mai'ah",[5885]="Deino",[5886]="Gwyn Farrow",[5887]="Canaga Earthcaller",[5888]="Seer Ravenfeather",[5889]="Mesa Earth Spirit",[5890]="Redrock Earth Spirit",[5891]="Minor Manifestation of Earth",[5892]="Searn Firewarder",[5893]="Minor Manifestation of Fire",[5894]="Corrupt Minor Manifestation of Water",[5895]="Minor Manifestation of Water",[5896]="Fire Spirit",[5897]="Corrupt Water Spirit",[5898]="Air Spirit",[5899]="Brine",[5900]="Telf Joolam",[5901]="Islen Waterseer",[5902]="Minor Manifestation of Air",[5903]="Nyx Bloodrage",[5905]="Prate Cloudseer",[5906]="Xanis Flameweaver",[5907]="Kranal Fiss",[5908]="Grunt Dogran",[5909]="Cazul",[5910]="Zankaja",[5911]="Grunt Logmar",[5912]="Deviate Faerie Dragon",[5913]="Tremor Totem",[5914]="Deviate Nightmare",[5915]="Brother Ravenoak",[5916]="Sentinel Amarassan",[5917]="Clara Charles",[5919]="Stoneskin Totem II",[5920]="Stoneskin Totem III",[5921]="Strength of Earth Totem II",[5922]="Strength of Earth Totem III",[5923]="Poison Cleansing Totem",[5924]="Cleansing Totem",[5925]="Grounding Totem",[5926]="Frost Resistance Totem",[5927]="Elemental Resistance Totem",[5928]="Sorrow Wing",[5929]="Magma Totem",[5930]="Sister Riven",[5931]="Foreman Rigger",[5932]="Taskmaster Whipfang",[5933]="Achellios the Banished",[5934]="Heartrazor",[5935]="Ironeye the Invincible",[5936]="Orca",[5937]="Vile Sting",[5938]="Uthan Stillwater",[5939]="Vira Younghoof",[5940]="Harn Longcast",[5941]="Lau'Tiki",[5942]="Zansoa",[5943]="Rawrk",[5944]="Yonada",[5945]="Owl Companion",[5950]="Flametongue Totem",[5951]="Hare",[5952]="Den Grunt",[5953]="Razor Hill Grunt",[5955]="Tooga",[5957]="Birgitte Cranston",[5958]="Thuul",[5963]="World Tauren Male Druid Trainer",[5974]="Dreadmaul Ogre",[5975]="Dreadmaul Ogre Mage",[5976]="Dreadmaul Brute",[5977]="Dreadmaul Mauler",[5978]="Dreadmaul Warlock",[5979]="Wretched Lost One",[5981]="Portal Seeker",[5982]="Black Slayer",[5983]="Bonepicker Felfeeder",[5984]="Starving Snickerfang",[5985]="Snickerfang Hyena",[5988]="Scorpok Stinger",[5990]="Redstone Basilisk",[5991]="Redstone Crystalhide",[5992]="Ashmane Boar",[5993]="Helboar",[5994]="Zayus",[5996]="Nethergarde Miner",[5997]="Nethergarde Engineer",[5998]="Nethergarde Foreman",[5999]="Nethergarde Soldier",[6000]="Nethergarde Cleric",[6001]="Nethergarde Analyst",[6002]="Nethergarde Riftwatcher",[6003]="Nethergarde Officer",[6004]="Shadowsworn Ritualist",[6005]="Shadowsworn Thug",[6006]="Shadowsworn Adept",[6007]="Shadowsworn Enforcer",[6008]="Shadowsworn Warlock",[6009]="Shadowsworn Dreadweaver",[6010]="Felhound",[6011]="Felguard Sentry",[6012]="Flametongue Totem II",[6013]="Wayward Buzzard",[6014]="X'yera",[6015]="Torta",[6016]="Elemental Protection Totem",[6017]="Lava Spout Totem",[6018]="Ur'kyo",[6019]="Hornizz Brimbuzzle",[6020]="Slimeshell Makrura",[6021]="Boar Spirit",[6026]="Breyk",[6027]="Kitha",[6028]="Burkrum",[6030]="Thorvald Deepforge",[6031]="Tormus Deepforge",[6033]="Lake Frenzy",[6034]="Lotherias",[6035]="Razorfen Stalker",[6047]="Aqua Guardian",[6066]="Earthgrab Totem",[6068]="Warug's Bodyguard",[6069]="Maraudine Khan Guard",[6070]="Maraudine Khan Advisor",[6071]="Legion Hound",[6072]="Diathorus the Seeker",[6073]="Searing Infernal",[6074]="Striped Frostsaber",[6075]="Emerald Raptor",[6076]="Riding Tallstrider (Ivory)",[6086]="Auberdine Sentinel",[6087]="Astranaar Sentinel",[6089]="Harry Burlguard",[6090]="Bartleby",[6091]="Dellylah",[6093]="Dead-Tooth Jack",[6094]="Byancie",[6107]="Shade",[6109]="Azuregos",[6110]="Fire Nova Totem II",[6111]="Fire Nova Totem III",[6112]="Windfury Totem",[6113]="Vejrek",[6114]="Muren Stormpike",[6115]="Roaming Felguard",[6116]="Highborne Apparition",[6117]="Highborne Lichling",[6118]="Varo'then's Ghost",[6119]="Tog Rustsprocket",[6120]="Lago Blackwrench",[6121]="Remen Marcot",[6122]="Gakin the Darkbinder",[6123]="Dark Iron Spy",[6124]="Captain Beld",[6125]="Haldarr Satyr",[6126]="Haldarr Trickster",[6127]="Haldarr Felsworn",[6128]="Vorlus Vilehoof",[6129]="Draconic Magelord",[6130]="Blue Scalebane",[6131]="Draconic Mageweaver",[6132]="Razorfen Servitor",[6133]="Shade of Elura",[6134]="Lord Arkkoroc",[6135]="Arkkoran Clacker",[6136]="Arkkoran Muckdweller",[6137]="Arkkoran Pincer",[6138]="Arkkoran Oracle",[6139]="Highperch Soarer",[6140]="Hetaera",[6141]="Pridewing Soarer",[6142]="Mathiel",[6143]="Servant of Arkkoroc",[6144]="Son of Arkkoroc",[6145]="School of Fish",[6146]="Cliff Breaker",[6147]="Cliff Thunderer",[6148]="Cliff Walker",[6166]="Yorus Barleybrew",[6167]="Chimaera Matriarch",[6168]="Roogug",[6169]="Klockmort Spannerspan",[6170]="Gutspill",[6171]="Duthorian Rall",[6172]="Henze Faulk",[6173]="Gazin Tenorm",[6174]="Stephanie Turner",[6175]="John Turner",[6176]="Bath'rah the Windwatcher",[6177]="Narm Faulk",[6178]="Muiredon Battleforge",[6179]="Tiza Battleforge",[6180]="Defias Raider",[6181]="Jordan Stilwell",[6182]="Daphne Stilwell",[6184]="Timbermaw Pathfinder",[6185]="Timbermaw Warrior",[6186]="Timbermaw Totemic",[6187]="Timbermaw Den Watcher",[6188]="Timbermaw Shaman",[6189]="Timbermaw Ursa",[6190]="Spitelash Warrior",[6193]="Spitelash Screamer",[6194]="Spitelash Serpent Guard",[6195]="Spitelash Siren",[6196]="Spitelash Myrmidon",[6198]="Blood Elf Surveyor",[6199]="Blood Elf Reclaimer",[6200]="Legashi Satyr",[6201]="Legashi Rogue",[6202]="Legashi Hellcaller",[6206]="Caverndeep Burrower",[6207]="Caverndeep Ambusher",[6208]="Caverndeep Invader",[6209]="Caverndeep Looter",[6210]="Caverndeep Pillager",[6211]="Caverndeep Reaver",[6212]="Dark Iron Agent",[6213]="Irradiated Invader",[6215]="Chomper",[6218]="Irradiated Slime",[6219]="Corrosive Lurker",[6220]="Irradiated Horror",[6221]="Addled Leper",[6222]="Leprous Technician",[6223]="Leprous Defender",[6224]="Leprous Machinesmith",[6225]="Mechano-Tank",[6226]="Mechano-Flamewalker",[6227]="Mechano-Frostwalker",[6228]="Dark Iron Ambassador",[6229]="Crowd Pummeler 9-60",[6230]="Peacekeeper Security Suit",[6231]="Techbot",[6232]="Arcane Nullifier X-21",[6233]="Mechanized Sentry",[6234]="Mechanized Guardian",[6235]="Electrocutioner 6000",[6236]="Klannoc Macleod",[6237]="Stockade Archer",[6238]="Big Will",[6239]="Cyclonian",[6240]="Affray Challenger",[6241]="Bailor Stonehand",[6243]="Gelihast",[6244]="Takar the Seer",[6245]="Anathera",[6246]="Latherion",[6247]="Doan Karhan",[6248]="Twiggy Flathead",[6249]="Affray Spectator",[6250]="Crawler",[6251]="Strahad Farsan",[6252]="Acolyte Magaz",[6253]="Acolyte Fenrick",[6254]="Acolyte Wytula",[6266]="Menara Voidrender",[6267]="Acolyte Porena",[6268]="Summoned Felhunter",[6271]="Mouse",[6272]="Innkeeper Janene",[6286]="Zarrin",[6287]="Radnaal Maneweaver",[6288]="Jayla",[6289]="Rand Rhobart",[6290]="Yonn Deepcut",[6291]="Balthus Stoneflayer",[6292]="Eladriel",[6293]="Jorah Annison",[6294]="Krom Stoutarm",[6295]="Wilma Ranthal",[6297]="Kurdram Stonehammer",[6298]="Thelgrum Stonehammer",[6299]="Delfrum Flintbeard",[6300]="Elisa Steelhand",[6301]="Gorbold Steelhand",[6306]="Helene Peltskinner",[6328]="Dannie Fizzwizzle",[6329]="Irradiated Pillager",[6347]="Young Wavethrasher",[6348]="Wavethrasher",[6349]="Great Wavethrasher",[6350]="Makrinni Razorclaw",[6351]="Storm Bay Oracle",[6352]="Coralshell Lurker",[6366]="Kurzen Mindslave",[6367]="Donni Anthania",[6368]="Cat",[6369]="Coralshell Tortoise",[6370]="Makrinni Scrabbler",[6371]="Storm Bay Warrior",[6372]="Makrinni Snapclaw",[6373]="Dane Winslow",[6374]="Cylina Darkheart",[6375]="Thunderhead Hippogryph",[6376]="Wren Darkspring",[6377]="Thunderhead Stagwing",[6378]="Thunderhead Skystormer",[6379]="Thunderhead Patriarch",[6380]="Thunderhead Consort",[6382]="Jubahl Corpseseeker",[6386]="Ward of Zanzil",[6387]="Dranh",[6388]="Zanzil Skeleton",[6389]="Deathguard Podrig",[6390]="Ulag the Cleaver",[6391]="Holdout Warrior",[6392]="Holdout Medic",[6393]="Henen Ragetotem",[6394]="Ruga Ragetotem",[6395]="Sergeant Rutger",[6407]="Holdout Technician",[6408]="Ula'elek",[6410]="Orm Stonehoof",[6411]="Velora Nitely",[6412]="Skeleton",[6426]="Anguished Dead",[6427]="Haunting Phantasm",[6446]="Therzok",[6466]="Gamon",[6467]="Mennet Carkad",[6486]="Black Skeletal Horse",[6487]="Arcanist Doan",[6488]="Fallen Champion",[6489]="Ironspine",[6490]="Azshir the Sleepless",[6491]="Spirit Healer",[6492]="Rift Spawn",[6493]="Illusionary Phantasm",[6494]="Tazan",[6495]="Riznek",[6496]="Brivelthwerp",[6497]="Astor Hadren",[6498]="Devilsaur",[6499]="Ironhide Devilsaur",[6500]="Tyrant Devilsaur",[6501]="Stegodon",[6502]="Plated Stegodon",[6503]="Spiked Stegodon",[6504]="Thunderstomp Stegodon",[6505]="Ravasaur",[6506]="Ravasaur Runner",[6507]="Ravasaur Hunter",[6508]="Venomhide Ravasaur",[6509]="Bloodpetal Lasher",[6510]="Bloodpetal Flayer",[6511]="Bloodpetal Thresher",[6512]="Bloodpetal Trapper",[6513]="Un'Goro Stomper",[6514]="Un'Goro Gorilla",[6516]="Un'Goro Thunderer",[6517]="Tar Beast",[6518]="Tar Lurker",[6519]="Tar Lord",[6520]="Scorching Elemental",[6521]="Living Blaze",[6522]="Andron Gant",[6523]="Dark Iron Rifleman",[6527]="Tar Creeper",[6546]="Tabetha",[6547]="Suffering Victim",[6548]="Magus Tirth",[6549]="Demon of the Orb",[6550]="Mana Surge",[6551]="Gorishi Wasp",[6552]="Gorishi Worker",[6553]="Gorishi Reaver",[6554]="Gorishi Stinger",[6555]="Gorishi Tunneler",[6556]="Muculent Ooze",[6557]="Primal Ooze",[6559]="Glutinous Ooze",[6560]="Stone Guardian",[6566]="Estelle Gendry",[6567]="Ghok'kah",[6568]="Vizzklick",[6569]="Gnoarn",[6570]="Fenwick Thatros",[6573]="Travel Form (Druid)",[6574]="Jun'ha",[6575]="Scarlet Trainee",[6576]="Brienna Starglow",[6577]="Bingles Blastenheimer",[6579]="Shoni the Shilent",[6581]="Ravasaur Matriarch",[6582]="Clutchmother Zavas",[6583]="Gruff",[6584]="King Mosh",[6585]="Uhk'loc",[6586]="Rokar Bladeshadow",[6606]="Overseer Glibby",[6607]="Harroc",[6646]="Monnos the Elder",[6647]="Magister Hawkhelm",[6648]="Antilos",[6649]="Lady Sesspira",[6650]="General Fangferror",[6651]="Gatekeeper Rageroar",[6652]="Master Feardred",[6653]="Huge Toad",[6667]="Gelkak Gyromast",[6668]="Lord Cyrik Blackforge",[6669]="The Threshwackonator 4100",[6670]="Westfall Woodworker",[6706]="Baritanas Skyriver",[6707]="Fahrad",[6726]="Thalon",[6727]="Innkeeper Brianna",[6728]="Narnie",[6729]="Morridune",[6730]="Jinky Twizzlefixxit",[6731]="Harlown Darkweave",[6732]="Amie Pierce",[6733]="Stonevault Basher",[6734]="Innkeeper Hearthstove",[6735]="Innkeeper Saelienne",[6736]="Innkeeper Keldamyr",[6737]="Innkeeper Shaussiy",[6738]="Innkeeper Kimlya",[6739]="Innkeeper Bates",[6740]="Innkeeper Allison",[6741]="Innkeeper Norman",[6746]="Innkeeper Pala",[6747]="Innkeeper Kauth",[6748]="Water Spirit",[6749]="Erma",[6766]="Ravenholdt Guard",[6768]="Lord Jorach Ravenholdt",[6771]="Ravenholdt Assassin",[6774]="Falkhaan Isenstrider",[6775]="Antur Fallow",[6776]="Magrin Rivermane",[6777]="Zan Shivsproket",[6778]="Melika Isenstrider",[6779]="Smudge Thunderwood",[6780]="Porthannius",[6781]="Melarith",[6782]="Hands Springsprocket",[6784]="Calvin Montague",[6785]="Ratslin Maime",[6786]="Ukor",[6787]="Yelnagi Blackarm",[6788]="Den Mother",[6789]="Thistle Cub",[6790]="Innkeeper Trelayne",[6791]="Innkeeper Wiley",[6806]="Tannok Frosthammer",[6807]="Innkeeper Skindle",[6826]="Talvash del Kissel",[6827]="Shore Crab",[6846]="Dockmaster",[6866]="Bodyguard",[6867]="Tracking Hound",[6868]="Jarkal Mossmeld",[6886]="Onin MacHammar",[6887]="Yalda",[6906]="Baelog",[6908]="Olaf",[6909]="Sethir the Ancient",[6910]="Revelosh",[6911]="Minion of Sethir",[6912]="Remains of a Paladin",[6913]="Lost One Rift Traveler",[6927]="Dockworker",[6928]="Innkeeper Grosk",[6929]="Innkeeper Gryshka",[6930]="Innkeeper Karakul",[6932]="Swamp Spirit",[6966]="Lucius",[6986]="Dran Droffers",[6987]="Malton Droffers",[7007]="Tiev Mordune",[7009]="Arantir",[7010]="Zilzibin Drumlore",[7011]="Earthen Rocksmasher",[7012]="Earthen Sculptor",[7013]="Blackrock Guard",[7015]="Flagglemurk the Cruel",[7016]="Lady Vespira",[7017]="Lord Sinslayer",[7022]="Venomlash Scorpid",[7023]="Obsidian Sentinel",[7024]="Agent Kearnen",[7025]="Blackrock Soldier",[7026]="Blackrock Sorcerer",[7027]="Blackrock Slayer",[7028]="Blackrock Warlock",[7029]="Blackrock Battlemaster",[7030]="Shadowforge Geologist",[7031]="Obsidian Elemental",[7032]="Greater Obsidian Elemental",[7033]="Firegut Ogre",[7034]="Firegut Ogre Mage",[7035]="Firegut Brute",[7036]="Thaurissan Spy",[7037]="Thaurissan Firewalker",[7038]="Thaurissan Agent",[7039]="War Reaver",[7040]="Black Dragonspawn",[7041]="Black Wyrmkin",[7042]="Flamescale Dragonspawn",[7043]="Flamescale Wyrmkin",[7044]="Black Drake",[7045]="Scalding Drake",[7046]="Searscale Drake",[7047]="Black Broodling",[7048]="Scalding Broodling",[7049]="Flamescale Broodling",[7050]="Defias Drone",[7051]="Malformed Defias Drone",[7052]="Defias Tower Patroller",[7053]="Klaven Mortwake",[7055]="Blackrock Worg",[7056]="Defias Tower Sentry",[7057]="Digmaster Shovelphlange",[7067]="Venture Co. Drone",[7068]="Condemned Acolyte",[7069]="Condemned Monk",[7070]="Condemned Cleric",[7071]="Cursed Paladin",[7072]="Cursed Justicar",[7075]="Writhing Mage",[7076]="Earthen Guardian",[7077]="Earthen Hallshaper",[7078]="Cleft Scorpid",[7079]="Viscous Fallout",[7086]="Cursed Ooze",[7087]="Killian Hagey",[7088]="Thuwd",[7089]="Mooranta",[7091]="Shadowforge Ambusher",[7092]="Tainted Ooze",[7093]="Vile Ooze",[7097]="Ironbeak Owl",[7098]="Ironbeak Screecher",[7099]="Ironbeak Hunter",[7100]="Warpwood Moss Flayer",[7101]="Warpwood Shredder",[7104]="Dessecus",[7105]="Jadefire Satyr",[7106]="Jadefire Rogue",[7107]="Jadefire Trickster",[7108]="Jadefire Betrayer",[7109]="Jadefire Felsworn",[7110]="Jadefire Shadowstalker",[7111]="Jadefire Hellcaller",[7112]="Jaedenar Cultist",[7113]="Jaedenar Guardian",[7114]="Jaedenar Enforcer",[7115]="Jaedenar Adept",[7118]="Jaedenar Darkweaver",[7120]="Jaedenar Warlock",[7125]="Jaedenar Hound",[7126]="Jaedenar Hunter",[7132]="Toxic Horror",[7135]="Infernal Bodyguard",[7136]="Infernal Sentry",[7137]="Immolatus",[7138]="Irontree Wanderer",[7139]="Irontree Stomper",[7149]="Withered Protector",[7153]="Deadwood Warrior",[7154]="Deadwood Gardener",[7155]="Deadwood Pathfinder",[7156]="Deadwood Den Watcher",[7157]="Deadwood Avenger",[7158]="Deadwood Shaman",[7161]="Wrenix the Wretched",[7166]="Wrenix's Gizmotronic Apparatus",[7167]="Polly",[7168]="Polly",[7170]="Thragomm",[7172]="Lore Keeper of Norgannon",[7175]="Stonevault Ambusher",[7206]="Ancient Stone Keeper",[7207]="Doc Mixilpixil",[7208]="Noarm",[7209]="Obsidian Shard",[7226]="Sand Storm",[7228]="Ironaya",[7230]="Shayis Steelfury",[7231]="Kelgruk Bloodaxe",[7232]="Borgus Steelhand",[7233]="Taskmaster Fizzule",[7234]="Ferocitas the Dream Eater",[7235]="Gnarlpine Mystic",[7246]="Sandfury Shadowhunter",[7247]="Sandfury Soul Eater",[7266]="Ember",[7267]="Chief Ukorz Sandscalp",[7268]="Sandfury Guardian",[7269]="Scarab",[7270]="Sandfury Zombie",[7271]="Witch Doctor Zum'rah",[7272]="Theka the Martyr",[7273]="Gahz'rilla",[7274]="Sandfury Executioner",[7275]="Shadowpriest Sezz'ziz",[7276]="Zul'Farrak Dead Hero",[7286]="Zul'Farrak Zombie",[7287]="Foreman Silixiz",[7288]="Grand Foreman Puzik Gallywix",[7290]="Shadowforge Sharpshooter",[7291]="Galgann Firehammer",[7292]="Dinita Stonemantle",[7293]="[UNUSED] Drayl",[7294]="Shim'la",[7295]="Shailiea",[7296]="Corand",[7297]="Gothard Winslow",[7298]="Demnul Farmountain",[7307]="Venture Co. Lookout",[7308]="Venture Co. Patroller",[7309]="Earthen Custodian",[7310]="Mutated Venture Co. Drone",[7311]="Uthel'nay",[7312]="Dink",[7313]="Priestess A'moora",[7315]="Darnath Bladesinger",[7316]="Sister Aquinne",[7317]="Oben Rageclaw",[7318]="Rageclaw",[7319]="Lady Sathrah",[7320]="Stonevault Mauler",[7321]="Stonevault Flameweaver",[7322]="Riding Tiger (Black)",[7323]="Winstone Wolfe",[7324]="Simone Cantrell",[7325]="Master Kang",[7327]="Withered Warrior",[7328]="Withered Reaver",[7329]="Withered Quilguard",[7332]="Withered Spearhide",[7333]="Withered Battle Boar",[7334]="Battle Boar Horror",[7335]="Death's Head Geomancer",[7337]="Death's Head Necromancer",[7340]="Skeletal Shadowcaster",[7341]="Skeletal Frostweaver",[7342]="Skeletal Summoner",[7343]="Splinterbone Skeleton",[7344]="Splinterbone Warrior",[7345]="Splinterbone Captain",[7346]="Splinterbone Centurion",[7347]="Boneflayer Ghoul",[7348]="Thorn Eater Ghoul",[7349]="Tomb Fiend",[7351]="Tomb Reaver",[7352]="Frozen Soul",[7353]="Freezing Spirit",[7354]="Ragglesnout",[7355]="Tuten'kash",[7356]="Plaguemaw the Rotting",[7357]="Mordresh Fire Eye",[7358]="Amnennar the Coldbringer",[7360]="Dun Garok Soldier",[7361]="Grubbis",[7363]="Kum'isha the Collector",[7364]="Flawless Draenethyst Sphere",[7365]="Flawless Draenethyst Fragment",[7366]="Stoneskin Totem IV",[7367]="Stoneskin Totem V",[7368]="Stoneskin Totem VI",[7369]="Deadwind Brute",[7370]="Restless Shade",[7371]="Deadwind Mauler",[7372]="Deadwind Warlock",[7376]="Sky Shadow",[7379]="Deadwind Ogre Mage",[7380]="Siamese Cat",[7381]="Silver Tabby Cat",[7382]="Orange Tabby Cat",[7383]="Black Tabby Cat",[7384]="Cornish Rex Cat",[7385]="Bombay Cat",[7386]="White Kitten",[7387]="Green Wing Macaw",[7388]="Cockatoo",[7389]="Senegal",[7390]="Cockatiel",[7391]="Hyacinth Macaw",[7392]="Prairie Chicken",[7393]="White Plymouth Rock",[7394]="Ancona Chicken",[7395]="Cockroach",[7396]="Earthen Stonebreaker",[7397]="Earthen Stonecarver",[7398]="Stoneclaw Totem V",[7399]="Stoneclaw Totem VI",[7400]="Searing Totem V",[7401]="Draenei Refugee",[7402]="Searing Totem VI",[7403]="Strength of Earth Totem IV",[7404]="[UNUSED]Galak Flame Guard",[7405]="Deadly Cleft Scorpid",[7406]="Oglethorpe Obnoticus",[7407]="Chief Engineer Bilgewhizzle",[7408]="Spigot Operator Luglunket",[7409]="Faltering Draenethyst Sphere",[7410]="Thelman Slatefist",[7411]="Spirit of Sathrah",[7412]="Frost Resistance Totem II",[7413]="Frost Resistance Totem III",[7414]="Mana Spring Totem II",[7415]="Mana Spring Totem III",[7416]="Mana Spring Totem IV",[7423]="Flametongue Totem III",[7424]="Fire Resistance Totem II",[7425]="Fire Resistance Totem III",[7427]="Taim Ragetotem",[7428]="Frostmaul Giant",[7429]="Frostmaul Preserver",[7430]="Young Frostsaber",[7431]="Frostsaber",[7432]="Frostsaber Stalker",[7433]="Frostsaber Huntress",[7434]="Frostsaber Pride Watcher",[7435]="Cobalt Wyrmkin",[7436]="Cobalt Scalebane",[7437]="Cobalt Mageweaver",[7438]="Winterfall Ursa",[7439]="Winterfall Shaman",[7440]="Winterfall Den Watcher",[7441]="Winterfall Totemic",[7442]="Winterfall Pathfinder",[7443]="Shardtooth Mauler",[7444]="Shardtooth Bear",[7445]="Elder Shardtooth",[7446]="Rabid Shardtooth",[7447]="Fledgling Chillwind",[7448]="Chillwind Chimaera",[7449]="Chillwind Ravager",[7450]="Ragged Owlbeast",[7451]="Raging Owlbeast",[7452]="Crazed Owlbeast",[7453]="Moontouched Owlbeast",[7454]="Berserk Owlbeast",[7455]="Winterspring Owl",[7456]="Winterspring Screecher",[7457]="Rogue Ice Thistle",[7458]="Ice Thistle Yeti",[7459]="Ice Thistle Matriarch",[7460]="Ice Thistle Patriarch",[7461]="Hederine Initiate",[7462]="Hederine Manastalker",[7463]="Hederine Slayer",[7464]="Magma Totem II",[7465]="Magma Totem III",[7466]="Magma Totem IV",[7467]="Nature Resistance Totem",[7468]="Nature Resistance Totem II",[7469]="Nature Resistance Totem III",[7483]="Windfury Totem II",[7484]="Windfury Totem III",[7485]="Nargatt",[7486]="Grace of Air Totem",[7487]="Grace of Air Totem II",[7489]="Silverpine Deathguard",[7505]="Bloodmage Drazial",[7506]="Bloodmage Lynnore",[7507]="Brown Snake",[7508]="Black Kingsnake",[7523]="Suffering Highborne",[7524]="Anguished Highborne",[7527]="Goblin Land Mine",[7543]="Dark Whelpling",[7544]="Crimson Whelpling",[7545]="Emerald Whelpling",[7546]="Bronze Whelpling",[7547]="Azure Whelpling",[7548]="Faeling",[7549]="Tree Frog",[7550]="Wood Frog",[7551]="Dart Frog",[7552]="Island Frog",[7553]="Great Horned Owl",[7554]="Snowy Owl",[7555]="Hawk Owl",[7556]="Eagle Owl",[7558]="Cottontail Rabbit",[7559]="Spotted Rabbit",[7560]="Snowshoe Rabbit",[7561]="Albino Snake",[7563]="Blue Racer",[7564]="Marin Noggenfogger",[7566]="Scarlet Snake",[7567]="Crimson Snake",[7568]="Ribbon Snake",[7569]="Green Water Snake",[7570]="Elven Wisp",[7572]="Fallen Hero of the Horde",[7583]="Sprinkle",[7584]="Wandering Forest Walker",[7603]="Leprous Assistant",[7604]="Sergeant Bly",[7605]="Raven",[7606]="Oro Eyegouge",[7607]="Weegli Blastfuse",[7608]="Murta Grimgut",[7623]="Dispatch Commander Ruag",[7643]="Bengor",[7664]="Razelikh the Defiler",[7665]="Grol the Destroyer",[7666]="Archmage Allistarj",[7667]="Lady Sevine",[7668]="Servant of Razelikh",[7669]="Servant of Grol",[7670]="Servant of Allistarj",[7671]="Servant of Sevine",[7683]="Alessandro Luca",[7684]="Riding Tiger (Yellow)",[7686]="Riding Tiger (Red)",[7687]="Spotted Frostsaber",[7690]="Striped Nightsaber",[7704]="Riding Raptor (Crimson)",[7706]="Riding Raptor (Ivory)",[7707]="Turquoise Raptor",[7708]="Violet Raptor",[7709]="Riding Tallstrider (Brown)",[7710]="Riding Tallstrider (Gray)",[7711]="Riding Tallstrider (Pink)",[7712]="Riding Tallstrider (Purple)",[7713]="Riding Tallstrider (Turquoise)",[7714]="Byula",[7724]="Senior Surveyor Fizzledowser",[7725]="Grimtotem Raider",[7726]="Grimtotem Naturalist",[7727]="Grimtotem Shaman",[7728]="Kirith the Damned",[7729]="Spirit of Kirith",[7730]="Stonetalon Grunt",[7731]="Innkeeper Jayka",[7732]="Dupe Bug",[7733]="Innkeeper Fizzgrimble",[7734]="Ilifar",[7735]="Felcular",[7736]="Innkeeper Shyria",[7737]="Innkeeper Greul",[7738]="Burning Servant",[7739]="Red Mechanostrider",[7740]="Gracina Spiritmight",[7744]="Innkeeper Thulfram",[7749]="Blue Mechanostrider",[7750]="Corporal Thund Splithoof",[7763]="Curgle Cranklehop",[7764]="Troyas Moonbreeze",[7765]="Rockbiter",[7766]="Tyrion",[7767]="Witherbark Felhunter",[7768]="Witherbark Bloodling",[7769]="Hazzali Parasite",[7770]="Winkey",[7771]="Marvon Rivetseeker",[7772]="Kalin Windflight",[7773]="Marli Wishrunner",[7774]="Shay Leafrunner",[7775]="Gregan Brewspewer",[7776]="Talo Thornhoof",[7777]="Rok Orhan",[7778]="Doran Steelwing",[7779]="Priestess Tyriona",[7780]="Rin'ji",[7783]="Loramus Thalipedes",[7784]="Homing Robot OOX-17/TN",[7785]="Ward of Zum'rah",[7786]="Skeleton of Zum'rah",[7787]="Sandfury Slave",[7788]="Sandfury Drudge",[7789]="Sandfury Cretin",[7790]="Orokk Omosh",[7792]="Aturk the Anvil",[7793]="Ox",[7794]="McGavan",[7795]="Hydromancer Velratha",[7796]="Nekrum Gutchewer",[7797]="Ruuzlu",[7798]="Hank the Hammer",[7799]="Gimblethorn",[7800]="Mekgineer Thermaplugg",[7801]="Gilveradin Sunchaser",[7802]="Galvan the Ancient",[7803]="Scorpid Duneburrower",[7804]="Trenton Lighthammer",[7805]="Wastewander Scofflaw",[7806]="Homing Robot OOX-09/HL",[7807]="Homing Robot OOX-22/FE",[7808]="Marauding Owlbeast",[7809]="Vilebranch Ambusher",[7823]="Bera Stonehammer",[7824]="Bulkrek Ragefist",[7825]="Oran Snakewrithe",[7826]="Ambassador Ardalan",[7843]="Gnomeregan Evacuee",[7844]="Fire Nova Totem IV",[7845]="Fire Nova Totem V",[7846]="Teremus the Devourer",[7847]="Caliph Scorpidsting",[7848]="Lurking Feral Scar",[7849]="Mobile Alert System",[7850]="Kernobee",[7851]="Nethergarde Elite",[7852]="Pratt McGrubben",[7853]="Scooty",[7854]="Jangdor Swiftstrider",[7855]="Southsea Pirate",[7856]="Southsea Freebooter",[7857]="Southsea Dock Worker",[7858]="Southsea Swashbuckler",[7863]="Dream Vision",[7864]="Lingering Highborne",[7865]="Wildhammer Sentry",[7866]="Peter Galen",[7867]="Thorkaf Dragoneye",[7868]="Sarah Tanner",[7869]="Brumn Winterhoof",[7870]="Caryssia Moonhunter",[7871]="Se'Jib",[7872]="Death's Head Cultist",[7873]="Razorfen Battleguard",[7874]="Razorfen Thornweaver",[7875]="Hadoken Swiftstrider",[7876]="Tran'rek",[7877]="Latronicus Moonspear",[7878]="Vestia Moonspear",[7879]="Quintis Jonespyre",[7880]="Ginro Hearthkindle",[7881]="Stoley",[7882]="Security Chief Bilgewhizzle",[7883]="Andre Firebeard",[7884]="Fraggar Thundermantle",[7885]="Spitelash Battlemaster",[7886]="Spitelash Enchantress",[7895]="Ambassador Bloodrage",[7897]="Alarm-a-bomb 2600",[7898]="Pirate treasure trigger mob",[7899]="Treasure Hunting Pirate",[7900]="Angelas Moonbreeze",[7901]="Treasure Hunting Swashbuckler",[7902]="Treasure Hunting Buccaneer",[7903]="Jewel",[7904]="Jacob",[7907]="Daryn Lightwind",[7915]="Walking Bomb",[7916]="Erelas Ambersky",[7917]="Brother Sarno",[7918]="Stone Watcher of Norgannon",[7936]="Lyon Mountainheart",[7937]="High Tinker Mekkatorque",[7939]="Feathermoon Sentinel",[7940]="Darnall",[7941]="Mardrack Greenwell",[7942]="Faralorn",[7943]="Harklane",[7944]="Tinkmaster Overspark",[7945]="Savanne",[7946]="Brannock",[7947]="Vivianna",[7948]="Kylanna Windwhisper",[7949]="Xylinnia Starshine",[7950]="Master Mechanic Castpipe",[7951]="Zas'Tysh",[7952]="Zjolnir",[7953]="Xar'Ti",[7954]="Binjy Featherwhistle",[7955]="Milli Featherwhistle",[7956]="Kindal Moonweaver",[7957]="Jer'kai Moonweaver",[7975]="Camp Narache Brave",[7976]="Thalgus Thunderfist",[7977]="Gammerita",[7978]="Bimble Longberry",[7980]="Deathguard Elite",[7995]="Vile Priestess Hexx",[7996]="Qiaga the Keeper",[7997]="Captured Sprite Darter",[7998]="Blastmaster Emi Shortfuse",[7999]="Tyrande Whisperwind",[8015]="Ashenvale Sentinel",[8016]="Barrens Guard",[8017]="Sen'jin Guardian",[8018]="Guthrum Thunderfist",[8019]="Fyldren Moonfeather",[8020]="Shyn",[8021]="Orwin Gizzmick",[8022]="Thadius Grimshade",[8023]="Sharpbeak",[8024]="Sharpbeak's Father",[8025]="Sharpbeak's Mother",[8026]="Thyn'tel Bladeweaver",[8035]="Dark Iron Land Mine",[8055]="Thelsamar Mountaineer",[8075]="Edana Hatetalon",[8095]="Sul'lithuz Sandcrawler",[8096]="Westfall Brigade Guard",[8115]="Witch Doctor Uzer'i",[8116]="Ziggle Sparks",[8117]="Wizbang Booms",[8118]="Lillian Singh",[8119]="Zikkel",[8120]="Sul'lithuz Abomination",[8121]="Jaxxil Sparks",[8122]="Kizzak Sparks",[8123]="Rickle Goldgrubber",[8124]="Qizzik",[8125]="Dirge Quikcleave",[8126]="Nixx Sprocketspring",[8127]="Antu'sul",[8128]="Pikkle",[8129]="Wrinkle Goodsteel",[8130]="Sul'lithuz Hatchling",[8131]="Blizrik Buckshot",[8136]="Lord Shalzaru",[8137]="Gikkix",[8138]="Sul'lithuz Broodling",[8139]="Jabbey",[8140]="Brother Karman",[8141]="Captain Evencane",[8142]="Jannos Lighthoof",[8143]="Loorana",[8144]="Kulleg Stonehorn",[8145]="Sheendra Tallgrass",[8146]="Ruw",[8147]="Camp Mojache Brave",[8149]="Sul'lithuz Warder",[8150]="Janet Hommers",[8151]="Nijel's Point Guard",[8152]="Harnor",[8153]="Narv Hidecrafter",[8154]="Ghost Walker Brave",[8155]="Kargath Grunt",[8156]="Servant of Antu'sul",[8157]="Logannas",[8158]="Bronk",[8159]="Worb Strongstitch",[8160]="Nioma",[8161]="Harggan",[8176]="Gharash",[8177]="Rartar",[8178]="Nina Lightbrew",[8179]="Greater Healing Ward",[8196]="Occulus",[8197]="Chronalis",[8198]="Tick",[8199]="Warleader Krazzilak",[8200]="Jin'Zallah the Sandbringer",[8201]="Omgorn the Lost",[8202]="Cyclok the Mad",[8203]="Kregg Keelhaul",[8204]="Soriid the Devourer",[8205]="Haarka the Ravenous",[8207]="Emberwing",[8208]="Murderous Blisterpaw",[8210]="Razortalon",[8211]="Old Cliff Jumper",[8212]="The Reak",[8213]="Ironback",[8214]="Jalinde Summerdrake",[8215]="Grimungous",[8216]="Retherokk the Berserker",[8217]="Mith'rethis the Enchanter",[8218]="Witherheart the Stalker",[8219]="Zul'arek Hatefowler",[8236]="Muck Frenzy",[8256]="Curator Thorius",[8257]="Oozeling",[8276]="Soaring Razorbeak",[8277]="Rekk'tilac",[8278]="Smoldar",[8279]="Faulty War Golem",[8280]="Shleipnarr",[8281]="Scald",[8282]="Highlord Mastrogonde",[8283]="Slave Master Blackheart",[8284]="Dorius Stonetender",[8296]="Mojo the Twisted",[8297]="Magronos the Unyielding",[8298]="Akubar the Seer",[8299]="Spiteflayer",[8300]="Ravage",[8301]="Clack the Reaver",[8302]="Deatheye",[8303]="Grunter",[8304]="Dreadscorn",[8305]="Kixxle",[8306]="Duhng",[8307]="Tarban Hearthgrain",[8308]="Alenndaar Lapidaar",[8309]="Carlo Aurelius",[8310]="Watcher Wollpert",[8311]="Slime Maggot",[8317]="Atal'ai Deathwalker's Spirit",[8318]="Atal'ai Slave",[8319]="Nightmare Whelp",[8320]="Sprok",[8324]="Atal'ai Skeleton",[8336]="Hakkari Sapper",[8337]="Dark Iron Steelshifter",[8338]="Dark Iron Marksman",[8356]="Chesmu",[8357]="Atepa",[8358]="Hewa",[8359]="Ahanu",[8360]="Elki",[8361]="Chepi",[8362]="Kuruk",[8363]="Shadi Mistrunner",[8364]="Pakwa",[8376]="Mechanical Chicken",[8378]="Alexandra Blazen",[8379]="Archmage Xylem",[8380]="Captain Vanessa Beltis",[8381]="Lindros",[8382]="Patrick Mills",[8383]="Master Wood",[8384]="Deep Lurker",[8385]="Mura Runetotem",[8386]="Horizon Scout Crewman",[8387]="Horizon Scout First Mate",[8388]="Horizon Scout Cook",[8389]="Horizon Scout Engineer",[8390]="Chemist Cuely",[8391]="Lathoric the Black",[8392]="Pilot Xiggs Fuselighter",[8393]="Thersa Windsong",[8394]="Roland Geardabbler",[8395]="Sanath Lim-yo",[8396]="Sentinel Dalia Sunblade",[8397]="Sentinel Keldara Sunblade",[8398]="Ohanko",[8399]="Nyrill",[8400]="Obsidion",[8401]="Halpa",[8402]="Enslaved Archaeologist",[8403]="Jeremiah Payson",[8404]="Xan'tish",[8405]="Ogtinc",[8408]="Warlord Krellian",[8409]="Caravan Master Tset",[8416]="Felix Whindlebolt",[8417]="Dying Archaeologist",[8418]="Falla Sagewind",[8419]="Twilight Idolater",[8420]="Kim'jael",[8421]="Dorius",[8436]="Zamael Lunthistle",[8437]="Hakkari Minion",[8438]="Hakkari Bloodkeeper",[8439]="Nilith Lokrav",[8440]="Shade of Hakkar",[8441]="Raze",[8442]="Shadowsilk Poacher",[8443]="Avatar of Hakkar",[8444]="Trade Master Kovic",[8446]="Xiggs Fuselighter's Flyingmachine",[8447]="Clunk",[8477]="Skeletal Servant",[8478]="Second Mate Shandril",[8479]="Kalaran Windblade",[8480]="Kalaran the Deceiver",[8496]="Liv Rizzlefix",[8497]="Nightmare Suppressor",[8503]="Gibblewilt",[8504]="Dark Iron Sentry",[8506]="Eranikus the Chained",[8507]="Tymor",[8508]="Gretta Ganter",[8509]="Squire Maltrake",[8510]="Atal'ai Totem",[8516]="Belnistrasz",[8517]="Xiggs Fuselighter",[8518]="Rynthariel the Keymaster",[8519]="Blighted Surge",[8520]="Plague Ravager",[8521]="Blighted Horror",[8522]="Plague Monstrosity",[8523]="Scourge Soldier",[8524]="Cursed Mage",[8525]="Scourge Warder",[8526]="Dark Caster",[8527]="Scourge Guard",[8528]="Dread Weaver",[8529]="Scourge Champion",[8530]="Cannibal Ghoul",[8531]="Gibbering Ghoul",[8532]="Diseased Flayer",[8534]="Putrid Gargoyle",[8535]="Putrid Shrieker",[8537]="Interloper",[8538]="Unseen Servant",[8539]="Eyeless Watcher",[8540]="Torn Screamer",[8541]="Hate Shrieker",[8542]="Death Singer",[8543]="Stitched Horror",[8544]="Gangled Golem",[8545]="Stitched Golem",[8546]="Dark Adept",[8547]="Death Cultist",[8548]="Vile Tutor",[8550]="Shadowmage",[8551]="Dark Summoner",[8553]="Necromancer",[8554]="Chief Sharptusk Thornmantle",[8555]="Crypt Stalker",[8556]="Crypt Walker",[8557]="Crypt Horror",[8558]="Crypt Slayer",[8560]="Mossflayer Scout",[8561]="Mossflayer Shadowhunter",[8562]="Mossflayer Cannibal",[8563]="Wretched Woodsman",[8564]="Wretched Ranger",[8565]="Wretched Pathstrider",[8566]="Dark Iron Lookout",[8567]="Glutton",[8576]="Ag'tor Bloodfist",[8578]="Magus Rimtori",[8579]="Yeh'kinya",[8580]="Atal'alarion",[8581]="Blood Elf Defender",[8582]="Kadrak",[8583]="Dirania Silvershine",[8584]="Iverron",[8585]="Frost Spectre",[8586]="Haggrum Bloodfist",[8587]="Jediga",[8588]="Umbranse the Spiritspeaker",[8596]="Plaguehound Runt",[8597]="Plaguehound",[8598]="Frenzied Plaguehound",[8600]="Plaguebat",[8601]="Noxious Plaguebat",[8602]="Monstrous Plaguebat",[8603]="Carrion Grub",[8605]="Carrion Devourer",[8606]="Living Decay",[8607]="Rotting Sludge",[8608]="Angered Infernal",[8609]="Alexandra Constantine",[8610]="Kroum",[8611]="Idol Room Spawner",[8612]="Screecher Spirit",[8615]="Mithril Dragonling",[8616]="Infernal Servant",[8617]="Zalashji",[8636]="Morta'gya the Keeper",[8637]="Dark Iron Watchman",[8656]="Hukku's Voidwalker",[8657]="Hukku's Succubus",[8658]="Hukku's Imp",[8659]="Jes'rimon",[8660]="The Evalcharr",[8661]="Auctioneer Beardo",[8662]="Idol Oven Fire Target",[8664]="Sunwalker Saern",[8665]="Shylenai",[8666]="Lil Timmy",[8667]="Gusting Vortex",[8668]="Felhound Tracker",[8669]="Auctioneer Tolon",[8670]="Auctioneer Chilton",[8671]="Auctioneer Buckler",[8672]="Auctioneer Leeka",[8673]="Auctioneer Thathung",[8674]="Auctioneer Stampi",[8675]="Felbeast",[8677]="World Goblin Engineering Trainer",[8678]="Jubie Gadgetspring",[8679]="Knaz Blunderflame",[8681]="Outfitter Eric",[8696]="Henry Stern",[8716]="Dreadlord",[8717]="Felguard Elite",[8718]="Manahound",[8719]="Auctioneer Fitch",[8720]="Auctioneer Redmuse",[8721]="Auctioneer Epitwee",[8722]="Auctioneer Gullem",[8723]="Auctioneer Golothas",[8724]="Auctioneer Wabang",[8736]="Buzzek Bracketswing",[8737]="Linken",[8738]="Vazario Linkgrease",[8756]="Raytaf",[8757]="Shahiar",[8758]="Zaman",[8759]="Mosshoof Runner",[8760]="Mosshoof Stag",[8761]="Mosshoof Courser",[8762]="Timberweb Recluse",[8763]="Mistwing Rogue",[8764]="Mistwing Ravager",[8766]="Forest Ooze",[8767]="Sah'rhee",[8776]="Emerald Dragon Whelp",[8816]="Deathly Usher",[8836]="Battle Chicken",[8837]="Muck Splash",[8856]="Tyrion's Spybot",[8876]="Sandfury Acolyte",[8877]="Sandfury Zealot",[8878]="Muuran",[8879]="Royal Historian Archesonus",[8881]="Riding Ram",[8882]="Riding Tiger",[8883]="Riding Horse",[8884]="Skeletal Mount",[8885]="Riding Raptor",[8886]="Deviate Python",[8887]="A tormented voice",[8888]="Franclorn Forgewright",[8889]="Anvilrage Overseer",[8890]="Anvilrage Warden",[8891]="Anvilrage Guardsman",[8892]="Anvilrage Footman",[8893]="Anvilrage Soldier",[8894]="Anvilrage Medic",[8895]="Anvilrage Officer",[8896]="Shadowforge Peasant",[8897]="Doomforge Craftsman",[8898]="Anvilrage Marshal",[8899]="Doomforge Dragoon",[8900]="Doomforge Arcanasmith",[8901]="Anvilrage Reservist",[8902]="Shadowforge Citizen",[8903]="Anvilrage Captain",[8904]="Shadowforge Senator",[8905]="Warbringer Construct",[8906]="Ragereaver Golem",[8907]="Wrath Hammer Construct",[8908]="Molten War Golem",[8909]="Fireguard",[8910]="Blazing Fireguard",[8911]="Fireguard Destroyer",[8912]="Twilight's Hammer Torturer",[8913]="Twilight Emissary",[8914]="Twilight Bodyguard",[8915]="Twilight's Hammer Ambassador",[8916]="Arena Spectator",[8917]="Quarry Slave",[8920]="Weapon Technician",[8921]="Bloodhound",[8922]="Bloodhound Mastiff",[8923]="Panzor the Invincible",[8924]="The Behemoth",[8925]="Dredge Worm",[8926]="Deep Stinger",[8927]="Dark Screecher",[8928]="Burrowing Thundersnout",[8929]="Princess Moira Bronzebeard",[8931]="Innkeeper Heather",[8932]="Borer Beetle",[8933]="Cave Creeper",[8934]="Christopher Hewen",[8937]="Pet Bomb",[8956]="Angerclaw Bear",[8957]="Angerclaw Grizzly",[8958]="Angerclaw Mauler",[8959]="Felpaw Wolf",[8960]="Felpaw Scavenger",[8961]="Felpaw Ravager",[8962]="Nida",[8963]="Effsee",[8964]="Blackrock Drake",[8965]="Shawn",[8976]="Hematos",[8977]="Krom'Grul",[8978]="Thauris Balgarr",[8979]="Gruklash",[8980]="Firegut Captain",[8981]="Malfunctioning Reaver",[8982]="Ironhand Guardian",[8983]="Golem Lord Argelmach",[8996]="Voidwalker Minion",[8997]="Gershala Nightwhisper",[9016]="Bael'Gar",[9017]="Lord Incendius",[9018]="High Interrogator Gerstahn",[9019]="Emperor Dagran Thaurissan",[9020]="Commander Gor'shak",[9021]="Kharan Mighthammer",[9022]="Dughal Stormwing",[9023]="Marshal Windsor",[9024]="Pyromancer Loregrain",[9025]="Lord Roccor",[9026]="Overmaster Pyron",[9027]="Gorosh the Dervish",[9028]="Grizzle",[9029]="Eviscerator",[9030]="Ok'thor the Breaker",[9031]="Anub'shiah",[9032]="Hedrum the Creeper",[9033]="General Angerforge",[9034]="Hate'rel",[9035]="Anger'rel",[9036]="Vile'rel",[9037]="Gloom'rel",[9038]="Seeth'rel",[9039]="Doom'rel",[9040]="Dope'rel",[9041]="Warder Stilgiss",[9042]="Verek",[9043]="Scarshield Grunt",[9044]="Scarshield Sentry",[9045]="Scarshield Acolyte",[9046]="Scarshield Quartermaster",[9047]="Jenal",[9056]="Fineous Darkvire",[9076]="Ghede",[9077]="Warlord Goretooth",[9078]="Shadowmage Vivian Lagrave",[9079]="Hierophant Theodora Mulvadania",[9080]="Lexlort",[9081]="Galamav the Marksman",[9082]="Thal'trak Proudtusk",[9083]="Razal'blade",[9084]="Thunderheart",[9085]="Initiate Amakkar",[9086]="Grunt Gargal",[9087]="Bashana Runetotem",[9096]="Rage Talon Dragonspawn",[9097]="Scarshield Legionnaire",[9098]="Scarshield Spellbinder",[9099]="Sraaz",[9116]="Eridan Bluewind",[9117]="J.D. Collie",[9118]="Larion",[9119]="Muigin",[9136]="Sha'ni Proudtusk",[9156]="Ambassador Flamelash",[9157]="Bloodpetal Pest",[9158]="Warhorse",[9162]="Young Diemetradon",[9163]="Diemetradon",[9164]="Elder Diemetradon",[9165]="Fledgling Pterrordax",[9166]="Pterrordax",[9167]="Frenzied Pterrordax",[9176]="Gorlop",[9177]="Oralius",[9178]="Burning Spirit",[9179]="Jazzrik",[9196]="Highlord Omokk",[9197]="Spirestone Battle Mage",[9198]="Spirestone Mystic",[9199]="Spirestone Enforcer",[9200]="Spirestone Reaver",[9201]="Spirestone Ogre Magus",[9216]="Spirestone Warlord",[9217]="Spirestone Lord Magus",[9218]="Spirestone Battle Lord",[9219]="Spirestone Butcher",[9236]="Shadow Hunter Vosh'gajin",[9237]="War Master Voone",[9238]="Quentin",[9239]="Smolderthorn Mystic",[9240]="Smolderthorn Shadow Priest",[9241]="Smolderthorn Headhunter",[9256]="Farm Chicken",[9257]="Scarshield Warlock",[9258]="Scarshield Raider",[9259]="Firebrand Grunt",[9260]="Firebrand Legionnaire",[9261]="Firebrand Darkweaver",[9262]="Firebrand Invoker",[9263]="Firebrand Dreadweaver",[9264]="Firebrand Pyromancer",[9265]="Smolderthorn Shadow Hunter",[9266]="Smolderthorn Witch Doctor",[9267]="Smolderthorn Axe Thrower",[9268]="Smolderthorn Berserker",[9269]="Smolderthorn Seer",[9270]="Williden Marshal",[9271]="Hol'anyee Marshal",[9272]="Spark Nilminer",[9273]="Petra Grossen",[9274]="Dadanga",[9296]="Milly Osworth",[9297]="Enraged Wyvern",[9298]="Donova Snowden",[9299]="Gaeriyan",[9316]="Wenikee Boltbucket",[9317]="Rilli Greasygob",[9318]="Incendosaur",[9319]="Houndmaster Grebmar",[9336]="Boss Copperplug",[9356]="Innkeeper Shul'kar",[9376]="Blazerunner",[9377]="Swirling Vortex",[9396]="Ground Pounder",[9397]="Unearthed Fossil",[9398]="Twilight's Hammer Executioner",[9416]="Scarshield Worg",[9436]="Spawn of Bael'Gar",[9437]="Dark Keeper Vorfalk",[9438]="Dark Keeper Bethek",[9439]="Dark Keeper Uggel",[9441]="Dark Keeper Zimrel",[9442]="Dark Keeper Ofgut",[9443]="Dark Keeper Pelver",[9445]="Dark Guard",[9447]="Scarlet Warder",[9448]="Scarlet Praetorian",[9449]="Scarlet Cleric",[9450]="Scarlet Curate",[9451]="Scarlet Archmage",[9452]="Scarlet Enchanter",[9453]="Aquementas",[9454]="Xavathras",[9456]="Warlord Krom'zar",[9457]="Horde Defender",[9458]="Horde Axe Thrower",[9459]="Cyrus Therepentous",[9460]="Gadgetzan Bruiser",[9461]="Frenzied Black Drake",[9462]="Chieftain Bloodmaw",[9464]="Overlord Ror",[9465]="Golhine the Hooded",[9467]="Miblon Snarltooth",[9476]="Watchman Doomgrip",[9477]="Cloned Ooze",[9496]="Gorishi Egg",[9498]="Gorishi Grub",[9499]="Plugger Spazzring",[9500]="Mistress Nagmara",[9501]="Innkeeper Adegwa",[9502]="Phalanx",[9503]="Private Rocknot",[9516]="Lord Banehollow",[9517]="Shadow Lord Fel'dan",[9518]="Rakaiah",[9520]="Grark Lorkrub",[9521]="Enraged Felbat",[9522]="Blackrock Ambusher",[9523]="Kolkar Stormseer",[9524]="Kolkar Invader",[9525]="Freewind Brave",[9526]="Enraged Gryphon",[9527]="Enraged Hippogryph",[9528]="Arathandris Silversky",[9529]="Maybess Riverbreeze",[9536]="Maxwort Uberglint",[9537]="Hurley Blackbreath",[9538]="High Executioner Nuzrak",[9539]="Shadow of Lexlort",[9540]="Enohar Thunderbrew",[9541]="Blackbreath Crony",[9542]="Franclorn's Spirit",[9543]="Ribbly Screwspigot",[9544]="Yuka Screwspigot",[9545]="Grim Patron",[9546]="Raschal the Courier",[9547]="Guzzling Patron",[9548]="Cawind Trueaim",[9549]="Borand",[9550]="Furmund",[9551]="Starn",[9552]="Zanara",[9553]="Nadia Vernon",[9554]="Hammered Patron",[9555]="Mu'uta",[9556]="Felhound Minion",[9558]="Grimble",[9559]="Grizzlowe",[9560]="Marshal Maxwell",[9561]="Jalinda Sprig",[9562]="Helendis Riverhorn",[9563]="Ragged John",[9564]="Frezza",[9565]="Mayara Brightwing",[9566]="Zapetta",[9568]="Overlord Wyrmthalak",[9580]="Orgrimmar Talent Master",[9582]="Undercity Talent Master",[9583]="Bloodaxe Veteran",[9584]="Jalane Ayrole",[9596]="Bannok Grimaxe",[9598]="Arei",[9600]="Parrot",[9601]="Treant Spirit",[9602]="Hahk'Zor",[9604]="Gorgon'och",[9605]="Blackrock Raider",[9616]="Laris Geardawdle",[9618]="Karna Remtravel",[9619]="Torwa Pathfinder",[9620]="Dreka'Sur",[9621]="Gargantuan Ooze",[9622]="U'cha",[9623]="A-Me 01",[9636]="Kireena",[9637]="Scorching Totem",[9656]="Pet Bombling",[9657]="Lil' Smoky",[9658]="Distract Test",[9659]="Unkillable Test Dummy",[9660]="Agnar Beastamer",[9662]="Sprite Darter Hatchling",[9676]="Tink Sprocketwhistle",[9677]="Ograbisi",[9678]="Shill Dinger",[9679]="Tobias Seecher",[9680]="Crest Killer",[9681]="Jaz",[9682]="Marshal Reginald Windsor",[9683]="Lar'korwi Mate",[9684]="Lar'korwi",[9687]="Windwall Totem",[9688]="Windwall Totem II",[9689]="Windwall Totem III",[9690]="Ember Worg",[9691]="Venomtip Scorpid",[9692]="Bloodaxe Raider",[9693]="Bloodaxe Evoker",[9694]="Slavering Ember Worg",[9695]="Deathlash Scorpid",[9696]="Bloodaxe Worg",[9697]="Giant Ember Worg",[9698]="Firetail Scorpid",[9699]="Fire Beetle",[9700]="Lava Crab",[9701]="Spire Scorpid",[9705]="Illusionary Dreamwatcher",[9706]="Yorba Screwspigot",[9707]="Scarshield Portal",[9708]="Burning Imp",[9716]="Bloodaxe Warmonger",[9717]="Bloodaxe Summoner",[9718]="Ghok Bashguud",[9736]="Quartermaster Zigris",[9776]="Flamekin Spitter",[9777]="Flamekin Sprite",[9778]="Flamekin Torcher",[9779]="Flamekin Rager",[9796]="Galgar",[9816]="Pyroguard Emberseer",[9817]="Blackhand Dreadweaver",[9818]="Blackhand Summoner",[9819]="Blackhand Veteran",[9836]="Mathredis Firestar",[9856]="Auctioneer Grimful",[9857]="Auctioneer Grizzlin",[9858]="Auctioneer Kresky",[9859]="Auctioneer Lympkin",[9860]="Salia",[9861]="Moora",[9862]="Jaedenar Legionnaire",[9876]="Locheed",[9877]="Prince Xavalis",[9878]="Entropic Beast",[9879]="Entropic Horror",[9916]="Jarquia",[9936]="Corrupted Kitten",[9937]="Common Kitten",[9938]="Magmus",[9956]="Shadowforge Flame Keeper",[9976]="Tharlidun",[9977]="Sylista",[9978]="Wesley",[9979]="Sarah Goode",[9980]="Shelby Stoneflint",[9981]="Sikwa",[9982]="Penny",[9983]="Kelsuwa",[9984]="Ulbrek Firehand",[9985]="Laziphus",[9986]="Shyrka Wolfrunner",[9987]="Shoja'my",[9988]="Xon'cha",[9989]="Lina Hearthstove",[9990]="Lanti'gah",[9996]="Winna Hazzard",[9997]="Spraggle Frock",[9998]="Shizzle",[9999]="Ringo",[10000]="Arugal",[10016]="Tainted Rat",[10017]="Tainted Cockroach",[10036]="Brackenwall Enforcer",[10037]="Lakeshire Guard",[10038]="Night Watch Guard",[10040]="Gorishi Hive Guard",[10041]="Gorishi Hive Queen",[10042]="Corrupted Saber",[10043]="Ribbly's Crony",[10045]="Kirk Maxwell",[10046]="Bethaine Flinthammer",[10047]="Michael",[10048]="Gereck",[10049]="Hekkru",[10050]="Seikwa",[10051]="Seriadne",[10052]="Maluressian",[10053]="Anya Maulray",[10054]="Bulrug",[10055]="Morganus",[10056]="Alassin",[10057]="Theodore Mont Claire",[10058]="Greth",[10059]="Antarius",[10060]="Grimestack",[10061]="Killium Bouldertoe",[10062]="Steven Black",[10063]="Reggifuz",[10076]="High Priestess of Thaurissan",[10077]="Deathmaw",[10078]="Terrorspark",[10079]="Brave Moonhorn",[10080]="Sandarr Dunereaver",[10081]="Dustwraith",[10082]="Zerillis",[10083]="Rage Talon Flamescale",[10085]="Jaelysia",[10086]="Hesuwa Thunderhorn",[10088]="Xao'tsu",[10089]="Silvaria",[10090]="Belia Thundergranite",[10096]="High Justice Grimstone",[10116]="Slave",[10117]="Tortured Slave",[10118]="Nessa Shadowsong",[10119]="Volchan",[10120]="Vault Warder",[10136]="Chemist Fuely",[10157]="Moonkin Oracle",[10158]="Moonkin",[10159]="Young Moonkin",[10160]="Raging Moonkin",[10161]="Rookery Whelp",[10162]="Lord Victor Nefarius",[10176]="Kaltunk",[10177]="Spire Scarab",[10179]="Riding MechaStrider (Black)",[10180]="Unpainted Mechanostrider",[10181]="Lady Sylvanas Windrunner",[10182]="Rokaro",[10183]="Moonflare Totem",[10184]="Onyxia",[10196]="General Colbatann",[10197]="Mezzir the Howler",[10198]="Kashoch the Reaver",[10199]="Grizzle Snowpaw",[10200]="Rak'shiri",[10201]="Lady Hederine",[10202]="Azurous",[10204]="Misha",[10216]="Gubber Blump",[10217]="Flame Buffet Totem",[10218]="Superior Healing Ward",[10219]="Gwennyth Bly'Leggonde",[10220]="Halycon",[10221]="Bloodaxe Worg Pup",[10257]="Bijou",[10258]="Rookery Guardian",[10259]="Worg Pup",[10260]="Kibler",[10261]="Burning Felhound",[10262]="Opus",[10263]="Burning Felguard",[10264]="Solakar Flamewreath",[10266]="Ug'thok",[10267]="Tinkee Steamboil",[10268]="Gizrul the Slavener",[10276]="Rotgath Stonebeard",[10277]="Groum Stonebeard",[10278]="Thrag Stonehoof",[10290]="Captured Felwood Ooze",[10293]="Dulciea Frostmoon",[10296]="Vaelan",[10299]="Acride",[10300]="Ranshalla",[10301]="Jaron Stoneshaper",[10302]="Krakle",[10303]="Storm Shadowhoof",[10304]="Aurora Skycaller",[10305]="Umi Rumplesnicker",[10306]="Trull Failbane",[10307]="Witch Doctor Mau'ari",[10316]="Blackhand Incarcerator",[10317]="Blackhand Elite",[10318]="Blackhand Assassin",[10319]="Blackhand Iron Guard",[10321]="Emberstrife",[10322]="Riding Tiger (White)",[10323]="Murkdeep",[10339]="Gyth",[10340]="Vaelastrasz the Red",[10356]="Bayne",[10357]="Ressan the Needler",[10358]="Fellicent's Shade",[10359]="Sri'skulk",[10360]="Kergul Bloodaxe",[10361]="Gruul Darkblade",[10363]="General Drakkisath",[10364]="Yaelika Farclaw",[10366]="Rage Talon Dragon Guard",[10367]="Shrye Ragefist",[10369]="Trayexir",[10370]="[UNUSED] Xur'gyl",[10371]="Rage Talon Captain",[10372]="Rage Talon Fire Tongue",[10373]="Xabraxxis",[10374]="Spire Spider",[10375]="Spire Spiderling",[10376]="Crystal Fang",[10377]="Elu",[10378]="Omusa Thunderhorn",[10379]="Altsoba Ragetotem",[10380]="Sanuye Runetotem",[10381]="Ravaged Cadaver",[10382]="Mangled Cadaver",[10383]="Broken Cadaver",[10384]="Spectral Citizen",[10385]="Ghostly Citizen",[10387]="Vengeful Phantom",[10388]="Spiteful Phantom",[10389]="Wrath Phantom",[10390]="Skeletal Guardian",[10391]="Skeletal Berserker",[10393]="Skul",[10394]="Black Guard Sentry",[10398]="Thuzadin Shadowcaster",[10399]="Thuzadin Acolyte",[10400]="Thuzadin Necromancer",[10404]="Pustulating Horror",[10405]="Plague Ghoul",[10406]="Ghoul Ravener",[10407]="Fleshflayer Ghoul",[10408]="Rockwing Gargoyle",[10409]="Rockwing Screecher",[10411]="Eye of Naxxramas",[10412]="Crypt Crawler",[10413]="Crypt Beast",[10414]="Patchwork Horror",[10415]="Ash'ari Crystal",[10416]="Bile Spewer",[10417]="Venom Belcher",[10418]="Risen Guardsman",[10419]="Risen Conjuror",[10420]="Risen Initiate",[10421]="Crimson Defender",[10422]="Crimson Sorcerer",[10423]="Crimson Priest",[10424]="Risen Gallant",[10425]="Crimson Battle Mage",[10426]="Crimson Inquisitor",[10427]="Pao'ka Swiftmountain",[10428]="Motega Firemane",[10429]="Warchief Rend Blackhand",[10430]="The Beast",[10431]="Gregor Greystone",[10432]="Vectus",[10433]="Marduk Blackpool",[10435]="Magistrate Barthilas",[10436]="Baroness Anastari",[10437]="Nerub'enkan",[10438]="Maleki the Pallid",[10439]="Ramstein the Gorger",[10440]="Baron Rivendare",[10441]="Plagued Rat",[10442]="Chromatic Whelp",[10445]="Selina Dourman",[10447]="Chromatic Dragonspawn",[10455]="Binny Springblade",[10456]="Prynne",[10460]="Prospector Ironboot",[10461]="Plagued Insect",[10463]="Shrieking Banshee",[10464]="Wailing Banshee",[10467]="Mana Tide Totem",[10468]="Felnok Steelspring",[10469]="Scholomance Adept",[10470]="Scholomance Neophyte",[10471]="Scholomance Acolyte",[10472]="Scholomance Occultist",[10475]="Scholomance Student",[10476]="Scholomance Necrolyte",[10477]="Scholomance Necromancer",[10478]="Splintered Skeleton",[10479]="Skulking Corpse",[10480]="Unstable Corpse",[10481]="Reanimated Corpse",[10482]="Risen Lackey",[10485]="Risen Aberration",[10486]="Risen Warrior",[10487]="Risen Protector",[10488]="Risen Construct",[10489]="Risen Guard",[10491]="Risen Bonewarder",[10495]="Diseased Ghoul",[10497]="Ragged Ghoul",[10498]="Spectral Tutor",[10499]="Spectral Researcher",[10500]="Spectral Teacher",[10502]="Lady Illucia Barov",[10503]="Jandice Barov",[10504]="Lord Alexei Barov",[10505]="Instructor Malicia",[10506]="Kirtonos the Herald",[10507]="The Ravenian",[10508]="Ras Frostwhisper",[10509]="Jed Runewatcher",[10516]="The Unforgiven",[10536]="Plagued Maggot",[10537]="Cliffwatcher Longhorn",[10538]="Vaelastrasz",[10539]="Hagar Lightninghoof",[10540]="Vol'jin",[10541]="Krakle's Thermometer",[10556]="Lazy Peon",[10557]="Flametongue Totem IV",[10558]="Hearthsinger Forresten",[10559]="Lady Vespia",[10577]="Crypt Scarab",[10578]="Bom'bay",[10580]="Fetid Zombie",[10581]="Young Arikara",[10582]="Dog",[10583]="Gryfe",[10584]="Urok Doomhowl",[10596]="Mother Smolderweb",[10598]="Smolderweb Hatchling",[10599]="Hulfnar Stonetotem",[10600]="Thontek Rumblehoof",[10601]="Urok Enforcer",[10602]="Urok Ogre Magus",[10603]="Hallucination",[10604]="Huntress Nhemai",[10605]="Scarlet Medic",[10606]="Huntress Yaeliura",[10608]="Scarlet Priest",[10610]="Angus",[10611]="Shorty",[10612]="Guard Wachabe",[10616]="Supervisor Raelen",[10617]="Galak Messenger",[10618]="Rivern Frostwind",[10619]="Glacier",[10636]="Pack Kodo",[10637]="Malyfous Darkhammer",[10638]="Kanati Greycloud",[10639]="Rorgish Jowl",[10640]="Oakpaw",[10641]="Branch Snapper",[10642]="Eck'alom",[10643]="Mugglefin",[10644]="Mist Howler",[10645]="Thalia Amberhide",[10646]="Lakota Windsong",[10647]="Prince Raze",[10648]="Xavaric",[10656]="Guardian Felhunter",[10657]="Corrupted Cat",[10658]="Winna's Kitten",[10659]="Cobalt Whelp",[10660]="Cobalt Broodling",[10661]="Spell Eater",[10662]="Spellmaw",[10663]="Manaclaw",[10664]="Scryer",[10665]="Junior Apothecary Holland",[10666]="Gordo",[10667]="Chromie",[10668]="Beaten Corpse",[10676]="Raider Jhash",[10678]="Plagued Hatchling",[10680]="Summoned Blackhand Dreadweaver",[10681]="Summoned Blackhand Veteran",[10682]="Raider Kerr",[10683]="Rookery Hatcher",[10684]="Remorseful Highborne",[10685]="Swine",[10696]="Refuge Pointe Defender",[10697]="Bile Slime",[10698]="Summoned Zombie",[10699]="Carrion Scarab",[10716]="Belfry Bat",[10717]="Temporal Parasite",[10718]="Shahram",[10719]="Herald of Thrall",[10720]="Galak Assassin",[10721]="Novice Warrior",[10737]="Shy-Rotam",[10738]="High Chief Winterfall",[10739]="Mulgris Deepriver",[10740]="Awbee",[10741]="Sian-Rotam",[10742]="Blackhand Dragon Handler",[10756]="Scalding Elemental",[10757]="Boiling Elemental",[10758]="Grimtotem Bandit",[10759]="Grimtotem Stomper",[10760]="Grimtotem Geomancer",[10761]="Grimtotem Reaver",[10762]="Blackhand Thug",[10776]="Finkle Einhorn",[10778]="Janice Felstone",[10779]="Infected Squirrel",[10780]="Infected Deer",[10781]="Royal Overseer Bauhaus",[10782]="Royal Factor Bathrilor",[10785]="Orb of Deception (Tauren Male)",[10799]="Warosh",[10800]="Warosh the Redeemed",[10801]="Jabbering Ghoul",[10802]="Hitah'ya the Keeper",[10803]="Rifleman Wheeler",[10804]="Rifleman Middlecamp",[10805]="Spotter Klemmy",[10806]="Ursius",[10807]="Brumeran",[10808]="Timmy the Cruel",[10809]="Stonespine",[10811]="Instructor Galford",[10812]="Grand Crusader Dathrohan",[10813]="Balnazzar",[10814]="Chromatic Elite Guard",[10816]="Wandering Skeleton",[10817]="Duggan Wildhammer",[10818]="Death Knight Soulbearer",[10819]="Baron Bloodbane",[10820]="Duke Ragereaver",[10821]="Hed'mush the Rotting",[10822]="Warlord Thresh'jin",[10823]="Zul'Brin Warpbranch",[10824]="Ranger Lord Hawkspear",[10825]="Gish the Unmoving",[10826]="Lord Darkscythe",[10827]="Deathspeaker Selendre",[10828]="High General Abbendis",[10836]="Farmer Dalson",[10837]="High Executor Derrington",[10838]="Commander Ashlam Valorfist",[10839]="Argent Officer Garush",[10840]="Argent Officer Pureheart",[10856]="Argent Quartermaster Hasana",[10857]="Argent Quartermaster Lightspark",[10876]="Undead Scarab",[10877]="Courier Hammerfall",[10878]="Herald Moonstalker",[10879]="Harbinger Balthazad",[10880]="Warcaller Gorlach",[10881]="Bluff Runner Windstrider",[10882]="[Deprecated for 4.x]Arikara",[10896]="Arnak Grimtotem",[10897]="Sindrayl",[10899]="Goraluk Anvilcrack",[10901]="Lorekeeper Polkelt",[10902]="Andorhal Tower One",[10903]="Andorhal Tower Two",[10904]="Andorhal Tower Three",[10905]="Andorhal Tower Four",[10916]="Winterfall Runner",[10917]="Aurius",[10918]="Lorax",[10919]="Shatterspear Troll",[10920]="Kelek Skykeeper",[10921]="Taronn Redfeather",[10922]="Greta Mosshoof",[10923]="Tenell Leafrunner",[10924]="Ivy Leafrunner",[10925]="Rotting Worm",[10926]="Pamela Redpath",[10927]="Marlene Redpath",[10928]="Succubus Minion",[10929]="Haleh",[10930]="Dargh Trueaim",[10936]="Joseph Redpath",[10937]="Captain Redpath",[10938]="Redpath the Corrupted",[10939]="Marduk the Black",[10940]="Ghost of the Past",[10941]="Wizlo Bearingshiner",[10942]="Nessy",[10943]="Decrepit Guardian",[10944]="Davil Lightfire",[10945]="Davil Crokford",[10946]="Horgus the Ravager",[10947]="Darrowshire Betrayer",[10948]="Darrowshire Defender",[10949]="Silver Hand Disciple",[10950]="Redpath Militia",[10951]="Marauding Corpse",[10952]="Marauding Skeleton",[10953]="Servant of Horgus",[10954]="Bloodletter",[10955]="Summoned Water Elemental",[10956]="Naga Siren",[10976]="Jeziba",[10977]="Quixxil",[10978]="Legacki",[10979]="Scarlet Hound",[10980]="Umi's Mechanical Yeti",[10981]="Frostwolf",[10982]="Whitewhisker Vermin",[10986]="Snowblind Harpy",[10987]="Irondeep Trogg",[10988]="Kodo Spirit",[10990]="Alterac Ram",[10991]="Wildpaw Gnoll",[10992]="Enraged Panther",[10993]="Twizwick Sprocketgrind",[10996]="Fallen Hero",[10997]="Cannon Master Willey",[11016]="Captured Arko'narin",[11017]="Roxxik",[11018]="Arko'narin",[11019]="Jessir Moonbow",[11020]="Remains of Trey Lightforge",[11021]="Winterspring Frostsaber",[11022]="Alexi Barov",[11023]="Weldon Barov",[11024]="Della",[11025]="Mukdrak",[11026]="Sprite Jumpsprocket",[11027]="Illusory Wraith",[11028]="Jemma Quikswitch",[11029]="Trixie Quikswitch",[11030]="Mindless Undead",[11031]="Franklin Lloyd",[11032]="Commander Malor",[11033]="Smokey LaRue",[11034]="Lord Maxwell Tyrosus",[11035]="Betina Bigglezink",[11036]="Leonid Barthalomew the Revered",[11037]="Jenna Lemkenilli",[11038]="Caretaker Alen",[11039]="Duke Nicholas Zverenhoff",[11040]="Watcher Brownell",[11041]="Milla Fairancora",[11042]="Sylvanna Forestmoon",[11043]="Crimson Monk",[11044]="Doctor Martin Felben",[11046]="Whuut",[11047]="Kray",[11048]="Victor Ward",[11049]="Rhiannon Davis",[11050]="Trianna",[11051]="Vhan",[11052]="Timothy Worthington",[11053]="High Priestess MacDonnell",[11054]="Crimson Rifleman",[11055]="Shadow Priestess Vandis",[11056]="Alchemist Arbington",[11057]="Apothecary Dithers",[11058]="Fras Siabi",[11063]="Carlin Redpath",[11064]="Darrowshire Spirit",[11065]="Thonys Pillarstone",[11066]="Jhag",[11067]="Malcomb Wynn",[11068]="Betty Quin",[11069]="Jenova Stoneshield",[11070]="Lalina Summermoon",[11071]="Mot Dawnstrider",[11072]="Kitta Firewind",[11073]="Annora",[11074]="Hgarth",[11075]="Cauldron Lord Bilemaw",[11076]="Cauldron Lord Razarch",[11077]="Cauldron Lord Malvinious",[11078]="Cauldron Lord Soulwrath",[11079]="Wynd Nightchaser",[11081]="Faldron",[11082]="Stratholme Courier",[11083]="Darianna",[11084]="Tarn",[11096]="Randal Worth",[11097]="Drakk Stonehand",[11098]="Hahrana Ironhide",[11099]="Argent Guard",[11100]="Mana Tide Totem II",[11101]="Mana Tide Totem III",[11102]="Argent Rider",[11103]="Innkeeper Lyshaerya",[11104]="Shelgrayn",[11105]="Aboda",[11106]="Innkeeper Sikewa",[11116]="Innkeeper Abeqwa",[11117]="Awenasa",[11118]="Innkeeper Vizzie",[11119]="Azzleby",[11120]="Risen Hammersmith",[11121]="Black Guard Swordsmith",[11122]="Restless Soul",[11136]="Freed Soul",[11137]="Xai'ander",[11138]="Maethrya",[11139]="Yugrek",[11140]="Egan",[11141]="Spirit of Trey Lightforge",[11142]="Undead Postman",[11143]="Postmaster Malown",[11145]="Myolor Sunderfury",[11146]="Ironus Coldsteel",[11147]="Green Mechanostrider",[11152]="The Scourge Cauldron",[11153]="Red Skeletal Horse",[11154]="Blue Skeletal Horse",[11155]="Brown Skeletal Horse",[11156]="Green Skeletal Warhorse",[11176]="Krathok Moltenfist",[11177]="Okothos Ironrager",[11178]="Borgosh Corebender",[11180]="Bloodvenom Post Brave",[11181]="Shi'alune",[11182]="Nixxrak",[11183]="Blixxrak",[11184]="Wixxrak",[11185]="Xizzer Fizzbolt",[11186]="Lunnix Sprocketslip",[11187]="Himmik",[11188]="Evie Whirlbrew",[11189]="Qia",[11190]="Everlook Bruiser",[11191]="Lilith the Lithe",[11192]="Kilram",[11193]="Seril Scourgebane",[11194]="Argent Defender",[11196]="Shatterspear Drummer",[11197]="Mindless Skeleton",[11198]="Broken Exile",[11199]="Crimson Cannon",[11200]="Summoned Skeleton",[11216]="Eva Sarkhoff",[11217]="Lucien Sarkhoff",[11218]="Kerlonian Evershade",[11219]="Liladris Moonriver",[11236]="Blood Parrot",[11256]="Manifestation of Water",[11257]="Scholomance Handler",[11258]="Frail Skeleton",[11259]="Nataka Longhorn",[11260]="Northshire Peasant",[11261]="Doctor Theolen Krastinov",[11262]="Onyxian Whelp",[11263]="Spectral Projection",[11276]="Azshara Sentinel",[11277]="Caer Darrow Citizen",[11278]="Magnus Frostwake",[11279]="Caer Darrow Guardsman",[11280]="Caer Darrow Cannoneer",[11281]="Caer Darrow Horseman",[11282]="Melia",[11283]="Sammy",[11284]="Dark Shade",[11285]="Rory",[11286]="Magistrate Marduke",[11287]="Baker Masterson",[11288]="Spectral Betrayer",[11289]="Spectral Defender",[11290]="Mossflayer Zombie",[11291]="Unliving Mossflayer",[11296]="Darrowshire Poltergeist",[11316]="Joseph Dirte",[11317]="Jinar'Zillen",[11318]="Ragefire Trogg",[11319]="Ragefire Shaman",[11320]="Earthborer",[11321]="Molten Elemental",[11322]="Searing Blade Cultist",[11323]="Searing Blade Enforcer",[11324]="Searing Blade Warlock",[11325]="Panda Cub",[11326]="Mini Diablo",[11327]="Zergling",[11328]="Eastvale Peasant",[11338]="Hakkari Shadowcaster",[11339]="Hakkari Shadow Hunter",[11340]="Hakkari Blood Priest",[11346]="Hakkari Oracle",[11347]="Zealot Lor'Khan",[11348]="Zealot Zath",[11350]="Gurubashi Axe Thrower",[11351]="Gurubashi Headhunter",[11352]="Gurubashi Berserker",[11353]="Gurubashi Blood Drinker",[11355]="Gurubashi Warrior",[11356]="Gurubashi Champion",[11357]="Son of Hakkar",[11359]="Soulflayer",[11360]="Zulian Cub",[11361]="Zulian Tiger",[11365]="Zulian Panther",[11368]="Bloodseeker Bat",[11370]="Razzashi Broodwidow",[11371]="Razzashi Serpent",[11372]="Razzashi Adder",[11373]="Razzashi Cobra",[11374]="Hooktooth Frenzy",[11378]="Foreman Thazz'ril",[11380]="Jin'do the Hexxer",[11382]="Bloodlord Mandokir",[11383]="High Priestess Hai'watna",[11387]="Sandfury Speaker",[11388]="Witherbark Speaker",[11389]="Bloodscalp Speaker",[11390]="Skullsplitter Speaker",[11391]="Vilebranch Speaker",[11397]="Nara Meideros",[11401]="Priestess Alathea",[11406]="High Priest Rohan",[11407]="Var'jun",[11438]="Bibbly F'utzbuckle",[11439]="Illusion of Jandice Barov",[11440]="Gordok Enforcer",[11441]="Gordok Brute",[11442]="Gordok Mauler",[11443]="Gordok Ogre-Mage",[11444]="Gordok Mage-Lord",[11445]="Gordok Captain",[11446]="Gordok Spirit",[11447]="Mushgog",[11448]="Gordok Warlock",[11450]="Gordok Reaver",[11451]="Wildspawn Satyr",[11452]="Wildspawn Rogue",[11453]="Wildspawn Trickster",[11454]="Wildspawn Betrayer",[11455]="Wildspawn Felsworn",[11456]="Wildspawn Shadowstalker",[11457]="Wildspawn Hellcaller",[11458]="Petrified Treant",[11459]="Ironbark Protector",[11460]="Alzzin's Minion",[11461]="Warpwood Guardian",[11462]="Warpwood Treant",[11464]="Warpwood Tangler",[11465]="Warpwood Stomper",[11466]="Highborne Summoner",[11467]="Tsu'zee",[11469]="Eldreth Seether",[11470]="Eldreth Sorcerer",[11471]="Eldreth Apparition",[11472]="Eldreth Spirit",[11473]="Eldreth Spectre",[11475]="Eldreth Phantasm",[11476]="Skeletal Highborne",[11477]="Rotting Highborne",[11480]="Arcane Aberration",[11483]="Mana Remnant",[11484]="Residual Monstrosity",[11486]="Prince Tortheldrin",[11487]="Magister Kalendris",[11488]="Illyanna Ravenoak",[11489]="Tendris Warpwood",[11490]="Zevrim Thornhoof",[11491]="Old Ironbark",[11492]="Alzzin the Wildshaper",[11496]="Immol'thar",[11497]="The Razza",[11498]="Skarr the Broken",[11499]="[UNUSED] Commander Gormaul",[11501]="King Gordok",[11502]="Ragnaros",[11516]="Timbermaw Warder",[11517]="Oggleflint",[11518]="Jergosh the Invoker",[11519]="Bazzalan",[11520]="Taragaman the Hungerer",[11521]="Kodo Apparition",[11536]="Quartermaster Miranda Breechlock",[11537]="TEST GEAR PALADIN",[11538]="TEST GEAR WARRIOR",[11539]="TEST GEAR HUNTER",[11540]="TEST GEAR MAGE",[11541]="TEST GEAR WARLOCK",[11542]="TEST GEAR DRUID",[11543]="TEST GEAR SHAMAN",[11544]="TEST GEAR PRIEST",[11545]="TEST GEAR ROGUE",[11546]="Jack Sterling",[11548]="Loh'atu",[11551]="Necrofiend",[11552]="Timbermaw Mystic",[11553]="Timbermaw Woodbender",[11554]="Grazle",[11555]="Gorn One Eye",[11556]="Salfa",[11557]="Meilosh",[11558]="Kernda",[11559]="Outcast Necromancer",[11560]="Magrami Spectre",[11561]="Undead Ravager",[11562]="Drysnap Crawler",[11563]="Drysnap Pincer",[11564]="Gizelton Caravan Kodo",[11576]="Whirlwind Ripper",[11577]="Whirlwind Stormwalker",[11578]="Whirlwind Shredder",[11582]="Scholomance Dark Summoner",[11583]="Nefarian",[11596]="Smeed Scrabblescrew",[11598]="Risen Guardian",[11600]="Irondeep Shaman",[11602]="Irondeep Skullthumper",[11603]="Whitewhisker Digger",[11604]="Whitewhisker Geomancer",[11605]="Whitewhisker Overseer",[11608]="Bardu Sharpeye",[11609]="Alexia Ironknife",[11610]="Kirsta Deepshadow",[11611]="Cavalier Durgen",[11613]="Huntsman Radley",[11614]="Bloodshot",[11615]="Mickey Levine",[11616]="Nathaniel Dumah",[11620]="Spectral Marauder",[11621]="Spectral Corpse",[11622]="Rattlegore",[11623]="Scourge Summoning Crystal",[11624]="Taiga Wisemane",[11625]="Cork Gizelton",[11626]="Rigger Gizelton",[11627]="Tamed Kodo",[11629]="Jessica Redpath",[11636]="Servant of Weldon Barov",[11637]="Servant of Alexi Barov",[11656]="Warsong Peon",[11657]="Morloch",[11658]="Molten Giant",[11659]="Molten Destroyer",[11661]="Flamewaker",[11662]="Flamewaker Priest",[11663]="Flamewaker Healer",[11664]="Flamewaker Elite",[11665]="Lava Annihilator",[11666]="Firewalker",[11667]="Flameguard",[11668]="Firelord",[11669]="Flame Imp",[11671]="Core Hound",[11672]="Core Rager",[11673]="Core Hound",[11675]="Snowblind Windcaller",[11677]="Taskmaster Snivvle",[11678]="Snowblind Ambusher",[11680]="Horde Scout",[11681]="Warsong Logger",[11682]="Warsong Grunt",[11683]="Warsong Shaman",[11684]="Goblin Deforester",[11685]="Maraudine Priest",[11686]="Ghostly Raider",[11687]="Ghostly Marauder",[11688]="Cursed Centaur",[11689]="Brown Kodo",[11690]="Gnarlpine Instigator",[11696]="Chal Fairwind",[11697]="Mannoroc Lasher",[11698]="Hive'Ashi Stinger",[11699]="Varian Wrynn",[11700]="Sarin Starlight",[11701]="Mor'vek",[11702]="Arin'sor",[11703]="Graw Cornerstone",[11704]="Kriss Goldenlight",[11705]="Rayan Dawnrisen",[11706]="Adon",[11707]="Joy Ar'nareth",[11708]="Coral Moongale",[11709]="Jareth Wildwoods",[11710]="Mirador",[11711]="Sentinel Aynasha",[11712]="Lilyn Darkriver",[11713]="Blackwood Tracker",[11714]="Marosh the Devious",[11715]="Talendria",[11716]="Celes Earthborne",[11717]="Bethan Bluewater",[11718]="Sar Browneye",[11720]="Loruk Foreststrider",[11721]="Hive'Ashi Worker",[11722]="Hive'Ashi Defender",[11723]="Hive'Ashi Sandstalker",[11724]="Hive'Ashi Swarmer",[11725]="Hive'Zora Waywatcher",[11726]="Hive'Zora Tunneler",[11727]="Hive'Zora Wasp",[11728]="Hive'Zora Reaver",[11729]="Hive'Zora Hive Sister",[11730]="Hive'Regal Ambusher",[11731]="Hive'Regal Burrower",[11732]="Hive'Regal Spitfire",[11733]="Hive'Regal Slavemaker",[11734]="Hive'Regal Hive Lord",[11735]="Stonelash Scorpid",[11736]="Stonelash Pincer",[11737]="Stonelash Flayer",[11738]="Sand Skitterer",[11739]="Rock Stalker",[11740]="Dredge Striker",[11741]="Dredge Crusher",[11744]="Dust Stormer",[11745]="Cyclone Warrior",[11746]="Desert Rumbler",[11747]="Desert Rager",[11748]="Samantha Swifthoof",[11749]="Feran Strongwind",[11750]="Ganoosh",[11751]="Rilan Howard",[11752]="Blaise Montgomery",[11753]="Gogo",[11754]="Meggi Peppinrocker",[11755]="Harlo Wigglesworth",[11756]="Quinn",[11757]="Umaron Stragarelm",[11758]="Andi Lynn",[11776]="Salome",[11777]="Shadowshard Rumbler",[11778]="Shadowshard Smasher",[11781]="Ambershard Crusher",[11782]="Ambershard Destroyer",[11783]="Theradrim Shardling",[11784]="Theradrim Guardian",[11785]="Ambereye Basilisk",[11786]="Ambereye Reaver",[11787]="Rock Borer",[11788]="Rock Worm",[11789]="Deep Borer",[11790]="Putridus Satyr",[11791]="Putridus Trickster",[11792]="Putridus Shadowstalker",[11793]="Celebrian Dryad",[11794]="Sister of Celebras",[11795]="Mylentha Riverbend",[11796]="Bessany Plainswind",[11797]="Moren Riverbend",[11798]="Bunthen Plainswind",[11799]="Tajarri",[11800]="Silva Fil'naveth",[11801]="Rabine Saturna",[11802]="Dendrite Starblaze",[11803]="Twilight Keeper Exeter",[11804]="Twilight Keeper Havunth",[11805]="Jarund Stoutstrider",[11806]="Sentinel Onaeya",[11807]="Tristane Shadowstone",[11808]="Grum Redbeard",[11810]="Howin Kindfeather",[11811]="Narain Soothfancy",[11812]="Claira Kindfeather",[11813]="Kerr Ironsight",[11814]="Kali Remik",[11815]="Voriya",[11816]="Una Ji'ro",[11817]="Krah'ranik",[11818]="Orik'ando",[11819]="Jory Zaga",[11820]="Locke Okarr",[11821]="Darn Talongrip",[11822]="Moonglade Warden",[11823]="Vark Battlescar",[11824]="Erik Felixe",[11825]="Paige Felixe",[11826]="Kristy Grant",[11827]="Kimberly Grant",[11828]="Kelly Grant",[11829]="Fahrak",[11830]="Hakkari Priest",[11831]="Hakkari Witch Doctor",[11832]="Keeper Remulos",[11833]="Rahauro",[11834]="Maur Grimtotem",[11835]="Theodore Griffs",[11836]="Captured Rabid Thistle Bear",[11837]="Wildpaw Shaman",[11838]="Wildpaw Mystic",[11839]="Wildpaw Brute",[11840]="Wildpaw Alpha",[11856]="Kaya Flathoof",[11857]="Makaba Flathoof",[11858]="Grundig Darkcloud",[11859]="Doomguard",[11860]="Maggran Earthbinder",[11861]="Mor'rogal",[11862]="Tsunaman",[11863]="Azore Aldamort",[11864]="Tammra Windfield",[11865]="Buliwyf Stonehand",[11866]="Ilyenia Moonfire",[11867]="Woo Ping",[11868]="Sayoc",[11869]="Ansekhwa",[11870]="Archibald",[11871]="Grinning Dog",[11872]="Myranda the Hag",[11873]="Spectral Attendant",[11874]="Masat T'andr",[11875]="Mortar Team Target Dummy",[11876]="Fel Spirit",[11877]="Roon Wildmane",[11878]="Nathanos Blightcaller",[11880]="Twilight Avenger",[11881]="Twilight Geolord",[11882]="Twilight Stonecaller",[11883]="Twilight Master",[11884]="Obi",[11885]="Blighthound",[11886]="Mercutio Filthgorger",[11887]="Crypt Robber",[11896]="Borelgore",[11897]="Duskwing",[11898]="Crusader Lord Valdelmar",[11899]="Shardi",[11900]="Brakkar",[11901]="Andruk",[11910]="Grimtotem Ruffian",[11911]="Grimtotem Mercenary",[11912]="Grimtotem Brute",[11913]="Grimtotem Sorcerer",[11914]="Gorehoof the Black",[11915]="Boulderslide Rock Keeper",[11916]="Imelda",[11917]="Boulderslide Geomancer",[11918]="Boulderslide Stonepounder",[11920]="Goggeroc",[11921]="Besseleth",[11936]="Artist Renfray",[11937]="Demon Portal Guardian",[11939]="Umber",[11940]="Merissa Stilwell",[11941]="Yori Crackhelm",[11942]="Orenthil Whisperwind",[11943]="Magga",[11944]="Vorn Skyseer",[11945]="Claire Willower",[11946]="Drek'Thar",[11947]="Captain Galvangar",[11948]="Vanndar Stormpike",[11949]="Captain Balinda Stonehearth",[11956]="Great Bear Spirit",[11957]="Great Cat Spirit",[11979]="Kim Bridenbecker",[11980]="Zuluhed the Whacked",[11981]="Flamegor",[11982]="Magmadar",[11983]="Firemaw",[11988]="Golemagg the Incinerator",[11994]="Rob Bridenbecker",[11996]="Ashley Bridenbecker",[11997]="Stormpike Herald",[11998]="Frostwolf Herald",[12017]="Broodlord Lashlayer",[12018]="Majordomo Executus",[12019]="Dargon",[12021]="Daeolyn Summerleaf",[12022]="Lorelae Wintersong",[12023]="Kharedon",[12024]="Meliri",[12025]="Malvor",[12026]="My'lanna",[12027]="Tukk",[12028]="Lah'Mawhani",[12029]="Narianna",[12030]="Malux",[12031]="Mai'Lahii",[12032]="Lui'Mala",[12033]="Wulan",[12034]="Koiter",[12036]="Grella Stonefist",[12037]="Ursol'lok",[12040]="Brannik Ironbelly",[12042]="Loganaar",[12043]="Kulwia",[12045]="Hae'Wilani",[12046]="Gor'marok the Ravager",[12047]="Stormpike Mountaineer",[12048]="Alliance Sentinel",[12050]="Stormpike Defender",[12051]="Frostwolf Legionnaire",[12052]="Frostwolf Warrior",[12053]="Frostwolf Guardian",[12056]="Baron Geddon",[12057]="Garr",[12076]="Magma Elemental",[12096]="Stormpike Quartermaster",[12097]="Frostwolf Quartermaster",[12098]="Sulfuron Harbinger",[12099]="Firesworn",[12100]="Lava Reaver",[12101]="Lava Surger",[12116]="Priestess of Elune",[12118]="Lucifron",[12119]="Flamewaker Protector",[12120]="Plagueland Termite",[12121]="Drakan",[12122]="Duros",[12123]="Reef Shark",[12124]="Great Shark",[12125]="Mammoth Shark",[12126]="Lord Tirion Fordring",[12127]="Stormpike Guardsman",[12128]="Crimson Elite",[12129]="Onyxian Warder",[12136]="Snurk Bucksquick",[12137]="Squibby Overspeck",[12138]="Lunaclaw",[12140]="Guardian of Elune",[12141]="Ice Totem",[12143]="Son of Flame",[12144]="Lunaclaw Spirit",[12148]="Riding Kodo (Teal)",[12149]="Gray Kodo",[12150]="Riding Kodo (Purple)",[12151]="Riding Kodo (Green)",[12152]="Voice of Elune",[12159]="Korrak the Bloodrager",[12160]="Shadowglen Sentinel",[12178]="Tortured Druid",[12179]="Tortured Sentinel",[12196]="Innkeeper Kaylisk",[12197]="Glordrum Steelbeard",[12198]="Martin Lindsey",[12199]="Shade of Ambermoon",[12201]="Princess Theradras",[12202]="Human Skull",[12203]="Landslide",[12204]="Spitelash Raider",[12205]="Spitelash Witch",[12206]="Primordial Behemoth",[12207]="Thessala Hydra",[12208]="Conquered Soul of the Blightcaller",[12216]="Poison Sprite",[12217]="Corruptor",[12218]="Vile Larva",[12219]="Barbed Lasher",[12220]="Constrictor Vine",[12221]="Noxious Slime",[12222]="Creeping Sludge",[12223]="Cavern Lurker",[12224]="Cavern Shambler",[12225]="Celebras the Cursed",[12236]="Lord Vyletongue",[12237]="Meshlok the Harvester",[12238]="Zaetar's Spirit",[12239]="Spirit of Gelk",[12240]="Spirit of Kolk",[12241]="Spirit of Magra",[12242]="Spirit of Maraudos",[12243]="Spirit of Veng",[12244]="Mark of Detonation (NW)",[12245]="Vendor-Tron 1000",[12246]="Super-Seller 680",[12247]="Scourge Structure",[12248]="Infiltrator Hameya",[12249]="Mark of Detonation (SW)",[12250]="Zaeldarr the Outcast",[12251]="Mark of Detonation (CLS)",[12252]="Mark of Detonation (CRS)",[12253]="Mark of Detonation (CSH)",[12254]="Mark of Detonation (NESH)",[12255]="Mark of Detonation (NE)",[12256]="Mark of Detonation (SE)",[12257]="Mechanical Yeti",[12258]="Razorlash",[12259]="Gehennas",[12261]="Infected Mossflayer",[12262]="Ziggurat Protector",[12263]="Slaughterhouse Protector",[12264]="Shazzrah",[12265]="Lava Spawn",[12277]="Melizza Brimbuzzle",[12296]="Sickly Gazelle",[12297]="Cured Gazelle",[12298]="Sickly Deer",[12299]="Cured Deer",[12319]="Burning Blade Toxicologist",[12320]="Burning Blade Crusher",[12321]="Stormscale Toxicologist",[12322]="Quel'Lithien Protector",[12336]="Brother Crowley",[12337]="Crimson Courier",[12338]="Shadowprey Guardian",[12339]="Demetria",[12340]="Drulzegar Skraghook",[12344]="Green Skeletal War Horse",[12346]="Emerald Riding Raptor",[12347]="Enraged Reef Crawler",[12348]="Ivory Raptor",[12349]="Turquoise Riding Raptor",[12350]="Violet Riding Raptor",[12351]="Dire Riding Wolf",[12352]="Scarlet Cavalier",[12353]="Timber Riding Wolf",[12354]="Brown Riding Kodo",[12355]="Gray Riding Kodo",[12358]="Riding Striped Frostsaber",[12359]="Riding Spotted Frostsaber",[12360]="Riding Striped Nightsaber",[12361]="Riding Nightsaber",[12362]="Riding Frostsaber",[12364]="Icy Blue Mechanostrider Mod A",[12366]="Unpainted Mechanostrider X",[12368]="White Mechanostrider Mod A",[12369]="Lord Kragaru",[12370]="Black Ram",[12371]="Frost Ram",[12374]="White Riding Ram Mount",[12377]="Wailing Spectre",[12378]="Damned Soul",[12379]="Unliving Caretaker",[12380]="Unliving Resident",[12381]="Ley Sprite",[12382]="Mana Sprite",[12383]="Nibbles",[12384]="Augustus the Touched",[12385]="Mortar Team Advanced Target Dummy",[12387]="Large Vile Slime",[12396]="Doomguard Commander",[12397]="Lord Kazzak",[12416]="Blackwing Legionnaire",[12418]="Gordok Hyena",[12419]="Lifelike Toad",[12420]="Blackwing Mage",[12422]="Death Talon Dragonspawn",[12423]="Guard Roberts",[12425]="Flint Shadowmore",[12426]="Masterwork Target Dummy",[12427]="Mountaineer Dolf",[12428]="Deathguard Kel",[12429]="Sentinel Shaya",[12430]="Grunt Kor'ja",[12431]="Gorefang",[12432]="Old Vicejaw",[12433]="Krethis the Shadowspinner",[12434]="Monster Generator (Blackwing)",[12435]="Razorgore the Untamed",[12457]="Blackwing Spellbinder",[12458]="Blackwing Taskmaster",[12459]="Blackwing Warlock",[12460]="Death Talon Wyrmguard",[12461]="Death Talon Overseer",[12463]="Death Talon Flamescale",[12464]="Death Talon Seether",[12465]="Death Talon Wyrmkin",[12467]="Death Talon Captain",[12468]="Death Talon Hatcher",[12473]="Arcanite Dragonling",[12474]="Emeraldon Boughguard",[12475]="Emeraldon Tree Warder",[12476]="Emeraldon Oracle",[12477]="Verdantine Boughguard",[12478]="Verdantine Oracle",[12479]="Verdantine Tree Warder",[12480]="Melris Malagan",[12481]="Justine Demalier",[12496]="Dreamtracker",[12497]="Dreamroarer",[12498]="Dreamstalker",[12557]="Grethok the Controller",[12576]="Grish Longrunner",[12577]="Jarrodenus",[12578]="Mishellena",[12579]="Bloodfury Ripper",[12580]="Reginald Windsor",[12581]="Mercutio",[12596]="Bibilfaz Featherwhistle",[12616]="Vhulgra",[12617]="Khaelyn Steelwing",[12636]="Georgia",[12656]="Thamarian",[12657]="Don Pompa",[12658]="Adam Lind",[12676]="Sharptalon",[12677]="Shadumbra",[12678]="Ursangous",[12696]="Senani Thunderheart",[12716]="Decedra Willham",[12717]="Muglash",[12718]="Gurda Ragescar",[12719]="Marukai",[12720]="Framnali",[12721]="Mitsuwa",[12722]="Vera Nightshade",[12723]="Har'alen",[12724]="Pixel",[12736]="Je'neu Sancrea",[12737]="Mastok Wrilehiss",[12738]="Nori Pridedrift",[12739]="Onyxia's Elite Guard",[12740]="Faustron",[12756]="Lady Onyxia",[12757]="Karang Amakkar",[12758]="Onyxia Trigger",[12759]="Tideress",[12776]="Hraug",[12777]="Captain Dirgehammer",[12778]="Lieutenant Rachel Vaccar",[12779]="Archmage Gaiman",[12780]="Sergeant Major Skyshadow",[12781]="Master Sergeant Biggins",[12782]="Captain O'Neal",[12783]="Lieutenant Karter",[12784]="Lieutenant Jackspring",[12785]="Sergeant Major Clate",[12786]="Guard Quine",[12787]="Guard Hammon",[12788]="Legionnaire Teena",[12789]="Blood Guard Hini'wana",[12790]="Advisor Willington",[12791]="Chieftain Earthbind",[12792]="Lady Palanseer",[12793]="Brave Stonehide",[12794]="Stone Guard Zarg",[12795]="First Sergeant Hola'mahi",[12796]="Raider Bork",[12797]="Grunt Korf",[12798]="Grunt Bek'rah",[12799]="Sergeant Ba'sha",[12800]="Chimaerok",[12801]="Arcane Chimaerok",[12802]="Chimaerok Devourer",[12803]="Lord Lakmaeran",[12805]="Officer Areyn",[12806]="Magmakin",[12807]="Greshka",[12816]="Xen'Zilla",[12818]="Ruul Snowhoof",[12836]="Wandering Protector",[12837]="Yama Snowhoof",[12856]="Ashenvale Outrunner",[12858]="Torek",[12859]="Splintertree Raider",[12860]="Duriel Moonfire",[12862]="Warsong Scout",[12863]="Warsong Runner",[12864]="Warsong Outrider",[12865]="Ambassador Malcin",[12866]="Myriam Moonsinger",[12867]="Kuray'bin",[12876]="Baron Aquanis",[12877]="Ertog Ragetusk",[12896]="Silverwing Sentinel",[12897]="Silverwing Warrior",[12898]="Phantim Illusion",[12899]="Axtroz",[12900]="Somnus",[12902]="Lorgus Jett",[12903]="Splintertree Guard",[12918]="Chief Murgut",[12919]="Nat Pagle",[12920]="Doctor Gregory Victor",[12921]="Enraged Foulweald",[12922]="Imp Minion",[12923]="Wounded Soldier",[12924]="Badly Injured Soldier",[12925]="Critically Injured Soldier",[12936]="Badly Injured Alliance Soldier",[12937]="Critically Injured Alliance Soldier",[12938]="Injured Alliance Soldier",[12939]="Doctor Gustaf VanHowzen",[12940]="Vorsha the Lasher",[12941]="Jase Farlane",[12942]="Leonard Porter",[12943]="Werg Thickblade",[12944]="Lokhtos Darkbargainer",[12956]="Zannok Hidepiercer",[12957]="Blimo Gadgetspring",[12958]="Gigget Zipcoil",[12959]="Nergal",[12960]="Christi Galvanis",[12961]="Kil'Hiwana",[12962]="Wik'Tar",[12976]="Kolkar Waylayer",[12977]="Kolkar Ambusher",[12996]="Mounted Ironforge Mountaineer",[12997]="Monty",[12998]="Dwarven Farmer",[12999]="World Invisible Trigger",[13000]="Gnome Engineer",[13016]="Deeprun Rat",[13017]="Enthralled Deeprun Rat",[13018]="Nipsy",[13019]="Burning Blade Seer",[13020]="Vaelastrasz the Corrupt",[13021]="Warpwood Crusher",[13022]="Whip Lasher",[13036]="Gordok Mastiff",[13076]="Dun Morogh Mountaineer",[13078]="Umi Thorson",[13079]="Keetar",[13080]="Irondeep Guard",[13081]="Irondeep Raider",[13082]="Milton Beats",[13084]="Bixi Wobblebonk",[13085]="Myrokos Silentform",[13086]="Aggi Rumblestomp",[13087]="Coldmine Invader",[13088]="Masha Swiftcut",[13089]="Coldmine Guard",[13096]="Coldmine Explorer",[13097]="Coldmine Surveyor",[13098]="Irondeep Surveyor",[13099]="Irondeep Explorer",[13116]="Alliance Spirit Guide",[13117]="Horde Spirit Guide",[13118]="Crimson Bodyguard",[13136]="Hive'Ashi Drone",[13137]="Lieutenant Rugba",[13138]="Lieutenant Spencer",[13139]="Commander Randolph",[13140]="Commander Dardosh",[13141]="Deeprot Stomper",[13142]="Deeprot Tangler",[13143]="Lieutenant Stronghoof",[13144]="Lieutenant Vol'talar",[13145]="Lieutenant Grummus",[13146]="Lieutenant Murp",[13147]="Lieutenant Lewis",[13148]="Flame of Ragnaros",[13152]="Commander Malgor",[13153]="Commander Mulfort",[13154]="Commander Louis Philips",[13157]="Makasgar",[13158]="Lieutenant Sanders",[13159]="James Clark",[13160]="Carrion Swarmer",[13161]="Aerie Gryphon",[13176]="Smith Regzar",[13177]="Vahgruk",[13178]="War Rider",[13179]="Wing Commander Guse",[13180]="Wing Commander Jeztor",[13181]="Wing Commander Mulverick",[13196]="Phase Lasher",[13197]="Fel Lash",[13216]="Gaelden Hammersmith",[13217]="Thanthaldis Snowgleam",[13218]="Grunnda Wolfheart",[13219]="Jorek Ironside",[13220]="Layo Starstrike",[13236]="Primalist Thurloga",[13256]="Lokholar the Ice Lord",[13257]="Murgot Deepforge",[13276]="Wildspawn Imp",[13277]="Dahne Pierce",[13278]="Duke Hydraxis",[13279]="Discordant Surge",[13280]="Hydrospawn",[13282]="Noxxion",[13283]="Lord Tony Romano",[13284]="Frostwolf Shaman",[13285]="Death Lash",[13296]="Lieutenant Largent",[13297]="Lieutenant Stouthandle",[13298]="Lieutenant Greywand",[13299]="Lieutenant Lonadin",[13300]="Lieutenant Mancuso",[13301]="Hive'Ashi Ambusher",[13316]="Coldmine Peon",[13317]="Coldmine Miner",[13318]="Commander Mortimer",[13319]="Commander Duffy",[13320]="Commander Karl Philips",[13321]="Small Frog",[13322]="Hydraxian Honor Guard",[13323]="Subterranean Diemetradon",[13324]="Seasoned Guardsman",[13325]="Seasoned Mountaineer",[13326]="Seasoned Defender",[13327]="Seasoned Sentinel",[13328]="Seasoned Guardian",[13329]="Seasoned Legionnaire",[13330]="Seasoned Warrior",[13331]="Veteran Defender",[13332]="Veteran Guardian",[13333]="Veteran Guardsman",[13334]="Veteran Legionnaire",[13335]="Veteran Mountaineer",[13336]="Veteran Sentinel",[13337]="Veteran Warrior",[13338]="Core Rat",[13358]="Stormpike Bowman",[13359]="Frostwolf Bowman",[13378]="Frostwolf Shredder Unit",[13396]="Irondeep Miner",[13397]="Irondeep Peon",[13416]="Stormpike Shredder Unit",[13417]="Sagorne Creststrider",[13418]="Kaymard Copperpinch",[13419]="Ivus the Forest Lord",[13420]="Penney Copperpinch",[13421]="Champion Guardian",[13422]="Champion Defender",[13424]="Champion Guardsman",[13425]="Champion Legionnaire",[13426]="Champion Mountaineer",[13427]="Champion Sentinel",[13429]="Nardstrum Copperpinch",[13430]="Jaycrue Copperpinch",[13431]="Whulwert Copperpinch",[13432]="Seersa Copperpinch",[13433]="Wulmort Jinglepocket",[13434]="Macey Jinglepocket",[13435]="Khole Jinglepocket",[13436]="Guchie Jinglepocket",[13437]="Wing Commander Ichman",[13438]="Wing Commander Slidore",[13439]="Wing Commander Vipore",[13440]="Frostwolf Wolf Rider",[13441]="Frostwolf Wolf Rider Commander",[13442]="Arch Druid Renferal",[13443]="Druid of the Grove",[13444]="Greatfather Winter",[13445]="Great-father Winter",[13446]="Field Marshal Teravaine",[13447]="Corporal Noreg Stormpike",[13448]="Sergeant Yazra Bloodsnarl",[13449]="Warmaster Garrick",[13456]="Noxxion's Spawn",[13476]="Zen'Balai",[13524]="Stormpike Commando",[13525]="Seasoned Commando",[13526]="Veteran Commando",[13527]="Champion Commando",[13529]="Seasoned Reaver",[13530]="Veteran Reaver",[13531]="Champion Reaver",[13533]="Spewed Larva",[13534]="Seasoned Coldmine Guard",[13535]="Veteran Coldmine Guard",[13536]="Champion Coldmine Guard",[13537]="Seasoned Coldmine Surveyor",[13538]="Veteran Coldmine Surveyor",[13539]="Champion Coldmine Surveyor",[13540]="Seasoned Irondeep Explorer",[13541]="Veteran Irondeep Explorer",[13542]="Champion Irondeep Explorer",[13543]="Seasoned Irondeep Raider",[13544]="Veteran Irondeep Raider",[13545]="Champion Irondeep Raider",[13546]="Seasoned Coldmine Explorer",[13547]="Veteran Coldmine Explorer",[13548]="Champion Coldmine Explorer",[13549]="Seasoned Coldmine Invader",[13550]="Veteran Coldmine Invader",[13551]="Champion Coldmine Invader",[13552]="Seasoned Irondeep Guard",[13553]="Veteran Irondeep Guard",[13554]="Champion Irondeep Guard",[13555]="Seasoned Irondeep Surveyor",[13556]="Veteran Irondeep Surveyor",[13557]="Champion Irondeep Surveyor",[13576]="Stormpike Ram Rider",[13577]="Stormpike Ram Rider Commander",[13596]="Rotgrip",[13597]="Frostwolf Explosives Expert",[13598]="Stormpike Explosives Expert",[13599]="Stolid Snapjaw",[13601]="Tinkerer Gizlock",[13602]="The Abominable Greench",[13616]="Frostwolf Stable Master",[13617]="Stormpike Stable Master",[13618]="Stabled Frostwolf",[13636]="Strange Snowman",[13656]="Willow",[13696]="Noxxious Scion",[13697]="Cavindra",[13698]="Keeper Marandis",[13699]="Selendra",[13716]="Celebras the Redeemed",[13717]="Centaur Pariah",[13718]="The Nameless Prophet",[13736]="Noxxious Essence",[13737]="Marandis' Sister",[13738]="Veng",[13739]="Maraudos",[13740]="Magra",[13741]="Gelk",[13742]="Kolk",[13743]="Corrupt Force of Nature",[13756]="PvP Graveyard Credit Marker",[13776]="Corporal Teeka Bloodsnarl",[13777]="Sergeant Durgen Stormpike",[13778]="PvP Tower Credit Marker",[13796]="PvP Mine Credit Marker",[13797]="Mountaineer Boombellow",[13798]="Jotek",[13816]="Prospector Stonehewer",[13817]="Voggah Deathgrip",[13836]="Burning Blade Nightmare",[13837]="Captured Stallion",[13839]="Royal Dreadguard",[13840]="Warmaster Laggrond",[13841]="Lieutenant Haggerdin",[13842]="Frostwolf Ambassador Rokhstrom",[13843]="Lieutenant Rotimer",[13876]="Mekgineer Trigger",[13896]="Scalebeard",[13916]="Dire Maul Crystal Totem",[13917]="Izzy Coppergrab",[13936]="Ravenholdt",[13959]="Alterac Yeti",[13976]="Tortured Drake",[13996]="Blackwing Technician",[14020]="Chromaggus",[14022]="Corrupted Red Whelp",[14023]="Corrupted Green Whelp",[14024]="Corrupted Blue Whelp",[14025]="Corrupted Bronze Whelp",[14026]="Trigger Guse",[14027]="Trigger Mulverick",[14028]="Trigger Jeztor",[14029]="Trigger Ichman",[14030]="Trigger Slidore",[14031]="Trigger Vipore",[14041]="Haggle",[14081]="Demon Portal",[14101]="Enraged Felguard",[14121]="Deeprun Diver",[14122]="Massive Geyser",[14123]="Steeljaw Snapper",[14143]="Ar'lia",[14162]="RaidMage",[14182]="Bounty Hunter Kolark",[14183]="Artilleryman Sheldonore",[14185]="Najak Hexxen",[14186]="Ravak Grimtotem",[14187]="Athramanis",[14188]="Dirk Swindle",[14221]="Gravis Slipknot",[14222]="Araga",[14223]="Cranky Benj",[14224]="7:XT",[14225]="Prince Kellen",[14226]="Kaskk",[14227]="Hissperak",[14228]="Giggler",[14229]="Accursed Slitherblade",[14230]="Burgle Eye",[14231]="Drogoth the Roamer",[14232]="Dart",[14233]="Ripscale",[14234]="Hayoc",[14235]="The Rot",[14236]="Lord Angler",[14237]="Oozeworm",[14241]="Ironbark the Redeemed",[14242]="[UNUSED] Sulhasa",[14261]="Blue Drakonid",[14262]="Green Drakonid",[14263]="Bronze Drakonid",[14264]="Red Drakonid",[14265]="Black Drakonid",[14266]="Shanda the Spinner",[14267]="Emogg the Crusher",[14268]="Lord Condar",[14269]="Seeker Aqualon",[14270]="Squiddic",[14271]="Ribchaser",[14272]="Snarlflare",[14273]="Boulderheart",[14275]="Tamra Stormpike",[14276]="Scargil",[14277]="Lady Zephris",[14278]="Ro'Bark",[14279]="Creepthess",[14280]="Big Samras",[14281]="Jimmy the Bleeder",[14282]="Frostwolf Bloodhound",[14283]="Stormpike Owl",[14284]="Stormpike Battleguard",[14285]="Frostwolf Battleguard",[14301]="Brinna Valanaar",[14302]="Chromatic Drakonid",[14303]="Petrified Guardian",[14304]="Kor'kron Elite",[14305]="Human Orphan",[14306]="Eskhandar",[14307]="Black Drakonid Spawner",[14308]="Ferra",[14309]="Red Drakonid Spawner",[14310]="Green Drakonid Spawner",[14311]="Bronze Drakonid Spawner",[14312]="Blue Drakonid Spawner",[14321]="Guard Fengus",[14322]="Stomper Kreeg",[14323]="Guard Slip'kik",[14324]="Cho'Rush the Observer",[14325]="Captain Kromcrush",[14326]="Guard Mol'dar",[14327]="Lethtendris",[14329]="Black War Wolf",[14330]="Black War Raptor",[14331]="Red Skeletal Warhorse",[14332]="Black War Steed",[14333]="Black War Kodo",[14334]="Black Battlestrider",[14335]="Black War Ram",[14336]="Black War Tiger",[14337]="Field Repair Bot 74A",[14338]="Knot Thimblejack",[14339]="Death Howl",[14340]="Alshirr Banebreath",[14342]="Ragepaw",[14343]="Olm the Wise",[14344]="Mongress",[14345]="The Ongar",[14347]="Highlord Demitrian",[14348]="Earthcaller Franzahl",[14349]="Pimgib",[14350]="Hydroling",[14351]="Gordok Bushwacker",[14353]="Mizzle the Crafty",[14354]="Pusillin",[14355]="Azj'Tordin",[14356]="Sawfin Frenzy",[14357]="Lake Thresher",[14358]="Shen'dralar Ancient",[14361]="Shen'dralar Wisp",[14362]="Thornling",[14363]="Thief Catcher Shadowdelve",[14364]="Shen'dralar Spirit",[14365]="Thief Catcher Farmountain",[14366]="Warpwood Spores",[14367]="Thief Catcher Thunderbrew",[14368]="Lorekeeper Lydros",[14369]="Shen'dralar Zealot",[14370]="Cadaverous Worm",[14371]="Shen'dralar Provisioner",[14372]="Winterfall Ambusher",[14373]="Sage Korolusk",[14374]="Scholar Runethorn",[14375]="Scout Stronghand",[14376]="Scout Manslayer",[14377]="Scout Tharr",[14378]="Huntress Skymane",[14379]="Huntress Ravenoak",[14380]="Huntress Leafrunner",[14381]="Lorekeeper Javon",[14382]="Lorekeeper Mykos",[14383]="Lorekeeper Kildrath",[14385]="Doomguard Minion",[14386]="Wandering Eye of Kilrogg",[14387]="Lothos Riftwaker",[14388]="Rogue Black Drake",[14389]="Netherwalker",[14390]="Expeditionary Mountaineer",[14392]="Overlord Runthak",[14393]="Expeditionary Priest",[14394]="Major Mattingly",[14395]="Griniblix the Spectator",[14396]="Eye of Immol'thar",[14397]="Mana Burst",[14398]="Eldreth Darter",[14399]="Arcane Torrent",[14400]="Arcane Feedback",[14401]="Master Elemental Shaper Krixix",[14402]="Seeker Cromwell",[14403]="Seeker Nahr",[14404]="Seeker Thompson",[14421]="Brown Prairie Dog",[14423]="Officer Jaxon",[14424]="Mirelow",[14425]="Gnawbone",[14426]="Harb Foulmountain",[14427]="Gibblesnik",[14428]="Uruson",[14429]="Grimmaw",[14430]="Duskstalker",[14431]="Fury Shelda",[14432]="Threggil",[14433]="Sludginn",[14434]="Alarm-o-Bot",[14435]="Prince Thunderaan",[14436]="Mor'zul Bloodbringer",[14437]="Gorzeeki Wildeyes",[14438]="Officer Pomeroy",[14439]="Officer Brady",[14440]="Hunter Sagewind",[14441]="Hunter Ragetotem",[14442]="Hunter Thunderhorn",[14443]="Doomguard Tap Trigger",[14444]="Orcish Orphan",[14445]="Lord Captain Wyrmak",[14446]="Fingat",[14447]="Gilmorian",[14448]="Molt Thorn",[14449]="Blackwing Orb Trigger",[14450]="Orphan Matron Nightingale",[14451]="Orphan Matron Battlewail",[14452]="Enslaved Doomguard Commander",[14453]="Orb of Domination",[14454]="The Windreaver",[14455]="Whirling Invader",[14456]="Blackwing Guardsman",[14457]="Princess Tempestria",[14458]="Watery Invader",[14459]="Nefarian's Troops",[14460]="Blazing Invader",[14461]="Baron Charr",[14462]="Thundering Invader",[14463]="Daio the Decrepit",[14464]="Avalanchion",[14465]="Alliance Battle Standard",[14466]="Horde Battle Standard",[14467]="Kroshius",[14469]="Niby the Almighty",[14470]="Impsy",[14471]="Setis",[14472]="Gretheer",[14473]="Lapress",[14474]="Zora",[14475]="Rex Ashil",[14476]="Krellack",[14477]="Grubthor",[14478]="Huricanian",[14479]="Twilight Lord Everun",[14480]="Alowicious Czervik",[14481]="Emmithue Smails",[14482]="Xorothian Imp",[14483]="Dread Guard",[14484]="Injured Peasant",[14485]="Plagued Peasant",[14486]="Scourge Footsoldier",[14487]="Gluggle",[14488]="Roloch",[14489]="Scourge Archer",[14490]="Rippa",[14491]="Kurmokk",[14492]="Verifonix",[14494]="Eris Havenfire",[14495]="Invisible Trigger One",[14496]="Stormwind Orphan",[14497]="Shellene",[14498]="Tosamina",[14499]="Horde Orphan",[14500]="J'eevee",[14502]="Xorothian Dreadsteed",[14503]="The Cleaner",[14504]="Dreadsteed Spirit",[14505]="Dreadsteed",[14506]="Lord Hel'nurath",[14507]="High Priest Venoxis",[14508]="Short John Mithril",[14509]="High Priest Thekal",[14510]="High Priestess Mar'li",[14511]="Shadowed Spirit",[14512]="Corrupted Spirit",[14513]="Malicious Spirit",[14514]="Banal Spirit",[14515]="High Priestess Arlokk",[14516]="Death Knight Darkreaver",[14517]="High Priestess Jeklik",[14518]="Aspect of Banality",[14519]="Aspect of Corruption",[14520]="Aspect of Malice",[14521]="Aspect of Shadow",[14522]="Ur'dan",[14523]="Ulathek",[14524]="Vartrus the Ancient",[14525]="Stoma the Ancient",[14526]="Hastat the Ancient",[14527]="Simone the Inconspicuous",[14528]="Precious",[14529]="Franklin the Friendly",[14530]="Solenor the Slayer",[14531]="Artorius the Amiable",[14532]="Razzashi Venombrood",[14533]="Simone the Seductress",[14534]="Klinfran the Crazed",[14535]="Artorius the Doombringer",[14536]="Nelson the Nice",[14538]="Precious the Devourer",[14539]="Swift Timber Wolf",[14540]="Swift Brown Wolf",[14541]="Swift Gray Wolf",[14542]="Great White Kodo",[14543]="Swift Olive Raptor",[14544]="Swift Orange Raptor",[14545]="Swift Blue Raptor",[14546]="Swift Brown Ram",[14547]="Swift White Ram",[14548]="Swift Gray Ram",[14549]="Great Brown Kodo",[14550]="Great Gray Kodo",[14551]="Swift Yellow Mechanostrider",[14552]="Swift White Mechanostrider",[14553]="Swift Green Mechanostrider",[14555]="Swift Mistsaber",[14556]="Swift Frostsaber",[14557]="Swift Dawnsaber",[14558]="Purple Skeletal Warhorse",[14559]="Swift Palomino",[14560]="Swift White Steed",[14561]="Swift Brown Steed",[14563]="Swift Red Mechanostrider",[14564]="Terrordale Spirit",[14565]="Charger",[14566]="Ancient Equine Spirit",[14567]="Derotain Mudsipper",[14568]="Darkreaver's Fallen Charger",[14581]="Sergeant Thunderhorn",[14601]="Ebonroc",[14602]="Swift Stormsaber",[14603]="Zapped Shore Strider",[14604]="Zapped Land Walker",[14605]="Bone Construct",[14621]="Overseer Maltorius",[14622]="Thorium Brotherhood Lookout",[14623]="Warsong Gulch Battlemaster",[14624]="Master Smith Burninate",[14625]="Overseer Oilfist",[14626]="Taskmaster Scrange",[14627]="Hansel Heavyhands",[14628]="Evonice Sootsmoker",[14629]="Loggerhead Snapjaw",[14630]="Leatherback Snapjaw",[14631]="Olive Snapjaw",[14632]="Hawksbill Snapjaw",[14633]="Albino Snapjaw",[14634]="Lookout Captain Lolo Longstriker",[14635]="Sleepy Dark Iron Worker",[14636]="Chambermaid Pillaclencher",[14637]="Zorbin Fandazzle",[14638]="Zapped Wave Strider",[14639]="Zapped Deep Strider",[14640]="Zapped Cliff Giant",[14645]="Warsong Gulch Herald",[14646]="Stratholme Trigger",[14661]="Stinglasher",[14662]="Corrupted Fire Nova Totem V",[14663]="Corrupted Stoneskin Totem VI",[14664]="Corrupted Healing Stream Totem V",[14666]="Corrupted Windfury Totem III",[14667]="Corrupted Totem",[14668]="Corrupted Infernal",[14682]="Sever",[14684]="Balzaphon",[14686]="Lady Falther'ess",[14688]="Prince Sandoval",[14690]="Revanchion",[14693]="Scorn",[14695]="Lord Blackwood",[14697]="Lumbering Horror",[14715]="Silverwing Elite",[14717]="Horde Elite",[14718]="Horde Laborer",[14720]="High Overlord Saurfang",[14721]="Field Marshal Afrasiabi",[14722]="Clavicus Knavingham",[14723]="Mistina Steelshield",[14724]="Bubulo Acerbus",[14725]="Raedon Duskstriker",[14726]="Rashona Straglash",[14727]="Vehena",[14728]="Rumstag Proudstrider",[14729]="Ralston Farnsley",[14730]="Revantusk Watcher",[14731]="Lard",[14732]="PvP CTF Credit Marker",[14733]="Sentinel Farsong",[14734]="Revantusk Drummer",[14736]="Primal Torntusk",[14737]="Smith Slagtree",[14738]="Otho Moji'ko",[14739]="Mystic Yayo'jin",[14740]="Katoom the Angler",[14741]="Huntsman Markhor",[14742]="Zap Farflinger",[14743]="Jhordy Lapforge",[14744]="Frostwolf Howler",[14745]="Stormpike Battle Charger",[14748]="Vilebranch Kidnapper",[14750]="Gurubashi Bat Rider",[14751]="Frostwolf Battle Standard",[14752]="Stormpike Battle Standard",[14753]="Illiyana Moonblaze",[14754]="Kelm Hargunth",[14755]="Tiny Green Dragon",[14756]="Tiny Red Dragon",[14757]="Elder Torntusk",[14758]="Zul'Gurub Trigger",[14761]="Creeping Doom",[14762]="Dun Baldar North Marshal",[14763]="Dun Baldar South Marshal",[14764]="Icewing Marshal",[14765]="Stonehearth Marshal",[14766]="Iceblood Marshal",[14767]="Tower Point Marshal",[14768]="East Frostwolf Marshal",[14769]="West Frostwolf Marshal",[14770]="Dun Baldar North Warmaster",[14771]="Dun Baldar South Warmaster",[14772]="East Frostwolf Warmaster",[14773]="Iceblood Warmaster",[14774]="Icewing Warmaster",[14775]="Stonehearth Warmaster",[14776]="Tower Point Warmaster",[14777]="West Frostwolf Warmaster",[14781]="Captain Shatterskull",[14821]="Razzashi Raptor",[14822]="Sayge",[14823]="Silas Darkmoon",[14825]="Withered Mistress",[14826]="Sacrificed Troll",[14827]="Burth",[14828]="Gelvas Grimegate",[14829]="Yebb Neblegear",[14830]="Unkillable Test Dummy 60 Warrior",[14832]="Kerri Hicks",[14833]="Chronos",[14834]="Hakkar",[14841]="Rinling",[14842]="Melnan Darkstone",[14843]="Kruban Darkblade",[14844]="Sylannia",[14845]="Stamp Thunderhorn",[14846]="Lhara",[14847]="Professor Thaddeus Paleo",[14848]="Herald",[14849]="Darkmoon Carnie",[14850]="Gruk",[14857]="Erk",[14859]="Guard Taruc",[14860]="Flik",[14861]="Blood Steward of Kirtonos",[14862]="Emissary Roman'khan",[14864]="Khaz Modan Ram",[14865]="Felinni",[14866]="Flik's Frog",[14867]="Jubjub",[14868]="Hornsley",[14869]="Pygmy Cockatrice",[14871]="Morja",[14872]="Trok",[14873]="Okla",[14874]="Karu",[14875]="Molthor",[14876]="Zandalar Headshrinker",[14878]="Jubling",[14879]="Arathi Basin Battlemaster",[14880]="Razzashi Skitterer",[14881]="Spider",[14882]="Atal'ai Mistress",[14883]="Voodoo Slave",[14884]="Parasitic Serpent",[14885]="Jonathan LeCraft",[14887]="Ysondre",[14888]="Lethon",[14889]="Emeriss",[14890]="Taerar",[14892]="Fang",[14893]="Guard Kurall",[14894]="Swarm of bees",[14901]="Peon",[14902]="Jin'rokh the Breaker",[14903]="Al'tabim the All-Seeing",[14904]="Maywiki of Zuldazar",[14905]="Falthir the Sightless",[14908]="Mogg",[14909]="Pooka",[14910]="Exzhal",[14911]="Zandalar Enforcer",[14912]="Captured Hakkari Zealot",[14921]="Rin'wosho the Trader",[14942]="Kartra Bloodsnarl",[14943]="Guse's War Rider",[14944]="Jeztor's War Rider",[14945]="Mulverick's War Rider",[14946]="Slidore's Gryphon",[14947]="Ichman's Gryphon",[14948]="Vipore's Gryphon",[14961]="Mirvyna Jinglepocket",[14962]="Dillord Copperpinch",[14963]="Gapp Jinglepocket",[14964]="Hecht Copperpinch",[14965]="Frenzied Bloodseeker Bat",[14981]="Elfarran",[14982]="Lylandris",[14983]="Field Marshal Oslight",[14984]="Sergeant Maclear",[14986]="Shade of Jin'do",[14987]="Powerful Healing Ward",[14988]="Ohgan",[14989]="Poisonous Cloud",[14990]="Defilers Envoy",[14991]="League of Arathor Emissary",[14994]="Zandalarian Event Generator",[15006]="Deze Snowbane",[15007]="Sir Malory Wheeler",[15008]="Lady Hoteshem",[15009]="Voodoo Spirit",[15010]="Jungle Toad",[15011]="Wagner Hammerstrike",[15012]="Javnir Nashak",[15021]="Deathmaster Dwire",[15022]="Deathstalker Mortis",[15041]="Spawn of Mar'li",[15042]="Zanza the Restless",[15043]="Zulian Crocolisk",[15045]="Arathi Farmer",[15046]="Forsaken Farmer",[15047]="Gurubashi",[15061]="Spirit of Jin'do",[15062]="Arathi Lumberjack",[15063]="Arathi Blacksmith",[15064]="Forsaken Blacksmith",[15065]="Lady",[15066]="Cleo",[15067]="Zulian Stalker",[15068]="Zulian Guardian",[15069]="Heart of Hakkar",[15070]="Vinchaxa",[15071]="Underfoot",[15072]="Spike",[15073]="Pat's Hellfire Guy",[15074]="Arathi Miner",[15075]="Forsaken Miner",[15076]="Zandalarian Emissary",[15077]="Riggle Bassbait",[15078]="Jang",[15079]="Fishbot 5000",[15080]="Servant of the Hand",[15082]="Gri'lek",[15083]="Hazza'rah",[15084]="Renataki",[15085]="Wushoolay",[15086]="Arathi Stablehand",[15087]="Forsaken Stablehand",[15088]="Booty Bay Elite",[15089]="Forsaken Lumberjack",[15090]="Swift Razzashi Raptor",[15091]="Zul'Gurub Panther Trigger",[15101]="Zulian Prowler",[15102]="Silverwing Emissary",[15103]="Stormpike Emissary",[15104]="Swift Zulian Tiger",[15105]="Warsong Envoy",[15106]="Frostwolf Envoy",[15107]="Arathi Horse",[15108]="Forsaken Horse",[15111]="Mad Servant",[15112]="Brain Wash Totem",[15113]="Honored Hero",[15114]="Gahz'ranka",[15115]="Honored Ancestor",[15116]="Grinkle",[15117]="Chained Spirit",[15119]="Barrus",[15122]="Gahz'ranka Dead",[15124]="Targot Jinglepocket",[15125]="Kosco Copperpinch",[15126]="Rutherford Twing",[15127]="Samuel Hawke",[15128]="Defiler Elite",[15130]="League of Arathor Elite",[15131]="Qeeju",[15136]="Hammerfall Elite",[15137]="Menethil Elite",[15138]="Silverpine Elite",[15140]="Pat's Splash Guy",[15141]="Portal of Madness",[15146]="Mad Voidwalker",[15162]="Scarlet Inquisitor",[15163]="Nightmare Illusion",[15164]="Mulgore Trigger",[15165]="Haughty Modiste",[15168]="Vile Scarab",[15169]="Ralo'shan the Eternal Watcher",[15170]="Rutgar Glyphshaper",[15171]="Frankal Stonebridge",[15172]="Glibb",[15174]="Calandrath",[15175]="Khur Hornstriker",[15176]="Vargus",[15177]="Cloud Skydancer",[15178]="Runk Windtamer",[15179]="Mishta",[15180]="Baristolth of the Shifting Sands",[15181]="Commander Mar'alith",[15182]="Vish Kozus",[15183]="Geologist Larksbane",[15184]="Cenarion Hold Infantry",[15185]="Brood of Nozdormu",[15186]="Murky",[15187]="Cenarion Emissary Jademoon",[15188]="Cenarion Emissary Blackhoof",[15189]="Beetix Ficklespragg",[15190]="Noggle Ficklespragg",[15191]="Windcaller Proudhorn",[15192]="Anachronos",[15193]="The Banshee Queen",[15194]="Hermit Ortell",[15195]="Wickerman Guardian",[15196]="Deathclasp",[15197]="Darkcaller Yanka",[15198]="Blackwing",[15199]="Sergeant Hartman",[15200]="Twilight Keeper Mayna",[15201]="Twilight Flamereaver",[15202]="Vyral the Vile",[15203]="Prince Skaldrenox",[15204]="High Marshal Whirlaxis",[15205]="Baron Kazum",[15206]="The Duke of Cynders",[15207]="The Duke of Fathoms",[15208]="The Duke of Shards",[15209]="Crimson Templar",[15211]="Azure Templar",[15212]="Hoary Templar",[15213]="Twilight Overlord",[15214]="Invisible Stalker",[15215]="Mistress Natalia Mar'alith",[15218]="Darkmoon Faire Cannon",[15220]="The Duke of Zephyrs",[15221]="Frankal Invisible Trigger",[15222]="Rutgar Invisible Trigger",[15224]="Dream Fog",[15229]="Vekniss Soldier",[15230]="Vekniss Warrior",[15233]="Vekniss Guardian",[15235]="Vekniss Stinger",[15236]="Vekniss Wasp",[15240]="Vekniss Hive Crawler",[15241]="Gryphon Rider Guard",[15242]="Bat Rider Guard",[15246]="Qiraji Mindslayer",[15247]="Qiraji Brainwasher",[15249]="Qiraji Lasher",[15250]="Qiraji Slayer",[15252]="Qiraji Champion",[15260]="Demented Druid Spirit",[15261]="Spirit Shade",[15262]="Obsidian Eradicator",[15263]="The Prophet Skeram",[15264]="Anubisath Sentinel",[15270]="Huum Wildmane",[15271]="Tender",[15273]="Arcane Wraith",[15274]="Mana Wyrm",[15275]="Emperor Vek'nilash",[15276]="Emperor Vek'lor",[15277]="Anubisath Defender",[15278]="Magistrix Erona",[15279]="Julia Sunstriker",[15280]="Jesthenis Sunstriker",[15281]="Lanthan Perilon",[15282]="Aurel Goldleaf",[15283]="Summoner Teli'Larien",[15284]="Matron Arena",[15285]="Pathstalker Kariel",[15286]="Xil'xix",[15287]="Shara Sunwing",[15288]="Aluntir",[15289]="Raelis Dawnstar",[15290]="Arakis",[15291]="Jainthess Thelryn",[15292]="Faraden Thelryn",[15293]="Aendel Windspear",[15294]="Feral Tender",[15295]="Well Watcher Solanian",[15296]="Arcanist Ithanas",[15297]="Arcanist Helion",[15298]="Tainted Arcane Wraith",[15299]="Viscidus",[15300]="Vekniss Drone",[15301]="Outrunner Alarion",[15302]="Shade of Taerar",[15303]="Maxima Blastenheimer",[15304]="Ancient Mana Spring Totem",[15305]="Lord Skwol",[15306]="Bor Wildmane",[15307]="Earthen Templar",[15308]="Twilight Prophet",[15309]="Spoops",[15310]="Jesper",[15311]="Anubisath Warder",[15312]="Obsidian Nullifier",[15314]="Moonkin (Druid - Tauren)",[15315]="Mylini Frostmoon",[15316]="Qiraji Scarab",[15317]="Qiraji Scorpion",[15318]="Hive'Zara Drone",[15319]="Hive'Zara Collector",[15320]="Hive'Zara Soldier",[15323]="Hive'Zara Sandstalker",[15324]="Qiraji Gladiator",[15325]="Hive'Zara Wasp",[15327]="Hive'Zara Stinger",[15328]="Steam Tank",[15333]="Silicate Feeder",[15334]="Giant Eye Tentacle",[15335]="Flesh Hunter",[15336]="Hive'Zara Tail Lasher",[15338]="Obsidian Destroyer",[15339]="Ossirian the Unscarred",[15340]="Moam",[15341]="General Rajaxx",[15343]="Qiraji Swarmguard",[15344]="Swarmguard Needler",[15348]="Kurinnaxx",[15350]="Horde Warbringer",[15351]="Alliance Brigadier General",[15352]="Greater Earth Elemental",[15353]="Katrina Shimmerstar",[15354]="Rachelle Gothena",[15355]="Anubisath Guardian",[15356]="Blue Baby Murloc",[15357]="Purple Baby Murloc",[15358]="Lurky",[15359]="Pink Baby Murloc",[15360]="Green Baby Murloc",[15361]="Murki",[15362]="Malfurion Stormrage",[15363]="Totem of Spirits",[15366]="Springpaw Cub",[15367]="Felendren the Banished",[15368]="Tonk Mine",[15369]="Ayamiss the Hunter",[15370]="Buru the Gorger",[15371]="Sunstrider Guardian",[15372]="Springpaw Lynx",[15378]="Merithra of the Dream",[15379]="Caelestrasz",[15380]="Arygos",[15381]="Anachronos the Ancient",[15382]="Fandral Staghelm",[15383]="Sergeant Stonebrow",[15384]="OLDWorld Trigger (DO NOT DELETE)",[15385]="Colonel Zerran",[15386]="Major Yeggeth",[15387]="Qiraji Warrior",[15388]="Major Pakkon",[15389]="Captain Drenn",[15390]="Captain Xurrem",[15391]="Captain Qeez",[15392]="Captain Tuubid",[15393]="[UNUSED] Ruins Qiraji Gladiator Named 7",[15395]="Nafien",[15397]="Marniel Amberlight",[15398]="Larianna Riverwind",[15399]="Lieutenant Dawnrunner",[15400]="Arathel Sunforge",[15401]="Ley-Keeper Velania",[15402]="Apprentice Mirveda",[15403]="Aeldon Sunbrand",[15404]="Velendris Whitemorn",[15405]="Ley-Keeper Caidanis",[15406]="Ven'jashi",[15407]="Chieftain Zul'Marosh",[15408]="Spearcrafter Otembe",[15409]="Old Whitebark",[15414]="Qiraji Wasp",[15415]="Southshore Stink Bomb Counter",[15416]="Ranger Jaela",[15417]="Velan Brightoak",[15418]="Magister Jaronis",[15419]="Kania",[15420]="Prospector Anvilward",[15421]="Qiraji Drone",[15422]="Qiraji Tank",[15423]="Kaldorei Infantry",[15424]="Anubisath Conqueror",[15426]="Ahn'Qiraj Trigger",[15428]="Sand Vortex",[15429]="Disgusting Oozeling",[15430]="Earth Elemental Totem",[15431]="Corporal Carnes",[15432]="Dame Twinbraid",[15433]="Innkeeper Delaniel",[15434]="Private Draxlegauge",[15437]="Master Nightsong",[15438]="Greater Fire Elemental",[15439]="Fire Elemental Totem",[15440]="Captain Blackanvil",[15441]="Ironforge Brigade Rifleman",[15442]="Ironforge Brigade Footman",[15443]="Janela Stouthammer",[15444]="Arcanist Nozzlespring",[15445]="Sergeant Major Germaine",[15446]="Bonnie Stoneflayer",[15447]="Wrath of Air Totem",[15448]="Private Porter",[15449]="Hive'Zora Abomination",[15450]="Marta Finespindle",[15451]="Sentinel Silversky",[15452]="Nurse Stonefield",[15453]="Keeper Moonshade",[15454]="Anachronos Quest Trigger Invisible",[15455]="Slicky Gastronome",[15456]="Sarah Sadwhistle",[15457]="Huntress Swiftriver",[15458]="Commander Stronghammer",[15459]="Miner Cromwell",[15460]="Grunt Maug",[15461]="Shrieker Scarab",[15462]="Spitting Scarab",[15463]="Grace of Air Totem III",[15464]="Strength of Earth Totem V",[15466]="Minion of Omen",[15467]="Omen",[15468]="Sunstrider Mana Tap Counter",[15469]="Senior Sergeant T'kelah",[15470]="Stoneskin Totem VII",[15471]="Lieutenant General Andorov",[15473]="Kaldorei Elite",[15474]="Stoneskin Totem VIII",[15475]="Beetle",[15476]="Scorpion",[15477]="Herbalist Proudfeather",[15478]="Stoneclaw Totem VII",[15479]="Strength of Earth Totem VI",[15480]="Searing Totem VII",[15481]="Spirit of Azuregos",[15482]="Fire Nova Totem VI",[15484]="Magma Totem V",[15485]="Flametongue Totem V",[15486]="Frost Resistance Totem IV",[15487]="Fire Resistance Totem IV",[15488]="Healing Stream Totem VI",[15489]="Mana Spring Totem V",[15490]="Nature Resistance Totem IV",[15491]="Eranikus Tyrant of the Dream",[15492]="Windwall Totem IV",[15493]="Marsilla Dawnstar",[15494]="Yasmine Teli'Larien",[15495]="Nighthaven Defender",[15496]="Windfury Totem IV",[15497]="Windfury Totem V",[15498]="Windcaller Yessendra",[15499]="Warden Haro",[15500]="Keyl Swiftclaw",[15501]="Aleinia",[15502]="Andorgos",[15503]="Kandrostrasz",[15504]="Vethsera",[15505]="Canal Frenzy",[15508]="Batrider Pele'keiki",[15509]="Princess Huhuran",[15510]="Fankriss the Unyielding",[15511]="Lord Kri",[15512]="Apothecary Jezel",[15513]="Ranger Sallina",[15514]="Buru Egg",[15515]="Skinner Jamani",[15516]="Battleguard Sartura",[15517]="Ouro",[15520]="O'Reily",[15521]="Hive'Zara Hatchling",[15522]="Sergeant Umala",[15524]="Temporary Reindeer",[15525]="Doctor Serratus",[15526]="Meridith the Mermaiden",[15527]="Mana Fiend",[15528]="Healer Longrunner",[15529]="Lady Callow",[15532]="Stoneguard Clayhoof",[15533]="Bloodguard Rawtar",[15534]="Fisherman Lin'do",[15535]="Chief Sharpclaw",[15537]="Anubisath Warrior",[15538]="Anubisath Swarmguard",[15539]="General Zog",[15540]="Windcaller Kaldon",[15541]="Twilight Marauder Morna",[15542]="Twilight Marauder",[15543]="Princess Yauj",[15544]="Vem",[15545]="Cenarion Outrider",[15546]="Hive'Zara Swarmer",[15547]="Spectral Charger",[15548]="Spectral Stallion",[15549]="Elder Morndeep",[15550]="Attumen the Huntsman",[15551]="Spectral Stable Hand",[15552]="Doctor Weavil",[15553]="Doctor Weavil's Flying Machine",[15554]="Number Two",[15555]="Hive'Zara Larva",[15556]="Elder Splitrock",[15557]="Elder Rumblerock",[15558]="Elder Silvervein",[15559]="Elder Highpeak",[15560]="Elder Stonefort",[15561]="Elder Obsidian",[15562]="Elder Hammershout",[15563]="Elder Bellowrage",[15564]="Elder Darkcore",[15565]="Elder Stormbrow",[15566]="Elder Snowcrown",[15567]="Elder Ironband",[15568]="Elder Graveborn",[15569]="Elder Goldwell",[15570]="Elder Primestone",[15571]="Maws",[15572]="Elder Runetotem",[15573]="Elder Ragetotem",[15574]="Elder Stonespire",[15575]="Elder Bloodhoof",[15576]="Elder Winterhoof",[15577]="Elder Skychaser",[15578]="Elder Wildmane",[15579]="Elder Darkhorn",[15580]="Elder Ezra Wheathoof",[15581]="Elder Grimtotem",[15582]="Elder Windtotem",[15583]="Elder Thunderhorn",[15584]="Elder Skyseer",[15585]="Elder Dawnstrider",[15586]="Elder Dreamseer",[15587]="Elder Mistwalker",[15588]="Elder High Mountain",[15589]="Eye of C'Thun",[15590]="Ossirian Crystal Trigger",[15591]="Minion of Weavil",[15592]="Elder Windrun",[15593]="Elder Starsong",[15594]="Elder Moonstrike",[15595]="Elder Bladeleaf",[15596]="Elder Starglade",[15597]="Elder Moonwarden",[15598]="Elder Bladeswift",[15599]="Elder Bladesing",[15600]="Elder Skygleam",[15601]="Elder Starweave",[15602]="Elder Meadowrun",[15603]="Elder Nightwind",[15604]="Elder Morningdew",[15605]="Elder Riversong",[15606]="Elder Brightspear",[15607]="Elder Farwhisper",[15608]="Medivh",[15609]="Cenarion Scout Landion",[15610]="Cenarion Scout Azenel",[15611]="Cenarion Scout Jalia",[15612]="Krug Skullsplit",[15613]="Merok Longstride",[15614]="J.D. Shadesong",[15615]="Shadow Priestess Shai",[15616]="Orgrimmar Legion Grunt",[15617]="Orgrimmar Legion Axe Thrower",[15620]="Hive'Regal Hunter-Killer",[15621]="Yauj Brood",[15622]="Vekniss Borer",[15623]="Xandivious",[15624]="Forest Wisp",[15625]="Twilight Corrupter",[15628]="Eranikus the Redeemed",[15629]="Nightmare Phantasm",[15630]="Spawn of Fankriss",[15631]="Spotlight",[15633]="Tyrande",[15634]="Priestess of the Moon",[15635]="Eversong Tender",[15636]="Eversong Green Keeper",[15637]="Withered Green Keeper",[15638]="Arcane Patroller",[15641]="Amani Axe Thrower",[15642]="Amani Shadowpriest",[15643]="Amani Berserker",[15644]="Wretched Urchin",[15645]="Wretched Thug",[15647]="Mana Stalker",[15648]="Manawraith",[15649]="Feral Dragonhawk Hatchling",[15650]="Crazed Dragonhawk",[15651]="Springpaw Stalker",[15652]="Elder Springpaw",[15654]="Plaguebone Pillager",[15655]="Rotlimb Cannibal",[15656]="Angershade",[15657]="Darkwraith",[15658]="Rotlimb Marauder",[15659]="Auctioneer Jaxon",[15661]="Baby Shark",[15663]="War Effort Volunteer",[15664]="Metzen the Reindeer",[15665]="Mounted Reindeer",[15666]="Blue Qiraji Battle Tank",[15667]="Glob of Viscidus",[15668]="Grimscale Murloc",[15669]="Grimscale Oracle",[15670]="Grimscale Forager",[15675]="Auctioneer Stockton",[15676]="Auctioneer Yarly",[15677]="Auctioneer Graves",[15678]="Auctioneer Silva'las",[15679]="Auctioneer Cazarez",[15681]="Auctioneer O'reely",[15682]="Auctioneer Cain",[15683]="Auctioneer Naxxremis",[15684]="Auctioneer Tricket",[15685]="Southsea Kidnapper",[15686]="Auctioneer Rhyker",[15687]="Moroes",[15688]="Terestian Illhoof",[15689]="Netherspite",[15690]="Prince Malchezaar",[15691]="The Curator",[15692]="Dark Iron Kidnapper",[15693]="Jonathan the Revelator",[15694]="Stormwind Reveler",[15695]="Vek Twins Trigger",[15696]="War Effort Recruit",[15698]="Father Winter's Helper",[15699]="Tranquil Mechanical Yeti",[15700]="Warlord Gorchuk",[15701]="Field Marshal Snowfall",[15702]="Senior Sergeant Taiga",[15703]="Senior Sergeant Grimsford",[15704]="Senior Sergeant Kai'jin",[15705]="Winter's Little Helper",[15706]="Winter Reindeer",[15707]="Master Sergeant Fizzlebolt",[15708]="Master Sergeant Maclure",[15709]="Master Sergeant Moonshadow",[15710]="Tiny Snowman",[15711]="Black Qiraji Battle Tank",[15712]="Dirt Mound",[15714]="Yellow Qiraji Battle Tank",[15715]="Green Qiraji Battle Tank",[15716]="Red Qiraji Battle Tank",[15718]="Ouro Scarab",[15719]="Thunder Bluff Reveler",[15720]="Timbermaw Ancestor",[15721]="Mechanical Greench",[15722]="Squire Leoren Mal'derath",[15723]="Booty Bay Reveler",[15724]="Drunken Bruiser",[15725]="Claw Tentacle",[15726]="Eye Tentacle",[15727]="C'Thun",[15728]="Giant Claw Tentacle",[15730]="Pat's Snowcloud Guy",[15731]="Darnassus Commendation Officer",[15732]="Wonderform Operator",[15733]="Gnomeregan Commendation Officer",[15734]="Ironforge Commendation Officer",[15735]="Stormwind Commendation Officer",[15736]="Orgrimmar Commendation Officer",[15737]="Darkspear Commendation Officer",[15738]="Undercity Commendation Officer",[15739]="Thunder Bluff Commendation Officer",[15740]="Colossus of Zora",[15741]="Colossus of Regal",[15742]="Colossus of Ashi",[15743]="Colossal Anubisath Warbringer",[15744]="Imperial Qiraji Destroyer",[15745]="Greatfather Winter's Helper",[15746]="Great-father Winter's Helper",[15747]="Qiraji Captain",[15748]="Lesser Anubisath Warbringer",[15749]="Lesser Silithid Flayer",[15750]="Qiraji Major",[15751]="Anubisath Warbringer",[15752]="Silithid Flayer",[15753]="Qiraji Brigadier General",[15754]="Greater Anubisath Warbringer",[15756]="Greater Silithid Flayer",[15757]="Qiraji Lieutenant General",[15758]="Supreme Anubisath Warbringer",[15759]="Supreme Silithid Flayer",[15760]="Winter Reveler",[15761]="Officer Vu'Shalay",[15762]="Officer Lunalight",[15763]="Officer Porterhouse",[15764]="Officer Ironbeard",[15765]="Officer Redblade",[15766]="Officer Maloof",[15767]="Officer Thunderstrider",[15768]="Officer Gothena",[15769]="Resonating Crystal",[15770]="Greater Resonating Crystal",[15771]="Major Resonating Crystal",[15778]="Mouth Tentacle Mount Visual",[15780]="Human Male Winter Reveler",[15781]="Human Female Winter Reveler",[15787]="Goblin Female Winter Reveler",[15797]="Colossus Researcher Sophia",[15798]="Colossus Researcher Nestor",[15799]="Colossus Researcher Eazel",[15800]="Exit Trigger",[15801]="GONG BOY DND DNR",[15802]="Flesh Tentacle",[15803]="Tranquil Air Totem",[15804]="Lesser Resonating Crystal",[15805]="Minor Resonating Crystal",[15806]="Qiraji Lieutenant",[15807]="Minor Anubisath Warbringer",[15808]="Minor Silithid Flayer",[15810]="Eroded Anubisath Warbringer",[15811]="Faltering Silithid Flayer",[15812]="Qiraji Officer",[15813]="Qiraji Officer Zod",[15814]="Qiraji Lieutenant Jo-rel",[15815]="Qiraji Captain Ka'ark",[15816]="Qiraji Major He'al-ie",[15817]="Qiraji Brigadier General Pax-lish",[15818]="Lieutenant General Nokhor",[15839]="Might of Kalimdor Grunt",[15840]="Might of Kalimdor Sergeant",[15841]="Might of Kalimdor Lieutenant",[15842]="Might of Kalimdor Mage",[15843]="Might of Kalimdor Priest",[15844]="Might of Kalimdor Restorer",[15845]="Might of Kalimdor Captain",[15846]="Might of Kalimdor Archer",[15847]="Might of Kalimdor Shaman",[15848]="Might of Kalimdor Infantry",[15849]="Might of Kalimdor Druid",[15850]="Might of Kalimdor Skirmisher",[15851]="Might of Kalimdor Marshal",[15852]="Orgrimmar Elite Shieldguard",[15853]="Orgrimmar Elite Infantryman",[15854]="Orgrimmar Elite Cavalryman",[15855]="Tauren Rifleman",[15856]="Tauren Primalist",[15857]="Stormwind Cavalryman",[15858]="Stormwind Infantry",[15859]="Stormwind Archmage",[15860]="Kaldorei Marksman",[15861]="Ironforge Infantryman",[15862]="Ironforge Cavalryman",[15863]="Darkspear Shaman",[15864]="Valadar Starsong",[15865]="Might of Kalimdor Major",[15866]="Commander Lynore Windstryke",[15867]="Might of Kalimdor Archmage",[15868]="Highlord Leoric Von Zeldig",[15869]="Malagav the Tactician",[15870]="Duke August Foehammer",[15871]="Elder Bronzebeard",[15872]="Pat's Firework Cluster Guy (BLUE)",[15873]="Pat's Firework Cluster Guy (RED)",[15874]="Pat's Firework Cluster Guy (GREEN)",[15878]="Warcaller Finster",[15879]="Pat's Firework Guy - BLUE",[15880]="Pat's Firework Guy - GREEN",[15882]="Pat's Firework Guy - RED",[15883]="Pat's Firework Guy - YELLOW",[15884]="Pat's Firework Guy - WHITE",[15885]="Pat's Firework Guy - BLUE BIG",[15886]="Pat's Firework Guy - GREEN BIG",[15887]="Pat's Firework Guy - PURPLE BIG",[15888]="Pat's Firework Guy - RED BIG",[15889]="Pat's Firework Guy - WHITE BIG",[15890]="Pat's Firework Guy - YELLOW BIG",[15891]="Lunar Festival Herald",[15892]="Lunar Festival Emissary",[15893]="Lunar Firework Credit Marker",[15894]="Lunar Cluster Credit Marker",[15895]="Lunar Festival Harbinger",[15896]="C'Thun Portal",[15897]="Large Spotlight",[15898]="Lunar Festival Vendor",[15901]="Vanquished Tentacle",[15902]="Giant Spotlight",[15903]="Sergeant Carnes",[15904]="Tentacle Portal",[15905]="Darnassus Reveler",[15906]="Ironforge Reveler",[15907]="Undercity Reveler",[15908]="Orgrimmar Reveler",[15909]="Fariel Starsong",[15910]="Giant Tentacle Portal",[15911]="Pat's Firework Cluster Guy (BLUE BIG)",[15912]="Pat's Firework Cluster Guy (GREEN BIG)",[15914]="Pat's Firework Cluster Guy (RED BIG)",[15917]="Lunar Festival Reveler",[15918]="Pat's Firework Cluster Guy (ELUNE)",[15919]="Jade Owl",[15920]="Hathvelion Sungaze",[15921]="Captain Kelisendra",[15923]="Golden Hare",[15924]="Apprentice Loralthalis",[15925]="Toxic Slime",[15926]="Black Pearl Panther",[15927]="Truesilver Crab",[15928]="Thaddius",[15929]="Stalagg",[15930]="Feugen",[15931]="Grobbulus",[15932]="Gluth",[15933]="Poison Cloud",[15934]="Hive'Zara Hornet",[15935]="Truesilver Boar",[15936]="Heigan the Unclean",[15937]="Mmmrrrggglll",[15938]="Eversong Ranger",[15939]="Ranger Degolien",[15940]="Ranger Selron",[15941]="Apprentice Ralen",[15942]="Ranger Sareyn",[15944]="Ruby Serpent",[15945]="Apprentice Meledor",[15946]="Apprentice Veya",[15948]="Emerald Owl",[15949]="Thaelis the Hungerer",[15950]="Grimscale Seer",[15951]="Magister Duskwither",[15952]="Maexxna",[15953]="Grand Widow Faerlina",[15954]="Noth the Plaguebringer",[15955]="Black Diamond Crab",[15956]="Anub'Rekhan",[15957]="Ouro Spawner",[15958]="Gharsul the Remorseless",[15959]="Dark Iron Scorpid",[15961]="Lunar Festival Sentinel",[15962]="Vekniss Hatchling",[15963]="The Master's Eye",[15964]="Buru Egg Trigger",[15965]="Duskwither Apprentice",[15966]="Mana Serpent",[15967]="Ether Fiend",[15968]="Darnassian Scout",[15969]="Groundskeeper Wyllithen",[15970]="Instructor Antheol",[15971]="Silvermoon Apprentice",[15972]="Alterac Valley Battlemaster",[15974]="Dread Creeper",[15975]="Carrion Spinner",[15976]="Venom Stalker",[15977]="Poisonous Skitterer",[15978]="Crypt Reaver",[15979]="Tomb Horror",[15980]="Naxxramas Cultist",[15981]="Naxxramas Acolyte",[15984]="Sartura's Royal Guard",[15989]="Sapphiron",[15990]="Kel'Thuzad",[15991]="Lady Dena Kennedy",[16001]="Aldris Fourclouds",[16002]="Colara Dean",[16003]="Deathguard Tor",[16004]="Elenia Haydon",[16005]="Lieutenant Jocryn Heldric",[16006]="InCombat Trigger",[16007]="Orok Deathbane",[16008]="Temma of the Wells",[16009]="Tormek Stoneriver",[16011]="Loatheb",[16012]="Mokvar",[16013]="Deliana",[16014]="Mux Manascrambler",[16015]="Vi'el",[16016]="Anthion Harmon",[16017]="Patchwork Golem",[16018]="Bile Retcher",[16019]="Boorana Thunderhoof",[16020]="Mad Scientist",[16021]="Living Monstrosity",[16022]="Surgical Assistant",[16024]="Embalming Slime",[16025]="Stitched Giant",[16027]="Living Poison",[16028]="Patchwerk",[16029]="Sludge Belcher",[16030]="Maggot",[16031]="Ysida Harmon",[16032]="Falrin Treeshaper",[16033]="Bodley",[16034]="Plague Beast",[16036]="Frenzied Bat",[16037]="Plagued Bat",[16042]="Lord Valthalak",[16043]="Magma Lord Bokk",[16044]="Mor Grayhoof Trigger",[16045]="Isalien Trigger",[16046]="Jarien and Sothos Trigger",[16047]="Kormok Trigger",[16048]="Lord Valthalak Trigger",[16049]="Lefty",[16050]="Rotfang",[16051]="Snokh Blackspine",[16052]="Malgen Longspear",[16053]="Korv",[16054]="Rezznik",[16055]="Va'jashni",[16056]="Diseased Maggot",[16057]="Rotting Maggot",[16058]="Volida",[16059]="Theldren",[16060]="Gothik the Harvester",[16061]="Instructor Razuvious",[16062]="Highlord Mograine",[16063]="Sir Zeliek",[16064]="Thane Korth'azz",[16065]="Lady Blaumeux",[16066]="Spectral Assassin",[16067]="Deathcharger Steed",[16068]="Larva",[16069]="Gurky",[16070]="Garel Redrock",[16072]="Tidelord Rrurgaz",[16073]="Spirit of Lord Valthalak",[16075]="Kwee Q. Peddlefeet",[16076]="Tharl Stonebleeder",[16078]="Unkillable Fixed Damage Test Dummy",[16079]="Theldren Trigger",[16080]="Mor Grayhoof",[16082]="Naxxramas Trigger",[16085]="Peddlefeet",[16089]="Omar the Test Dragon",[16090]="Rousch",[16091]="Dirk Thunderwood",[16092]="Silithis Teleporter",[16093]="Spectral Stalker",[16094]="Durik",[16095]="Gnashjaw",[16096]="Steamwheedle Bruiser",[16097]="Isalien",[16098]="Empyrean",[16100]="Ysida's Trigger",[16101]="Jarien",[16102]="Sothos",[16103]="Spirit of Jarien",[16104]="Spirit of Sothos",[16105]="Aristan Mottar",[16106]="Evert Sorisam",[16107]="Apothecary Staffron Lerent",[16108]="Fenstad Argyle",[16109]="Mara Rennick",[16110]="Annalise Lerent",[16111]="Love Fool",[16112]="Crusade Commander Korfax",[16113]="Father Inigo Montoy",[16114]="Scarlet Commander Marjhan",[16115]="Crusade Commander Eligor Dawnbringer",[16116]="Archmage Angela Dosantos",[16117]="Plagued Swine",[16118]="Kormok",[16119]="Bone Minion",[16120]="Bone Mage",[16121]="Mortar",[16123]="Gremnik Rizzlesprang",[16124]="Unrelenting Trainee",[16125]="Unrelenting Death Knight",[16126]="Unrelenting Rider",[16127]="Spectral Trainee",[16128]="Rhonin",[16129]="Shadow Fissure",[16131]="Rohan the Assassin",[16132]="Huntsman Leopold",[16133]="Mataus the Wrathcaster",[16134]="Rimblat Earthshatter",[16135]="Rayne",[16136]="Necrotic Shard",[16137]="Naxxramas Military Sub-Boss Trigger",[16139]="Cenarion Hold Reservist",[16141]="Ghoul Berserker",[16142]="Bile Sludge",[16143]="Shadow of Doom",[16144]="Lord Saltheril",[16145]="Death Knight Captain",[16146]="Death Knight",[16147]="Elisara Sunstriker",[16148]="Spectral Death Knight",[16149]="Spectral Horse",[16150]="Spectral Rider",[16151]="Midnight",[16152]="Attumen the Huntsman",[16153]="Berthold",[16154]="Risen Squire",[16156]="Dark Touched Warrior",[16157]="Doom Touched Warrior",[16158]="Death Touched Warrior",[16159]="Calliard",[16160]="Magistrix Eredania",[16161]="Arcanist Sheynathren",[16162]="Wretched Hooligan",[16163]="Death Knight Cavalier",[16164]="Shade of Naxxramas",[16165]="Necro Knight",[16166]="Theldren Kill Credit",[16167]="Bony Construct",[16168]="Stoneskin Gargoyle",[16169]="Hastings",[16170]="Coldmist Stalker",[16171]="Coldmist Widow",[16172]="Damaged Necrotic Shard",[16173]="Shadowbat",[16174]="Greater Shadowbat",[16175]="Vampiric Shadowbat",[16176]="Shadowbeast",[16177]="Dreadbeast",[16178]="Phase Hound",[16179]="Hyakiss the Lurker",[16180]="Shadikith the Glider",[16181]="Rokad the Ravager",[16183]="Courier Dawnstrider",[16184]="Nerubian Overseer",[16185]="Anathos",[16186]="Vara",[16187]="Quartermaster Lymel",[16189]="Skymaster Sunwing",[16191]="Sathren Azuredawn",[16192]="Skymistress Gloaming",[16193]="Skeletal Smith",[16194]="Unholy Axe",[16196]="Apothecary Thedra",[16197]="Arcanist Vandril",[16198]="Apothecary Renzithen",[16199]="Magister Darenis",[16200]="Deathstalker Rathiel",[16201]="Geranis Whitemorn",[16202]="Farstrider Sedina",[16203]="Ranger Vynna",[16204]="Magister Idonis",[16205]="Magistrix Aminel",[16206]="Apprentice Varnis",[16208]="Apothecary Enith",[16209]="Ranger Vedoran",[16210]="Magistrix Landra Dawnstrider",[16211]="Naxxramas Combat Dummy",[16212]="Dispatch Commander Metz",[16213]="Ranger Lethvalin",[16215]="Unholy Staff",[16216]="Unholy Swords",[16217]="Lieutenant Tomathren",[16218]="Tesla Coil",[16219]="Ranger Valanna",[16220]="Captain Helios",[16221]="Silvermoon Guardian",[16222]="Silvermoon City Guardian",[16224]="Rathis Tomber",[16225]="Pack Mule",[16226]="Guard Didier",[16227]="Bragok",[16228]="Argent Dawn Infantry",[16229]="Injured Argent Dawn Infantry",[16230]="Cultist Engineer",[16231]="Dame Auriferous",[16232]="Caravan Mule",[16236]="Eye Stalk",[16237]="Magister Sylastor",[16238]="Night Elf Ambusher",[16239]="Magister Kaendris",[16240]="Arcanist Janeda",[16241]="Argent Recruiter",[16242]="Tranquillien Scout",[16243]="Plague Slime",[16244]="Infectious Ghoul",[16245]="Luzran",[16246]="Knucklerot",[16247]="Borgoth the Bloodletter",[16248]="Jurion the Deceiver",[16249]="Masophet the Black",[16250]="Mirdoran the Fallen",[16251]="Deathstalker Maltendis",[16252]="High Executor Mavren",[16253]="Master Chef Mouldier",[16254]="Field Marshal Chambers",[16255]="Argent Scout",[16256]="Jessica Chambers",[16257]="Geron",[16258]="Farsil",[16259]="Sheri",[16260]="Areyn",[16261]="Sathiel",[16262]="Landraelanis",[16263]="Paelarin",[16264]="Winaestra",[16266]="Celoenus",[16267]="Daestra",[16268]="Eralan",[16269]="Garridel",[16270]="Hannovia",[16271]="Telenus",[16272]="Kanaria",[16273]="Mathreyn",[16274]="Narina",[16275]="Noellene",[16276]="Ponaris",[16277]="Quarelestra",[16278]="Sathein",[16279]="Tannaria",[16280]="Perascamin",[16281]="Keeper of the Rolls",[16283]="Packmaster Stonebruiser",[16284]="Argent Medic",[16285]="Argent Emissary",[16286]="Spore",[16287]="Ambassador Sunsorrow",[16288]="Advisor Sorrelon",[16289]="Advisor Valwyn",[16290]="Irradiated Slime",[16291]="Magister Quallestis",[16292]="Aquantion",[16293]="Apprentice Shatharia",[16294]="Aldaron the Reckless",[16295]="Ranger Lilatha",[16297]="Mutated Grub",[16298]="Spectral Soldier",[16299]="Skeletal Shocktrooper",[16300]="Risen Creeper",[16301]="Risen Hungerer",[16302]="Risen Stalker",[16303]="Dreadbone Skeleton",[16304]="Arcane Devourer",[16305]="Dreadbone Sentinel",[16306]="Scourge Invasion Minion spawner Ghost/Ghoul",[16307]="Deathcage Scryer",[16308]="Deathcage Sorcerer",[16309]="Gangled Cannibal",[16310]="Mana Shifter",[16311]="Phantasmal Watcher",[16313]="Nerubis Guard",[16314]="Fallen Ranger",[16315]="Deatholme Acolyte",[16316]="Stonewing Tracker",[16317]="Deatholme Necromancer",[16318]="Deatholme Darkmage",[16319]="Nerubis Centurion",[16320]="Eye of Dar'Khan",[16321]="Wailer",[16322]="Gangled Flesheater",[16323]="Phantasmal Seeker",[16324]="Stonewing Slayer",[16325]="Quel'dorei Ghost",[16326]="Quel'dorei Wraith",[16327]="Ravening Apparition",[16328]="Vengeful Apparition",[16329]="Dar'Khan Drathir",[16330]="Sentinel Spy"} \ No newline at end of file +id_to_npc = {[3]="Flesh Eater",[6]="Kobold Vermin",[19]="Benny Questgiver",[29]="Kanrethad",[30]="Forest Spider",[31]="Furbolg",[36]="Harvest Golem",[38]="Defias Thug",[40]="Kobold Miner",[43]="Mine Spider",[46]="Murloc Forager",[48]="Skeletal Warrior",[49]="Lesser Succubus",[54]="Corina Steele",[55]="Mean Ed the Blacksmith",[60]="Ruklar the Trapper",[61]="Thuros Lightfingers",[62]="Gug Fatcandle",[65]="Peasant Woman",[66]="Tharynn Bouden",[67]="[UNUSED] Marlon Darnik",[68]="Stormwind City Guard",[69]="Diseased Timber Wolf",[70]="[UNUSED] Lower Class Citizen",[71]="Rankist",[72]="[UNUSED] Antaris the Trader",[73]="Veraina the Apothecary",[74]="Kurran Steele",[75]="[UNUSED] Vashaum Nightwither",[78]="Janos Hammerknuckle",[79]="Narg the Taskmaster",[80]="Kobold Laborer",[81]="[UNUSED] Luglar the Clogger",[82]="Crazy Leonetti",[89]="Infernal",[90]="Sea Giant",[92]="Rock Elemental",[93]="Centaur",[94]="Cutpurse",[95]="Defias Smuggler",[97]="Riverpaw Runt",[98]="Riverpaw Taskmaster",[99]="Morgaine the Sly",[100]="Gruff Swiftbite",[102]="Bronze Dragonspawn",[103]="Garrick Padfoot",[105]="Tall Strider",[106]="Kodo Beast",[107]="Raptor",[108]="Green Dragonspawn",[109]="White Dragonspawn",[111]="Priest",[112]="Priestess",[113]="Stonetusk Boar",[114]="Harvest Watcher",[115]="Harvest Reaper",[116]="Bandit",[117]="Riverpaw Gnoll",[118]="Prowler",[119]="Longsnout",[120]="Forest Stalker",[121]="Defias Pathstalker",[122]="Defias Highwayman",[123]="Riverpaw Mongrel",[124]="Riverpaw Brute",[125]="Riverpaw Overseer",[126]="Murloc Coastrunner",[127]="Murloc Tidehunter",[128]="Angry Programmer Tweedle Dee",[129]="Angry Programmer Tweedle Dum",[130]="Programmer Vendor",[149]="[UNUSED] Small Black Dragon Whelp",[150]="[UNUSED] Brother Milius",[151]="Brog Hamfist",[152]="Brother Danil",[153]="Bethina",[154]="Greater Fleshripper",[157]="Goretusk",[161]="[UNUSED] Ander the Monk",[165]="[UNUSED] Small Child",[167]="Morhan Coppertongue",[171]="Murloc Warrior",[190]="Dermot Johns",[193]="Blue Dragonspawn",[196]="Eagan Peltskinner",[197]="Marshal McBride",[198]="Khelden Bremen",[199]="Young Fleshripper",[202]="Rotting Horror",[203]="Skeletal Mage",[204]="[UNUSED] Cackle Flamebone",[205]="Nightbane Dark Runner",[206]="Nightbane Vile Fang",[210]="Bone Chewer",[212]="Splinter Fist Warrior",[213]="Starving Dire Wolf",[215]="Defias Night Runner",[217]="Venom Web Spider",[218]="Grave Robber",[222]="Nillen Andemar",[223]="Dan Golthas",[225]="Gavin Gnarltree",[226]="Morg Gnarltree",[227]="Mabel Solaj",[228]="Avette Fellwood",[232]="Farmer Ray",[233]="Farmer Saldean",[234]="Marshal Gryan Stoutmantle",[235]="Salma Saldean",[237]="Farmer Furlbrow",[238]="Verna Furlbrow",[239]="Grimbooze Thunderbrew",[240]="Marshal Dughan",[243]="[UNUSED] Greeby Mudwhisker TEST",[244]="Ma Stonefield",[247]="Billy Maclure",[248]="Gramma Stonefield",[250]="Pa Maclure",[251]="Maybell Maclure",[252]="Tommy Joe Stonefield",[253]="William Pestle",[255]="Gerard Tiller",[257]="Kobold Worker",[258]="Joshua Maclure",[261]="Guard Thomas",[263]="Lord Ello Ebonlocke",[264]="Commander Althea Ebonlocke",[265]="Madame Eva",[266]="Wiley the Black",[267]="Clerk Daltry",[268]="Sirra Von'Indi",[269]="Role Dreuger",[270]="Councilman Millstipe",[271]="Ambassador Berrybuck",[272]="Chef Grual",[273]="Tavernkeep Smitts",[274]="Barkeep Hann",[275]="Whit Wantmal",[276]="Viktori Prism'Antras",[277]="Roberto Pupellyverbos",[278]="Sara Timberlain",[279]="Morgan Pestle",[280]="Placeholder - Jasperlode Mine",[284]="Brown Horse",[285]="Murloc",[287]="Placeholder - Darkhollow Mine",[288]="Jitters",[289]="Abercrombie",[290]="Placeholder - Fargodeep Mine",[291]="Placeholder Chest of Drawers",[294]="Marshal Haggard",[295]="Innkeeper Farley",[296]="[UNUSED] Goodmother Jans",[297]="Caretaker Folsom",[299]="Young Wolf",[300]="Zzarc' Vul",[302]="Blind Mary",[304]="Felsteed",[305]="White Stallion",[306]="Palomino",[307]="Pinto",[308]="Black Stallion",[311]="Sven Yorgen",[313]="Theocritus",[314]="Eliza",[315]="Stalvan Mistmantle",[319]="[UNUSED] Brother Benthas",[325]="Hogan Ference",[327]="Goldtooth",[328]="Zaldimar Wefhellt",[329]="Earth Elemental",[330]="Princess",[331]="Maginor Dumas",[332]="Master Mathias Shaw",[334]="Gath'Ilzogg",[335]="Singe",[338]="Mazen Mac'Nadir",[339]="[UNUSED] Helgor the Pugilist",[340]="Kendor Kabonka",[341]="Foreman Oslow",[342]="Martie Jainrose",[343]="Chef Breanna",[344]="Magistrate Solomon",[345]="Bellygrub",[346]="Barkeep Daniels",[347]="Grizzle Halfmane",[348]="Zem Leeward",[349]="Corporal Keeshan",[351]="Peasant",[352]="Dungar Longdrink",[353]="Antonia Dart",[356]="Black Wolf",[358]="Timber Wolf",[359]="Riding Wolf (Winter)",[365]="Scott's Flying Mount",[372]="Karm Ironquill",[374]="Cog Glitzspinner",[375]="Priestess Anetta",[376]="High Priestess Laurena",[377]="Priestess Josetta",[379]="Darcy Parker",[381]="Dockmaster Baren",[382]="Marshal Marris",[383]="Jason Mathers",[384]="Katie Hunter",[385]="Horse",[390]="Porcine Entourage",[391]="Old Murk-Eye",[392]="Captain Grayson",[395]="Markus",[397]="Grand Magus Doane",[399]="Boy - placeholder 05",[412]="Stitches",[415]="Verner Osgood",[416]="Imp",[417]="Felhunter",[422]="Murloc Flesheater",[423]="Redridge Mongrel",[424]="Redridge Poacher",[426]="Redridge Brute",[428]="Dire Condor",[429]="Shadowhide Darkweaver",[430]="Redridge Mystic",[431]="Shadowhide Slayer",[432]="Shadowhide Brute",[433]="Shadowhide Gnoll",[434]="Rabid Shadowhide Gnoll",[435]="Blackrock Champion",[436]="Blackrock Shadowcaster",[437]="Blackrock Renegade",[440]="Blackrock Grunt",[441]="Black Dragon Whelp",[442]="Tarantula",[445]="Redridge Alpha",[446]="Redridge Basher",[448]="Hogger",[449]="Defias Knuckleduster",[450]="Defias Renegade Mage",[452]="Riverpaw Bandit",[453]="Riverpaw Mystic",[454]="Young Goretusk",[456]="Murloc Minor Oracle",[458]="Murloc Hunter",[459]="Drusilla La Salle",[460]="Alamar Grimm",[461]="Demisette Cloyce",[462]="Vultros",[464]="Watch Captain Parker",[465]="Barkeep Dobbins",[466]="General Marcus Jonathan",[467]="The Defias Traitor",[468]="Town Crier",[469]="Lieutenant Doren",[471]="Mother Fang",[472]="Fedfennel",[473]="Morgan the Collector",[474]="Rogue Wizard",[475]="Kobold Tunneler",[476]="Kobold Geomancer",[478]="Riverpaw Outrunner",[480]="Rusty Harvest Golem",[481]="Defias Footpad",[482]="Elling Trias",[483]="Elaine Trias",[485]="Blackrock Outrunner",[486]="Tharil'zun",[487]="Protector Bialon",[488]="Protector Weaver",[489]="Protector Dutfield",[490]="Protector Gariel",[491]="Quartermaster Lewis",[494]="Watcher Bukouris",[495]="Watcher Keefer",[499]="Watcher Paige",[500]="Riverpaw Scout",[501]="Riverpaw Herbalist",[502]="Benny Blaanco",[503]="Lord Malathrom",[504]="Defias Trapper",[505]="Greater Tarantula",[506]="Sergeant Brashclaw",[507]="Fenros",[509]="[UNUSED] Long Fang",[510]="Water Elemental",[511]="Insane Ghoul",[513]="Murloc Netter",[514]="Smith Argus",[515]="Murloc Raider",[517]="Murloc Oracle",[518]="Yowler",[519]="Slark",[520]="Brack",[521]="Lupos",[522]="Mor'Ladim",[523]="Thor",[524]="Rockhide Boar",[525]="Mangy Wolf",[531]="Skeletal Fiend",[533]="Nightbane Shadow Weaver",[534]="Nefaru",[539]="Pygmy Venom Web Spider",[543]="Nalesette Wildbringer",[544]="Murloc Nightcrawler",[545]="Murloc Tidecaller",[547]="Great Goretusk",[548]="Murloc Minor Tidecaller",[550]="Defias Messenger",[565]="Rabid Dire Wolf",[568]="Shadowhide Warrior",[569]="Green Recluse",[570]="Brain Eater",[572]="Leprithus",[573]="Foe Reaper 4000",[574]="Naraxis",[575]="Fire Elemental",[576]="Watcher Ladimore",[578]="Murloc Scout",[579]="Shadowhide Assassin",[580]="Redridge Drudger",[582]="Old Blanchy",[583]="Ambusher",[584]="Kazon",[587]="Bloodscalp Warrior",[588]="Bloodscalp Scout",[589]="Defias Pillager",[590]="Defias Looter",[594]="Defias Henchman",[595]="Bloodscalp Hunter",[596]="Brainwashed Noble",[597]="Bloodscalp Berserker",[598]="Defias Miner",[599]="Marisa du'Paige",[603]="Grimtooth",[604]="Plague Spreader",[612]="[UNUSED] Rabid Mrs. Whipple",[615]="Blackrock Tracker",[616]="Chatter",[619]="Defias Conjurer",[620]="Chicken",[622]="Goblin Engineer",[623]="Skeletal Miner",[624]="Undead Excavator",[625]="Undead Dynamiter",[626]="Foreman Thistlenettle",[628]="Black Ravager",[633]="Elaine Carevin",[634]="Defias Overseer",[636]="Defias Blackguard",[639]="Edwin VanCleef",[641]="Goblin Woodcarver",[642]="Sneed's Shredder",[643]="Sneed",[644]="Rhahk'Zor",[645]="Cookie",[646]="Mr. Smite",[647]="Captain Greenskin",[648]="Bridge Worker Trent",[649]="Bridge Worker Dmitri",[650]="Bridge Worker Jess",[651]="Bridge Worker Daniel",[652]="Bridge Worker Matthew",[653]="Bridge Worker Alex",[656]="Wilder Thistlenettle",[657]="Defias Pirate",[658]="Sten Stoutarm",[659]="El Pollo Grande",[660]="Bloodscalp Witch Doctor",[661]="Jonathan Carevin",[663]="Calor",[664]="Benjamin Carevin",[667]="Skullsplitter Warrior",[669]="Skullsplitter Hunter",[670]="Skullsplitter Witch Doctor",[671]="Bloodscalp Headhunter",[672]="Skullsplitter Spiritchaser",[674]="Venture Co. Strip Miner",[675]="Venture Co. Foreman",[676]="Venture Co. Surveyor",[677]="Venture Co. Tinkerer",[678]="Mosh'Ogg Mauler",[679]="Mosh'Ogg Shaman",[680]="Mosh'Ogg Lord",[681]="Young Stranglethorn Tiger",[682]="Stranglethorn Tiger",[683]="Young Panther",[684]="Shadowmaw Panther",[685]="Stranglethorn Raptor",[686]="Lashtail Raptor",[687]="Jungle Stalker",[688]="Stone Maw Basilisk",[689]="Crystal Spine Basilisk",[690]="Cold Eye Basilisk",[691]="Lesser Water Elemental",[694]="Bloodscalp Axe Thrower",[696]="Skullsplitter Axe Thrower",[697]="Bloodscalp Shaman",[698]="Bloodscalp Tiger",[699]="Bloodscalp Beastmaster",[701]="Bloodscalp Mystic",[702]="Bloodscalp Scavenger",[703]="General Fangore",[704]="Ragged Timber Wolf",[705]="Ragged Young Wolf",[706]="Frostmane Troll Whelp",[707]="Rockjaw Trogg",[708]="Small Crag Boar",[709]="Mosh'Ogg Warmonger",[710]="Mosh'Ogg Spellcrafter",[711]="Ardo Dirtpaw",[712]="Redridge Thrasher",[713]="Balir Frosthammer",[714]="Talin Keeneye",[715]="Hemet Nesingwary Jr.",[716]="Barnil Stonepot",[717]="Ajeck Rouack",[718]="Sir S. J. Erlgadin",[721]="Rabbit",[723]="Mosh'Ogg Butcher",[724]="Burly Rockjaw Trogg",[727]="Ironforge Mountaineer",[728]="Bhag'thera",[729]="Sin'Dall",[730]="Tethis",[731]="King Bangalash",[732]="Murloc Lurker",[733]="Sergeant Yohwa",[734]="Corporal Bluth",[735]="Murloc Streamrunner",[736]="Panther",[737]="Kebok",[738]="Private Thorsen",[739]="Brother Nimetz",[740]="Adolescent Whelp",[741]="Dreaming Whelp",[742]="Green Wyrmkin",[743]="Wyrmkin Dreamwalker",[744]="Green Scalebane",[745]="Scalebane Captain",[746]="Elder Dragonkin",[747]="Marsh Murloc",[750]="Marsh Inkspewer",[751]="Marsh Flesheater",[752]="Marsh Oracle",[754]="Rebel Watchman",[755]="Lost One Mudlurker",[756]="Skullsplitter Panther",[757]="Lost One Fisherman",[759]="Lost One Hunter",[760]="Lost One Muckdweller",[761]="Lost One Seer",[762]="Lost One Riftseeker",[763]="Lost One Chieftain",[764]="Swampwalker",[765]="Swampwalker Elder",[766]="Tangled Horror",[767]="Swamp Jaguar",[768]="Shadow Panther",[769]="Deathstrike Tarantula",[770]="Corporal Kaleb",[771]="Commander Felstrom",[772]="Stranglethorn Tigress",[773]="Krazek",[775]="Kurzen's Agent",[777]="Amy Davenport",[780]="Skullsplitter Mystic",[781]="Skullsplitter Headhunter",[782]="Skullsplitter Scout",[783]="Skullsplitter Berserker",[784]="Skullsplitter Beastmaster",[785]="Skeletal Warder",[786]="Grelin Whitebeard",[787]="Skeletal Healer",[789]="Kimberly Hiett",[790]="Karen Taylor",[791]="Lindsay Ashlock",[793]="Kara Adams",[794]="Matt",[795]="Mark",[796]="Joshua",[797]="Bo",[798]="Solomon",[799]="Kevin",[800]="Kyle",[801]="Eric",[802]="Jay",[804]="Dana",[805]="Cameron",[806]="John",[807]="Lisa",[808]="Grik'nir the Cold",[810]="Aaron",[811]="Jose",[812]="Alma Jainrose",[813]="Colonel Kurzen",[814]="Sergeant Malthus",[815]="Bookie Herod",[818]="Mai'Zoth",[819]="Servant of Ilgalar",[820]="Scout Riell",[821]="Captain Danuvin",[822]="Young Forest Bear",[823]="Sergeant Willem",[824]="Defias Digger",[826]="Watcher Jan",[827]="Watcher Mocarski",[828]="Watcher Petras",[829]="Adlin Pridedrift",[830]="Sand Crawler",[831]="Sea Crawler",[832]="Unbound Cyclone",[833]="Coyote Packleader",[834]="Coyote",[836]="Durnan Furcutter",[837]="Branstock Khalder",[840]="Watcher Backus",[842]="Lumberjack",[843]="Gina MacGregor",[844]="Antonio Perelli",[846]="Rotten Ghoul",[847]="Nathan",[848]="Madison",[849]="Rachel",[850]="Erin",[851]="Hannah",[852]="Feral Spirit",[853]="Coldridge Mountaineer",[854]="Young Jungle Stalker",[855]="Young Stranglethorn Raptor",[856]="Young Lashtail Raptor",[857]="Donal Osgood",[858]="Sorrow Spinner",[859]="Guard Berton",[861]="Stonard Scout",[862]="Stonard Explorer",[863]="Stonard Hunter",[864]="Stonard Orc",[865]="Stonard Wayfinder",[866]="Stonard Grunt",[867]="Stonard Cartographer",[868]="Stonard Shaman",[869]="Protector Dorana",[870]="Protector Deni",[871]="Saltscale Warrior",[873]="Saltscale Oracle",[874]="Protector Korelor",[875]="Saltscale Tide Lord",[876]="Protector Leick",[877]="Saltscale Forager",[878]="Scout Galiaan",[879]="Saltscale Hunter",[880]="Erlan Drudgemoor",[881]="Surena Caledon",[883]="Deer",[885]="Watcher Keller",[886]="Watcher Hartin",[887]="Watcher Jordan",[888]="Watcher Dodds",[889]="Splinter Fist Ogre",[890]="Fawn",[891]="Splinter Fist Fire Weaver",[892]="Splinter Fist Taskmaster",[893]="Lars",[894]="Homer Stonefield",[895]="Thorgas Grimson",[896]="Veldan Lightfoot",[898]="Nightbane Worgen",[900]="Bailiff Conacher",[903]="Guard Howe",[905]="Sharptooth Frenzy",[906]="Maximillian Crowe",[907]="Keras Wolfheart",[908]="Flora Silverwind",[909]="Defias Night Blade",[910]="Defias Enchanter",[911]="Llane Beshere",[912]="Thran Khorman",[913]="Lyria Du Lac",[914]="Ander Germaine",[915]="Jorik Kerridan",[916]="Solm Hargrin",[917]="Keryn Sylvius",[918]="Osborne the Night Man",[920]="Nightbane Tainted One",[921]="Venture Co. Lumberjack",[922]="Silt Crawler",[923]="Young Black Ravager",[925]="Brother Sammuel",[926]="Bromos Grummner",[927]="Brother Wilhelm",[928]="Lord Grayson Shadowbreaker",[930]="Black Widow Hatchling",[931]="Ariena Stormfeather",[932]="Guard Ashlock",[933]="Guard Hiett",[934]="Guard Clarke",[935]="Guard Pearce",[936]="Guard Adams",[937]="Kurzen Jungle Fighter",[938]="Kurzen Commando",[939]="Kurzen Elite",[940]="Kurzen Medicine Man",[941]="Kurzen Headshrinker",[942]="Kurzen Witch Doctor",[943]="Kurzen Wrangler",[944]="Marryk Nurribit",[945]="Rybrad Coldbank",[946]="Frostmane Novice",[947]="Rohh the Silent",[948]="Rotted One",[949]="Carrion Recluse",[950]="Swamp Talker",[951]="Brother Paxton",[952]="Brother Neals",[954]="Kat Sampson",[955]="Sergeant De Vries",[956]="Dorin Songblade",[957]="Dane Lindgren",[958]="Dawn Brightstar",[959]="Morley Eberlein",[960]="Gunder Thornbush",[963]="Deputy Rainer",[976]="Kurzen War Tiger",[977]="Kurzen War Panther",[978]="Kurzen Subchief",[979]="Kurzen Shadow Hunter",[980]="Grimnal",[981]="Hartash",[982]="Thultash",[983]="Thultazor",[984]="Thralosh",[985]="Malosh",[986]="Haromm",[987]="Ogromm",[988]="Kartosh",[989]="Banalash",[999]="Watcher Royce",[1000]="Watcher Blomberg",[1001]="Watcher Hutchins",[1007]="Mosshide Gnoll",[1008]="Mosshide Mongrel",[1009]="Mosshide Mistweaver",[1010]="Mosshide Fenrunner",[1011]="Mosshide Trapper",[1012]="Mosshide Brute",[1013]="Mosshide Mystic",[1014]="Mosshide Alpha",[1015]="Highland Raptor",[1016]="Highland Lashtail",[1017]="Highland Scytheclaw",[1018]="Highland Razormaw",[1019]="Elder Razormaw",[1020]="Mottled Raptor",[1021]="Mottled Screecher",[1022]="Mottled Scytheclaw",[1023]="Mottled Razormaw",[1024]="Bluegill Murloc",[1025]="Bluegill Puddlejumper",[1026]="Bluegill Forager",[1027]="Bluegill Warrior",[1028]="Bluegill Muckdweller",[1029]="Bluegill Oracle",[1030]="Black Slime",[1031]="Crimson Ooze",[1032]="Black Ooze",[1033]="Monstrous Ooze",[1034]="Dragonmaw Raider",[1035]="Dragonmaw Swamprunner",[1036]="Dragonmaw Centurion",[1037]="Dragonmaw Battlemaster",[1038]="Dragonmaw Shadowwarder",[1039]="Fen Dweller",[1040]="Fen Creeper",[1041]="Fen Lord",[1042]="Red Whelp",[1043]="Lost Whelp",[1044]="Flamesnorting Whelp",[1045]="Red Dragonspawn",[1046]="Red Wyrmkin",[1047]="Red Scalebane",[1048]="Scalebane Lieutenant",[1049]="Wyrmkin Firebrand",[1050]="Scalebane Royal Guard",[1051]="Dark Iron Dwarf",[1052]="Dark Iron Saboteur",[1053]="Dark Iron Tunneler",[1054]="Dark Iron Demolitionist",[1057]="Dragonmaw Bonewarder",[1059]="Ana'thek the Cruel",[1060]="Mogh the Undying",[1061]="Gan'zulah",[1062]="Nezzliok the Dire",[1063]="Jade",[1064]="Grom'gol Grunt",[1065]="Riverpaw Shaman",[1068]="Gorn",[1069]="Crimson Whelp",[1070]="Deputy Feldon",[1071]="Longbraid the Grim",[1072]="Roggo Harlbarrow",[1073]="Ashlan Stonesmirk",[1074]="Motley Garmason",[1075]="Rhag Garmason",[1076]="Merrin Rockweaver",[1077]="Prospector Whelgar",[1078]="Ormer Ironbraid",[1081]="Mire Lord",[1082]="Sawtooth Crocolisk",[1083]="Murloc Shorestriker",[1084]="Young Sawtooth Crocolisk",[1085]="Elder Stranglethorn Tiger",[1087]="Sawtooth Snapper",[1088]="Monstrous Crawler",[1089]="Mountaineer Cobbleflint",[1090]="Mountaineer Wallbang",[1091]="Mountaineer Gravelgaw",[1092]="Captain Rugelfuss",[1093]="Chief Engineer Hinderweir VII",[1094]="Venture Co. Miner",[1095]="Venture Co. Workboss",[1096]="Venture Co. Geologist",[1097]="Venture Co. Mechanic",[1098]="Watcher Merant",[1099]="Watcher Gelwin",[1100]="Watcher Selkin",[1101]="Watcher Thayer",[1103]="Eldrin",[1104]="Grundel Harkin",[1105]="Jern Hornhelm",[1106]="Lost One Cook",[1108]="Mistvale Gorilla",[1109]="Fleshripper",[1110]="Skeletal Raider",[1111]="Leech Stalker",[1112]="Leech Widow",[1114]="Jungle Thunderer",[1115]="Rockjaw Skullthumper",[1116]="Rockjaw Ambusher",[1117]="Rockjaw Bonesnapper",[1118]="Rockjaw Backbreaker",[1119]="Hammerspine",[1120]="Frostmane Troll",[1121]="Frostmane Snowstrider",[1122]="Frostmane Hideskinner",[1123]="Frostmane Headhunter",[1124]="Frostmane Shadowcaster",[1125]="Crag Boar",[1126]="Large Crag Boar",[1127]="Elder Crag Boar",[1128]="Young Black Bear",[1129]="Black Bear",[1130]="Bjarn",[1131]="Winter Wolf",[1132]="Timber",[1133]="Starving Winter Wolf",[1134]="Young Wendigo",[1135]="Wendigo",[1137]="Edan the Howler",[1138]="Snow Tracker Wolf",[1139]="Magistrate Bluntnose",[1140]="Razormaw Matriarch",[1141]="Angus Stern",[1142]="Mosh'Ogg Brute",[1144]="Mosh'Ogg Witch Doctor",[1146]="Vharr",[1147]="Hragran",[1148]="Nerrist",[1149]="Uthok",[1150]="River Crocolisk",[1151]="Saltwater Crocolisk",[1152]="Snapjaw Crocolisk",[1153]="Torren Squarejaw",[1154]="Marek Ironheart",[1155]="Kelt Thomasin",[1156]="Vyrin Swiftwind",[1157]="Cursed Sailor",[1158]="Cursed Marine",[1159]="First Mate Snellig",[1160]="Captain Halyndor",[1161]="Stonesplinter Trogg",[1162]="Stonesplinter Scout",[1163]="Stonesplinter Skullthumper",[1164]="Stonesplinter Bonesnapper",[1165]="Stonesplinter Geomancer",[1166]="Stonesplinter Seer",[1167]="Stonesplinter Digger",[1169]="Dark Iron Insurgent",[1172]="Tunnel Rat Vermin",[1173]="Tunnel Rat Scout",[1174]="Tunnel Rat Geomancer",[1175]="Tunnel Rat Digger",[1176]="Tunnel Rat Forager",[1177]="Tunnel Rat Surveyor",[1178]="Mo'grosh Ogre",[1179]="Mo'grosh Enforcer",[1180]="Mo'grosh Brute",[1181]="Mo'grosh Shaman",[1182]="Brother Anton",[1183]="Mo'grosh Mystic",[1184]="Cliff Lurker",[1185]="Wood Lurker",[1186]="Black Bear",[1187]="Daryl the Youngling",[1188]="Grizzled Black Bear",[1189]="Black Bear Patriarch",[1190]="Mountain Boar",[1191]="Mangy Mountain Boar",[1192]="Elder Mountain Boar",[1193]="Loch Frenzy",[1194]="Mountain Buzzard",[1195]="Forest Lurker",[1196]="Ice Claw Bear",[1197]="Stonesplinter Shaman",[1198]="Rallic Finn",[1199]="Juvenile Snow Leopard",[1200]="Morbent Fel",[1201]="Snow Leopard",[1202]="Tunnel Rat Kobold",[1203]="Watcher Sarys",[1204]="Watcher Corwin",[1205]="Grawmug",[1206]="Gnasher",[1207]="Brawler",[1210]="Chok'sul",[1211]="Leper Gnome",[1212]="Bishop Farthing",[1213]="Godric Rothgar",[1214]="Aldren Cordon",[1215]="Alchemist Mallory",[1216]="Shore Crawler",[1217]="Glorin Steelbrow",[1218]="Herbalist Pomeroy",[1222]="Dark Iron Sapper",[1224]="Young Threshadon",[1225]="Ol' Sooty",[1226]="Maxan Anvol",[1227]="Rygal Rocknell",[1228]="Magis Sparkmantle",[1229]="Granis Swiftaxe",[1230]="[UNUSED] Lexin Haze",[1231]="Grif Wildheart",[1232]="Azar Stronghammer",[1233]="[UNUSED] Shaethis Darkoak",[1234]="Hogral Bakkan",[1236]="Kobold Digger",[1237]="Kazan Mogosh",[1238]="Gamili Frosthide",[1239]="First Mate Fitzsimmons",[1240]="Boran Ironclink",[1241]="Tognus Flintfire",[1242]="Karl Boran",[1243]="Hegnar Rumbleshot",[1244]="Rethiel the Greenwarden",[1245]="Kogan Forgestone",[1246]="Vosur Brakthel",[1247]="Innkeeper Belm",[1249]="Quartermaster Hudson",[1250]="Drake Lindgren",[1251]="Splinter Fist Firemonger",[1252]="Senir Whitebeard",[1253]="Father Gavin",[1254]="Foreman Stonebrow",[1255]="Prospector Gehn",[1256]="Quarrymaster Thesten",[1257]="Keldric Boucher",[1258]="Black Ravager Mastiff",[1259]="Gobbler",[1260]="Great Father Arctikus",[1261]="Veron Amberstill",[1263]="Yarlyn Amberstill",[1265]="Rudra Amberstill",[1266]="Tundra MacGrann",[1267]="Ragnar Thunderbrew",[1268]="Ozzie Togglevolt",[1269]="Razzle Sprysprocket",[1270]="Fetid Corpse",[1271]="Old Icebeard",[1273]="Grawn Thromwyn",[1274]="Senator Barin Redstone",[1275]="Kyra Boucher",[1276]="Mountaineer Brokk",[1277]="Mountaineer Ganin",[1278]="Mountaineer Stenn",[1279]="Mountaineer Flint",[1280]="Mountaineer Droken",[1281]="Mountaineer Zaren",[1282]="Mountaineer Veek",[1283]="Mountaineer Kalmir",[1284]="Archbishop Benedictus",[1285]="Thurman Mullby",[1286]="Edna Mullby",[1287]="Marda Weller",[1289]="Gunther Weller",[1291]="Carla Granger",[1292]="Maris Granger",[1293]="Ambo Cash",[1294]="Aldric Moore",[1295]="Lara Moore",[1296]="Felder Stover",[1297]="Lina Stover",[1298]="Frederick Stover",[1299]="Lisbeth Schneider",[1300]="Lawrence Schneider",[1301]="Julia Gallina",[1302]="Bernard Gump",[1303]="Felicia Gump",[1304]="Darian Singh",[1305]="Jarel Moor",[1307]="Charys Yserian",[1308]="Owen Vaughn",[1309]="Wynne Larson",[1310]="Evan Larson",[1311]="Joachim Brenlow",[1312]="Ardwyn Cailen",[1313]="Maria Lumere",[1314]="Duncan Cullen",[1315]="Allan Hafgan",[1316]="Adair Gilroy",[1317]="Lucan Cordell",[1318]="Jessara Cordell",[1319]="Bryan Cross",[1320]="Seoman Griffith",[1321]="Alyssa Griffith",[1322]="Maxton Strang",[1323]="Osric Strang",[1324]="Heinrich Stone",[1325]="Jasper Fel",[1326]="Sloan McCoy",[1327]="Reese Langston",[1328]="Elly Langston",[1329]="Mountaineer Naarh",[1330]="Mountaineer Tyraw",[1331]="Mountaineer Luxst",[1332]="Mountaineer Morran",[1333]="Gerik Koen",[1334]="Mountaineer Hammerfall",[1335]="Mountaineer Yuttha",[1336]="Mountaineer Zwarn",[1337]="Mountaineer Gwarth",[1338]="Mountaineer Dalk",[1339]="Mayda Thane",[1340]="Mountaineer Kadrell",[1341]="Wilhelm Strang",[1342]="Mountaineer Rockgar",[1343]="Mountaineer Stormpike",[1344]="Prospector Ironband",[1345]="Magmar Fellhew",[1346]="Georgio Bolero",[1347]="Alexandra Bolero",[1348]="Gregory Ardus",[1349]="Agustus Moulaine",[1350]="Theresa Moulaine",[1351]="Brother Cassius",[1352]="Fluffy",[1353]="Sarltooth",[1354]="Apprentice Soren",[1355]="Cook Ghilm",[1356]="Prospector Stormpike",[1358]="Miner Grothor",[1360]="Miner Grumnal",[1362]="Gothor Brumn",[1364]="Balgaras the Foul",[1365]="Goli Krumn",[1366]="Adam",[1367]="Billy",[1368]="Justin",[1370]="Brandon",[1371]="Roman",[1373]="Jarven Thunderbrew",[1374]="Rejold Barleybrew",[1375]="Marleth Barleybrew",[1376]="Beldin Steelgrill",[1377]="Pilot Stonegear",[1378]="Pilot Bellowfiz",[1379]="Miran",[1380]="Saean",[1381]="Krakk",[1382]="Mudduk",[1383]="Snarl",[1385]="Brawn",[1386]="Rogvar",[1387]="Thysta",[1388]="Vagash",[1393]="Berserk Trogg",[1395]="Ol' Beasley",[1397]="Frostmane Seer",[1398]="Boss Galgosh",[1399]="Magosh",[1400]="Wetlands Crocolisk",[1402]="Topper McNabb",[1404]="Kragg",[1405]="Morris Lawry",[1407]="Sranda",[1410]="Firewing Bloodwarder",[1411]="Ian Strom",[1412]="Squirrel",[1413]="Janey Anship",[1414]="Lisan Pierce",[1415]="Suzanne",[1416]="Grimand Elmore",[1417]="Young Wetlands Crocolisk",[1418]="Bluegill Raider",[1419]="Fizzles",[1420]="Toad",[1421]="Private Merle",[1422]="Corporal Sethman",[1423]="Stormwind Guard",[1424]="Master Digger",[1425]="Kubb",[1426]="Riverpaw Miner",[1427]="Harlan Bagley",[1428]="Rema Schneider",[1429]="Thurman Schneider",[1430]="Tomas",[1431]="Suzetta Gallina",[1432]="Renato Gallina",[1433]="Corbett Schneider",[1434]="Menethil Sentry",[1435]="Zardeth of the Black Claw",[1436]="Watcher Cutford",[1437]="Thomas Booker",[1439]="Lord Baurles K. Wishock",[1440]="Milton Sheaf",[1441]="Brak Durnad",[1442]="Helgrum the Swift",[1443]="Fel'zerul",[1444]="Brother Kristoff",[1445]="Jesse Halloran",[1446]="Regina Halloran",[1447]="Gimlok Rumdnul",[1448]="Neal Allen",[1449]="Witch Doctor Unbagwa",[1450]="Brahnmar",[1451]="Camerick Jongleur",[1452]="Gruham Rumdnul",[1453]="Dewin Shimmerdawn",[1454]="Jennabink Powerseam",[1456]="Kersok Prond",[1457]="Samor Festivus",[1458]="Telurinon Moonshadow",[1459]="Naela Trance",[1460]="Unger Statforth",[1461]="Murndan Derth",[1462]="Edwina Monzor",[1463]="Falkan Armonis",[1464]="Innkeeper Helbrek",[1465]="Drac Roughcut",[1466]="Gretta Finespindle",[1469]="Vrok Blunderblast",[1470]="Ghak Healtouch",[1471]="Jannos Ironwill",[1472]="Morgg Stormshot",[1473]="Kali Healtouch",[1474]="Rann Flamespinner",[1475]="Menethil Guard",[1476]="Hargin Mundar",[1477]="Christoph Faral",[1478]="Aedis Brom",[1479]="Timothy Clark",[1480]="Caitlin Grassman",[1481]="Bart Tidewater",[1482]="Andrea Halloran",[1483]="Murphy West",[1484]="Derina Rumdnul",[1487]="Splinter Fist Enslaver",[1488]="Zanzil Zombie",[1489]="Zanzil Hunter",[1490]="Zanzil Witch Doctor",[1491]="Zanzil Naga",[1492]="Gorlash",[1493]="Mok'rash the Cleaver",[1494]="Negolash",[1495]="Deathguard Linnea",[1496]="Deathguard Dillinger",[1497]="Gunther Arcanus",[1498]="Bethor Iceshard",[1499]="Magistrate Sevren",[1500]="Coleman Farthing",[1501]="Mindless Zombie",[1502]="Wretched Ghoul",[1504]="Young Night Web Spider",[1505]="Night Web Spider",[1506]="Scarlet Convert",[1507]="Scarlet Initiate",[1508]="Young Scavenger",[1509]="Ragged Scavenger",[1511]="Enraged Silverback Gorilla",[1512]="Duskbat",[1513]="Mangy Duskbat",[1514]="Mokk the Savage",[1515]="Executor Zygand",[1516]="Konda",[1518]="Apothecary Johaan",[1519]="Deathguard Simmer",[1520]="Rattlecage Soldier",[1521]="Gretchen Dedmar",[1522]="Darkeye Bonecaster",[1523]="Cracked Skull Soldier",[1525]="Rotting Dead",[1526]="Ravaged Corpse",[1527]="Hungering Dead",[1528]="Shambling Horror",[1529]="Bleeding Horror",[1530]="Rotting Ancestor",[1531]="Lost Soul",[1532]="Wandering Spirit",[1533]="Tormented Spirit",[1534]="Wailing Ancestor",[1535]="Scarlet Warrior",[1536]="Scarlet Missionary",[1537]="Scarlet Zealot",[1538]="Scarlet Friar",[1539]="Scarlet Neophyte",[1540]="Scarlet Vanguard",[1541]="Vile Fin Murloc",[1543]="Vile Fin Puddlejumper",[1544]="Vile Fin Minor Oracle",[1545]="Vile Fin Muckdweller",[1546]="[UNUSED] Kegnar Thraln",[1547]="Decrepit Darkhound",[1548]="Cursed Darkhound",[1549]="Ravenous Darkhound",[1550]="Thrashtail Basilisk",[1551]="Ironjaw Basilisk",[1552]="Scale Belly",[1553]="Greater Duskbat",[1554]="Vampiric Duskbat",[1555]="Vicious Night Web Spider",[1557]="Elder Mistvale Gorilla",[1558]="Silverback Patriarch",[1559]="King Mukla",[1560]="Yvette Farthing",[1561]="Bloodsail Raider",[1562]="Bloodsail Mage",[1563]="Bloodsail Swashbuckler",[1564]="Bloodsail Warlock",[1565]="Bloodsail Sea Dog",[1568]="Undertaker Mordo",[1569]="Shadow Priest Sarvis",[1570]="Executor Arren",[1571]="Shellei Brondir",[1572]="Thorgrum Borrelson",[1573]="Gryth Thurden",[1574]="Mage 1",[1575]="Mage 5",[1629]="Priest 20",[1632]="Adele Fielder",[1642]="Northshire Guard",[1645]="Quartermaster Hicks",[1646]="Baros Alexston",[1650]="Terry Palin",[1651]="Lee Brown",[1652]="Deathguard Burgess",[1653]="Bloodsail Elder Magus",[1654]="Gregor Agamand",[1655]="Nissa Agamand",[1656]="Thurman Agamand",[1657]="Devlin Agamand",[1658]="Captain Dargol",[1660]="Scarlet Bodyguard",[1661]="Novice Elreth",[1662]="Captain Perrine",[1663]="Dextren Ward",[1664]="Captain Vachon",[1665]="Captain Melrache",[1666]="Kam Deepfury",[1667]="Meven Korgal",[1668]="William MacGregor",[1669]="Defias Profiteer",[1670]="Mike Miller",[1671]="Lamar Veisilli",[1672]="Lohgan Eva",[1673]="Alyssa Eva",[1674]="Rot Hide Gnoll",[1675]="Rot Hide Mongrel",[1676]="Finbus Geargrind",[1678]="Vernon Hale",[1679]="Avarus Kharag",[1680]="Matthew Hooper",[1681]="Brock Stoneseeker",[1682]="Yanni Stoutheart",[1683]="Warg Deepwater",[1684]="Khara Deepwater",[1685]="Xandar Goodbeard",[1686]="Irene Sureshot",[1687]="Cliff Hadin",[1688]="Night Web Matriarch",[1689]="Scarred Crag Boar",[1690]="Thrawn Boltar",[1691]="Kreg Bilmn",[1692]="Golorn Frostbeard",[1693]="Loch Crocolisk",[1694]="Loslor Rudge",[1695]="Rendow",[1696]="Targorr the Dread",[1697]="Keeg Gibn",[1698]="Frast Dokner",[1699]="Gremlock Pilsnor",[1700]="Paxton Ganter",[1701]="Dank Drizzlecut",[1702]="Bronk Guzzlegear",[1703]="Uthrar Threx",[1706]="Prisoner",[1707]="Defias Captive",[1708]="Defias Inmate",[1711]="Convict",[1713]="Elder Shadowmaw Panther",[1715]="Insurgent",[1716]="Bazil Thredd",[1717]="Hamhock",[1718]="Rockjaw Raider",[1719]="Warden Thelwater",[1720]="Bruegal Ironknuckle",[1721]="Nikova Raskol",[1725]="Defias Watchman",[1726]="Defias Magician",[1727]="Defias Worker",[1729]="Defias Evoker",[1731]="Goblin Craftsman",[1732]="Defias Squallshaper",[1733]="Zggi",[1735]="Deathguard Abraham",[1736]="Deathguard Randolph",[1737]="Deathguard Oliver",[1738]="Deathguard Terrence",[1739]="Deathguard Phillip",[1740]="Deathguard Saltain",[1741]="Deathguard Bartrand",[1742]="Deathguard Bartholomew",[1743]="Deathguard Lawrence",[1744]="Deathguard Mort",[1745]="Deathguard Morris",[1746]="Deathguard Cyrus",[1747]="Anduin Wrynn",[1748]="Highlord Bolvar Fordragon",[1749]="Lady Katrana Prestor",[1750]="Grand Admiral Jes-Tereth",[1751]="Mithras Ironhill",[1752]="Caledra Dawnbreeze",[1753]="Maggot Eye",[1754]="Lord Gregor Lescovar",[1755]="Marzon the Silent Blade",[1756]="Stormwind Royal Guard",[1757]="Mega Rabbit",[1763]="Gilnid",[1764]="Greater Feral Spirit",[1765]="Worg",[1766]="Rabid Worg",[1767]="Vile Fin Shredder",[1768]="Vile Fin Tidehunter",[1769]="Moonrage Whitescalp",[1770]="Moonrage Darkrunner",[1772]="Rot Hide Gladerunner",[1773]="Rot Hide Mystic",[1775]="Zun'dartha",[1776]="Magtoor",[1777]="Dakk Blunderblast",[1778]="Ferocious Grizzled Bear",[1779]="Moonrage Glutton",[1780]="Skitterweb Striker",[1781]="Skitterweb Lurker",[1782]="Moonrage Darksoul",[1783]="Skeletal Flayer",[1784]="Skeletal Sorcerer",[1785]="Skeletal Terror",[1787]="Skeletal Executioner",[1788]="Skeletal Warlord",[1789]="Skeletal Acolyte",[1791]="Slavering Ghoul",[1793]="Rotting Ghoul",[1794]="Soulless Ghoul",[1795]="Searing Ghoul",[1796]="Freezing Ghoul",[1797]="Giant Rabid Bear",[1800]="Cold Wraith",[1801]="Blood Wraith",[1802]="Hungering Wraith",[1804]="Wailing Death",[1805]="Flesh Golem",[1806]="Vile Slime",[1808]="Devouring Ooze",[1809]="Carrion Vulture",[1812]="Rotting Behemoth",[1813]="Decaying Horror",[1815]="Diseased Black Bear",[1816]="Diseased Grizzly",[1817]="Diseased Wolf",[1821]="Carrion Lurker",[1822]="Venom Mist Lurker",[1824]="Plague Lurker",[1826]="Scarlet Mage",[1827]="Scarlet Sentinel",[1831]="Scarlet Hunter",[1832]="Scarlet Magus",[1833]="Scarlet Knight",[1834]="Scarlet Paladin",[1835]="Scarlet Invoker",[1836]="Scarlet Cavalier",[1837]="Scarlet Judge",[1838]="Scarlet Interrogator",[1839]="Scarlet High Clerist",[1840]="Grand Inquisitor Isillien",[1841]="Scarlet Executioner",[1842]="Highlord Taelan Fordring",[1843]="Foreman Jerris",[1844]="Foreman Marcrid",[1845]="High Protector Tarsen",[1846]="High Protector Lorik",[1847]="Foulmane",[1848]="Lord Maldazzar",[1849]="Dreadwhisper",[1850]="Putridius",[1851]="The Husk",[1852]="Araj the Summoner",[1853]="Darkmaster Gandling",[1854]="High Priest Thel'danis",[1855]="Tirion Fordring",[1860]="Voidwalker",[1863]="Succubus",[1865]="Ravenclaw Raider",[1866]="Ravenclaw Slave",[1867]="Dalaran Apprentice",[1868]="Ravenclaw Servant",[1869]="Ravenclaw Champion",[1870]="Hand of Ravenclaw",[1871]="Eliza's Guard",[1872]="Tharek Blackstone",[1880]="Berte",[1883]="Scarlet Worker",[1884]="Scarlet Lumberjack",[1885]="Scarlet Smith",[1888]="Ambermill Watcher",[1889]="Ambermill Witchalok",[1890]="Rattlecage Skeleton",[1891]="Pyrewood Watcher",[1892]="Moonrage Watcher",[1893]="Moonrage Sentry",[1894]="Pyrewood Sentry",[1895]="Pyrewood Elder",[1896]="Moonrage Elder",[1901]="Kelstrum Stonebreaker",[1907]="Naga Explorer",[1908]="Vile Fin Oracle",[1909]="Vile Fin Lakestalker",[1910]="Muad",[1911]="Deeb",[1912]="Ambermill Protector",[1913]="Ambermill Warder",[1914]="Ambermill Mage",[1915]="Ambermill Conjuror",[1916]="Stephen Bhartec",[1917]="Daniel Ulfman",[1918]="Karrel Grayves",[1919]="Samuel Fipps",[1920]="Dalaran Spellscribe",[1921]="Combat Dummy",[1922]="Gray Forest Wolf",[1923]="Bloodsnout Worg",[1924]="Moonrage Bloodhowler",[1931]="Captured Scarlet Zealot",[1933]="Sheep",[1934]="Tirisfal Farmer",[1935]="Tirisfal Farmhand",[1936]="Farmer Solliden",[1937]="Apothecary Renferrel",[1938]="Dalar Dawnweaver",[1939]="Rot Hide Brute",[1940]="Rot Hide Plague Weaver",[1941]="Rot Hide Graverobber",[1942]="Rot Hide Savage",[1943]="Raging Rot Hide",[1944]="Rot Hide Bruiser",[1946]="Lillith Nefara",[1947]="Thule Ravenclaw",[1948]="Snarlmane",[1949]="Servant of Azora",[1950]="Rane Yorick",[1951]="Quinn Yorick",[1952]="High Executor Hadrec",[1953]="Lake Skulker",[1954]="Elder Lake Skulker",[1955]="Lake Creeper",[1956]="Elder Lake Creeper",[1957]="Vile Fin Shorecreeper",[1958]="Vile Fin Tidecaller",[1959]="Mountaineer Barleybrew",[1960]="Pilot Hammerfoot",[1961]="Mangeclaw",[1963]="Vidra Hearthstove",[1964]="Treant",[1965]="Mountaineer Thalos",[1971]="Ivar the Foul",[1972]="Grimson the Pale",[1973]="Ravenclaw Guardian",[1974]="Ravenclaw Drudger",[1975]="Eastvale Lumberjack",[1976]="Stormwind City Patroller",[1977]="Senator Mehr Stonehallow",[1978]="Deathstalker Erland",[1981]="Dark Iron Ambusher",[1983]="Nightlash",[1984]="Young Thistle Boar",[1985]="Thistle Boar",[1986]="Webwood Spider",[1988]="Grell",[1989]="Grellkin",[1992]="Tarindrella",[1993]="Greenpaw",[1994]="Githyiss the Vile",[1995]="Strigid Owl",[1996]="Strigid Screecher",[1997]="Strigid Hunter",[1998]="Webwood Lurker",[1999]="Webwood Venomfang",[2000]="Webwood Silkspinner",[2001]="Giant Webwood Spider",[2002]="Rascal Sprite",[2003]="Shadow Sprite",[2004]="Dark Sprite",[2005]="Vicious Grell",[2006]="Gnarlpine Ursa",[2007]="Gnarlpine Gardener",[2008]="Gnarlpine Warrior",[2009]="Gnarlpine Shaman",[2010]="Gnarlpine Defender",[2011]="Gnarlpine Augur",[2012]="Gnarlpine Pathfinder",[2013]="Gnarlpine Avenger",[2014]="Gnarlpine Totemic",[2015]="Bloodfeather Harpy",[2017]="Bloodfeather Rogue",[2018]="Bloodfeather Sorceress",[2019]="Bloodfeather Fury",[2020]="Bloodfeather Wind Witch",[2021]="Bloodfeather Matriarch",[2022]="Timberling",[2025]="Timberling Bark Ripper",[2027]="Timberling Trampler",[2029]="Timberling Mire Beast",[2030]="Elder Timberling",[2031]="Young Nightsaber",[2032]="Mangy Nightsaber",[2033]="Elder Nightsaber",[2034]="Feral Nightsaber",[2038]="Lord Melenas",[2039]="Ursal the Mauler",[2041]="Ancient Protector",[2042]="Nightsaber",[2043]="Nightsaber Stalker",[2044]="Forlorn Spirit",[2046]="Andrew Krighton",[2050]="Raleigh Andrean",[2053]="Haggard Refugee",[2054]="Sickly Refugee",[2055]="Master Apothecary Faranell",[2056]="Ravenclaw Apparition",[2057]="Huldar",[2058]="Deathstalker Faerleia",[2060]="Councilman Smithers",[2061]="Councilman Thatcher",[2062]="Councilman Hendricks",[2063]="Councilman Wilhelm",[2064]="Councilman Hartin",[2065]="Councilman Cooper",[2066]="Councilman Higarth",[2067]="Councilman Brunswick",[2068]="Lord Mayor Morrison",[2069]="Moonstalker",[2070]="Moonstalker Runt",[2071]="Moonstalker Matriarch",[2077]="Melithar Staghelm",[2078]="Athridas Bearmantle",[2079]="Ilthalaine",[2080]="Denalan",[2081]="Sentinel Kyra Starsong",[2082]="Gilshalan Windwalker",[2083]="Syral Bladeleaf",[2084]="Natheril Raincaller",[2086]="Valstag Ironjaw",[2089]="Giant Wetlands Crocolisk",[2090]="Ma'ruk Wyrmscale",[2091]="Chieftain Nek'rosh",[2092]="Pilot Longbeard",[2093]="Einar Stonegrip",[2094]="James Halloran",[2096]="Tarrel Rockweaver",[2097]="Harlo Barnaby",[2098]="Ram",[2099]="Maiden's Virtue Crewman",[2102]="Dragonmaw Grunt",[2103]="Dragonmaw Scout",[2104]="Captain Stoutfist",[2105]="Mountaineer Dokkin",[2106]="Apothecary Berard",[2107]="Gaerolas Talvethren",[2108]="Garneg Charskull",[2110]="Black Rat",[2111]="Sida",[2112]="Farrin Daris",[2113]="Archibald Kava",[2114]="Faruza",[2115]="Joshua Kien",[2116]="Blacksmith Rand",[2117]="Harold Raims",[2118]="Abigail Shiel",[2119]="Dannal Stern",[2120]="Archmage Ataeric",[2121]="Shadow Priest Allister",[2122]="David Trias",[2123]="Dark Cleric Duesten",[2124]="Isabella",[2126]="Maximillion",[2127]="Rupert Boch",[2128]="Cain Firesong",[2129]="Dark Cleric Beryl",[2130]="Marion Call",[2131]="Austil de Mon",[2132]="Carolai Anise",[2134]="Mrs. Winters",[2135]="Abe Winters",[2136]="Oliver Dwor",[2137]="Eliza Callen",[2140]="Edwin Harly",[2142]="Watcher Callahan",[2149]="Dark Iron Raider",[2150]="Zenn Foulhoof",[2151]="Moon Priestess Amara",[2152]="Gnarlpine Ambusher",[2153]="Terl Arakor",[2155]="Sentinel Shayla Nightbreeze",[2156]="Cracked Golem",[2157]="Stone Behemoth",[2158]="Gravelflint Scout",[2159]="Gravelflint Bonesnapper",[2160]="Gravelflint Geomancer",[2162]="Agal",[2163]="Thistle Bear",[2164]="Rabid Thistle Bear",[2165]="Grizzled Thistle Bear",[2166]="Oakenscowl",[2167]="Blackwood Pathfinder",[2168]="Blackwood Warrior",[2169]="Blackwood Totemic",[2170]="Blackwood Ursa",[2171]="Blackwood Shaman",[2172]="Strider Clutchmother",[2173]="Reef Frenzy",[2174]="Coastal Frenzy",[2175]="Shadowclaw",[2176]="Cursed Highborne",[2177]="Writhing Highborne",[2178]="Wailing Highborne",[2179]="Stormscale Wave Rider",[2180]="Stormscale Siren",[2181]="Stormscale Myrmidon",[2182]="Stormscale Sorceress",[2183]="Stormscale Warrior",[2184]="Lady Moongazer",[2185]="Darkshore Thresher",[2186]="Carnivous the Breaker",[2187]="Elder Darkshore Thresher",[2188]="Deep Sea Threshadon",[2189]="Vile Sprite",[2190]="Wild Grell",[2191]="Licillin",[2192]="Firecaller Radison",[2198]="Crier Goodman",[2201]="Greymist Raider",[2202]="Greymist Coastrunner",[2203]="Greymist Seer",[2204]="Greymist Netter",[2205]="Greymist Warrior",[2206]="Greymist Hunter",[2207]="Greymist Oracle",[2208]="Greymist Tidehunter",[2209]="Deathguard Gavin",[2210]="Deathguard Royann",[2211]="Captured Mountaineer",[2212]="Deth'ryll Satyr",[2214]="Deathstalker Lesh",[2215]="High Executor Darthalia",[2216]="Apothecary Lydon",[2225]="Zora Guthrek",[2226]="Karos Razok",[2227]="Sharlindra",[2228]="Lieutenant Farren Orinelle",[2229]="Krusk",[2230]="Umpi",[2231]="Pygmy Tide Crawler",[2232]="Tide Crawler",[2233]="Encrusted Tide Crawler",[2234]="Young Reef Crawler",[2235]="Reef Crawler",[2236]="Raging Reef Crawler",[2237]="Moonstalker Sire",[2238]="Tog'thar",[2239]="Drull",[2240]="Syndicate Footpad",[2241]="Syndicate Thief",[2242]="Syndicate Spy",[2243]="Syndicate Sentry",[2244]="Syndicate Shadow Mage",[2245]="Syndicate Saboteur",[2246]="Syndicate Assassin",[2247]="Syndicate Enforcer",[2248]="Cave Yeti",[2249]="Ferocious Yeti",[2250]="Mountain Yeti",[2251]="Giant Yeti",[2252]="Crushridge Ogre",[2253]="Crushridge Brute",[2254]="Crushridge Mauler",[2255]="Crushridge Mage",[2256]="Crushridge Enforcer",[2257]="Mug'thol",[2258]="Maggarrak",[2260]="Syndicate Rogue",[2261]="Syndicate Watchman",[2263]="Marshal Redpath",[2264]="Hillsbrad Tailor",[2265]="Hillsbrad Apprentice Blacksmith",[2266]="Hillsbrad Farmer",[2267]="Hillsbrad Peasant",[2268]="Hillsbrad Footman",[2269]="Hillsbrad Miner",[2270]="Hillsbrad Sentry",[2271]="Dalaran Shield Guard",[2272]="Dalaran Theurgist",[2274]="Stanley",[2275]="Enraged Stanley",[2276]="Magistrate Henry Maleb",[2277]="Loremaster Dibbs",[2278]="Melisara",[2283]="Ravenclaw Regent",[2284]="Captured Farmer",[2285]="Count Remington Ridgewell",[2287]="Crushridge Warmonger",[2299]="Borgus Stoutarm",[2302]="Aethalas",[2303]="Lyranne Feathersong",[2304]="Captain Ironhill",[2305]="Foreman Bonds",[2306]="Baron Vardus",[2307]="Caretaker Caice",[2308]="Andrew Brownell",[2309]="Thomas Arlento",[2310]="Jamie Nore",[2311]="Doreen Beltis",[2314]="Sahvan Bloodshadow",[2315]="Maquell Ebonwood",[2316]="Gol'dir",[2317]="Elysa",[2318]="Argus Shadow Mage",[2319]="Syndicate Wizard",[2320]="Nagaz",[2321]="Foreststrider Fledgling",[2322]="Foreststrider",[2323]="Giant Foreststrider",[2324]="Blackwood Windtalker",[2326]="Thamner Pol",[2327]="Shaina Fuller",[2329]="Michelle Belle",[2330]="Karlee Chaddis",[2331]="Paige Chaddis",[2332]="Valdred Moray",[2333]="Henchman Valik",[2334]="Event Generator 001",[2335]="Magistrate Burnside",[2336]="Dark Strand Fanatic",[2337]="Dark Strand Voidcaller",[2338]="Twilight Disciple",[2339]="Twilight Thug",[2344]="Dun Garok Mountaineer",[2345]="Dun Garok Rifleman",[2346]="Dun Garok Priest",[2347]="Wild Gryphon",[2348]="Elder Moss Creeper",[2349]="Domesticated Creeper",[2350]="Forest Creeper",[2351]="Gray Bear",[2352]="Innkeeper Anderson",[2354]="Vicious Gray Bear",[2356]="Elder Gray Bear",[2357]="Merideth Carlson",[2358]="Dalaran Summoner",[2359]="Elemental Slave",[2360]="Hillsbrad Farmhand",[2361]="Tamara Armstrong",[2362]="Hemmit Armstrong",[2363]="Apprentice Honeywell",[2364]="Neema",[2365]="Bront Coldcleave",[2366]="Barkeep Kelly",[2367]="Donald Rabonne",[2368]="Daggerspine Shorestalker",[2369]="Daggerspine Shorehunter",[2370]="Daggerspine Screamer",[2371]="Daggerspine Siren",[2372]="Mudsnout Gnoll",[2373]="Mudsnout Shaman",[2374]="Torn Fin Muckdweller",[2375]="Torn Fin Coastrunner",[2376]="Torn Fin Oracle",[2377]="Torn Fin Tidehunter",[2378]="Kundric Zanden",[2379]="Caretaker Smithers",[2380]="Nandar Branson",[2381]="Micha Yance",[2382]="Darren Malvew",[2383]="Lindea Rabonne",[2384]="Starving Mountain Lion",[2385]="Foothill Stalker",[2386]="Alliance Guard",[2387]="Hillsbrad Councilman",[2388]="Innkeeper Shay",[2389]="Zarise",[2390]="Aranae Venomblood",[2391]="Serge Hinott",[2392]="Delia Verana",[2393]="Christoph Jeffcoat",[2394]="Mallen Swain",[2395]="Vinna Wayne",[2396]="Hans Zandin",[2397]="Derak Nightfall",[2398]="Tara Coldgaze",[2399]="Daryl Stack",[2400]="Craig Hewitt",[2401]="Kayren Soothallow",[2402]="Shara Blazen",[2403]="Farmer Getz",[2404]="Blacksmith Verringtan",[2405]="Tarren Mill Deathguard",[2406]="Mountain Lion",[2407]="Hulking Mountain Lion",[2408]="Snapjaw",[2409]="Felicia Maline",[2410]="Magus Wordeen Voidglare",[2411]="Ricter",[2412]="Alina",[2413]="Dermot",[2414]="Kegan Darkmar",[2415]="Warden Belamoore",[2416]="Crushridge Plunderer",[2417]="Grel'borg the Miser",[2418]="Deathguard Samsa",[2419]="Deathguard Humbert",[2420]="Targ",[2421]="Muckrake",[2422]="Glommus",[2423]="Lord Aliden Perenolde",[2424]="Guild Banker",[2425]="Varimathras",[2427]="Jailor Eston",[2428]="Jailor Marlgen",[2429]="Novice Thaivand",[2430]="Chef Jessen",[2431]="Jailor Borhuin",[2432]="Darla Harris",[2433]="Helcular's Remains",[2434]="Shadowy Assassin",[2435]="Southshore Crier",[2436]="Farmer Kent",[2437]="Keeper Bel'varil",[2438]="Bartolo Ginsetti",[2439]="Major Samuelson",[2440]="Drunken Footpad",[2442]="Cow",[2447]="Narillasanz",[2448]="Clerk Horrace Whitesteed",[2449]="Citizen Wilkes",[2450]="Miner Hackett",[2451]="Farmer Kalaba",[2452]="Skhowl",[2453]="Lo'Grosh",[2455]="Olivia Burnside",[2456]="Newton Burnside",[2457]="John Burnside",[2458]="Randolph Montague",[2459]="Mortimer Montague",[2460]="Barnum Stonemantle",[2461]="Bailey Stonemantle",[2462]="Flesh Eating Worm",[2464]="Commander Aggro'gosh",[2465]="Far Seer Mok'thardin",[2466]="Mountaineer Grugelm",[2468]="Mountaineer Thar",[2469]="Mountaineer Rharen",[2470]="Watcher Fraizer",[2473]="Granistad",[2474]="Kurdros",[2475]="Sloth",[2476]="Gosh-Haldir",[2477]="Gradok",[2478]="Haren Swifthoof",[2479]="Sludge",[2480]="Bro'kin",[2481]="Bliztik",[2482]="Zarena Cromwind",[2483]="Jaquilina Dramet",[2485]="Larimaine Purdue",[2486]="Fin Fizracket",[2487]="Fleet Master Seahorn",[2488]="Deeg",[2489]="Milstaff Stormeye",[2490]="First Mate Crazz",[2491]="Whiskey Slim",[2492]="Lexington Mortaim",[2493]="Dizzy One-Eye",[2494]="Privateer Bloads",[2495]="Drizzlik",[2496]="Baron Revilgaz",[2497]="Nimboya",[2498]="Crank Fizzlebub",[2499]="Markel Smythe",[2500]="Captain Hecklebury Smotts",[2503]="Hillsbrad Foreman",[2504]="Donyal Tovald",[2505]="Saltwater Snapjaw",[2506]="Mountaineer Harn",[2507]="Mountaineer Uthan",[2508]="Mountaineer Wuar",[2509]="Mountaineer Cragg",[2510]="Mountaineer Ozmok",[2511]="Mountaineer Bludd",[2512]="Mountaineer Roghan",[2513]="Mountaineer Janha",[2514]="Mountaineer Modax",[2515]="Mountaineer Fazgard",[2516]="Mountaineer Kamdar",[2517]="Mountaineer Langarr",[2518]="Mountaineer Swarth",[2519]="Kin'weelay",[2520]="Remote-Controlled Golem",[2521]="Skymane Gorilla",[2522]="Jaguero Stalker",[2523]="Searing Totem",[2524]="Mountaineer Haggis",[2525]="Mountaineer Barn",[2526]="Mountaineer Morlic",[2527]="Mountaineer Angst",[2528]="Mountaineer Haggil",[2529]="Son of Arugal",[2530]="Yenniku",[2531]="Minion of Doane",[2532]="Donna",[2533]="William",[2534]="Zanzil the Outcast",[2536]="Jon-Jon the Crow",[2540]="Ambermill Serpent",[2541]="Lord Sakrasis",[2542]="Catelyn the Blade",[2543]="Archmage Ansirem Runeweaver",[2544]="Southern Sand Crawler",[2546]="Fleet Master Firallon",[2547]="Ironpatch",[2548]="Captain Keelhaul",[2549]="Garr Salthoof",[2550]="Captain Stillwater",[2551]="Brutus",[2552]="Witherbark Troll",[2553]="Witherbark Shadowcaster",[2554]="Witherbark Axe Thrower",[2555]="Witherbark Witch Doctor",[2556]="Witherbark Headhunter",[2557]="Witherbark Shadow Hunter",[2558]="Witherbark Berserker",[2559]="Highland Strider",[2560]="Highland Thrasher",[2561]="Highland Fleshstalker",[2562]="Boulderfist Ogre",[2563]="Plains Creeper",[2564]="Boulderfist Enforcer",[2565]="Giant Plains Creeper",[2566]="Boulderfist Brute",[2567]="Boulderfist Magus",[2569]="Boulderfist Mauler",[2570]="Boulderfist Shaman",[2571]="Boulderfist Lord",[2572]="Drywhisker Kobold",[2573]="Drywhisker Surveyor",[2574]="Drywhisker Digger",[2575]="Dark Iron Supplier",[2577]="Dark Iron Shadowcaster",[2578]="Young Mesa Buzzard",[2579]="Mesa Buzzard",[2580]="Elder Mesa Buzzard",[2581]="Dabyrie Militia",[2582]="Dabyrie Laborer",[2583]="Stromgarde Troll Hunter",[2584]="Stromgarde Defender",[2585]="Stromgarde Soldier",[2586]="Syndicate Highwayman",[2587]="Syndicate Pathstalker",[2588]="Syndicate Prowler",[2589]="Syndicate Mercenary",[2590]="Syndicate Conjuror",[2591]="Syndicate Magus",[2592]="Rumbling Exile",[2594]="Sprogger",[2595]="Daggerspine Raider",[2596]="Daggerspine Sorceress",[2597]="Lord Falconcrest",[2598]="Darbel Montrose",[2599]="Otto",[2600]="Singer",[2601]="Foulbelly",[2602]="Ruul Onestone",[2603]="Kovork",[2604]="Molok the Crusher",[2605]="Zalas Witherbark",[2606]="Nimar the Slayer",[2607]="Prince Galen Trollbane",[2608]="Commander Amaren",[2609]="Geomancer Flintdagger",[2610]="Shakes O'Breen",[2611]="Fozruk",[2612]="Lieutenant Valorcall",[2614]="Air Force Alarm Bot (Alliance)",[2615]="Air Force Alarm Bot (Horde)",[2616]="Privateer Groy",[2618]="Hammerfall Peon",[2619]="Hammerfall Grunt",[2620]="Prairie Dog",[2621]="Hammerfall Guardian",[2622]="Sly Garrett",[2623]="Spirit of Old",[2624]="Gazban",[2625]="Viznik Goldgrubber",[2626]="Old Man Heming",[2627]="Grarnik Goodstitch",[2628]="Dalaran Worker",[2630]="Earthbind Totem",[2634]="Princess Poobah",[2635]="Elder Snapjaw Crocolisk",[2636]="Blackwater Deckhand",[2637]="Syndicate Bomb",[2638]="Syndicate Spectre",[2639]="Vilebranch Axe Thrower",[2640]="Vilebranch Witch Doctor",[2641]="Vilebranch Headhunter",[2642]="Vilebranch Shadowcaster",[2643]="Vilebranch Berserker",[2644]="Vilebranch Hideskinner",[2645]="Vilebranch Shadow Hunter",[2646]="Vilebranch Blood Drinker",[2647]="Vilebranch Soul Eater",[2648]="Vilebranch Aman'zasi Guard",[2649]="Witherbark Scalper",[2650]="Witherbark Zealot",[2651]="Witherbark Hideskinner",[2652]="Witherbark Venomblood",[2653]="Witherbark Sadist",[2654]="Witherbark Caller",[2655]="Green Sludge",[2656]="Jade Ooze",[2657]="Trained Razorbeak",[2658]="Razorbeak Gryphon",[2659]="Razorbeak Skylord",[2663]="Narkk",[2664]="Kelsey Yance",[2667]="Ward of Laze",[2668]="Danielle Zipstitch",[2669]="Sheri Zipstitch",[2670]="Xizk Goodstitch",[2671]="Mechanical Squirrel",[2672]="Cowardly Crosby",[2673]="Target Dummy",[2674]="Advanced Target Dummy",[2675]="Explosive Sheep",[2676]="Compact Harvest Reaper",[2678]="Mechanical Dragonling",[2679]="Wenna Silkbeard",[2680]="Vilebranch Wolf Pup",[2681]="Vilebranch Raiding Wolf",[2682]="Fradd Swiftgear",[2683]="Namdo Bizzfizzle",[2684]="Rizz Loosebolt",[2685]="Mazk Snipeshot",[2686]="Witherbark Broodguard",[2687]="Gnaz Blunderflame",[2688]="Ruppo Zipcoil",[2691]="Highvale Outrunner",[2692]="Highvale Scout",[2693]="Highvale Marksman",[2694]="Highvale Ranger",[2695]="Sara Balloo",[2696]="Foggy MacKreel",[2697]="Clyde Ranthal",[2698]="George Candarte",[2699]="Rikqiz",[2700]="Captain Nials",[2701]="Dustbelcher Ogre",[2703]="Zengu",[2704]="Hanashi",[2705]="Brewmeister Bilger",[2706]="Tor'gan",[2707]="Shadra",[2708]="Archmage Malin",[2711]="Phin Odelic",[2712]="Quae",[2713]="Kinelory",[2714]="Forsaken Courier",[2715]="Dustbelcher Brute",[2716]="Dustbelcher Wyrmhunter",[2717]="Dustbelcher Mauler",[2718]="Dustbelcher Shaman",[2719]="Dustbelcher Lord",[2720]="Dustbelcher Ogre Mage",[2721]="Forsaken Bodyguard",[2723]="Stone Golem",[2725]="Scalding Whelp",[2726]="Scorched Guardian",[2727]="Crag Coyote",[2728]="Feral Crag Coyote",[2729]="Elder Crag Coyote",[2730]="Rabid Crag Coyote",[2731]="Ridge Stalker",[2732]="Ridge Huntress",[2733]="Apothecary Jorell",[2734]="Ridge Stalker Patriarch",[2735]="Lesser Rock Elemental",[2736]="Greater Rock Elemental",[2737]="Durtham Greldon",[2738]="Stromgarde Cavalryman",[2739]="Shadowforge Tunneler",[2740]="Shadowforge Darkweaver",[2742]="Shadowforge Chanter",[2743]="Shadowforge Warrior",[2744]="Shadowforge Commander",[2745]="Ambassador Infernus",[2748]="Archaedas",[2749]="Barricade",[2751]="War Golem",[2752]="Rumbler",[2753]="Barnabus",[2754]="Anathemus",[2755]="Myzrael",[2757]="Blacklash",[2759]="Hematus",[2760]="Burning Exile",[2761]="Cresting Exile",[2762]="Thundering Exile",[2763]="Thenan",[2764]="Sleeby",[2765]="Znort",[2766]="Lolo the Lookout",[2767]="First Mate Nilzlix",[2768]="Professor Phizzlethorpe",[2769]="Captain Steelgut",[2770]="Tallow",[2771]="Drum Fel",[2772]="Korin Fel",[2773]="Or'Kalar",[2774]="Doctor Draxlegauge",[2775]="Daggerspine Marauder",[2776]="Vengeful Surge",[2778]="Deckhand Moishe",[2779]="Prince Nazjak",[2780]="Caretaker Nevlin",[2781]="Caretaker Weston",[2782]="Caretaker Alaric",[2783]="Marez Cowl",[2784]="King Magni Bronzebeard",[2785]="Theldurin the Lost",[2786]="Gerrig Bonegrip",[2787]="Zaruk",[2788]="Apprentice Kryten",[2789]="Skuerto",[2790]="Grand Mason Marblesten",[2791]="Enraged Rock Elemental",[2792]="Gor'mul",[2793]="Kor'gresh Coldrage",[2794]="Summoned Guardian",[2796]="Faelyssa",[2797]="Hovrak Gutrender",[2798]="Pand Stonebinder",[2799]="Lucian Fenner",[2801]="Tresa MacGregor",[2802]="Susan Tillinghast",[2803]="Malygen",[2804]="Kurden Bloodclaw",[2805]="Deneb Walker",[2806]="Bale",[2808]="Vikki Lonsav",[2810]="Hammon Karwn",[2812]="Drovnar Strongbrew",[2814]="Narj Deepslice",[2816]="Androd Fadran",[2817]="Rigglefuzz",[2818]="Slagg",[2819]="Tunkk",[2820]="Graud",[2821]="Keena",[2829]="Starving Buzzard",[2830]="Parched Buzzard",[2831]="Giant Buzzard",[2832]="Nixxrax Fillamug",[2834]="Myizz Luckycatch",[2835]="Cedrik Prose",[2836]="Brikk Keencraft",[2837]="Jaxin Chong",[2838]="Crazk Sparks",[2839]="Haren Kanmae",[2840]="Kizz Bluntstrike",[2842]="Wigcik",[2843]="Jutak",[2844]="Hurklor",[2845]="Fargon Mortalak",[2846]="Blixrez Goodstitch",[2847]="Jansen Underwood",[2848]="Glyx Brewright",[2849]="Qixdi Goodstitch",[2850]="Broken Tooth",[2851]="Urda",[2852]="Enslaved Druid of the Talon",[2853]="Freed Druid of the Talon",[2855]="Snang",[2856]="Angrun",[2857]="Thund",[2858]="Gringer",[2859]="Gyll",[2860]="Sigrun Ironhew",[2861]="Gorrik",[2870]="[UNUSED] Henria Derth",[2876]="Grunenstur Balindom",[2878]="Peria Lamenur",[2879]="Karrina Mekenda",[2880]="[UNUSED] Hurom Juggendolf",[2881]="Durdek Karrin",[2887]="Prismatic Exile",[2888]="Garek",[2892]="Stonevault Seer",[2893]="Stonevault Bonesnapper",[2894]="Stonevault Shaman",[2906]="Dustbelcher Warrior",[2907]="Dustbelcher Mystic",[2908]="Grawl",[2909]="Hammertoe Grez",[2910]="Prospector Ryedol",[2911]="Archaeologist Flagongut",[2912]="Chief Archaeologist Greywhisker",[2913]="Archaeologist Hollee",[2914]="Snake",[2915]="Hammertoe's Spirit",[2916]="Historian Karnik",[2917]="Prospector Remtravel",[2918]="Advisor Belgrum",[2919]="Fam'retor Guardian",[2920]="Lucien Tosselwrench",[2921]="Lotwil Veriatus",[2922]="Servo",[2923]="Mangy Silvermane",[2924]="Silvermane Wolf",[2925]="Silvermane Howler",[2926]="Silvermane Stalker",[2927]="Vicious Owlbeast",[2928]="Primitive Owlbeast",[2929]="Savage Owlbeast",[2930]="Sentinel Glynda Nal'Shea",[2931]="Zaricotl",[2932]="Magregan Deepshadow",[2934]="Keeper Bel'dugur",[2937]="Dagun the Ravenous",[2941]="Lanie Reed",[2943]="Ransin Donner",[2944]="Boss Tho'grun",[2945]="Murdaloc",[2946]="Puppet of Helcular",[2947]="Harken Windtotem",[2948]="Mull Thunderhorn",[2949]="Palemane Tanner",[2950]="Palemane Skinner",[2951]="Palemane Poacher",[2952]="Bristleback Invaders",[2953]="Bristleback Shaman",[2954]="Bristleback Battleboar",[2955]="Plainstrider",[2956]="Adult Plainstrider",[2957]="Elder Plainstrider",[2958]="Prairie Wolf",[2959]="Prairie Stalker",[2960]="Prairie Wolf Alpha",[2961]="Mountain Cougar",[2962]="Windfury Harpy",[2963]="Windfury Wind Witch",[2964]="Windfury Sorceress",[2965]="Windfury Matriarch",[2966]="Young Battleboar",[2967]="Galak Centaur",[2968]="Galak Outrunner",[2969]="Wiry Swoop",[2970]="Swoop",[2971]="Taloned Swoop",[2972]="Kodo Calf",[2973]="Kodo Bull",[2974]="Kodo Matriarch",[2975]="Venture Co. Hireling",[2976]="Venture Co. Laborer",[2977]="Venture Co. Taskmaster",[2978]="Venture Co. Worker",[2979]="Venture Co. Supervisor",[2980]="Grull Hawkwind",[2981]="Chief Hawkwind",[2982]="Seer Graytongue",[2983]="The Plains Vision",[2984]="Seer Wiserunner",[2985]="Ruul Eagletalon",[2986]="Dorn Plainstalker",[2987]="Eyahn Eagletalon",[2988]="Morin Cloudstalker",[2989]="Bael'dun Digger",[2990]="Bael'dun Appraiser",[2991]="Greatmother Hawkwind",[2992]="Healing Ward V",[2993]="Baine Bloodhoof",[2994]="Ancestral Spirit",[2995]="Tal",[2996]="Torn",[2997]="Jyn Stonehoof",[2998]="Karn Stonehoof",[2999]="Taur Stonehoof",[3000]="Gibbert",[3001]="Brek Stonehoof",[3002]="Kurm Stonehoof",[3003]="Fyr Mistrunner",[3004]="Tepa",[3005]="Mahu",[3007]="Una",[3008]="Mak",[3009]="Bena Winterhoof",[3010]="Mani Winterhoof",[3011]="Teg Dawnstrider",[3012]="Nata Dawnstrider",[3013]="Komin Winterhoof",[3014]="Nida Winterhoof",[3015]="Kuna Thunderhorn",[3016]="Tand",[3017]="Nan Mistrunner",[3018]="Hogor Thunderhoof",[3019]="Delgo Ragetotem",[3020]="Etu Ragetotem",[3021]="Kard Ragetotem",[3022]="Sunn Ragetotem",[3023]="Sura Wildmane",[3024]="Tah Winterhoof",[3025]="Kaga Mistrunner",[3026]="Aska Mistrunner",[3027]="Naal Mistrunner",[3028]="Kah Mistrunner",[3029]="Sewa Mistrunner",[3030]="Siln Skychaser",[3031]="Tigor Skychaser",[3032]="Beram Skychaser",[3033]="Turak Runetotem",[3034]="Sheal Runetotem",[3035]="Flatland Cougar",[3036]="Kym Wildmane",[3037]="Sheza Wildmane",[3038]="Kary Thunderhorn",[3039]="Holt Thunderhorn",[3040]="Urek Thunderhorn",[3041]="Torm Ragetotem",[3042]="Sark Ragetotem",[3043]="Ker Ragetotem",[3044]="Miles Welsh",[3045]="Malakai Cross",[3046]="Father Cobb",[3047]="Archmage Shymm",[3048]="Ursyn Ghull",[3049]="Thurston Xane",[3050]="Veren Tallstrider",[3051]="Supervisor Fizsprocket",[3052]="Skorn Whitecloud",[3053]="Synge",[3054]="Zarlman Two-Moons",[3055]="Maur Raincaller",[3056]="Ghost Howl",[3057]="Cairne Bloodhoof",[3058]="Arra'chea",[3059]="Harutt Thunderhorn",[3060]="Gart Mistrunner",[3061]="Lanka Farshot",[3062]="Meela Dawnstrider",[3063]="Krang Stonehoof",[3064]="Gennia Runetotem",[3065]="Yaw Sharpmane",[3066]="Narm Skychaser",[3067]="Pyall Silentstride",[3068]="Mazzranache",[3069]="Chaw Stronghide",[3072]="Kawnie Softbreeze",[3073]="Marjak Keenblade",[3074]="Varia Hardhide",[3075]="Bronk Steelrage",[3076]="Moorat Longstride",[3077]="Mahnott Roughwound",[3078]="Kennah Hawkseye",[3079]="Varg Windwhisper",[3080]="Harant Ironbrace",[3081]="Wunna Darkmane",[3083]="Honor Guard",[3084]="Bluffwatcher",[3085]="Gloria Femmel",[3086]="Gretchen Vogel",[3087]="Crystal Boughman",[3088]="Henry Chapal",[3089]="Sherman Femmel",[3090]="Gerald Crawley",[3091]="Franklin Hamar",[3092]="Tagain",[3093]="Grod",[3094]="Unseen",[3095]="Fela",[3096]="Captured Servant of Azora",[3097]="Bernard Brubaker",[3098]="Mottled Boar",[3099]="Dire Mottled Boar",[3100]="Elder Mottled Boar",[3101]="Vile Familiar",[3102]="Felstalker",[3103]="Makrura Clacker",[3104]="Makrura Shellhide",[3105]="Makrura Snapclaw",[3106]="Surf Crawler",[3107]="Mature Surf Crawler",[3108]="Encrusted Surf Crawler",[3110]="Dreadmaw Crocolisk",[3111]="Razormane Quilboar",[3112]="Razormane Scout",[3113]="Razormane Dustrunner",[3114]="Razormane Battleguard",[3115]="Dustwind Harpy",[3116]="Dustwind Pillager",[3117]="Dustwind Savage",[3118]="Dustwind Storm Witch",[3119]="Kolkar Drudge",[3120]="Kolkar Outrunner",[3121]="Durotar Tiger",[3122]="Bloodtalon Taillasher",[3123]="Bloodtalon Scythemaw",[3124]="Scorpid Worker",[3125]="Clattering Scorpid",[3126]="Armored Scorpid",[3127]="Venomtail Scorpid",[3128]="Kul Tiras Sailor",[3129]="Kul Tiras Marine",[3130]="Thunder Lizard",[3131]="Lightning Hide",[3133]="Herble Baubbletump",[3134]="Kzixx",[3135]="Malissa",[3136]="Clarise Gnarltree",[3137]="Matt Johnson",[3138]="Scott Carevin",[3139]="Gar'Thok",[3140]="Lar Prowltusk",[3141]="Makrura Elder",[3142]="Orgnil Soulscar",[3143]="Gornek",[3144]="Eitrigg",[3145]="Zureetha Fargaze",[3147]="Furl Scornbrow",[3149]="Nez'raz",[3150]="Hin Denburg",[3153]="Frang",[3154]="Jen'shan",[3155]="Rwag",[3156]="Nartok",[3157]="Shikrik",[3158]="Duokna",[3159]="Kzan Thornslash",[3160]="Huklah",[3161]="Rarc",[3162]="Burdrak Harglhelm",[3163]="Uhgar",[3164]="Jark",[3165]="Ghrawt",[3166]="Cutac",[3167]="Wuark",[3168]="Flakk",[3169]="Tarshaw Jaggedscar",[3170]="Kaplak",[3171]="Thotar",[3172]="Dhugru Gorelust",[3173]="Swart",[3174]="Dwukk",[3175]="Krunn",[3177]="Turuk Amberstill",[3178]="Stuart Fleming",[3179]="Harold Riggs",[3180]="Dark Iron Entrepreneur",[3181]="Fremal Doohickey",[3182]="Junder Brokk",[3183]="Yarrog Baneshadow",[3184]="Miao'zan",[3185]="Mishiki",[3186]="K'waii",[3187]="Tai'tasi",[3188]="Master Gadrin",[3189]="Kor'ghan",[3190]="Rhinag",[3191]="Cook Torka",[3192]="Lieutenant Benedict",[3193]="Misha Tor'kren",[3194]="Vel'rin Fang",[3195]="Burning Blade Thug",[3196]="Burning Blade Neophyte",[3197]="Burning Blade Fanatic",[3198]="Burning Blade Apprentice",[3199]="Burning Blade Cultist",[3203]="Fizzle Darkclaw",[3204]="Gazz'uz",[3205]="Zalazane",[3206]="Voodoo Troll",[3207]="Hexed Troll",[3208]="Margoz",[3209]="Brave Windfeather",[3210]="Brave Proudsnout",[3211]="Brave Lightninghorn",[3212]="Brave Ironhorn",[3213]="Brave Running Wolf",[3214]="Brave Greathoof",[3215]="Brave Strongbash",[3216]="Neeru Fireblade",[3217]="Brave Dawneagle",[3218]="Brave Swiftwind",[3219]="Brave Leaping Deer",[3220]="Brave Darksky",[3221]="Brave Rockhorn",[3222]="Brave Wildrunner",[3223]="Brave Rainchaser",[3224]="Brave Cloudmane",[3225]="Corrupted Mottled Boar",[3226]="Corrupted Scorpid",[3227]="Corrupted Bloodtalon Scythemaw",[3228]="Corrupted Surf Crawler",[3230]="Nazgrel",[3231]="Corrupted Dreadmaw Crocolisk",[3232]="Bristleback Interloper",[3233]="Lorekeeper Raintotem",[3234]="Lost Barrens Kodo",[3235]="Greater Barrens Kodo",[3236]="Barrens Kodo",[3237]="Wooly Kodo",[3238]="Stormhide",[3239]="Thunderhead",[3240]="Stormsnout",[3241]="Savannah Patriarch",[3242]="Zhevra Runner",[3243]="Savannah Highmane",[3244]="Greater Plainstrider",[3245]="Ornery Plainstrider",[3246]="Fleeting Plainstrider",[3247]="Thunderhawk Hatchling",[3248]="Barrens Giraffe",[3249]="Greater Thunderhawk",[3250]="Silithid Creeper",[3251]="Silithid Grub",[3252]="Silithid Swarmer",[3253]="Silithid Harvester",[3254]="Sunscale Lashtail",[3255]="Sunscale Screecher",[3256]="Sunscale Scytheclaw",[3257]="Ishamuhale",[3258]="Bristleback Hunter",[3260]="Bristleback Water Seeker",[3261]="Bristleback Thornweaver",[3263]="Bristleback Geomancer",[3265]="Razormane Hunter",[3266]="Razormane Defender",[3267]="Razormane Plunderer",[3268]="Razormane Thornweaver",[3269]="Razormane Geomancer",[3270]="Elder Mystic Razorsnout",[3271]="Razormane Mystic",[3272]="Kolkar Wrangler",[3273]="Kolkar Stormer",[3274]="Kolkar Pack Runner",[3275]="Kolkar Marauder",[3276]="Witchwing Harpy",[3277]="Witchwing Roguefeather",[3278]="Witchwing Slayer",[3279]="Witchwing Ambusher",[3280]="Witchwing Windcaller",[3281]="Sarkoth",[3282]="Venture Co. Mercenary",[3283]="Venture Co. Enforcer",[3284]="Venture Co. Drudger",[3285]="Venture Co. Peon",[3286]="Venture Co. Overseer",[3287]="Hana'zua",[3289]="Spirit of Minshina",[3290]="Deek Fizzlebizz",[3291]="Greishan Ironstove",[3292]="Brewmaster Drohn",[3293]="Rezlak",[3294]="Ophek",[3295]="Sludge Anomaly",[3296]="Orgrimmar Grunt",[3297]="Sen'jin Watcher",[3298]="Gabrielle Chase",[3300]="Adder",[3301]="Morgan Ladimore",[3304]="Master Vornal",[3305]="Grisha",[3306]="Keldas",[3309]="Karus",[3310]="Doras",[3312]="Olvia",[3313]="Trak'gen",[3314]="Urtharo",[3315]="Tor'phan",[3316]="Handor",[3317]="Ollanus",[3318]="Koma",[3319]="Sana",[3320]="Soran",[3321]="Morgum",[3322]="Kaja",[3323]="Horthus",[3324]="Grol'dar",[3325]="Mirket",[3326]="Zevrost",[3327]="Gest",[3328]="Ormok",[3329]="Kor'jus",[3330]="Muragus",[3331]="Kareth",[3332]="Lumak",[3333]="Shankys",[3334]="Rekkul",[3335]="Hagrus",[3336]="Takrin Pathseeker",[3337]="Kargal Battlescar",[3338]="Sergra Darkthorn",[3339]="Captain Thalo'thas Brightsun",[3341]="Gann Stonespire",[3342]="Shan'ti",[3343]="Grelkor",[3344]="Kardris Dreamseeker",[3345]="Godan",[3346]="Kithas",[3347]="Yelmak",[3348]="Kor'geld",[3349]="Ukra'nor",[3350]="Asoran",[3351]="Magenius",[3352]="Ormak Grimshot",[3353]="Grezz Ragefist",[3354]="Sorek",[3355]="Saru Steelfury",[3356]="Sumi",[3357]="Makaru",[3358]="Gorina",[3359]="Kiro",[3360]="Koru",[3361]="Shoma",[3362]="Ogunaro Wolfrunner",[3363]="Magar",[3364]="Borya",[3365]="Karolek",[3366]="Tamar",[3367]="Felika",[3368]="Borstan",[3369]="Gotri",[3370]="Urtrun Clanbringer",[3371]="Tamaro",[3372]="Sarlek",[3373]="Arnok",[3374]="Bael'dun Excavator",[3375]="Bael'dun Foreman",[3376]="Bael'dun Soldier",[3377]="Bael'dun Rifleman",[3378]="Bael'dun Officer",[3379]="Burning Blade Bruiser",[3380]="Burning Blade Acolyte",[3381]="Southsea Brigand",[3382]="Southsea Cannoneer",[3383]="Southsea Cutthroat",[3384]="Southsea Privateer",[3385]="Theramore Marine",[3386]="Theramore Preserver",[3387]="Jorn Skyseer",[3388]="Mahren Skyseer",[3389]="Regthar Deathgate",[3390]="Apothecary Helbrim",[3391]="Gazlowe",[3392]="Prospector Khazgorm",[3393]="Captain Fairmount",[3394]="Barak Kodobane",[3395]="Verog the Dervish",[3396]="Hezrul Bloodmark",[3397]="Kolkar Bloodcharger",[3398]="Gesharahan",[3399]="Zamja",[3400]="Xen'to",[3401]="Shenthul",[3402]="Zando'zan",[3403]="Sian'tsu",[3404]="Jandi",[3405]="Zeal'aya",[3406]="Xor'juul",[3407]="Sian'dur",[3408]="Zel'mak",[3409]="Zendo'jian",[3410]="Jin'sora",[3411]="Denni'ka",[3412]="Nogg",[3413]="Sovik",[3414]="General Twinbraid",[3415]="Savannah Huntress",[3416]="Savannah Matriarch",[3417]="Living Flame",[3418]="Kirge Sternhorn",[3419]="Apothecary Zamah",[3421]="Feegly the Exiled",[3424]="Thunderhawk Cloudscraper",[3425]="Savannah Prowler",[3426]="Zhevra Charger",[3428]="Korran",[3429]="Thork",[3430]="Mangletooth",[3431]="Grenthar",[3432]="Mankrik",[3433]="Tatternack Steelforge",[3434]="Nak",[3435]="Lok Orcbane",[3436]="Kuz",[3438]="Kreenig Snarlsnout",[3439]="Wizzlecrank's Shredder",[3441]="Melor Stonehoof",[3442]="Sputtervalve",[3443]="Grub",[3444]="Dig Rat",[3445]="Supervisor Lugwizzle",[3446]="Mebok Mizzyrix",[3447]="Pawe Mistrunner",[3448]="Tonga Runetotem",[3449]="Darsok Swiftdagger",[3450]="Defias Companion",[3451]="Pilot Wizzlecrank",[3452]="Serena Bloodfeather",[3453]="Wharfmaster Dizzywig",[3454]="Cannoneer Smythe",[3455]="Cannoneer Whessan",[3456]="Razormane Pathfinder",[3457]="Razormane Stalker",[3458]="Razormane Seer",[3459]="Razormane Warfrenzy",[3461]="Oasis Snapjaw",[3462]="Elder Barrens Giraffe",[3463]="Wandering Barrens Giraffe",[3464]="Gazrog",[3465]="Gilthares Firebough",[3466]="Zhevra Courser",[3467]="Baron Longshore",[3468]="Ancient of Lore",[3469]="Ancient of War",[3470]="Rathorian",[3471]="Tinkerer Sniggles",[3472]="Washte Pawne",[3473]="Owatanka",[3474]="Lakota'mani",[3475]="Echeyakee",[3476]="Isha Awak",[3477]="Hraq",[3478]="Traugh",[3479]="Nargal Deatheye",[3480]="Moorane Hearthgrain",[3481]="Barg",[3482]="Tari'qa",[3483]="Jahan Hawkwing",[3484]="Kil'hala",[3485]="Wrahk",[3486]="Halija Whitestrider",[3487]="Kalyimah Stormcloud",[3488]="Uthrok",[3489]="Zargh",[3490]="Hula'mahi",[3491]="Ironzar",[3492]="Vexspindle",[3493]="Grazlix",[3494]="Tinkerwiz",[3495]="Gagsprocket",[3496]="Fuzruckle",[3497]="Kilxx",[3498]="Jazzik",[3499]="Ranik",[3500]="Tarhus",[3501]="Horde Guard",[3502]="Ratchet Bruiser",[3503]="Silithid Protector",[3504]="Gil",[3505]="Pat",[3507]="Andi",[3508]="Mikey",[3509]="Geoff",[3510]="Twain",[3511]="Steven",[3512]="Jimmy",[3513]="Miss Danna",[3514]="Tenaron Stormgrip",[3515]="Corithras Moonrage",[3516]="Arch Druid Fandral Staghelm",[3517]="Rellian Greenspyre",[3518]="Thomas Miller",[3519]="Sentinel Arynia Cloudsbreak",[3520]="Ol' Emma",[3521]="Ak'Zeloth",[3522]="Constance Brisboise",[3523]="Bowen Brisboise",[3524]="Spirit Wolf",[3527]="Healing Stream Totem",[3528]="Pyrewood Armorer",[3529]="Moonrage Armorer",[3530]="Pyrewood Tailor",[3531]="Moonrage Tailor",[3532]="Pyrewood Leatherworker",[3533]="Moonrage Leatherworker",[3534]="Wallace the Blind",[3535]="Blackmoss the Fetid",[3536]="Kris Legace",[3537]="Zixil",[3538]="Overwatch Mark I",[3539]="Ott",[3540]="Hal McAllister",[3541]="Sarah Raycroft",[3542]="Jaysin Lanyda",[3543]="Robert Aebischer",[3544]="Jason Lemieux",[3545]="Claude Erksine",[3546]="Bernie Heisten",[3547]="Hamlin Atkins",[3548]="Selina Weston",[3549]="Shelene Rhobart",[3550]="Martine Tramblay",[3551]="Patrice Dwyer",[3552]="Alexandre Lefevre",[3553]="Sebastian Meloche",[3554]="Andrea Boynton",[3555]="Johan Focht",[3556]="Andrew Hilbert",[3557]="Guillaume Sorouy",[3560]="Healing Ward",[3561]="Kyrai",[3562]="Alaindia",[3566]="Flatland Prowler",[3567]="Tallonkai Swiftroot",[3568]="Mist",[3569]="Bogling",[3570]="Cleansed Timberling",[3571]="Teldrassil Sentinel",[3572]="Zizzek",[3573]="Mana Spring Totem",[3577]="Ambermill Brewmaster",[3578]="Ambermill Miner",[3579]="Stoneclaw Totem",[3580]="Crafticus Rabbitus",[3581]="Sewer Beast",[3582]="Aman",[3583]="Barithras Moonshade",[3584]="Therylune",[3585]="Therysil",[3586]="Miner Johnson",[3587]="Lyrai",[3588]="Khardan Proudblade",[3589]="Keina",[3590]="Janna Brightmoon",[3591]="Freja Nightwing",[3592]="Andiss",[3593]="Alyissia",[3594]="Frahun Shadewhisper",[3595]="Shanda",[3596]="Ayanna Everstride",[3597]="Mardant Strongoak",[3598]="Kyra Windblade",[3599]="Jannok Breezesong",[3600]="Laurna Morninglight",[3601]="Dazalar",[3602]="Kal",[3603]="Cyndra Kindwhisper",[3604]="Malorne Bladeleaf",[3605]="Nadyia Maneweaver",[3606]="Alanna Raveneye",[3607]="Androl Oakhand",[3608]="Aldia",[3609]="Shalomon",[3610]="Jeena Featherbow",[3611]="Brannol Eaglemoon",[3612]="Sinda",[3613]="Meri Ironweave",[3614]="Narret Shadowgrove",[3615]="Devrak",[3616]="Onu",[3617]="Lordaeron Citizen",[3619]="Ghost Saber",[3620]="Harruk",[3621]="Kurll",[3622]="Grokor",[3624]="Zudd",[3625]="Rarck",[3626]="Jenn Langston",[3627]="Erich Lohan",[3628]="Steven Lohan",[3629]="David Langston",[3630]="Deviate Coiler",[3631]="Deviate Stinglash",[3632]="Deviate Creeper",[3633]="Deviate Slayer",[3634]="Deviate Stalker",[3636]="Deviate Ravager",[3637]="Deviate Guardian",[3638]="Devouring Ectoplasm",[3639]="Sentinel Tysha Moonblade",[3640]="Evolving Ectoplasm",[3641]="Deviate Lurker",[3644]="Cerellean Whiteclaw",[3649]="Thundris Windweaver",[3650]="Asterion",[3652]="Trigore the Lasher",[3653]="Kresh",[3654]="Mutanus the Devourer",[3655]="Mad Magglish",[3657]="Sentinel Elissa Starbreeze",[3658]="Lizzarik",[3659]="Jorb",[3660]="Athrikus Narassin",[3661]="Balthule Shadowstrike",[3662]="Delmanis the Hated",[3663]="Delgren the Purifier",[3664]="Ilkrud Magthrull",[3665]="Crane Operator Bigglefuzz",[3666]="Wizbang Cranktoggle",[3667]="Anaya Dawnrunner",[3669]="Lord Cobrahn",[3670]="Lord Pythas",[3671]="Lady Anacondra",[3672]="Boahn",[3673]="Lord Serpentis",[3674]="Skum",[3678]="Muyoh",[3679]="Naralex",[3680]="Serpentbloom Snake",[3681]="Wisp",[3682]="Vrang Wildgore",[3683]="Kiknikle",[3684]="Pizznukle",[3685]="Harb Clawhoof",[3688]="Reban Freerunner",[3689]="Laer Stepperunner",[3690]="Kar Stormsinger",[3691]="Raene Wolfrunner",[3692]="Volcor",[3693]="Terenthis",[3694]="Sentinel Selarin",[3695]="Grimclaw",[3696]="Ran Bloodtooth",[3698]="Bolyun",[3700]="Jadenvis Seawatcher",[3701]="Tharnariun Treetender",[3702]="Alanndarian Nightsong",[3703]="Krulmoo Fullmoon",[3704]="Mahani",[3705]="Gahroot",[3706]="Tai'jin",[3707]="Ken'jai",[3708]="Gruna",[3711]="Wrathtail Myrmidon",[3712]="Wrathtail Razortail",[3713]="Wrathtail Wave Rider",[3715]="Wrathtail Sea Witch",[3717]="Wrathtail Sorceress",[3721]="Mystlash Hydra",[3722]="Mystlash Flayer",[3725]="Dark Strand Cultist",[3727]="Dark Strand Enforcer",[3728]="Dark Strand Adept",[3730]="Dark Strand Excavator",[3732]="Forsaken Seeker",[3733]="Forsaken Herbalist",[3734]="Orc Overseer",[3735]="Apothecary Falthis",[3736]="Darkslayer Mordenthal",[3737]="Saltspittle Puddlejumper",[3739]="Saltspittle Warrior",[3740]="Saltspittle Muckdweller",[3742]="Saltspittle Oracle",[3743]="Foulweald Warrior",[3745]="Foulweald Pathfinder",[3746]="Foulweald Den Watcher",[3748]="Foulweald Shaman",[3749]="Foulweald Ursa",[3750]="Foulweald Totemic",[3752]="Xavian Rogue",[3754]="Xavian Betrayer",[3755]="Xavian Felsworn",[3757]="Xavian Hellcaller",[3758]="Felmusk Satyr",[3759]="Felmusk Rogue",[3762]="Felmusk Felsworn",[3763]="Felmusk Shadowstalker",[3765]="Bleakheart Satyr",[3767]="Bleakheart Trickster",[3770]="Bleakheart Shadowstalker",[3771]="Bleakheart Hellcaller",[3772]="Lesser Felguard",[3773]="Akkrilus",[3774]="Felslayer",[3779]="Syurana",[3780]="Singed Shambler",[3781]="Shadethicket Wood Shaper",[3782]="Shadethicket Stone Mover",[3783]="Shadethicket Raincaller",[3784]="Shadethicket Bark Ripper",[3789]="Terrowulf Fleshripper",[3791]="Terrowulf Shadow Weaver",[3792]="Terrowulf Packlord",[3794]="Druid of the Talon",[3795]="Druid of the Claw",[3797]="Cenarion Protector",[3799]="Severed Druid",[3801]="Severed Sleeper",[3802]="Severed Dreamer",[3803]="Severed Keeper",[3804]="Forsaken Intruder",[3806]="Forsaken Infiltrator",[3807]="Forsaken Assassin",[3808]="Forsaken Dark Stalker",[3809]="Ashenvale Bear",[3810]="Elder Ashenvale Bear",[3811]="Giant Ashenvale Bear",[3812]="Clattering Crawler",[3814]="Spined Crawler",[3815]="Blink Dragon",[3816]="Wild Buck",[3817]="Shadowhorn Stag",[3818]="Elder Shadowhorn Stag",[3819]="Wildthorn Stalker",[3820]="Wildthorn Venomspitter",[3821]="Wildthorn Lurker",[3823]="Ghostpaw Runner",[3824]="Ghostpaw Howler",[3825]="Ghostpaw Alpha",[3831]="[UNUSED] Ancient Guardian",[3833]="Cenarion Vindicator",[3834]="Crazed Ancient",[3835]="Biletoad",[3836]="Mountaineer Pebblebitty",[3838]="Vesprystus",[3840]="Druid of the Fang",[3841]="Teldira Moonfeather",[3842]="Brombar Higgleby",[3843]="Anaya",[3844]="Healing Ward IV",[3845]="Shindrell Swiftfire",[3846]="Talen",[3847]="Orendil Broadleaf",[3848]="Kayneth Stillwind",[3849]="Deathstalker Adamant",[3850]="Sorcerer Ashcrombe",[3851]="Shadowfang Whitescalp",[3853]="Shadowfang Moonwalker",[3854]="Shadowfang Wolfguard",[3855]="Shadowfang Darksoul",[3857]="Shadowfang Glutton",[3859]="Shadowfang Ragetooth",[3861]="Bleak Worg",[3862]="Slavering Worg",[3863]="Lupine Horror",[3864]="Fel Steed",[3865]="Shadow Charger",[3866]="Vile Bat",[3868]="Blood Seeker",[3869]="Lesser Gargoyle",[3870]="Stone Sleeper",[3872]="Deathsworn Captain",[3873]="Tormented Officer",[3875]="Haunted Servitor",[3877]="Wailing Guardsman",[3879]="Dark Strand Assassin",[3880]="Sentinel Melyria Frostshadow",[3881]="Grimtak",[3882]="Zlagk",[3883]="Moodan Sungrain",[3884]="Jhawna Oatwind",[3885]="Sentinel Velene Starstrike",[3886]="Razorclaw the Butcher",[3887]="Baron Silverlaine",[3888]="Korra",[3890]="Brakgul Deathbringer",[3891]="Teronis' Corpse",[3892]="Relara Whitemoon",[3893]="Forsaken Scout",[3894]="Pelturas Whitemoon",[3897]="Krolg",[3898]="Aligar the Tormentor",[3899]="Balizar the Umbrage",[3900]="Caedakar the Vicious",[3901]="Illiyana",[3902]="Searing Totem II",[3903]="Searing Totem III",[3904]="Searing Totem IV",[3906]="Healing Stream Totem II",[3907]="Healing Stream Totem III",[3908]="Healing Stream Totem IV",[3909]="Healing Stream Totem V",[3911]="Stoneclaw Totem II",[3912]="Stoneclaw Totem III",[3913]="Stoneclaw Totem IV",[3914]="Rethilgore",[3915]="Dagri",[3916]="Shael'dryn",[3917]="Befouled Water Elemental",[3919]="Withered Ancient",[3920]="Anilia",[3921]="Thistlefur Ursa",[3922]="Thistlefur Totemic",[3923]="Thistlefur Den Watcher",[3924]="Thistlefur Shaman",[3925]="Thistlefur Avenger",[3926]="Thistlefur Pathfinder",[3927]="Wolf Master Nandos",[3928]="Rotting Slime",[3931]="Shadethicket Oracle",[3932]="Bloodtooth Guard",[3933]="Hai'zan",[3934]="Innkeeper Boorand Plainswind",[3935]="Toddrick",[3936]="Shandris Feathermoon",[3937]="Kira Songshine",[3939]="Razormane Wolf",[3940]="Taneel Darkwood",[3941]="Uthil Mooncall",[3942]="Mavoris Cloudsbreak",[3943]="Ruuzel",[3944]="Wrathtail Priestess",[3945]="Caravaneer Ruzzgot",[3946]="Velinde Starsong",[3947]="Goblin Shipbuilder",[3948]="Honni Goldenoat",[3950]="Minor Water Guardian",[3951]="Bhaldaran Ravenshade",[3952]="Aeolynn",[3953]="Tandaan Lightmane",[3954]="Dalria",[3955]="Shandrina",[3956]="Harklan Moongrove",[3957]="Jainay Featherbreeze",[3958]="Lardan",[3959]="Nantar",[3960]="Ulthaan",[3961]="Maliynn",[3962]="Haljan Oakheart",[3963]="Danlaar Nightstride",[3964]="Kylanna",[3965]="Cylania Rootstalker",[3967]="Aayndia Floralwind",[3968]="Sentry Totem",[3969]="Fahran Silentblade",[3970]="Llana",[3974]="Houndmaster Loksey",[3975]="Herod",[3976]="Scarlet Commander Mograine",[3977]="High Inquisitor Whitemane",[3978]="Sage Truthseeker",[3979]="Librarian Mae Paledust",[3980]="Raleigh the Devout",[3981]="Vorrel Sengutz",[3982]="Monika Sengutz",[3983]="Interrogator Vishas",[3984]="Nancy Vishas",[3985]="Grandpa Vishas",[3986]="Sarilus Foulborne",[3987]="Dal Bloodclaw",[3988]="Venture Co. Operator",[3989]="Venture Co. Logger",[3991]="Venture Co. Deforester",[3992]="Venture Co. Holdout",[3993]="Venture Co. Machine Smith",[3994]="Keeper Albagorm",[3995]="Witch Doctor Jin'Zil",[3996]="Faldreas Goeth'Shael",[3998]="Windshear Vermin",[3999]="Windshear Digger",[4001]="Windshear Tunnel Rat",[4002]="Windshear Stonecutter",[4003]="Windshear Geomancer",[4004]="Windshear Overlord",[4005]="Deepmoss Creeper",[4006]="Deepmoss Webspinner",[4007]="Deepmoss Venomspitter",[4008]="Cliff Stormer",[4009]="Raging Cliff Stormer",[4011]="Young Pridewing",[4012]="Pridewing Wyvern",[4013]="Pridewing Skyhunter",[4014]="Pridewing Consort",[4015]="Pridewing Patriarch",[4016]="Fey Dragon",[4017]="Wily Fey Dragon",[4018]="Antlered Courser",[4019]="Great Courser",[4020]="Sap Beast",[4021]="Corrupted Sap Beast",[4022]="Bloodfury Harpy",[4023]="Bloodfury Roguefeather",[4024]="Bloodfury Slayer",[4025]="Bloodfury Ambusher",[4026]="Bloodfury Windcaller",[4027]="Bloodfury Storm Witch",[4028]="Charred Ancient",[4029]="Blackened Ancient",[4030]="Vengeful Ancient",[4031]="Fledgling Chimaera",[4032]="Young Chimaera",[4034]="Enraged Stone Spirit",[4035]="Furious Stone Spirit",[4036]="Rogue Flame Spirit",[4037]="Burning Ravager",[4038]="Burning Destroyer",[4040]="Cave Stalker",[4041]="Scorched Basilisk",[4042]="Singed Basilisk",[4043]="Galthuk",[4044]="Blackened Basilisk",[4046]="Magatha Grimtotem",[4047]="Zor Lonetree",[4048]="Falfindel Waywarder",[4049]="Seereth Stonebreak",[4050]="Cenarion Caretaker",[4051]="Cenarion Botanist",[4052]="Cenarion Druid",[4053]="Daughter of Cenarius",[4054]="Laughing Sister",[4056]="Mirkfallon Keeper",[4057]="Son of Cenarius",[4059]="Forest Spirit",[4061]="Mirkfallon Dryad",[4062]="Dark Iron Bombardier",[4063]="Feeboz",[4064]="Blackrock Scout",[4065]="Blackrock Sentry",[4066]="Nal'taszar",[4067]="Twilight Runner",[4068]="Serpent Messenger",[4070]="Venture Co. Builder",[4072]="Prisoner of Jin'Zil",[4073]="XT:4",[4074]="XT:9",[4075]="Rat",[4076]="Roach",[4077]="Gaxim Rustfizzle",[4078]="Collin Mauren",[4079]="Sentinel Thenysil",[4080]="Kaela Shadowspear",[4081]="Lomac Gearstrip",[4082]="Grawnal",[4083]="Jeeda",[4084]="Chylina",[4085]="Nizzik",[4086]="Veenix",[4087]="Arias'ta Bladesinger",[4088]="Elanaria",[4089]="Sildanair",[4090]="Astarii Starseeker",[4091]="Jandria",[4092]="Lariia",[4093]="[Deprecated for 4.x]Galak Wrangler",[4094]="[Deprecated for 4.x]Galak Scout",[4095]="Galak Mauler",[4096]="[Deprecated for 4.x]Galak Windchaser",[4097]="Galak Stormer",[4099]="Galak Marauder",[4100]="Screeching Harpy",[4101]="Screeching Roguefeather",[4104]="Screeching Windcaller",[4107]="Highperch Wyvern",[4109]="Highperch Consort",[4110]="Highperch Patriarch",[4111]="Gravelsnout Kobold",[4112]="Gravelsnout Vermin",[4113]="Gravelsnout Digger",[4114]="Gravelsnout Forager",[4116]="Gravelsnout Surveyor",[4117]="Cloud Serpent",[4118]="Venomous Cloud Serpent",[4119]="Elder Cloud Serpent",[4120]="Thundering Boulderkin",[4124]="Needles Cougar",[4126]="Crag Stalker",[4127]="Hecklefang Hyena",[4128]="Hecklefang Stalker",[4129]="Hecklefang Snarler",[4130]="[Deprecated for 4.x]Silithid Searcher",[4131]="[Deprecated for 4.x]Silithid Invader",[4132]="Krkk'kx",[4133]="[Deprecated for 4.x]Silithid Hive Drone",[4138]="Jeen'ra Nightrunner",[4139]="Scorpid Terror",[4140]="Scorpid Reaver",[4142]="[Deprecated for 4.x]Sparkleshell Tortoise",[4143]="Sparkleshell Snapper",[4144]="Sparkleshell Borer",[4146]="Jocaste",[4147]="[Deprecated for 4.x]Saltstone Basilisk",[4150]="[Deprecated for 4.x]Saltstone Gazer",[4151]="[Deprecated for 4.x]Saltstone Crystalhide",[4154]="Salt Flats Scavenger",[4155]="Idriana",[4156]="Astaia",[4158]="Salt Flats Vulture",[4159]="Me'lynn",[4160]="Ainethil",[4161]="Lysheana",[4163]="Syurna",[4164]="Cylania",[4165]="Elissa Dumas",[4166]="Gazelle",[4167]="Dendrythis",[4168]="Elynna",[4169]="Jaeana",[4170]="Ellandrieth",[4171]="Merelyssa",[4172]="Anadyia",[4173]="Landria",[4175]="Vinasia",[4177]="Melea",[4180]="Ealyshia Dewwhisper",[4181]="Fyrenna",[4182]="Dalmond",[4183]="Naram Longclaw",[4184]="Geenia Sunshadow",[4185]="Shaldyn",[4186]="Mavralyn",[4187]="Harlon Thornguard",[4188]="Illyanie",[4189]="Valdaron",[4190]="Kyndri",[4191]="Allyndia",[4192]="Taldan",[4193]="Grondal Moonbreeze",[4194]="Ullanna",[4195]="Tiyani",[4196]="Silithid Swarm",[4197]="Ken'zigla",[4198]="Braelyn Firehand",[4200]="Laird",[4201]="Ziz Fizziks",[4202]="Gerenzo Wrenchwhistle",[4203]="Ariyell Skyshadow",[4204]="Firodren Mooncaller",[4205]="Dorion",[4208]="Lairn",[4209]="Garryeth",[4210]="Alegorn",[4211]="Dannelor",[4212]="Telonis",[4213]="Taladan",[4214]="Erion Shadewhisper",[4215]="Anishar",[4216]="Chardryn",[4217]="Mathrengyl Bearwalker",[4218]="Denatharion",[4219]="Fylerian Nightwing",[4220]="Cyroen",[4221]="Talaelar",[4222]="Voloren",[4223]="Fyldan",[4225]="Saenorion",[4226]="Ulthir",[4228]="Vaean",[4229]="Mythrin'dir",[4230]="Yldan",[4231]="Kieran",[4232]="Glorandiir",[4233]="Mythidan",[4234]="Andrus",[4235]="Turian",[4236]="Cyridan",[4240]="Caynrus",[4241]="Mydrannul",[4242]="Frostsaber Companion",[4243]="Nightshade",[4244]="Shadow",[4248]="Pesterhide Hyena",[4249]="Pesterhide Snarler",[4250]="Galak Packhound",[4251]="Goblin Racer",[4252]="Gnome Racer",[4254]="Geofram Bouldertoe",[4255]="Brogus Thunderbrew",[4256]="Golnir Bouldertoe",[4257]="Lana Thunderbrew",[4258]="Bengus Deepforge",[4259]="Thurgrum Deepforge",[4260]="Venture Co. Shredder",[4262]="Darnassus Sentinel",[4263]="Deepmoss Hatchling",[4264]="Deepmoss Matriarch",[4265]="Nyoma",[4266]="Danlyia",[4267]="Daelyshia",[4269]="Chestnut Mare",[4270]="Riding Wolf (Red)",[4271]="Dire Wolf",[4272]="Brown Wolf",[4273]="Keeper Ordanus",[4274]="Fenrus the Devourer",[4275]="Archmage Arugal",[4276]="Piznik",[4277]="Eye of Kilrogg",[4278]="Commander Springvale",[4279]="Odo the Blindwatcher",[4280]="Scarlet Preserver",[4281]="Scarlet Scout",[4282]="Scarlet Magician",[4283]="Scarlet Sentry",[4284]="Scarlet Augur",[4285]="Scarlet Disciple",[4286]="Scarlet Soldier",[4287]="Scarlet Gallant",[4288]="Scarlet Beastmaster",[4289]="Scarlet Evoker",[4290]="Scarlet Guardsman",[4291]="Scarlet Diviner",[4292]="Scarlet Protector",[4293]="Scarlet Scryer",[4294]="Scarlet Sorcerer",[4295]="Scarlet Myrmidon",[4296]="Scarlet Adept",[4297]="Scarlet Conjuror",[4298]="Scarlet Defender",[4299]="Scarlet Chaplain",[4300]="Scarlet Wizard",[4301]="Scarlet Centurion",[4302]="Scarlet Champion",[4303]="Scarlet Abbot",[4304]="Scarlet Tracking Hound",[4305]="Kriggon Talsone",[4306]="Scarlet Torturer",[4307]="Heldan Galesong",[4308]="Unfettered Spirit",[4309]="Gorm Grimtotem",[4310]="Cor Grimtotem",[4311]="Holgar Stormaxe",[4312]="Tharm",[4314]="Gorkas",[4316]="Kolkar Packhound",[4317]="Nyse",[4319]="Thyssiana",[4320]="Caelyb",[4321]="Baldruc",[4323]="Searing Hatchling",[4324]="Searing Whelp",[4328]="Firemane Scalebane",[4329]="Firemane Scout",[4331]="Firemane Ash Tail",[4334]="Firemane Flamecaller",[4339]="Brimgore",[4341]="Drywallow Crocolisk",[4342]="Drywallow Vicejaw",[4343]="Drywallow Snapper",[4344]="Mottled Drywallow Crocolisk",[4345]="Drywallow Daggermaw",[4346]="Noxious Flayer",[4347]="Noxious Reaver",[4348]="Noxious Shredder",[4351]="Bloodfen Raptor",[4352]="Bloodfen Screecher",[4355]="Bloodfen Scytheclaw",[4356]="Bloodfen Razormaw",[4357]="Bloodfen Lashtail",[4358]="Mirefin Puddlejumper",[4359]="Mirefin Murloc",[4360]="Mirefin Warrior",[4361]="Mirefin Muckdweller",[4362]="Mirefin Coastrunner",[4363]="Mirefin Oracle",[4364]="Strashaz Warrior",[4366]="Strashaz Serpent Guard",[4368]="Strashaz Myrmidon",[4370]="Strashaz Sorceress",[4371]="Strashaz Siren",[4374]="Strashaz Hydra",[4376]="Darkmist Spider",[4377]="Darkmist Hatchling",[4378]="Darkmist Recluse",[4379]="Darkmist Silkspinner",[4380]="Darkmist Widow",[4382]="Withervine Creeper",[4385]="Withervine Rager",[4386]="Withervine Bark Ripper",[4387]="Withervine Mire Beast",[4388]="Young Murk Thresher",[4389]="Murk Thresher",[4390]="Elder Murk Thresher",[4391]="Swamp Ooze",[4392]="Corrosive Swamp Ooze",[4393]="Acidic Swamp Ooze",[4394]="Bubbling Swamp Ooze",[4396]="Mudrock Tortoise",[4397]="Mudrock Spikeshell",[4398]="Mudrock Burrower",[4399]="Mudrock Borer",[4400]="Mudrock Snapjaw",[4401]="Muckshell Clacker",[4402]="Muckshell Snapclaw",[4403]="Muckshell Pincer",[4404]="Muckshell Scrabbler",[4405]="Muckshell Razorclaw",[4407]="Teloren",[4409]="Gatekeeper Kordurus",[4411]="Darkfang Lurker",[4412]="Darkfang Creeper",[4413]="Darkfang Spider",[4414]="Darkfang Venomspitter",[4415]="Giant Darkfang Spider",[4416]="Defias Strip Miner",[4417]="Defias Taskmaster",[4418]="Defias Wizard",[4419]="Race Master Kronkrider",[4420]="Overlord Ramtusk",[4421]="Charlga Razorflank",[4422]="Agathelos the Raging",[4423]="Darnassian Protector",[4424]="Aggem Thorncurse",[4425]="Blind Hunter",[4427]="Ward Guardian",[4428]="Death Speaker Jargba",[4429]="Goblin Pit Crewman",[4430]="Gnome Pit Crewman",[4435]="Razorfen Warrior",[4436]="Razorfen Quilguard",[4437]="Razorfen Warden",[4438]="Razorfen Spearhide",[4440]="Razorfen Totemic",[4442]="Razorfen Defender",[4444]="Deathstalker Vincent",[4449]="Crazzle Sprysprocket",[4450]="Rugfizzle",[4451]="Auld Stonespire",[4452]="Kravel Koalbeard",[4453]="Wizzle Brassbolts",[4454]="Fizzle Brassbolts",[4455]="Red Jack Flint",[4456]="Fiora Longears",[4457]="Murkgill Forager",[4458]="Murkgill Hunter",[4459]="Murkgill Oracle",[4460]="Murkgill Coldbringer",[4461]="Murkgill Warrior",[4462]="Blackrock Hunter",[4463]="Blackrock Summoner",[4464]="Blackrock Gladiator",[4465]="Vilebranch Warrior",[4466]="Vilebranch Scalper",[4467]="Vilebranch Soothsayer",[4468]="Jade Sludge",[4469]="Emerald Ooze",[4472]="Haunting Vision",[4474]="Rotting Cadaver",[4475]="Blighted Zombie",[4479]="Fardel Dabyrie",[4480]="Kenata Dabyrie",[4481]="Marcel Dabyrie",[4483]="Moktar Krin",[4484]="Feero Ironhand",[4485]="Belgrom Rockmaul",[4486]="Genavie Callow",[4488]="Parqual Fintallas",[4489]="Braug Dimspirit",[4490]="Grenka Bloodscreech",[4493]="Scarlet Avenger",[4494]="Scarlet Spellbinder",[4495]="Gnome Pit Boss",[4496]="Goblin Pit Boss",[4497]="Captain Quirk",[4498]="Maurin Bonesplitter",[4499]="Rok'Alim the Pounder",[4500]="Overlord Mok'Morokk",[4501]="Draz'Zilb",[4502]="Tharg",[4503]="Mudcrush Durtfeet",[4504]="Frostmaw",[4505]="Bloodsail Deckhand",[4506]="Bloodsail Swabby",[4507]="Daisy",[4508]="Willix the Importer",[4509]="Sargath",[4510]="Heralath Fallowbrook",[4511]="Agam'ar",[4512]="Rotting Agam'ar",[4514]="Raging Agam'ar",[4515]="Death's Head Acolyte",[4516]="Death's Head Adept",[4517]="Death's Head Priest",[4518]="Death's Head Sage",[4519]="Death's Head Seer",[4520]="Razorfen Geomancer",[4521]="Treshala Fallowbrook",[4522]="Razorfen Dustweaver",[4523]="Razorfen Groundshaker",[4525]="Razorfen Earthbreaker",[4526]="Wind Howler",[4528]="Stone Rumbler",[4530]="Razorfen Handler",[4531]="Razorfen Beast Trainer",[4532]="Razorfen Beastmaster",[4534]="Tamed Hyena",[4535]="Tamed Battleboar",[4538]="Kraul Bat",[4539]="Greater Kraul Bat",[4540]="Scarlet Monk",[4541]="Blood of Agamaggan",[4542]="High Inquisitor Fairbanks",[4543]="Bloodmage Thalnos",[4544]="Krueg Skullsplitter",[4545]="Nag'zehn",[4546]="Bor'zehn",[4547]="Tarkreu Shadowstalker",[4548]="Steelsnap",[4549]="William Montague",[4550]="Ophelia Montague",[4551]="Michael Garrett",[4552]="Eunice Burch",[4553]="Ronald Burch",[4554]="Tawny Grisette",[4555]="Eleanor Rusk",[4556]="Gordon Wendham",[4557]="Louis Warren",[4558]="Lauren Newcomb",[4559]="Timothy Weldon",[4560]="Walter Ellingson",[4561]="Daniel Bartlett",[4562]="Thomas Mordan",[4563]="Kaal Soulreaper",[4564]="Luther Pickman",[4565]="Richard Kerwin",[4566]="Kaelystia Hatebringer",[4567]="Pierce Shackleton",[4568]="Anastasia Hartwell",[4569]="Charles Seaton",[4570]="Sydney Upton",[4571]="Morley Bates",[4572]="Silas Zimmer",[4573]="Armand Cromwell",[4574]="Lizbeth Cromwell",[4575]="Hannah Akeley",[4576]="Josef Gregorian",[4577]="Millie Gregorian",[4578]="Josephine Lister",[4580]="Lucille Castleton",[4581]="Salazar Bloch",[4582]="Carolyn Ward",[4583]="Miles Dexter",[4584]="Gregory Charles",[4585]="Ezekiel Graves",[4586]="Graham Van Talen",[4587]="Elizabeth Van Talen",[4588]="Arthur Moore",[4589]="Joseph Moore",[4590]="Jonathan Chambers",[4591]="Mary Edras",[4592]="Nathaniel Steenwick",[4593]="Christoph Walker",[4594]="Angela Curthas",[4595]="Baltus Fowler",[4596]="James Van Brunt",[4597]="Samuel Van Brunt",[4598]="Brom Killian",[4599]="Sarah Killian",[4600]="Geoffrey Hartwell",[4601]="Francis Eliot",[4602]="Benijah Fenner",[4603]="Nicholas Atwood",[4604]="Abigail Sawyer",[4605]="Basil Frye",[4606]="Aelthalyste",[4607]="Father Lankester",[4608]="Father Lazarus",[4609]="Doctor Marsh",[4610]="Algernon",[4611]="Doctor Herbert Halsey",[4612]="Boyle",[4613]="Christopher Drakul",[4614]="Martha Alliestar",[4615]="Katrina Alliestar",[4616]="Lavinia Crowe",[4617]="Thaddeus Webb",[4618]="Martek the Exiled",[4619]="Geltharis",[4620]="Fobeed",[4623]="Quilguard Champion",[4624]="Booty Bay Bruiser",[4625]="Death's Head Ward Keeper",[4627]="Arugal's Voidwalker",[4629]="Trackmaster Zherin",[4630]="Pozzik",[4631]="Wharfmaster Lozgil",[4632]="Kolkar Centaur",[4633]="Kolkar Scout",[4634]="Kolkar Mauler",[4635]="Kolkar Windchaser",[4636]="Kolkar Battle Lord",[4637]="Kolkar Destroyer",[4638]="Magram Scout",[4639]="Magram Outrunner",[4640]="Magram Wrangler",[4641]="Magram Windchaser",[4642]="Magram Stormer",[4643]="Magram Pack Runner",[4644]="Magram Marauder",[4645]="Magram Mauler",[4646]="Gelkis Outrunner",[4647]="Gelkis Scout",[4648]="Gelkis Stamper",[4649]="Gelkis Windchaser",[4651]="Gelkis Earthcaller",[4652]="Gelkis Mauler",[4653]="Gelkis Marauder",[4654]="Maraudine Scout",[4655]="Maraudine Wrangler",[4656]="Maraudine Mauler",[4657]="Maraudine Windchaser",[4658]="Maraudine Stormer",[4659]="Maraudine Marauder",[4660]="Maraudine Bonepaw",[4661]="Gelkis Rumbler",[4662]="Magram Bonepaw",[4663]="Burning Blade Augur",[4664]="Burning Blade Reaver",[4665]="Burning Blade Adept",[4666]="Burning Blade Felsworn",[4667]="Burning Blade Shadowmage",[4668]="Burning Blade Summoner",[4670]="Hatefury Rogue",[4671]="Hatefury Trickster",[4672]="Hatefury Felsworn",[4673]="Hatefury Betrayer",[4674]="Hatefury Shadowstalker",[4675]="Hatefury Hellcaller",[4676]="Lesser Infernal",[4677]="Doomwarder",[4678]="Mana Eater",[4679]="Nether Maiden",[4680]="Doomwarder Captain",[4681]="Mage Hunter",[4682]="Nether Sister",[4684]="Nether Sorceress",[4685]="Ley Hunter",[4686]="Deepstrider Giant",[4687]="Deepstrider Searcher",[4688]="Bonepaw Hyena",[4689]="Starving Bonepaw",[4690]="Rabid Bonepaw",[4692]="Dread Swoop",[4693]="Dread Flyer",[4694]="Dread Ripper",[4695]="Carrion Horror",[4696]="Scorpashi Snapper",[4697]="Scorpashi Lasher",[4699]="Scorpashi Venomlash",[4700]="Aged Kodo",[4701]="Dying Kodo",[4702]="Ancient Kodo",[4705]="Burning Blade Invoker",[4706]="Razzeric",[4707]="Zuzubee",[4708]="Shreev",[4709]="Zamek",[4710]="Gray Ram",[4711]="Slitherblade Naga",[4712]="Slitherblade Sorceress",[4713]="Slitherblade Warrior",[4714]="Slitherblade Myrmidon",[4715]="Slitherblade Razortail",[4716]="Slitherblade Tidehunter",[4718]="Slitherblade Oracle",[4719]="Slitherblade Sea Witch",[4720]="Rizzle Brassbolts",[4721]="Zangen Stonehoof",[4722]="Rau Cliffrunner",[4723]="Foreman Cozzle",[4726]="Raging Thunder Lizard",[4727]="Elder Thunder Lizard",[4728]="Gritjaw Basilisk",[4729]="Hulking Gritjaw Basilisk",[4730]="Lelanai",[4731]="Zachariah Post",[4732]="Randal Hunter",[4752]="Kildar",[4753]="Jartsam",[4772]="Ultham Ironhorn",[4773]="Velma Warnam",[4775]="Felicia Doan",[4777]="White Ram",[4778]="Riding Ram (Blue)",[4779]="Brown Ram",[4780]="Riding Ram (Black)",[4781]="Snufflenose Gopher",[4782]="Truk Wildbeard",[4783]="Dawnwatcher Selgorm",[4784]="Argent Guard Manados",[4785]="Illusionary Nightmare",[4786]="Dawnwatcher Shaedlass",[4787]="Scout Thaelrid",[4788]="Fallenroot Satyr",[4789]="Fallenroot Rogue",[4791]="Nazeer Bloodpike",[4794]="Morgan Stern",[4795]="Force of Nature",[4798]="Fallenroot Shadowstalker",[4799]="Fallenroot Hellcaller",[4802]="Blackfathom Tide Priestess",[4803]="Blackfathom Oracle",[4805]="Blackfathom Sea Witch",[4807]="Blackfathom Myrmidon",[4809]="Twilight Acolyte",[4810]="Twilight Reaver",[4811]="Twilight Aquamancer",[4812]="Twilight Loreseeker",[4813]="Twilight Shadowmage",[4814]="Twilight Elementalist",[4815]="Murkshallow Snapclaw",[4818]="Blindlight Murloc",[4819]="Blindlight Muckdweller",[4820]="Blindlight Oracle",[4821]="Skittering Crustacean",[4822]="Snapping Crustacean",[4823]="Barbed Crustacean",[4824]="Aku'mai Fisher",[4825]="Aku'mai Snapjaw",[4827]="Deep Pool Threshfin",[4829]="Aku'mai",[4830]="Old Serra'kis",[4831]="Lady Sarevess",[4832]="Twilight Lord Kelris",[4834]="Theramore Infiltrator",[4841]="Deadmire",[4842]="Earthcaller Halmgar",[4844]="Shadowforge Surveyor",[4845]="Shadowforge Ruffian",[4846]="Shadowforge Digger",[4847]="Shadowforge Relic Hunter",[4848]="Shadowforge Darkcaster",[4849]="Shadowforge Archaeologist",[4850]="Stonevault Cave Lurker",[4851]="Stonevault Rockchewer",[4852]="Stonevault Oracle",[4853]="Stonevault Geomancer",[4854]="Grimlok",[4855]="Stonevault Brawler",[4856]="Stonevault Cave Hunter",[4857]="Stone Keeper",[4860]="Stone Steward",[4861]="Shrike Bat",[4863]="Jadespine Basilisk",[4872]="Obsidian Golem",[4875]="Turhaw",[4876]="Jawn Highmesa",[4877]="Jandia",[4878]="Montarr",[4879]="Ogg'marr",[4883]="Krak",[4884]="Zulrg",[4885]="Gregor MacVince",[4886]="Hans Weston",[4887]="Ghamoo-Ra",[4888]="Marie Holdston",[4889]="Torq Ironblast",[4890]="Piter Verance",[4891]="Dwane Wertle",[4892]="Jensen Farran",[4893]="Bartender Lillian",[4894]="Craig Nollward",[4895]="Smiling Jim",[4896]="Charity Mipsy",[4897]="Helenia Olden",[4898]="Brant Jasperbloom",[4899]="Uma Bartulm",[4900]="Alchemist Narett",[4901]="Sara Pierce",[4902]="Mikal Pierce",[4921]="Guard Byron",[4922]="Guard Edward",[4923]="Guard Jarad",[4924]="Combat Master Criton",[4926]="Krog",[4941]="Caz Twosprocket",[4943]="Mosarn",[4944]="Captain Garran Vimes",[4945]="Goblin Drag Car",[4946]="Gnome Drag Car",[4947]="Theramore Lieutenant",[4948]="Adjutant Tesoran",[4949]="Thrall",[4950]="Spot",[4951]="Theramore Practicing Guard",[4952]="Theramore Combat Dummy",[4953]="Moccasin",[4954]="Uttnar",[4955]="Theramore Archery Target 1",[4958]="Haunting Spirit",[4959]="Jorgen",[4960]="Bishop DeLavey",[4961]="Dashel Stonefist",[4963]="Mikhail",[4964]="Commander Samaul",[4965]="Pained",[4966]="Private Hendel",[4967]="Archmage Tervosh",[4968]="Lady Jaina Proudmoore",[4969]="Old Town Thug",[4971]="Slim's Friend",[4972]="Kagoro",[4973]="Guard Lasiter",[4974]="Aldwin Laughlin",[4975]="Theramore Archery Target 2",[4977]="Murkshallow Softshell",[4978]="Aku'mai Servant",[4979]="Theramore Guard",[4980]="Paval Reethe",[4981]="Ben Trias",[4982]="Thomas",[4983]="Ogron",[4984]="Argos Nightwhisper",[4992]="World Warrior Trainer",[4995]="Stockade Guard",[4996]="Injured Stockade Guard",[5042]="Nurse Lillian",[5043]="Defias Rioter",[5044]="Theramore Skirmisher",[5045]="Private Hallan",[5046]="Lieutenant Caldwell",[5047]="Ellaercia",[5048]="Deviate Adder",[5049]="Lyesa Steelbrow",[5052]="Edward Remington",[5053]="Deviate Crocolisk",[5054]="Krumn",[5055]="Deviate Lasher",[5056]="Deviate Dreadfang",[5057]="Theramore Deserter",[5058]="Wolfguard Worg",[5060]="World Banker",[5081]="Connor Rivers",[5082]="Vincent Hyal",[5083]="Paymaster Lendry",[5085]="Sentry Point Guard",[5086]="Captain Wymor",[5087]="Do'gol",[5088]="Falgran Hastil",[5089]="Balos Jacken",[5090]="Combat Master Szigeti",[5091]="Guard Kahil",[5092]="Guard Lana",[5093]="Guard Narrisha",[5094]="Guard Tark",[5095]="Captain Andrews",[5096]="Captain Thomas",[5097]="Lupine Delusion",[5099]="Soleil Stonemantle",[5100]="Fillius Fizzlespinner",[5101]="Bryllia Ironbrand",[5102]="Dolman Steelfury",[5103]="Grenil Steelfury",[5106]="Bromiir Ormsen",[5107]="Mangorn Flinthammer",[5108]="Raena Flinthammer",[5109]="Myra Tyrngaarde",[5110]="Barim Jurgenstaad",[5111]="Innkeeper Firebrew",[5112]="Gwenna Firebrew",[5113]="Kelv Sternhammer",[5114]="Bilban Tosslespanner",[5115]="Daera Brightspear",[5116]="Olmin Burningbeard",[5117]="Regnus Thundergranite",[5118]="Brogun Stoneshield",[5119]="Hegnar Swiftaxe",[5120]="Brenwyn Wintersteel",[5121]="Kelomir Ironhand",[5122]="Skolmin Goldfury",[5123]="Bretta Goldfury",[5124]="Sognar Cliffbeard",[5125]="Dolkin Craghelm",[5126]="Olthran Craghelm",[5127]="Fimble Finespindle",[5128]="Bombus Finespindle",[5129]="Lissyphus Finespindle",[5130]="Jondor Steelbrow",[5132]="Pithwick",[5133]="Harick Boulderdrum",[5134]="Jonivera Farmountain",[5135]="Svalbrad Farmountain",[5137]="Reyna Stonebranch",[5138]="Gwina Stonebranch",[5139]="Kurdrum Barleybeard",[5140]="Edris Barleybeard",[5141]="Theodrus Frostbeard",[5142]="Braenna Flintcrag",[5143]="Toldren Deepiron",[5144]="Bink",[5145]="Juli Stormkettle",[5146]="Nittlebur Sparkfizzle",[5147]="Valgar Highforge",[5148]="Beldruk Doombrow",[5149]="Brandur Ironhammer",[5150]="Nissa Firestone",[5151]="Ginny Longberry",[5152]="Bingus",[5153]="Jormund Stonebrow",[5154]="Poranna Snowbraid",[5155]="Ingrys Stonebrow",[5156]="Maeva Snowbraid",[5157]="Gimble Thistlefuzz",[5158]="Tilli Thistlefuzz",[5159]="Daryl Riknussun",[5160]="Emrul Riknussun",[5161]="Grimnur Stonebrand",[5162]="Tansy Puddlefizz",[5163]="Burbik Gearspanner",[5164]="Grumnus Steelshaper",[5165]="Hulfdan Blackbeard",[5166]="Ormyr Flinteye",[5167]="Fenthwick",[5169]="Tynnus Venomsprout",[5170]="Hjoldir Stoneblade",[5171]="Thistleheart",[5172]="Briarthorn",[5173]="Alexander Calder",[5174]="Springspindle Fizzlegear",[5175]="Gearcutter Cogspinner",[5177]="Tally Berryfizz",[5178]="Soolie Berryfizz",[5184]="Theramore Sentry",[5185]="Hammerhead Shark",[5186]="Basking Shark",[5188]="Garyl",[5189]="Thrumn",[5190]="Merill Pleasance",[5191]="Shalumon",[5193]="Rebecca Laughlin",[5194]="Black Riding Wolf",[5195]="Brown Riding Wolf",[5196]="Gray Riding Wolf",[5197]="Red Riding Wolf",[5198]="Arctic Riding Wolf",[5199]="Medic Tamberlyn",[5200]="Medic Helaina",[5202]="Archery Target",[5204]="Apothecary Zinge",[5224]="Murk Slitherer",[5225]="Murk Spitter",[5226]="Murk Worm",[5228]="Saturated Ooze",[5229]="Gordunni Ogre",[5232]="Gordunni Brute",[5234]="Gordunni Mauler",[5235]="Fungal Ooze",[5236]="Gordunni Shaman",[5237]="Gordunni Ogre Mage",[5238]="Gordunni Battlemaster",[5239]="Gordunni Mage-Lord",[5240]="Gordunni Warlock",[5241]="Gordunni Warlord",[5243]="Cursed Atal'ai",[5244]="Zukk'ash Stinger",[5245]="Zukk'ash Wasp",[5246]="Zukk'ash Worker",[5247]="Zukk'ash Tunneler",[5249]="Woodpaw Mongrel",[5251]="Woodpaw Trapper",[5253]="Woodpaw Brute",[5254]="Woodpaw Mystic",[5255]="Woodpaw Reaver",[5256]="Atal'ai Warrior",[5258]="Woodpaw Alpha",[5259]="Atal'ai Witch Doctor",[5260]="Groddoc Ape",[5261]="Enthralled Atal'ai",[5262]="Groddoc Thunderer",[5263]="Mummified Atal'ai",[5267]="Unliving Atal'ai",[5268]="Ironfur Bear",[5269]="Atal'ai Priest",[5270]="Atal'ai Corpse Eater",[5271]="Atal'ai Deathwalker",[5272]="Grizzled Ironfur Bear",[5273]="Atal'ai High Priest",[5274]="Ironfur Patriarch",[5276]="Sprite Dragon",[5277]="Nightmare Scalebane",[5278]="Sprite Darter",[5280]="Nightmare Wyrmkin",[5283]="Nightmare Wanderer",[5286]="Longtooth Runner",[5287]="Longtooth Howler",[5288]="Rabid Longtooth",[5291]="Hakkari Frostwing",[5292]="Feral Scar Yeti",[5293]="Hulking Feral Scar",[5295]="Enraged Feral Scar",[5296]="Rage Scar Yeti",[5297]="Elder Rage Scar",[5299]="Ferocious Rage Scar",[5300]="Frayfeather Hippogryph",[5304]="Frayfeather Stagwing",[5305]="Frayfeather Skystormer",[5306]="Frayfeather Patriarch",[5307]="Vale Screecher",[5308]="Rogue Vale Screecher",[5312]="Lethlas",[5314]="Phantim",[5317]="Jademir Oracle",[5319]="Jademir Tree Warder",[5320]="Jademir Boughguard",[5327]="Coast Crawl Snapclaw",[5328]="Coast Crawl Deepseer",[5331]="Hatecrest Warrior",[5332]="Hatecrest Wave Rider",[5333]="Hatecrest Serpent Guard",[5334]="Hatecrest Myrmidon",[5335]="Hatecrest Screamer",[5336]="Hatecrest Sorceress",[5337]="Hatecrest Siren",[5343]="Lady Szallah",[5345]="Diamond Head",[5346]="Bloodroar the Stalker",[5347]="Antilus the Soarer",[5348]="Dreamwatcher Forktongue",[5349]="Arash-ethis",[5350]="Qirot",[5352]="Old Grizzlegut",[5353]="Itharius",[5354]="Gnarl Leafbrother",[5355]="Firewing Defender",[5356]="Snarler",[5357]="Land Walker",[5358]="Cliff Giant",[5359]="Shore Strider",[5360]="Deep Strider",[5361]="Wave Strider",[5362]="Northspring Harpy",[5363]="Northspring Roguefeather",[5364]="Northspring Slayer",[5366]="Northspring Windcaller",[5384]="Brohann Caskbelly",[5385]="Watcher Mahar Ba",[5386]="Acolyte Dellis",[5387]="High Explorer Magellas",[5388]="Ingo Woolybush",[5389]="Prospector Gunstan",[5390]="Sage Palerunner",[5391]="Galen Goodward",[5392]="Yarr Hammerstone",[5393]="Quartermaster Lungertz",[5394]="Neeka Bloodscar",[5395]="Felgur Twocuts",[5396]="Captain Pentigast",[5397]="Uthek the Wise",[5398]="Warug",[5399]="Veyzhak the Cannibal",[5400]="Zekkis",[5401]="Kazkaz the Unholy",[5402]="Khan Hratha",[5403]="Riding White Stallion",[5407]="Nightmare",[5409]="Harvester Swarm",[5411]="Krinkle Goodsteel",[5412]="Gurda Wildmane",[5413]="Furen Longbeard",[5414]="Apothecary Faustin",[5416]="Infiltrator Marksen",[5418]="Deathstalker Zraedus",[5419]="Glasshide Basilisk",[5420]="Glasshide Gazer",[5421]="Glasshide Petrifier",[5422]="Scorpid Hunter",[5423]="Scorpid Tail Lasher",[5424]="Scorpid Dunestalker",[5425]="Starving Blisterpaw",[5426]="Blisterpaw Hyena",[5427]="Rabid Blisterpaw",[5428]="Roc",[5429]="Fire Roc",[5430]="Searing Roc",[5431]="Surf Glider",[5432]="Giant Surf Glider",[5434]="Coral Shark",[5435]="Sand Shark",[5441]="Hazzali Wasp",[5450]="Hazzali Stinger",[5451]="Hazzali Swarmer",[5452]="Hazzali Worker",[5453]="Hazzali Tunneler",[5454]="Hazzali Sandreaver",[5455]="Centipaar Wasp",[5456]="Centipaar Stinger",[5457]="Centipaar Swarmer",[5458]="Centipaar Worker",[5459]="Centipaar Tunneler",[5460]="Centipaar Sandreaver",[5461]="Sea Elemental",[5462]="Sea Spray",[5464]="Watchmaster Sorigal",[5465]="Land Rager",[5466]="Coast Strider",[5467]="Deep Dweller",[5469]="Dune Smasher",[5470]="Raging Dune Smasher",[5471]="Dunemaul Ogre",[5472]="Dunemaul Enforcer",[5473]="Dunemaul Ogre Mage",[5474]="Dunemaul Brute",[5475]="Dunemaul Warlock",[5476]="Watcher Biggs",[5477]="Noboru the Cudgel",[5479]="Wu Shen",[5480]="Ilsa Corbin",[5481]="Thistleshrub Dew Collector",[5482]="Stephen Ryback",[5483]="Erika Tate",[5484]="Brother Benjamin",[5485]="Thistleshrub Rootshaper",[5489]="Brother Joshua",[5490]="Gnarled Thistleshrub",[5491]="Arthur the Faithful",[5492]="Katherine the Pure",[5493]="Arnold Leland",[5494]="Catherine Leland",[5495]="Ursula Deline",[5496]="Sandahl",[5497]="Jennea Cannon",[5498]="Elsharin",[5499]="Lilyssia Nightbreeze",[5500]="Tel'Athir",[5501]="Kaerbrus",[5502]="Shylamiir",[5503]="Eldraeith",[5504]="Sheldras Moontree",[5505]="Theridran",[5506]="Maldryn",[5508]="Strumner Flintheel",[5509]="Kathrum Axehand",[5510]="Thulman Flintcrag",[5511]="Therum Deepforge",[5512]="Kaita Deepforge",[5513]="Gelman Stonehand",[5514]="Brooke Stonebraid",[5515]="Einris Brightspear",[5516]="Ulfir Ironbeard",[5517]="Thorfin Stoneshield",[5518]="Lilliam Sparkspindle",[5519]="Billibub Cogspinner",[5520]="Spackle Thornberry",[5523]="War Party Kodo",[5524]="Caravan Watcher",[5525]="Caravan Packhorse",[5543]="Clarice Foster",[5546]="Grunt Zuul",[5547]="Grunt Tharlak",[5564]="Simon Tanner",[5565]="Jillian Tanner",[5566]="Tannysa",[5567]="Sellandus",[5568]="Captured Leper Gnome",[5569]="Fizzlebang Booms",[5570]="Bruuk Barleybeard",[5591]="Dar",[5592]="Tok'Kar",[5593]="Katar",[5594]="Alchemist Pestlezugg",[5595]="Ironforge Guard",[5597]="Grunt Komak",[5598]="Atal'ai Exile",[5599]="Kon Yelloweyes",[5600]="Khan Dez'hepah",[5601]="Khan Jehn",[5602]="Khan Shaka",[5603]="Grunt Mojka",[5605]="Tisa Martine",[5606]="Goma",[5607]="Roger",[5608]="Jamin",[5609]="Zazo",[5610]="Kozish",[5611]="Barkeep Morag",[5612]="Gimrizz Shadowcog",[5613]="Doyo'da",[5614]="Sarok",[5615]="Wastewander Rogue",[5616]="Wastewander Thief",[5617]="Wastewander Shadow Mage",[5618]="Wastewander Bandit",[5620]="Bartender Wental",[5622]="Ongeku",[5623]="Wastewander Assassin",[5624]="Undercity Guardian",[5629]="Theramore Commando",[5634]="Rhapsody Shindigger",[5635]="Falstad Wildhammer",[5636]="Gryphon Master Talonaxe",[5637]="Roetten Stonehammer",[5638]="Kreldig Ungor",[5639]="Craven Drok",[5640]="Keldran",[5641]="Takata Steelblade",[5642]="Vahlarriel Demonslayer",[5643]="Tyranis Malem",[5644]="Dalinda Malem",[5645]="Sandfury Hideskinner",[5646]="Sandfury Axe Thrower",[5647]="Sandfury Firecaller",[5648]="Sandfury Shadowcaster",[5649]="Sandfury Blood Drinker",[5650]="Sandfury Witch Doctor",[5651]="Patrick Garrett",[5652]="Undercity Practice Dummy",[5653]="Tyler",[5654]="Edward",[5655]="Robert Gossom",[5656]="Richard Van Brunt",[5657]="Marla Fowler",[5658]="Chloe Curthas",[5659]="Andrew Hartwell",[5660]="Riley Walker",[5661]="Brother Malach",[5662]="Sergeant Houser",[5663]="Travist Bosk",[5664]="Eldin Partridge",[5665]="Alyssa Blaye",[5666]="Gunther's Visage",[5667]="Venya Marthand",[5668]="Mattie Alred",[5669]="Helena Atwood",[5670]="Edrick Killian",[5674]="Practice Target",[5675]="Carendin Halgar",[5676]="Summoned Voidwalker",[5677]="Summoned Succubus",[5679]="Lysta Bancroft",[5680]="Male Human Captive",[5681]="Female Human Captive",[5682]="Dalin Forgewright",[5683]="Comar Villard",[5685]="Captive Ghoul",[5686]="Captive Zombie",[5687]="Captive Abomination",[5688]="Innkeeper Renee",[5690]="Clyde Kellen",[5691]="Dalin Forgewright Projection",[5692]="Comar Villard Projection",[5693]="Godrick Farsan",[5694]="High Sorcerer Andromath",[5695]="Vance Undergloom",[5696]="Gerard Abernathy",[5697]="Theresa",[5698]="Joanna Whitehall",[5699]="Leona Tharpe",[5700]="Samantha Shackleton",[5701]="Selina Pickman",[5702]="Jezelle Pruitt",[5703]="Winifred Kerwin",[5704]="Adrian Bartlett",[5705]="Victor Bartholomew",[5706]="Davitt Hickson",[5707]="Reginald Grimsford",[5708]="Spawn of Hakkar",[5709]="Shade of Eranikus",[5710]="Jammal'an the Prophet",[5711]="Ogom the Wretched",[5712]="Zolo",[5713]="Gasher",[5714]="Loro",[5715]="Hukku",[5716]="Zul'Lor",[5717]="Mijan",[5718]="Rothos",[5719]="Morphaz",[5720]="Weaver",[5721]="Dreamscythe",[5722]="Hazzas",[5723]="Warug's Target Dummy",[5724]="Ageron Kargal",[5725]="Deathguard Lundmark",[5726]="Jezelle's Felhunter",[5727]="Jezelle's Felsteed",[5728]="Jezelle's Succubus",[5729]="Jezelle's Voidwalker",[5730]="Jezelle's Imp",[5731]="Apothecary Vallia",[5732]="Apothecary Katrina",[5733]="Apothecary Lycanus",[5734]="Apothecary Keever",[5735]="Caged Human Female",[5736]="Caged Human Male",[5738]="Caged Dwarf Male",[5739]="Caged Squirrel",[5741]="Caged Rabbit",[5742]="Caged Toad",[5743]="Caged Sheep",[5744]="Cedric Stumpel",[5747]="Hepzibah Sedgewick",[5748]="Killian Sanatha",[5749]="Kayla Smithe",[5750]="Gina Lang",[5752]="Corporal Melkins",[5753]="Martha Strain",[5754]="Zane Bradford",[5755]="Deviate Viper",[5756]="Deviate Venomwing",[5757]="Lilly",[5758]="Leo Sarn",[5759]="Nurse Neela",[5760]="Lord Azrethoc",[5761]="Deviate Shambler",[5762]="Deviate Moccasin",[5763]="Nightmare Ectoplasm",[5765]="Ruzan",[5766]="Savannah Cub",[5767]="Nalpak",[5768]="Ebru",[5769]="Arch Druid Hamuul Runetotem",[5770]="Nara Wildmane",[5771]="Jugkar Grim'rod",[5772]="Lord Azrethoc's Image",[5773]="Jugkar Grim'rod's Image",[5774]="Riding Wolf",[5775]="Verdan the Everliving",[5779]="Summoned Viper",[5780]="Cloned Ectoplasm",[5781]="Silithid Creeper Egg",[5782]="Crildor",[5783]="Kalldan Felmoon",[5784]="Waldor",[5785]="Sister Hatelash",[5786]="Snagglespear",[5787]="Enforcer Emilgund",[5788]="Gelgann Direforge",[5792]="Drag Master Miglen",[5797]="Aean Swiftriver",[5798]="Thora Feathermoon",[5799]="Hannah Bladeleaf",[5800]="Marcus Bel",[5806]="Treant Ally",[5807]="The Rake",[5808]="Warlord Kolkanis",[5809]="Sergeant Curtis",[5810]="Uzzek",[5811]="Kamari",[5812]="Tumi",[5814]="Innkeeper Thulbek",[5815]="Kurgul",[5816]="Katis",[5817]="Shimra",[5819]="Mirelle Tremayne",[5820]="Gillian Moore",[5821]="Sheldon Von Croy",[5822]="Felweaver Scornn",[5823]="Death Flayer",[5824]="Captain Flat Tusk",[5826]="Geolord Mottle",[5827]="Brontus",[5828]="Humar the Pridelord",[5829]="Snort the Heckler",[5830]="Sister Rathtalon",[5831]="Swiftmane",[5832]="Thunderstomp",[5833]="Margol the Rager",[5834]="Azzere the Skyblade",[5835]="Foreman Grills",[5836]="Engineer Whirleygig",[5837]="Stonearm",[5838]="Brokespear",[5839]="Dark Iron Geologist",[5840]="Dark Iron Steamsmith",[5841]="Rocklance",[5842]="Takk the Leaper",[5843]="Slave Worker",[5844]="Dark Iron Slaver",[5846]="Dark Iron Taskmaster",[5847]="Heggin Stonewhisker",[5848]="Malgin Barleybrew",[5849]="Digger Flameforge",[5850]="Blazing Elemental",[5851]="Captain Gerogg Hammertoe",[5852]="Inferno Elemental",[5853]="Tempered War Golem",[5854]="Heavy War Golem",[5855]="Magma Elemental",[5856]="Glassweb Spider",[5857]="Searing Lava Spider",[5858]="Greater Lava Spider",[5859]="Hagg Taurenbane",[5860]="Twilight Dark Shaman",[5861]="Twilight Fire Guard",[5862]="Twilight Geomancer",[5863]="Geopriest Gukk'rok",[5864]="Swinegart Spearhide",[5865]="Dishu",[5868]="Evil Squirrel",[5870]="Krond",[5871]="Larhka",[5873]="Stoneskin Totem",[5874]="Strength of Earth Totem",[5875]="Gan'rul Bloodeye",[5878]="Thun'grim Firegaze",[5879]="Fire Nova Totem",[5880]="Un'Thuwa",[5881]="Cursed Sycamore",[5882]="Pephredo",[5883]="Enyo",[5884]="Mai'ah",[5885]="Deino",[5886]="Gwyn Farrow",[5887]="Canaga Earthcaller",[5888]="Seer Ravenfeather",[5889]="Mesa Earth Spirit",[5890]="Redrock Earth Spirit",[5891]="Minor Manifestation of Earth",[5892]="Searn Firewarder",[5893]="Minor Manifestation of Fire",[5894]="Corrupt Minor Manifestation of Water",[5895]="Minor Manifestation of Water",[5896]="Fire Spirit",[5897]="Corrupt Water Spirit",[5898]="Air Spirit",[5899]="Brine",[5900]="Telf Joolam",[5901]="Islen Waterseer",[5902]="Minor Manifestation of Air",[5903]="Nyx Bloodrage",[5905]="Prate Cloudseer",[5906]="Xanis Flameweaver",[5907]="Kranal Fiss",[5908]="Grunt Dogran",[5909]="Cazul",[5910]="Zankaja",[5911]="Grunt Logmar",[5912]="Deviate Faerie Dragon",[5913]="Tremor Totem",[5914]="Deviate Nightmare",[5915]="Brother Ravenoak",[5916]="Sentinel Amarassan",[5917]="Clara Charles",[5919]="Stoneskin Totem II",[5920]="Stoneskin Totem III",[5921]="Strength of Earth Totem II",[5922]="Strength of Earth Totem III",[5923]="Poison Cleansing Totem",[5924]="Cleansing Totem",[5925]="Grounding Totem",[5926]="Frost Resistance Totem",[5927]="Elemental Resistance Totem",[5928]="Sorrow Wing",[5929]="Magma Totem",[5930]="Sister Riven",[5931]="Foreman Rigger",[5932]="Taskmaster Whipfang",[5933]="Achellios the Banished",[5934]="Heartrazor",[5935]="Ironeye the Invincible",[5936]="Orca",[5937]="Vile Sting",[5938]="Uthan Stillwater",[5939]="Vira Younghoof",[5940]="Harn Longcast",[5941]="Lau'Tiki",[5942]="Zansoa",[5943]="Rawrk",[5944]="Yonada",[5945]="Owl Companion",[5950]="Flametongue Totem",[5951]="Hare",[5952]="Den Grunt",[5953]="Razor Hill Grunt",[5955]="Tooga",[5957]="Birgitte Cranston",[5958]="Thuul",[5963]="World Tauren Male Druid Trainer",[5974]="Dreadmaul Ogre",[5975]="Dreadmaul Ogre Mage",[5976]="Dreadmaul Brute",[5977]="Dreadmaul Mauler",[5978]="Dreadmaul Warlock",[5979]="Wretched Lost One",[5981]="Portal Seeker",[5982]="Black Slayer",[5983]="Bonepicker Felfeeder",[5984]="Starving Snickerfang",[5985]="Snickerfang Hyena",[5988]="Scorpok Stinger",[5990]="Redstone Basilisk",[5991]="Redstone Crystalhide",[5992]="Ashmane Boar",[5993]="Helboar",[5994]="Zayus",[5996]="Nethergarde Miner",[5997]="Nethergarde Engineer",[5998]="Nethergarde Foreman",[5999]="Nethergarde Soldier",[6000]="Nethergarde Cleric",[6001]="Nethergarde Analyst",[6002]="Nethergarde Riftwatcher",[6003]="Nethergarde Officer",[6004]="Shadowsworn Ritualist",[6005]="Shadowsworn Thug",[6006]="Shadowsworn Adept",[6007]="Shadowsworn Enforcer",[6008]="Shadowsworn Warlock",[6009]="Shadowsworn Dreadweaver",[6010]="Felhound",[6011]="Felguard Sentry",[6012]="Flametongue Totem II",[6013]="Wayward Buzzard",[6014]="X'yera",[6015]="Torta",[6016]="Elemental Protection Totem",[6017]="Lava Spout Totem",[6018]="Ur'kyo",[6019]="Hornizz Brimbuzzle",[6020]="Slimeshell Makrura",[6021]="Boar Spirit",[6026]="Breyk",[6027]="Kitha",[6028]="Burkrum",[6030]="Thorvald Deepforge",[6031]="Tormus Deepforge",[6033]="Lake Frenzy",[6034]="Lotherias",[6035]="Razorfen Stalker",[6047]="Aqua Guardian",[6066]="Earthgrab Totem",[6068]="Warug's Bodyguard",[6069]="Maraudine Khan Guard",[6070]="Maraudine Khan Advisor",[6071]="Legion Hound",[6072]="Diathorus the Seeker",[6073]="Searing Infernal",[6074]="Striped Frostsaber",[6075]="Emerald Raptor",[6076]="Riding Tallstrider (Ivory)",[6086]="Auberdine Sentinel",[6087]="Astranaar Sentinel",[6089]="Harry Burlguard",[6090]="Bartleby",[6091]="Dellylah",[6093]="Dead-Tooth Jack",[6094]="Byancie",[6107]="Shade",[6109]="Azuregos",[6110]="Fire Nova Totem II",[6111]="Fire Nova Totem III",[6112]="Windfury Totem",[6113]="Vejrek",[6114]="Muren Stormpike",[6115]="Roaming Felguard",[6116]="Highborne Apparition",[6117]="Highborne Lichling",[6118]="Varo'then's Ghost",[6119]="Tog Rustsprocket",[6120]="Lago Blackwrench",[6121]="Remen Marcot",[6122]="Gakin the Darkbinder",[6123]="Dark Iron Spy",[6124]="Captain Beld",[6125]="Haldarr Satyr",[6126]="Haldarr Trickster",[6127]="Haldarr Felsworn",[6128]="Vorlus Vilehoof",[6129]="Draconic Magelord",[6130]="Blue Scalebane",[6131]="Draconic Mageweaver",[6132]="Razorfen Servitor",[6133]="Shade of Elura",[6134]="Lord Arkkoroc",[6135]="Arkkoran Clacker",[6136]="Arkkoran Muckdweller",[6137]="Arkkoran Pincer",[6138]="Arkkoran Oracle",[6139]="Highperch Soarer",[6140]="Hetaera",[6141]="Pridewing Soarer",[6142]="Mathiel",[6143]="Servant of Arkkoroc",[6144]="Son of Arkkoroc",[6145]="School of Fish",[6146]="Cliff Breaker",[6147]="Cliff Thunderer",[6148]="Cliff Walker",[6166]="Yorus Barleybrew",[6167]="Chimaera Matriarch",[6168]="Roogug",[6169]="Klockmort Spannerspan",[6170]="Gutspill",[6171]="Duthorian Rall",[6172]="Henze Faulk",[6173]="Gazin Tenorm",[6174]="Stephanie Turner",[6175]="John Turner",[6176]="Bath'rah the Windwatcher",[6177]="Narm Faulk",[6178]="Muiredon Battleforge",[6179]="Tiza Battleforge",[6180]="Defias Raider",[6181]="Jordan Stilwell",[6182]="Daphne Stilwell",[6184]="Timbermaw Pathfinder",[6185]="Timbermaw Warrior",[6186]="Timbermaw Totemic",[6187]="Timbermaw Den Watcher",[6188]="Timbermaw Shaman",[6189]="Timbermaw Ursa",[6190]="Spitelash Warrior",[6193]="Spitelash Screamer",[6194]="Spitelash Serpent Guard",[6195]="Spitelash Siren",[6196]="Spitelash Myrmidon",[6198]="Blood Elf Surveyor",[6199]="Blood Elf Reclaimer",[6200]="Legashi Satyr",[6201]="Legashi Rogue",[6202]="Legashi Hellcaller",[6206]="Caverndeep Burrower",[6207]="Caverndeep Ambusher",[6208]="Caverndeep Invader",[6209]="Caverndeep Looter",[6210]="Caverndeep Pillager",[6211]="Caverndeep Reaver",[6212]="Dark Iron Agent",[6213]="Irradiated Invader",[6215]="Chomper",[6218]="Irradiated Slime",[6219]="Corrosive Lurker",[6220]="Irradiated Horror",[6221]="Addled Leper",[6222]="Leprous Technician",[6223]="Leprous Defender",[6224]="Leprous Machinesmith",[6225]="Mechano-Tank",[6226]="Mechano-Flamewalker",[6227]="Mechano-Frostwalker",[6228]="Dark Iron Ambassador",[6229]="Crowd Pummeler 9-60",[6230]="Peacekeeper Security Suit",[6231]="Techbot",[6232]="Arcane Nullifier X-21",[6233]="Mechanized Sentry",[6234]="Mechanized Guardian",[6235]="Electrocutioner 6000",[6236]="Klannoc Macleod",[6237]="Stockade Archer",[6238]="Big Will",[6239]="Cyclonian",[6240]="Affray Challenger",[6241]="Bailor Stonehand",[6243]="Gelihast",[6244]="Takar the Seer",[6245]="Anathera",[6246]="Latherion",[6247]="Doan Karhan",[6248]="Twiggy Flathead",[6249]="Affray Spectator",[6250]="Crawler",[6251]="Strahad Farsan",[6252]="Acolyte Magaz",[6253]="Acolyte Fenrick",[6254]="Acolyte Wytula",[6266]="Menara Voidrender",[6267]="Acolyte Porena",[6268]="Summoned Felhunter",[6271]="Mouse",[6272]="Innkeeper Janene",[6286]="Zarrin",[6287]="Radnaal Maneweaver",[6288]="Jayla",[6289]="Rand Rhobart",[6290]="Yonn Deepcut",[6291]="Balthus Stoneflayer",[6292]="Eladriel",[6293]="Jorah Annison",[6294]="Krom Stoutarm",[6295]="Wilma Ranthal",[6297]="Kurdram Stonehammer",[6298]="Thelgrum Stonehammer",[6299]="Delfrum Flintbeard",[6300]="Elisa Steelhand",[6301]="Gorbold Steelhand",[6306]="Helene Peltskinner",[6328]="Dannie Fizzwizzle",[6329]="Irradiated Pillager",[6347]="Young Wavethrasher",[6348]="Wavethrasher",[6349]="Great Wavethrasher",[6350]="Makrinni Razorclaw",[6351]="Storm Bay Oracle",[6352]="Coralshell Lurker",[6366]="Kurzen Mindslave",[6367]="Donni Anthania",[6368]="Cat",[6369]="Coralshell Tortoise",[6370]="Makrinni Scrabbler",[6371]="Storm Bay Warrior",[6372]="Makrinni Snapclaw",[6373]="Dane Winslow",[6374]="Cylina Darkheart",[6375]="Thunderhead Hippogryph",[6376]="Wren Darkspring",[6377]="Thunderhead Stagwing",[6378]="Thunderhead Skystormer",[6379]="Thunderhead Patriarch",[6380]="Thunderhead Consort",[6382]="Jubahl Corpseseeker",[6386]="Ward of Zanzil",[6387]="Dranh",[6388]="Zanzil Skeleton",[6389]="Deathguard Podrig",[6390]="Ulag the Cleaver",[6391]="Holdout Warrior",[6392]="Holdout Medic",[6393]="Henen Ragetotem",[6394]="Ruga Ragetotem",[6395]="Sergeant Rutger",[6407]="Holdout Technician",[6408]="Ula'elek",[6410]="Orm Stonehoof",[6411]="Velora Nitely",[6412]="Skeleton",[6426]="Anguished Dead",[6427]="Haunting Phantasm",[6446]="Therzok",[6466]="Gamon",[6467]="Mennet Carkad",[6486]="Black Skeletal Horse",[6487]="Arcanist Doan",[6488]="Fallen Champion",[6489]="Ironspine",[6490]="Azshir the Sleepless",[6491]="Spirit Healer",[6492]="Rift Spawn",[6493]="Illusionary Phantasm",[6494]="Tazan",[6495]="Riznek",[6496]="Brivelthwerp",[6497]="Astor Hadren",[6498]="Devilsaur",[6499]="Ironhide Devilsaur",[6500]="Tyrant Devilsaur",[6501]="Stegodon",[6502]="Plated Stegodon",[6503]="Spiked Stegodon",[6504]="Thunderstomp Stegodon",[6505]="Ravasaur",[6506]="Ravasaur Runner",[6507]="Ravasaur Hunter",[6508]="Venomhide Ravasaur",[6509]="Bloodpetal Lasher",[6510]="Bloodpetal Flayer",[6511]="Bloodpetal Thresher",[6512]="Bloodpetal Trapper",[6513]="Un'Goro Stomper",[6514]="Un'Goro Gorilla",[6516]="Un'Goro Thunderer",[6517]="Tar Beast",[6518]="Tar Lurker",[6519]="Tar Lord",[6520]="Scorching Elemental",[6521]="Living Blaze",[6522]="Andron Gant",[6523]="Dark Iron Rifleman",[6527]="Tar Creeper",[6546]="Tabetha",[6547]="Suffering Victim",[6548]="Magus Tirth",[6549]="Demon of the Orb",[6550]="Mana Surge",[6551]="Gorishi Wasp",[6552]="Gorishi Worker",[6553]="Gorishi Reaver",[6554]="Gorishi Stinger",[6555]="Gorishi Tunneler",[6556]="Muculent Ooze",[6557]="Primal Ooze",[6559]="Glutinous Ooze",[6560]="Stone Guardian",[6566]="Estelle Gendry",[6567]="Ghok'kah",[6568]="Vizzklick",[6569]="Gnoarn",[6570]="Fenwick Thatros",[6573]="Travel Form (Druid)",[6574]="Jun'ha",[6575]="Scarlet Trainee",[6576]="Brienna Starglow",[6577]="Bingles Blastenheimer",[6579]="Shoni the Shilent",[6581]="Ravasaur Matriarch",[6582]="Clutchmother Zavas",[6583]="Gruff",[6584]="King Mosh",[6585]="Uhk'loc",[6586]="Rokar Bladeshadow",[6606]="Overseer Glibby",[6607]="Harroc",[6646]="Monnos the Elder",[6647]="Magister Hawkhelm",[6648]="Antilos",[6649]="Lady Sesspira",[6650]="General Fangferror",[6651]="Gatekeeper Rageroar",[6652]="Master Feardred",[6653]="Huge Toad",[6667]="Gelkak Gyromast",[6668]="Lord Cyrik Blackforge",[6669]="The Threshwackonator 4100",[6670]="Westfall Woodworker",[6706]="Baritanas Skyriver",[6707]="Fahrad",[6726]="Thalon",[6727]="Innkeeper Brianna",[6728]="Narnie",[6729]="Morridune",[6730]="Jinky Twizzlefixxit",[6731]="Harlown Darkweave",[6732]="Amie Pierce",[6733]="Stonevault Basher",[6734]="Innkeeper Hearthstove",[6735]="Innkeeper Saelienne",[6736]="Innkeeper Keldamyr",[6737]="Innkeeper Shaussiy",[6738]="Innkeeper Kimlya",[6739]="Innkeeper Bates",[6740]="Innkeeper Allison",[6741]="Innkeeper Norman",[6746]="Innkeeper Pala",[6747]="Innkeeper Kauth",[6748]="Water Spirit",[6749]="Erma",[6766]="Ravenholdt Guard",[6768]="Lord Jorach Ravenholdt",[6771]="Ravenholdt Assassin",[6774]="Falkhaan Isenstrider",[6775]="Antur Fallow",[6776]="Magrin Rivermane",[6777]="Zan Shivsproket",[6778]="Melika Isenstrider",[6779]="Smudge Thunderwood",[6780]="Porthannius",[6781]="Melarith",[6782]="Hands Springsprocket",[6784]="Calvin Montague",[6785]="Ratslin Maime",[6786]="Ukor",[6787]="Yelnagi Blackarm",[6788]="Den Mother",[6789]="Thistle Cub",[6790]="Innkeeper Trelayne",[6791]="Innkeeper Wiley",[6806]="Tannok Frosthammer",[6807]="Innkeeper Skindle",[6826]="Talvash del Kissel",[6827]="Shore Crab",[6846]="Dockmaster",[6866]="Bodyguard",[6867]="Tracking Hound",[6868]="Jarkal Mossmeld",[6886]="Onin MacHammar",[6887]="Yalda",[6906]="Baelog",[6908]="Olaf",[6909]="Sethir the Ancient",[6910]="Revelosh",[6911]="Minion of Sethir",[6912]="Remains of a Paladin",[6913]="Lost One Rift Traveler",[6927]="Dockworker",[6928]="Innkeeper Grosk",[6929]="Innkeeper Gryshka",[6930]="Innkeeper Karakul",[6932]="Swamp Spirit",[6966]="Lucius",[6986]="Dran Droffers",[6987]="Malton Droffers",[7007]="Tiev Mordune",[7009]="Arantir",[7010]="Zilzibin Drumlore",[7011]="Earthen Rocksmasher",[7012]="Earthen Sculptor",[7013]="Blackrock Guard",[7015]="Flagglemurk the Cruel",[7016]="Lady Vespira",[7017]="Lord Sinslayer",[7022]="Venomlash Scorpid",[7023]="Obsidian Sentinel",[7024]="Agent Kearnen",[7025]="Blackrock Soldier",[7026]="Blackrock Sorcerer",[7027]="Blackrock Slayer",[7028]="Blackrock Warlock",[7029]="Blackrock Battlemaster",[7030]="Shadowforge Geologist",[7031]="Obsidian Elemental",[7032]="Greater Obsidian Elemental",[7033]="Firegut Ogre",[7034]="Firegut Ogre Mage",[7035]="Firegut Brute",[7036]="Thaurissan Spy",[7037]="Thaurissan Firewalker",[7038]="Thaurissan Agent",[7039]="War Reaver",[7040]="Black Dragonspawn",[7041]="Black Wyrmkin",[7042]="Flamescale Dragonspawn",[7043]="Flamescale Wyrmkin",[7044]="Black Drake",[7045]="Scalding Drake",[7046]="Searscale Drake",[7047]="Black Broodling",[7048]="Scalding Broodling",[7049]="Flamescale Broodling",[7050]="Defias Drone",[7051]="Malformed Defias Drone",[7052]="Defias Tower Patroller",[7053]="Klaven Mortwake",[7055]="Blackrock Worg",[7056]="Defias Tower Sentry",[7057]="Digmaster Shovelphlange",[7067]="Venture Co. Drone",[7068]="Condemned Acolyte",[7069]="Condemned Monk",[7070]="Condemned Cleric",[7071]="Cursed Paladin",[7072]="Cursed Justicar",[7075]="Writhing Mage",[7076]="Earthen Guardian",[7077]="Earthen Hallshaper",[7078]="Cleft Scorpid",[7079]="Viscous Fallout",[7086]="Cursed Ooze",[7087]="Killian Hagey",[7088]="Thuwd",[7089]="Mooranta",[7091]="Shadowforge Ambusher",[7092]="Tainted Ooze",[7093]="Vile Ooze",[7097]="Ironbeak Owl",[7098]="Ironbeak Screecher",[7099]="Ironbeak Hunter",[7100]="Warpwood Moss Flayer",[7101]="Warpwood Shredder",[7104]="Dessecus",[7105]="Jadefire Satyr",[7106]="Jadefire Rogue",[7107]="Jadefire Trickster",[7108]="Jadefire Betrayer",[7109]="Jadefire Felsworn",[7110]="Jadefire Shadowstalker",[7111]="Jadefire Hellcaller",[7112]="Jaedenar Cultist",[7113]="Jaedenar Guardian",[7114]="Jaedenar Enforcer",[7115]="Jaedenar Adept",[7118]="Jaedenar Darkweaver",[7120]="Jaedenar Warlock",[7125]="Jaedenar Hound",[7126]="Jaedenar Hunter",[7132]="Toxic Horror",[7135]="Infernal Bodyguard",[7136]="Infernal Sentry",[7137]="Immolatus",[7138]="Irontree Wanderer",[7139]="Irontree Stomper",[7149]="Withered Protector",[7153]="Deadwood Warrior",[7154]="Deadwood Gardener",[7155]="Deadwood Pathfinder",[7156]="Deadwood Den Watcher",[7157]="Deadwood Avenger",[7158]="Deadwood Shaman",[7161]="Wrenix the Wretched",[7166]="Wrenix's Gizmotronic Apparatus",[7167]="Polly",[7168]="Polly",[7170]="Thragomm",[7172]="Lore Keeper of Norgannon",[7175]="Stonevault Ambusher",[7206]="Ancient Stone Keeper",[7207]="Doc Mixilpixil",[7208]="Noarm",[7209]="Obsidian Shard",[7226]="Sand Storm",[7228]="Ironaya",[7230]="Shayis Steelfury",[7231]="Kelgruk Bloodaxe",[7232]="Borgus Steelhand",[7233]="Taskmaster Fizzule",[7234]="Ferocitas the Dream Eater",[7235]="Gnarlpine Mystic",[7246]="Sandfury Shadowhunter",[7247]="Sandfury Soul Eater",[7266]="Ember",[7267]="Chief Ukorz Sandscalp",[7268]="Sandfury Guardian",[7269]="Scarab",[7270]="Sandfury Zombie",[7271]="Witch Doctor Zum'rah",[7272]="Theka the Martyr",[7273]="Gahz'rilla",[7274]="Sandfury Executioner",[7275]="Shadowpriest Sezz'ziz",[7276]="Zul'Farrak Dead Hero",[7286]="Zul'Farrak Zombie",[7287]="Foreman Silixiz",[7288]="Grand Foreman Puzik Gallywix",[7290]="Shadowforge Sharpshooter",[7291]="Galgann Firehammer",[7292]="Dinita Stonemantle",[7293]="[UNUSED] Drayl",[7294]="Shim'la",[7295]="Shailiea",[7296]="Corand",[7297]="Gothard Winslow",[7298]="Demnul Farmountain",[7307]="Venture Co. Lookout",[7308]="Venture Co. Patroller",[7309]="Earthen Custodian",[7310]="Mutated Venture Co. Drone",[7311]="Uthel'nay",[7312]="Dink",[7313]="Priestess A'moora",[7315]="Darnath Bladesinger",[7316]="Sister Aquinne",[7317]="Oben Rageclaw",[7318]="Rageclaw",[7319]="Lady Sathrah",[7320]="Stonevault Mauler",[7321]="Stonevault Flameweaver",[7322]="Riding Tiger (Black)",[7323]="Winstone Wolfe",[7324]="Simone Cantrell",[7325]="Master Kang",[7327]="Withered Warrior",[7328]="Withered Reaver",[7329]="Withered Quilguard",[7332]="Withered Spearhide",[7333]="Withered Battle Boar",[7334]="Battle Boar Horror",[7335]="Death's Head Geomancer",[7337]="Death's Head Necromancer",[7340]="Skeletal Shadowcaster",[7341]="Skeletal Frostweaver",[7342]="Skeletal Summoner",[7343]="Splinterbone Skeleton",[7344]="Splinterbone Warrior",[7345]="Splinterbone Captain",[7346]="Splinterbone Centurion",[7347]="Boneflayer Ghoul",[7348]="Thorn Eater Ghoul",[7349]="Tomb Fiend",[7351]="Tomb Reaver",[7352]="Frozen Soul",[7353]="Freezing Spirit",[7354]="Ragglesnout",[7355]="Tuten'kash",[7356]="Plaguemaw the Rotting",[7357]="Mordresh Fire Eye",[7358]="Amnennar the Coldbringer",[7360]="Dun Garok Soldier",[7361]="Grubbis",[7363]="Kum'isha the Collector",[7364]="Flawless Draenethyst Sphere",[7365]="Flawless Draenethyst Fragment",[7366]="Stoneskin Totem IV",[7367]="Stoneskin Totem V",[7368]="Stoneskin Totem VI",[7369]="Deadwind Brute",[7370]="Restless Shade",[7371]="Deadwind Mauler",[7372]="Deadwind Warlock",[7376]="Sky Shadow",[7379]="Deadwind Ogre Mage",[7380]="Siamese Cat",[7381]="Silver Tabby Cat",[7382]="Orange Tabby Cat",[7383]="Black Tabby Cat",[7384]="Cornish Rex Cat",[7385]="Bombay Cat",[7386]="White Kitten",[7387]="Green Wing Macaw",[7388]="Cockatoo",[7389]="Senegal",[7390]="Cockatiel",[7391]="Hyacinth Macaw",[7392]="Prairie Chicken",[7393]="White Plymouth Rock",[7394]="Ancona Chicken",[7395]="Cockroach",[7396]="Earthen Stonebreaker",[7397]="Earthen Stonecarver",[7398]="Stoneclaw Totem V",[7399]="Stoneclaw Totem VI",[7400]="Searing Totem V",[7401]="Draenei Refugee",[7402]="Searing Totem VI",[7403]="Strength of Earth Totem IV",[7404]="[UNUSED]Galak Flame Guard",[7405]="Deadly Cleft Scorpid",[7406]="Oglethorpe Obnoticus",[7407]="Chief Engineer Bilgewhizzle",[7408]="Spigot Operator Luglunket",[7409]="Faltering Draenethyst Sphere",[7410]="Thelman Slatefist",[7411]="Spirit of Sathrah",[7412]="Frost Resistance Totem II",[7413]="Frost Resistance Totem III",[7414]="Mana Spring Totem II",[7415]="Mana Spring Totem III",[7416]="Mana Spring Totem IV",[7423]="Flametongue Totem III",[7424]="Fire Resistance Totem II",[7425]="Fire Resistance Totem III",[7427]="Taim Ragetotem",[7428]="Frostmaul Giant",[7429]="Frostmaul Preserver",[7430]="Young Frostsaber",[7431]="Frostsaber",[7432]="Frostsaber Stalker",[7433]="Frostsaber Huntress",[7434]="Frostsaber Pride Watcher",[7435]="Cobalt Wyrmkin",[7436]="Cobalt Scalebane",[7437]="Cobalt Mageweaver",[7438]="Winterfall Ursa",[7439]="Winterfall Shaman",[7440]="Winterfall Den Watcher",[7441]="Winterfall Totemic",[7442]="Winterfall Pathfinder",[7443]="Shardtooth Mauler",[7444]="Shardtooth Bear",[7445]="Elder Shardtooth",[7446]="Rabid Shardtooth",[7447]="Fledgling Chillwind",[7448]="Chillwind Chimaera",[7449]="Chillwind Ravager",[7450]="Ragged Owlbeast",[7451]="Raging Owlbeast",[7452]="Crazed Owlbeast",[7453]="Moontouched Owlbeast",[7454]="Berserk Owlbeast",[7455]="Winterspring Owl",[7456]="Winterspring Screecher",[7457]="Rogue Ice Thistle",[7458]="Ice Thistle Yeti",[7459]="Ice Thistle Matriarch",[7460]="Ice Thistle Patriarch",[7461]="Hederine Initiate",[7462]="Hederine Manastalker",[7463]="Hederine Slayer",[7464]="Magma Totem II",[7465]="Magma Totem III",[7466]="Magma Totem IV",[7467]="Nature Resistance Totem",[7468]="Nature Resistance Totem II",[7469]="Nature Resistance Totem III",[7483]="Windfury Totem II",[7484]="Windfury Totem III",[7485]="Nargatt",[7486]="Grace of Air Totem",[7487]="Grace of Air Totem II",[7489]="Silverpine Deathguard",[7505]="Bloodmage Drazial",[7506]="Bloodmage Lynnore",[7507]="Brown Snake",[7508]="Black Kingsnake",[7523]="Suffering Highborne",[7524]="Anguished Highborne",[7527]="Goblin Land Mine",[7543]="Dark Whelpling",[7544]="Crimson Whelpling",[7545]="Emerald Whelpling",[7546]="Bronze Whelpling",[7547]="Azure Whelpling",[7548]="Faeling",[7549]="Tree Frog",[7550]="Wood Frog",[7551]="Dart Frog",[7552]="Island Frog",[7553]="Great Horned Owl",[7554]="Snowy Owl",[7555]="Hawk Owl",[7556]="Eagle Owl",[7558]="Cottontail Rabbit",[7559]="Spotted Rabbit",[7560]="Snowshoe Rabbit",[7561]="Albino Snake",[7563]="Blue Racer",[7564]="Marin Noggenfogger",[7566]="Scarlet Snake",[7567]="Crimson Snake",[7568]="Ribbon Snake",[7569]="Green Water Snake",[7570]="Elven Wisp",[7572]="Fallen Hero of the Horde",[7583]="Sprinkle",[7584]="Wandering Forest Walker",[7603]="Leprous Assistant",[7604]="Sergeant Bly",[7605]="Raven",[7606]="Oro Eyegouge",[7607]="Weegli Blastfuse",[7608]="Murta Grimgut",[7623]="Dispatch Commander Ruag",[7643]="Bengor",[7664]="Razelikh the Defiler",[7665]="Grol the Destroyer",[7666]="Archmage Allistarj",[7667]="Lady Sevine",[7668]="Servant of Razelikh",[7669]="Servant of Grol",[7670]="Servant of Allistarj",[7671]="Servant of Sevine",[7683]="Alessandro Luca",[7684]="Riding Tiger (Yellow)",[7686]="Riding Tiger (Red)",[7687]="Spotted Frostsaber",[7690]="Striped Nightsaber",[7704]="Riding Raptor (Crimson)",[7706]="Riding Raptor (Ivory)",[7707]="Turquoise Raptor",[7708]="Violet Raptor",[7709]="Riding Tallstrider (Brown)",[7710]="Riding Tallstrider (Gray)",[7711]="Riding Tallstrider (Pink)",[7712]="Riding Tallstrider (Purple)",[7713]="Riding Tallstrider (Turquoise)",[7714]="Byula",[7724]="Senior Surveyor Fizzledowser",[7725]="Grimtotem Raider",[7726]="Grimtotem Naturalist",[7727]="Grimtotem Shaman",[7728]="Kirith the Damned",[7729]="Spirit of Kirith",[7730]="Stonetalon Grunt",[7731]="Innkeeper Jayka",[7732]="Dupe Bug",[7733]="Innkeeper Fizzgrimble",[7734]="Ilifar",[7735]="Felcular",[7736]="Innkeeper Shyria",[7737]="Innkeeper Greul",[7738]="Burning Servant",[7739]="Red Mechanostrider",[7740]="Gracina Spiritmight",[7744]="Innkeeper Thulfram",[7749]="Blue Mechanostrider",[7750]="Corporal Thund Splithoof",[7763]="Curgle Cranklehop",[7764]="Troyas Moonbreeze",[7765]="Rockbiter",[7766]="Tyrion",[7767]="Witherbark Felhunter",[7768]="Witherbark Bloodling",[7769]="Hazzali Parasite",[7770]="Winkey",[7771]="Marvon Rivetseeker",[7772]="Kalin Windflight",[7773]="Marli Wishrunner",[7774]="Shay Leafrunner",[7775]="Gregan Brewspewer",[7776]="Talo Thornhoof",[7777]="Rok Orhan",[7778]="Doran Steelwing",[7779]="Priestess Tyriona",[7780]="Rin'ji",[7783]="Loramus Thalipedes",[7784]="Homing Robot OOX-17/TN",[7785]="Ward of Zum'rah",[7786]="Skeleton of Zum'rah",[7787]="Sandfury Slave",[7788]="Sandfury Drudge",[7789]="Sandfury Cretin",[7790]="Orokk Omosh",[7792]="Aturk the Anvil",[7793]="Ox",[7794]="McGavan",[7795]="Hydromancer Velratha",[7796]="Nekrum Gutchewer",[7797]="Ruuzlu",[7798]="Hank the Hammer",[7799]="Gimblethorn",[7800]="Mekgineer Thermaplugg",[7801]="Gilveradin Sunchaser",[7802]="Galvan the Ancient",[7803]="Scorpid Duneburrower",[7804]="Trenton Lighthammer",[7805]="Wastewander Scofflaw",[7806]="Homing Robot OOX-09/HL",[7807]="Homing Robot OOX-22/FE",[7808]="Marauding Owlbeast",[7809]="Vilebranch Ambusher",[7823]="Bera Stonehammer",[7824]="Bulkrek Ragefist",[7825]="Oran Snakewrithe",[7826]="Ambassador Ardalan",[7843]="Gnomeregan Evacuee",[7844]="Fire Nova Totem IV",[7845]="Fire Nova Totem V",[7846]="Teremus the Devourer",[7847]="Caliph Scorpidsting",[7848]="Lurking Feral Scar",[7849]="Mobile Alert System",[7850]="Kernobee",[7851]="Nethergarde Elite",[7852]="Pratt McGrubben",[7853]="Scooty",[7854]="Jangdor Swiftstrider",[7855]="Southsea Pirate",[7856]="Southsea Freebooter",[7857]="Southsea Dock Worker",[7858]="Southsea Swashbuckler",[7863]="Dream Vision",[7864]="Lingering Highborne",[7865]="Wildhammer Sentry",[7866]="Peter Galen",[7867]="Thorkaf Dragoneye",[7868]="Sarah Tanner",[7869]="Brumn Winterhoof",[7870]="Caryssia Moonhunter",[7871]="Se'Jib",[7872]="Death's Head Cultist",[7873]="Razorfen Battleguard",[7874]="Razorfen Thornweaver",[7875]="Hadoken Swiftstrider",[7876]="Tran'rek",[7877]="Latronicus Moonspear",[7878]="Vestia Moonspear",[7879]="Quintis Jonespyre",[7880]="Ginro Hearthkindle",[7881]="Stoley",[7882]="Security Chief Bilgewhizzle",[7883]="Andre Firebeard",[7884]="Fraggar Thundermantle",[7885]="Spitelash Battlemaster",[7886]="Spitelash Enchantress",[7895]="Ambassador Bloodrage",[7897]="Alarm-a-bomb 2600",[7898]="Pirate treasure trigger mob",[7899]="Treasure Hunting Pirate",[7900]="Angelas Moonbreeze",[7901]="Treasure Hunting Swashbuckler",[7902]="Treasure Hunting Buccaneer",[7903]="Jewel",[7904]="Jacob",[7907]="Daryn Lightwind",[7915]="Walking Bomb",[7916]="Erelas Ambersky",[7917]="Brother Sarno",[7918]="Stone Watcher of Norgannon",[7936]="Lyon Mountainheart",[7937]="High Tinker Mekkatorque",[7939]="Feathermoon Sentinel",[7940]="Darnall",[7941]="Mardrack Greenwell",[7942]="Faralorn",[7943]="Harklane",[7944]="Tinkmaster Overspark",[7945]="Savanne",[7946]="Brannock",[7947]="Vivianna",[7948]="Kylanna Windwhisper",[7949]="Xylinnia Starshine",[7950]="Master Mechanic Castpipe",[7951]="Zas'Tysh",[7952]="Zjolnir",[7953]="Xar'Ti",[7954]="Binjy Featherwhistle",[7955]="Milli Featherwhistle",[7956]="Kindal Moonweaver",[7957]="Jer'kai Moonweaver",[7975]="Camp Narache Brave",[7976]="Thalgus Thunderfist",[7977]="Gammerita",[7978]="Bimble Longberry",[7980]="Deathguard Elite",[7995]="Vile Priestess Hexx",[7996]="Qiaga the Keeper",[7997]="Captured Sprite Darter",[7998]="Blastmaster Emi Shortfuse",[7999]="Tyrande Whisperwind",[8015]="Ashenvale Sentinel",[8016]="Barrens Guard",[8017]="Sen'jin Guardian",[8018]="Guthrum Thunderfist",[8019]="Fyldren Moonfeather",[8020]="Shyn",[8021]="Orwin Gizzmick",[8022]="Thadius Grimshade",[8023]="Sharpbeak",[8024]="Sharpbeak's Father",[8025]="Sharpbeak's Mother",[8026]="Thyn'tel Bladeweaver",[8035]="Dark Iron Land Mine",[8055]="Thelsamar Mountaineer",[8075]="Edana Hatetalon",[8095]="Sul'lithuz Sandcrawler",[8096]="Westfall Brigade Guard",[8115]="Witch Doctor Uzer'i",[8116]="Ziggle Sparks",[8117]="Wizbang Booms",[8118]="Lillian Singh",[8119]="Zikkel",[8120]="Sul'lithuz Abomination",[8121]="Jaxxil Sparks",[8122]="Kizzak Sparks",[8123]="Rickle Goldgrubber",[8124]="Qizzik",[8125]="Dirge Quikcleave",[8126]="Nixx Sprocketspring",[8127]="Antu'sul",[8128]="Pikkle",[8129]="Wrinkle Goodsteel",[8130]="Sul'lithuz Hatchling",[8131]="Blizrik Buckshot",[8136]="Lord Shalzaru",[8137]="Gikkix",[8138]="Sul'lithuz Broodling",[8139]="Jabbey",[8140]="Brother Karman",[8141]="Captain Evencane",[8142]="Jannos Lighthoof",[8143]="Loorana",[8144]="Kulleg Stonehorn",[8145]="Sheendra Tallgrass",[8146]="Ruw",[8147]="Camp Mojache Brave",[8149]="Sul'lithuz Warder",[8150]="Janet Hommers",[8151]="Nijel's Point Guard",[8152]="Harnor",[8153]="Narv Hidecrafter",[8154]="Ghost Walker Brave",[8155]="Kargath Grunt",[8156]="Servant of Antu'sul",[8157]="Logannas",[8158]="Bronk",[8159]="Worb Strongstitch",[8160]="Nioma",[8161]="Harggan",[8176]="Gharash",[8177]="Rartar",[8178]="Nina Lightbrew",[8179]="Greater Healing Ward",[8196]="Occulus",[8197]="Chronalis",[8198]="Tick",[8199]="Warleader Krazzilak",[8200]="Jin'Zallah the Sandbringer",[8201]="Omgorn the Lost",[8202]="Cyclok the Mad",[8203]="Kregg Keelhaul",[8204]="Soriid the Devourer",[8205]="Haarka the Ravenous",[8207]="Emberwing",[8208]="Murderous Blisterpaw",[8210]="Razortalon",[8211]="Old Cliff Jumper",[8212]="The Reak",[8213]="Ironback",[8214]="Jalinde Summerdrake",[8215]="Grimungous",[8216]="Retherokk the Berserker",[8217]="Mith'rethis the Enchanter",[8218]="Witherheart the Stalker",[8219]="Zul'arek Hatefowler",[8236]="Muck Frenzy",[8256]="Curator Thorius",[8257]="Oozeling",[8276]="Soaring Razorbeak",[8277]="Rekk'tilac",[8278]="Smoldar",[8279]="Faulty War Golem",[8280]="Shleipnarr",[8281]="Scald",[8282]="Highlord Mastrogonde",[8283]="Slave Master Blackheart",[8284]="Dorius Stonetender",[8296]="Mojo the Twisted",[8297]="Magronos the Unyielding",[8298]="Akubar the Seer",[8299]="Spiteflayer",[8300]="Ravage",[8301]="Clack the Reaver",[8302]="Deatheye",[8303]="Grunter",[8304]="Dreadscorn",[8305]="Kixxle",[8306]="Duhng",[8307]="Tarban Hearthgrain",[8308]="Alenndaar Lapidaar",[8309]="Carlo Aurelius",[8310]="Watcher Wollpert",[8311]="Slime Maggot",[8317]="Atal'ai Deathwalker's Spirit",[8318]="Atal'ai Slave",[8319]="Nightmare Whelp",[8320]="Sprok",[8324]="Atal'ai Skeleton",[8336]="Hakkari Sapper",[8337]="Dark Iron Steelshifter",[8338]="Dark Iron Marksman",[8356]="Chesmu",[8357]="Atepa",[8358]="Hewa",[8359]="Ahanu",[8360]="Elki",[8361]="Chepi",[8362]="Kuruk",[8363]="Shadi Mistrunner",[8364]="Pakwa",[8376]="Mechanical Chicken",[8378]="Alexandra Blazen",[8379]="Archmage Xylem",[8380]="Captain Vanessa Beltis",[8381]="Lindros",[8382]="Patrick Mills",[8383]="Master Wood",[8384]="Deep Lurker",[8385]="Mura Runetotem",[8386]="Horizon Scout Crewman",[8387]="Horizon Scout First Mate",[8388]="Horizon Scout Cook",[8389]="Horizon Scout Engineer",[8390]="Chemist Cuely",[8391]="Lathoric the Black",[8392]="Pilot Xiggs Fuselighter",[8393]="Thersa Windsong",[8394]="Roland Geardabbler",[8395]="Sanath Lim-yo",[8396]="Sentinel Dalia Sunblade",[8397]="Sentinel Keldara Sunblade",[8398]="Ohanko",[8399]="Nyrill",[8400]="Obsidion",[8401]="Halpa",[8402]="Enslaved Archaeologist",[8403]="Jeremiah Payson",[8404]="Xan'tish",[8405]="Ogtinc",[8408]="Warlord Krellian",[8409]="Caravan Master Tset",[8416]="Felix Whindlebolt",[8417]="Dying Archaeologist",[8418]="Falla Sagewind",[8419]="Twilight Idolater",[8420]="Kim'jael",[8421]="Dorius",[8436]="Zamael Lunthistle",[8437]="Hakkari Minion",[8438]="Hakkari Bloodkeeper",[8439]="Nilith Lokrav",[8440]="Shade of Hakkar",[8441]="Raze",[8442]="Shadowsilk Poacher",[8443]="Avatar of Hakkar",[8444]="Trade Master Kovic",[8446]="Xiggs Fuselighter's Flyingmachine",[8447]="Clunk",[8477]="Skeletal Servant",[8478]="Second Mate Shandril",[8479]="Kalaran Windblade",[8480]="Kalaran the Deceiver",[8496]="Liv Rizzlefix",[8497]="Nightmare Suppressor",[8503]="Gibblewilt",[8504]="Dark Iron Sentry",[8506]="Eranikus the Chained",[8507]="Tymor",[8508]="Gretta Ganter",[8509]="Squire Maltrake",[8510]="Atal'ai Totem",[8516]="Belnistrasz",[8517]="Xiggs Fuselighter",[8518]="Rynthariel the Keymaster",[8519]="Blighted Surge",[8520]="Plague Ravager",[8521]="Blighted Horror",[8522]="Plague Monstrosity",[8523]="Scourge Soldier",[8524]="Cursed Mage",[8525]="Scourge Warder",[8526]="Dark Caster",[8527]="Scourge Guard",[8528]="Dread Weaver",[8529]="Scourge Champion",[8530]="Cannibal Ghoul",[8531]="Gibbering Ghoul",[8532]="Diseased Flayer",[8534]="Putrid Gargoyle",[8535]="Putrid Shrieker",[8537]="Interloper",[8538]="Unseen Servant",[8539]="Eyeless Watcher",[8540]="Torn Screamer",[8541]="Hate Shrieker",[8542]="Death Singer",[8543]="Stitched Horror",[8544]="Gangled Golem",[8545]="Stitched Golem",[8546]="Dark Adept",[8547]="Death Cultist",[8548]="Vile Tutor",[8550]="Shadowmage",[8551]="Dark Summoner",[8553]="Necromancer",[8554]="Chief Sharptusk Thornmantle",[8555]="Crypt Stalker",[8556]="Crypt Walker",[8557]="Crypt Horror",[8558]="Crypt Slayer",[8560]="Mossflayer Scout",[8561]="Mossflayer Shadowhunter",[8562]="Mossflayer Cannibal",[8563]="Wretched Woodsman",[8564]="Wretched Ranger",[8565]="Wretched Pathstrider",[8566]="Dark Iron Lookout",[8567]="Glutton",[8576]="Ag'tor Bloodfist",[8578]="Magus Rimtori",[8579]="Yeh'kinya",[8580]="Atal'alarion",[8581]="Blood Elf Defender",[8582]="Kadrak",[8583]="Dirania Silvershine",[8584]="Iverron",[8585]="Frost Spectre",[8586]="Haggrum Bloodfist",[8587]="Jediga",[8588]="Umbranse the Spiritspeaker",[8596]="Plaguehound Runt",[8597]="Plaguehound",[8598]="Frenzied Plaguehound",[8600]="Plaguebat",[8601]="Noxious Plaguebat",[8602]="Monstrous Plaguebat",[8603]="Carrion Grub",[8605]="Carrion Devourer",[8606]="Living Decay",[8607]="Rotting Sludge",[8608]="Angered Infernal",[8609]="Alexandra Constantine",[8610]="Kroum",[8611]="Idol Room Spawner",[8612]="Screecher Spirit",[8615]="Mithril Dragonling",[8616]="Infernal Servant",[8617]="Zalashji",[8636]="Morta'gya the Keeper",[8637]="Dark Iron Watchman",[8656]="Hukku's Voidwalker",[8657]="Hukku's Succubus",[8658]="Hukku's Imp",[8659]="Jes'rimon",[8660]="The Evalcharr",[8661]="Auctioneer Beardo",[8662]="Idol Oven Fire Target",[8664]="Sunwalker Saern",[8665]="Shylenai",[8666]="Lil Timmy",[8667]="Gusting Vortex",[8668]="Felhound Tracker",[8669]="Auctioneer Tolon",[8670]="Auctioneer Chilton",[8671]="Auctioneer Buckler",[8672]="Auctioneer Leeka",[8673]="Auctioneer Thathung",[8674]="Auctioneer Stampi",[8675]="Felbeast",[8677]="World Goblin Engineering Trainer",[8678]="Jubie Gadgetspring",[8679]="Knaz Blunderflame",[8681]="Outfitter Eric",[8696]="Henry Stern",[8716]="Dreadlord",[8717]="Felguard Elite",[8718]="Manahound",[8719]="Auctioneer Fitch",[8720]="Auctioneer Redmuse",[8721]="Auctioneer Epitwee",[8722]="Auctioneer Gullem",[8723]="Auctioneer Golothas",[8724]="Auctioneer Wabang",[8736]="Buzzek Bracketswing",[8737]="Linken",[8738]="Vazario Linkgrease",[8756]="Raytaf",[8757]="Shahiar",[8758]="Zaman",[8759]="Mosshoof Runner",[8760]="Mosshoof Stag",[8761]="Mosshoof Courser",[8762]="Timberweb Recluse",[8763]="Mistwing Rogue",[8764]="Mistwing Ravager",[8766]="Forest Ooze",[8767]="Sah'rhee",[8776]="Emerald Dragon Whelp",[8816]="Deathly Usher",[8836]="Battle Chicken",[8837]="Muck Splash",[8856]="Tyrion's Spybot",[8876]="Sandfury Acolyte",[8877]="Sandfury Zealot",[8878]="Muuran",[8879]="Royal Historian Archesonus",[8881]="Riding Ram",[8882]="Riding Tiger",[8883]="Riding Horse",[8884]="Skeletal Mount",[8885]="Riding Raptor",[8886]="Deviate Python",[8887]="A tormented voice",[8888]="Franclorn Forgewright",[8889]="Anvilrage Overseer",[8890]="Anvilrage Warden",[8891]="Anvilrage Guardsman",[8892]="Anvilrage Footman",[8893]="Anvilrage Soldier",[8894]="Anvilrage Medic",[8895]="Anvilrage Officer",[8896]="Shadowforge Peasant",[8897]="Doomforge Craftsman",[8898]="Anvilrage Marshal",[8899]="Doomforge Dragoon",[8900]="Doomforge Arcanasmith",[8901]="Anvilrage Reservist",[8902]="Shadowforge Citizen",[8903]="Anvilrage Captain",[8904]="Shadowforge Senator",[8905]="Warbringer Construct",[8906]="Ragereaver Golem",[8907]="Wrath Hammer Construct",[8908]="Molten War Golem",[8909]="Fireguard",[8910]="Blazing Fireguard",[8911]="Fireguard Destroyer",[8912]="Twilight's Hammer Torturer",[8913]="Twilight Emissary",[8914]="Twilight Bodyguard",[8915]="Twilight's Hammer Ambassador",[8916]="Arena Spectator",[8917]="Quarry Slave",[8920]="Weapon Technician",[8921]="Bloodhound",[8922]="Bloodhound Mastiff",[8923]="Panzor the Invincible",[8924]="The Behemoth",[8925]="Dredge Worm",[8926]="Deep Stinger",[8927]="Dark Screecher",[8928]="Burrowing Thundersnout",[8929]="Princess Moira Bronzebeard",[8931]="Innkeeper Heather",[8932]="Borer Beetle",[8933]="Cave Creeper",[8934]="Christopher Hewen",[8937]="Pet Bomb",[8956]="Angerclaw Bear",[8957]="Angerclaw Grizzly",[8958]="Angerclaw Mauler",[8959]="Felpaw Wolf",[8960]="Felpaw Scavenger",[8961]="Felpaw Ravager",[8962]="Nida",[8963]="Effsee",[8964]="Blackrock Drake",[8965]="Shawn",[8976]="Hematos",[8977]="Krom'Grul",[8978]="Thauris Balgarr",[8979]="Gruklash",[8980]="Firegut Captain",[8981]="Malfunctioning Reaver",[8982]="Ironhand Guardian",[8983]="Golem Lord Argelmach",[8996]="Voidwalker Minion",[8997]="Gershala Nightwhisper",[9016]="Bael'Gar",[9017]="Lord Incendius",[9018]="High Interrogator Gerstahn",[9019]="Emperor Dagran Thaurissan",[9020]="Commander Gor'shak",[9021]="Kharan Mighthammer",[9022]="Dughal Stormwing",[9023]="Marshal Windsor",[9024]="Pyromancer Loregrain",[9025]="Lord Roccor",[9026]="Overmaster Pyron",[9027]="Gorosh the Dervish",[9028]="Grizzle",[9029]="Eviscerator",[9030]="Ok'thor the Breaker",[9031]="Anub'shiah",[9032]="Hedrum the Creeper",[9033]="General Angerforge",[9034]="Hate'rel",[9035]="Anger'rel",[9036]="Vile'rel",[9037]="Gloom'rel",[9038]="Seeth'rel",[9039]="Doom'rel",[9040]="Dope'rel",[9041]="Warder Stilgiss",[9042]="Verek",[9043]="Scarshield Grunt",[9044]="Scarshield Sentry",[9045]="Scarshield Acolyte",[9046]="Scarshield Quartermaster",[9047]="Jenal",[9056]="Fineous Darkvire",[9076]="Ghede",[9077]="Warlord Goretooth",[9078]="Shadowmage Vivian Lagrave",[9079]="Hierophant Theodora Mulvadania",[9080]="Lexlort",[9081]="Galamav the Marksman",[9082]="Thal'trak Proudtusk",[9083]="Razal'blade",[9084]="Thunderheart",[9085]="Initiate Amakkar",[9086]="Grunt Gargal",[9087]="Bashana Runetotem",[9096]="Rage Talon Dragonspawn",[9097]="Scarshield Legionnaire",[9098]="Scarshield Spellbinder",[9099]="Sraaz",[9116]="Eridan Bluewind",[9117]="J.D. Collie",[9118]="Larion",[9119]="Muigin",[9136]="Sha'ni Proudtusk",[9156]="Ambassador Flamelash",[9157]="Bloodpetal Pest",[9158]="Warhorse",[9162]="Young Diemetradon",[9163]="Diemetradon",[9164]="Elder Diemetradon",[9165]="Fledgling Pterrordax",[9166]="Pterrordax",[9167]="Frenzied Pterrordax",[9176]="Gorlop",[9177]="Oralius",[9178]="Burning Spirit",[9179]="Jazzrik",[9196]="Highlord Omokk",[9197]="Spirestone Battle Mage",[9198]="Spirestone Mystic",[9199]="Spirestone Enforcer",[9200]="Spirestone Reaver",[9201]="Spirestone Ogre Magus",[9216]="Spirestone Warlord",[9217]="Spirestone Lord Magus",[9218]="Spirestone Battle Lord",[9219]="Spirestone Butcher",[9236]="Shadow Hunter Vosh'gajin",[9237]="War Master Voone",[9238]="Quentin",[9239]="Smolderthorn Mystic",[9240]="Smolderthorn Shadow Priest",[9241]="Smolderthorn Headhunter",[9256]="Farm Chicken",[9257]="Scarshield Warlock",[9258]="Scarshield Raider",[9259]="Firebrand Grunt",[9260]="Firebrand Legionnaire",[9261]="Firebrand Darkweaver",[9262]="Firebrand Invoker",[9263]="Firebrand Dreadweaver",[9264]="Firebrand Pyromancer",[9265]="Smolderthorn Shadow Hunter",[9266]="Smolderthorn Witch Doctor",[9267]="Smolderthorn Axe Thrower",[9268]="Smolderthorn Berserker",[9269]="Smolderthorn Seer",[9270]="Williden Marshal",[9271]="Hol'anyee Marshal",[9272]="Spark Nilminer",[9273]="Petra Grossen",[9274]="Dadanga",[9296]="Milly Osworth",[9297]="Enraged Wyvern",[9298]="Donova Snowden",[9299]="Gaeriyan",[9316]="Wenikee Boltbucket",[9317]="Rilli Greasygob",[9318]="Incendosaur",[9319]="Houndmaster Grebmar",[9336]="Boss Copperplug",[9356]="Innkeeper Shul'kar",[9376]="Blazerunner",[9377]="Swirling Vortex",[9396]="Ground Pounder",[9397]="Unearthed Fossil",[9398]="Twilight's Hammer Executioner",[9416]="Scarshield Worg",[9436]="Spawn of Bael'Gar",[9437]="Dark Keeper Vorfalk",[9438]="Dark Keeper Bethek",[9439]="Dark Keeper Uggel",[9441]="Dark Keeper Zimrel",[9442]="Dark Keeper Ofgut",[9443]="Dark Keeper Pelver",[9445]="Dark Guard",[9447]="Scarlet Warder",[9448]="Scarlet Praetorian",[9449]="Scarlet Cleric",[9450]="Scarlet Curate",[9451]="Scarlet Archmage",[9452]="Scarlet Enchanter",[9453]="Aquementas",[9454]="Xavathras",[9456]="Warlord Krom'zar",[9457]="Horde Defender",[9458]="Horde Axe Thrower",[9459]="Cyrus Therepentous",[9460]="Gadgetzan Bruiser",[9461]="Frenzied Black Drake",[9462]="Chieftain Bloodmaw",[9464]="Overlord Ror",[9465]="Golhine the Hooded",[9467]="Miblon Snarltooth",[9476]="Watchman Doomgrip",[9477]="Cloned Ooze",[9496]="Gorishi Egg",[9498]="Gorishi Grub",[9499]="Plugger Spazzring",[9500]="Mistress Nagmara",[9501]="Innkeeper Adegwa",[9502]="Phalanx",[9503]="Private Rocknot",[9516]="Lord Banehollow",[9517]="Shadow Lord Fel'dan",[9518]="Rakaiah",[9520]="Grark Lorkrub",[9521]="Enraged Felbat",[9522]="Blackrock Ambusher",[9523]="Kolkar Stormseer",[9524]="Kolkar Invader",[9525]="Freewind Brave",[9526]="Enraged Gryphon",[9527]="Enraged Hippogryph",[9528]="Arathandris Silversky",[9529]="Maybess Riverbreeze",[9536]="Maxwort Uberglint",[9537]="Hurley Blackbreath",[9538]="High Executioner Nuzrak",[9539]="Shadow of Lexlort",[9540]="Enohar Thunderbrew",[9541]="Blackbreath Crony",[9542]="Franclorn's Spirit",[9543]="Ribbly Screwspigot",[9544]="Yuka Screwspigot",[9545]="Grim Patron",[9546]="Raschal the Courier",[9547]="Guzzling Patron",[9548]="Cawind Trueaim",[9549]="Borand",[9550]="Furmund",[9551]="Starn",[9552]="Zanara",[9553]="Nadia Vernon",[9554]="Hammered Patron",[9555]="Mu'uta",[9556]="Felhound Minion",[9558]="Grimble",[9559]="Grizzlowe",[9560]="Marshal Maxwell",[9561]="Jalinda Sprig",[9562]="Helendis Riverhorn",[9563]="Ragged John",[9564]="Frezza",[9565]="Mayara Brightwing",[9566]="Zapetta",[9568]="Overlord Wyrmthalak",[9580]="Orgrimmar Talent Master",[9582]="Undercity Talent Master",[9583]="Bloodaxe Veteran",[9584]="Jalane Ayrole",[9596]="Bannok Grimaxe",[9598]="Arei",[9600]="Parrot",[9601]="Treant Spirit",[9602]="Hahk'Zor",[9604]="Gorgon'och",[9605]="Blackrock Raider",[9616]="Laris Geardawdle",[9618]="Karna Remtravel",[9619]="Torwa Pathfinder",[9620]="Dreka'Sur",[9621]="Gargantuan Ooze",[9622]="U'cha",[9623]="A-Me 01",[9636]="Kireena",[9637]="Scorching Totem",[9656]="Pet Bombling",[9657]="Lil' Smoky",[9658]="Distract Test",[9659]="Unkillable Test Dummy",[9660]="Agnar Beastamer",[9662]="Sprite Darter Hatchling",[9676]="Tink Sprocketwhistle",[9677]="Ograbisi",[9678]="Shill Dinger",[9679]="Tobias Seecher",[9680]="Crest Killer",[9681]="Jaz",[9682]="Marshal Reginald Windsor",[9683]="Lar'korwi Mate",[9684]="Lar'korwi",[9687]="Windwall Totem",[9688]="Windwall Totem II",[9689]="Windwall Totem III",[9690]="Ember Worg",[9691]="Venomtip Scorpid",[9692]="Bloodaxe Raider",[9693]="Bloodaxe Evoker",[9694]="Slavering Ember Worg",[9695]="Deathlash Scorpid",[9696]="Bloodaxe Worg",[9697]="Giant Ember Worg",[9698]="Firetail Scorpid",[9699]="Fire Beetle",[9700]="Lava Crab",[9701]="Spire Scorpid",[9705]="Illusionary Dreamwatcher",[9706]="Yorba Screwspigot",[9707]="Scarshield Portal",[9708]="Burning Imp",[9716]="Bloodaxe Warmonger",[9717]="Bloodaxe Summoner",[9718]="Ghok Bashguud",[9736]="Quartermaster Zigris",[9776]="Flamekin Spitter",[9777]="Flamekin Sprite",[9778]="Flamekin Torcher",[9779]="Flamekin Rager",[9796]="Galgar",[9816]="Pyroguard Emberseer",[9817]="Blackhand Dreadweaver",[9818]="Blackhand Summoner",[9819]="Blackhand Veteran",[9836]="Mathredis Firestar",[9856]="Auctioneer Grimful",[9857]="Auctioneer Grizzlin",[9858]="Auctioneer Kresky",[9859]="Auctioneer Lympkin",[9860]="Salia",[9861]="Moora",[9862]="Jaedenar Legionnaire",[9876]="Locheed",[9877]="Prince Xavalis",[9878]="Entropic Beast",[9879]="Entropic Horror",[9916]="Jarquia",[9936]="Corrupted Kitten",[9937]="Common Kitten",[9938]="Magmus",[9956]="Shadowforge Flame Keeper",[9976]="Tharlidun",[9977]="Sylista",[9978]="Wesley",[9979]="Sarah Goode",[9980]="Shelby Stoneflint",[9981]="Sikwa",[9982]="Penny",[9983]="Kelsuwa",[9984]="Ulbrek Firehand",[9985]="Laziphus",[9986]="Shyrka Wolfrunner",[9987]="Shoja'my",[9988]="Xon'cha",[9989]="Lina Hearthstove",[9990]="Lanti'gah",[9996]="Winna Hazzard",[9997]="Spraggle Frock",[9998]="Shizzle",[9999]="Ringo",[10000]="Arugal",[10016]="Tainted Rat",[10017]="Tainted Cockroach",[10036]="Brackenwall Enforcer",[10037]="Lakeshire Guard",[10038]="Night Watch Guard",[10040]="Gorishi Hive Guard",[10041]="Gorishi Hive Queen",[10042]="Corrupted Saber",[10043]="Ribbly's Crony",[10045]="Kirk Maxwell",[10046]="Bethaine Flinthammer",[10047]="Michael",[10048]="Gereck",[10049]="Hekkru",[10050]="Seikwa",[10051]="Seriadne",[10052]="Maluressian",[10053]="Anya Maulray",[10054]="Bulrug",[10055]="Morganus",[10056]="Alassin",[10057]="Theodore Mont Claire",[10058]="Greth",[10059]="Antarius",[10060]="Grimestack",[10061]="Killium Bouldertoe",[10062]="Steven Black",[10063]="Reggifuz",[10076]="High Priestess of Thaurissan",[10077]="Deathmaw",[10078]="Terrorspark",[10079]="Brave Moonhorn",[10080]="Sandarr Dunereaver",[10081]="Dustwraith",[10082]="Zerillis",[10083]="Rage Talon Flamescale",[10085]="Jaelysia",[10086]="Hesuwa Thunderhorn",[10088]="Xao'tsu",[10089]="Silvaria",[10090]="Belia Thundergranite",[10096]="High Justice Grimstone",[10116]="Slave",[10117]="Tortured Slave",[10118]="Nessa Shadowsong",[10119]="Volchan",[10120]="Vault Warder",[10136]="Chemist Fuely",[10157]="Moonkin Oracle",[10158]="Moonkin",[10159]="Young Moonkin",[10160]="Raging Moonkin",[10161]="Rookery Whelp",[10162]="Lord Victor Nefarius",[10176]="Kaltunk",[10177]="Spire Scarab",[10179]="Riding MechaStrider (Black)",[10180]="Unpainted Mechanostrider",[10181]="Lady Sylvanas Windrunner",[10182]="Rokaro",[10183]="Moonflare Totem",[10184]="Onyxia",[10196]="General Colbatann",[10197]="Mezzir the Howler",[10198]="Kashoch the Reaver",[10199]="Grizzle Snowpaw",[10200]="Rak'shiri",[10201]="Lady Hederine",[10202]="Azurous",[10204]="Misha",[10216]="Gubber Blump",[10217]="Flame Buffet Totem",[10218]="Superior Healing Ward",[10219]="Gwennyth Bly'Leggonde",[10220]="Halycon",[10221]="Bloodaxe Worg Pup",[10257]="Bijou",[10258]="Rookery Guardian",[10259]="Worg Pup",[10260]="Kibler",[10261]="Burning Felhound",[10262]="Opus",[10263]="Burning Felguard",[10264]="Solakar Flamewreath",[10266]="Ug'thok",[10267]="Tinkee Steamboil",[10268]="Gizrul the Slavener",[10276]="Rotgath Stonebeard",[10277]="Groum Stonebeard",[10278]="Thrag Stonehoof",[10290]="Captured Felwood Ooze",[10293]="Dulciea Frostmoon",[10296]="Vaelan",[10299]="Acride",[10300]="Ranshalla",[10301]="Jaron Stoneshaper",[10302]="Krakle",[10303]="Storm Shadowhoof",[10304]="Aurora Skycaller",[10305]="Umi Rumplesnicker",[10306]="Trull Failbane",[10307]="Witch Doctor Mau'ari",[10316]="Blackhand Incarcerator",[10317]="Blackhand Elite",[10318]="Blackhand Assassin",[10319]="Blackhand Iron Guard",[10321]="Emberstrife",[10322]="Riding Tiger (White)",[10323]="Murkdeep",[10339]="Gyth",[10340]="Vaelastrasz the Red",[10356]="Bayne",[10357]="Ressan the Needler",[10358]="Fellicent's Shade",[10359]="Sri'skulk",[10360]="Kergul Bloodaxe",[10361]="Gruul Darkblade",[10363]="General Drakkisath",[10364]="Yaelika Farclaw",[10366]="Rage Talon Dragon Guard",[10367]="Shrye Ragefist",[10369]="Trayexir",[10370]="[UNUSED] Xur'gyl",[10371]="Rage Talon Captain",[10372]="Rage Talon Fire Tongue",[10373]="Xabraxxis",[10374]="Spire Spider",[10375]="Spire Spiderling",[10376]="Crystal Fang",[10377]="Elu",[10378]="Omusa Thunderhorn",[10379]="Altsoba Ragetotem",[10380]="Sanuye Runetotem",[10381]="Ravaged Cadaver",[10382]="Mangled Cadaver",[10383]="Broken Cadaver",[10384]="Spectral Citizen",[10385]="Ghostly Citizen",[10387]="Vengeful Phantom",[10388]="Spiteful Phantom",[10389]="Wrath Phantom",[10390]="Skeletal Guardian",[10391]="Skeletal Berserker",[10393]="Skul",[10394]="Black Guard Sentry",[10398]="Thuzadin Shadowcaster",[10399]="Thuzadin Acolyte",[10400]="Thuzadin Necromancer",[10404]="Pustulating Horror",[10405]="Plague Ghoul",[10406]="Ghoul Ravener",[10407]="Fleshflayer Ghoul",[10408]="Rockwing Gargoyle",[10409]="Rockwing Screecher",[10411]="Eye of Naxxramas",[10412]="Crypt Crawler",[10413]="Crypt Beast",[10414]="Patchwork Horror",[10415]="Ash'ari Crystal",[10416]="Bile Spewer",[10417]="Venom Belcher",[10418]="Risen Guardsman",[10419]="Risen Conjuror",[10420]="Risen Initiate",[10421]="Crimson Defender",[10422]="Crimson Sorcerer",[10423]="Crimson Priest",[10424]="Risen Gallant",[10425]="Crimson Battle Mage",[10426]="Crimson Inquisitor",[10427]="Pao'ka Swiftmountain",[10428]="Motega Firemane",[10429]="Warchief Rend Blackhand",[10430]="The Beast",[10431]="Gregor Greystone",[10432]="Vectus",[10433]="Marduk Blackpool",[10435]="Magistrate Barthilas",[10436]="Baroness Anastari",[10437]="Nerub'enkan",[10438]="Maleki the Pallid",[10439]="Ramstein the Gorger",[10440]="Baron Rivendare",[10441]="Plagued Rat",[10442]="Chromatic Whelp",[10445]="Selina Dourman",[10447]="Chromatic Dragonspawn",[10455]="Binny Springblade",[10456]="Prynne",[10460]="Prospector Ironboot",[10461]="Plagued Insect",[10463]="Shrieking Banshee",[10464]="Wailing Banshee",[10467]="Mana Tide Totem",[10468]="Felnok Steelspring",[10469]="Scholomance Adept",[10470]="Scholomance Neophyte",[10471]="Scholomance Acolyte",[10472]="Scholomance Occultist",[10475]="Scholomance Student",[10476]="Scholomance Necrolyte",[10477]="Scholomance Necromancer",[10478]="Splintered Skeleton",[10479]="Skulking Corpse",[10480]="Unstable Corpse",[10481]="Reanimated Corpse",[10482]="Risen Lackey",[10485]="Risen Aberration",[10486]="Risen Warrior",[10487]="Risen Protector",[10488]="Risen Construct",[10489]="Risen Guard",[10491]="Risen Bonewarder",[10495]="Diseased Ghoul",[10497]="Ragged Ghoul",[10498]="Spectral Tutor",[10499]="Spectral Researcher",[10500]="Spectral Teacher",[10502]="Lady Illucia Barov",[10503]="Jandice Barov",[10504]="Lord Alexei Barov",[10505]="Instructor Malicia",[10506]="Kirtonos the Herald",[10507]="The Ravenian",[10508]="Ras Frostwhisper",[10509]="Jed Runewatcher",[10516]="The Unforgiven",[10536]="Plagued Maggot",[10537]="Cliffwatcher Longhorn",[10538]="Vaelastrasz",[10539]="Hagar Lightninghoof",[10540]="Vol'jin",[10541]="Krakle's Thermometer",[10556]="Lazy Peon",[10557]="Flametongue Totem IV",[10558]="Hearthsinger Forresten",[10559]="Lady Vespia",[10577]="Crypt Scarab",[10578]="Bom'bay",[10580]="Fetid Zombie",[10581]="Young Arikara",[10582]="Dog",[10583]="Gryfe",[10584]="Urok Doomhowl",[10596]="Mother Smolderweb",[10598]="Smolderweb Hatchling",[10599]="Hulfnar Stonetotem",[10600]="Thontek Rumblehoof",[10601]="Urok Enforcer",[10602]="Urok Ogre Magus",[10603]="Hallucination",[10604]="Huntress Nhemai",[10605]="Scarlet Medic",[10606]="Huntress Yaeliura",[10608]="Scarlet Priest",[10610]="Angus",[10611]="Shorty",[10612]="Guard Wachabe",[10616]="Supervisor Raelen",[10617]="Galak Messenger",[10618]="Rivern Frostwind",[10619]="Glacier",[10636]="Pack Kodo",[10637]="Malyfous Darkhammer",[10638]="Kanati Greycloud",[10639]="Rorgish Jowl",[10640]="Oakpaw",[10641]="Branch Snapper",[10642]="Eck'alom",[10643]="Mugglefin",[10644]="Mist Howler",[10645]="Thalia Amberhide",[10646]="Lakota Windsong",[10647]="Prince Raze",[10648]="Xavaric",[10656]="Guardian Felhunter",[10657]="Corrupted Cat",[10658]="Winna's Kitten",[10659]="Cobalt Whelp",[10660]="Cobalt Broodling",[10661]="Spell Eater",[10662]="Spellmaw",[10663]="Manaclaw",[10664]="Scryer",[10665]="Junior Apothecary Holland",[10666]="Gordo",[10667]="Chromie",[10668]="Beaten Corpse",[10676]="Raider Jhash",[10678]="Plagued Hatchling",[10680]="Summoned Blackhand Dreadweaver",[10681]="Summoned Blackhand Veteran",[10682]="Raider Kerr",[10683]="Rookery Hatcher",[10684]="Remorseful Highborne",[10685]="Swine",[10696]="Refuge Pointe Defender",[10697]="Bile Slime",[10698]="Summoned Zombie",[10699]="Carrion Scarab",[10716]="Belfry Bat",[10717]="Temporal Parasite",[10718]="Shahram",[10719]="Herald of Thrall",[10720]="Galak Assassin",[10721]="Novice Warrior",[10737]="Shy-Rotam",[10738]="High Chief Winterfall",[10739]="Mulgris Deepriver",[10740]="Awbee",[10741]="Sian-Rotam",[10742]="Blackhand Dragon Handler",[10756]="Scalding Elemental",[10757]="Boiling Elemental",[10758]="Grimtotem Bandit",[10759]="Grimtotem Stomper",[10760]="Grimtotem Geomancer",[10761]="Grimtotem Reaver",[10762]="Blackhand Thug",[10776]="Finkle Einhorn",[10778]="Janice Felstone",[10779]="Infected Squirrel",[10780]="Infected Deer",[10781]="Royal Overseer Bauhaus",[10782]="Royal Factor Bathrilor",[10785]="Orb of Deception (Tauren Male)",[10799]="Warosh",[10800]="Warosh the Redeemed",[10801]="Jabbering Ghoul",[10802]="Hitah'ya the Keeper",[10803]="Rifleman Wheeler",[10804]="Rifleman Middlecamp",[10805]="Spotter Klemmy",[10806]="Ursius",[10807]="Brumeran",[10808]="Timmy the Cruel",[10809]="Stonespine",[10811]="Instructor Galford",[10812]="Grand Crusader Dathrohan",[10813]="Balnazzar",[10814]="Chromatic Elite Guard",[10816]="Wandering Skeleton",[10817]="Duggan Wildhammer",[10818]="Death Knight Soulbearer",[10819]="Baron Bloodbane",[10820]="Duke Ragereaver",[10821]="Hed'mush the Rotting",[10822]="Warlord Thresh'jin",[10823]="Zul'Brin Warpbranch",[10824]="Ranger Lord Hawkspear",[10825]="Gish the Unmoving",[10826]="Lord Darkscythe",[10827]="Deathspeaker Selendre",[10828]="High General Abbendis",[10836]="Farmer Dalson",[10837]="High Executor Derrington",[10838]="Commander Ashlam Valorfist",[10839]="Argent Officer Garush",[10840]="Argent Officer Pureheart",[10856]="Argent Quartermaster Hasana",[10857]="Argent Quartermaster Lightspark",[10876]="Undead Scarab",[10877]="Courier Hammerfall",[10878]="Herald Moonstalker",[10879]="Harbinger Balthazad",[10880]="Warcaller Gorlach",[10881]="Bluff Runner Windstrider",[10882]="[Deprecated for 4.x]Arikara",[10896]="Arnak Grimtotem",[10897]="Sindrayl",[10899]="Goraluk Anvilcrack",[10901]="Lorekeeper Polkelt",[10902]="Andorhal Tower One",[10903]="Andorhal Tower Two",[10904]="Andorhal Tower Three",[10905]="Andorhal Tower Four",[10916]="Winterfall Runner",[10917]="Aurius",[10918]="Lorax",[10919]="Shatterspear Troll",[10920]="Kelek Skykeeper",[10921]="Taronn Redfeather",[10922]="Greta Mosshoof",[10923]="Tenell Leafrunner",[10924]="Ivy Leafrunner",[10925]="Rotting Worm",[10926]="Pamela Redpath",[10927]="Marlene Redpath",[10928]="Succubus Minion",[10929]="Haleh",[10930]="Dargh Trueaim",[10936]="Joseph Redpath",[10937]="Captain Redpath",[10938]="Redpath the Corrupted",[10939]="Marduk the Black",[10940]="Ghost of the Past",[10941]="Wizlo Bearingshiner",[10942]="Nessy",[10943]="Decrepit Guardian",[10944]="Davil Lightfire",[10945]="Davil Crokford",[10946]="Horgus the Ravager",[10947]="Darrowshire Betrayer",[10948]="Darrowshire Defender",[10949]="Silver Hand Disciple",[10950]="Redpath Militia",[10951]="Marauding Corpse",[10952]="Marauding Skeleton",[10953]="Servant of Horgus",[10954]="Bloodletter",[10955]="Summoned Water Elemental",[10956]="Naga Siren",[10976]="Jeziba",[10977]="Quixxil",[10978]="Legacki",[10979]="Scarlet Hound",[10980]="Umi's Mechanical Yeti",[10981]="Frostwolf",[10982]="Whitewhisker Vermin",[10986]="Snowblind Harpy",[10987]="Irondeep Trogg",[10988]="Kodo Spirit",[10990]="Alterac Ram",[10991]="Wildpaw Gnoll",[10992]="Enraged Panther",[10993]="Twizwick Sprocketgrind",[10996]="Fallen Hero",[10997]="Cannon Master Willey",[11016]="Captured Arko'narin",[11017]="Roxxik",[11018]="Arko'narin",[11019]="Jessir Moonbow",[11020]="Remains of Trey Lightforge",[11021]="Winterspring Frostsaber",[11022]="Alexi Barov",[11023]="Weldon Barov",[11024]="Della",[11025]="Mukdrak",[11026]="Sprite Jumpsprocket",[11027]="Illusory Wraith",[11028]="Jemma Quikswitch",[11029]="Trixie Quikswitch",[11030]="Mindless Undead",[11031]="Franklin Lloyd",[11032]="Commander Malor",[11033]="Smokey LaRue",[11034]="Lord Maxwell Tyrosus",[11035]="Betina Bigglezink",[11036]="Leonid Barthalomew the Revered",[11037]="Jenna Lemkenilli",[11038]="Caretaker Alen",[11039]="Duke Nicholas Zverenhoff",[11040]="Watcher Brownell",[11041]="Milla Fairancora",[11042]="Sylvanna Forestmoon",[11043]="Crimson Monk",[11044]="Doctor Martin Felben",[11046]="Whuut",[11047]="Kray",[11048]="Victor Ward",[11049]="Rhiannon Davis",[11050]="Trianna",[11051]="Vhan",[11052]="Timothy Worthington",[11053]="High Priestess MacDonnell",[11054]="Crimson Rifleman",[11055]="Shadow Priestess Vandis",[11056]="Alchemist Arbington",[11057]="Apothecary Dithers",[11058]="Fras Siabi",[11063]="Carlin Redpath",[11064]="Darrowshire Spirit",[11065]="Thonys Pillarstone",[11066]="Jhag",[11067]="Malcomb Wynn",[11068]="Betty Quin",[11069]="Jenova Stoneshield",[11070]="Lalina Summermoon",[11071]="Mot Dawnstrider",[11072]="Kitta Firewind",[11073]="Annora",[11074]="Hgarth",[11075]="Cauldron Lord Bilemaw",[11076]="Cauldron Lord Razarch",[11077]="Cauldron Lord Malvinious",[11078]="Cauldron Lord Soulwrath",[11079]="Wynd Nightchaser",[11081]="Faldron",[11082]="Stratholme Courier",[11083]="Darianna",[11084]="Tarn",[11096]="Randal Worth",[11097]="Drakk Stonehand",[11098]="Hahrana Ironhide",[11099]="Argent Guard",[11100]="Mana Tide Totem II",[11101]="Mana Tide Totem III",[11102]="Argent Rider",[11103]="Innkeeper Lyshaerya",[11104]="Shelgrayn",[11105]="Aboda",[11106]="Innkeeper Sikewa",[11116]="Innkeeper Abeqwa",[11117]="Awenasa",[11118]="Innkeeper Vizzie",[11119]="Azzleby",[11120]="Risen Hammersmith",[11121]="Black Guard Swordsmith",[11122]="Restless Soul",[11136]="Freed Soul",[11137]="Xai'ander",[11138]="Maethrya",[11139]="Yugrek",[11140]="Egan",[11141]="Spirit of Trey Lightforge",[11142]="Undead Postman",[11143]="Postmaster Malown",[11145]="Myolor Sunderfury",[11146]="Ironus Coldsteel",[11147]="Green Mechanostrider",[11152]="The Scourge Cauldron",[11153]="Red Skeletal Horse",[11154]="Blue Skeletal Horse",[11155]="Brown Skeletal Horse",[11156]="Green Skeletal Warhorse",[11176]="Krathok Moltenfist",[11177]="Okothos Ironrager",[11178]="Borgosh Corebender",[11180]="Bloodvenom Post Brave",[11181]="Shi'alune",[11182]="Nixxrak",[11183]="Blixxrak",[11184]="Wixxrak",[11185]="Xizzer Fizzbolt",[11186]="Lunnix Sprocketslip",[11187]="Himmik",[11188]="Evie Whirlbrew",[11189]="Qia",[11190]="Everlook Bruiser",[11191]="Lilith the Lithe",[11192]="Kilram",[11193]="Seril Scourgebane",[11194]="Argent Defender",[11196]="Shatterspear Drummer",[11197]="Mindless Skeleton",[11198]="Broken Exile",[11199]="Crimson Cannon",[11200]="Summoned Skeleton",[11216]="Eva Sarkhoff",[11217]="Lucien Sarkhoff",[11218]="Kerlonian Evershade",[11219]="Liladris Moonriver",[11236]="Blood Parrot",[11256]="Manifestation of Water",[11257]="Scholomance Handler",[11258]="Frail Skeleton",[11259]="Nataka Longhorn",[11260]="Northshire Peasant",[11261]="Doctor Theolen Krastinov",[11262]="Onyxian Whelp",[11263]="Spectral Projection",[11276]="Azshara Sentinel",[11277]="Caer Darrow Citizen",[11278]="Magnus Frostwake",[11279]="Caer Darrow Guardsman",[11280]="Caer Darrow Cannoneer",[11281]="Caer Darrow Horseman",[11282]="Melia",[11283]="Sammy",[11284]="Dark Shade",[11285]="Rory",[11286]="Magistrate Marduke",[11287]="Baker Masterson",[11288]="Spectral Betrayer",[11289]="Spectral Defender",[11290]="Mossflayer Zombie",[11291]="Unliving Mossflayer",[11296]="Darrowshire Poltergeist",[11316]="Joseph Dirte",[11317]="Jinar'Zillen",[11318]="Ragefire Trogg",[11319]="Ragefire Shaman",[11320]="Earthborer",[11321]="Molten Elemental",[11322]="Searing Blade Cultist",[11323]="Searing Blade Enforcer",[11324]="Searing Blade Warlock",[11325]="Panda Cub",[11326]="Mini Diablo",[11327]="Zergling",[11328]="Eastvale Peasant",[11338]="Hakkari Shadowcaster",[11339]="Hakkari Shadow Hunter",[11340]="Hakkari Blood Priest",[11346]="Hakkari Oracle",[11347]="Zealot Lor'Khan",[11348]="Zealot Zath",[11350]="Gurubashi Axe Thrower",[11351]="Gurubashi Headhunter",[11352]="Gurubashi Berserker",[11353]="Gurubashi Blood Drinker",[11355]="Gurubashi Warrior",[11356]="Gurubashi Champion",[11357]="Son of Hakkar",[11359]="Soulflayer",[11360]="Zulian Cub",[11361]="Zulian Tiger",[11365]="Zulian Panther",[11368]="Bloodseeker Bat",[11370]="Razzashi Broodwidow",[11371]="Razzashi Serpent",[11372]="Razzashi Adder",[11373]="Razzashi Cobra",[11374]="Hooktooth Frenzy",[11378]="Foreman Thazz'ril",[11380]="Jin'do the Hexxer",[11382]="Bloodlord Mandokir",[11383]="High Priestess Hai'watna",[11387]="Sandfury Speaker",[11388]="Witherbark Speaker",[11389]="Bloodscalp Speaker",[11390]="Skullsplitter Speaker",[11391]="Vilebranch Speaker",[11397]="Nara Meideros",[11401]="Priestess Alathea",[11406]="High Priest Rohan",[11407]="Var'jun",[11438]="Bibbly F'utzbuckle",[11439]="Illusion of Jandice Barov",[11440]="Gordok Enforcer",[11441]="Gordok Brute",[11442]="Gordok Mauler",[11443]="Gordok Ogre-Mage",[11444]="Gordok Mage-Lord",[11445]="Gordok Captain",[11446]="Gordok Spirit",[11447]="Mushgog",[11448]="Gordok Warlock",[11450]="Gordok Reaver",[11451]="Wildspawn Satyr",[11452]="Wildspawn Rogue",[11453]="Wildspawn Trickster",[11454]="Wildspawn Betrayer",[11455]="Wildspawn Felsworn",[11456]="Wildspawn Shadowstalker",[11457]="Wildspawn Hellcaller",[11458]="Petrified Treant",[11459]="Ironbark Protector",[11460]="Alzzin's Minion",[11461]="Warpwood Guardian",[11462]="Warpwood Treant",[11464]="Warpwood Tangler",[11465]="Warpwood Stomper",[11466]="Highborne Summoner",[11467]="Tsu'zee",[11469]="Eldreth Seether",[11470]="Eldreth Sorcerer",[11471]="Eldreth Apparition",[11472]="Eldreth Spirit",[11473]="Eldreth Spectre",[11475]="Eldreth Phantasm",[11476]="Skeletal Highborne",[11477]="Rotting Highborne",[11480]="Arcane Aberration",[11483]="Mana Remnant",[11484]="Residual Monstrosity",[11486]="Prince Tortheldrin",[11487]="Magister Kalendris",[11488]="Illyanna Ravenoak",[11489]="Tendris Warpwood",[11490]="Zevrim Thornhoof",[11491]="Old Ironbark",[11492]="Alzzin the Wildshaper",[11496]="Immol'thar",[11497]="The Razza",[11498]="Skarr the Broken",[11499]="[UNUSED] Commander Gormaul",[11501]="King Gordok",[11502]="Ragnaros",[11516]="Timbermaw Warder",[11517]="Oggleflint",[11518]="Jergosh the Invoker",[11519]="Bazzalan",[11520]="Taragaman the Hungerer",[11521]="Kodo Apparition",[11536]="Quartermaster Miranda Breechlock",[11537]="TEST GEAR PALADIN",[11538]="TEST GEAR WARRIOR",[11539]="TEST GEAR HUNTER",[11540]="TEST GEAR MAGE",[11541]="TEST GEAR WARLOCK",[11542]="TEST GEAR DRUID",[11543]="TEST GEAR SHAMAN",[11544]="TEST GEAR PRIEST",[11545]="TEST GEAR ROGUE",[11546]="Jack Sterling",[11548]="Loh'atu",[11551]="Necrofiend",[11552]="Timbermaw Mystic",[11553]="Timbermaw Woodbender",[11554]="Grazle",[11555]="Gorn One Eye",[11556]="Salfa",[11557]="Meilosh",[11558]="Kernda",[11559]="Outcast Necromancer",[11560]="Magrami Spectre",[11561]="Undead Ravager",[11562]="Drysnap Crawler",[11563]="Drysnap Pincer",[11564]="Gizelton Caravan Kodo",[11576]="Whirlwind Ripper",[11577]="Whirlwind Stormwalker",[11578]="Whirlwind Shredder",[11582]="Scholomance Dark Summoner",[11583]="Nefarian",[11596]="Smeed Scrabblescrew",[11598]="Risen Guardian",[11600]="Irondeep Shaman",[11602]="Irondeep Skullthumper",[11603]="Whitewhisker Digger",[11604]="Whitewhisker Geomancer",[11605]="Whitewhisker Overseer",[11608]="Bardu Sharpeye",[11609]="Alexia Ironknife",[11610]="Kirsta Deepshadow",[11611]="Cavalier Durgen",[11613]="Huntsman Radley",[11614]="Bloodshot",[11615]="Mickey Levine",[11616]="Nathaniel Dumah",[11620]="Spectral Marauder",[11621]="Spectral Corpse",[11622]="Rattlegore",[11623]="Scourge Summoning Crystal",[11624]="Taiga Wisemane",[11625]="Cork Gizelton",[11626]="Rigger Gizelton",[11627]="Tamed Kodo",[11629]="Jessica Redpath",[11636]="Servant of Weldon Barov",[11637]="Servant of Alexi Barov",[11656]="Warsong Peon",[11657]="Morloch",[11658]="Molten Giant",[11659]="Molten Destroyer",[11661]="Flamewaker",[11662]="Flamewaker Priest",[11663]="Flamewaker Healer",[11664]="Flamewaker Elite",[11665]="Lava Annihilator",[11666]="Firewalker",[11667]="Flameguard",[11668]="Firelord",[11669]="Flame Imp",[11671]="Core Hound",[11672]="Core Rager",[11673]="Core Hound",[11675]="Snowblind Windcaller",[11677]="Taskmaster Snivvle",[11678]="Snowblind Ambusher",[11680]="Horde Scout",[11681]="Warsong Logger",[11682]="Warsong Grunt",[11683]="Warsong Shaman",[11684]="Goblin Deforester",[11685]="Maraudine Priest",[11686]="Ghostly Raider",[11687]="Ghostly Marauder",[11688]="Cursed Centaur",[11689]="Brown Kodo",[11690]="Gnarlpine Instigator",[11696]="Chal Fairwind",[11697]="Mannoroc Lasher",[11698]="Hive'Ashi Stinger",[11699]="Varian Wrynn",[11700]="Sarin Starlight",[11701]="Mor'vek",[11702]="Arin'sor",[11703]="Graw Cornerstone",[11704]="Kriss Goldenlight",[11705]="Rayan Dawnrisen",[11706]="Adon",[11707]="Joy Ar'nareth",[11708]="Coral Moongale",[11709]="Jareth Wildwoods",[11710]="Mirador",[11711]="Sentinel Aynasha",[11712]="Lilyn Darkriver",[11713]="Blackwood Tracker",[11714]="Marosh the Devious",[11715]="Talendria",[11716]="Celes Earthborne",[11717]="Bethan Bluewater",[11718]="Sar Browneye",[11720]="Loruk Foreststrider",[11721]="Hive'Ashi Worker",[11722]="Hive'Ashi Defender",[11723]="Hive'Ashi Sandstalker",[11724]="Hive'Ashi Swarmer",[11725]="Hive'Zora Waywatcher",[11726]="Hive'Zora Tunneler",[11727]="Hive'Zora Wasp",[11728]="Hive'Zora Reaver",[11729]="Hive'Zora Hive Sister",[11730]="Hive'Regal Ambusher",[11731]="Hive'Regal Burrower",[11732]="Hive'Regal Spitfire",[11733]="Hive'Regal Slavemaker",[11734]="Hive'Regal Hive Lord",[11735]="Stonelash Scorpid",[11736]="Stonelash Pincer",[11737]="Stonelash Flayer",[11738]="Sand Skitterer",[11739]="Rock Stalker",[11740]="Dredge Striker",[11741]="Dredge Crusher",[11744]="Dust Stormer",[11745]="Cyclone Warrior",[11746]="Desert Rumbler",[11747]="Desert Rager",[11748]="Samantha Swifthoof",[11749]="Feran Strongwind",[11750]="Ganoosh",[11751]="Rilan Howard",[11752]="Blaise Montgomery",[11753]="Gogo",[11754]="Meggi Peppinrocker",[11755]="Harlo Wigglesworth",[11756]="Quinn",[11757]="Umaron Stragarelm",[11758]="Andi Lynn",[11776]="Salome",[11777]="Shadowshard Rumbler",[11778]="Shadowshard Smasher",[11781]="Ambershard Crusher",[11782]="Ambershard Destroyer",[11783]="Theradrim Shardling",[11784]="Theradrim Guardian",[11785]="Ambereye Basilisk",[11786]="Ambereye Reaver",[11787]="Rock Borer",[11788]="Rock Worm",[11789]="Deep Borer",[11790]="Putridus Satyr",[11791]="Putridus Trickster",[11792]="Putridus Shadowstalker",[11793]="Celebrian Dryad",[11794]="Sister of Celebras",[11795]="Mylentha Riverbend",[11796]="Bessany Plainswind",[11797]="Moren Riverbend",[11798]="Bunthen Plainswind",[11799]="Tajarri",[11800]="Silva Fil'naveth",[11801]="Rabine Saturna",[11802]="Dendrite Starblaze",[11803]="Twilight Keeper Exeter",[11804]="Twilight Keeper Havunth",[11805]="Jarund Stoutstrider",[11806]="Sentinel Onaeya",[11807]="Tristane Shadowstone",[11808]="Grum Redbeard",[11810]="Howin Kindfeather",[11811]="Narain Soothfancy",[11812]="Claira Kindfeather",[11813]="Kerr Ironsight",[11814]="Kali Remik",[11815]="Voriya",[11816]="Una Ji'ro",[11817]="Krah'ranik",[11818]="Orik'ando",[11819]="Jory Zaga",[11820]="Locke Okarr",[11821]="Darn Talongrip",[11822]="Moonglade Warden",[11823]="Vark Battlescar",[11824]="Erik Felixe",[11825]="Paige Felixe",[11826]="Kristy Grant",[11827]="Kimberly Grant",[11828]="Kelly Grant",[11829]="Fahrak",[11830]="Hakkari Priest",[11831]="Hakkari Witch Doctor",[11832]="Keeper Remulos",[11833]="Rahauro",[11834]="Maur Grimtotem",[11835]="Theodore Griffs",[11836]="Captured Rabid Thistle Bear",[11837]="Wildpaw Shaman",[11838]="Wildpaw Mystic",[11839]="Wildpaw Brute",[11840]="Wildpaw Alpha",[11856]="Kaya Flathoof",[11857]="Makaba Flathoof",[11858]="Grundig Darkcloud",[11859]="Doomguard",[11860]="Maggran Earthbinder",[11861]="Mor'rogal",[11862]="Tsunaman",[11863]="Azore Aldamort",[11864]="Tammra Windfield",[11865]="Buliwyf Stonehand",[11866]="Ilyenia Moonfire",[11867]="Woo Ping",[11868]="Sayoc",[11869]="Ansekhwa",[11870]="Archibald",[11871]="Grinning Dog",[11872]="Myranda the Hag",[11873]="Spectral Attendant",[11874]="Masat T'andr",[11875]="Mortar Team Target Dummy",[11876]="Fel Spirit",[11877]="Roon Wildmane",[11878]="Nathanos Blightcaller",[11880]="Twilight Avenger",[11881]="Twilight Geolord",[11882]="Twilight Stonecaller",[11883]="Twilight Master",[11884]="Obi",[11885]="Blighthound",[11886]="Mercutio Filthgorger",[11887]="Crypt Robber",[11896]="Borelgore",[11897]="Duskwing",[11898]="Crusader Lord Valdelmar",[11899]="Shardi",[11900]="Brakkar",[11901]="Andruk",[11910]="Grimtotem Ruffian",[11911]="Grimtotem Mercenary",[11912]="Grimtotem Brute",[11913]="Grimtotem Sorcerer",[11914]="Gorehoof the Black",[11915]="Boulderslide Rock Keeper",[11916]="Imelda",[11917]="Boulderslide Geomancer",[11918]="Boulderslide Stonepounder",[11920]="Goggeroc",[11921]="Besseleth",[11936]="Artist Renfray",[11937]="Demon Portal Guardian",[11939]="Umber",[11940]="Merissa Stilwell",[11941]="Yori Crackhelm",[11942]="Orenthil Whisperwind",[11943]="Magga",[11944]="Vorn Skyseer",[11945]="Claire Willower",[11946]="Drek'Thar",[11947]="Captain Galvangar",[11948]="Vanndar Stormpike",[11949]="Captain Balinda Stonehearth",[11956]="Great Bear Spirit",[11957]="Great Cat Spirit",[11979]="Kim Bridenbecker",[11980]="Zuluhed the Whacked",[11981]="Flamegor",[11982]="Magmadar",[11983]="Firemaw",[11988]="Golemagg the Incinerator",[11994]="Rob Bridenbecker",[11996]="Ashley Bridenbecker",[11997]="Stormpike Herald",[11998]="Frostwolf Herald",[12017]="Broodlord Lashlayer",[12018]="Majordomo Executus",[12019]="Dargon",[12021]="Daeolyn Summerleaf",[12022]="Lorelae Wintersong",[12023]="Kharedon",[12024]="Meliri",[12025]="Malvor",[12026]="My'lanna",[12027]="Tukk",[12028]="Lah'Mawhani",[12029]="Narianna",[12030]="Malux",[12031]="Mai'Lahii",[12032]="Lui'Mala",[12033]="Wulan",[12034]="Koiter",[12036]="Grella Stonefist",[12037]="Ursol'lok",[12040]="Brannik Ironbelly",[12042]="Loganaar",[12043]="Kulwia",[12045]="Hae'Wilani",[12046]="Gor'marok the Ravager",[12047]="Stormpike Mountaineer",[12048]="Alliance Sentinel",[12050]="Stormpike Defender",[12051]="Frostwolf Legionnaire",[12052]="Frostwolf Warrior",[12053]="Frostwolf Guardian",[12056]="Baron Geddon",[12057]="Garr",[12076]="Magma Elemental",[12096]="Stormpike Quartermaster",[12097]="Frostwolf Quartermaster",[12098]="Sulfuron Harbinger",[12099]="Firesworn",[12100]="Lava Reaver",[12101]="Lava Surger",[12116]="Priestess of Elune",[12118]="Lucifron",[12119]="Flamewaker Protector",[12120]="Plagueland Termite",[12121]="Drakan",[12122]="Duros",[12123]="Reef Shark",[12124]="Great Shark",[12125]="Mammoth Shark",[12126]="Lord Tirion Fordring",[12127]="Stormpike Guardsman",[12128]="Crimson Elite",[12129]="Onyxian Warder",[12136]="Snurk Bucksquick",[12137]="Squibby Overspeck",[12138]="Lunaclaw",[12140]="Guardian of Elune",[12141]="Ice Totem",[12143]="Son of Flame",[12144]="Lunaclaw Spirit",[12148]="Riding Kodo (Teal)",[12149]="Gray Kodo",[12150]="Riding Kodo (Purple)",[12151]="Riding Kodo (Green)",[12152]="Voice of Elune",[12159]="Korrak the Bloodrager",[12160]="Shadowglen Sentinel",[12178]="Tortured Druid",[12179]="Tortured Sentinel",[12196]="Innkeeper Kaylisk",[12197]="Glordrum Steelbeard",[12198]="Martin Lindsey",[12199]="Shade of Ambermoon",[12201]="Princess Theradras",[12202]="Human Skull",[12203]="Landslide",[12204]="Spitelash Raider",[12205]="Spitelash Witch",[12206]="Primordial Behemoth",[12207]="Thessala Hydra",[12208]="Conquered Soul of the Blightcaller",[12216]="Poison Sprite",[12217]="Corruptor",[12218]="Vile Larva",[12219]="Barbed Lasher",[12220]="Constrictor Vine",[12221]="Noxious Slime",[12222]="Creeping Sludge",[12223]="Cavern Lurker",[12224]="Cavern Shambler",[12225]="Celebras the Cursed",[12236]="Lord Vyletongue",[12237]="Meshlok the Harvester",[12238]="Zaetar's Spirit",[12239]="Spirit of Gelk",[12240]="Spirit of Kolk",[12241]="Spirit of Magra",[12242]="Spirit of Maraudos",[12243]="Spirit of Veng",[12244]="Mark of Detonation (NW)",[12245]="Vendor-Tron 1000",[12246]="Super-Seller 680",[12247]="Scourge Structure",[12248]="Infiltrator Hameya",[12249]="Mark of Detonation (SW)",[12250]="Zaeldarr the Outcast",[12251]="Mark of Detonation (CLS)",[12252]="Mark of Detonation (CRS)",[12253]="Mark of Detonation (CSH)",[12254]="Mark of Detonation (NESH)",[12255]="Mark of Detonation (NE)",[12256]="Mark of Detonation (SE)",[12257]="Mechanical Yeti",[12258]="Razorlash",[12259]="Gehennas",[12261]="Infected Mossflayer",[12262]="Ziggurat Protector",[12263]="Slaughterhouse Protector",[12264]="Shazzrah",[12265]="Lava Spawn",[12277]="Melizza Brimbuzzle",[12296]="Sickly Gazelle",[12297]="Cured Gazelle",[12298]="Sickly Deer",[12299]="Cured Deer",[12319]="Burning Blade Toxicologist",[12320]="Burning Blade Crusher",[12321]="Stormscale Toxicologist",[12322]="Quel'Lithien Protector",[12336]="Brother Crowley",[12337]="Crimson Courier",[12338]="Shadowprey Guardian",[12339]="Demetria",[12340]="Drulzegar Skraghook",[12344]="Green Skeletal War Horse",[12346]="Emerald Riding Raptor",[12347]="Enraged Reef Crawler",[12348]="Ivory Raptor",[12349]="Turquoise Riding Raptor",[12350]="Violet Riding Raptor",[12351]="Dire Riding Wolf",[12352]="Scarlet Cavalier",[12353]="Timber Riding Wolf",[12354]="Brown Riding Kodo",[12355]="Gray Riding Kodo",[12358]="Riding Striped Frostsaber",[12359]="Riding Spotted Frostsaber",[12360]="Riding Striped Nightsaber",[12361]="Riding Nightsaber",[12362]="Riding Frostsaber",[12364]="Icy Blue Mechanostrider Mod A",[12366]="Unpainted Mechanostrider X",[12368]="White Mechanostrider Mod A",[12369]="Lord Kragaru",[12370]="Black Ram",[12371]="Frost Ram",[12374]="White Riding Ram Mount",[12377]="Wailing Spectre",[12378]="Damned Soul",[12379]="Unliving Caretaker",[12380]="Unliving Resident",[12381]="Ley Sprite",[12382]="Mana Sprite",[12383]="Nibbles",[12384]="Augustus the Touched",[12385]="Mortar Team Advanced Target Dummy",[12387]="Large Vile Slime",[12396]="Doomguard Commander",[12397]="Lord Kazzak",[12416]="Blackwing Legionnaire",[12418]="Gordok Hyena",[12419]="Lifelike Toad",[12420]="Blackwing Mage",[12422]="Death Talon Dragonspawn",[12423]="Guard Roberts",[12425]="Flint Shadowmore",[12426]="Masterwork Target Dummy",[12427]="Mountaineer Dolf",[12428]="Deathguard Kel",[12429]="Sentinel Shaya",[12430]="Grunt Kor'ja",[12431]="Gorefang",[12432]="Old Vicejaw",[12433]="Krethis the Shadowspinner",[12434]="Monster Generator (Blackwing)",[12435]="Razorgore the Untamed",[12457]="Blackwing Spellbinder",[12458]="Blackwing Taskmaster",[12459]="Blackwing Warlock",[12460]="Death Talon Wyrmguard",[12461]="Death Talon Overseer",[12463]="Death Talon Flamescale",[12464]="Death Talon Seether",[12465]="Death Talon Wyrmkin",[12467]="Death Talon Captain",[12468]="Death Talon Hatcher",[12473]="Arcanite Dragonling",[12474]="Emeraldon Boughguard",[12475]="Emeraldon Tree Warder",[12476]="Emeraldon Oracle",[12477]="Verdantine Boughguard",[12478]="Verdantine Oracle",[12479]="Verdantine Tree Warder",[12480]="Melris Malagan",[12481]="Justine Demalier",[12496]="Dreamtracker",[12497]="Dreamroarer",[12498]="Dreamstalker",[12557]="Grethok the Controller",[12576]="Grish Longrunner",[12577]="Jarrodenus",[12578]="Mishellena",[12579]="Bloodfury Ripper",[12580]="Reginald Windsor",[12581]="Mercutio",[12596]="Bibilfaz Featherwhistle",[12616]="Vhulgra",[12617]="Khaelyn Steelwing",[12636]="Georgia",[12656]="Thamarian",[12657]="Don Pompa",[12658]="Adam Lind",[12676]="Sharptalon",[12677]="Shadumbra",[12678]="Ursangous",[12696]="Senani Thunderheart",[12716]="Decedra Willham",[12717]="Muglash",[12718]="Gurda Ragescar",[12719]="Marukai",[12720]="Framnali",[12721]="Mitsuwa",[12722]="Vera Nightshade",[12723]="Har'alen",[12724]="Pixel",[12736]="Je'neu Sancrea",[12737]="Mastok Wrilehiss",[12738]="Nori Pridedrift",[12739]="Onyxia's Elite Guard",[12740]="Faustron",[12756]="Lady Onyxia",[12757]="Karang Amakkar",[12758]="Onyxia Trigger",[12759]="Tideress",[12776]="Hraug",[12777]="Captain Dirgehammer",[12778]="Lieutenant Rachel Vaccar",[12779]="Archmage Gaiman",[12780]="Sergeant Major Skyshadow",[12781]="Master Sergeant Biggins",[12782]="Captain O'Neal",[12783]="Lieutenant Karter",[12784]="Lieutenant Jackspring",[12785]="Sergeant Major Clate",[12786]="Guard Quine",[12787]="Guard Hammon",[12788]="Legionnaire Teena",[12789]="Blood Guard Hini'wana",[12790]="Advisor Willington",[12791]="Chieftain Earthbind",[12792]="Lady Palanseer",[12793]="Brave Stonehide",[12794]="Stone Guard Zarg",[12795]="First Sergeant Hola'mahi",[12796]="Raider Bork",[12797]="Grunt Korf",[12798]="Grunt Bek'rah",[12799]="Sergeant Ba'sha",[12800]="Chimaerok",[12801]="Arcane Chimaerok",[12802]="Chimaerok Devourer",[12803]="Lord Lakmaeran",[12805]="Officer Areyn",[12806]="Magmakin",[12807]="Greshka",[12816]="Xen'Zilla",[12818]="Ruul Snowhoof",[12836]="Wandering Protector",[12837]="Yama Snowhoof",[12856]="Ashenvale Outrunner",[12858]="Torek",[12859]="Splintertree Raider",[12860]="Duriel Moonfire",[12862]="Warsong Scout",[12863]="Warsong Runner",[12864]="Warsong Outrider",[12865]="Ambassador Malcin",[12866]="Myriam Moonsinger",[12867]="Kuray'bin",[12876]="Baron Aquanis",[12877]="Ertog Ragetusk",[12896]="Silverwing Sentinel",[12897]="Silverwing Warrior",[12898]="Phantim Illusion",[12899]="Axtroz",[12900]="Somnus",[12902]="Lorgus Jett",[12903]="Splintertree Guard",[12918]="Chief Murgut",[12919]="Nat Pagle",[12920]="Doctor Gregory Victor",[12921]="Enraged Foulweald",[12922]="Imp Minion",[12923]="Wounded Soldier",[12924]="Badly Injured Soldier",[12925]="Critically Injured Soldier",[12936]="Badly Injured Alliance Soldier",[12937]="Critically Injured Alliance Soldier",[12938]="Injured Alliance Soldier",[12939]="Doctor Gustaf VanHowzen",[12940]="Vorsha the Lasher",[12941]="Jase Farlane",[12942]="Leonard Porter",[12943]="Werg Thickblade",[12944]="Lokhtos Darkbargainer",[12956]="Zannok Hidepiercer",[12957]="Blimo Gadgetspring",[12958]="Gigget Zipcoil",[12959]="Nergal",[12960]="Christi Galvanis",[12961]="Kil'Hiwana",[12962]="Wik'Tar",[12976]="Kolkar Waylayer",[12977]="Kolkar Ambusher",[12996]="Mounted Ironforge Mountaineer",[12997]="Monty",[12998]="Dwarven Farmer",[12999]="World Invisible Trigger",[13000]="Gnome Engineer",[13016]="Deeprun Rat",[13017]="Enthralled Deeprun Rat",[13018]="Nipsy",[13019]="Burning Blade Seer",[13020]="Vaelastrasz the Corrupt",[13021]="Warpwood Crusher",[13022]="Whip Lasher",[13036]="Gordok Mastiff",[13076]="Dun Morogh Mountaineer",[13078]="Umi Thorson",[13079]="Keetar",[13080]="Irondeep Guard",[13081]="Irondeep Raider",[13082]="Milton Beats",[13084]="Bixi Wobblebonk",[13085]="Myrokos Silentform",[13086]="Aggi Rumblestomp",[13087]="Coldmine Invader",[13088]="Masha Swiftcut",[13089]="Coldmine Guard",[13096]="Coldmine Explorer",[13097]="Coldmine Surveyor",[13098]="Irondeep Surveyor",[13099]="Irondeep Explorer",[13116]="Alliance Spirit Guide",[13117]="Horde Spirit Guide",[13118]="Crimson Bodyguard",[13136]="Hive'Ashi Drone",[13137]="Lieutenant Rugba",[13138]="Lieutenant Spencer",[13139]="Commander Randolph",[13140]="Commander Dardosh",[13141]="Deeprot Stomper",[13142]="Deeprot Tangler",[13143]="Lieutenant Stronghoof",[13144]="Lieutenant Vol'talar",[13145]="Lieutenant Grummus",[13146]="Lieutenant Murp",[13147]="Lieutenant Lewis",[13148]="Flame of Ragnaros",[13152]="Commander Malgor",[13153]="Commander Mulfort",[13154]="Commander Louis Philips",[13157]="Makasgar",[13158]="Lieutenant Sanders",[13159]="James Clark",[13160]="Carrion Swarmer",[13161]="Aerie Gryphon",[13176]="Smith Regzar",[13177]="Vahgruk",[13178]="War Rider",[13179]="Wing Commander Guse",[13180]="Wing Commander Jeztor",[13181]="Wing Commander Mulverick",[13196]="Phase Lasher",[13197]="Fel Lash",[13216]="Gaelden Hammersmith",[13217]="Thanthaldis Snowgleam",[13218]="Grunnda Wolfheart",[13219]="Jorek Ironside",[13220]="Layo Starstrike",[13236]="Primalist Thurloga",[13256]="Lokholar the Ice Lord",[13257]="Murgot Deepforge",[13276]="Wildspawn Imp",[13277]="Dahne Pierce",[13278]="Duke Hydraxis",[13279]="Discordant Surge",[13280]="Hydrospawn",[13282]="Noxxion",[13283]="Lord Tony Romano",[13284]="Frostwolf Shaman",[13285]="Death Lash",[13296]="Lieutenant Largent",[13297]="Lieutenant Stouthandle",[13298]="Lieutenant Greywand",[13299]="Lieutenant Lonadin",[13300]="Lieutenant Mancuso",[13301]="Hive'Ashi Ambusher",[13316]="Coldmine Peon",[13317]="Coldmine Miner",[13318]="Commander Mortimer",[13319]="Commander Duffy",[13320]="Commander Karl Philips",[13321]="Small Frog",[13322]="Hydraxian Honor Guard",[13323]="Subterranean Diemetradon",[13324]="Seasoned Guardsman",[13325]="Seasoned Mountaineer",[13326]="Seasoned Defender",[13327]="Seasoned Sentinel",[13328]="Seasoned Guardian",[13329]="Seasoned Legionnaire",[13330]="Seasoned Warrior",[13331]="Veteran Defender",[13332]="Veteran Guardian",[13333]="Veteran Guardsman",[13334]="Veteran Legionnaire",[13335]="Veteran Mountaineer",[13336]="Veteran Sentinel",[13337]="Veteran Warrior",[13338]="Core Rat",[13358]="Stormpike Bowman",[13359]="Frostwolf Bowman",[13378]="Frostwolf Shredder Unit",[13396]="Irondeep Miner",[13397]="Irondeep Peon",[13416]="Stormpike Shredder Unit",[13417]="Sagorne Creststrider",[13418]="Kaymard Copperpinch",[13419]="Ivus the Forest Lord",[13420]="Penney Copperpinch",[13421]="Champion Guardian",[13422]="Champion Defender",[13424]="Champion Guardsman",[13425]="Champion Legionnaire",[13426]="Champion Mountaineer",[13427]="Champion Sentinel",[13429]="Nardstrum Copperpinch",[13430]="Jaycrue Copperpinch",[13431]="Whulwert Copperpinch",[13432]="Seersa Copperpinch",[13433]="Wulmort Jinglepocket",[13434]="Macey Jinglepocket",[13435]="Khole Jinglepocket",[13436]="Guchie Jinglepocket",[13437]="Wing Commander Ichman",[13438]="Wing Commander Slidore",[13439]="Wing Commander Vipore",[13440]="Frostwolf Wolf Rider",[13441]="Frostwolf Wolf Rider Commander",[13442]="Arch Druid Renferal",[13443]="Druid of the Grove",[13444]="Greatfather Winter",[13445]="Great-father Winter",[13446]="Field Marshal Teravaine",[13447]="Corporal Noreg Stormpike",[13448]="Sergeant Yazra Bloodsnarl",[13449]="Warmaster Garrick",[13456]="Noxxion's Spawn",[13476]="Zen'Balai",[13524]="Stormpike Commando",[13525]="Seasoned Commando",[13526]="Veteran Commando",[13527]="Champion Commando",[13529]="Seasoned Reaver",[13530]="Veteran Reaver",[13531]="Champion Reaver",[13533]="Spewed Larva",[13534]="Seasoned Coldmine Guard",[13535]="Veteran Coldmine Guard",[13536]="Champion Coldmine Guard",[13537]="Seasoned Coldmine Surveyor",[13538]="Veteran Coldmine Surveyor",[13539]="Champion Coldmine Surveyor",[13540]="Seasoned Irondeep Explorer",[13541]="Veteran Irondeep Explorer",[13542]="Champion Irondeep Explorer",[13543]="Seasoned Irondeep Raider",[13544]="Veteran Irondeep Raider",[13545]="Champion Irondeep Raider",[13546]="Seasoned Coldmine Explorer",[13547]="Veteran Coldmine Explorer",[13548]="Champion Coldmine Explorer",[13549]="Seasoned Coldmine Invader",[13550]="Veteran Coldmine Invader",[13551]="Champion Coldmine Invader",[13552]="Seasoned Irondeep Guard",[13553]="Veteran Irondeep Guard",[13554]="Champion Irondeep Guard",[13555]="Seasoned Irondeep Surveyor",[13556]="Veteran Irondeep Surveyor",[13557]="Champion Irondeep Surveyor",[13576]="Stormpike Ram Rider",[13577]="Stormpike Ram Rider Commander",[13596]="Rotgrip",[13597]="Frostwolf Explosives Expert",[13598]="Stormpike Explosives Expert",[13599]="Stolid Snapjaw",[13601]="Tinkerer Gizlock",[13602]="The Abominable Greench",[13616]="Frostwolf Stable Master",[13617]="Stormpike Stable Master",[13618]="Stabled Frostwolf",[13636]="Strange Snowman",[13656]="Willow",[13696]="Noxxious Scion",[13697]="Cavindra",[13698]="Keeper Marandis",[13699]="Selendra",[13716]="Celebras the Redeemed",[13717]="Centaur Pariah",[13718]="The Nameless Prophet",[13736]="Noxxious Essence",[13737]="Marandis' Sister",[13738]="Veng",[13739]="Maraudos",[13740]="Magra",[13741]="Gelk",[13742]="Kolk",[13743]="Corrupt Force of Nature",[13756]="PvP Graveyard Credit Marker",[13776]="Corporal Teeka Bloodsnarl",[13777]="Sergeant Durgen Stormpike",[13778]="PvP Tower Credit Marker",[13796]="PvP Mine Credit Marker",[13797]="Mountaineer Boombellow",[13798]="Jotek",[13816]="Prospector Stonehewer",[13817]="Voggah Deathgrip",[13836]="Burning Blade Nightmare",[13837]="Captured Stallion",[13839]="Royal Dreadguard",[13840]="Warmaster Laggrond",[13841]="Lieutenant Haggerdin",[13842]="Frostwolf Ambassador Rokhstrom",[13843]="Lieutenant Rotimer",[13876]="Mekgineer Trigger",[13896]="Scalebeard",[13916]="Dire Maul Crystal Totem",[13917]="Izzy Coppergrab",[13936]="Ravenholdt",[13959]="Alterac Yeti",[13976]="Tortured Drake",[13996]="Blackwing Technician",[14020]="Chromaggus",[14022]="Corrupted Red Whelp",[14023]="Corrupted Green Whelp",[14024]="Corrupted Blue Whelp",[14025]="Corrupted Bronze Whelp",[14026]="Trigger Guse",[14027]="Trigger Mulverick",[14028]="Trigger Jeztor",[14029]="Trigger Ichman",[14030]="Trigger Slidore",[14031]="Trigger Vipore",[14041]="Haggle",[14081]="Demon Portal",[14101]="Enraged Felguard",[14121]="Deeprun Diver",[14122]="Massive Geyser",[14123]="Steeljaw Snapper",[14143]="Ar'lia",[14162]="RaidMage",[14182]="Bounty Hunter Kolark",[14183]="Artilleryman Sheldonore",[14185]="Najak Hexxen",[14186]="Ravak Grimtotem",[14187]="Athramanis",[14188]="Dirk Swindle",[14221]="Gravis Slipknot",[14222]="Araga",[14223]="Cranky Benj",[14224]="7:XT",[14225]="Prince Kellen",[14226]="Kaskk",[14227]="Hissperak",[14228]="Giggler",[14229]="Accursed Slitherblade",[14230]="Burgle Eye",[14231]="Drogoth the Roamer",[14232]="Dart",[14233]="Ripscale",[14234]="Hayoc",[14235]="The Rot",[14236]="Lord Angler",[14237]="Oozeworm",[14241]="Ironbark the Redeemed",[14242]="[UNUSED] Sulhasa",[14261]="Blue Drakonid",[14262]="Green Drakonid",[14263]="Bronze Drakonid",[14264]="Red Drakonid",[14265]="Black Drakonid",[14266]="Shanda the Spinner",[14267]="Emogg the Crusher",[14268]="Lord Condar",[14269]="Seeker Aqualon",[14270]="Squiddic",[14271]="Ribchaser",[14272]="Snarlflare",[14273]="Boulderheart",[14275]="Tamra Stormpike",[14276]="Scargil",[14277]="Lady Zephris",[14278]="Ro'Bark",[14279]="Creepthess",[14280]="Big Samras",[14281]="Jimmy the Bleeder",[14282]="Frostwolf Bloodhound",[14283]="Stormpike Owl",[14284]="Stormpike Battleguard",[14285]="Frostwolf Battleguard",[14301]="Brinna Valanaar",[14302]="Chromatic Drakonid",[14303]="Petrified Guardian",[14304]="Kor'kron Elite",[14305]="Human Orphan",[14306]="Eskhandar",[14307]="Black Drakonid Spawner",[14308]="Ferra",[14309]="Red Drakonid Spawner",[14310]="Green Drakonid Spawner",[14311]="Bronze Drakonid Spawner",[14312]="Blue Drakonid Spawner",[14321]="Guard Fengus",[14322]="Stomper Kreeg",[14323]="Guard Slip'kik",[14324]="Cho'Rush the Observer",[14325]="Captain Kromcrush",[14326]="Guard Mol'dar",[14327]="Lethtendris",[14329]="Black War Wolf",[14330]="Black War Raptor",[14331]="Red Skeletal Warhorse",[14332]="Black War Steed",[14333]="Black War Kodo",[14334]="Black Battlestrider",[14335]="Black War Ram",[14336]="Black War Tiger",[14337]="Field Repair Bot 74A",[14338]="Knot Thimblejack",[14339]="Death Howl",[14340]="Alshirr Banebreath",[14342]="Ragepaw",[14343]="Olm the Wise",[14344]="Mongress",[14345]="The Ongar",[14347]="Highlord Demitrian",[14348]="Earthcaller Franzahl",[14349]="Pimgib",[14350]="Hydroling",[14351]="Gordok Bushwacker",[14353]="Mizzle the Crafty",[14354]="Pusillin",[14355]="Azj'Tordin",[14356]="Sawfin Frenzy",[14357]="Lake Thresher",[14358]="Shen'dralar Ancient",[14361]="Shen'dralar Wisp",[14362]="Thornling",[14363]="Thief Catcher Shadowdelve",[14364]="Shen'dralar Spirit",[14365]="Thief Catcher Farmountain",[14366]="Warpwood Spores",[14367]="Thief Catcher Thunderbrew",[14368]="Lorekeeper Lydros",[14369]="Shen'dralar Zealot",[14370]="Cadaverous Worm",[14371]="Shen'dralar Provisioner",[14372]="Winterfall Ambusher",[14373]="Sage Korolusk",[14374]="Scholar Runethorn",[14375]="Scout Stronghand",[14376]="Scout Manslayer",[14377]="Scout Tharr",[14378]="Huntress Skymane",[14379]="Huntress Ravenoak",[14380]="Huntress Leafrunner",[14381]="Lorekeeper Javon",[14382]="Lorekeeper Mykos",[14383]="Lorekeeper Kildrath",[14385]="Doomguard Minion",[14386]="Wandering Eye of Kilrogg",[14387]="Lothos Riftwaker",[14388]="Rogue Black Drake",[14389]="Netherwalker",[14390]="Expeditionary Mountaineer",[14392]="Overlord Runthak",[14393]="Expeditionary Priest",[14394]="Major Mattingly",[14395]="Griniblix the Spectator",[14396]="Eye of Immol'thar",[14397]="Mana Burst",[14398]="Eldreth Darter",[14399]="Arcane Torrent",[14400]="Arcane Feedback",[14401]="Master Elemental Shaper Krixix",[14402]="Seeker Cromwell",[14403]="Seeker Nahr",[14404]="Seeker Thompson",[14421]="Brown Prairie Dog",[14423]="Officer Jaxon",[14424]="Mirelow",[14425]="Gnawbone",[14426]="Harb Foulmountain",[14427]="Gibblesnik",[14428]="Uruson",[14429]="Grimmaw",[14430]="Duskstalker",[14431]="Fury Shelda",[14432]="Threggil",[14433]="Sludginn",[14434]="Alarm-o-Bot",[14435]="Prince Thunderaan",[14436]="Mor'zul Bloodbringer",[14437]="Gorzeeki Wildeyes",[14438]="Officer Pomeroy",[14439]="Officer Brady",[14440]="Hunter Sagewind",[14441]="Hunter Ragetotem",[14442]="Hunter Thunderhorn",[14443]="Doomguard Tap Trigger",[14444]="Orcish Orphan",[14445]="Lord Captain Wyrmak",[14446]="Fingat",[14447]="Gilmorian",[14448]="Molt Thorn",[14449]="Blackwing Orb Trigger",[14450]="Orphan Matron Nightingale",[14451]="Orphan Matron Battlewail",[14452]="Enslaved Doomguard Commander",[14453]="Orb of Domination",[14454]="The Windreaver",[14455]="Whirling Invader",[14456]="Blackwing Guardsman",[14457]="Princess Tempestria",[14458]="Watery Invader",[14459]="Nefarian's Troops",[14460]="Blazing Invader",[14461]="Baron Charr",[14462]="Thundering Invader",[14463]="Daio the Decrepit",[14464]="Avalanchion",[14465]="Alliance Battle Standard",[14466]="Horde Battle Standard",[14467]="Kroshius",[14469]="Niby the Almighty",[14470]="Impsy",[14471]="Setis",[14472]="Gretheer",[14473]="Lapress",[14474]="Zora",[14475]="Rex Ashil",[14476]="Krellack",[14477]="Grubthor",[14478]="Huricanian",[14479]="Twilight Lord Everun",[14480]="Alowicious Czervik",[14481]="Emmithue Smails",[14482]="Xorothian Imp",[14483]="Dread Guard",[14484]="Injured Peasant",[14485]="Plagued Peasant",[14486]="Scourge Footsoldier",[14487]="Gluggle",[14488]="Roloch",[14489]="Scourge Archer",[14490]="Rippa",[14491]="Kurmokk",[14492]="Verifonix",[14494]="Eris Havenfire",[14495]="Invisible Trigger One",[14496]="Stormwind Orphan",[14497]="Shellene",[14498]="Tosamina",[14499]="Horde Orphan",[14500]="J'eevee",[14502]="Xorothian Dreadsteed",[14503]="The Cleaner",[14504]="Dreadsteed Spirit",[14505]="Dreadsteed",[14506]="Lord Hel'nurath",[14507]="High Priest Venoxis",[14508]="Short John Mithril",[14509]="High Priest Thekal",[14510]="High Priestess Mar'li",[14511]="Shadowed Spirit",[14512]="Corrupted Spirit",[14513]="Malicious Spirit",[14514]="Banal Spirit",[14515]="High Priestess Arlokk",[14516]="Death Knight Darkreaver",[14517]="High Priestess Jeklik",[14518]="Aspect of Banality",[14519]="Aspect of Corruption",[14520]="Aspect of Malice",[14521]="Aspect of Shadow",[14522]="Ur'dan",[14523]="Ulathek",[14524]="Vartrus the Ancient",[14525]="Stoma the Ancient",[14526]="Hastat the Ancient",[14527]="Simone the Inconspicuous",[14528]="Precious",[14529]="Franklin the Friendly",[14530]="Solenor the Slayer",[14531]="Artorius the Amiable",[14532]="Razzashi Venombrood",[14533]="Simone the Seductress",[14534]="Klinfran the Crazed",[14535]="Artorius the Doombringer",[14536]="Nelson the Nice",[14538]="Precious the Devourer",[14539]="Swift Timber Wolf",[14540]="Swift Brown Wolf",[14541]="Swift Gray Wolf",[14542]="Great White Kodo",[14543]="Swift Olive Raptor",[14544]="Swift Orange Raptor",[14545]="Swift Blue Raptor",[14546]="Swift Brown Ram",[14547]="Swift White Ram",[14548]="Swift Gray Ram",[14549]="Great Brown Kodo",[14550]="Great Gray Kodo",[14551]="Swift Yellow Mechanostrider",[14552]="Swift White Mechanostrider",[14553]="Swift Green Mechanostrider",[14555]="Swift Mistsaber",[14556]="Swift Frostsaber",[14557]="Swift Dawnsaber",[14558]="Purple Skeletal Warhorse",[14559]="Swift Palomino",[14560]="Swift White Steed",[14561]="Swift Brown Steed",[14563]="Swift Red Mechanostrider",[14564]="Terrordale Spirit",[14565]="Charger",[14566]="Ancient Equine Spirit",[14567]="Derotain Mudsipper",[14568]="Darkreaver's Fallen Charger",[14581]="Sergeant Thunderhorn",[14601]="Ebonroc",[14602]="Swift Stormsaber",[14603]="Zapped Shore Strider",[14604]="Zapped Land Walker",[14605]="Bone Construct",[14621]="Overseer Maltorius",[14622]="Thorium Brotherhood Lookout",[14623]="Warsong Gulch Battlemaster",[14624]="Master Smith Burninate",[14625]="Overseer Oilfist",[14626]="Taskmaster Scrange",[14627]="Hansel Heavyhands",[14628]="Evonice Sootsmoker",[14629]="Loggerhead Snapjaw",[14630]="Leatherback Snapjaw",[14631]="Olive Snapjaw",[14632]="Hawksbill Snapjaw",[14633]="Albino Snapjaw",[14634]="Lookout Captain Lolo Longstriker",[14635]="Sleepy Dark Iron Worker",[14636]="Chambermaid Pillaclencher",[14637]="Zorbin Fandazzle",[14638]="Zapped Wave Strider",[14639]="Zapped Deep Strider",[14640]="Zapped Cliff Giant",[14645]="Warsong Gulch Herald",[14646]="Stratholme Trigger",[14661]="Stinglasher",[14662]="Corrupted Fire Nova Totem V",[14663]="Corrupted Stoneskin Totem VI",[14664]="Corrupted Healing Stream Totem V",[14666]="Corrupted Windfury Totem III",[14667]="Corrupted Totem",[14668]="Corrupted Infernal",[14682]="Sever",[14684]="Balzaphon",[14686]="Lady Falther'ess",[14688]="Prince Sandoval",[14690]="Revanchion",[14693]="Scorn",[14695]="Lord Blackwood",[14697]="Lumbering Horror",[14715]="Silverwing Elite",[14717]="Horde Elite",[14718]="Horde Laborer",[14720]="High Overlord Saurfang",[14721]="Field Marshal Afrasiabi",[14722]="Clavicus Knavingham",[14723]="Mistina Steelshield",[14724]="Bubulo Acerbus",[14725]="Raedon Duskstriker",[14726]="Rashona Straglash",[14727]="Vehena",[14728]="Rumstag Proudstrider",[14729]="Ralston Farnsley",[14730]="Revantusk Watcher",[14731]="Lard",[14732]="PvP CTF Credit Marker",[14733]="Sentinel Farsong",[14734]="Revantusk Drummer",[14736]="Primal Torntusk",[14737]="Smith Slagtree",[14738]="Otho Moji'ko",[14739]="Mystic Yayo'jin",[14740]="Katoom the Angler",[14741]="Huntsman Markhor",[14742]="Zap Farflinger",[14743]="Jhordy Lapforge",[14744]="Frostwolf Howler",[14745]="Stormpike Battle Charger",[14748]="Vilebranch Kidnapper",[14750]="Gurubashi Bat Rider",[14751]="Frostwolf Battle Standard",[14752]="Stormpike Battle Standard",[14753]="Illiyana Moonblaze",[14754]="Kelm Hargunth",[14755]="Tiny Green Dragon",[14756]="Tiny Red Dragon",[14757]="Elder Torntusk",[14758]="Zul'Gurub Trigger",[14761]="Creeping Doom",[14762]="Dun Baldar North Marshal",[14763]="Dun Baldar South Marshal",[14764]="Icewing Marshal",[14765]="Stonehearth Marshal",[14766]="Iceblood Marshal",[14767]="Tower Point Marshal",[14768]="East Frostwolf Marshal",[14769]="West Frostwolf Marshal",[14770]="Dun Baldar North Warmaster",[14771]="Dun Baldar South Warmaster",[14772]="East Frostwolf Warmaster",[14773]="Iceblood Warmaster",[14774]="Icewing Warmaster",[14775]="Stonehearth Warmaster",[14776]="Tower Point Warmaster",[14777]="West Frostwolf Warmaster",[14781]="Captain Shatterskull",[14821]="Razzashi Raptor",[14822]="Sayge",[14823]="Silas Darkmoon",[14825]="Withered Mistress",[14826]="Sacrificed Troll",[14827]="Burth",[14828]="Gelvas Grimegate",[14829]="Yebb Neblegear",[14830]="Unkillable Test Dummy 60 Warrior",[14832]="Kerri Hicks",[14833]="Chronos",[14834]="Hakkar",[14841]="Rinling",[14842]="Melnan Darkstone",[14843]="Kruban Darkblade",[14844]="Sylannia",[14845]="Stamp Thunderhorn",[14846]="Lhara",[14847]="Professor Thaddeus Paleo",[14848]="Herald",[14849]="Darkmoon Carnie",[14850]="Gruk",[14857]="Erk",[14859]="Guard Taruc",[14860]="Flik",[14861]="Blood Steward of Kirtonos",[14862]="Emissary Roman'khan",[14864]="Khaz Modan Ram",[14865]="Felinni",[14866]="Flik's Frog",[14867]="Jubjub",[14868]="Hornsley",[14869]="Pygmy Cockatrice",[14871]="Morja",[14872]="Trok",[14873]="Okla",[14874]="Karu",[14875]="Molthor",[14876]="Zandalar Headshrinker",[14878]="Jubling",[14879]="Arathi Basin Battlemaster",[14880]="Razzashi Skitterer",[14881]="Spider",[14882]="Atal'ai Mistress",[14883]="Voodoo Slave",[14884]="Parasitic Serpent",[14885]="Jonathan LeCraft",[14887]="Ysondre",[14888]="Lethon",[14889]="Emeriss",[14890]="Taerar",[14892]="Fang",[14893]="Guard Kurall",[14894]="Swarm of bees",[14901]="Peon",[14902]="Jin'rokh the Breaker",[14903]="Al'tabim the All-Seeing",[14904]="Maywiki of Zuldazar",[14905]="Falthir the Sightless",[14908]="Mogg",[14909]="Pooka",[14910]="Exzhal",[14911]="Zandalar Enforcer",[14912]="Captured Hakkari Zealot",[14921]="Rin'wosho the Trader",[14942]="Kartra Bloodsnarl",[14943]="Guse's War Rider",[14944]="Jeztor's War Rider",[14945]="Mulverick's War Rider",[14946]="Slidore's Gryphon",[14947]="Ichman's Gryphon",[14948]="Vipore's Gryphon",[14961]="Mirvyna Jinglepocket",[14962]="Dillord Copperpinch",[14963]="Gapp Jinglepocket",[14964]="Hecht Copperpinch",[14965]="Frenzied Bloodseeker Bat",[14981]="Elfarran",[14982]="Lylandris",[14983]="Field Marshal Oslight",[14984]="Sergeant Maclear",[14986]="Shade of Jin'do",[14987]="Powerful Healing Ward",[14988]="Ohgan",[14989]="Poisonous Cloud",[14990]="Defilers Envoy",[14991]="League of Arathor Emissary",[14994]="Zandalarian Event Generator",[15006]="Deze Snowbane",[15007]="Sir Malory Wheeler",[15008]="Lady Hoteshem",[15009]="Voodoo Spirit",[15010]="Jungle Toad",[15011]="Wagner Hammerstrike",[15012]="Javnir Nashak",[15021]="Deathmaster Dwire",[15022]="Deathstalker Mortis",[15041]="Spawn of Mar'li",[15042]="Zanza the Restless",[15043]="Zulian Crocolisk",[15045]="Arathi Farmer",[15046]="Forsaken Farmer",[15047]="Gurubashi",[15061]="Spirit of Jin'do",[15062]="Arathi Lumberjack",[15063]="Arathi Blacksmith",[15064]="Forsaken Blacksmith",[15065]="Lady",[15066]="Cleo",[15067]="Zulian Stalker",[15068]="Zulian Guardian",[15069]="Heart of Hakkar",[15070]="Vinchaxa",[15071]="Underfoot",[15072]="Spike",[15073]="Pat's Hellfire Guy",[15074]="Arathi Miner",[15075]="Forsaken Miner",[15076]="Zandalarian Emissary",[15077]="Riggle Bassbait",[15078]="Jang",[15079]="Fishbot 5000",[15080]="Servant of the Hand",[15082]="Gri'lek",[15083]="Hazza'rah",[15084]="Renataki",[15085]="Wushoolay",[15086]="Arathi Stablehand",[15087]="Forsaken Stablehand",[15088]="Booty Bay Elite",[15089]="Forsaken Lumberjack",[15090]="Swift Razzashi Raptor",[15091]="Zul'Gurub Panther Trigger",[15101]="Zulian Prowler",[15102]="Silverwing Emissary",[15103]="Stormpike Emissary",[15104]="Swift Zulian Tiger",[15105]="Warsong Envoy",[15106]="Frostwolf Envoy",[15107]="Arathi Horse",[15108]="Forsaken Horse",[15111]="Mad Servant",[15112]="Brain Wash Totem",[15113]="Honored Hero",[15114]="Gahz'ranka",[15115]="Honored Ancestor",[15116]="Grinkle",[15117]="Chained Spirit",[15119]="Barrus",[15122]="Gahz'ranka Dead",[15124]="Targot Jinglepocket",[15125]="Kosco Copperpinch",[15126]="Rutherford Twing",[15127]="Samuel Hawke",[15128]="Defiler Elite",[15130]="League of Arathor Elite",[15131]="Qeeju",[15136]="Hammerfall Elite",[15137]="Menethil Elite",[15138]="Silverpine Elite",[15140]="Pat's Splash Guy",[15141]="Portal of Madness",[15146]="Mad Voidwalker",[15162]="Scarlet Inquisitor",[15163]="Nightmare Illusion",[15164]="Mulgore Trigger",[15165]="Haughty Modiste",[15168]="Vile Scarab",[15169]="Ralo'shan the Eternal Watcher",[15170]="Rutgar Glyphshaper",[15171]="Frankal Stonebridge",[15172]="Glibb",[15174]="Calandrath",[15175]="Khur Hornstriker",[15176]="Vargus",[15177]="Cloud Skydancer",[15178]="Runk Windtamer",[15179]="Mishta",[15180]="Baristolth of the Shifting Sands",[15181]="Commander Mar'alith",[15182]="Vish Kozus",[15183]="Geologist Larksbane",[15184]="Cenarion Hold Infantry",[15185]="Brood of Nozdormu",[15186]="Murky",[15187]="Cenarion Emissary Jademoon",[15188]="Cenarion Emissary Blackhoof",[15189]="Beetix Ficklespragg",[15190]="Noggle Ficklespragg",[15191]="Windcaller Proudhorn",[15192]="Anachronos",[15193]="The Banshee Queen",[15194]="Hermit Ortell",[15195]="Wickerman Guardian",[15196]="Deathclasp",[15197]="Darkcaller Yanka",[15198]="Blackwing",[15199]="Sergeant Hartman",[15200]="Twilight Keeper Mayna",[15201]="Twilight Flamereaver",[15202]="Vyral the Vile",[15203]="Prince Skaldrenox",[15204]="High Marshal Whirlaxis",[15205]="Baron Kazum",[15206]="The Duke of Cynders",[15207]="The Duke of Fathoms",[15208]="The Duke of Shards",[15209]="Crimson Templar",[15211]="Azure Templar",[15212]="Hoary Templar",[15213]="Twilight Overlord",[15214]="Invisible Stalker",[15215]="Mistress Natalia Mar'alith",[15218]="Darkmoon Faire Cannon",[15220]="The Duke of Zephyrs",[15221]="Frankal Invisible Trigger",[15222]="Rutgar Invisible Trigger",[15224]="Dream Fog",[15229]="Vekniss Soldier",[15230]="Vekniss Warrior",[15233]="Vekniss Guardian",[15235]="Vekniss Stinger",[15236]="Vekniss Wasp",[15240]="Vekniss Hive Crawler",[15241]="Gryphon Rider Guard",[15242]="Bat Rider Guard",[15246]="Qiraji Mindslayer",[15247]="Qiraji Brainwasher",[15249]="Qiraji Lasher",[15250]="Qiraji Slayer",[15252]="Qiraji Champion",[15260]="Demented Druid Spirit",[15261]="Spirit Shade",[15262]="Obsidian Eradicator",[15263]="The Prophet Skeram",[15264]="Anubisath Sentinel",[15270]="Huum Wildmane",[15271]="Tender",[15273]="Arcane Wraith",[15274]="Mana Wyrm",[15275]="Emperor Vek'nilash",[15276]="Emperor Vek'lor",[15277]="Anubisath Defender",[15278]="Magistrix Erona",[15279]="Julia Sunstriker",[15280]="Jesthenis Sunstriker",[15281]="Lanthan Perilon",[15282]="Aurel Goldleaf",[15283]="Summoner Teli'Larien",[15284]="Matron Arena",[15285]="Pathstalker Kariel",[15286]="Xil'xix",[15287]="Shara Sunwing",[15288]="Aluntir",[15289]="Raelis Dawnstar",[15290]="Arakis",[15291]="Jainthess Thelryn",[15292]="Faraden Thelryn",[15293]="Aendel Windspear",[15294]="Feral Tender",[15295]="Well Watcher Solanian",[15296]="Arcanist Ithanas",[15297]="Arcanist Helion",[15298]="Tainted Arcane Wraith",[15299]="Viscidus",[15300]="Vekniss Drone",[15301]="Outrunner Alarion",[15302]="Shade of Taerar",[15303]="Maxima Blastenheimer",[15304]="Ancient Mana Spring Totem",[15305]="Lord Skwol",[15306]="Bor Wildmane",[15307]="Earthen Templar",[15308]="Twilight Prophet",[15309]="Spoops",[15310]="Jesper",[15311]="Anubisath Warder",[15312]="Obsidian Nullifier",[15314]="Moonkin (Druid - Tauren)",[15315]="Mylini Frostmoon",[15316]="Qiraji Scarab",[15317]="Qiraji Scorpion",[15318]="Hive'Zara Drone",[15319]="Hive'Zara Collector",[15320]="Hive'Zara Soldier",[15323]="Hive'Zara Sandstalker",[15324]="Qiraji Gladiator",[15325]="Hive'Zara Wasp",[15327]="Hive'Zara Stinger",[15328]="Steam Tank",[15333]="Silicate Feeder",[15334]="Giant Eye Tentacle",[15335]="Flesh Hunter",[15336]="Hive'Zara Tail Lasher",[15338]="Obsidian Destroyer",[15339]="Ossirian the Unscarred",[15340]="Moam",[15341]="General Rajaxx",[15343]="Qiraji Swarmguard",[15344]="Swarmguard Needler",[15348]="Kurinnaxx",[15350]="Horde Warbringer",[15351]="Alliance Brigadier General",[15352]="Greater Earth Elemental",[15353]="Katrina Shimmerstar",[15354]="Rachelle Gothena",[15355]="Anubisath Guardian",[15356]="Blue Baby Murloc",[15357]="Purple Baby Murloc",[15358]="Lurky",[15359]="Pink Baby Murloc",[15360]="Green Baby Murloc",[15361]="Murki",[15362]="Malfurion Stormrage",[15363]="Totem of Spirits",[15366]="Springpaw Cub",[15367]="Felendren the Banished",[15368]="Tonk Mine",[15369]="Ayamiss the Hunter",[15370]="Buru the Gorger",[15371]="Sunstrider Guardian",[15372]="Springpaw Lynx",[15378]="Merithra of the Dream",[15379]="Caelestrasz",[15380]="Arygos",[15381]="Anachronos the Ancient",[15382]="Fandral Staghelm",[15383]="Sergeant Stonebrow",[15384]="OLDWorld Trigger (DO NOT DELETE)",[15385]="Colonel Zerran",[15386]="Major Yeggeth",[15387]="Qiraji Warrior",[15388]="Major Pakkon",[15389]="Captain Drenn",[15390]="Captain Xurrem",[15391]="Captain Qeez",[15392]="Captain Tuubid",[15393]="[UNUSED] Ruins Qiraji Gladiator Named 7",[15395]="Nafien",[15397]="Marniel Amberlight",[15398]="Larianna Riverwind",[15399]="Lieutenant Dawnrunner",[15400]="Arathel Sunforge",[15401]="Ley-Keeper Velania",[15402]="Apprentice Mirveda",[15403]="Aeldon Sunbrand",[15404]="Velendris Whitemorn",[15405]="Ley-Keeper Caidanis",[15406]="Ven'jashi",[15407]="Chieftain Zul'Marosh",[15408]="Spearcrafter Otembe",[15409]="Old Whitebark",[15414]="Qiraji Wasp",[15415]="Southshore Stink Bomb Counter",[15416]="Ranger Jaela",[15417]="Velan Brightoak",[15418]="Magister Jaronis",[15419]="Kania",[15420]="Prospector Anvilward",[15421]="Qiraji Drone",[15422]="Qiraji Tank",[15423]="Kaldorei Infantry",[15424]="Anubisath Conqueror",[15426]="Ahn'Qiraj Trigger",[15428]="Sand Vortex",[15429]="Disgusting Oozeling",[15430]="Earth Elemental Totem",[15431]="Corporal Carnes",[15432]="Dame Twinbraid",[15433]="Innkeeper Delaniel",[15434]="Private Draxlegauge",[15437]="Master Nightsong",[15438]="Greater Fire Elemental",[15439]="Fire Elemental Totem",[15440]="Captain Blackanvil",[15441]="Ironforge Brigade Rifleman",[15442]="Ironforge Brigade Footman",[15443]="Janela Stouthammer",[15444]="Arcanist Nozzlespring",[15445]="Sergeant Major Germaine",[15446]="Bonnie Stoneflayer",[15447]="Wrath of Air Totem",[15448]="Private Porter",[15449]="Hive'Zora Abomination",[15450]="Marta Finespindle",[15451]="Sentinel Silversky",[15452]="Nurse Stonefield",[15453]="Keeper Moonshade",[15454]="Anachronos Quest Trigger Invisible",[15455]="Slicky Gastronome",[15456]="Sarah Sadwhistle",[15457]="Huntress Swiftriver",[15458]="Commander Stronghammer",[15459]="Miner Cromwell",[15460]="Grunt Maug",[15461]="Shrieker Scarab",[15462]="Spitting Scarab",[15463]="Grace of Air Totem III",[15464]="Strength of Earth Totem V",[15466]="Minion of Omen",[15467]="Omen",[15468]="Sunstrider Mana Tap Counter",[15469]="Senior Sergeant T'kelah",[15470]="Stoneskin Totem VII",[15471]="Lieutenant General Andorov",[15473]="Kaldorei Elite",[15474]="Stoneskin Totem VIII",[15475]="Beetle",[15476]="Scorpion",[15477]="Herbalist Proudfeather",[15478]="Stoneclaw Totem VII",[15479]="Strength of Earth Totem VI",[15480]="Searing Totem VII",[15481]="Spirit of Azuregos",[15482]="Fire Nova Totem VI",[15484]="Magma Totem V",[15485]="Flametongue Totem V",[15486]="Frost Resistance Totem IV",[15487]="Fire Resistance Totem IV",[15488]="Healing Stream Totem VI",[15489]="Mana Spring Totem V",[15490]="Nature Resistance Totem IV",[15491]="Eranikus Tyrant of the Dream",[15492]="Windwall Totem IV",[15493]="Marsilla Dawnstar",[15494]="Yasmine Teli'Larien",[15495]="Nighthaven Defender",[15496]="Windfury Totem IV",[15497]="Windfury Totem V",[15498]="Windcaller Yessendra",[15499]="Warden Haro",[15500]="Keyl Swiftclaw",[15501]="Aleinia",[15502]="Andorgos",[15503]="Kandrostrasz",[15504]="Vethsera",[15505]="Canal Frenzy",[15508]="Batrider Pele'keiki",[15509]="Princess Huhuran",[15510]="Fankriss the Unyielding",[15511]="Lord Kri",[15512]="Apothecary Jezel",[15513]="Ranger Sallina",[15514]="Buru Egg",[15515]="Skinner Jamani",[15516]="Battleguard Sartura",[15517]="Ouro",[15520]="O'Reily",[15521]="Hive'Zara Hatchling",[15522]="Sergeant Umala",[15524]="Temporary Reindeer",[15525]="Doctor Serratus",[15526]="Meridith the Mermaiden",[15527]="Mana Fiend",[15528]="Healer Longrunner",[15529]="Lady Callow",[15532]="Stoneguard Clayhoof",[15533]="Bloodguard Rawtar",[15534]="Fisherman Lin'do",[15535]="Chief Sharpclaw",[15537]="Anubisath Warrior",[15538]="Anubisath Swarmguard",[15539]="General Zog",[15540]="Windcaller Kaldon",[15541]="Twilight Marauder Morna",[15542]="Twilight Marauder",[15543]="Princess Yauj",[15544]="Vem",[15545]="Cenarion Outrider",[15546]="Hive'Zara Swarmer",[15547]="Spectral Charger",[15548]="Spectral Stallion",[15549]="Elder Morndeep",[15550]="Attumen the Huntsman",[15551]="Spectral Stable Hand",[15552]="Doctor Weavil",[15553]="Doctor Weavil's Flying Machine",[15554]="Number Two",[15555]="Hive'Zara Larva",[15556]="Elder Splitrock",[15557]="Elder Rumblerock",[15558]="Elder Silvervein",[15559]="Elder Highpeak",[15560]="Elder Stonefort",[15561]="Elder Obsidian",[15562]="Elder Hammershout",[15563]="Elder Bellowrage",[15564]="Elder Darkcore",[15565]="Elder Stormbrow",[15566]="Elder Snowcrown",[15567]="Elder Ironband",[15568]="Elder Graveborn",[15569]="Elder Goldwell",[15570]="Elder Primestone",[15571]="Maws",[15572]="Elder Runetotem",[15573]="Elder Ragetotem",[15574]="Elder Stonespire",[15575]="Elder Bloodhoof",[15576]="Elder Winterhoof",[15577]="Elder Skychaser",[15578]="Elder Wildmane",[15579]="Elder Darkhorn",[15580]="Elder Ezra Wheathoof",[15581]="Elder Grimtotem",[15582]="Elder Windtotem",[15583]="Elder Thunderhorn",[15584]="Elder Skyseer",[15585]="Elder Dawnstrider",[15586]="Elder Dreamseer",[15587]="Elder Mistwalker",[15588]="Elder High Mountain",[15589]="Eye of C'Thun",[15590]="Ossirian Crystal Trigger",[15591]="Minion of Weavil",[15592]="Elder Windrun",[15593]="Elder Starsong",[15594]="Elder Moonstrike",[15595]="Elder Bladeleaf",[15596]="Elder Starglade",[15597]="Elder Moonwarden",[15598]="Elder Bladeswift",[15599]="Elder Bladesing",[15600]="Elder Skygleam",[15601]="Elder Starweave",[15602]="Elder Meadowrun",[15603]="Elder Nightwind",[15604]="Elder Morningdew",[15605]="Elder Riversong",[15606]="Elder Brightspear",[15607]="Elder Farwhisper",[15608]="Medivh",[15609]="Cenarion Scout Landion",[15610]="Cenarion Scout Azenel",[15611]="Cenarion Scout Jalia",[15612]="Krug Skullsplit",[15613]="Merok Longstride",[15614]="J.D. Shadesong",[15615]="Shadow Priestess Shai",[15616]="Orgrimmar Legion Grunt",[15617]="Orgrimmar Legion Axe Thrower",[15620]="Hive'Regal Hunter-Killer",[15621]="Yauj Brood",[15622]="Vekniss Borer",[15623]="Xandivious",[15624]="Forest Wisp",[15625]="Twilight Corrupter",[15628]="Eranikus the Redeemed",[15629]="Nightmare Phantasm",[15630]="Spawn of Fankriss",[15631]="Spotlight",[15633]="Tyrande",[15634]="Priestess of the Moon",[15635]="Eversong Tender",[15636]="Eversong Green Keeper",[15637]="Withered Green Keeper",[15638]="Arcane Patroller",[15641]="Amani Axe Thrower",[15642]="Amani Shadowpriest",[15643]="Amani Berserker",[15644]="Wretched Urchin",[15645]="Wretched Thug",[15647]="Mana Stalker",[15648]="Manawraith",[15649]="Feral Dragonhawk Hatchling",[15650]="Crazed Dragonhawk",[15651]="Springpaw Stalker",[15652]="Elder Springpaw",[15654]="Plaguebone Pillager",[15655]="Rotlimb Cannibal",[15656]="Angershade",[15657]="Darkwraith",[15658]="Rotlimb Marauder",[15659]="Auctioneer Jaxon",[15661]="Baby Shark",[15663]="War Effort Volunteer",[15664]="Metzen the Reindeer",[15665]="Mounted Reindeer",[15666]="Blue Qiraji Battle Tank",[15667]="Glob of Viscidus",[15668]="Grimscale Murloc",[15669]="Grimscale Oracle",[15670]="Grimscale Forager",[15675]="Auctioneer Stockton",[15676]="Auctioneer Yarly",[15677]="Auctioneer Graves",[15678]="Auctioneer Silva'las",[15679]="Auctioneer Cazarez",[15681]="Auctioneer O'reely",[15682]="Auctioneer Cain",[15683]="Auctioneer Naxxremis",[15684]="Auctioneer Tricket",[15685]="Southsea Kidnapper",[15686]="Auctioneer Rhyker",[15687]="Moroes",[15688]="Terestian Illhoof",[15689]="Netherspite",[15690]="Prince Malchezaar",[15691]="The Curator",[15692]="Dark Iron Kidnapper",[15693]="Jonathan the Revelator",[15694]="Stormwind Reveler",[15695]="Vek Twins Trigger",[15696]="War Effort Recruit",[15698]="Father Winter's Helper",[15699]="Tranquil Mechanical Yeti",[15700]="Warlord Gorchuk",[15701]="Field Marshal Snowfall",[15702]="Senior Sergeant Taiga",[15703]="Senior Sergeant Grimsford",[15704]="Senior Sergeant Kai'jin",[15705]="Winter's Little Helper",[15706]="Winter Reindeer",[15707]="Master Sergeant Fizzlebolt",[15708]="Master Sergeant Maclure",[15709]="Master Sergeant Moonshadow",[15710]="Tiny Snowman",[15711]="Black Qiraji Battle Tank",[15712]="Dirt Mound",[15714]="Yellow Qiraji Battle Tank",[15715]="Green Qiraji Battle Tank",[15716]="Red Qiraji Battle Tank",[15718]="Ouro Scarab",[15719]="Thunder Bluff Reveler",[15720]="Timbermaw Ancestor",[15721]="Mechanical Greench",[15722]="Squire Leoren Mal'derath",[15723]="Booty Bay Reveler",[15724]="Drunken Bruiser",[15725]="Claw Tentacle",[15726]="Eye Tentacle",[15727]="C'Thun",[15728]="Giant Claw Tentacle",[15730]="Pat's Snowcloud Guy",[15731]="Darnassus Commendation Officer",[15732]="Wonderform Operator",[15733]="Gnomeregan Commendation Officer",[15734]="Ironforge Commendation Officer",[15735]="Stormwind Commendation Officer",[15736]="Orgrimmar Commendation Officer",[15737]="Darkspear Commendation Officer",[15738]="Undercity Commendation Officer",[15739]="Thunder Bluff Commendation Officer",[15740]="Colossus of Zora",[15741]="Colossus of Regal",[15742]="Colossus of Ashi",[15743]="Colossal Anubisath Warbringer",[15744]="Imperial Qiraji Destroyer",[15745]="Greatfather Winter's Helper",[15746]="Great-father Winter's Helper",[15747]="Qiraji Captain",[15748]="Lesser Anubisath Warbringer",[15749]="Lesser Silithid Flayer",[15750]="Qiraji Major",[15751]="Anubisath Warbringer",[15752]="Silithid Flayer",[15753]="Qiraji Brigadier General",[15754]="Greater Anubisath Warbringer",[15756]="Greater Silithid Flayer",[15757]="Qiraji Lieutenant General",[15758]="Supreme Anubisath Warbringer",[15759]="Supreme Silithid Flayer",[15760]="Winter Reveler",[15761]="Officer Vu'Shalay",[15762]="Officer Lunalight",[15763]="Officer Porterhouse",[15764]="Officer Ironbeard",[15765]="Officer Redblade",[15766]="Officer Maloof",[15767]="Officer Thunderstrider",[15768]="Officer Gothena",[15769]="Resonating Crystal",[15770]="Greater Resonating Crystal",[15771]="Major Resonating Crystal",[15778]="Mouth Tentacle Mount Visual",[15780]="Human Male Winter Reveler",[15781]="Human Female Winter Reveler",[15787]="Goblin Female Winter Reveler",[15797]="Colossus Researcher Sophia",[15798]="Colossus Researcher Nestor",[15799]="Colossus Researcher Eazel",[15800]="Exit Trigger",[15801]="GONG BOY DND DNR",[15802]="Flesh Tentacle",[15803]="Tranquil Air Totem",[15804]="Lesser Resonating Crystal",[15805]="Minor Resonating Crystal",[15806]="Qiraji Lieutenant",[15807]="Minor Anubisath Warbringer",[15808]="Minor Silithid Flayer",[15810]="Eroded Anubisath Warbringer",[15811]="Faltering Silithid Flayer",[15812]="Qiraji Officer",[15813]="Qiraji Officer Zod",[15814]="Qiraji Lieutenant Jo-rel",[15815]="Qiraji Captain Ka'ark",[15816]="Qiraji Major He'al-ie",[15817]="Qiraji Brigadier General Pax-lish",[15818]="Lieutenant General Nokhor",[15839]="Might of Kalimdor Grunt",[15840]="Might of Kalimdor Sergeant",[15841]="Might of Kalimdor Lieutenant",[15842]="Might of Kalimdor Mage",[15843]="Might of Kalimdor Priest",[15844]="Might of Kalimdor Restorer",[15845]="Might of Kalimdor Captain",[15846]="Might of Kalimdor Archer",[15847]="Might of Kalimdor Shaman",[15848]="Might of Kalimdor Infantry",[15849]="Might of Kalimdor Druid",[15850]="Might of Kalimdor Skirmisher",[15851]="Might of Kalimdor Marshal",[15852]="Orgrimmar Elite Shieldguard",[15853]="Orgrimmar Elite Infantryman",[15854]="Orgrimmar Elite Cavalryman",[15855]="Tauren Rifleman",[15856]="Tauren Primalist",[15857]="Stormwind Cavalryman",[15858]="Stormwind Infantry",[15859]="Stormwind Archmage",[15860]="Kaldorei Marksman",[15861]="Ironforge Infantryman",[15862]="Ironforge Cavalryman",[15863]="Darkspear Shaman",[15864]="Valadar Starsong",[15865]="Might of Kalimdor Major",[15866]="Commander Lynore Windstryke",[15867]="Might of Kalimdor Archmage",[15868]="Highlord Leoric Von Zeldig",[15869]="Malagav the Tactician",[15870]="Duke August Foehammer",[15871]="Elder Bronzebeard",[15872]="Pat's Firework Cluster Guy (BLUE)",[15873]="Pat's Firework Cluster Guy (RED)",[15874]="Pat's Firework Cluster Guy (GREEN)",[15878]="Warcaller Finster",[15879]="Pat's Firework Guy - BLUE",[15880]="Pat's Firework Guy - GREEN",[15882]="Pat's Firework Guy - RED",[15883]="Pat's Firework Guy - YELLOW",[15884]="Pat's Firework Guy - WHITE",[15885]="Pat's Firework Guy - BLUE BIG",[15886]="Pat's Firework Guy - GREEN BIG",[15887]="Pat's Firework Guy - PURPLE BIG",[15888]="Pat's Firework Guy - RED BIG",[15889]="Pat's Firework Guy - WHITE BIG",[15890]="Pat's Firework Guy - YELLOW BIG",[15891]="Lunar Festival Herald",[15892]="Lunar Festival Emissary",[15893]="Lunar Firework Credit Marker",[15894]="Lunar Cluster Credit Marker",[15895]="Lunar Festival Harbinger",[15896]="C'Thun Portal",[15897]="Large Spotlight",[15898]="Lunar Festival Vendor",[15901]="Vanquished Tentacle",[15902]="Giant Spotlight",[15903]="Sergeant Carnes",[15904]="Tentacle Portal",[15905]="Darnassus Reveler",[15906]="Ironforge Reveler",[15907]="Undercity Reveler",[15908]="Orgrimmar Reveler",[15909]="Fariel Starsong",[15910]="Giant Tentacle Portal",[15911]="Pat's Firework Cluster Guy (BLUE BIG)",[15912]="Pat's Firework Cluster Guy (GREEN BIG)",[15914]="Pat's Firework Cluster Guy (RED BIG)",[15917]="Lunar Festival Reveler",[15918]="Pat's Firework Cluster Guy (ELUNE)",[15919]="Jade Owl",[15920]="Hathvelion Sungaze",[15921]="Captain Kelisendra",[15923]="Golden Hare",[15924]="Apprentice Loralthalis",[15925]="Toxic Slime",[15926]="Black Pearl Panther",[15927]="Truesilver Crab",[15928]="Thaddius",[15929]="Stalagg",[15930]="Feugen",[15931]="Grobbulus",[15932]="Gluth",[15933]="Poison Cloud",[15934]="Hive'Zara Hornet",[15935]="Truesilver Boar",[15936]="Heigan the Unclean",[15937]="Mmmrrrggglll",[15938]="Eversong Ranger",[15939]="Ranger Degolien",[15940]="Ranger Selron",[15941]="Apprentice Ralen",[15942]="Ranger Sareyn",[15944]="Ruby Serpent",[15945]="Apprentice Meledor",[15946]="Apprentice Veya",[15948]="Emerald Owl",[15949]="Thaelis the Hungerer",[15950]="Grimscale Seer",[15951]="Magister Duskwither",[15952]="Maexxna",[15953]="Grand Widow Faerlina",[15954]="Noth the Plaguebringer",[15955]="Black Diamond Crab",[15956]="Anub'Rekhan",[15957]="Ouro Spawner",[15958]="Gharsul the Remorseless",[15959]="Dark Iron Scorpid",[15961]="Lunar Festival Sentinel",[15962]="Vekniss Hatchling",[15963]="The Master's Eye",[15964]="Buru Egg Trigger",[15965]="Duskwither Apprentice",[15966]="Mana Serpent",[15967]="Ether Fiend",[15968]="Darnassian Scout",[15969]="Groundskeeper Wyllithen",[15970]="Instructor Antheol",[15971]="Silvermoon Apprentice",[15972]="Alterac Valley Battlemaster",[15974]="Dread Creeper",[15975]="Carrion Spinner",[15976]="Venom Stalker",[15977]="Poisonous Skitterer",[15978]="Crypt Reaver",[15979]="Tomb Horror",[15980]="Naxxramas Cultist",[15981]="Naxxramas Acolyte",[15984]="Sartura's Royal Guard",[15989]="Sapphiron",[15990]="Kel'Thuzad",[15991]="Lady Dena Kennedy",[16001]="Aldris Fourclouds",[16002]="Colara Dean",[16003]="Deathguard Tor",[16004]="Elenia Haydon",[16005]="Lieutenant Jocryn Heldric",[16006]="InCombat Trigger",[16007]="Orok Deathbane",[16008]="Temma of the Wells",[16009]="Tormek Stoneriver",[16011]="Loatheb",[16012]="Mokvar",[16013]="Deliana",[16014]="Mux Manascrambler",[16015]="Vi'el",[16016]="Anthion Harmon",[16017]="Patchwork Golem",[16018]="Bile Retcher",[16019]="Boorana Thunderhoof",[16020]="Mad Scientist",[16021]="Living Monstrosity",[16022]="Surgical Assistant",[16024]="Embalming Slime",[16025]="Stitched Giant",[16027]="Living Poison",[16028]="Patchwerk",[16029]="Sludge Belcher",[16030]="Maggot",[16031]="Ysida Harmon",[16032]="Falrin Treeshaper",[16033]="Bodley",[16034]="Plague Beast",[16036]="Frenzied Bat",[16037]="Plagued Bat",[16042]="Lord Valthalak",[16043]="Magma Lord Bokk",[16044]="Mor Grayhoof Trigger",[16045]="Isalien Trigger",[16046]="Jarien and Sothos Trigger",[16047]="Kormok Trigger",[16048]="Lord Valthalak Trigger",[16049]="Lefty",[16050]="Rotfang",[16051]="Snokh Blackspine",[16052]="Malgen Longspear",[16053]="Korv",[16054]="Rezznik",[16055]="Va'jashni",[16056]="Diseased Maggot",[16057]="Rotting Maggot",[16058]="Volida",[16059]="Theldren",[16060]="Gothik the Harvester",[16061]="Instructor Razuvious",[16062]="Highlord Mograine",[16063]="Sir Zeliek",[16064]="Thane Korth'azz",[16065]="Lady Blaumeux",[16066]="Spectral Assassin",[16067]="Deathcharger Steed",[16068]="Larva",[16069]="Gurky",[16070]="Garel Redrock",[16072]="Tidelord Rrurgaz",[16073]="Spirit of Lord Valthalak",[16075]="Kwee Q. Peddlefeet",[16076]="Tharl Stonebleeder",[16078]="Unkillable Fixed Damage Test Dummy",[16079]="Theldren Trigger",[16080]="Mor Grayhoof",[16082]="Naxxramas Trigger",[16085]="Peddlefeet",[16089]="Omar the Test Dragon",[16090]="Rousch",[16091]="Dirk Thunderwood",[16092]="Silithis Teleporter",[16093]="Spectral Stalker",[16094]="Durik",[16095]="Gnashjaw",[16096]="Steamwheedle Bruiser",[16097]="Isalien",[16098]="Empyrean",[16100]="Ysida's Trigger",[16101]="Jarien",[16102]="Sothos",[16103]="Spirit of Jarien",[16104]="Spirit of Sothos",[16105]="Aristan Mottar",[16106]="Evert Sorisam",[16107]="Apothecary Staffron Lerent",[16108]="Fenstad Argyle",[16109]="Mara Rennick",[16110]="Annalise Lerent",[16111]="Love Fool",[16112]="Crusade Commander Korfax",[16113]="Father Inigo Montoy",[16114]="Scarlet Commander Marjhan",[16115]="Crusade Commander Eligor Dawnbringer",[16116]="Archmage Angela Dosantos",[16117]="Plagued Swine",[16118]="Kormok",[16119]="Bone Minion",[16120]="Bone Mage",[16121]="Mortar",[16123]="Gremnik Rizzlesprang",[16124]="Unrelenting Trainee",[16125]="Unrelenting Death Knight",[16126]="Unrelenting Rider",[16127]="Spectral Trainee",[16128]="Rhonin",[16129]="Shadow Fissure",[16131]="Rohan the Assassin",[16132]="Huntsman Leopold",[16133]="Mataus the Wrathcaster",[16134]="Rimblat Earthshatter",[16135]="Rayne",[16136]="Necrotic Shard",[16137]="Naxxramas Military Sub-Boss Trigger",[16139]="Cenarion Hold Reservist",[16141]="Ghoul Berserker",[16142]="Bile Sludge",[16143]="Shadow of Doom",[16144]="Lord Saltheril",[16145]="Death Knight Captain",[16146]="Death Knight",[16147]="Elisara Sunstriker",[16148]="Spectral Death Knight",[16149]="Spectral Horse",[16150]="Spectral Rider",[16151]="Midnight",[16152]="Attumen the Huntsman",[16153]="Berthold",[16154]="Risen Squire",[16156]="Dark Touched Warrior",[16157]="Doom Touched Warrior",[16158]="Death Touched Warrior",[16159]="Calliard",[16160]="Magistrix Eredania",[16161]="Arcanist Sheynathren",[16162]="Wretched Hooligan",[16163]="Death Knight Cavalier",[16164]="Shade of Naxxramas",[16165]="Necro Knight",[16166]="Theldren Kill Credit",[16167]="Bony Construct",[16168]="Stoneskin Gargoyle",[16169]="Hastings",[16170]="Coldmist Stalker",[16171]="Coldmist Widow",[16172]="Damaged Necrotic Shard",[16173]="Shadowbat",[16174]="Greater Shadowbat",[16175]="Vampiric Shadowbat",[16176]="Shadowbeast",[16177]="Dreadbeast",[16178]="Phase Hound",[16179]="Hyakiss the Lurker",[16180]="Shadikith the Glider",[16181]="Rokad the Ravager",[16183]="Courier Dawnstrider",[16184]="Nerubian Overseer",[16185]="Anathos",[16186]="Vara",[16187]="Quartermaster Lymel",[16189]="Skymaster Sunwing",[16191]="Sathren Azuredawn",[16192]="Skymistress Gloaming",[16193]="Skeletal Smith",[16194]="Unholy Axe",[16196]="Apothecary Thedra",[16197]="Arcanist Vandril",[16198]="Apothecary Renzithen",[16199]="Magister Darenis",[16200]="Deathstalker Rathiel",[16201]="Geranis Whitemorn",[16202]="Farstrider Sedina",[16203]="Ranger Vynna",[16204]="Magister Idonis",[16205]="Magistrix Aminel",[16206]="Apprentice Varnis",[16208]="Apothecary Enith",[16209]="Ranger Vedoran",[16210]="Magistrix Landra Dawnstrider",[16211]="Naxxramas Combat Dummy",[16212]="Dispatch Commander Metz",[16213]="Ranger Lethvalin",[16215]="Unholy Staff",[16216]="Unholy Swords",[16217]="Lieutenant Tomathren",[16218]="Tesla Coil",[16219]="Ranger Valanna",[16220]="Captain Helios",[16221]="Silvermoon Guardian",[16222]="Silvermoon City Guardian",[16224]="Rathis Tomber",[16225]="Pack Mule",[16226]="Guard Didier",[16227]="Bragok",[16228]="Argent Dawn Infantry",[16229]="Injured Argent Dawn Infantry",[16230]="Cultist Engineer",[16231]="Dame Auriferous",[16232]="Caravan Mule",[16236]="Eye Stalk",[16237]="Magister Sylastor",[16238]="Night Elf Ambusher",[16239]="Magister Kaendris",[16240]="Arcanist Janeda",[16241]="Argent Recruiter",[16242]="Tranquillien Scout",[16243]="Plague Slime",[16244]="Infectious Ghoul",[16245]="Luzran",[16246]="Knucklerot",[16247]="Borgoth the Bloodletter",[16248]="Jurion the Deceiver",[16249]="Masophet the Black",[16250]="Mirdoran the Fallen",[16251]="Deathstalker Maltendis",[16252]="High Executor Mavren",[16253]="Master Chef Mouldier",[16254]="Field Marshal Chambers",[16255]="Argent Scout",[16256]="Jessica Chambers",[16257]="Geron",[16258]="Farsil",[16259]="Sheri",[16260]="Areyn",[16261]="Sathiel",[16262]="Landraelanis",[16263]="Paelarin",[16264]="Winaestra",[16266]="Celoenus",[16267]="Daestra",[16268]="Eralan",[16269]="Garridel",[16270]="Hannovia",[16271]="Telenus",[16272]="Kanaria",[16273]="Mathreyn",[16274]="Narina",[16275]="Noellene",[16276]="Ponaris",[16277]="Quarelestra",[16278]="Sathein",[16279]="Tannaria",[16280]="Perascamin",[16281]="Keeper of the Rolls",[16283]="Packmaster Stonebruiser",[16284]="Argent Medic",[16285]="Argent Emissary",[16286]="Spore",[16287]="Ambassador Sunsorrow",[16288]="Advisor Sorrelon",[16289]="Advisor Valwyn",[16290]="Irradiated Slime",[16291]="Magister Quallestis",[16292]="Aquantion",[16293]="Apprentice Shatharia",[16294]="Aldaron the Reckless",[16295]="Ranger Lilatha",[16297]="Mutated Grub",[16298]="Spectral Soldier",[16299]="Skeletal Shocktrooper",[16300]="Risen Creeper",[16301]="Risen Hungerer",[16302]="Risen Stalker",[16303]="Dreadbone Skeleton",[16304]="Arcane Devourer",[16305]="Dreadbone Sentinel",[16306]="Scourge Invasion Minion spawner Ghost/Ghoul",[16307]="Deathcage Scryer",[16308]="Deathcage Sorcerer",[16309]="Gangled Cannibal",[16310]="Mana Shifter",[16311]="Phantasmal Watcher",[16313]="Nerubis Guard",[16314]="Fallen Ranger",[16315]="Deatholme Acolyte",[16316]="Stonewing Tracker",[16317]="Deatholme Necromancer",[16318]="Deatholme Darkmage",[16319]="Nerubis Centurion",[16320]="Eye of Dar'Khan",[16321]="Wailer",[16322]="Gangled Flesheater",[16323]="Phantasmal Seeker",[16324]="Stonewing Slayer",[16325]="Quel'dorei Ghost",[16326]="Quel'dorei Wraith",[16327]="Ravening Apparition",[16328]="Vengeful Apparition",[16329]="Dar'Khan Drathir",[16330]="Sentinel Spy",[12794]="Stone Guard Zarg",[12794]="Stone Guard Zarg",[18525]="G'eras",[19044]="Gruul the Dragonkiller",[15690]="Prince Malchezaar",[12795]="First Sergeant Hola'mahi",[12784]="Lieutenant Jackspring",[18831]="High King Maulgar",[12785]="Sergeant Major Clate",[17225]="Nightbane",[22917]="Illidan Stormrage",[17257]="Magtheridon",[17798]="Warlord Kalithresh",[12792]="Lady Palanseer",[17711]="Doomwalker",[21432]="Almaador",[1448]="Neal Allen",[16808]="Warchief Kargath Bladefist",[17942]="Quagmirran",[16117]="Plagued Swine",[17904]="Fedryen Swiftspear",[15687]="Moroes",[9298]="Donova Snowden",[12777]="Captain Dirgehammer",[18708]="Murmur",[19220]="Pathaleon the Calculator",[18728]="Doom Lord Kazzak",[19331]="Quartermaster Enuril",[17199]="Ravager Specimen",[21643]="Alurmi",[15689]="Netherspite",[21655]="Nakodu",[17527]="Enraged Ravager",[16152]="Attumen the Huntsman",[4229]="Mythrin'dir",[22123]="Rip-Blade Ravager",[17377]="Keli'dan the Breaker",[17881]="Aeonus",[19622]="Kael'thas Sunstrider",[12919]="Nat Pagle",[18096]="Epoch Hunter",[19321]="Quartermaster Endarin",[10738]="High Chief Winterfall",[18473]="Talon King Ikiss",[17308]="Omor the Unscarred",[17977]="Warp Splinter",[25315]="Kil'jaeden",[4561]="Daniel Bartlett",[15691]="The Curator",[17306]="Watchkeeper Gargolmar",[23381]="Tydormu",[4877]="Jandia",[17657]="Logistics Officer Ulrike",[16524]="Shade of Aran",[16181]="Rokad the Ravager",[15688]="Terestian Illhoof",[2626]="Old Man Heming",[12022]="Lorelae Wintersong",[17585]="Quartermaster Urgronn",[16457]="Maiden of Virtue",[21212]="Lady Vashj",[17252]="Felguard",[27722]="Drolig Blastpipe",[18733]="Fel Reaver",[17381]="The Maker",[23489]="Drake Dealer Hurlunk",[17870]="Angered Nether-wraith",[16812]="Barnes",[17941]="Mennu the Betrayer",[20912]="Harbinger Skyriss",[17380]="Broggok",[1666]="Kam Deepfury",[18960]="Rungor",[17882]="The Black Stalker",[23035]="Anzu",[18373]="Exarch Maladaar",[20242]="Karaaz",[12793]="Brave Stonehide",[14754]="Kelm Hargunth",[18341]="Pandemonius",[17968]="Archimonde",[17537]="Vazruden",[14753]="Illiyana Moonblaze",[12781]="Master Sergeant Biggins",[16807]="Grand Warlock Nethekurse",[644]="Rhahk'Zor",[20241]="Provisioner Nasela",[3914]="Rethilgore",[19778]="Farii",[18382]="Mycah",[22930]="Yor",[20791]="Iorioa",[22037]="Smith Gorlunk",[18667]="Blackheart the Inciter",[18371]="Shirrak the Dead Watcher",[22113]="Mordenai",[14581]="Sergeant Thunderhorn",[18105]="Ghaz'an",[16932]="Razorfang Hatchling",[6906]="Baelog",[4424]="Aggem Thorncurse",[8137]="Gikkix",[21838]="Terokk",[20240]="Trader Narasu",[18775]="Lebowski",[18772]="Hama",[17423]="Harbinger Mikolaas",[13219]="Jekyll Flandring",[19516]="Void Reaver",[18731]="Ambassador Hellmaw",[18344]="Nexus-Prince Shaffar",[18756]="Haris Pilton",[19514]="Al'ar",[3671]="Lady Anacondra",[20885]="Dalliah the Doomsayer",[23385]="Simon Unit",[20500]="Olrokk",[15989]="Sapphiron",[22213]="Gidge Spellweaver",[13217]="Thanthaldis Snowgleam",[7867]="Thorkaf Dragoneye",[20511]="Ilsa Blusterbrew",[17909]="Lauranna Thar'well",[12782]="Captain O'Neal",[10435]="Magistrate Barthilas",[13216]="Gaelden Hammersmith",[19775]="Kalinda",[21217]="The Lurker Below",[19052]="Lorokeem",[6487]="Arcanist Doan",[23863]="Zul'jin",[22208]="Nasmara Moonsong",[18990]="Burko",[18911]="Juno Dufrain",[10920]="Kelek Skykeeper",[3977]="High Inquisitor Whitemane",[20616]="Asuur",[19189]="Quillfang Skitterer",[20807]="Inscriber Saalyn",[17770]="Hungarfen",[21215]="Leotheras the Blind",[17521]="The Big Bad Wolf",[18478]="Avatar of the Martyred",[18584]="Sal'salabim",[24664]="Kael'thas Sunstrider",[3954]="Dalria",[18166]="Khadgar",[27668]="Ontok Shatterhorn",[20080]="Galgrom",[18343]="Tavarok",[15126]="Rutherford Twing",[18805]="High Astromancer Solarian",[18411]="Durn the Hungerer",[16819]="Force Commander Danath Trollbane",[9938]="Magmus",[17880]="Temporus",[22212]="Andrion Darkspinner",[17975]="High Botanist Freywinn",[15550]="Attumen the Huntsman",[18749]="Dalinna",[20097]="Nula the Butcher",[19252]="High Enchanter Bardolan",[3976]="Scarlet Commander Mograine",[19004]="Vodesiin",[22871]="Teron Gorefiend",[18467]="Dreadfang Widow",[15127]="Samuel Hawke",[21216]="Hydross the Unstable",[15990]="Kel'Thuzad",[639]="Edwin VanCleef",[18338]="Highlord Kruul",[3983]="Interrogator Vishas",[15501]="Aleinia",[16246]="Knucklerot",[11878]="Nathanos Blightcaller",[17301]="Shattered Hand Executioner",[2381]="Micha Yance",[12043]="Kulwia",[16097]="Isalien",[12796]="Raider Bork",[18168]="The Crone",[18773]="Johan Barnes",[18802]="Alchemist Gribble",[21465]="David Wayne",[18753]="Felannia",[22323]="Incandescent Fel Spark",[19942]="Agent Proudwell",[19284]="Invading Felguard",[11189]="Qia",[17808]="Anetheron",[25741]="M'uru",[16934]="Quillfang Ravager",[18472]="Darkweaver Syth",[16179]="Hyakiss the Lurker",[25032]="Eldara Dawnrunner",[7866]="Peter Galen",[24882]="Brutallus",[21213]="Morogrim Tidewalker",[8836]="Battle Chicken",[17991]="Rokmar the Crackler",[12783]="Lieutenant Karter",[2810]="Hammon Karwn",[3673]="Lord Serpentis",[17826]="Swamplord Musel'ek",[20096]="Uriku",[20124]="Kradu Grimblade",[7441]="Winterfall Totemic",[4275]="Archmage Arugal",[14567]="Derotain Mudsipper",[19213]="Eiin",[642]="Sneed's Shredder",[3670]="Lord Pythas",[19662]="Aaron Hollman",[3975]="Herod",[20749]="Scalewing Serpent",[17796]="Mekgineer Steamrigger",[22947]="Mother Shahraz",[12201]="Princess Theradras",[22242]="Bash'ir Spell-Thief",[13218]="Grunnda Wolfheart",[18531]="Magistrix Fyalenn",[21214]="Fathom-Lord Karathress",[2805]="Deneb Walker",[18751]="Kalaen",[16809]="Warbringer O'mrogg",[4421]="Charlga Razorflank",[18697]="Chief Engineer Lorthander",[4542]="High Inquisitor Fairbanks",[20278]="Vixton Pinchwhistle",[2748]="Archaedas",[16588]="Apothecary Antonivich",[19191]="Arazzius the Cruel",[17613]="Archmage Alturus",[18774]="Tatiana",[17534]="Julianne",[5992]="Ashmane Boar",[18752]="Zebig",[18180]="Hemet Nesingwary",[20136]="Sunfury Researcher",[23026]="Twilight Serpent",[19063]="Hamanar",[19663]="Madame Ruby",[21183]="Oronok Torn-heart",[27703]="Ysuria",[19952]="Bloodmaul Geomancer",[19837]="Daga Ramba",[4752]="Kildar",[6546]="Tabetha",[3653]="Kresh",[17536]="Nazan",[17558]="Caza'rez",[12380]="Unliving Resident",[25038]="Felmyst",[22898]="Supremus",[20510]="Brunn Flamebeard",[23872]="Coren Direbrew",[19298]="Warbringer Arix'Amal",[17842]="Azgalor",[18732]="Grandmaster Vorpil",[6908]="Olaf",[21061]="Enraged Fire Spirit",[731]="King Bangalash",[18853]="Sunfury Bloodwarder",[9019]="Emperor Dagran Thaurissan",[19219]="Mechano-Lord Capacitus",[10184]="Onyxia",[4543]="Bloodmage Thalnos",[24393]="The Rokk",[19221]="Nethermancer Sepethrea",[18537]="Adyen the Lightwarden",[5828]="Humar the Pridelord",[19349]="Thornfang Ravager",[7868]="Sarah Tanner",[22310]="Storming Wind-Ripper",[10440]="Baron Rivendare",[8125]="Dirge Quikcleave",[17637]="Mack Diver",[16933]="Razorfang Ravager",[20514]="Searing Elemental",[21302]="Shadow Council Warlock",[22948]="Gurtogg Bloodboil",[7800]="Mekgineer Thermaplugg",[3654]="Mutanus the Devourer",[20886]="Wrath-Scryer Soccothrates",[23054]="Kael'thas Sunstrider",[16583]="Rohok",[17797]="Hydromancer Thespia",[7232]="Borgus Steelhand",[17518]="Ythyar",[24850]="Kalecgos",[9736]="Quartermaster Zigris",[17767]="Rage Winterchill",[16180]="Shadikith the Glider",[17591]="Blood Elf Bandit",[7869]="Brumn Winterhoof",[20084]="Image of Nexus-Prince Haramad",[11191]="Lilith the Lithe",[18867]="Mana Seeker",[18877]="Nether Drake",[4420]="Overlord Ramtusk",[4494]="Scarlet Spellbinder",[1285]="Thurman Mullby",[12225]="Celebras the Cursed",[17533]="Romulo",[6109]="Azuregos",[11178]="Borgosh Corebender",[21060]="Enraged Air Spirit",[19227]="Griftah",[18257]="Gutripper",[17848]="Lieutenant Drake",[16151]="Midnight",[13476]="Balai Lok'Wein",[19074]="Skreah",[18695]="Ambassador Jerrikar",[19521]="Arrond",[16773]="Handiir",[23163]="Gezzarak the Huntress",[3955]="Shandrina",[11492]="Alzzin the Wildshaper",[19296]="Innkeeper Biribi",[14436]="Mor'zul Bloodbringer",[18484]="Wind Trader Lathrai",[7870]="Caryssia Moonhunter",[16816]="Echo of Medivh",[20880]="Eredar Deathbringer",[3974]="Houndmaster Loksey",[22311]="Raging Fire-Soul",[19772]="Spirit Sage Gartok",[23029]="Talonsworn Forest-Rager",[21905]="Veynna Dawnstar",[17879]="Chrono Lord Deja",[24560]="Priestess Delrissa",[15608]="Medivh",[15179]="Mishta",[18776]="Rorelien",[25976]="Theremis",[7267]="Chief Ukorz Sandscalp",[9041]="Warder Stilgiss",[18255]="Apprentice Darius",[22924]="Arthorn Windsong",[18779]="Hurnak Grimmord",[9636]="Kireena",[23007]="Paulsta'ats",[14921]="Rin'wosho the Trader",[5709]="Shade of Eranikus",[4422]="Agathelos the Raging",[7358]="Amnennar the Coldbringer",[11519]="Bazzalan",[21906]="Kelara",[3230]="Nazgrel",[7947]="Vivianna",[5775]="Verdan the Everliving",[9237]="War Master Voone",[18481]="A'dal",[20914]="Aalun",[23428]="Jho'nass",[19186]="Kylene",[4730]="Lelanai",[6168]="Roogug",[7456]="Winterspring Screecher",[20494]="Dama Wildmane",[18005]="Haalrun",[18747]="Krugosh",[18866]="Mageslayer",[19184]="Mildred Fletcher",[25580]="Old Man Barlo",[9451]="Scarlet Archmage",[3313]="Trak'gen",[10429]="Warchief Rend Blackhand",[7273]="Gahz'rilla",[9033]="General Angerforge",[9025]="Lord Roccor",[12236]="Lord Vyletongue",[4887]="Ghamoo-ra",[4897]="Helenia Olden",[19232]="Innkeeper Haelthol",[17634]="K. Lee Smallfry",[15419]="Kania",[2664]="Kelsey Yance",[18203]="Murkblood Raider",[7871]="Se'Jib",[643]="Sneed",[12379]="Unliving Caretaker",[17841]="Ysiel Windsinger",[4278]="Commander Springvale",[4274]="Fenrus the Devourer",[17980]="Laj",[4279]="Odo the Blindwatcher",[12258]="Razorlash",[7272]="Theka the Martyr",[2850]="Broken Tooth",[21466]="Harbinger Skyriss",[16640]="Keelen Sheets",[12377]="Wailing Spectre",[3887]="Baron Silverlaine",[17535]="Dorothee",[25840]="Entropius",[5491]="Arthur the Faithful",[12378]="Damned Soul",[1286]="Edna Mullby",[10363]="General Drakkisath",[23367]="Grella",[23128]="Master Pyreanor",[17862]="Captain Skarloc",[24239]="Hex Lord Malacrass",[22887]="High Warlord Naj'entus",[17888]="Kaz'rogal",[7275]="Shadowpriest Sezz'ziz",[24744]="Vexallus",[4829]="Aku'mai",[23386]="Gan'arg Analyzer",[416]="Imp",[19880]="Nether-Stalker Khay'ji",[21981]="Overseer Nuaar",[9816]="Pyroguard Emberseer",[4732]="Randal Hunter",[16826]="Sid Limbardi",[4832]="Twilight Lord Kelris",[3886]="Razorclaw the Butcher",[3927]="Wolf Master Nandos",[20870]="Zereketh the Unbound",[17204]="Farseer Nobundo",[7432]="Frostsaber Stalker",[4831]="Lady Sarevess",[8126]="Nixx Sprocketspring",[9018]="High Interrogator Gerstahn",[18940]="Nutral",[21315]="Ruul the Darkener",[19773]="Spirit Sage Zran",[10811]="Archivist Galford",[8983]="Golem Lord Argelmach",[9319]="Houndmaster Grebmar",[11035]="Betina Bigglezink",[9696]="Bloodaxe Worg",[20028]="Doba",[23008]="Ethereum Jailor",[1763]="Gilnid",[11146]="Ironus Coldsteel",[18261]="Lantresor of the Blade",[23326]="Nethermine Ravager",[18530]="Voren'thal the Seer",[9031]="Anub'shiah",[8443]="Avatar of Hakkar",[647]="Captain Greenskin",[20448]="Commander Ameer",[17008]="Gul'dan",[18777]="Jelena Nightsky",[10506]="Kirtonos the Herald",[21956]="Rema",[18464]="Warp Stalker",[20916]="Xerintha Ravenoak",[10813]="Balnazzar",[21797]="Ancient Shadowmoon Spirit",[18423]="Cho'war the Pillager",[18015]="Gambarinka",[21004]="Lesser Nether Drake",[27705]="Lorrin Foxfire",[20772]="Netherock",[10430]="The Beast",[20130]="Andormu",[17512]="Arred",[26352]="Big Zokk Torquewrench",[21180]="Demon Hunter Initiate",[27721]="Drelik Blastpipe",[20604]="Dugiru",[17923]="Fahssn",[19373]="Mari Stonehand",[7370]="Restless Shade",[25977]="Yrma",[22427]="Zarevhi",[9016]="Bael'Gar",[15727]="C'Thun",[13596]="Rotgrip",[21454]="Ashtongue Warrior",[3546]="Bernie Heisten",[6498]="Devilsaur",[18471]="Gurgthock",[2681]="Vilebranch Raiding Wolf",[18334]="Wild Elekk",[10436]="Baroness Anastari",[25165]="Lady Sacrolash",[13282]="Noxxion",[18398]="Brokentoe",[17132]="Clefthoof Bull",[18466]="Dreadfang Lurker",[21123]="Felsworn Scalewing",[20808]="Inscriber Veredis",[20332]="Nether Dragon",[14847]="Professor Thaddeus Paleo",[6231]="Techbot",[23426]="The Illidari Council",[18875]="Zaxxis Raider",[17976]="Commander Sarannis",[13601]="Tinkerer Gizlock",[7271]="Witch Doctor Zum'rah",[345]="Bellygrub",[2803]="Malygen",[18864]="Mana Wraith",[16274]="Narina",[4830]="Old Serra'kis",[16280]="Perascamin",[16528]="Provisioner Vredigar",[16729]="Refik",[23449]="Yuula",[15511]="Lord Kri",[11583]="Nefarian",[18417]="Altruis the Sufferer",[18991]="Aresella",[91914]="Auction House",[19554]="Dimensius the All-Devouring",[12939]="Doctor Gustaf VanHowzen",[832]="Dust Devil",[21784]="Ghostrider of Karabor",[8139]="Jabbey",[7231]="Kelgruk Bloodaxe",[7357]="Mordresh Fire Eye",[1148]="Nerrist",[7846]="Teremus the Devourer",[15510]="Fankriss the Unyielding",[25166]="Grand Warlock Alythess",[12203]="Landslide",[15192]="Anachronos",[18258]="Bach'lor",[16681]="Champion Bachi",[21050]="Enraged Earth Spirit",[25176]="Grikkin Copperspring",[18835]="Kiggler the Crazed",[5465]="Land Rager",[18750]="Shimmerscale Eel",[19350]="Thornfang Venomspitter",[6229]="Crowd Pummeler 9-60",[22950]="High Nethermancer Zerevor",[11502]="Ragnaros",[17978]="Thorngrin the Tender",[20613]="Arodis Sunblade",[645]="Cookie",[4428]="Death Speaker Jargba",[19684]="Haggard War Veteran",[25099]="Jonathan Garrett",[19575]="Qiff",[14509]="High Priest Thekal",[7795]="Hydromancer Velratha",[3669]="Lord Cobrahn",[15340]="Moam",[9568]="Overlord Wyrmthalak",[23579]="Brogg",[19784]="Coilskar Cobra",[3619]="Ghost Saber",[20555]="Goc",[5993]="Helboar",[16621]="Ileda",[12941]="Jase Farlane",[18832]="Krosh Firehand",[16249]="Masophet the Black",[16641]="Melaris",[16851]="Mirren Longbeard",[19755]="Mo'arg Weaponsmith",[646]="Mr. Smite",[11536]="Quartermaster Miranda Breechlock",[21728]="Skettis Surger",[18408]="Warden Moi'bff Jill",[17884]="Watcher Jhang",[6235]="Electrocutioner 6000",[9027]="Gorosh the Dervish",[9028]="Grizzle",[9032]="Hedrum the Creeper",[17546]="Roar",[18596]="Arcanist Adyria",[18497]="Auchenai Monk",[3123]="Bloodtalon Scythemaw",[18127]="Bog Lord",[17136]="Boulderfist Warrior",[16624]="Gelanthis",[10339]="Gyth",[1493]="Mok'rash",[23363]="Sahaak",[11737]="Stonelash Flayer",[11520]="Taragaman the Hungerer",[18672]="Thomas Yance",[18407]="Warden Bullrok",[10916]="Winterfall Runner",[10808]="Timmy the Cruel",[18581]="Alliance Field Scout",[27667]="Anwehu",[16585]="Cookie One-Eye",[4218]="Denatharion",[6243]="Gelihast",[2821]="Keena",[11176]="Krathok Moltenfist",[3436]="Kuz",[10502]="Lady Illucia Barov",[24868]="Niobe Whizzlespark",[16275]="Noellene",[20673]="Swiftwing Shredder",[17584]="Torallius the Pack Handler",[9017]="Lord Incendius",[7023]="Obsidian Sentinel",[15339]="Ossirian the Unscarred",[6910]="Revelosh",[3674]="Skum",[16646]="Alamma",[16705]="Altaa",[19042]="Leeli Longhaggle",[1317]="Lucan Cordell",[12805]="Officer Areyn",[18693]="Speaker Mar'grom",[17131]="Talbuk Thorngrazer",[17307]="Vazruden the Herald",[21801]="Vhel'kur",[18011]="Zurai",[23574]="Akil'zon",[8127]="Antu'sul",[20923]="Blood Guard Porung",[7291]="Galgann Firehammer",[4854]="Grimlok",[9537]="Hurley Blackbreath",[19940]="Apex",[5493]="Arnold Leland",[18771]="Brumman",[23324]="Crazed Murkblood Miner",[1853]="Darkmaster Gandling",[18987]="Gaston",[15194]="Hermit Ortell",[23139]="Overlord Mor'ghor",[10741]="Sian-Rotam",[19038]="Supply Officer Mills",[24688]="Wretched Skulker",[16782]="Yatheon",[7057]="Digmaster Shovelphlange",[7361]="Grubbis",[9499]="Plugger Spazzring",[10439]="Ramstein the Gorger",[8580]="Atal'alarion",[16973]="Bonestripper Vulture",[20981]="Dealer Najeeb",[21042]="Dire Raven",[1346]="Georgio Bolero",[12197]="Glordrum Steelbeard",[1842]="Highlord Taelan Fordring",[18670]="Ironjaw",[16388]="Koren",[12944]="Lokhtos Darkbargainer",[16829]="Magus Zabraxis",[16253]="Master Chef Mouldier",[23051]="Monstrous Kaliri",[19201]="Mountain Gronn",[22357]="Reth'hedron the Subduer",[4499]="Rok'Alim the Pounder",[21864]="Scorchshell Pincer",[14890]="Taerar",[66]="Tharynn Bouden",[17578]="Training Dummy",[14026]="Trigger Guse",[21979]="Val'zareq the Conqueror",[17894]="Windcaller Claw",[9196]="Highlord Omokk",[7796]="Nekrum Gutchewer",[10584]="Urok Doomhowl",[7079]="Viscous Fallout",[15306]="Bor Wildmane",[21032]="Dreadwing",[20407]="Farseer Umbrua",[10812]="Grand Crusader Dathrohan",[11518]="Jergosh the Invoker",[11036]="Leonid Barthalomew the Revered",[12397]="Lord Kazzak",[23140]="Taskmaster Varkule Dragonbreath",[25139]="[PH] Bri's Test NPC",[9156]="Ambassador Flamelash",[7206]="Ancient Stone Keeper",[22181]="Aether Ray",[10917]="Aurius",[18836]="Blindeye the Seer",[18089]="Bloodscale Slavedriver",[20986]="Dealer Tariq",[5885]="Deino",[7445]="Elder Shardtooth",[18898]="Explodyne Fizzlespurt",[16290]="Fallout Slime",[4329]="Firemane Scout",[16823]="Humphry",[4614]="Martha Alliestar",[17468]="Prophet Velen",[22100]="Scorpid Bonecrawler",[20634]="Scythetooth Raptor",[23230]="Shartuul",[25046]="Smith Hauthaa",[11033]="Smokey LaRue",[10267]="Tinkee Steamboil",[22298]="Vile Fire-Soul",[12033]="Wulan",[15516]="Battleguard Sartura",[23420]="Essence of Anger",[22841]="Shade of Akama",[17547]="Tinhead",[11073]="Annora",[19540]="Asarnan",[989]="Banalash",[18988]="Baxter",[1716]="Bazil Thredd",[20138]="Culuthas",[19678]="Fantei",[24780]="Field Repair Bot 110G",[15079]="Fishbot 5000",[18265]="Gezhe",[17717]="Knight-Lord Bloodvalor",[16802]="Lor'themar Theron",[12902]="Lorgus Jett",[3499]="Ranik",[14031]="Trigger Vipore",[22429]="Vekax",[921]="Venture Co. Lumberjack",[18124]="Withered Giant",[23578]="Jan'alai",[10438]="Maleki the Pallid",[17582]="-",[23267]="Arvoar the Rapacious",[23391]="Bash'ir",[17269]="Bleeding Hollow Darkcaster",[17014]="Collapsing Voidwalker",[3110]="Dreadmaw Crocolisk",[17885]="Earthbinder Rayge",[7572]="Fallen Hero of the Horde",[16657]="Feera",[8567]="Glutton",[2351]="Gray Bear",[12042]="Loganaar",[16042]="Lord Valthalak",[16755]="Lunaraa",[17157]="Shattered Rumbler",[19707]="Sunfury Archer",[15206]="The Duke of Cynders",[7132]="Toxic Horror",[3692]="Volcor",[7442]="Winterfall Pathfinder",[18858]="Wrathbringer",[17830]="Zelemar the Wrathful",[7952]="Zjolnir",[9056]="Fineous Darkvire",[7228]="Ironaya",[11032]="Malor the Zealous",[9543]="Ribbly Screwspigot",[9236]="Shadow Hunter Vosh'gajin",[10516]="The Unforgiven",[21700]="Akama",[2806]="Bale",[12876]="Baron Aquanis",[19536]="Dealer Jadyan",[23572]="Drazzit Dripvalve",[19796]="Eclipsion Archmage",[18723]="Erozion",[7433]="Frostsaber Huntress",[7097]="Ironbeak Owl",[7109]="Jadefire Felsworn",[4753]="Jartsam",[5286]="Longtooth Runner",[14368]="Lorekeeper Lydros",[3362]="Ogunaro Wolfrunner",[23159]="Okuno",[4158]="Salt Flats Vulture",[14682]="Sever",[10737]="Shy-Rotam",[18882]="Sundered Thunderer",[17205]="Temper",[1855]="Tirion Fordring",[1460]="Unger Statforth",[4731]="Zachariah Post",[10997]="Cannon Master Willey",[5710]="Jammal'an the Prophet",[10437]="Nerub'enkan",[17543]="Strawman",[2966]="Battleboar",[16663]="Belil",[1720]="Bruegal Ironknuckle",[15174]="Calandrath",[2393]="Christoph Jeffcoat",[19187]="Darmari",[15307]="Earthen Templar",[2611]="Fozruk",[22408]="Furious Nether-wraith",[154]="Greater Fleshripper",[10096]="High Justice Grimstone",[5353]="Itharius",[10503]="Jandice Barov",[26089]="Kayri",[16245]="Luzran",[20159]="Magister Aledis",[1696]="Targorr the Dread",[17359]="Tel'athion the Impure",[18870]="Voidshrieker",[18064]="Warmaul Shaman",[24222]="Windy Cloud",[7440]="Winterfall Den Watcher",[5721]="Dreamscythe",[11501]="King Gordok",[16943]="Cyber-Rage Forgelord",[14889]="Emeriss",[23100]="Flawless Arcane Elemental",[5713]="Gasher",[23873]="Goreclaw the Ravenous",[547]="Great Goretusk",[15350]="Horde Warbringer",[16118]="Kormok",[14846]="Lhara",[17160]="Living Cyclone",[3332]="Lumak",[25042]="Magisters' Terrace - Scryer Quest Bunny",[11278]="Magnus Frostwake",[18212]="Mudfin Frenzy",[2447]="Narillasanz",[14389]="Netherwalker",[11517]="Oggleflint",[20215]="Pentatharon",[10200]="Rak'shiri",[14822]="Sayge",[18683]="Voidhunter Yar",[19401]="Wing Commander Brack",[10220]="Halycon",[9030]="Ok'thor the Breaker",[7797]="Ruuzlu",[15263]="The Prophet Skeram",[3032]="Beram Skychaser",[18983]="Blackfang Tarantula",[18817]="Chief Researcher Kartos",[10667]="Chromie",[18461]="Dampscale Basilisk",[16329]="Dar'Khan Drathir",[1103]="Eldrin",[12097]="Frostwolf Quartermaster",[18834]="Olm the Summoner",[7996]="Qiaga the Keeper",[14693]="Scorn",[18597]="Sha'nir",[14358]="Shen'dralar Ancient",[3494]="Tinkerwiz",[18262]="Unkor the Ruthless",[17150]="Vir'aani Arcanist",[18465]="Warp Hunter",[15498]="Windcaller Yessendra",[16813]="Wravien",[15114]="Gahz'ranka",[9024]="Pyromancer Loregrain",[17548]="Tito",[5594]="Alchemist Pestlezugg",[4425]="Blind Hunter",[17271]="Bonechewer Destroyer",[5163]="Burbik Gearspanner",[5494]="Catherine Leland",[18205]="Clefthoof",[17961]="Coilfang Enchantress",[24980]="Crystal Ward",[4507]="Daisy",[17952]="Darkwater Crocolisk",[5159]="Daryl Riknussun",[12920]="Doctor Gregory Victor",[21195]="Domesticated Felboar",[3100]="Elder Mottled Boar",[18062]="Enraged Crusher",[21860]="Exarch Onaala",[21350]="Gronn-Priest",[17441]="Gurf",[715]="Hemet Nesingwary Jr.",[23437]="Indormi",[23281]="Insidion",[6382]="Jubahl Corpseseeker",[23165]="Karrog",[7363]="Kum'isha the Collector",[15305]="Lord Skwol",[22832]="Morthis Whisperwing",[680]="Mosh'Ogg Lord",[7356]="Plaguemaw the Rotting",[10477]="Scholomance Necromancer",[729]="Sin'Dall",[19935]="Soridormi",[21515]="Trachela",[14324]="Cho'Rush the Observer",[11496]="Immol'thar",[8929]="Princess Moira Bronzebeard",[5173]="Alexander Calder",[23995]="Axle",[25059]="Ayren Cloudbreaker",[6490]="Azshir the Sleepless",[15180]="Baristolth of the Shifting Sands",[6176]="Bath'rah the Windwatcher",[23286]="Black Blood of Draenor",[16644]="Botanist Nathera",[19383]="Captured Gnome",[15184]="Cenarion Hold Infantry",[18694]="Collidus the Warp-Watcher",[19538]="Dealer Senzik",[11741]="Dredge Crusher",[18538]="Ishanah",[17148]="Kil'sorrow Deathsworn",[6201]="Legashi Rogue",[3363]="Magar",[391]="Old Murk-Eye",[21499]="Overseer Ripsaw",[9166]="Pterrordax",[8177]="Rartar",[21984]="Rexxar",[22932]="Sai'kkal the Elder",[7669]="Servant of Grol",[21804]="Skettis Kaliri",[20207]="Sunfury Bowman",[21483]="Tasaldan",[5807]="The Rake",[5955]="Tooga",[17212]="Tuluun",[21251]="Underbog Colossus",[22949]="Gathios the Shatterer",[15348]="Kurinnaxx",[16011]="Loatheb",[10596]="Mother Smolderweb",[15954]="Noth the Plaguebringer",[15517]="Ouro",[21485]="Aldraan",[15351]="Alliance Brigadier General",[21402]="Anchorite Ceyla",[16952]="Anger Guard",[18754]="Barim Spilthoof",[7954]="Binjy Featherwhistle",[19995]="Bladespire Brute",[16810]="Bonechewer Backbreaker",[21662]="Cabal Tomb-Raider",[3225]="Corrupted Mottled Boar",[17158]="Dust Howler",[15652]="Elder Springpaw",[21059]="Enraged Water Spirit",[10617]="Galak Messenger",[3345]="Godan",[16229]="Injured Argent Dawn Infantry",[7107]="Jadefire Trickster",[19539]="Jazdalaad",[10509]="Jed Runewatcher",[3344]="Kardris Dreamseeker",[340]="Kendor Kabonka",[2784]="King Magni Bronzebeard",[23396]="Krixel Pinchwhistle",[11286]="Magistrate Marduke",[4461]="Murkgill Warrior",[13417]="Sagorne Creststrider",[871]="Saltscale Warrior",[18333]="Shadrek",[20142]="Steward of Time",[19576]="Xyrol",[9029]="Eviscerator",[14834]="Hakkar",[11380]="Jin'do the Hexxer",[15952]="Maexxna",[16080]="Mor Grayhoof",[12435]="Razorgore the Untamed",[4568]="Anastasia Hartwell",[18253]="Archmage Leryda",[4787]="Argent Guard Thaelrid",[3535]="Blackmoss the Fetid",[21451]="Bone Wastes - Event Trigger A",[19183]="Clefthoof Calf",[19768]="Coilskar Siren",[21469]="Daranelle",[16638]="Deynna",[18698]="Ever-Core the Punisher",[3056]="Ghost Howl",[5940]="Harn Longcast",[9862]="Jaedenar Legionnaire",[6200]="Legashi Satyr",[21174]="Magtheridon",[20618]="Mana Invader",[7771]="Marvon Rivetseeker",[21814]="Nether Drake Egg Bunny",[7406]="Oglethorpe Obnoticus",[10460]="Prospector Ironboot",[10508]="Ras Frostwhisper",[11622]="Rattlegore",[21311]="Rokgah Bloodgrip",[14488]="Roloch",[17414]="Shadowmoon Technician",[23789]="Smolderwing",[17159]="Storm Rager",[18881]="Sundered Rumbler",[6244]="Takar the Seer",[19254]="Warlord Dar'toon",[15732]="Wonderform Operator",[16061]="Instructor Razuvious",[23576]="Nalorakk",[18897]="King Dond",[9660]="Agnar Beastamer",[7505]="Bloodmage Drazial",[20779]="Congealed Void Horror",[21179]="Demon Hunter Supplicant",[21024]="Earthmender Torlok",[5297]="Elder Rage Scar",[18482]="Empoor",[8418]="Falla Sagewind",[23127]="Farseer Javad",[7735]="Felcular",[2249]="Ferocious Yeti",[18678]="Fulgorge",[17129]="Greater Windroc",[1717]="Hamhock",[18564]="Horde Field Scout",[10924]="Ivy Leafrunner"} diff --git a/id_to_npc_tbc.lua b/id_to_npc_tbc.lua new file mode 100644 index 00000000..e69de29b diff --git a/npc_to_id_classic.lua b/npc_to_id_classic.lua index 08fef6fa..0d399965 100644 --- a/npc_to_id_classic.lua +++ b/npc_to_id_classic.lua @@ -1 +1 @@ -npc_to_id = {["Flesh Eater"]=3,["Kobold Vermin"]=6,["Benny Questgiver"]=19,["Kanrethad"]=29,["Forest Spider"]=30,["Furbolg"]=31,["Harvest Golem"]=36,["Defias Thug"]=38,["Kobold Miner"]=40,["Mine Spider"]=43,["Murloc Forager"]=46,["Skeletal Warrior"]=48,["Lesser Succubus"]=49,["Corina Steele"]=54,["Mean Ed the Blacksmith"]=55,["Ruklar the Trapper"]=60,["Thuros Lightfingers"]=61,["Gug Fatcandle"]=62,["Peasant Woman"]=65,["Tharynn Bouden"]=66,["[UNUSED] Marlon Darnik"]=67,["Stormwind City Guard"]=68,["Diseased Timber Wolf"]=69,["[UNUSED] Lower Class Citizen"]=70,["Rankist"]=71,["[UNUSED] Antaris the Trader"]=72,["Veraina the Apothecary"]=73,["Kurran Steele"]=74,["[UNUSED] Vashaum Nightwither"]=75,["Janos Hammerknuckle"]=78,["Narg the Taskmaster"]=79,["Kobold Laborer"]=80,["[UNUSED] Luglar the Clogger"]=81,["Crazy Leonetti"]=82,["Infernal"]=89,["Sea Giant"]=90,["Rock Elemental"]=92,["Centaur"]=93,["Cutpurse"]=94,["Defias Smuggler"]=95,["Riverpaw Runt"]=97,["Riverpaw Taskmaster"]=98,["Morgaine the Sly"]=99,["Gruff Swiftbite"]=100,["Bronze Dragonspawn"]=102,["Garrick Padfoot"]=103,["Tall Strider"]=105,["Kodo Beast"]=106,["Raptor"]=107,["Green Dragonspawn"]=108,["White Dragonspawn"]=109,["Priest"]=111,["Priestess"]=112,["Stonetusk Boar"]=113,["Harvest Watcher"]=114,["Harvest Reaper"]=115,["Bandit"]=116,["Riverpaw Gnoll"]=117,["Prowler"]=118,["Longsnout"]=119,["Forest Stalker"]=120,["Defias Pathstalker"]=121,["Defias Highwayman"]=122,["Riverpaw Mongrel"]=123,["Riverpaw Brute"]=124,["Riverpaw Overseer"]=125,["Murloc Coastrunner"]=126,["Murloc Tidehunter"]=127,["Angry Programmer Tweedle Dee"]=128,["Angry Programmer Tweedle Dum"]=129,["Programmer Vendor"]=130,["[UNUSED] Small Black Dragon Whelp"]=149,["[UNUSED] Brother Milius"]=150,["Brog Hamfist"]=151,["Brother Danil"]=152,["Bethina"]=153,["Greater Fleshripper"]=154,["Goretusk"]=157,["[UNUSED] Ander the Monk"]=161,["[UNUSED] Small Child"]=165,["Morhan Coppertongue"]=167,["Murloc Warrior"]=171,["Dermot Johns"]=190,["Blue Dragonspawn"]=193,["Eagan Peltskinner"]=196,["Marshal McBride"]=197,["Khelden Bremen"]=198,["Young Fleshripper"]=199,["Rotting Horror"]=202,["Skeletal Mage"]=203,["[UNUSED] Cackle Flamebone"]=204,["Nightbane Dark Runner"]=205,["Nightbane Vile Fang"]=206,["Bone Chewer"]=210,["Splinter Fist Warrior"]=212,["Starving Dire Wolf"]=213,["Defias Night Runner"]=215,["Venom Web Spider"]=217,["Grave Robber"]=218,["Nillen Andemar"]=222,["Dan Golthas"]=223,["Gavin Gnarltree"]=225,["Morg Gnarltree"]=226,["Mabel Solaj"]=227,["Avette Fellwood"]=228,["Farmer Ray"]=232,["Farmer Saldean"]=233,["Marshal Gryan Stoutmantle"]=234,["Salma Saldean"]=235,["Farmer Furlbrow"]=237,["Verna Furlbrow"]=238,["Grimbooze Thunderbrew"]=239,["Marshal Dughan"]=240,["[UNUSED] Greeby Mudwhisker TEST"]=243,["Ma Stonefield"]=244,["Billy Maclure"]=247,["Gramma Stonefield"]=248,["Pa Maclure"]=250,["Maybell Maclure"]=251,["Tommy Joe Stonefield"]=252,["William Pestle"]=253,["Gerard Tiller"]=255,["Kobold Worker"]=257,["Joshua Maclure"]=258,["Guard Thomas"]=261,["Lord Ello Ebonlocke"]=263,["Commander Althea Ebonlocke"]=264,["Madame Eva"]=265,["Wiley the Black"]=266,["Clerk Daltry"]=267,["Sirra Von'Indi"]=268,["Role Dreuger"]=269,["Councilman Millstipe"]=270,["Ambassador Berrybuck"]=271,["Chef Grual"]=272,["Tavernkeep Smitts"]=273,["Barkeep Hann"]=274,["Whit Wantmal"]=275,["Viktori Prism'Antras"]=276,["Roberto Pupellyverbos"]=277,["Sara Timberlain"]=278,["Morgan Pestle"]=279,["Placeholder - Jasperlode Mine"]=280,["Brown Horse"]=284,["Murloc"]=285,["Placeholder - Darkhollow Mine"]=287,["Jitters"]=288,["Abercrombie"]=289,["Placeholder - Fargodeep Mine"]=290,["Placeholder Chest of Drawers"]=291,["Marshal Haggard"]=294,["Innkeeper Farley"]=295,["[UNUSED] Goodmother Jans"]=296,["Caretaker Folsom"]=297,["Young Wolf"]=299,["Zzarc' Vul"]=300,["Blind Mary"]=302,["Felsteed"]=304,["White Stallion"]=305,["Palomino"]=306,["Pinto"]=307,["Black Stallion"]=308,["Sven Yorgen"]=311,["Theocritus"]=313,["Eliza"]=314,["Stalvan Mistmantle"]=315,["[UNUSED] Brother Benthas"]=319,["Hogan Ference"]=325,["Goldtooth"]=327,["Zaldimar Wefhellt"]=328,["Earth Elemental"]=329,["Princess"]=330,["Maginor Dumas"]=331,["Master Mathias Shaw"]=332,["Gath'Ilzogg"]=334,["Singe"]=335,["Mazen Mac'Nadir"]=338,["[UNUSED] Helgor the Pugilist"]=339,["Kendor Kabonka"]=340,["Foreman Oslow"]=341,["Martie Jainrose"]=342,["Chef Breanna"]=343,["Magistrate Solomon"]=344,["Bellygrub"]=345,["Barkeep Daniels"]=346,["Grizzle Halfmane"]=347,["Zem Leeward"]=348,["Corporal Keeshan"]=349,["Peasant"]=351,["Dungar Longdrink"]=352,["Antonia Dart"]=353,["Black Wolf"]=356,["Timber Wolf"]=358,["Riding Wolf (Winter)"]=359,["Scott's Flying Mount"]=365,["Karm Ironquill"]=372,["Cog Glitzspinner"]=374,["Priestess Anetta"]=375,["High Priestess Laurena"]=376,["Priestess Josetta"]=377,["Darcy Parker"]=379,["Dockmaster Baren"]=381,["Marshal Marris"]=382,["Jason Mathers"]=383,["Katie Hunter"]=384,["Horse"]=385,["Porcine Entourage"]=390,["Old Murk-Eye"]=391,["Captain Grayson"]=392,["Markus"]=395,["Grand Magus Doane"]=397,["Boy - placeholder 05"]=399,["Stitches"]=412,["Verner Osgood"]=415,["Imp"]=416,["Felhunter"]=417,["Murloc Flesheater"]=422,["Redridge Mongrel"]=423,["Redridge Poacher"]=424,["Redridge Brute"]=426,["Dire Condor"]=428,["Shadowhide Darkweaver"]=429,["Redridge Mystic"]=430,["Shadowhide Slayer"]=431,["Shadowhide Brute"]=432,["Shadowhide Gnoll"]=433,["Rabid Shadowhide Gnoll"]=434,["Blackrock Champion"]=435,["Blackrock Shadowcaster"]=436,["Blackrock Renegade"]=437,["Blackrock Grunt"]=440,["Black Dragon Whelp"]=441,["Tarantula"]=442,["Redridge Alpha"]=445,["Redridge Basher"]=446,["Hogger"]=448,["Defias Knuckleduster"]=449,["Defias Renegade Mage"]=450,["Riverpaw Bandit"]=452,["Riverpaw Mystic"]=453,["Young Goretusk"]=454,["Murloc Minor Oracle"]=456,["Murloc Hunter"]=458,["Drusilla La Salle"]=459,["Alamar Grimm"]=460,["Demisette Cloyce"]=461,["Vultros"]=462,["Watch Captain Parker"]=464,["Barkeep Dobbins"]=465,["General Marcus Jonathan"]=466,["The Defias Traitor"]=467,["Town Crier"]=468,["Lieutenant Doren"]=469,["Mother Fang"]=471,["Fedfennel"]=472,["Morgan the Collector"]=473,["Rogue Wizard"]=474,["Kobold Tunneler"]=475,["Kobold Geomancer"]=476,["Riverpaw Outrunner"]=478,["Rusty Harvest Golem"]=480,["Defias Footpad"]=481,["Elling Trias"]=482,["Elaine Trias"]=483,["Blackrock Outrunner"]=485,["Tharil'zun"]=486,["Protector Bialon"]=487,["Protector Weaver"]=488,["Protector Dutfield"]=489,["Protector Gariel"]=490,["Quartermaster Lewis"]=491,["Watcher Bukouris"]=494,["Watcher Keefer"]=495,["Watcher Paige"]=499,["Riverpaw Scout"]=500,["Riverpaw Herbalist"]=501,["Benny Blaanco"]=502,["Lord Malathrom"]=503,["Defias Trapper"]=504,["Greater Tarantula"]=505,["Sergeant Brashclaw"]=506,["Fenros"]=507,["[UNUSED] Long Fang"]=509,["Water Elemental"]=510,["Insane Ghoul"]=511,["Murloc Netter"]=513,["Smith Argus"]=514,["Murloc Raider"]=515,["Murloc Oracle"]=517,["Yowler"]=518,["Slark"]=519,["Brack"]=520,["Lupos"]=521,["Mor'Ladim"]=522,["Thor"]=523,["Rockhide Boar"]=524,["Mangy Wolf"]=525,["Skeletal Fiend"]=531,["Nightbane Shadow Weaver"]=533,["Nefaru"]=534,["Pygmy Venom Web Spider"]=539,["Nalesette Wildbringer"]=543,["Murloc Nightcrawler"]=544,["Murloc Tidecaller"]=545,["Great Goretusk"]=547,["Murloc Minor Tidecaller"]=548,["Defias Messenger"]=550,["Rabid Dire Wolf"]=565,["Shadowhide Warrior"]=568,["Green Recluse"]=569,["Brain Eater"]=570,["Leprithus"]=572,["Foe Reaper 4000"]=573,["Naraxis"]=574,["Fire Elemental"]=575,["Watcher Ladimore"]=576,["Murloc Scout"]=578,["Shadowhide Assassin"]=579,["Redridge Drudger"]=580,["Old Blanchy"]=582,["Ambusher"]=583,["Kazon"]=584,["Bloodscalp Warrior"]=587,["Bloodscalp Scout"]=588,["Defias Pillager"]=589,["Defias Looter"]=590,["Defias Henchman"]=594,["Bloodscalp Hunter"]=595,["Brainwashed Noble"]=596,["Bloodscalp Berserker"]=597,["Defias Miner"]=598,["Marisa du'Paige"]=599,["Grimtooth"]=603,["Plague Spreader"]=604,["[UNUSED] Rabid Mrs. Whipple"]=612,["Blackrock Tracker"]=615,["Chatter"]=616,["Defias Conjurer"]=619,["Chicken"]=620,["Goblin Engineer"]=622,["Skeletal Miner"]=623,["Undead Excavator"]=624,["Undead Dynamiter"]=625,["Foreman Thistlenettle"]=626,["Black Ravager"]=628,["Elaine Carevin"]=633,["Defias Overseer"]=634,["Defias Blackguard"]=636,["Edwin VanCleef"]=639,["Goblin Woodcarver"]=641,["Sneed's Shredder"]=642,["Sneed"]=643,["Rhahk'Zor"]=644,["Cookie"]=645,["Mr. Smite"]=646,["Captain Greenskin"]=647,["Bridge Worker Trent"]=648,["Bridge Worker Dmitri"]=649,["Bridge Worker Jess"]=650,["Bridge Worker Daniel"]=651,["Bridge Worker Matthew"]=652,["Bridge Worker Alex"]=653,["Wilder Thistlenettle"]=656,["Defias Pirate"]=657,["Sten Stoutarm"]=658,["El Pollo Grande"]=659,["Bloodscalp Witch Doctor"]=660,["Jonathan Carevin"]=661,["Calor"]=663,["Benjamin Carevin"]=664,["Skullsplitter Warrior"]=667,["Skullsplitter Hunter"]=669,["Skullsplitter Witch Doctor"]=670,["Bloodscalp Headhunter"]=671,["Skullsplitter Spiritchaser"]=672,["Venture Co. Strip Miner"]=674,["Venture Co. Foreman"]=675,["Venture Co. Surveyor"]=676,["Venture Co. Tinkerer"]=677,["Mosh'Ogg Mauler"]=678,["Mosh'Ogg Shaman"]=679,["Mosh'Ogg Lord"]=680,["Young Stranglethorn Tiger"]=681,["Stranglethorn Tiger"]=682,["Young Panther"]=683,["Shadowmaw Panther"]=684,["Stranglethorn Raptor"]=685,["Lashtail Raptor"]=686,["Jungle Stalker"]=687,["Stone Maw Basilisk"]=688,["Crystal Spine Basilisk"]=689,["Cold Eye Basilisk"]=690,["Lesser Water Elemental"]=691,["Bloodscalp Axe Thrower"]=694,["Skullsplitter Axe Thrower"]=696,["Bloodscalp Shaman"]=697,["Bloodscalp Tiger"]=698,["Bloodscalp Beastmaster"]=699,["Bloodscalp Mystic"]=701,["Bloodscalp Scavenger"]=702,["General Fangore"]=703,["Ragged Timber Wolf"]=704,["Ragged Young Wolf"]=705,["Frostmane Troll Whelp"]=706,["Rockjaw Trogg"]=707,["Small Crag Boar"]=708,["Mosh'Ogg Warmonger"]=709,["Mosh'Ogg Spellcrafter"]=710,["Ardo Dirtpaw"]=711,["Redridge Thrasher"]=712,["Balir Frosthammer"]=713,["Talin Keeneye"]=714,["Hemet Nesingwary Jr."]=715,["Barnil Stonepot"]=716,["Ajeck Rouack"]=717,["Sir S. J. Erlgadin"]=718,["Rabbit"]=721,["Mosh'Ogg Butcher"]=723,["Burly Rockjaw Trogg"]=724,["Ironforge Mountaineer"]=727,["Bhag'thera"]=728,["Sin'Dall"]=729,["Tethis"]=730,["King Bangalash"]=731,["Murloc Lurker"]=732,["Sergeant Yohwa"]=733,["Corporal Bluth"]=734,["Murloc Streamrunner"]=735,["Panther"]=736,["Kebok"]=737,["Private Thorsen"]=738,["Brother Nimetz"]=739,["Adolescent Whelp"]=740,["Dreaming Whelp"]=741,["Green Wyrmkin"]=742,["Wyrmkin Dreamwalker"]=743,["Green Scalebane"]=744,["Scalebane Captain"]=745,["Elder Dragonkin"]=746,["Marsh Murloc"]=747,["Marsh Inkspewer"]=750,["Marsh Flesheater"]=751,["Marsh Oracle"]=752,["Rebel Watchman"]=754,["Lost One Mudlurker"]=755,["Skullsplitter Panther"]=756,["Lost One Fisherman"]=757,["Lost One Hunter"]=759,["Lost One Muckdweller"]=760,["Lost One Seer"]=761,["Lost One Riftseeker"]=762,["Lost One Chieftain"]=763,["Swampwalker"]=764,["Swampwalker Elder"]=765,["Tangled Horror"]=766,["Swamp Jaguar"]=767,["Shadow Panther"]=768,["Deathstrike Tarantula"]=769,["Corporal Kaleb"]=770,["Commander Felstrom"]=771,["Stranglethorn Tigress"]=772,["Krazek"]=773,["Kurzen's Agent"]=775,["Amy Davenport"]=777,["Skullsplitter Mystic"]=780,["Skullsplitter Headhunter"]=781,["Skullsplitter Scout"]=782,["Skullsplitter Berserker"]=783,["Skullsplitter Beastmaster"]=784,["Skeletal Warder"]=785,["Grelin Whitebeard"]=786,["Skeletal Healer"]=787,["Kimberly Hiett"]=789,["Karen Taylor"]=790,["Lindsay Ashlock"]=791,["Kara Adams"]=793,["Matt"]=794,["Mark"]=795,["Joshua"]=796,["Bo"]=797,["Solomon"]=798,["Kevin"]=799,["Kyle"]=800,["Eric"]=801,["Jay"]=802,["Dana"]=804,["Cameron"]=805,["John"]=806,["Lisa"]=807,["Grik'nir the Cold"]=808,["Aaron"]=810,["Jose"]=811,["Alma Jainrose"]=812,["Colonel Kurzen"]=813,["Sergeant Malthus"]=814,["Bookie Herod"]=815,["Mai'Zoth"]=818,["Servant of Ilgalar"]=819,["Scout Riell"]=820,["Captain Danuvin"]=821,["Young Forest Bear"]=822,["Sergeant Willem"]=823,["Defias Digger"]=824,["Watcher Jan"]=826,["Watcher Mocarski"]=827,["Watcher Petras"]=828,["Adlin Pridedrift"]=829,["Sand Crawler"]=830,["Sea Crawler"]=831,["Unbound Cyclone"]=832,["Coyote Packleader"]=833,["Coyote"]=834,["Durnan Furcutter"]=836,["Branstock Khalder"]=837,["Watcher Backus"]=840,["Lumberjack"]=842,["Gina MacGregor"]=843,["Antonio Perelli"]=844,["Rotten Ghoul"]=846,["Nathan"]=847,["Madison"]=848,["Rachel"]=849,["Erin"]=850,["Hannah"]=851,["Feral Spirit"]=852,["Coldridge Mountaineer"]=853,["Young Jungle Stalker"]=854,["Young Stranglethorn Raptor"]=855,["Young Lashtail Raptor"]=856,["Donal Osgood"]=857,["Sorrow Spinner"]=858,["Guard Berton"]=859,["Stonard Scout"]=861,["Stonard Explorer"]=862,["Stonard Hunter"]=863,["Stonard Orc"]=864,["Stonard Wayfinder"]=865,["Stonard Grunt"]=866,["Stonard Cartographer"]=867,["Stonard Shaman"]=868,["Protector Dorana"]=869,["Protector Deni"]=870,["Saltscale Warrior"]=871,["Saltscale Oracle"]=873,["Protector Korelor"]=874,["Saltscale Tide Lord"]=875,["Protector Leick"]=876,["Saltscale Forager"]=877,["Scout Galiaan"]=878,["Saltscale Hunter"]=879,["Erlan Drudgemoor"]=880,["Surena Caledon"]=881,["Deer"]=883,["Watcher Keller"]=885,["Watcher Hartin"]=886,["Watcher Jordan"]=887,["Watcher Dodds"]=888,["Splinter Fist Ogre"]=889,["Fawn"]=890,["Splinter Fist Fire Weaver"]=891,["Splinter Fist Taskmaster"]=892,["Lars"]=893,["Homer Stonefield"]=894,["Thorgas Grimson"]=895,["Veldan Lightfoot"]=896,["Nightbane Worgen"]=898,["Bailiff Conacher"]=900,["Guard Howe"]=903,["Sharptooth Frenzy"]=905,["Maximillian Crowe"]=906,["Keras Wolfheart"]=907,["Flora Silverwind"]=908,["Defias Night Blade"]=909,["Defias Enchanter"]=910,["Llane Beshere"]=911,["Thran Khorman"]=912,["Lyria Du Lac"]=913,["Ander Germaine"]=914,["Jorik Kerridan"]=915,["Solm Hargrin"]=916,["Keryn Sylvius"]=917,["Osborne the Night Man"]=918,["Nightbane Tainted One"]=920,["Venture Co. Lumberjack"]=921,["Silt Crawler"]=922,["Young Black Ravager"]=923,["Brother Sammuel"]=925,["Bromos Grummner"]=926,["Brother Wilhelm"]=927,["Lord Grayson Shadowbreaker"]=928,["Black Widow Hatchling"]=930,["Ariena Stormfeather"]=931,["Guard Ashlock"]=932,["Guard Hiett"]=933,["Guard Clarke"]=934,["Guard Pearce"]=935,["Guard Adams"]=936,["Kurzen Jungle Fighter"]=937,["Kurzen Commando"]=938,["Kurzen Elite"]=939,["Kurzen Medicine Man"]=940,["Kurzen Headshrinker"]=941,["Kurzen Witch Doctor"]=942,["Kurzen Wrangler"]=943,["Marryk Nurribit"]=944,["Rybrad Coldbank"]=945,["Frostmane Novice"]=946,["Rohh the Silent"]=947,["Rotted One"]=948,["Carrion Recluse"]=949,["Swamp Talker"]=950,["Brother Paxton"]=951,["Brother Neals"]=952,["Kat Sampson"]=954,["Sergeant De Vries"]=955,["Dorin Songblade"]=956,["Dane Lindgren"]=957,["Dawn Brightstar"]=958,["Morley Eberlein"]=959,["Gunder Thornbush"]=960,["Deputy Rainer"]=963,["Kurzen War Tiger"]=976,["Kurzen War Panther"]=977,["Kurzen Subchief"]=978,["Kurzen Shadow Hunter"]=979,["Grimnal"]=980,["Hartash"]=981,["Thultash"]=982,["Thultazor"]=983,["Thralosh"]=984,["Malosh"]=985,["Haromm"]=986,["Ogromm"]=987,["Kartosh"]=988,["Banalash"]=989,["Watcher Royce"]=999,["Watcher Blomberg"]=1000,["Watcher Hutchins"]=1001,["Mosshide Gnoll"]=1007,["Mosshide Mongrel"]=1008,["Mosshide Mistweaver"]=1009,["Mosshide Fenrunner"]=1010,["Mosshide Trapper"]=1011,["Mosshide Brute"]=1012,["Mosshide Mystic"]=1013,["Mosshide Alpha"]=1014,["Highland Raptor"]=1015,["Highland Lashtail"]=1016,["Highland Scytheclaw"]=1017,["Highland Razormaw"]=1018,["Elder Razormaw"]=1019,["Mottled Raptor"]=1020,["Mottled Screecher"]=1021,["Mottled Scytheclaw"]=1022,["Mottled Razormaw"]=1023,["Bluegill Murloc"]=1024,["Bluegill Puddlejumper"]=1025,["Bluegill Forager"]=1026,["Bluegill Warrior"]=1027,["Bluegill Muckdweller"]=1028,["Bluegill Oracle"]=1029,["Black Slime"]=1030,["Crimson Ooze"]=1031,["Black Ooze"]=1032,["Monstrous Ooze"]=1033,["Dragonmaw Raider"]=1034,["Dragonmaw Swamprunner"]=1035,["Dragonmaw Centurion"]=1036,["Dragonmaw Battlemaster"]=1037,["Dragonmaw Shadowwarder"]=1038,["Fen Dweller"]=1039,["Fen Creeper"]=1040,["Fen Lord"]=1041,["Red Whelp"]=1042,["Lost Whelp"]=1043,["Flamesnorting Whelp"]=1044,["Red Dragonspawn"]=1045,["Red Wyrmkin"]=1046,["Red Scalebane"]=1047,["Scalebane Lieutenant"]=1048,["Wyrmkin Firebrand"]=1049,["Scalebane Royal Guard"]=1050,["Dark Iron Dwarf"]=1051,["Dark Iron Saboteur"]=1052,["Dark Iron Tunneler"]=1053,["Dark Iron Demolitionist"]=1054,["Dragonmaw Bonewarder"]=1057,["Ana'thek the Cruel"]=1059,["Mogh the Undying"]=1060,["Gan'zulah"]=1061,["Nezzliok the Dire"]=1062,["Jade"]=1063,["Grom'gol Grunt"]=1064,["Riverpaw Shaman"]=1065,["Gorn"]=1068,["Crimson Whelp"]=1069,["Deputy Feldon"]=1070,["Longbraid the Grim"]=1071,["Roggo Harlbarrow"]=1072,["Ashlan Stonesmirk"]=1073,["Motley Garmason"]=1074,["Rhag Garmason"]=1075,["Merrin Rockweaver"]=1076,["Prospector Whelgar"]=1077,["Ormer Ironbraid"]=1078,["Mire Lord"]=1081,["Sawtooth Crocolisk"]=1082,["Murloc Shorestriker"]=1083,["Young Sawtooth Crocolisk"]=1084,["Elder Stranglethorn Tiger"]=1085,["Sawtooth Snapper"]=1087,["Monstrous Crawler"]=1088,["Mountaineer Cobbleflint"]=1089,["Mountaineer Wallbang"]=1090,["Mountaineer Gravelgaw"]=1091,["Captain Rugelfuss"]=1092,["Chief Engineer Hinderweir VII"]=1093,["Venture Co. Miner"]=1094,["Venture Co. Workboss"]=1095,["Venture Co. Geologist"]=1096,["Venture Co. Mechanic"]=1097,["Watcher Merant"]=1098,["Watcher Gelwin"]=1099,["Watcher Selkin"]=1100,["Watcher Thayer"]=1101,["Eldrin"]=1103,["Grundel Harkin"]=1104,["Jern Hornhelm"]=1105,["Lost One Cook"]=1106,["Mistvale Gorilla"]=1108,["Fleshripper"]=1109,["Skeletal Raider"]=1110,["Leech Stalker"]=1111,["Leech Widow"]=1112,["Jungle Thunderer"]=1114,["Rockjaw Skullthumper"]=1115,["Rockjaw Ambusher"]=1116,["Rockjaw Bonesnapper"]=1117,["Rockjaw Backbreaker"]=1118,["Hammerspine"]=1119,["Frostmane Troll"]=1120,["Frostmane Snowstrider"]=1121,["Frostmane Hideskinner"]=1122,["Frostmane Headhunter"]=1123,["Frostmane Shadowcaster"]=1124,["Crag Boar"]=1125,["Large Crag Boar"]=1126,["Elder Crag Boar"]=1127,["Young Black Bear"]=1128,["Black Bear"]=1129,["Bjarn"]=1130,["Winter Wolf"]=1131,["Timber"]=1132,["Starving Winter Wolf"]=1133,["Young Wendigo"]=1134,["Wendigo"]=1135,["Edan the Howler"]=1137,["Snow Tracker Wolf"]=1138,["Magistrate Bluntnose"]=1139,["Razormaw Matriarch"]=1140,["Angus Stern"]=1141,["Mosh'Ogg Brute"]=1142,["Mosh'Ogg Witch Doctor"]=1144,["Vharr"]=1146,["Hragran"]=1147,["Nerrist"]=1148,["Uthok"]=1149,["River Crocolisk"]=1150,["Saltwater Crocolisk"]=1151,["Snapjaw Crocolisk"]=1152,["Torren Squarejaw"]=1153,["Marek Ironheart"]=1154,["Kelt Thomasin"]=1155,["Vyrin Swiftwind"]=1156,["Cursed Sailor"]=1157,["Cursed Marine"]=1158,["First Mate Snellig"]=1159,["Captain Halyndor"]=1160,["Stonesplinter Trogg"]=1161,["Stonesplinter Scout"]=1162,["Stonesplinter Skullthumper"]=1163,["Stonesplinter Bonesnapper"]=1164,["Stonesplinter Geomancer"]=1165,["Stonesplinter Seer"]=1166,["Stonesplinter Digger"]=1167,["Dark Iron Insurgent"]=1169,["Tunnel Rat Vermin"]=1172,["Tunnel Rat Scout"]=1173,["Tunnel Rat Geomancer"]=1174,["Tunnel Rat Digger"]=1175,["Tunnel Rat Forager"]=1176,["Tunnel Rat Surveyor"]=1177,["Mo'grosh Ogre"]=1178,["Mo'grosh Enforcer"]=1179,["Mo'grosh Brute"]=1180,["Mo'grosh Shaman"]=1181,["Brother Anton"]=1182,["Mo'grosh Mystic"]=1183,["Cliff Lurker"]=1184,["Wood Lurker"]=1185,["Black Bear"]=1186,["Daryl the Youngling"]=1187,["Grizzled Black Bear"]=1188,["Black Bear Patriarch"]=1189,["Mountain Boar"]=1190,["Mangy Mountain Boar"]=1191,["Elder Mountain Boar"]=1192,["Loch Frenzy"]=1193,["Mountain Buzzard"]=1194,["Forest Lurker"]=1195,["Ice Claw Bear"]=1196,["Stonesplinter Shaman"]=1197,["Rallic Finn"]=1198,["Juvenile Snow Leopard"]=1199,["Morbent Fel"]=1200,["Snow Leopard"]=1201,["Tunnel Rat Kobold"]=1202,["Watcher Sarys"]=1203,["Watcher Corwin"]=1204,["Grawmug"]=1205,["Gnasher"]=1206,["Brawler"]=1207,["Chok'sul"]=1210,["Leper Gnome"]=1211,["Bishop Farthing"]=1212,["Godric Rothgar"]=1213,["Aldren Cordon"]=1214,["Alchemist Mallory"]=1215,["Shore Crawler"]=1216,["Glorin Steelbrow"]=1217,["Herbalist Pomeroy"]=1218,["Dark Iron Sapper"]=1222,["Young Threshadon"]=1224,["Ol' Sooty"]=1225,["Maxan Anvol"]=1226,["Rygal Rocknell"]=1227,["Magis Sparkmantle"]=1228,["Granis Swiftaxe"]=1229,["[UNUSED] Lexin Haze"]=1230,["Grif Wildheart"]=1231,["Azar Stronghammer"]=1232,["[UNUSED] Shaethis Darkoak"]=1233,["Hogral Bakkan"]=1234,["Kobold Digger"]=1236,["Kazan Mogosh"]=1237,["Gamili Frosthide"]=1238,["First Mate Fitzsimmons"]=1239,["Boran Ironclink"]=1240,["Tognus Flintfire"]=1241,["Karl Boran"]=1242,["Hegnar Rumbleshot"]=1243,["Rethiel the Greenwarden"]=1244,["Kogan Forgestone"]=1245,["Vosur Brakthel"]=1246,["Innkeeper Belm"]=1247,["Quartermaster Hudson"]=1249,["Drake Lindgren"]=1250,["Splinter Fist Firemonger"]=1251,["Senir Whitebeard"]=1252,["Father Gavin"]=1253,["Foreman Stonebrow"]=1254,["Prospector Gehn"]=1255,["Quarrymaster Thesten"]=1256,["Keldric Boucher"]=1257,["Black Ravager Mastiff"]=1258,["Gobbler"]=1259,["Great Father Arctikus"]=1260,["Veron Amberstill"]=1261,["Yarlyn Amberstill"]=1263,["Rudra Amberstill"]=1265,["Tundra MacGrann"]=1266,["Ragnar Thunderbrew"]=1267,["Ozzie Togglevolt"]=1268,["Razzle Sprysprocket"]=1269,["Fetid Corpse"]=1270,["Old Icebeard"]=1271,["Grawn Thromwyn"]=1273,["Senator Barin Redstone"]=1274,["Kyra Boucher"]=1275,["Mountaineer Brokk"]=1276,["Mountaineer Ganin"]=1277,["Mountaineer Stenn"]=1278,["Mountaineer Flint"]=1279,["Mountaineer Droken"]=1280,["Mountaineer Zaren"]=1281,["Mountaineer Veek"]=1282,["Mountaineer Kalmir"]=1283,["Archbishop Benedictus"]=1284,["Thurman Mullby"]=1285,["Edna Mullby"]=1286,["Marda Weller"]=1287,["Gunther Weller"]=1289,["Carla Granger"]=1291,["Maris Granger"]=1292,["Ambo Cash"]=1293,["Aldric Moore"]=1294,["Lara Moore"]=1295,["Felder Stover"]=1296,["Lina Stover"]=1297,["Frederick Stover"]=1298,["Lisbeth Schneider"]=1299,["Lawrence Schneider"]=1300,["Julia Gallina"]=1301,["Bernard Gump"]=1302,["Felicia Gump"]=1303,["Darian Singh"]=1304,["Jarel Moor"]=1305,["Charys Yserian"]=1307,["Owen Vaughn"]=1308,["Wynne Larson"]=1309,["Evan Larson"]=1310,["Joachim Brenlow"]=1311,["Ardwyn Cailen"]=1312,["Maria Lumere"]=1313,["Duncan Cullen"]=1314,["Allan Hafgan"]=1315,["Adair Gilroy"]=1316,["Lucan Cordell"]=1317,["Jessara Cordell"]=1318,["Bryan Cross"]=1319,["Seoman Griffith"]=1320,["Alyssa Griffith"]=1321,["Maxton Strang"]=1322,["Osric Strang"]=1323,["Heinrich Stone"]=1324,["Jasper Fel"]=1325,["Sloan McCoy"]=1326,["Reese Langston"]=1327,["Elly Langston"]=1328,["Mountaineer Naarh"]=1329,["Mountaineer Tyraw"]=1330,["Mountaineer Luxst"]=1331,["Mountaineer Morran"]=1332,["Gerik Koen"]=1333,["Mountaineer Hammerfall"]=1334,["Mountaineer Yuttha"]=1335,["Mountaineer Zwarn"]=1336,["Mountaineer Gwarth"]=1337,["Mountaineer Dalk"]=1338,["Mayda Thane"]=1339,["Mountaineer Kadrell"]=1340,["Wilhelm Strang"]=1341,["Mountaineer Rockgar"]=1342,["Mountaineer Stormpike"]=1343,["Prospector Ironband"]=1344,["Magmar Fellhew"]=1345,["Georgio Bolero"]=1346,["Alexandra Bolero"]=1347,["Gregory Ardus"]=1348,["Agustus Moulaine"]=1349,["Theresa Moulaine"]=1350,["Brother Cassius"]=1351,["Fluffy"]=1352,["Sarltooth"]=1353,["Apprentice Soren"]=1354,["Cook Ghilm"]=1355,["Prospector Stormpike"]=1356,["Miner Grothor"]=1358,["Miner Grumnal"]=1360,["Gothor Brumn"]=1362,["Balgaras the Foul"]=1364,["Goli Krumn"]=1365,["Adam"]=1366,["Billy"]=1367,["Justin"]=1368,["Brandon"]=1370,["Roman"]=1371,["Jarven Thunderbrew"]=1373,["Rejold Barleybrew"]=1374,["Marleth Barleybrew"]=1375,["Beldin Steelgrill"]=1376,["Pilot Stonegear"]=1377,["Pilot Bellowfiz"]=1378,["Miran"]=1379,["Saean"]=1380,["Krakk"]=1381,["Mudduk"]=1382,["Snarl"]=1383,["Brawn"]=1385,["Rogvar"]=1386,["Thysta"]=1387,["Vagash"]=1388,["Berserk Trogg"]=1393,["Ol' Beasley"]=1395,["Frostmane Seer"]=1397,["Boss Galgosh"]=1398,["Magosh"]=1399,["Wetlands Crocolisk"]=1400,["Topper McNabb"]=1402,["Kragg"]=1404,["Morris Lawry"]=1405,["Sranda"]=1407,["Firewing Bloodwarder"]=1410,["Ian Strom"]=1411,["Squirrel"]=1412,["Janey Anship"]=1413,["Lisan Pierce"]=1414,["Suzanne"]=1415,["Grimand Elmore"]=1416,["Young Wetlands Crocolisk"]=1417,["Bluegill Raider"]=1418,["Fizzles"]=1419,["Toad"]=1420,["Private Merle"]=1421,["Corporal Sethman"]=1422,["Stormwind Guard"]=1423,["Master Digger"]=1424,["Kubb"]=1425,["Riverpaw Miner"]=1426,["Harlan Bagley"]=1427,["Rema Schneider"]=1428,["Thurman Schneider"]=1429,["Tomas"]=1430,["Suzetta Gallina"]=1431,["Renato Gallina"]=1432,["Corbett Schneider"]=1433,["Menethil Sentry"]=1434,["Zardeth of the Black Claw"]=1435,["Watcher Cutford"]=1436,["Thomas Booker"]=1437,["Lord Baurles K. Wishock"]=1439,["Milton Sheaf"]=1440,["Brak Durnad"]=1441,["Helgrum the Swift"]=1442,["Fel'zerul"]=1443,["Brother Kristoff"]=1444,["Jesse Halloran"]=1445,["Regina Halloran"]=1446,["Gimlok Rumdnul"]=1447,["Neal Allen"]=1448,["Witch Doctor Unbagwa"]=1449,["Brahnmar"]=1450,["Camerick Jongleur"]=1451,["Gruham Rumdnul"]=1452,["Dewin Shimmerdawn"]=1453,["Jennabink Powerseam"]=1454,["Kersok Prond"]=1456,["Samor Festivus"]=1457,["Telurinon Moonshadow"]=1458,["Naela Trance"]=1459,["Unger Statforth"]=1460,["Murndan Derth"]=1461,["Edwina Monzor"]=1462,["Falkan Armonis"]=1463,["Innkeeper Helbrek"]=1464,["Drac Roughcut"]=1465,["Gretta Finespindle"]=1466,["Vrok Blunderblast"]=1469,["Ghak Healtouch"]=1470,["Jannos Ironwill"]=1471,["Morgg Stormshot"]=1472,["Kali Healtouch"]=1473,["Rann Flamespinner"]=1474,["Menethil Guard"]=1475,["Hargin Mundar"]=1476,["Christoph Faral"]=1477,["Aedis Brom"]=1478,["Timothy Clark"]=1479,["Caitlin Grassman"]=1480,["Bart Tidewater"]=1481,["Andrea Halloran"]=1482,["Murphy West"]=1483,["Derina Rumdnul"]=1484,["Splinter Fist Enslaver"]=1487,["Zanzil Zombie"]=1488,["Zanzil Hunter"]=1489,["Zanzil Witch Doctor"]=1490,["Zanzil Naga"]=1491,["Gorlash"]=1492,["Mok'rash the Cleaver"]=1493,["Negolash"]=1494,["Deathguard Linnea"]=1495,["Deathguard Dillinger"]=1496,["Gunther Arcanus"]=1497,["Bethor Iceshard"]=1498,["Magistrate Sevren"]=1499,["Coleman Farthing"]=1500,["Mindless Zombie"]=1501,["Wretched Ghoul"]=1502,["Young Night Web Spider"]=1504,["Night Web Spider"]=1505,["Scarlet Convert"]=1506,["Scarlet Initiate"]=1507,["Young Scavenger"]=1508,["Ragged Scavenger"]=1509,["Enraged Silverback Gorilla"]=1511,["Duskbat"]=1512,["Mangy Duskbat"]=1513,["Mokk the Savage"]=1514,["Executor Zygand"]=1515,["Konda"]=1516,["Apothecary Johaan"]=1518,["Deathguard Simmer"]=1519,["Rattlecage Soldier"]=1520,["Gretchen Dedmar"]=1521,["Darkeye Bonecaster"]=1522,["Cracked Skull Soldier"]=1523,["Rotting Dead"]=1525,["Ravaged Corpse"]=1526,["Hungering Dead"]=1527,["Shambling Horror"]=1528,["Bleeding Horror"]=1529,["Rotting Ancestor"]=1530,["Lost Soul"]=1531,["Wandering Spirit"]=1532,["Tormented Spirit"]=1533,["Wailing Ancestor"]=1534,["Scarlet Warrior"]=1535,["Scarlet Missionary"]=1536,["Scarlet Zealot"]=1537,["Scarlet Friar"]=1538,["Scarlet Neophyte"]=1539,["Scarlet Vanguard"]=1540,["Vile Fin Murloc"]=1541,["Vile Fin Puddlejumper"]=1543,["Vile Fin Minor Oracle"]=1544,["Vile Fin Muckdweller"]=1545,["[UNUSED] Kegnar Thraln"]=1546,["Decrepit Darkhound"]=1547,["Cursed Darkhound"]=1548,["Ravenous Darkhound"]=1549,["Thrashtail Basilisk"]=1550,["Ironjaw Basilisk"]=1551,["Scale Belly"]=1552,["Greater Duskbat"]=1553,["Vampiric Duskbat"]=1554,["Vicious Night Web Spider"]=1555,["Elder Mistvale Gorilla"]=1557,["Silverback Patriarch"]=1558,["King Mukla"]=1559,["Yvette Farthing"]=1560,["Bloodsail Raider"]=1561,["Bloodsail Mage"]=1562,["Bloodsail Swashbuckler"]=1563,["Bloodsail Warlock"]=1564,["Bloodsail Sea Dog"]=1565,["Undertaker Mordo"]=1568,["Shadow Priest Sarvis"]=1569,["Executor Arren"]=1570,["Shellei Brondir"]=1571,["Thorgrum Borrelson"]=1572,["Gryth Thurden"]=1573,["Mage 1"]=1574,["Mage 5"]=1575,["Priest 20"]=1629,["Adele Fielder"]=1632,["Northshire Guard"]=1642,["Quartermaster Hicks"]=1645,["Baros Alexston"]=1646,["Terry Palin"]=1650,["Lee Brown"]=1651,["Deathguard Burgess"]=1652,["Bloodsail Elder Magus"]=1653,["Gregor Agamand"]=1654,["Nissa Agamand"]=1655,["Thurman Agamand"]=1656,["Devlin Agamand"]=1657,["Captain Dargol"]=1658,["Scarlet Bodyguard"]=1660,["Novice Elreth"]=1661,["Captain Perrine"]=1662,["Dextren Ward"]=1663,["Captain Vachon"]=1664,["Captain Melrache"]=1665,["Kam Deepfury"]=1666,["Meven Korgal"]=1667,["William MacGregor"]=1668,["Defias Profiteer"]=1669,["Mike Miller"]=1670,["Lamar Veisilli"]=1671,["Lohgan Eva"]=1672,["Alyssa Eva"]=1673,["Rot Hide Gnoll"]=1674,["Rot Hide Mongrel"]=1675,["Finbus Geargrind"]=1676,["Vernon Hale"]=1678,["Avarus Kharag"]=1679,["Matthew Hooper"]=1680,["Brock Stoneseeker"]=1681,["Yanni Stoutheart"]=1682,["Warg Deepwater"]=1683,["Khara Deepwater"]=1684,["Xandar Goodbeard"]=1685,["Irene Sureshot"]=1686,["Cliff Hadin"]=1687,["Night Web Matriarch"]=1688,["Scarred Crag Boar"]=1689,["Thrawn Boltar"]=1690,["Kreg Bilmn"]=1691,["Golorn Frostbeard"]=1692,["Loch Crocolisk"]=1693,["Loslor Rudge"]=1694,["Rendow"]=1695,["Targorr the Dread"]=1696,["Keeg Gibn"]=1697,["Frast Dokner"]=1698,["Gremlock Pilsnor"]=1699,["Paxton Ganter"]=1700,["Dank Drizzlecut"]=1701,["Bronk Guzzlegear"]=1702,["Uthrar Threx"]=1703,["Prisoner"]=1706,["Defias Captive"]=1707,["Defias Inmate"]=1708,["Convict"]=1711,["Elder Shadowmaw Panther"]=1713,["Insurgent"]=1715,["Bazil Thredd"]=1716,["Hamhock"]=1717,["Rockjaw Raider"]=1718,["Warden Thelwater"]=1719,["Bruegal Ironknuckle"]=1720,["Nikova Raskol"]=1721,["Defias Watchman"]=1725,["Defias Magician"]=1726,["Defias Worker"]=1727,["Defias Evoker"]=1729,["Goblin Craftsman"]=1731,["Defias Squallshaper"]=1732,["Zggi"]=1733,["Deathguard Abraham"]=1735,["Deathguard Randolph"]=1736,["Deathguard Oliver"]=1737,["Deathguard Terrence"]=1738,["Deathguard Phillip"]=1739,["Deathguard Saltain"]=1740,["Deathguard Bartrand"]=1741,["Deathguard Bartholomew"]=1742,["Deathguard Lawrence"]=1743,["Deathguard Mort"]=1744,["Deathguard Morris"]=1745,["Deathguard Cyrus"]=1746,["Anduin Wrynn"]=1747,["Highlord Bolvar Fordragon"]=1748,["Lady Katrana Prestor"]=1749,["Grand Admiral Jes-Tereth"]=1750,["Mithras Ironhill"]=1751,["Caledra Dawnbreeze"]=1752,["Maggot Eye"]=1753,["Lord Gregor Lescovar"]=1754,["Marzon the Silent Blade"]=1755,["Stormwind Royal Guard"]=1756,["Mega Rabbit"]=1757,["Gilnid"]=1763,["Greater Feral Spirit"]=1764,["Worg"]=1765,["Rabid Worg"]=1766,["Vile Fin Shredder"]=1767,["Vile Fin Tidehunter"]=1768,["Moonrage Whitescalp"]=1769,["Moonrage Darkrunner"]=1770,["Rot Hide Gladerunner"]=1772,["Rot Hide Mystic"]=1773,["Zun'dartha"]=1775,["Magtoor"]=1776,["Dakk Blunderblast"]=1777,["Ferocious Grizzled Bear"]=1778,["Moonrage Glutton"]=1779,["Skitterweb Striker"]=1780,["Skitterweb Lurker"]=1781,["Moonrage Darksoul"]=1782,["Skeletal Flayer"]=1783,["Skeletal Sorcerer"]=1784,["Skeletal Terror"]=1785,["Skeletal Executioner"]=1787,["Skeletal Warlord"]=1788,["Skeletal Acolyte"]=1789,["Slavering Ghoul"]=1791,["Rotting Ghoul"]=1793,["Soulless Ghoul"]=1794,["Searing Ghoul"]=1795,["Freezing Ghoul"]=1796,["Giant Rabid Bear"]=1797,["Cold Wraith"]=1800,["Blood Wraith"]=1801,["Hungering Wraith"]=1802,["Wailing Death"]=1804,["Flesh Golem"]=1805,["Vile Slime"]=1806,["Devouring Ooze"]=1808,["Carrion Vulture"]=1809,["Rotting Behemoth"]=1812,["Decaying Horror"]=1813,["Diseased Black Bear"]=1815,["Diseased Grizzly"]=1816,["Diseased Wolf"]=1817,["Carrion Lurker"]=1821,["Venom Mist Lurker"]=1822,["Plague Lurker"]=1824,["Scarlet Mage"]=1826,["Scarlet Sentinel"]=1827,["Scarlet Hunter"]=1831,["Scarlet Magus"]=1832,["Scarlet Knight"]=1833,["Scarlet Paladin"]=1834,["Scarlet Invoker"]=1835,["Scarlet Cavalier"]=1836,["Scarlet Judge"]=1837,["Scarlet Interrogator"]=1838,["Scarlet High Clerist"]=1839,["Grand Inquisitor Isillien"]=1840,["Scarlet Executioner"]=1841,["Highlord Taelan Fordring"]=1842,["Foreman Jerris"]=1843,["Foreman Marcrid"]=1844,["High Protector Tarsen"]=1845,["High Protector Lorik"]=1846,["Foulmane"]=1847,["Lord Maldazzar"]=1848,["Dreadwhisper"]=1849,["Putridius"]=1850,["The Husk"]=1851,["Araj the Summoner"]=1852,["Darkmaster Gandling"]=1853,["High Priest Thel'danis"]=1854,["Tirion Fordring"]=1855,["Voidwalker"]=1860,["Succubus"]=1863,["Ravenclaw Raider"]=1865,["Ravenclaw Slave"]=1866,["Dalaran Apprentice"]=1867,["Ravenclaw Servant"]=1868,["Ravenclaw Champion"]=1869,["Hand of Ravenclaw"]=1870,["Eliza's Guard"]=1871,["Tharek Blackstone"]=1872,["Berte"]=1880,["Scarlet Worker"]=1883,["Scarlet Lumberjack"]=1884,["Scarlet Smith"]=1885,["Ambermill Watcher"]=1888,["Ambermill Witchalok"]=1889,["Rattlecage Skeleton"]=1890,["Pyrewood Watcher"]=1891,["Moonrage Watcher"]=1892,["Moonrage Sentry"]=1893,["Pyrewood Sentry"]=1894,["Pyrewood Elder"]=1895,["Moonrage Elder"]=1896,["Kelstrum Stonebreaker"]=1901,["Naga Explorer"]=1907,["Vile Fin Oracle"]=1908,["Vile Fin Lakestalker"]=1909,["Muad"]=1910,["Deeb"]=1911,["Ambermill Protector"]=1912,["Ambermill Warder"]=1913,["Ambermill Mage"]=1914,["Ambermill Conjuror"]=1915,["Stephen Bhartec"]=1916,["Daniel Ulfman"]=1917,["Karrel Grayves"]=1918,["Samuel Fipps"]=1919,["Dalaran Spellscribe"]=1920,["Combat Dummy"]=1921,["Gray Forest Wolf"]=1922,["Bloodsnout Worg"]=1923,["Moonrage Bloodhowler"]=1924,["Captured Scarlet Zealot"]=1931,["Sheep"]=1933,["Tirisfal Farmer"]=1934,["Tirisfal Farmhand"]=1935,["Farmer Solliden"]=1936,["Apothecary Renferrel"]=1937,["Dalar Dawnweaver"]=1938,["Rot Hide Brute"]=1939,["Rot Hide Plague Weaver"]=1940,["Rot Hide Graverobber"]=1941,["Rot Hide Savage"]=1942,["Raging Rot Hide"]=1943,["Rot Hide Bruiser"]=1944,["Lillith Nefara"]=1946,["Thule Ravenclaw"]=1947,["Snarlmane"]=1948,["Servant of Azora"]=1949,["Rane Yorick"]=1950,["Quinn Yorick"]=1951,["High Executor Hadrec"]=1952,["Lake Skulker"]=1953,["Elder Lake Skulker"]=1954,["Lake Creeper"]=1955,["Elder Lake Creeper"]=1956,["Vile Fin Shorecreeper"]=1957,["Vile Fin Tidecaller"]=1958,["Mountaineer Barleybrew"]=1959,["Pilot Hammerfoot"]=1960,["Mangeclaw"]=1961,["Vidra Hearthstove"]=1963,["Treant"]=1964,["Mountaineer Thalos"]=1965,["Ivar the Foul"]=1971,["Grimson the Pale"]=1972,["Ravenclaw Guardian"]=1973,["Ravenclaw Drudger"]=1974,["Eastvale Lumberjack"]=1975,["Stormwind City Patroller"]=1976,["Senator Mehr Stonehallow"]=1977,["Deathstalker Erland"]=1978,["Dark Iron Ambusher"]=1981,["Nightlash"]=1983,["Young Thistle Boar"]=1984,["Thistle Boar"]=1985,["Webwood Spider"]=1986,["Grell"]=1988,["Grellkin"]=1989,["Tarindrella"]=1992,["Greenpaw"]=1993,["Githyiss the Vile"]=1994,["Strigid Owl"]=1995,["Strigid Screecher"]=1996,["Strigid Hunter"]=1997,["Webwood Lurker"]=1998,["Webwood Venomfang"]=1999,["Webwood Silkspinner"]=2000,["Giant Webwood Spider"]=2001,["Rascal Sprite"]=2002,["Shadow Sprite"]=2003,["Dark Sprite"]=2004,["Vicious Grell"]=2005,["Gnarlpine Ursa"]=2006,["Gnarlpine Gardener"]=2007,["Gnarlpine Warrior"]=2008,["Gnarlpine Shaman"]=2009,["Gnarlpine Defender"]=2010,["Gnarlpine Augur"]=2011,["Gnarlpine Pathfinder"]=2012,["Gnarlpine Avenger"]=2013,["Gnarlpine Totemic"]=2014,["Bloodfeather Harpy"]=2015,["Bloodfeather Rogue"]=2017,["Bloodfeather Sorceress"]=2018,["Bloodfeather Fury"]=2019,["Bloodfeather Wind Witch"]=2020,["Bloodfeather Matriarch"]=2021,["Timberling"]=2022,["Timberling Bark Ripper"]=2025,["Timberling Trampler"]=2027,["Timberling Mire Beast"]=2029,["Elder Timberling"]=2030,["Young Nightsaber"]=2031,["Mangy Nightsaber"]=2032,["Elder Nightsaber"]=2033,["Feral Nightsaber"]=2034,["Lord Melenas"]=2038,["Ursal the Mauler"]=2039,["Ancient Protector"]=2041,["Nightsaber"]=2042,["Nightsaber Stalker"]=2043,["Forlorn Spirit"]=2044,["Andrew Krighton"]=2046,["Raleigh Andrean"]=2050,["Haggard Refugee"]=2053,["Sickly Refugee"]=2054,["Master Apothecary Faranell"]=2055,["Ravenclaw Apparition"]=2056,["Huldar"]=2057,["Deathstalker Faerleia"]=2058,["Councilman Smithers"]=2060,["Councilman Thatcher"]=2061,["Councilman Hendricks"]=2062,["Councilman Wilhelm"]=2063,["Councilman Hartin"]=2064,["Councilman Cooper"]=2065,["Councilman Higarth"]=2066,["Councilman Brunswick"]=2067,["Lord Mayor Morrison"]=2068,["Moonstalker"]=2069,["Moonstalker Runt"]=2070,["Moonstalker Matriarch"]=2071,["Melithar Staghelm"]=2077,["Athridas Bearmantle"]=2078,["Ilthalaine"]=2079,["Denalan"]=2080,["Sentinel Kyra Starsong"]=2081,["Gilshalan Windwalker"]=2082,["Syral Bladeleaf"]=2083,["Natheril Raincaller"]=2084,["Valstag Ironjaw"]=2086,["Giant Wetlands Crocolisk"]=2089,["Ma'ruk Wyrmscale"]=2090,["Chieftain Nek'rosh"]=2091,["Pilot Longbeard"]=2092,["Einar Stonegrip"]=2093,["James Halloran"]=2094,["Tarrel Rockweaver"]=2096,["Harlo Barnaby"]=2097,["Ram"]=2098,["Maiden's Virtue Crewman"]=2099,["Dragonmaw Grunt"]=2102,["Dragonmaw Scout"]=2103,["Captain Stoutfist"]=2104,["Mountaineer Dokkin"]=2105,["Apothecary Berard"]=2106,["Gaerolas Talvethren"]=2107,["Garneg Charskull"]=2108,["Black Rat"]=2110,["Sida"]=2111,["Farrin Daris"]=2112,["Archibald Kava"]=2113,["Faruza"]=2114,["Joshua Kien"]=2115,["Blacksmith Rand"]=2116,["Harold Raims"]=2117,["Abigail Shiel"]=2118,["Dannal Stern"]=2119,["Archmage Ataeric"]=2120,["Shadow Priest Allister"]=2121,["David Trias"]=2122,["Dark Cleric Duesten"]=2123,["Isabella"]=2124,["Maximillion"]=2126,["Rupert Boch"]=2127,["Cain Firesong"]=2128,["Dark Cleric Beryl"]=2129,["Marion Call"]=2130,["Austil de Mon"]=2131,["Carolai Anise"]=2132,["Mrs. Winters"]=2134,["Abe Winters"]=2135,["Oliver Dwor"]=2136,["Eliza Callen"]=2137,["Edwin Harly"]=2140,["Watcher Callahan"]=2142,["Dark Iron Raider"]=2149,["Zenn Foulhoof"]=2150,["Moon Priestess Amara"]=2151,["Gnarlpine Ambusher"]=2152,["Terl Arakor"]=2153,["Sentinel Shayla Nightbreeze"]=2155,["Cracked Golem"]=2156,["Stone Behemoth"]=2157,["Gravelflint Scout"]=2158,["Gravelflint Bonesnapper"]=2159,["Gravelflint Geomancer"]=2160,["Agal"]=2162,["Thistle Bear"]=2163,["Rabid Thistle Bear"]=2164,["Grizzled Thistle Bear"]=2165,["Oakenscowl"]=2166,["Blackwood Pathfinder"]=2167,["Blackwood Warrior"]=2168,["Blackwood Totemic"]=2169,["Blackwood Ursa"]=2170,["Blackwood Shaman"]=2171,["Strider Clutchmother"]=2172,["Reef Frenzy"]=2173,["Coastal Frenzy"]=2174,["Shadowclaw"]=2175,["Cursed Highborne"]=2176,["Writhing Highborne"]=2177,["Wailing Highborne"]=2178,["Stormscale Wave Rider"]=2179,["Stormscale Siren"]=2180,["Stormscale Myrmidon"]=2181,["Stormscale Sorceress"]=2182,["Stormscale Warrior"]=2183,["Lady Moongazer"]=2184,["Darkshore Thresher"]=2185,["Carnivous the Breaker"]=2186,["Elder Darkshore Thresher"]=2187,["Deep Sea Threshadon"]=2188,["Vile Sprite"]=2189,["Wild Grell"]=2190,["Licillin"]=2191,["Firecaller Radison"]=2192,["Crier Goodman"]=2198,["Greymist Raider"]=2201,["Greymist Coastrunner"]=2202,["Greymist Seer"]=2203,["Greymist Netter"]=2204,["Greymist Warrior"]=2205,["Greymist Hunter"]=2206,["Greymist Oracle"]=2207,["Greymist Tidehunter"]=2208,["Deathguard Gavin"]=2209,["Deathguard Royann"]=2210,["Captured Mountaineer"]=2211,["Deth'ryll Satyr"]=2212,["Deathstalker Lesh"]=2214,["High Executor Darthalia"]=2215,["Apothecary Lydon"]=2216,["Zora Guthrek"]=2225,["Karos Razok"]=2226,["Sharlindra"]=2227,["Lieutenant Farren Orinelle"]=2228,["Krusk"]=2229,["Umpi"]=2230,["Pygmy Tide Crawler"]=2231,["Tide Crawler"]=2232,["Encrusted Tide Crawler"]=2233,["Young Reef Crawler"]=2234,["Reef Crawler"]=2235,["Raging Reef Crawler"]=2236,["Moonstalker Sire"]=2237,["Tog'thar"]=2238,["Drull"]=2239,["Syndicate Footpad"]=2240,["Syndicate Thief"]=2241,["Syndicate Spy"]=2242,["Syndicate Sentry"]=2243,["Syndicate Shadow Mage"]=2244,["Syndicate Saboteur"]=2245,["Syndicate Assassin"]=2246,["Syndicate Enforcer"]=2247,["Cave Yeti"]=2248,["Ferocious Yeti"]=2249,["Mountain Yeti"]=2250,["Giant Yeti"]=2251,["Crushridge Ogre"]=2252,["Crushridge Brute"]=2253,["Crushridge Mauler"]=2254,["Crushridge Mage"]=2255,["Crushridge Enforcer"]=2256,["Mug'thol"]=2257,["Maggarrak"]=2258,["Syndicate Rogue"]=2260,["Syndicate Watchman"]=2261,["Marshal Redpath"]=2263,["Hillsbrad Tailor"]=2264,["Hillsbrad Apprentice Blacksmith"]=2265,["Hillsbrad Farmer"]=2266,["Hillsbrad Peasant"]=2267,["Hillsbrad Footman"]=2268,["Hillsbrad Miner"]=2269,["Hillsbrad Sentry"]=2270,["Dalaran Shield Guard"]=2271,["Dalaran Theurgist"]=2272,["Stanley"]=2274,["Enraged Stanley"]=2275,["Magistrate Henry Maleb"]=2276,["Loremaster Dibbs"]=2277,["Melisara"]=2278,["Ravenclaw Regent"]=2283,["Captured Farmer"]=2284,["Count Remington Ridgewell"]=2285,["Crushridge Warmonger"]=2287,["Borgus Stoutarm"]=2299,["Aethalas"]=2302,["Lyranne Feathersong"]=2303,["Captain Ironhill"]=2304,["Foreman Bonds"]=2305,["Baron Vardus"]=2306,["Caretaker Caice"]=2307,["Andrew Brownell"]=2308,["Thomas Arlento"]=2309,["Jamie Nore"]=2310,["Doreen Beltis"]=2311,["Sahvan Bloodshadow"]=2314,["Maquell Ebonwood"]=2315,["Gol'dir"]=2316,["Elysa"]=2317,["Argus Shadow Mage"]=2318,["Syndicate Wizard"]=2319,["Nagaz"]=2320,["Foreststrider Fledgling"]=2321,["Foreststrider"]=2322,["Giant Foreststrider"]=2323,["Blackwood Windtalker"]=2324,["Thamner Pol"]=2326,["Shaina Fuller"]=2327,["Michelle Belle"]=2329,["Karlee Chaddis"]=2330,["Paige Chaddis"]=2331,["Valdred Moray"]=2332,["Henchman Valik"]=2333,["Event Generator 001"]=2334,["Magistrate Burnside"]=2335,["Dark Strand Fanatic"]=2336,["Dark Strand Voidcaller"]=2337,["Twilight Disciple"]=2338,["Twilight Thug"]=2339,["Dun Garok Mountaineer"]=2344,["Dun Garok Rifleman"]=2345,["Dun Garok Priest"]=2346,["Wild Gryphon"]=2347,["Elder Moss Creeper"]=2348,["Domesticated Creeper"]=2349,["Forest Creeper"]=2350,["Gray Bear"]=2351,["Innkeeper Anderson"]=2352,["Vicious Gray Bear"]=2354,["Elder Gray Bear"]=2356,["Merideth Carlson"]=2357,["Dalaran Summoner"]=2358,["Elemental Slave"]=2359,["Hillsbrad Farmhand"]=2360,["Tamara Armstrong"]=2361,["Hemmit Armstrong"]=2362,["Apprentice Honeywell"]=2363,["Neema"]=2364,["Bront Coldcleave"]=2365,["Barkeep Kelly"]=2366,["Donald Rabonne"]=2367,["Daggerspine Shorestalker"]=2368,["Daggerspine Shorehunter"]=2369,["Daggerspine Screamer"]=2370,["Daggerspine Siren"]=2371,["Mudsnout Gnoll"]=2372,["Mudsnout Shaman"]=2373,["Torn Fin Muckdweller"]=2374,["Torn Fin Coastrunner"]=2375,["Torn Fin Oracle"]=2376,["Torn Fin Tidehunter"]=2377,["Kundric Zanden"]=2378,["Caretaker Smithers"]=2379,["Nandar Branson"]=2380,["Micha Yance"]=2381,["Darren Malvew"]=2382,["Lindea Rabonne"]=2383,["Starving Mountain Lion"]=2384,["Foothill Stalker"]=2385,["Alliance Guard"]=2386,["Hillsbrad Councilman"]=2387,["Innkeeper Shay"]=2388,["Zarise"]=2389,["Aranae Venomblood"]=2390,["Serge Hinott"]=2391,["Delia Verana"]=2392,["Christoph Jeffcoat"]=2393,["Mallen Swain"]=2394,["Vinna Wayne"]=2395,["Hans Zandin"]=2396,["Derak Nightfall"]=2397,["Tara Coldgaze"]=2398,["Daryl Stack"]=2399,["Craig Hewitt"]=2400,["Kayren Soothallow"]=2401,["Shara Blazen"]=2402,["Farmer Getz"]=2403,["Blacksmith Verringtan"]=2404,["Tarren Mill Deathguard"]=2405,["Mountain Lion"]=2406,["Hulking Mountain Lion"]=2407,["Snapjaw"]=2408,["Felicia Maline"]=2409,["Magus Wordeen Voidglare"]=2410,["Ricter"]=2411,["Alina"]=2412,["Dermot"]=2413,["Kegan Darkmar"]=2414,["Warden Belamoore"]=2415,["Crushridge Plunderer"]=2416,["Grel'borg the Miser"]=2417,["Deathguard Samsa"]=2418,["Deathguard Humbert"]=2419,["Targ"]=2420,["Muckrake"]=2421,["Glommus"]=2422,["Lord Aliden Perenolde"]=2423,["Guild Banker"]=2424,["Varimathras"]=2425,["Jailor Eston"]=2427,["Jailor Marlgen"]=2428,["Novice Thaivand"]=2429,["Chef Jessen"]=2430,["Jailor Borhuin"]=2431,["Darla Harris"]=2432,["Helcular's Remains"]=2433,["Shadowy Assassin"]=2434,["Southshore Crier"]=2435,["Farmer Kent"]=2436,["Keeper Bel'varil"]=2437,["Bartolo Ginsetti"]=2438,["Major Samuelson"]=2439,["Drunken Footpad"]=2440,["Cow"]=2442,["Narillasanz"]=2447,["Clerk Horrace Whitesteed"]=2448,["Citizen Wilkes"]=2449,["Miner Hackett"]=2450,["Farmer Kalaba"]=2451,["Skhowl"]=2452,["Lo'Grosh"]=2453,["Olivia Burnside"]=2455,["Newton Burnside"]=2456,["John Burnside"]=2457,["Randolph Montague"]=2458,["Mortimer Montague"]=2459,["Barnum Stonemantle"]=2460,["Bailey Stonemantle"]=2461,["Flesh Eating Worm"]=2462,["Commander Aggro'gosh"]=2464,["Far Seer Mok'thardin"]=2465,["Mountaineer Grugelm"]=2466,["Mountaineer Thar"]=2468,["Mountaineer Rharen"]=2469,["Watcher Fraizer"]=2470,["Granistad"]=2473,["Kurdros"]=2474,["Sloth"]=2475,["Gosh-Haldir"]=2476,["Gradok"]=2477,["Haren Swifthoof"]=2478,["Sludge"]=2479,["Bro'kin"]=2480,["Bliztik"]=2481,["Zarena Cromwind"]=2482,["Jaquilina Dramet"]=2483,["Larimaine Purdue"]=2485,["Fin Fizracket"]=2486,["Fleet Master Seahorn"]=2487,["Deeg"]=2488,["Milstaff Stormeye"]=2489,["First Mate Crazz"]=2490,["Whiskey Slim"]=2491,["Lexington Mortaim"]=2492,["Dizzy One-Eye"]=2493,["Privateer Bloads"]=2494,["Drizzlik"]=2495,["Baron Revilgaz"]=2496,["Nimboya"]=2497,["Crank Fizzlebub"]=2498,["Markel Smythe"]=2499,["Captain Hecklebury Smotts"]=2500,["Hillsbrad Foreman"]=2503,["Donyal Tovald"]=2504,["Saltwater Snapjaw"]=2505,["Mountaineer Harn"]=2506,["Mountaineer Uthan"]=2507,["Mountaineer Wuar"]=2508,["Mountaineer Cragg"]=2509,["Mountaineer Ozmok"]=2510,["Mountaineer Bludd"]=2511,["Mountaineer Roghan"]=2512,["Mountaineer Janha"]=2513,["Mountaineer Modax"]=2514,["Mountaineer Fazgard"]=2515,["Mountaineer Kamdar"]=2516,["Mountaineer Langarr"]=2517,["Mountaineer Swarth"]=2518,["Kin'weelay"]=2519,["Remote-Controlled Golem"]=2520,["Skymane Gorilla"]=2521,["Jaguero Stalker"]=2522,["Searing Totem"]=2523,["Mountaineer Haggis"]=2524,["Mountaineer Barn"]=2525,["Mountaineer Morlic"]=2526,["Mountaineer Angst"]=2527,["Mountaineer Haggil"]=2528,["Son of Arugal"]=2529,["Yenniku"]=2530,["Minion of Doane"]=2531,["Donna"]=2532,["William"]=2533,["Zanzil the Outcast"]=2534,["Jon-Jon the Crow"]=2536,["Ambermill Serpent"]=2540,["Lord Sakrasis"]=2541,["Catelyn the Blade"]=2542,["Archmage Ansirem Runeweaver"]=2543,["Southern Sand Crawler"]=2544,["Fleet Master Firallon"]=2546,["Ironpatch"]=2547,["Captain Keelhaul"]=2548,["Garr Salthoof"]=2549,["Captain Stillwater"]=2550,["Brutus"]=2551,["Witherbark Troll"]=2552,["Witherbark Shadowcaster"]=2553,["Witherbark Axe Thrower"]=2554,["Witherbark Witch Doctor"]=2555,["Witherbark Headhunter"]=2556,["Witherbark Shadow Hunter"]=2557,["Witherbark Berserker"]=2558,["Highland Strider"]=2559,["Highland Thrasher"]=2560,["Highland Fleshstalker"]=2561,["Boulderfist Ogre"]=2562,["Plains Creeper"]=2563,["Boulderfist Enforcer"]=2564,["Giant Plains Creeper"]=2565,["Boulderfist Brute"]=2566,["Boulderfist Magus"]=2567,["Boulderfist Mauler"]=2569,["Boulderfist Shaman"]=2570,["Boulderfist Lord"]=2571,["Drywhisker Kobold"]=2572,["Drywhisker Surveyor"]=2573,["Drywhisker Digger"]=2574,["Dark Iron Supplier"]=2575,["Dark Iron Shadowcaster"]=2577,["Young Mesa Buzzard"]=2578,["Mesa Buzzard"]=2579,["Elder Mesa Buzzard"]=2580,["Dabyrie Militia"]=2581,["Dabyrie Laborer"]=2582,["Stromgarde Troll Hunter"]=2583,["Stromgarde Defender"]=2584,["Stromgarde Soldier"]=2585,["Syndicate Highwayman"]=2586,["Syndicate Pathstalker"]=2587,["Syndicate Prowler"]=2588,["Syndicate Mercenary"]=2589,["Syndicate Conjuror"]=2590,["Syndicate Magus"]=2591,["Rumbling Exile"]=2592,["Sprogger"]=2594,["Daggerspine Raider"]=2595,["Daggerspine Sorceress"]=2596,["Lord Falconcrest"]=2597,["Darbel Montrose"]=2598,["Otto"]=2599,["Singer"]=2600,["Foulbelly"]=2601,["Ruul Onestone"]=2602,["Kovork"]=2603,["Molok the Crusher"]=2604,["Zalas Witherbark"]=2605,["Nimar the Slayer"]=2606,["Prince Galen Trollbane"]=2607,["Commander Amaren"]=2608,["Geomancer Flintdagger"]=2609,["Shakes O'Breen"]=2610,["Fozruk"]=2611,["Lieutenant Valorcall"]=2612,["Air Force Alarm Bot (Alliance)"]=2614,["Air Force Alarm Bot (Horde)"]=2615,["Privateer Groy"]=2616,["Hammerfall Peon"]=2618,["Hammerfall Grunt"]=2619,["Prairie Dog"]=2620,["Hammerfall Guardian"]=2621,["Sly Garrett"]=2622,["Spirit of Old"]=2623,["Gazban"]=2624,["Viznik Goldgrubber"]=2625,["Old Man Heming"]=2626,["Grarnik Goodstitch"]=2627,["Dalaran Worker"]=2628,["Earthbind Totem"]=2630,["Princess Poobah"]=2634,["Elder Snapjaw Crocolisk"]=2635,["Blackwater Deckhand"]=2636,["Syndicate Bomb"]=2637,["Syndicate Spectre"]=2638,["Vilebranch Axe Thrower"]=2639,["Vilebranch Witch Doctor"]=2640,["Vilebranch Headhunter"]=2641,["Vilebranch Shadowcaster"]=2642,["Vilebranch Berserker"]=2643,["Vilebranch Hideskinner"]=2644,["Vilebranch Shadow Hunter"]=2645,["Vilebranch Blood Drinker"]=2646,["Vilebranch Soul Eater"]=2647,["Vilebranch Aman'zasi Guard"]=2648,["Witherbark Scalper"]=2649,["Witherbark Zealot"]=2650,["Witherbark Hideskinner"]=2651,["Witherbark Venomblood"]=2652,["Witherbark Sadist"]=2653,["Witherbark Caller"]=2654,["Green Sludge"]=2655,["Jade Ooze"]=2656,["Trained Razorbeak"]=2657,["Razorbeak Gryphon"]=2658,["Razorbeak Skylord"]=2659,["Narkk"]=2663,["Kelsey Yance"]=2664,["Ward of Laze"]=2667,["Danielle Zipstitch"]=2668,["Sheri Zipstitch"]=2669,["Xizk Goodstitch"]=2670,["Mechanical Squirrel"]=2671,["Cowardly Crosby"]=2672,["Target Dummy"]=2673,["Advanced Target Dummy"]=2674,["Explosive Sheep"]=2675,["Compact Harvest Reaper"]=2676,["Mechanical Dragonling"]=2678,["Wenna Silkbeard"]=2679,["Vilebranch Wolf Pup"]=2680,["Vilebranch Raiding Wolf"]=2681,["Fradd Swiftgear"]=2682,["Namdo Bizzfizzle"]=2683,["Rizz Loosebolt"]=2684,["Mazk Snipeshot"]=2685,["Witherbark Broodguard"]=2686,["Gnaz Blunderflame"]=2687,["Ruppo Zipcoil"]=2688,["Highvale Outrunner"]=2691,["Highvale Scout"]=2692,["Highvale Marksman"]=2693,["Highvale Ranger"]=2694,["Sara Balloo"]=2695,["Foggy MacKreel"]=2696,["Clyde Ranthal"]=2697,["George Candarte"]=2698,["Rikqiz"]=2699,["Captain Nials"]=2700,["Dustbelcher Ogre"]=2701,["Zengu"]=2703,["Hanashi"]=2704,["Brewmeister Bilger"]=2705,["Tor'gan"]=2706,["Shadra"]=2707,["Archmage Malin"]=2708,["Phin Odelic"]=2711,["Quae"]=2712,["Kinelory"]=2713,["Forsaken Courier"]=2714,["Dustbelcher Brute"]=2715,["Dustbelcher Wyrmhunter"]=2716,["Dustbelcher Mauler"]=2717,["Dustbelcher Shaman"]=2718,["Dustbelcher Lord"]=2719,["Dustbelcher Ogre Mage"]=2720,["Forsaken Bodyguard"]=2721,["Stone Golem"]=2723,["Scalding Whelp"]=2725,["Scorched Guardian"]=2726,["Crag Coyote"]=2727,["Feral Crag Coyote"]=2728,["Elder Crag Coyote"]=2729,["Rabid Crag Coyote"]=2730,["Ridge Stalker"]=2731,["Ridge Huntress"]=2732,["Apothecary Jorell"]=2733,["Ridge Stalker Patriarch"]=2734,["Lesser Rock Elemental"]=2735,["Greater Rock Elemental"]=2736,["Durtham Greldon"]=2737,["Stromgarde Cavalryman"]=2738,["Shadowforge Tunneler"]=2739,["Shadowforge Darkweaver"]=2740,["Shadowforge Chanter"]=2742,["Shadowforge Warrior"]=2743,["Shadowforge Commander"]=2744,["Ambassador Infernus"]=2745,["Archaedas"]=2748,["Barricade"]=2749,["War Golem"]=2751,["Rumbler"]=2752,["Barnabus"]=2753,["Anathemus"]=2754,["Myzrael"]=2755,["Blacklash"]=2757,["Hematus"]=2759,["Burning Exile"]=2760,["Cresting Exile"]=2761,["Thundering Exile"]=2762,["Thenan"]=2763,["Sleeby"]=2764,["Znort"]=2765,["Lolo the Lookout"]=2766,["First Mate Nilzlix"]=2767,["Professor Phizzlethorpe"]=2768,["Captain Steelgut"]=2769,["Tallow"]=2770,["Drum Fel"]=2771,["Korin Fel"]=2772,["Or'Kalar"]=2773,["Doctor Draxlegauge"]=2774,["Daggerspine Marauder"]=2775,["Vengeful Surge"]=2776,["Deckhand Moishe"]=2778,["Prince Nazjak"]=2779,["Caretaker Nevlin"]=2780,["Caretaker Weston"]=2781,["Caretaker Alaric"]=2782,["Marez Cowl"]=2783,["King Magni Bronzebeard"]=2784,["Theldurin the Lost"]=2785,["Gerrig Bonegrip"]=2786,["Zaruk"]=2787,["Apprentice Kryten"]=2788,["Skuerto"]=2789,["Grand Mason Marblesten"]=2790,["Enraged Rock Elemental"]=2791,["Gor'mul"]=2792,["Kor'gresh Coldrage"]=2793,["Summoned Guardian"]=2794,["Faelyssa"]=2796,["Hovrak Gutrender"]=2797,["Pand Stonebinder"]=2798,["Lucian Fenner"]=2799,["Tresa MacGregor"]=2801,["Susan Tillinghast"]=2802,["Malygen"]=2803,["Kurden Bloodclaw"]=2804,["Deneb Walker"]=2805,["Bale"]=2806,["Vikki Lonsav"]=2808,["Hammon Karwn"]=2810,["Drovnar Strongbrew"]=2812,["Narj Deepslice"]=2814,["Androd Fadran"]=2816,["Rigglefuzz"]=2817,["Slagg"]=2818,["Tunkk"]=2819,["Graud"]=2820,["Keena"]=2821,["Starving Buzzard"]=2829,["Parched Buzzard"]=2830,["Giant Buzzard"]=2831,["Nixxrax Fillamug"]=2832,["Myizz Luckycatch"]=2834,["Cedrik Prose"]=2835,["Brikk Keencraft"]=2836,["Jaxin Chong"]=2837,["Crazk Sparks"]=2838,["Haren Kanmae"]=2839,["Kizz Bluntstrike"]=2840,["Wigcik"]=2842,["Jutak"]=2843,["Hurklor"]=2844,["Fargon Mortalak"]=2845,["Blixrez Goodstitch"]=2846,["Jansen Underwood"]=2847,["Glyx Brewright"]=2848,["Qixdi Goodstitch"]=2849,["Broken Tooth"]=2850,["Urda"]=2851,["Enslaved Druid of the Talon"]=2852,["Freed Druid of the Talon"]=2853,["Snang"]=2855,["Angrun"]=2856,["Thund"]=2857,["Gringer"]=2858,["Gyll"]=2859,["Sigrun Ironhew"]=2860,["Gorrik"]=2861,["[UNUSED] Henria Derth"]=2870,["Grunenstur Balindom"]=2876,["Peria Lamenur"]=2878,["Karrina Mekenda"]=2879,["[UNUSED] Hurom Juggendolf"]=2880,["Durdek Karrin"]=2881,["Prismatic Exile"]=2887,["Garek"]=2888,["Stonevault Seer"]=2892,["Stonevault Bonesnapper"]=2893,["Stonevault Shaman"]=2894,["Dustbelcher Warrior"]=2906,["Dustbelcher Mystic"]=2907,["Grawl"]=2908,["Hammertoe Grez"]=2909,["Prospector Ryedol"]=2910,["Archaeologist Flagongut"]=2911,["Chief Archaeologist Greywhisker"]=2912,["Archaeologist Hollee"]=2913,["Snake"]=2914,["Hammertoe's Spirit"]=2915,["Historian Karnik"]=2916,["Prospector Remtravel"]=2917,["Advisor Belgrum"]=2918,["Fam'retor Guardian"]=2919,["Lucien Tosselwrench"]=2920,["Lotwil Veriatus"]=2921,["Servo"]=2922,["Mangy Silvermane"]=2923,["Silvermane Wolf"]=2924,["Silvermane Howler"]=2925,["Silvermane Stalker"]=2926,["Vicious Owlbeast"]=2927,["Primitive Owlbeast"]=2928,["Savage Owlbeast"]=2929,["Sentinel Glynda Nal'Shea"]=2930,["Zaricotl"]=2931,["Magregan Deepshadow"]=2932,["Keeper Bel'dugur"]=2934,["Dagun the Ravenous"]=2937,["Lanie Reed"]=2941,["Ransin Donner"]=2943,["Boss Tho'grun"]=2944,["Murdaloc"]=2945,["Puppet of Helcular"]=2946,["Harken Windtotem"]=2947,["Mull Thunderhorn"]=2948,["Palemane Tanner"]=2949,["Palemane Skinner"]=2950,["Palemane Poacher"]=2951,["Bristleback Invaders"]=2952,["Bristleback Shaman"]=2953,["Bristleback Battleboar"]=2954,["Plainstrider"]=2955,["Adult Plainstrider"]=2956,["Elder Plainstrider"]=2957,["Prairie Wolf"]=2958,["Prairie Stalker"]=2959,["Prairie Wolf Alpha"]=2960,["Mountain Cougar"]=2961,["Windfury Harpy"]=2962,["Windfury Wind Witch"]=2963,["Windfury Sorceress"]=2964,["Windfury Matriarch"]=2965,["Young Battleboar"]=2966,["Galak Centaur"]=2967,["Galak Outrunner"]=2968,["Wiry Swoop"]=2969,["Swoop"]=2970,["Taloned Swoop"]=2971,["Kodo Calf"]=2972,["Kodo Bull"]=2973,["Kodo Matriarch"]=2974,["Venture Co. Hireling"]=2975,["Venture Co. Laborer"]=2976,["Venture Co. Taskmaster"]=2977,["Venture Co. Worker"]=2978,["Venture Co. Supervisor"]=2979,["Grull Hawkwind"]=2980,["Chief Hawkwind"]=2981,["Seer Graytongue"]=2982,["The Plains Vision"]=2983,["Seer Wiserunner"]=2984,["Ruul Eagletalon"]=2985,["Dorn Plainstalker"]=2986,["Eyahn Eagletalon"]=2987,["Morin Cloudstalker"]=2988,["Bael'dun Digger"]=2989,["Bael'dun Appraiser"]=2990,["Greatmother Hawkwind"]=2991,["Healing Ward V"]=2992,["Baine Bloodhoof"]=2993,["Ancestral Spirit"]=2994,["Tal"]=2995,["Torn"]=2996,["Jyn Stonehoof"]=2997,["Karn Stonehoof"]=2998,["Taur Stonehoof"]=2999,["Gibbert"]=3000,["Brek Stonehoof"]=3001,["Kurm Stonehoof"]=3002,["Fyr Mistrunner"]=3003,["Tepa"]=3004,["Mahu"]=3005,["Una"]=3007,["Mak"]=3008,["Bena Winterhoof"]=3009,["Mani Winterhoof"]=3010,["Teg Dawnstrider"]=3011,["Nata Dawnstrider"]=3012,["Komin Winterhoof"]=3013,["Nida Winterhoof"]=3014,["Kuna Thunderhorn"]=3015,["Tand"]=3016,["Nan Mistrunner"]=3017,["Hogor Thunderhoof"]=3018,["Delgo Ragetotem"]=3019,["Etu Ragetotem"]=3020,["Kard Ragetotem"]=3021,["Sunn Ragetotem"]=3022,["Sura Wildmane"]=3023,["Tah Winterhoof"]=3024,["Kaga Mistrunner"]=3025,["Aska Mistrunner"]=3026,["Naal Mistrunner"]=3027,["Kah Mistrunner"]=3028,["Sewa Mistrunner"]=3029,["Siln Skychaser"]=3030,["Tigor Skychaser"]=3031,["Beram Skychaser"]=3032,["Turak Runetotem"]=3033,["Sheal Runetotem"]=3034,["Flatland Cougar"]=3035,["Kym Wildmane"]=3036,["Sheza Wildmane"]=3037,["Kary Thunderhorn"]=3038,["Holt Thunderhorn"]=3039,["Urek Thunderhorn"]=3040,["Torm Ragetotem"]=3041,["Sark Ragetotem"]=3042,["Ker Ragetotem"]=3043,["Miles Welsh"]=3044,["Malakai Cross"]=3045,["Father Cobb"]=3046,["Archmage Shymm"]=3047,["Ursyn Ghull"]=3048,["Thurston Xane"]=3049,["Veren Tallstrider"]=3050,["Supervisor Fizsprocket"]=3051,["Skorn Whitecloud"]=3052,["Synge"]=3053,["Zarlman Two-Moons"]=3054,["Maur Raincaller"]=3055,["Ghost Howl"]=3056,["Cairne Bloodhoof"]=3057,["Arra'chea"]=3058,["Harutt Thunderhorn"]=3059,["Gart Mistrunner"]=3060,["Lanka Farshot"]=3061,["Meela Dawnstrider"]=3062,["Krang Stonehoof"]=3063,["Gennia Runetotem"]=3064,["Yaw Sharpmane"]=3065,["Narm Skychaser"]=3066,["Pyall Silentstride"]=3067,["Mazzranache"]=3068,["Chaw Stronghide"]=3069,["Kawnie Softbreeze"]=3072,["Marjak Keenblade"]=3073,["Varia Hardhide"]=3074,["Bronk Steelrage"]=3075,["Moorat Longstride"]=3076,["Mahnott Roughwound"]=3077,["Kennah Hawkseye"]=3078,["Varg Windwhisper"]=3079,["Harant Ironbrace"]=3080,["Wunna Darkmane"]=3081,["Honor Guard"]=3083,["Bluffwatcher"]=3084,["Gloria Femmel"]=3085,["Gretchen Vogel"]=3086,["Crystal Boughman"]=3087,["Henry Chapal"]=3088,["Sherman Femmel"]=3089,["Gerald Crawley"]=3090,["Franklin Hamar"]=3091,["Tagain"]=3092,["Grod"]=3093,["Unseen"]=3094,["Fela"]=3095,["Captured Servant of Azora"]=3096,["Bernard Brubaker"]=3097,["Mottled Boar"]=3098,["Dire Mottled Boar"]=3099,["Elder Mottled Boar"]=3100,["Vile Familiar"]=3101,["Felstalker"]=3102,["Makrura Clacker"]=3103,["Makrura Shellhide"]=3104,["Makrura Snapclaw"]=3105,["Surf Crawler"]=3106,["Mature Surf Crawler"]=3107,["Encrusted Surf Crawler"]=3108,["Dreadmaw Crocolisk"]=3110,["Razormane Quilboar"]=3111,["Razormane Scout"]=3112,["Razormane Dustrunner"]=3113,["Razormane Battleguard"]=3114,["Dustwind Harpy"]=3115,["Dustwind Pillager"]=3116,["Dustwind Savage"]=3117,["Dustwind Storm Witch"]=3118,["Kolkar Drudge"]=3119,["Kolkar Outrunner"]=3120,["Durotar Tiger"]=3121,["Bloodtalon Taillasher"]=3122,["Bloodtalon Scythemaw"]=3123,["Scorpid Worker"]=3124,["Clattering Scorpid"]=3125,["Armored Scorpid"]=3126,["Venomtail Scorpid"]=3127,["Kul Tiras Sailor"]=3128,["Kul Tiras Marine"]=3129,["Thunder Lizard"]=3130,["Lightning Hide"]=3131,["Herble Baubbletump"]=3133,["Kzixx"]=3134,["Malissa"]=3135,["Clarise Gnarltree"]=3136,["Matt Johnson"]=3137,["Scott Carevin"]=3138,["Gar'Thok"]=3139,["Lar Prowltusk"]=3140,["Makrura Elder"]=3141,["Orgnil Soulscar"]=3142,["Gornek"]=3143,["Eitrigg"]=3144,["Zureetha Fargaze"]=3145,["Furl Scornbrow"]=3147,["Nez'raz"]=3149,["Hin Denburg"]=3150,["Frang"]=3153,["Jen'shan"]=3154,["Rwag"]=3155,["Nartok"]=3156,["Shikrik"]=3157,["Duokna"]=3158,["Kzan Thornslash"]=3159,["Huklah"]=3160,["Rarc"]=3161,["Burdrak Harglhelm"]=3162,["Uhgar"]=3163,["Jark"]=3164,["Ghrawt"]=3165,["Cutac"]=3166,["Wuark"]=3167,["Flakk"]=3168,["Tarshaw Jaggedscar"]=3169,["Kaplak"]=3170,["Thotar"]=3171,["Dhugru Gorelust"]=3172,["Swart"]=3173,["Dwukk"]=3174,["Krunn"]=3175,["Turuk Amberstill"]=3177,["Stuart Fleming"]=3178,["Harold Riggs"]=3179,["Dark Iron Entrepreneur"]=3180,["Fremal Doohickey"]=3181,["Junder Brokk"]=3182,["Yarrog Baneshadow"]=3183,["Miao'zan"]=3184,["Mishiki"]=3185,["K'waii"]=3186,["Tai'tasi"]=3187,["Master Gadrin"]=3188,["Kor'ghan"]=3189,["Rhinag"]=3190,["Cook Torka"]=3191,["Lieutenant Benedict"]=3192,["Misha Tor'kren"]=3193,["Vel'rin Fang"]=3194,["Burning Blade Thug"]=3195,["Burning Blade Neophyte"]=3196,["Burning Blade Fanatic"]=3197,["Burning Blade Apprentice"]=3198,["Burning Blade Cultist"]=3199,["Fizzle Darkclaw"]=3203,["Gazz'uz"]=3204,["Zalazane"]=3205,["Voodoo Troll"]=3206,["Hexed Troll"]=3207,["Margoz"]=3208,["Brave Windfeather"]=3209,["Brave Proudsnout"]=3210,["Brave Lightninghorn"]=3211,["Brave Ironhorn"]=3212,["Brave Running Wolf"]=3213,["Brave Greathoof"]=3214,["Brave Strongbash"]=3215,["Neeru Fireblade"]=3216,["Brave Dawneagle"]=3217,["Brave Swiftwind"]=3218,["Brave Leaping Deer"]=3219,["Brave Darksky"]=3220,["Brave Rockhorn"]=3221,["Brave Wildrunner"]=3222,["Brave Rainchaser"]=3223,["Brave Cloudmane"]=3224,["Corrupted Mottled Boar"]=3225,["Corrupted Scorpid"]=3226,["Corrupted Bloodtalon Scythemaw"]=3227,["Corrupted Surf Crawler"]=3228,["Nazgrel"]=3230,["Corrupted Dreadmaw Crocolisk"]=3231,["Bristleback Interloper"]=3232,["Lorekeeper Raintotem"]=3233,["Lost Barrens Kodo"]=3234,["Greater Barrens Kodo"]=3235,["Barrens Kodo"]=3236,["Wooly Kodo"]=3237,["Stormhide"]=3238,["Thunderhead"]=3239,["Stormsnout"]=3240,["Savannah Patriarch"]=3241,["Zhevra Runner"]=3242,["Savannah Highmane"]=3243,["Greater Plainstrider"]=3244,["Ornery Plainstrider"]=3245,["Fleeting Plainstrider"]=3246,["Thunderhawk Hatchling"]=3247,["Barrens Giraffe"]=3248,["Greater Thunderhawk"]=3249,["Silithid Creeper"]=3250,["Silithid Grub"]=3251,["Silithid Swarmer"]=3252,["Silithid Harvester"]=3253,["Sunscale Lashtail"]=3254,["Sunscale Screecher"]=3255,["Sunscale Scytheclaw"]=3256,["Ishamuhale"]=3257,["Bristleback Hunter"]=3258,["Bristleback Water Seeker"]=3260,["Bristleback Thornweaver"]=3261,["Bristleback Geomancer"]=3263,["Razormane Hunter"]=3265,["Razormane Defender"]=3266,["Razormane Plunderer"]=3267,["Razormane Thornweaver"]=3268,["Razormane Geomancer"]=3269,["Elder Mystic Razorsnout"]=3270,["Razormane Mystic"]=3271,["Kolkar Wrangler"]=3272,["Kolkar Stormer"]=3273,["Kolkar Pack Runner"]=3274,["Kolkar Marauder"]=3275,["Witchwing Harpy"]=3276,["Witchwing Roguefeather"]=3277,["Witchwing Slayer"]=3278,["Witchwing Ambusher"]=3279,["Witchwing Windcaller"]=3280,["Sarkoth"]=3281,["Venture Co. Mercenary"]=3282,["Venture Co. Enforcer"]=3283,["Venture Co. Drudger"]=3284,["Venture Co. Peon"]=3285,["Venture Co. Overseer"]=3286,["Hana'zua"]=3287,["Spirit of Minshina"]=3289,["Deek Fizzlebizz"]=3290,["Greishan Ironstove"]=3291,["Brewmaster Drohn"]=3292,["Rezlak"]=3293,["Ophek"]=3294,["Sludge Anomaly"]=3295,["Orgrimmar Grunt"]=3296,["Sen'jin Watcher"]=3297,["Gabrielle Chase"]=3298,["Adder"]=3300,["Morgan Ladimore"]=3301,["Master Vornal"]=3304,["Grisha"]=3305,["Keldas"]=3306,["Karus"]=3309,["Doras"]=3310,["Olvia"]=3312,["Trak'gen"]=3313,["Urtharo"]=3314,["Tor'phan"]=3315,["Handor"]=3316,["Ollanus"]=3317,["Koma"]=3318,["Sana"]=3319,["Soran"]=3320,["Morgum"]=3321,["Kaja"]=3322,["Horthus"]=3323,["Grol'dar"]=3324,["Mirket"]=3325,["Zevrost"]=3326,["Gest"]=3327,["Ormok"]=3328,["Kor'jus"]=3329,["Muragus"]=3330,["Kareth"]=3331,["Lumak"]=3332,["Shankys"]=3333,["Rekkul"]=3334,["Hagrus"]=3335,["Takrin Pathseeker"]=3336,["Kargal Battlescar"]=3337,["Sergra Darkthorn"]=3338,["Captain Thalo'thas Brightsun"]=3339,["Gann Stonespire"]=3341,["Shan'ti"]=3342,["Grelkor"]=3343,["Kardris Dreamseeker"]=3344,["Godan"]=3345,["Kithas"]=3346,["Yelmak"]=3347,["Kor'geld"]=3348,["Ukra'nor"]=3349,["Asoran"]=3350,["Magenius"]=3351,["Ormak Grimshot"]=3352,["Grezz Ragefist"]=3353,["Sorek"]=3354,["Saru Steelfury"]=3355,["Sumi"]=3356,["Makaru"]=3357,["Gorina"]=3358,["Kiro"]=3359,["Koru"]=3360,["Shoma"]=3361,["Ogunaro Wolfrunner"]=3362,["Magar"]=3363,["Borya"]=3364,["Karolek"]=3365,["Tamar"]=3366,["Felika"]=3367,["Borstan"]=3368,["Gotri"]=3369,["Urtrun Clanbringer"]=3370,["Tamaro"]=3371,["Sarlek"]=3372,["Arnok"]=3373,["Bael'dun Excavator"]=3374,["Bael'dun Foreman"]=3375,["Bael'dun Soldier"]=3376,["Bael'dun Rifleman"]=3377,["Bael'dun Officer"]=3378,["Burning Blade Bruiser"]=3379,["Burning Blade Acolyte"]=3380,["Southsea Brigand"]=3381,["Southsea Cannoneer"]=3382,["Southsea Cutthroat"]=3383,["Southsea Privateer"]=3384,["Theramore Marine"]=3385,["Theramore Preserver"]=3386,["Jorn Skyseer"]=3387,["Mahren Skyseer"]=3388,["Regthar Deathgate"]=3389,["Apothecary Helbrim"]=3390,["Gazlowe"]=3391,["Prospector Khazgorm"]=3392,["Captain Fairmount"]=3393,["Barak Kodobane"]=3394,["Verog the Dervish"]=3395,["Hezrul Bloodmark"]=3396,["Kolkar Bloodcharger"]=3397,["Gesharahan"]=3398,["Zamja"]=3399,["Xen'to"]=3400,["Shenthul"]=3401,["Zando'zan"]=3402,["Sian'tsu"]=3403,["Jandi"]=3404,["Zeal'aya"]=3405,["Xor'juul"]=3406,["Sian'dur"]=3407,["Zel'mak"]=3408,["Zendo'jian"]=3409,["Jin'sora"]=3410,["Denni'ka"]=3411,["Nogg"]=3412,["Sovik"]=3413,["General Twinbraid"]=3414,["Savannah Huntress"]=3415,["Savannah Matriarch"]=3416,["Living Flame"]=3417,["Kirge Sternhorn"]=3418,["Apothecary Zamah"]=3419,["Feegly the Exiled"]=3421,["Thunderhawk Cloudscraper"]=3424,["Savannah Prowler"]=3425,["Zhevra Charger"]=3426,["Korran"]=3428,["Thork"]=3429,["Mangletooth"]=3430,["Grenthar"]=3431,["Mankrik"]=3432,["Tatternack Steelforge"]=3433,["Nak"]=3434,["Lok Orcbane"]=3435,["Kuz"]=3436,["Kreenig Snarlsnout"]=3438,["Wizzlecrank's Shredder"]=3439,["Melor Stonehoof"]=3441,["Sputtervalve"]=3442,["Grub"]=3443,["Dig Rat"]=3444,["Supervisor Lugwizzle"]=3445,["Mebok Mizzyrix"]=3446,["Pawe Mistrunner"]=3447,["Tonga Runetotem"]=3448,["Darsok Swiftdagger"]=3449,["Defias Companion"]=3450,["Pilot Wizzlecrank"]=3451,["Serena Bloodfeather"]=3452,["Wharfmaster Dizzywig"]=3453,["Cannoneer Smythe"]=3454,["Cannoneer Whessan"]=3455,["Razormane Pathfinder"]=3456,["Razormane Stalker"]=3457,["Razormane Seer"]=3458,["Razormane Warfrenzy"]=3459,["Oasis Snapjaw"]=3461,["Elder Barrens Giraffe"]=3462,["Wandering Barrens Giraffe"]=3463,["Gazrog"]=3464,["Gilthares Firebough"]=3465,["Zhevra Courser"]=3466,["Baron Longshore"]=3467,["Ancient of Lore"]=3468,["Ancient of War"]=3469,["Rathorian"]=3470,["Tinkerer Sniggles"]=3471,["Washte Pawne"]=3472,["Owatanka"]=3473,["Lakota'mani"]=3474,["Echeyakee"]=3475,["Isha Awak"]=3476,["Hraq"]=3477,["Traugh"]=3478,["Nargal Deatheye"]=3479,["Moorane Hearthgrain"]=3480,["Barg"]=3481,["Tari'qa"]=3482,["Jahan Hawkwing"]=3483,["Kil'hala"]=3484,["Wrahk"]=3485,["Halija Whitestrider"]=3486,["Kalyimah Stormcloud"]=3487,["Uthrok"]=3488,["Zargh"]=3489,["Hula'mahi"]=3490,["Ironzar"]=3491,["Vexspindle"]=3492,["Grazlix"]=3493,["Tinkerwiz"]=3494,["Gagsprocket"]=3495,["Fuzruckle"]=3496,["Kilxx"]=3497,["Jazzik"]=3498,["Ranik"]=3499,["Tarhus"]=3500,["Horde Guard"]=3501,["Ratchet Bruiser"]=3502,["Silithid Protector"]=3503,["Gil"]=3504,["Pat"]=3505,["Andi"]=3507,["Mikey"]=3508,["Geoff"]=3509,["Twain"]=3510,["Steven"]=3511,["Jimmy"]=3512,["Miss Danna"]=3513,["Tenaron Stormgrip"]=3514,["Corithras Moonrage"]=3515,["Arch Druid Fandral Staghelm"]=3516,["Rellian Greenspyre"]=3517,["Thomas Miller"]=3518,["Sentinel Arynia Cloudsbreak"]=3519,["Ol' Emma"]=3520,["Ak'Zeloth"]=3521,["Constance Brisboise"]=3522,["Bowen Brisboise"]=3523,["Spirit Wolf"]=3524,["Healing Stream Totem"]=3527,["Pyrewood Armorer"]=3528,["Moonrage Armorer"]=3529,["Pyrewood Tailor"]=3530,["Moonrage Tailor"]=3531,["Pyrewood Leatherworker"]=3532,["Moonrage Leatherworker"]=3533,["Wallace the Blind"]=3534,["Blackmoss the Fetid"]=3535,["Kris Legace"]=3536,["Zixil"]=3537,["Overwatch Mark I"]=3538,["Ott"]=3539,["Hal McAllister"]=3540,["Sarah Raycroft"]=3541,["Jaysin Lanyda"]=3542,["Robert Aebischer"]=3543,["Jason Lemieux"]=3544,["Claude Erksine"]=3545,["Bernie Heisten"]=3546,["Hamlin Atkins"]=3547,["Selina Weston"]=3548,["Shelene Rhobart"]=3549,["Martine Tramblay"]=3550,["Patrice Dwyer"]=3551,["Alexandre Lefevre"]=3552,["Sebastian Meloche"]=3553,["Andrea Boynton"]=3554,["Johan Focht"]=3555,["Andrew Hilbert"]=3556,["Guillaume Sorouy"]=3557,["Healing Ward"]=3560,["Kyrai"]=3561,["Alaindia"]=3562,["Flatland Prowler"]=3566,["Tallonkai Swiftroot"]=3567,["Mist"]=3568,["Bogling"]=3569,["Cleansed Timberling"]=3570,["Teldrassil Sentinel"]=3571,["Zizzek"]=3572,["Mana Spring Totem"]=3573,["Ambermill Brewmaster"]=3577,["Ambermill Miner"]=3578,["Stoneclaw Totem"]=3579,["Crafticus Rabbitus"]=3580,["Sewer Beast"]=3581,["Aman"]=3582,["Barithras Moonshade"]=3583,["Therylune"]=3584,["Therysil"]=3585,["Miner Johnson"]=3586,["Lyrai"]=3587,["Khardan Proudblade"]=3588,["Keina"]=3589,["Janna Brightmoon"]=3590,["Freja Nightwing"]=3591,["Andiss"]=3592,["Alyissia"]=3593,["Frahun Shadewhisper"]=3594,["Shanda"]=3595,["Ayanna Everstride"]=3596,["Mardant Strongoak"]=3597,["Kyra Windblade"]=3598,["Jannok Breezesong"]=3599,["Laurna Morninglight"]=3600,["Dazalar"]=3601,["Kal"]=3602,["Cyndra Kindwhisper"]=3603,["Malorne Bladeleaf"]=3604,["Nadyia Maneweaver"]=3605,["Alanna Raveneye"]=3606,["Androl Oakhand"]=3607,["Aldia"]=3608,["Shalomon"]=3609,["Jeena Featherbow"]=3610,["Brannol Eaglemoon"]=3611,["Sinda"]=3612,["Meri Ironweave"]=3613,["Narret Shadowgrove"]=3614,["Devrak"]=3615,["Onu"]=3616,["Lordaeron Citizen"]=3617,["Ghost Saber"]=3619,["Harruk"]=3620,["Kurll"]=3621,["Grokor"]=3622,["Zudd"]=3624,["Rarck"]=3625,["Jenn Langston"]=3626,["Erich Lohan"]=3627,["Steven Lohan"]=3628,["David Langston"]=3629,["Deviate Coiler"]=3630,["Deviate Stinglash"]=3631,["Deviate Creeper"]=3632,["Deviate Slayer"]=3633,["Deviate Stalker"]=3634,["Deviate Ravager"]=3636,["Deviate Guardian"]=3637,["Devouring Ectoplasm"]=3638,["Sentinel Tysha Moonblade"]=3639,["Evolving Ectoplasm"]=3640,["Deviate Lurker"]=3641,["Cerellean Whiteclaw"]=3644,["Thundris Windweaver"]=3649,["Asterion"]=3650,["Trigore the Lasher"]=3652,["Kresh"]=3653,["Mutanus the Devourer"]=3654,["Mad Magglish"]=3655,["Sentinel Elissa Starbreeze"]=3657,["Lizzarik"]=3658,["Jorb"]=3659,["Athrikus Narassin"]=3660,["Balthule Shadowstrike"]=3661,["Delmanis the Hated"]=3662,["Delgren the Purifier"]=3663,["Ilkrud Magthrull"]=3664,["Crane Operator Bigglefuzz"]=3665,["Wizbang Cranktoggle"]=3666,["Anaya Dawnrunner"]=3667,["Lord Cobrahn"]=3669,["Lord Pythas"]=3670,["Lady Anacondra"]=3671,["Boahn"]=3672,["Lord Serpentis"]=3673,["Skum"]=3674,["Muyoh"]=3678,["Naralex"]=3679,["Serpentbloom Snake"]=3680,["Wisp"]=3681,["Vrang Wildgore"]=3682,["Kiknikle"]=3683,["Pizznukle"]=3684,["Harb Clawhoof"]=3685,["Reban Freerunner"]=3688,["Laer Stepperunner"]=3689,["Kar Stormsinger"]=3690,["Raene Wolfrunner"]=3691,["Volcor"]=3692,["Terenthis"]=3693,["Sentinel Selarin"]=3694,["Grimclaw"]=3695,["Ran Bloodtooth"]=3696,["Bolyun"]=3698,["Jadenvis Seawatcher"]=3700,["Tharnariun Treetender"]=3701,["Alanndarian Nightsong"]=3702,["Krulmoo Fullmoon"]=3703,["Mahani"]=3704,["Gahroot"]=3705,["Tai'jin"]=3706,["Ken'jai"]=3707,["Gruna"]=3708,["Wrathtail Myrmidon"]=3711,["Wrathtail Razortail"]=3712,["Wrathtail Wave Rider"]=3713,["Wrathtail Sea Witch"]=3715,["Wrathtail Sorceress"]=3717,["Mystlash Hydra"]=3721,["Mystlash Flayer"]=3722,["Dark Strand Cultist"]=3725,["Dark Strand Enforcer"]=3727,["Dark Strand Adept"]=3728,["Dark Strand Excavator"]=3730,["Forsaken Seeker"]=3732,["Forsaken Herbalist"]=3733,["Orc Overseer"]=3734,["Apothecary Falthis"]=3735,["Darkslayer Mordenthal"]=3736,["Saltspittle Puddlejumper"]=3737,["Saltspittle Warrior"]=3739,["Saltspittle Muckdweller"]=3740,["Saltspittle Oracle"]=3742,["Foulweald Warrior"]=3743,["Foulweald Pathfinder"]=3745,["Foulweald Den Watcher"]=3746,["Foulweald Shaman"]=3748,["Foulweald Ursa"]=3749,["Foulweald Totemic"]=3750,["Xavian Rogue"]=3752,["Xavian Betrayer"]=3754,["Xavian Felsworn"]=3755,["Xavian Hellcaller"]=3757,["Felmusk Satyr"]=3758,["Felmusk Rogue"]=3759,["Felmusk Felsworn"]=3762,["Felmusk Shadowstalker"]=3763,["Bleakheart Satyr"]=3765,["Bleakheart Trickster"]=3767,["Bleakheart Shadowstalker"]=3770,["Bleakheart Hellcaller"]=3771,["Lesser Felguard"]=3772,["Akkrilus"]=3773,["Felslayer"]=3774,["Syurana"]=3779,["Singed Shambler"]=3780,["Shadethicket Wood Shaper"]=3781,["Shadethicket Stone Mover"]=3782,["Shadethicket Raincaller"]=3783,["Shadethicket Bark Ripper"]=3784,["Terrowulf Fleshripper"]=3789,["Terrowulf Shadow Weaver"]=3791,["Terrowulf Packlord"]=3792,["Druid of the Talon"]=3794,["Druid of the Claw"]=3795,["Cenarion Protector"]=3797,["Severed Druid"]=3799,["Severed Sleeper"]=3801,["Severed Dreamer"]=3802,["Severed Keeper"]=3803,["Forsaken Intruder"]=3804,["Forsaken Infiltrator"]=3806,["Forsaken Assassin"]=3807,["Forsaken Dark Stalker"]=3808,["Ashenvale Bear"]=3809,["Elder Ashenvale Bear"]=3810,["Giant Ashenvale Bear"]=3811,["Clattering Crawler"]=3812,["Spined Crawler"]=3814,["Blink Dragon"]=3815,["Wild Buck"]=3816,["Shadowhorn Stag"]=3817,["Elder Shadowhorn Stag"]=3818,["Wildthorn Stalker"]=3819,["Wildthorn Venomspitter"]=3820,["Wildthorn Lurker"]=3821,["Ghostpaw Runner"]=3823,["Ghostpaw Howler"]=3824,["Ghostpaw Alpha"]=3825,["[UNUSED] Ancient Guardian"]=3831,["Cenarion Vindicator"]=3833,["Crazed Ancient"]=3834,["Biletoad"]=3835,["Mountaineer Pebblebitty"]=3836,["Vesprystus"]=3838,["Druid of the Fang"]=3840,["Teldira Moonfeather"]=3841,["Brombar Higgleby"]=3842,["Anaya"]=3843,["Healing Ward IV"]=3844,["Shindrell Swiftfire"]=3845,["Talen"]=3846,["Orendil Broadleaf"]=3847,["Kayneth Stillwind"]=3848,["Deathstalker Adamant"]=3849,["Sorcerer Ashcrombe"]=3850,["Shadowfang Whitescalp"]=3851,["Shadowfang Moonwalker"]=3853,["Shadowfang Wolfguard"]=3854,["Shadowfang Darksoul"]=3855,["Shadowfang Glutton"]=3857,["Shadowfang Ragetooth"]=3859,["Bleak Worg"]=3861,["Slavering Worg"]=3862,["Lupine Horror"]=3863,["Fel Steed"]=3864,["Shadow Charger"]=3865,["Vile Bat"]=3866,["Blood Seeker"]=3868,["Lesser Gargoyle"]=3869,["Stone Sleeper"]=3870,["Deathsworn Captain"]=3872,["Tormented Officer"]=3873,["Haunted Servitor"]=3875,["Wailing Guardsman"]=3877,["Dark Strand Assassin"]=3879,["Sentinel Melyria Frostshadow"]=3880,["Grimtak"]=3881,["Zlagk"]=3882,["Moodan Sungrain"]=3883,["Jhawna Oatwind"]=3884,["Sentinel Velene Starstrike"]=3885,["Razorclaw the Butcher"]=3886,["Baron Silverlaine"]=3887,["Korra"]=3888,["Brakgul Deathbringer"]=3890,["Teronis' Corpse"]=3891,["Relara Whitemoon"]=3892,["Forsaken Scout"]=3893,["Pelturas Whitemoon"]=3894,["Krolg"]=3897,["Aligar the Tormentor"]=3898,["Balizar the Umbrage"]=3899,["Caedakar the Vicious"]=3900,["Illiyana"]=3901,["Searing Totem II"]=3902,["Searing Totem III"]=3903,["Searing Totem IV"]=3904,["Healing Stream Totem II"]=3906,["Healing Stream Totem III"]=3907,["Healing Stream Totem IV"]=3908,["Healing Stream Totem V"]=3909,["Stoneclaw Totem II"]=3911,["Stoneclaw Totem III"]=3912,["Stoneclaw Totem IV"]=3913,["Rethilgore"]=3914,["Dagri"]=3915,["Shael'dryn"]=3916,["Befouled Water Elemental"]=3917,["Withered Ancient"]=3919,["Anilia"]=3920,["Thistlefur Ursa"]=3921,["Thistlefur Totemic"]=3922,["Thistlefur Den Watcher"]=3923,["Thistlefur Shaman"]=3924,["Thistlefur Avenger"]=3925,["Thistlefur Pathfinder"]=3926,["Wolf Master Nandos"]=3927,["Rotting Slime"]=3928,["Shadethicket Oracle"]=3931,["Bloodtooth Guard"]=3932,["Hai'zan"]=3933,["Innkeeper Boorand Plainswind"]=3934,["Toddrick"]=3935,["Shandris Feathermoon"]=3936,["Kira Songshine"]=3937,["Razormane Wolf"]=3939,["Taneel Darkwood"]=3940,["Uthil Mooncall"]=3941,["Mavoris Cloudsbreak"]=3942,["Ruuzel"]=3943,["Wrathtail Priestess"]=3944,["Caravaneer Ruzzgot"]=3945,["Velinde Starsong"]=3946,["Goblin Shipbuilder"]=3947,["Honni Goldenoat"]=3948,["Minor Water Guardian"]=3950,["Bhaldaran Ravenshade"]=3951,["Aeolynn"]=3952,["Tandaan Lightmane"]=3953,["Dalria"]=3954,["Shandrina"]=3955,["Harklan Moongrove"]=3956,["Jainay Featherbreeze"]=3957,["Lardan"]=3958,["Nantar"]=3959,["Ulthaan"]=3960,["Maliynn"]=3961,["Haljan Oakheart"]=3962,["Danlaar Nightstride"]=3963,["Kylanna"]=3964,["Cylania Rootstalker"]=3965,["Aayndia Floralwind"]=3967,["Sentry Totem"]=3968,["Fahran Silentblade"]=3969,["Llana"]=3970,["Houndmaster Loksey"]=3974,["Herod"]=3975,["Scarlet Commander Mograine"]=3976,["High Inquisitor Whitemane"]=3977,["Sage Truthseeker"]=3978,["Librarian Mae Paledust"]=3979,["Raleigh the Devout"]=3980,["Vorrel Sengutz"]=3981,["Monika Sengutz"]=3982,["Interrogator Vishas"]=3983,["Nancy Vishas"]=3984,["Grandpa Vishas"]=3985,["Sarilus Foulborne"]=3986,["Dal Bloodclaw"]=3987,["Venture Co. Operator"]=3988,["Venture Co. Logger"]=3989,["Venture Co. Deforester"]=3991,["Venture Co. Holdout"]=3992,["Venture Co. Machine Smith"]=3993,["Keeper Albagorm"]=3994,["Witch Doctor Jin'Zil"]=3995,["Faldreas Goeth'Shael"]=3996,["Windshear Vermin"]=3998,["Windshear Digger"]=3999,["Windshear Tunnel Rat"]=4001,["Windshear Stonecutter"]=4002,["Windshear Geomancer"]=4003,["Windshear Overlord"]=4004,["Deepmoss Creeper"]=4005,["Deepmoss Webspinner"]=4006,["Deepmoss Venomspitter"]=4007,["Cliff Stormer"]=4008,["Raging Cliff Stormer"]=4009,["Young Pridewing"]=4011,["Pridewing Wyvern"]=4012,["Pridewing Skyhunter"]=4013,["Pridewing Consort"]=4014,["Pridewing Patriarch"]=4015,["Fey Dragon"]=4016,["Wily Fey Dragon"]=4017,["Antlered Courser"]=4018,["Great Courser"]=4019,["Sap Beast"]=4020,["Corrupted Sap Beast"]=4021,["Bloodfury Harpy"]=4022,["Bloodfury Roguefeather"]=4023,["Bloodfury Slayer"]=4024,["Bloodfury Ambusher"]=4025,["Bloodfury Windcaller"]=4026,["Bloodfury Storm Witch"]=4027,["Charred Ancient"]=4028,["Blackened Ancient"]=4029,["Vengeful Ancient"]=4030,["Fledgling Chimaera"]=4031,["Young Chimaera"]=4032,["Enraged Stone Spirit"]=4034,["Furious Stone Spirit"]=4035,["Rogue Flame Spirit"]=4036,["Burning Ravager"]=4037,["Burning Destroyer"]=4038,["Cave Stalker"]=4040,["Scorched Basilisk"]=4041,["Singed Basilisk"]=4042,["Galthuk"]=4043,["Blackened Basilisk"]=4044,["Magatha Grimtotem"]=4046,["Zor Lonetree"]=4047,["Falfindel Waywarder"]=4048,["Seereth Stonebreak"]=4049,["Cenarion Caretaker"]=4050,["Cenarion Botanist"]=4051,["Cenarion Druid"]=4052,["Daughter of Cenarius"]=4053,["Laughing Sister"]=4054,["Mirkfallon Keeper"]=4056,["Son of Cenarius"]=4057,["Forest Spirit"]=4059,["Mirkfallon Dryad"]=4061,["Dark Iron Bombardier"]=4062,["Feeboz"]=4063,["Blackrock Scout"]=4064,["Blackrock Sentry"]=4065,["Nal'taszar"]=4066,["Twilight Runner"]=4067,["Serpent Messenger"]=4068,["Venture Co. Builder"]=4070,["Prisoner of Jin'Zil"]=4072,["XT:4"]=4073,["XT:9"]=4074,["Rat"]=4075,["Roach"]=4076,["Gaxim Rustfizzle"]=4077,["Collin Mauren"]=4078,["Sentinel Thenysil"]=4079,["Kaela Shadowspear"]=4080,["Lomac Gearstrip"]=4081,["Grawnal"]=4082,["Jeeda"]=4083,["Chylina"]=4084,["Nizzik"]=4085,["Veenix"]=4086,["Arias'ta Bladesinger"]=4087,["Elanaria"]=4088,["Sildanair"]=4089,["Astarii Starseeker"]=4090,["Jandria"]=4091,["Lariia"]=4092,["[Deprecated for 4.x]Galak Wrangler"]=4093,["[Deprecated for 4.x]Galak Scout"]=4094,["Galak Mauler"]=4095,["[Deprecated for 4.x]Galak Windchaser"]=4096,["Galak Stormer"]=4097,["Galak Marauder"]=4099,["Screeching Harpy"]=4100,["Screeching Roguefeather"]=4101,["Screeching Windcaller"]=4104,["Highperch Wyvern"]=4107,["Highperch Consort"]=4109,["Highperch Patriarch"]=4110,["Gravelsnout Kobold"]=4111,["Gravelsnout Vermin"]=4112,["Gravelsnout Digger"]=4113,["Gravelsnout Forager"]=4114,["Gravelsnout Surveyor"]=4116,["Cloud Serpent"]=4117,["Venomous Cloud Serpent"]=4118,["Elder Cloud Serpent"]=4119,["Thundering Boulderkin"]=4120,["Needles Cougar"]=4124,["Crag Stalker"]=4126,["Hecklefang Hyena"]=4127,["Hecklefang Stalker"]=4128,["Hecklefang Snarler"]=4129,["[Deprecated for 4.x]Silithid Searcher"]=4130,["[Deprecated for 4.x]Silithid Invader"]=4131,["Krkk'kx"]=4132,["[Deprecated for 4.x]Silithid Hive Drone"]=4133,["Jeen'ra Nightrunner"]=4138,["Scorpid Terror"]=4139,["Scorpid Reaver"]=4140,["[Deprecated for 4.x]Sparkleshell Tortoise"]=4142,["Sparkleshell Snapper"]=4143,["Sparkleshell Borer"]=4144,["Jocaste"]=4146,["[Deprecated for 4.x]Saltstone Basilisk"]=4147,["[Deprecated for 4.x]Saltstone Gazer"]=4150,["[Deprecated for 4.x]Saltstone Crystalhide"]=4151,["Salt Flats Scavenger"]=4154,["Idriana"]=4155,["Astaia"]=4156,["Salt Flats Vulture"]=4158,["Me'lynn"]=4159,["Ainethil"]=4160,["Lysheana"]=4161,["Syurna"]=4163,["Cylania"]=4164,["Elissa Dumas"]=4165,["Gazelle"]=4166,["Dendrythis"]=4167,["Elynna"]=4168,["Jaeana"]=4169,["Ellandrieth"]=4170,["Merelyssa"]=4171,["Anadyia"]=4172,["Landria"]=4173,["Vinasia"]=4175,["Melea"]=4177,["Ealyshia Dewwhisper"]=4180,["Fyrenna"]=4181,["Dalmond"]=4182,["Naram Longclaw"]=4183,["Geenia Sunshadow"]=4184,["Shaldyn"]=4185,["Mavralyn"]=4186,["Harlon Thornguard"]=4187,["Illyanie"]=4188,["Valdaron"]=4189,["Kyndri"]=4190,["Allyndia"]=4191,["Taldan"]=4192,["Grondal Moonbreeze"]=4193,["Ullanna"]=4194,["Tiyani"]=4195,["Silithid Swarm"]=4196,["Ken'zigla"]=4197,["Braelyn Firehand"]=4198,["Laird"]=4200,["Ziz Fizziks"]=4201,["Gerenzo Wrenchwhistle"]=4202,["Ariyell Skyshadow"]=4203,["Firodren Mooncaller"]=4204,["Dorion"]=4205,["Lairn"]=4208,["Garryeth"]=4209,["Alegorn"]=4210,["Dannelor"]=4211,["Telonis"]=4212,["Taladan"]=4213,["Erion Shadewhisper"]=4214,["Anishar"]=4215,["Chardryn"]=4216,["Mathrengyl Bearwalker"]=4217,["Denatharion"]=4218,["Fylerian Nightwing"]=4219,["Cyroen"]=4220,["Talaelar"]=4221,["Voloren"]=4222,["Fyldan"]=4223,["Saenorion"]=4225,["Ulthir"]=4226,["Vaean"]=4228,["Mythrin'dir"]=4229,["Yldan"]=4230,["Kieran"]=4231,["Glorandiir"]=4232,["Mythidan"]=4233,["Andrus"]=4234,["Turian"]=4235,["Cyridan"]=4236,["Caynrus"]=4240,["Mydrannul"]=4241,["Frostsaber Companion"]=4242,["Nightshade"]=4243,["Shadow"]=4244,["Pesterhide Hyena"]=4248,["Pesterhide Snarler"]=4249,["Galak Packhound"]=4250,["Goblin Racer"]=4251,["Gnome Racer"]=4252,["Geofram Bouldertoe"]=4254,["Brogus Thunderbrew"]=4255,["Golnir Bouldertoe"]=4256,["Lana Thunderbrew"]=4257,["Bengus Deepforge"]=4258,["Thurgrum Deepforge"]=4259,["Venture Co. Shredder"]=4260,["Darnassus Sentinel"]=4262,["Deepmoss Hatchling"]=4263,["Deepmoss Matriarch"]=4264,["Nyoma"]=4265,["Danlyia"]=4266,["Daelyshia"]=4267,["Chestnut Mare"]=4269,["Riding Wolf (Red)"]=4270,["Dire Wolf"]=4271,["Brown Wolf"]=4272,["Keeper Ordanus"]=4273,["Fenrus the Devourer"]=4274,["Archmage Arugal"]=4275,["Piznik"]=4276,["Eye of Kilrogg"]=4277,["Commander Springvale"]=4278,["Odo the Blindwatcher"]=4279,["Scarlet Preserver"]=4280,["Scarlet Scout"]=4281,["Scarlet Magician"]=4282,["Scarlet Sentry"]=4283,["Scarlet Augur"]=4284,["Scarlet Disciple"]=4285,["Scarlet Soldier"]=4286,["Scarlet Gallant"]=4287,["Scarlet Beastmaster"]=4288,["Scarlet Evoker"]=4289,["Scarlet Guardsman"]=4290,["Scarlet Diviner"]=4291,["Scarlet Protector"]=4292,["Scarlet Scryer"]=4293,["Scarlet Sorcerer"]=4294,["Scarlet Myrmidon"]=4295,["Scarlet Adept"]=4296,["Scarlet Conjuror"]=4297,["Scarlet Defender"]=4298,["Scarlet Chaplain"]=4299,["Scarlet Wizard"]=4300,["Scarlet Centurion"]=4301,["Scarlet Champion"]=4302,["Scarlet Abbot"]=4303,["Scarlet Tracking Hound"]=4304,["Kriggon Talsone"]=4305,["Scarlet Torturer"]=4306,["Heldan Galesong"]=4307,["Unfettered Spirit"]=4308,["Gorm Grimtotem"]=4309,["Cor Grimtotem"]=4310,["Holgar Stormaxe"]=4311,["Tharm"]=4312,["Gorkas"]=4314,["Kolkar Packhound"]=4316,["Nyse"]=4317,["Thyssiana"]=4319,["Caelyb"]=4320,["Baldruc"]=4321,["Searing Hatchling"]=4323,["Searing Whelp"]=4324,["Firemane Scalebane"]=4328,["Firemane Scout"]=4329,["Firemane Ash Tail"]=4331,["Firemane Flamecaller"]=4334,["Brimgore"]=4339,["Drywallow Crocolisk"]=4341,["Drywallow Vicejaw"]=4342,["Drywallow Snapper"]=4343,["Mottled Drywallow Crocolisk"]=4344,["Drywallow Daggermaw"]=4345,["Noxious Flayer"]=4346,["Noxious Reaver"]=4347,["Noxious Shredder"]=4348,["Bloodfen Raptor"]=4351,["Bloodfen Screecher"]=4352,["Bloodfen Scytheclaw"]=4355,["Bloodfen Razormaw"]=4356,["Bloodfen Lashtail"]=4357,["Mirefin Puddlejumper"]=4358,["Mirefin Murloc"]=4359,["Mirefin Warrior"]=4360,["Mirefin Muckdweller"]=4361,["Mirefin Coastrunner"]=4362,["Mirefin Oracle"]=4363,["Strashaz Warrior"]=4364,["Strashaz Serpent Guard"]=4366,["Strashaz Myrmidon"]=4368,["Strashaz Sorceress"]=4370,["Strashaz Siren"]=4371,["Strashaz Hydra"]=4374,["Darkmist Spider"]=4376,["Darkmist Hatchling"]=4377,["Darkmist Recluse"]=4378,["Darkmist Silkspinner"]=4379,["Darkmist Widow"]=4380,["Withervine Creeper"]=4382,["Withervine Rager"]=4385,["Withervine Bark Ripper"]=4386,["Withervine Mire Beast"]=4387,["Young Murk Thresher"]=4388,["Murk Thresher"]=4389,["Elder Murk Thresher"]=4390,["Swamp Ooze"]=4391,["Corrosive Swamp Ooze"]=4392,["Acidic Swamp Ooze"]=4393,["Bubbling Swamp Ooze"]=4394,["Mudrock Tortoise"]=4396,["Mudrock Spikeshell"]=4397,["Mudrock Burrower"]=4398,["Mudrock Borer"]=4399,["Mudrock Snapjaw"]=4400,["Muckshell Clacker"]=4401,["Muckshell Snapclaw"]=4402,["Muckshell Pincer"]=4403,["Muckshell Scrabbler"]=4404,["Muckshell Razorclaw"]=4405,["Teloren"]=4407,["Gatekeeper Kordurus"]=4409,["Darkfang Lurker"]=4411,["Darkfang Creeper"]=4412,["Darkfang Spider"]=4413,["Darkfang Venomspitter"]=4414,["Giant Darkfang Spider"]=4415,["Defias Strip Miner"]=4416,["Defias Taskmaster"]=4417,["Defias Wizard"]=4418,["Race Master Kronkrider"]=4419,["Overlord Ramtusk"]=4420,["Charlga Razorflank"]=4421,["Agathelos the Raging"]=4422,["Darnassian Protector"]=4423,["Aggem Thorncurse"]=4424,["Blind Hunter"]=4425,["Ward Guardian"]=4427,["Death Speaker Jargba"]=4428,["Goblin Pit Crewman"]=4429,["Gnome Pit Crewman"]=4430,["Razorfen Warrior"]=4435,["Razorfen Quilguard"]=4436,["Razorfen Warden"]=4437,["Razorfen Spearhide"]=4438,["Razorfen Totemic"]=4440,["Razorfen Defender"]=4442,["Deathstalker Vincent"]=4444,["Crazzle Sprysprocket"]=4449,["Rugfizzle"]=4450,["Auld Stonespire"]=4451,["Kravel Koalbeard"]=4452,["Wizzle Brassbolts"]=4453,["Fizzle Brassbolts"]=4454,["Red Jack Flint"]=4455,["Fiora Longears"]=4456,["Murkgill Forager"]=4457,["Murkgill Hunter"]=4458,["Murkgill Oracle"]=4459,["Murkgill Coldbringer"]=4460,["Murkgill Warrior"]=4461,["Blackrock Hunter"]=4462,["Blackrock Summoner"]=4463,["Blackrock Gladiator"]=4464,["Vilebranch Warrior"]=4465,["Vilebranch Scalper"]=4466,["Vilebranch Soothsayer"]=4467,["Jade Sludge"]=4468,["Emerald Ooze"]=4469,["Haunting Vision"]=4472,["Rotting Cadaver"]=4474,["Blighted Zombie"]=4475,["Fardel Dabyrie"]=4479,["Kenata Dabyrie"]=4480,["Marcel Dabyrie"]=4481,["Moktar Krin"]=4483,["Feero Ironhand"]=4484,["Belgrom Rockmaul"]=4485,["Genavie Callow"]=4486,["Parqual Fintallas"]=4488,["Braug Dimspirit"]=4489,["Grenka Bloodscreech"]=4490,["Scarlet Avenger"]=4493,["Scarlet Spellbinder"]=4494,["Gnome Pit Boss"]=4495,["Goblin Pit Boss"]=4496,["Captain Quirk"]=4497,["Maurin Bonesplitter"]=4498,["Rok'Alim the Pounder"]=4499,["Overlord Mok'Morokk"]=4500,["Draz'Zilb"]=4501,["Tharg"]=4502,["Mudcrush Durtfeet"]=4503,["Frostmaw"]=4504,["Bloodsail Deckhand"]=4505,["Bloodsail Swabby"]=4506,["Daisy"]=4507,["Willix the Importer"]=4508,["Sargath"]=4509,["Heralath Fallowbrook"]=4510,["Agam'ar"]=4511,["Rotting Agam'ar"]=4512,["Raging Agam'ar"]=4514,["Death's Head Acolyte"]=4515,["Death's Head Adept"]=4516,["Death's Head Priest"]=4517,["Death's Head Sage"]=4518,["Death's Head Seer"]=4519,["Razorfen Geomancer"]=4520,["Treshala Fallowbrook"]=4521,["Razorfen Dustweaver"]=4522,["Razorfen Groundshaker"]=4523,["Razorfen Earthbreaker"]=4525,["Wind Howler"]=4526,["Stone Rumbler"]=4528,["Razorfen Handler"]=4530,["Razorfen Beast Trainer"]=4531,["Razorfen Beastmaster"]=4532,["Tamed Hyena"]=4534,["Tamed Battleboar"]=4535,["Kraul Bat"]=4538,["Greater Kraul Bat"]=4539,["Scarlet Monk"]=4540,["Blood of Agamaggan"]=4541,["High Inquisitor Fairbanks"]=4542,["Bloodmage Thalnos"]=4543,["Krueg Skullsplitter"]=4544,["Nag'zehn"]=4545,["Bor'zehn"]=4546,["Tarkreu Shadowstalker"]=4547,["Steelsnap"]=4548,["William Montague"]=4549,["Ophelia Montague"]=4550,["Michael Garrett"]=4551,["Eunice Burch"]=4552,["Ronald Burch"]=4553,["Tawny Grisette"]=4554,["Eleanor Rusk"]=4555,["Gordon Wendham"]=4556,["Louis Warren"]=4557,["Lauren Newcomb"]=4558,["Timothy Weldon"]=4559,["Walter Ellingson"]=4560,["Daniel Bartlett"]=4561,["Thomas Mordan"]=4562,["Kaal Soulreaper"]=4563,["Luther Pickman"]=4564,["Richard Kerwin"]=4565,["Kaelystia Hatebringer"]=4566,["Pierce Shackleton"]=4567,["Anastasia Hartwell"]=4568,["Charles Seaton"]=4569,["Sydney Upton"]=4570,["Morley Bates"]=4571,["Silas Zimmer"]=4572,["Armand Cromwell"]=4573,["Lizbeth Cromwell"]=4574,["Hannah Akeley"]=4575,["Josef Gregorian"]=4576,["Millie Gregorian"]=4577,["Josephine Lister"]=4578,["Lucille Castleton"]=4580,["Salazar Bloch"]=4581,["Carolyn Ward"]=4582,["Miles Dexter"]=4583,["Gregory Charles"]=4584,["Ezekiel Graves"]=4585,["Graham Van Talen"]=4586,["Elizabeth Van Talen"]=4587,["Arthur Moore"]=4588,["Joseph Moore"]=4589,["Jonathan Chambers"]=4590,["Mary Edras"]=4591,["Nathaniel Steenwick"]=4592,["Christoph Walker"]=4593,["Angela Curthas"]=4594,["Baltus Fowler"]=4595,["James Van Brunt"]=4596,["Samuel Van Brunt"]=4597,["Brom Killian"]=4598,["Sarah Killian"]=4599,["Geoffrey Hartwell"]=4600,["Francis Eliot"]=4601,["Benijah Fenner"]=4602,["Nicholas Atwood"]=4603,["Abigail Sawyer"]=4604,["Basil Frye"]=4605,["Aelthalyste"]=4606,["Father Lankester"]=4607,["Father Lazarus"]=4608,["Doctor Marsh"]=4609,["Algernon"]=4610,["Doctor Herbert Halsey"]=4611,["Boyle"]=4612,["Christopher Drakul"]=4613,["Martha Alliestar"]=4614,["Katrina Alliestar"]=4615,["Lavinia Crowe"]=4616,["Thaddeus Webb"]=4617,["Martek the Exiled"]=4618,["Geltharis"]=4619,["Fobeed"]=4620,["Quilguard Champion"]=4623,["Booty Bay Bruiser"]=4624,["Death's Head Ward Keeper"]=4625,["Arugal's Voidwalker"]=4627,["Trackmaster Zherin"]=4629,["Pozzik"]=4630,["Wharfmaster Lozgil"]=4631,["Kolkar Centaur"]=4632,["Kolkar Scout"]=4633,["Kolkar Mauler"]=4634,["Kolkar Windchaser"]=4635,["Kolkar Battle Lord"]=4636,["Kolkar Destroyer"]=4637,["Magram Scout"]=4638,["Magram Outrunner"]=4639,["Magram Wrangler"]=4640,["Magram Windchaser"]=4641,["Magram Stormer"]=4642,["Magram Pack Runner"]=4643,["Magram Marauder"]=4644,["Magram Mauler"]=4645,["Gelkis Outrunner"]=4646,["Gelkis Scout"]=4647,["Gelkis Stamper"]=4648,["Gelkis Windchaser"]=4649,["Gelkis Earthcaller"]=4651,["Gelkis Mauler"]=4652,["Gelkis Marauder"]=4653,["Maraudine Scout"]=4654,["Maraudine Wrangler"]=4655,["Maraudine Mauler"]=4656,["Maraudine Windchaser"]=4657,["Maraudine Stormer"]=4658,["Maraudine Marauder"]=4659,["Maraudine Bonepaw"]=4660,["Gelkis Rumbler"]=4661,["Magram Bonepaw"]=4662,["Burning Blade Augur"]=4663,["Burning Blade Reaver"]=4664,["Burning Blade Adept"]=4665,["Burning Blade Felsworn"]=4666,["Burning Blade Shadowmage"]=4667,["Burning Blade Summoner"]=4668,["Hatefury Rogue"]=4670,["Hatefury Trickster"]=4671,["Hatefury Felsworn"]=4672,["Hatefury Betrayer"]=4673,["Hatefury Shadowstalker"]=4674,["Hatefury Hellcaller"]=4675,["Lesser Infernal"]=4676,["Doomwarder"]=4677,["Mana Eater"]=4678,["Nether Maiden"]=4679,["Doomwarder Captain"]=4680,["Mage Hunter"]=4681,["Nether Sister"]=4682,["Nether Sorceress"]=4684,["Ley Hunter"]=4685,["Deepstrider Giant"]=4686,["Deepstrider Searcher"]=4687,["Bonepaw Hyena"]=4688,["Starving Bonepaw"]=4689,["Rabid Bonepaw"]=4690,["Dread Swoop"]=4692,["Dread Flyer"]=4693,["Dread Ripper"]=4694,["Carrion Horror"]=4695,["Scorpashi Snapper"]=4696,["Scorpashi Lasher"]=4697,["Scorpashi Venomlash"]=4699,["Aged Kodo"]=4700,["Dying Kodo"]=4701,["Ancient Kodo"]=4702,["Burning Blade Invoker"]=4705,["Razzeric"]=4706,["Zuzubee"]=4707,["Shreev"]=4708,["Zamek"]=4709,["Gray Ram"]=4710,["Slitherblade Naga"]=4711,["Slitherblade Sorceress"]=4712,["Slitherblade Warrior"]=4713,["Slitherblade Myrmidon"]=4714,["Slitherblade Razortail"]=4715,["Slitherblade Tidehunter"]=4716,["Slitherblade Oracle"]=4718,["Slitherblade Sea Witch"]=4719,["Rizzle Brassbolts"]=4720,["Zangen Stonehoof"]=4721,["Rau Cliffrunner"]=4722,["Foreman Cozzle"]=4723,["Raging Thunder Lizard"]=4726,["Elder Thunder Lizard"]=4727,["Gritjaw Basilisk"]=4728,["Hulking Gritjaw Basilisk"]=4729,["Lelanai"]=4730,["Zachariah Post"]=4731,["Randal Hunter"]=4732,["Kildar"]=4752,["Jartsam"]=4753,["Ultham Ironhorn"]=4772,["Velma Warnam"]=4773,["Felicia Doan"]=4775,["White Ram"]=4777,["Riding Ram (Blue)"]=4778,["Brown Ram"]=4779,["Riding Ram (Black)"]=4780,["Snufflenose Gopher"]=4781,["Truk Wildbeard"]=4782,["Dawnwatcher Selgorm"]=4783,["Argent Guard Manados"]=4784,["Illusionary Nightmare"]=4785,["Dawnwatcher Shaedlass"]=4786,["Scout Thaelrid"]=4787,["Fallenroot Satyr"]=4788,["Fallenroot Rogue"]=4789,["Nazeer Bloodpike"]=4791,["Morgan Stern"]=4794,["Force of Nature"]=4795,["Fallenroot Shadowstalker"]=4798,["Fallenroot Hellcaller"]=4799,["Blackfathom Tide Priestess"]=4802,["Blackfathom Oracle"]=4803,["Blackfathom Sea Witch"]=4805,["Blackfathom Myrmidon"]=4807,["Twilight Acolyte"]=4809,["Twilight Reaver"]=4810,["Twilight Aquamancer"]=4811,["Twilight Loreseeker"]=4812,["Twilight Shadowmage"]=4813,["Twilight Elementalist"]=4814,["Murkshallow Snapclaw"]=4815,["Blindlight Murloc"]=4818,["Blindlight Muckdweller"]=4819,["Blindlight Oracle"]=4820,["Skittering Crustacean"]=4821,["Snapping Crustacean"]=4822,["Barbed Crustacean"]=4823,["Aku'mai Fisher"]=4824,["Aku'mai Snapjaw"]=4825,["Deep Pool Threshfin"]=4827,["Aku'mai"]=4829,["Old Serra'kis"]=4830,["Lady Sarevess"]=4831,["Twilight Lord Kelris"]=4832,["Theramore Infiltrator"]=4834,["Deadmire"]=4841,["Earthcaller Halmgar"]=4842,["Shadowforge Surveyor"]=4844,["Shadowforge Ruffian"]=4845,["Shadowforge Digger"]=4846,["Shadowforge Relic Hunter"]=4847,["Shadowforge Darkcaster"]=4848,["Shadowforge Archaeologist"]=4849,["Stonevault Cave Lurker"]=4850,["Stonevault Rockchewer"]=4851,["Stonevault Oracle"]=4852,["Stonevault Geomancer"]=4853,["Grimlok"]=4854,["Stonevault Brawler"]=4855,["Stonevault Cave Hunter"]=4856,["Stone Keeper"]=4857,["Stone Steward"]=4860,["Shrike Bat"]=4861,["Jadespine Basilisk"]=4863,["Obsidian Golem"]=4872,["Turhaw"]=4875,["Jawn Highmesa"]=4876,["Jandia"]=4877,["Montarr"]=4878,["Ogg'marr"]=4879,["Krak"]=4883,["Zulrg"]=4884,["Gregor MacVince"]=4885,["Hans Weston"]=4886,["Ghamoo-Ra"]=4887,["Marie Holdston"]=4888,["Torq Ironblast"]=4889,["Piter Verance"]=4890,["Dwane Wertle"]=4891,["Jensen Farran"]=4892,["Bartender Lillian"]=4893,["Craig Nollward"]=4894,["Smiling Jim"]=4895,["Charity Mipsy"]=4896,["Helenia Olden"]=4897,["Brant Jasperbloom"]=4898,["Uma Bartulm"]=4899,["Alchemist Narett"]=4900,["Sara Pierce"]=4901,["Mikal Pierce"]=4902,["Guard Byron"]=4921,["Guard Edward"]=4922,["Guard Jarad"]=4923,["Combat Master Criton"]=4924,["Krog"]=4926,["Caz Twosprocket"]=4941,["Mosarn"]=4943,["Captain Garran Vimes"]=4944,["Goblin Drag Car"]=4945,["Gnome Drag Car"]=4946,["Theramore Lieutenant"]=4947,["Adjutant Tesoran"]=4948,["Thrall"]=4949,["Spot"]=4950,["Theramore Practicing Guard"]=4951,["Theramore Combat Dummy"]=4952,["Moccasin"]=4953,["Uttnar"]=4954,["Theramore Archery Target 1"]=4955,["Haunting Spirit"]=4958,["Jorgen"]=4959,["Bishop DeLavey"]=4960,["Dashel Stonefist"]=4961,["Mikhail"]=4963,["Commander Samaul"]=4964,["Pained"]=4965,["Private Hendel"]=4966,["Archmage Tervosh"]=4967,["Lady Jaina Proudmoore"]=4968,["Old Town Thug"]=4969,["Slim's Friend"]=4971,["Kagoro"]=4972,["Guard Lasiter"]=4973,["Aldwin Laughlin"]=4974,["Theramore Archery Target 2"]=4975,["Murkshallow Softshell"]=4977,["Aku'mai Servant"]=4978,["Theramore Guard"]=4979,["Paval Reethe"]=4980,["Ben Trias"]=4981,["Thomas"]=4982,["Ogron"]=4983,["Argos Nightwhisper"]=4984,["World Warrior Trainer"]=4992,["Stockade Guard"]=4995,["Injured Stockade Guard"]=4996,["Nurse Lillian"]=5042,["Defias Rioter"]=5043,["Theramore Skirmisher"]=5044,["Private Hallan"]=5045,["Lieutenant Caldwell"]=5046,["Ellaercia"]=5047,["Deviate Adder"]=5048,["Lyesa Steelbrow"]=5049,["Edward Remington"]=5052,["Deviate Crocolisk"]=5053,["Krumn"]=5054,["Deviate Lasher"]=5055,["Deviate Dreadfang"]=5056,["Theramore Deserter"]=5057,["Wolfguard Worg"]=5058,["World Banker"]=5060,["Connor Rivers"]=5081,["Vincent Hyal"]=5082,["Paymaster Lendry"]=5083,["Sentry Point Guard"]=5085,["Captain Wymor"]=5086,["Do'gol"]=5087,["Falgran Hastil"]=5088,["Balos Jacken"]=5089,["Combat Master Szigeti"]=5090,["Guard Kahil"]=5091,["Guard Lana"]=5092,["Guard Narrisha"]=5093,["Guard Tark"]=5094,["Captain Andrews"]=5095,["Captain Thomas"]=5096,["Lupine Delusion"]=5097,["Soleil Stonemantle"]=5099,["Fillius Fizzlespinner"]=5100,["Bryllia Ironbrand"]=5101,["Dolman Steelfury"]=5102,["Grenil Steelfury"]=5103,["Bromiir Ormsen"]=5106,["Mangorn Flinthammer"]=5107,["Raena Flinthammer"]=5108,["Myra Tyrngaarde"]=5109,["Barim Jurgenstaad"]=5110,["Innkeeper Firebrew"]=5111,["Gwenna Firebrew"]=5112,["Kelv Sternhammer"]=5113,["Bilban Tosslespanner"]=5114,["Daera Brightspear"]=5115,["Olmin Burningbeard"]=5116,["Regnus Thundergranite"]=5117,["Brogun Stoneshield"]=5118,["Hegnar Swiftaxe"]=5119,["Brenwyn Wintersteel"]=5120,["Kelomir Ironhand"]=5121,["Skolmin Goldfury"]=5122,["Bretta Goldfury"]=5123,["Sognar Cliffbeard"]=5124,["Dolkin Craghelm"]=5125,["Olthran Craghelm"]=5126,["Fimble Finespindle"]=5127,["Bombus Finespindle"]=5128,["Lissyphus Finespindle"]=5129,["Jondor Steelbrow"]=5130,["Pithwick"]=5132,["Harick Boulderdrum"]=5133,["Jonivera Farmountain"]=5134,["Svalbrad Farmountain"]=5135,["Reyna Stonebranch"]=5137,["Gwina Stonebranch"]=5138,["Kurdrum Barleybeard"]=5139,["Edris Barleybeard"]=5140,["Theodrus Frostbeard"]=5141,["Braenna Flintcrag"]=5142,["Toldren Deepiron"]=5143,["Bink"]=5144,["Juli Stormkettle"]=5145,["Nittlebur Sparkfizzle"]=5146,["Valgar Highforge"]=5147,["Beldruk Doombrow"]=5148,["Brandur Ironhammer"]=5149,["Nissa Firestone"]=5150,["Ginny Longberry"]=5151,["Bingus"]=5152,["Jormund Stonebrow"]=5153,["Poranna Snowbraid"]=5154,["Ingrys Stonebrow"]=5155,["Maeva Snowbraid"]=5156,["Gimble Thistlefuzz"]=5157,["Tilli Thistlefuzz"]=5158,["Daryl Riknussun"]=5159,["Emrul Riknussun"]=5160,["Grimnur Stonebrand"]=5161,["Tansy Puddlefizz"]=5162,["Burbik Gearspanner"]=5163,["Grumnus Steelshaper"]=5164,["Hulfdan Blackbeard"]=5165,["Ormyr Flinteye"]=5166,["Fenthwick"]=5167,["Tynnus Venomsprout"]=5169,["Hjoldir Stoneblade"]=5170,["Thistleheart"]=5171,["Briarthorn"]=5172,["Alexander Calder"]=5173,["Springspindle Fizzlegear"]=5174,["Gearcutter Cogspinner"]=5175,["Tally Berryfizz"]=5177,["Soolie Berryfizz"]=5178,["Theramore Sentry"]=5184,["Hammerhead Shark"]=5185,["Basking Shark"]=5186,["Garyl"]=5188,["Thrumn"]=5189,["Merill Pleasance"]=5190,["Shalumon"]=5191,["Rebecca Laughlin"]=5193,["Black Riding Wolf"]=5194,["Brown Riding Wolf"]=5195,["Gray Riding Wolf"]=5196,["Red Riding Wolf"]=5197,["Arctic Riding Wolf"]=5198,["Medic Tamberlyn"]=5199,["Medic Helaina"]=5200,["Archery Target"]=5202,["Apothecary Zinge"]=5204,["Murk Slitherer"]=5224,["Murk Spitter"]=5225,["Murk Worm"]=5226,["Saturated Ooze"]=5228,["Gordunni Ogre"]=5229,["Gordunni Brute"]=5232,["Gordunni Mauler"]=5234,["Fungal Ooze"]=5235,["Gordunni Shaman"]=5236,["Gordunni Ogre Mage"]=5237,["Gordunni Battlemaster"]=5238,["Gordunni Mage-Lord"]=5239,["Gordunni Warlock"]=5240,["Gordunni Warlord"]=5241,["Cursed Atal'ai"]=5243,["Zukk'ash Stinger"]=5244,["Zukk'ash Wasp"]=5245,["Zukk'ash Worker"]=5246,["Zukk'ash Tunneler"]=5247,["Woodpaw Mongrel"]=5249,["Woodpaw Trapper"]=5251,["Woodpaw Brute"]=5253,["Woodpaw Mystic"]=5254,["Woodpaw Reaver"]=5255,["Atal'ai Warrior"]=5256,["Woodpaw Alpha"]=5258,["Atal'ai Witch Doctor"]=5259,["Groddoc Ape"]=5260,["Enthralled Atal'ai"]=5261,["Groddoc Thunderer"]=5262,["Mummified Atal'ai"]=5263,["Unliving Atal'ai"]=5267,["Ironfur Bear"]=5268,["Atal'ai Priest"]=5269,["Atal'ai Corpse Eater"]=5270,["Atal'ai Deathwalker"]=5271,["Grizzled Ironfur Bear"]=5272,["Atal'ai High Priest"]=5273,["Ironfur Patriarch"]=5274,["Sprite Dragon"]=5276,["Nightmare Scalebane"]=5277,["Sprite Darter"]=5278,["Nightmare Wyrmkin"]=5280,["Nightmare Wanderer"]=5283,["Longtooth Runner"]=5286,["Longtooth Howler"]=5287,["Rabid Longtooth"]=5288,["Hakkari Frostwing"]=5291,["Feral Scar Yeti"]=5292,["Hulking Feral Scar"]=5293,["Enraged Feral Scar"]=5295,["Rage Scar Yeti"]=5296,["Elder Rage Scar"]=5297,["Ferocious Rage Scar"]=5299,["Frayfeather Hippogryph"]=5300,["Frayfeather Stagwing"]=5304,["Frayfeather Skystormer"]=5305,["Frayfeather Patriarch"]=5306,["Vale Screecher"]=5307,["Rogue Vale Screecher"]=5308,["Lethlas"]=5312,["Phantim"]=5314,["Jademir Oracle"]=5317,["Jademir Tree Warder"]=5319,["Jademir Boughguard"]=5320,["Coast Crawl Snapclaw"]=5327,["Coast Crawl Deepseer"]=5328,["Hatecrest Warrior"]=5331,["Hatecrest Wave Rider"]=5332,["Hatecrest Serpent Guard"]=5333,["Hatecrest Myrmidon"]=5334,["Hatecrest Screamer"]=5335,["Hatecrest Sorceress"]=5336,["Hatecrest Siren"]=5337,["Lady Szallah"]=5343,["Diamond Head"]=5345,["Bloodroar the Stalker"]=5346,["Antilus the Soarer"]=5347,["Dreamwatcher Forktongue"]=5348,["Arash-ethis"]=5349,["Qirot"]=5350,["Old Grizzlegut"]=5352,["Itharius"]=5353,["Gnarl Leafbrother"]=5354,["Firewing Defender"]=5355,["Snarler"]=5356,["Land Walker"]=5357,["Cliff Giant"]=5358,["Shore Strider"]=5359,["Deep Strider"]=5360,["Wave Strider"]=5361,["Northspring Harpy"]=5362,["Northspring Roguefeather"]=5363,["Northspring Slayer"]=5364,["Northspring Windcaller"]=5366,["Brohann Caskbelly"]=5384,["Watcher Mahar Ba"]=5385,["Acolyte Dellis"]=5386,["High Explorer Magellas"]=5387,["Ingo Woolybush"]=5388,["Prospector Gunstan"]=5389,["Sage Palerunner"]=5390,["Galen Goodward"]=5391,["Yarr Hammerstone"]=5392,["Quartermaster Lungertz"]=5393,["Neeka Bloodscar"]=5394,["Felgur Twocuts"]=5395,["Captain Pentigast"]=5396,["Uthek the Wise"]=5397,["Warug"]=5398,["Veyzhak the Cannibal"]=5399,["Zekkis"]=5400,["Kazkaz the Unholy"]=5401,["Khan Hratha"]=5402,["Riding White Stallion"]=5403,["Nightmare"]=5407,["Harvester Swarm"]=5409,["Krinkle Goodsteel"]=5411,["Gurda Wildmane"]=5412,["Furen Longbeard"]=5413,["Apothecary Faustin"]=5414,["Infiltrator Marksen"]=5416,["Deathstalker Zraedus"]=5418,["Glasshide Basilisk"]=5419,["Glasshide Gazer"]=5420,["Glasshide Petrifier"]=5421,["Scorpid Hunter"]=5422,["Scorpid Tail Lasher"]=5423,["Scorpid Dunestalker"]=5424,["Starving Blisterpaw"]=5425,["Blisterpaw Hyena"]=5426,["Rabid Blisterpaw"]=5427,["Roc"]=5428,["Fire Roc"]=5429,["Searing Roc"]=5430,["Surf Glider"]=5431,["Giant Surf Glider"]=5432,["Coral Shark"]=5434,["Sand Shark"]=5435,["Hazzali Wasp"]=5441,["Hazzali Stinger"]=5450,["Hazzali Swarmer"]=5451,["Hazzali Worker"]=5452,["Hazzali Tunneler"]=5453,["Hazzali Sandreaver"]=5454,["Centipaar Wasp"]=5455,["Centipaar Stinger"]=5456,["Centipaar Swarmer"]=5457,["Centipaar Worker"]=5458,["Centipaar Tunneler"]=5459,["Centipaar Sandreaver"]=5460,["Sea Elemental"]=5461,["Sea Spray"]=5462,["Watchmaster Sorigal"]=5464,["Land Rager"]=5465,["Coast Strider"]=5466,["Deep Dweller"]=5467,["Dune Smasher"]=5469,["Raging Dune Smasher"]=5470,["Dunemaul Ogre"]=5471,["Dunemaul Enforcer"]=5472,["Dunemaul Ogre Mage"]=5473,["Dunemaul Brute"]=5474,["Dunemaul Warlock"]=5475,["Watcher Biggs"]=5476,["Noboru the Cudgel"]=5477,["Wu Shen"]=5479,["Ilsa Corbin"]=5480,["Thistleshrub Dew Collector"]=5481,["Stephen Ryback"]=5482,["Erika Tate"]=5483,["Brother Benjamin"]=5484,["Thistleshrub Rootshaper"]=5485,["Brother Joshua"]=5489,["Gnarled Thistleshrub"]=5490,["Arthur the Faithful"]=5491,["Katherine the Pure"]=5492,["Arnold Leland"]=5493,["Catherine Leland"]=5494,["Ursula Deline"]=5495,["Sandahl"]=5496,["Jennea Cannon"]=5497,["Elsharin"]=5498,["Lilyssia Nightbreeze"]=5499,["Tel'Athir"]=5500,["Kaerbrus"]=5501,["Shylamiir"]=5502,["Eldraeith"]=5503,["Sheldras Moontree"]=5504,["Theridran"]=5505,["Maldryn"]=5506,["Strumner Flintheel"]=5508,["Kathrum Axehand"]=5509,["Thulman Flintcrag"]=5510,["Therum Deepforge"]=5511,["Kaita Deepforge"]=5512,["Gelman Stonehand"]=5513,["Brooke Stonebraid"]=5514,["Einris Brightspear"]=5515,["Ulfir Ironbeard"]=5516,["Thorfin Stoneshield"]=5517,["Lilliam Sparkspindle"]=5518,["Billibub Cogspinner"]=5519,["Spackle Thornberry"]=5520,["War Party Kodo"]=5523,["Caravan Watcher"]=5524,["Caravan Packhorse"]=5525,["Clarice Foster"]=5543,["Grunt Zuul"]=5546,["Grunt Tharlak"]=5547,["Simon Tanner"]=5564,["Jillian Tanner"]=5565,["Tannysa"]=5566,["Sellandus"]=5567,["Captured Leper Gnome"]=5568,["Fizzlebang Booms"]=5569,["Bruuk Barleybeard"]=5570,["Dar"]=5591,["Tok'Kar"]=5592,["Katar"]=5593,["Alchemist Pestlezugg"]=5594,["Ironforge Guard"]=5595,["Grunt Komak"]=5597,["Atal'ai Exile"]=5598,["Kon Yelloweyes"]=5599,["Khan Dez'hepah"]=5600,["Khan Jehn"]=5601,["Khan Shaka"]=5602,["Grunt Mojka"]=5603,["Tisa Martine"]=5605,["Goma"]=5606,["Roger"]=5607,["Jamin"]=5608,["Zazo"]=5609,["Kozish"]=5610,["Barkeep Morag"]=5611,["Gimrizz Shadowcog"]=5612,["Doyo'da"]=5613,["Sarok"]=5614,["Wastewander Rogue"]=5615,["Wastewander Thief"]=5616,["Wastewander Shadow Mage"]=5617,["Wastewander Bandit"]=5618,["Bartender Wental"]=5620,["Ongeku"]=5622,["Wastewander Assassin"]=5623,["Undercity Guardian"]=5624,["Theramore Commando"]=5629,["Rhapsody Shindigger"]=5634,["Falstad Wildhammer"]=5635,["Gryphon Master Talonaxe"]=5636,["Roetten Stonehammer"]=5637,["Kreldig Ungor"]=5638,["Craven Drok"]=5639,["Keldran"]=5640,["Takata Steelblade"]=5641,["Vahlarriel Demonslayer"]=5642,["Tyranis Malem"]=5643,["Dalinda Malem"]=5644,["Sandfury Hideskinner"]=5645,["Sandfury Axe Thrower"]=5646,["Sandfury Firecaller"]=5647,["Sandfury Shadowcaster"]=5648,["Sandfury Blood Drinker"]=5649,["Sandfury Witch Doctor"]=5650,["Patrick Garrett"]=5651,["Undercity Practice Dummy"]=5652,["Tyler"]=5653,["Edward"]=5654,["Robert Gossom"]=5655,["Richard Van Brunt"]=5656,["Marla Fowler"]=5657,["Chloe Curthas"]=5658,["Andrew Hartwell"]=5659,["Riley Walker"]=5660,["Brother Malach"]=5661,["Sergeant Houser"]=5662,["Travist Bosk"]=5663,["Eldin Partridge"]=5664,["Alyssa Blaye"]=5665,["Gunther's Visage"]=5666,["Venya Marthand"]=5667,["Mattie Alred"]=5668,["Helena Atwood"]=5669,["Edrick Killian"]=5670,["Practice Target"]=5674,["Carendin Halgar"]=5675,["Summoned Voidwalker"]=5676,["Summoned Succubus"]=5677,["Lysta Bancroft"]=5679,["Male Human Captive"]=5680,["Female Human Captive"]=5681,["Dalin Forgewright"]=5682,["Comar Villard"]=5683,["Captive Ghoul"]=5685,["Captive Zombie"]=5686,["Captive Abomination"]=5687,["Innkeeper Renee"]=5688,["Clyde Kellen"]=5690,["Dalin Forgewright Projection"]=5691,["Comar Villard Projection"]=5692,["Godrick Farsan"]=5693,["High Sorcerer Andromath"]=5694,["Vance Undergloom"]=5695,["Gerard Abernathy"]=5696,["Theresa"]=5697,["Joanna Whitehall"]=5698,["Leona Tharpe"]=5699,["Samantha Shackleton"]=5700,["Selina Pickman"]=5701,["Jezelle Pruitt"]=5702,["Winifred Kerwin"]=5703,["Adrian Bartlett"]=5704,["Victor Bartholomew"]=5705,["Davitt Hickson"]=5706,["Reginald Grimsford"]=5707,["Spawn of Hakkar"]=5708,["Shade of Eranikus"]=5709,["Jammal'an the Prophet"]=5710,["Ogom the Wretched"]=5711,["Zolo"]=5712,["Gasher"]=5713,["Loro"]=5714,["Hukku"]=5715,["Zul'Lor"]=5716,["Mijan"]=5717,["Rothos"]=5718,["Morphaz"]=5719,["Weaver"]=5720,["Dreamscythe"]=5721,["Hazzas"]=5722,["Warug's Target Dummy"]=5723,["Ageron Kargal"]=5724,["Deathguard Lundmark"]=5725,["Jezelle's Felhunter"]=5726,["Jezelle's Felsteed"]=5727,["Jezelle's Succubus"]=5728,["Jezelle's Voidwalker"]=5729,["Jezelle's Imp"]=5730,["Apothecary Vallia"]=5731,["Apothecary Katrina"]=5732,["Apothecary Lycanus"]=5733,["Apothecary Keever"]=5734,["Caged Human Female"]=5735,["Caged Human Male"]=5736,["Caged Dwarf Male"]=5738,["Caged Squirrel"]=5739,["Caged Rabbit"]=5741,["Caged Toad"]=5742,["Caged Sheep"]=5743,["Cedric Stumpel"]=5744,["Hepzibah Sedgewick"]=5747,["Killian Sanatha"]=5748,["Kayla Smithe"]=5749,["Gina Lang"]=5750,["Corporal Melkins"]=5752,["Martha Strain"]=5753,["Zane Bradford"]=5754,["Deviate Viper"]=5755,["Deviate Venomwing"]=5756,["Lilly"]=5757,["Leo Sarn"]=5758,["Nurse Neela"]=5759,["Lord Azrethoc"]=5760,["Deviate Shambler"]=5761,["Deviate Moccasin"]=5762,["Nightmare Ectoplasm"]=5763,["Ruzan"]=5765,["Savannah Cub"]=5766,["Nalpak"]=5767,["Ebru"]=5768,["Arch Druid Hamuul Runetotem"]=5769,["Nara Wildmane"]=5770,["Jugkar Grim'rod"]=5771,["Lord Azrethoc's Image"]=5772,["Jugkar Grim'rod's Image"]=5773,["Riding Wolf"]=5774,["Verdan the Everliving"]=5775,["Summoned Viper"]=5779,["Cloned Ectoplasm"]=5780,["Silithid Creeper Egg"]=5781,["Crildor"]=5782,["Kalldan Felmoon"]=5783,["Waldor"]=5784,["Sister Hatelash"]=5785,["Snagglespear"]=5786,["Enforcer Emilgund"]=5787,["Gelgann Direforge"]=5788,["Drag Master Miglen"]=5792,["Aean Swiftriver"]=5797,["Thora Feathermoon"]=5798,["Hannah Bladeleaf"]=5799,["Marcus Bel"]=5800,["Treant Ally"]=5806,["The Rake"]=5807,["Warlord Kolkanis"]=5808,["Sergeant Curtis"]=5809,["Uzzek"]=5810,["Kamari"]=5811,["Tumi"]=5812,["Innkeeper Thulbek"]=5814,["Kurgul"]=5815,["Katis"]=5816,["Shimra"]=5817,["Mirelle Tremayne"]=5819,["Gillian Moore"]=5820,["Sheldon Von Croy"]=5821,["Felweaver Scornn"]=5822,["Death Flayer"]=5823,["Captain Flat Tusk"]=5824,["Geolord Mottle"]=5826,["Brontus"]=5827,["Humar the Pridelord"]=5828,["Snort the Heckler"]=5829,["Sister Rathtalon"]=5830,["Swiftmane"]=5831,["Thunderstomp"]=5832,["Margol the Rager"]=5833,["Azzere the Skyblade"]=5834,["Foreman Grills"]=5835,["Engineer Whirleygig"]=5836,["Stonearm"]=5837,["Brokespear"]=5838,["Dark Iron Geologist"]=5839,["Dark Iron Steamsmith"]=5840,["Rocklance"]=5841,["Takk the Leaper"]=5842,["Slave Worker"]=5843,["Dark Iron Slaver"]=5844,["Dark Iron Taskmaster"]=5846,["Heggin Stonewhisker"]=5847,["Malgin Barleybrew"]=5848,["Digger Flameforge"]=5849,["Blazing Elemental"]=5850,["Captain Gerogg Hammertoe"]=5851,["Inferno Elemental"]=5852,["Tempered War Golem"]=5853,["Heavy War Golem"]=5854,["Magma Elemental"]=5855,["Glassweb Spider"]=5856,["Searing Lava Spider"]=5857,["Greater Lava Spider"]=5858,["Hagg Taurenbane"]=5859,["Twilight Dark Shaman"]=5860,["Twilight Fire Guard"]=5861,["Twilight Geomancer"]=5862,["Geopriest Gukk'rok"]=5863,["Swinegart Spearhide"]=5864,["Dishu"]=5865,["Evil Squirrel"]=5868,["Krond"]=5870,["Larhka"]=5871,["Stoneskin Totem"]=5873,["Strength of Earth Totem"]=5874,["Gan'rul Bloodeye"]=5875,["Thun'grim Firegaze"]=5878,["Fire Nova Totem"]=5879,["Un'Thuwa"]=5880,["Cursed Sycamore"]=5881,["Pephredo"]=5882,["Enyo"]=5883,["Mai'ah"]=5884,["Deino"]=5885,["Gwyn Farrow"]=5886,["Canaga Earthcaller"]=5887,["Seer Ravenfeather"]=5888,["Mesa Earth Spirit"]=5889,["Redrock Earth Spirit"]=5890,["Minor Manifestation of Earth"]=5891,["Searn Firewarder"]=5892,["Minor Manifestation of Fire"]=5893,["Corrupt Minor Manifestation of Water"]=5894,["Minor Manifestation of Water"]=5895,["Fire Spirit"]=5896,["Corrupt Water Spirit"]=5897,["Air Spirit"]=5898,["Brine"]=5899,["Telf Joolam"]=5900,["Islen Waterseer"]=5901,["Minor Manifestation of Air"]=5902,["Nyx Bloodrage"]=5903,["Prate Cloudseer"]=5905,["Xanis Flameweaver"]=5906,["Kranal Fiss"]=5907,["Grunt Dogran"]=5908,["Cazul"]=5909,["Zankaja"]=5910,["Grunt Logmar"]=5911,["Deviate Faerie Dragon"]=5912,["Tremor Totem"]=5913,["Deviate Nightmare"]=5914,["Brother Ravenoak"]=5915,["Sentinel Amarassan"]=5916,["Clara Charles"]=5917,["Stoneskin Totem II"]=5919,["Stoneskin Totem III"]=5920,["Strength of Earth Totem II"]=5921,["Strength of Earth Totem III"]=5922,["Poison Cleansing Totem"]=5923,["Cleansing Totem"]=5924,["Grounding Totem"]=5925,["Frost Resistance Totem"]=5926,["Elemental Resistance Totem"]=5927,["Sorrow Wing"]=5928,["Magma Totem"]=5929,["Sister Riven"]=5930,["Foreman Rigger"]=5931,["Taskmaster Whipfang"]=5932,["Achellios the Banished"]=5933,["Heartrazor"]=5934,["Ironeye the Invincible"]=5935,["Orca"]=5936,["Vile Sting"]=5937,["Uthan Stillwater"]=5938,["Vira Younghoof"]=5939,["Harn Longcast"]=5940,["Lau'Tiki"]=5941,["Zansoa"]=5942,["Rawrk"]=5943,["Yonada"]=5944,["Owl Companion"]=5945,["Flametongue Totem"]=5950,["Hare"]=5951,["Den Grunt"]=5952,["Razor Hill Grunt"]=5953,["Tooga"]=5955,["Birgitte Cranston"]=5957,["Thuul"]=5958,["World Tauren Male Druid Trainer"]=5963,["Dreadmaul Ogre"]=5974,["Dreadmaul Ogre Mage"]=5975,["Dreadmaul Brute"]=5976,["Dreadmaul Mauler"]=5977,["Dreadmaul Warlock"]=5978,["Wretched Lost One"]=5979,["Portal Seeker"]=5981,["Black Slayer"]=5982,["Bonepicker Felfeeder"]=5983,["Starving Snickerfang"]=5984,["Snickerfang Hyena"]=5985,["Scorpok Stinger"]=5988,["Redstone Basilisk"]=5990,["Redstone Crystalhide"]=5991,["Ashmane Boar"]=5992,["Helboar"]=5993,["Zayus"]=5994,["Nethergarde Miner"]=5996,["Nethergarde Engineer"]=5997,["Nethergarde Foreman"]=5998,["Nethergarde Soldier"]=5999,["Nethergarde Cleric"]=6000,["Nethergarde Analyst"]=6001,["Nethergarde Riftwatcher"]=6002,["Nethergarde Officer"]=6003,["Shadowsworn Ritualist"]=6004,["Shadowsworn Thug"]=6005,["Shadowsworn Adept"]=6006,["Shadowsworn Enforcer"]=6007,["Shadowsworn Warlock"]=6008,["Shadowsworn Dreadweaver"]=6009,["Felhound"]=6010,["Felguard Sentry"]=6011,["Flametongue Totem II"]=6012,["Wayward Buzzard"]=6013,["X'yera"]=6014,["Torta"]=6015,["Elemental Protection Totem"]=6016,["Lava Spout Totem"]=6017,["Ur'kyo"]=6018,["Hornizz Brimbuzzle"]=6019,["Slimeshell Makrura"]=6020,["Boar Spirit"]=6021,["Breyk"]=6026,["Kitha"]=6027,["Burkrum"]=6028,["Thorvald Deepforge"]=6030,["Tormus Deepforge"]=6031,["Lake Frenzy"]=6033,["Lotherias"]=6034,["Razorfen Stalker"]=6035,["Aqua Guardian"]=6047,["Earthgrab Totem"]=6066,["Warug's Bodyguard"]=6068,["Maraudine Khan Guard"]=6069,["Maraudine Khan Advisor"]=6070,["Legion Hound"]=6071,["Diathorus the Seeker"]=6072,["Searing Infernal"]=6073,["Striped Frostsaber"]=6074,["Emerald Raptor"]=6075,["Riding Tallstrider (Ivory)"]=6076,["Auberdine Sentinel"]=6086,["Astranaar Sentinel"]=6087,["Harry Burlguard"]=6089,["Bartleby"]=6090,["Dellylah"]=6091,["Dead-Tooth Jack"]=6093,["Byancie"]=6094,["Shade"]=6107,["Azuregos"]=6109,["Fire Nova Totem II"]=6110,["Fire Nova Totem III"]=6111,["Windfury Totem"]=6112,["Vejrek"]=6113,["Muren Stormpike"]=6114,["Roaming Felguard"]=6115,["Highborne Apparition"]=6116,["Highborne Lichling"]=6117,["Varo'then's Ghost"]=6118,["Tog Rustsprocket"]=6119,["Lago Blackwrench"]=6120,["Remen Marcot"]=6121,["Gakin the Darkbinder"]=6122,["Dark Iron Spy"]=6123,["Captain Beld"]=6124,["Haldarr Satyr"]=6125,["Haldarr Trickster"]=6126,["Haldarr Felsworn"]=6127,["Vorlus Vilehoof"]=6128,["Draconic Magelord"]=6129,["Blue Scalebane"]=6130,["Draconic Mageweaver"]=6131,["Razorfen Servitor"]=6132,["Shade of Elura"]=6133,["Lord Arkkoroc"]=6134,["Arkkoran Clacker"]=6135,["Arkkoran Muckdweller"]=6136,["Arkkoran Pincer"]=6137,["Arkkoran Oracle"]=6138,["Highperch Soarer"]=6139,["Hetaera"]=6140,["Pridewing Soarer"]=6141,["Mathiel"]=6142,["Servant of Arkkoroc"]=6143,["Son of Arkkoroc"]=6144,["School of Fish"]=6145,["Cliff Breaker"]=6146,["Cliff Thunderer"]=6147,["Cliff Walker"]=6148,["Yorus Barleybrew"]=6166,["Chimaera Matriarch"]=6167,["Roogug"]=6168,["Klockmort Spannerspan"]=6169,["Gutspill"]=6170,["Duthorian Rall"]=6171,["Henze Faulk"]=6172,["Gazin Tenorm"]=6173,["Stephanie Turner"]=6174,["John Turner"]=6175,["Bath'rah the Windwatcher"]=6176,["Narm Faulk"]=6177,["Muiredon Battleforge"]=6178,["Tiza Battleforge"]=6179,["Defias Raider"]=6180,["Jordan Stilwell"]=6181,["Daphne Stilwell"]=6182,["Timbermaw Pathfinder"]=6184,["Timbermaw Warrior"]=6185,["Timbermaw Totemic"]=6186,["Timbermaw Den Watcher"]=6187,["Timbermaw Shaman"]=6188,["Timbermaw Ursa"]=6189,["Spitelash Warrior"]=6190,["Spitelash Screamer"]=6193,["Spitelash Serpent Guard"]=6194,["Spitelash Siren"]=6195,["Spitelash Myrmidon"]=6196,["Blood Elf Surveyor"]=6198,["Blood Elf Reclaimer"]=6199,["Legashi Satyr"]=6200,["Legashi Rogue"]=6201,["Legashi Hellcaller"]=6202,["Caverndeep Burrower"]=6206,["Caverndeep Ambusher"]=6207,["Caverndeep Invader"]=6208,["Caverndeep Looter"]=6209,["Caverndeep Pillager"]=6210,["Caverndeep Reaver"]=6211,["Dark Iron Agent"]=6212,["Irradiated Invader"]=6213,["Chomper"]=6215,["Irradiated Slime"]=6218,["Corrosive Lurker"]=6219,["Irradiated Horror"]=6220,["Addled Leper"]=6221,["Leprous Technician"]=6222,["Leprous Defender"]=6223,["Leprous Machinesmith"]=6224,["Mechano-Tank"]=6225,["Mechano-Flamewalker"]=6226,["Mechano-Frostwalker"]=6227,["Dark Iron Ambassador"]=6228,["Crowd Pummeler 9-60"]=6229,["Peacekeeper Security Suit"]=6230,["Techbot"]=6231,["Arcane Nullifier X-21"]=6232,["Mechanized Sentry"]=6233,["Mechanized Guardian"]=6234,["Electrocutioner 6000"]=6235,["Klannoc Macleod"]=6236,["Stockade Archer"]=6237,["Big Will"]=6238,["Cyclonian"]=6239,["Affray Challenger"]=6240,["Bailor Stonehand"]=6241,["Gelihast"]=6243,["Takar the Seer"]=6244,["Anathera"]=6245,["Latherion"]=6246,["Doan Karhan"]=6247,["Twiggy Flathead"]=6248,["Affray Spectator"]=6249,["Crawler"]=6250,["Strahad Farsan"]=6251,["Acolyte Magaz"]=6252,["Acolyte Fenrick"]=6253,["Acolyte Wytula"]=6254,["Menara Voidrender"]=6266,["Acolyte Porena"]=6267,["Summoned Felhunter"]=6268,["Mouse"]=6271,["Innkeeper Janene"]=6272,["Zarrin"]=6286,["Radnaal Maneweaver"]=6287,["Jayla"]=6288,["Rand Rhobart"]=6289,["Yonn Deepcut"]=6290,["Balthus Stoneflayer"]=6291,["Eladriel"]=6292,["Jorah Annison"]=6293,["Krom Stoutarm"]=6294,["Wilma Ranthal"]=6295,["Kurdram Stonehammer"]=6297,["Thelgrum Stonehammer"]=6298,["Delfrum Flintbeard"]=6299,["Elisa Steelhand"]=6300,["Gorbold Steelhand"]=6301,["Helene Peltskinner"]=6306,["Dannie Fizzwizzle"]=6328,["Irradiated Pillager"]=6329,["Young Wavethrasher"]=6347,["Wavethrasher"]=6348,["Great Wavethrasher"]=6349,["Makrinni Razorclaw"]=6350,["Storm Bay Oracle"]=6351,["Coralshell Lurker"]=6352,["Kurzen Mindslave"]=6366,["Donni Anthania"]=6367,["Cat"]=6368,["Coralshell Tortoise"]=6369,["Makrinni Scrabbler"]=6370,["Storm Bay Warrior"]=6371,["Makrinni Snapclaw"]=6372,["Dane Winslow"]=6373,["Cylina Darkheart"]=6374,["Thunderhead Hippogryph"]=6375,["Wren Darkspring"]=6376,["Thunderhead Stagwing"]=6377,["Thunderhead Skystormer"]=6378,["Thunderhead Patriarch"]=6379,["Thunderhead Consort"]=6380,["Jubahl Corpseseeker"]=6382,["Ward of Zanzil"]=6386,["Dranh"]=6387,["Zanzil Skeleton"]=6388,["Deathguard Podrig"]=6389,["Ulag the Cleaver"]=6390,["Holdout Warrior"]=6391,["Holdout Medic"]=6392,["Henen Ragetotem"]=6393,["Ruga Ragetotem"]=6394,["Sergeant Rutger"]=6395,["Holdout Technician"]=6407,["Ula'elek"]=6408,["Orm Stonehoof"]=6410,["Velora Nitely"]=6411,["Skeleton"]=6412,["Anguished Dead"]=6426,["Haunting Phantasm"]=6427,["Therzok"]=6446,["Gamon"]=6466,["Mennet Carkad"]=6467,["Black Skeletal Horse"]=6486,["Arcanist Doan"]=6487,["Fallen Champion"]=6488,["Ironspine"]=6489,["Azshir the Sleepless"]=6490,["Spirit Healer"]=6491,["Rift Spawn"]=6492,["Illusionary Phantasm"]=6493,["Tazan"]=6494,["Riznek"]=6495,["Brivelthwerp"]=6496,["Astor Hadren"]=6497,["Devilsaur"]=6498,["Ironhide Devilsaur"]=6499,["Tyrant Devilsaur"]=6500,["Stegodon"]=6501,["Plated Stegodon"]=6502,["Spiked Stegodon"]=6503,["Thunderstomp Stegodon"]=6504,["Ravasaur"]=6505,["Ravasaur Runner"]=6506,["Ravasaur Hunter"]=6507,["Venomhide Ravasaur"]=6508,["Bloodpetal Lasher"]=6509,["Bloodpetal Flayer"]=6510,["Bloodpetal Thresher"]=6511,["Bloodpetal Trapper"]=6512,["Un'Goro Stomper"]=6513,["Un'Goro Gorilla"]=6514,["Un'Goro Thunderer"]=6516,["Tar Beast"]=6517,["Tar Lurker"]=6518,["Tar Lord"]=6519,["Scorching Elemental"]=6520,["Living Blaze"]=6521,["Andron Gant"]=6522,["Dark Iron Rifleman"]=6523,["Tar Creeper"]=6527,["Tabetha"]=6546,["Suffering Victim"]=6547,["Magus Tirth"]=6548,["Demon of the Orb"]=6549,["Mana Surge"]=6550,["Gorishi Wasp"]=6551,["Gorishi Worker"]=6552,["Gorishi Reaver"]=6553,["Gorishi Stinger"]=6554,["Gorishi Tunneler"]=6555,["Muculent Ooze"]=6556,["Primal Ooze"]=6557,["Glutinous Ooze"]=6559,["Stone Guardian"]=6560,["Estelle Gendry"]=6566,["Ghok'kah"]=6567,["Vizzklick"]=6568,["Gnoarn"]=6569,["Fenwick Thatros"]=6570,["Travel Form (Druid)"]=6573,["Jun'ha"]=6574,["Scarlet Trainee"]=6575,["Brienna Starglow"]=6576,["Bingles Blastenheimer"]=6577,["Shoni the Shilent"]=6579,["Ravasaur Matriarch"]=6581,["Clutchmother Zavas"]=6582,["Gruff"]=6583,["King Mosh"]=6584,["Uhk'loc"]=6585,["Rokar Bladeshadow"]=6586,["Overseer Glibby"]=6606,["Harroc"]=6607,["Monnos the Elder"]=6646,["Magister Hawkhelm"]=6647,["Antilos"]=6648,["Lady Sesspira"]=6649,["General Fangferror"]=6650,["Gatekeeper Rageroar"]=6651,["Master Feardred"]=6652,["Huge Toad"]=6653,["Gelkak Gyromast"]=6667,["Lord Cyrik Blackforge"]=6668,["The Threshwackonator 4100"]=6669,["Westfall Woodworker"]=6670,["Baritanas Skyriver"]=6706,["Fahrad"]=6707,["Thalon"]=6726,["Innkeeper Brianna"]=6727,["Narnie"]=6728,["Morridune"]=6729,["Jinky Twizzlefixxit"]=6730,["Harlown Darkweave"]=6731,["Amie Pierce"]=6732,["Stonevault Basher"]=6733,["Innkeeper Hearthstove"]=6734,["Innkeeper Saelienne"]=6735,["Innkeeper Keldamyr"]=6736,["Innkeeper Shaussiy"]=6737,["Innkeeper Kimlya"]=6738,["Innkeeper Bates"]=6739,["Innkeeper Allison"]=6740,["Innkeeper Norman"]=6741,["Innkeeper Pala"]=6746,["Innkeeper Kauth"]=6747,["Water Spirit"]=6748,["Erma"]=6749,["Ravenholdt Guard"]=6766,["Lord Jorach Ravenholdt"]=6768,["Ravenholdt Assassin"]=6771,["Falkhaan Isenstrider"]=6774,["Antur Fallow"]=6775,["Magrin Rivermane"]=6776,["Zan Shivsproket"]=6777,["Melika Isenstrider"]=6778,["Smudge Thunderwood"]=6779,["Porthannius"]=6780,["Melarith"]=6781,["Hands Springsprocket"]=6782,["Calvin Montague"]=6784,["Ratslin Maime"]=6785,["Ukor"]=6786,["Yelnagi Blackarm"]=6787,["Den Mother"]=6788,["Thistle Cub"]=6789,["Innkeeper Trelayne"]=6790,["Innkeeper Wiley"]=6791,["Tannok Frosthammer"]=6806,["Innkeeper Skindle"]=6807,["Talvash del Kissel"]=6826,["Shore Crab"]=6827,["Dockmaster"]=6846,["Bodyguard"]=6866,["Tracking Hound"]=6867,["Jarkal Mossmeld"]=6868,["Onin MacHammar"]=6886,["Yalda"]=6887,["Baelog"]=6906,["Olaf"]=6908,["Sethir the Ancient"]=6909,["Revelosh"]=6910,["Minion of Sethir"]=6911,["Remains of a Paladin"]=6912,["Lost One Rift Traveler"]=6913,["Dockworker"]=6927,["Innkeeper Grosk"]=6928,["Innkeeper Gryshka"]=6929,["Innkeeper Karakul"]=6930,["Swamp Spirit"]=6932,["Lucius"]=6966,["Dran Droffers"]=6986,["Malton Droffers"]=6987,["Tiev Mordune"]=7007,["Arantir"]=7009,["Zilzibin Drumlore"]=7010,["Earthen Rocksmasher"]=7011,["Earthen Sculptor"]=7012,["Blackrock Guard"]=7013,["Flagglemurk the Cruel"]=7015,["Lady Vespira"]=7016,["Lord Sinslayer"]=7017,["Venomlash Scorpid"]=7022,["Obsidian Sentinel"]=7023,["Agent Kearnen"]=7024,["Blackrock Soldier"]=7025,["Blackrock Sorcerer"]=7026,["Blackrock Slayer"]=7027,["Blackrock Warlock"]=7028,["Blackrock Battlemaster"]=7029,["Shadowforge Geologist"]=7030,["Obsidian Elemental"]=7031,["Greater Obsidian Elemental"]=7032,["Firegut Ogre"]=7033,["Firegut Ogre Mage"]=7034,["Firegut Brute"]=7035,["Thaurissan Spy"]=7036,["Thaurissan Firewalker"]=7037,["Thaurissan Agent"]=7038,["War Reaver"]=7039,["Black Dragonspawn"]=7040,["Black Wyrmkin"]=7041,["Flamescale Dragonspawn"]=7042,["Flamescale Wyrmkin"]=7043,["Black Drake"]=7044,["Scalding Drake"]=7045,["Searscale Drake"]=7046,["Black Broodling"]=7047,["Scalding Broodling"]=7048,["Flamescale Broodling"]=7049,["Defias Drone"]=7050,["Malformed Defias Drone"]=7051,["Defias Tower Patroller"]=7052,["Klaven Mortwake"]=7053,["Blackrock Worg"]=7055,["Defias Tower Sentry"]=7056,["Digmaster Shovelphlange"]=7057,["Venture Co. Drone"]=7067,["Condemned Acolyte"]=7068,["Condemned Monk"]=7069,["Condemned Cleric"]=7070,["Cursed Paladin"]=7071,["Cursed Justicar"]=7072,["Writhing Mage"]=7075,["Earthen Guardian"]=7076,["Earthen Hallshaper"]=7077,["Cleft Scorpid"]=7078,["Viscous Fallout"]=7079,["Cursed Ooze"]=7086,["Killian Hagey"]=7087,["Thuwd"]=7088,["Mooranta"]=7089,["Shadowforge Ambusher"]=7091,["Tainted Ooze"]=7092,["Vile Ooze"]=7093,["Ironbeak Owl"]=7097,["Ironbeak Screecher"]=7098,["Ironbeak Hunter"]=7099,["Warpwood Moss Flayer"]=7100,["Warpwood Shredder"]=7101,["Dessecus"]=7104,["Jadefire Satyr"]=7105,["Jadefire Rogue"]=7106,["Jadefire Trickster"]=7107,["Jadefire Betrayer"]=7108,["Jadefire Felsworn"]=7109,["Jadefire Shadowstalker"]=7110,["Jadefire Hellcaller"]=7111,["Jaedenar Cultist"]=7112,["Jaedenar Guardian"]=7113,["Jaedenar Enforcer"]=7114,["Jaedenar Adept"]=7115,["Jaedenar Darkweaver"]=7118,["Jaedenar Warlock"]=7120,["Jaedenar Hound"]=7125,["Jaedenar Hunter"]=7126,["Toxic Horror"]=7132,["Infernal Bodyguard"]=7135,["Infernal Sentry"]=7136,["Immolatus"]=7137,["Irontree Wanderer"]=7138,["Irontree Stomper"]=7139,["Withered Protector"]=7149,["Deadwood Warrior"]=7153,["Deadwood Gardener"]=7154,["Deadwood Pathfinder"]=7155,["Deadwood Den Watcher"]=7156,["Deadwood Avenger"]=7157,["Deadwood Shaman"]=7158,["Wrenix the Wretched"]=7161,["Wrenix's Gizmotronic Apparatus"]=7166,["Polly"]=7167,["Polly"]=7168,["Thragomm"]=7170,["Lore Keeper of Norgannon"]=7172,["Stonevault Ambusher"]=7175,["Ancient Stone Keeper"]=7206,["Doc Mixilpixil"]=7207,["Noarm"]=7208,["Obsidian Shard"]=7209,["Sand Storm"]=7226,["Ironaya"]=7228,["Shayis Steelfury"]=7230,["Kelgruk Bloodaxe"]=7231,["Borgus Steelhand"]=7232,["Taskmaster Fizzule"]=7233,["Ferocitas the Dream Eater"]=7234,["Gnarlpine Mystic"]=7235,["Sandfury Shadowhunter"]=7246,["Sandfury Soul Eater"]=7247,["Ember"]=7266,["Chief Ukorz Sandscalp"]=7267,["Sandfury Guardian"]=7268,["Scarab"]=7269,["Sandfury Zombie"]=7270,["Witch Doctor Zum'rah"]=7271,["Theka the Martyr"]=7272,["Gahz'rilla"]=7273,["Sandfury Executioner"]=7274,["Shadowpriest Sezz'ziz"]=7275,["Zul'Farrak Dead Hero"]=7276,["Zul'Farrak Zombie"]=7286,["Foreman Silixiz"]=7287,["Grand Foreman Puzik Gallywix"]=7288,["Shadowforge Sharpshooter"]=7290,["Galgann Firehammer"]=7291,["Dinita Stonemantle"]=7292,["[UNUSED] Drayl"]=7293,["Shim'la"]=7294,["Shailiea"]=7295,["Corand"]=7296,["Gothard Winslow"]=7297,["Demnul Farmountain"]=7298,["Venture Co. Lookout"]=7307,["Venture Co. Patroller"]=7308,["Earthen Custodian"]=7309,["Mutated Venture Co. Drone"]=7310,["Uthel'nay"]=7311,["Dink"]=7312,["Priestess A'moora"]=7313,["Darnath Bladesinger"]=7315,["Sister Aquinne"]=7316,["Oben Rageclaw"]=7317,["Rageclaw"]=7318,["Lady Sathrah"]=7319,["Stonevault Mauler"]=7320,["Stonevault Flameweaver"]=7321,["Riding Tiger (Black)"]=7322,["Winstone Wolfe"]=7323,["Simone Cantrell"]=7324,["Master Kang"]=7325,["Withered Warrior"]=7327,["Withered Reaver"]=7328,["Withered Quilguard"]=7329,["Withered Spearhide"]=7332,["Withered Battle Boar"]=7333,["Battle Boar Horror"]=7334,["Death's Head Geomancer"]=7335,["Death's Head Necromancer"]=7337,["Skeletal Shadowcaster"]=7340,["Skeletal Frostweaver"]=7341,["Skeletal Summoner"]=7342,["Splinterbone Skeleton"]=7343,["Splinterbone Warrior"]=7344,["Splinterbone Captain"]=7345,["Splinterbone Centurion"]=7346,["Boneflayer Ghoul"]=7347,["Thorn Eater Ghoul"]=7348,["Tomb Fiend"]=7349,["Tomb Reaver"]=7351,["Frozen Soul"]=7352,["Freezing Spirit"]=7353,["Ragglesnout"]=7354,["Tuten'kash"]=7355,["Plaguemaw the Rotting"]=7356,["Mordresh Fire Eye"]=7357,["Amnennar the Coldbringer"]=7358,["Dun Garok Soldier"]=7360,["Grubbis"]=7361,["Kum'isha the Collector"]=7363,["Flawless Draenethyst Sphere"]=7364,["Flawless Draenethyst Fragment"]=7365,["Stoneskin Totem IV"]=7366,["Stoneskin Totem V"]=7367,["Stoneskin Totem VI"]=7368,["Deadwind Brute"]=7369,["Restless Shade"]=7370,["Deadwind Mauler"]=7371,["Deadwind Warlock"]=7372,["Sky Shadow"]=7376,["Deadwind Ogre Mage"]=7379,["Siamese Cat"]=7380,["Silver Tabby Cat"]=7381,["Orange Tabby Cat"]=7382,["Black Tabby Cat"]=7383,["Cornish Rex Cat"]=7384,["Bombay Cat"]=7385,["White Kitten"]=7386,["Green Wing Macaw"]=7387,["Cockatoo"]=7388,["Senegal"]=7389,["Cockatiel"]=7390,["Hyacinth Macaw"]=7391,["Prairie Chicken"]=7392,["White Plymouth Rock"]=7393,["Ancona Chicken"]=7394,["Cockroach"]=7395,["Earthen Stonebreaker"]=7396,["Earthen Stonecarver"]=7397,["Stoneclaw Totem V"]=7398,["Stoneclaw Totem VI"]=7399,["Searing Totem V"]=7400,["Draenei Refugee"]=7401,["Searing Totem VI"]=7402,["Strength of Earth Totem IV"]=7403,["[UNUSED]Galak Flame Guard"]=7404,["Deadly Cleft Scorpid"]=7405,["Oglethorpe Obnoticus"]=7406,["Chief Engineer Bilgewhizzle"]=7407,["Spigot Operator Luglunket"]=7408,["Faltering Draenethyst Sphere"]=7409,["Thelman Slatefist"]=7410,["Spirit of Sathrah"]=7411,["Frost Resistance Totem II"]=7412,["Frost Resistance Totem III"]=7413,["Mana Spring Totem II"]=7414,["Mana Spring Totem III"]=7415,["Mana Spring Totem IV"]=7416,["Flametongue Totem III"]=7423,["Fire Resistance Totem II"]=7424,["Fire Resistance Totem III"]=7425,["Taim Ragetotem"]=7427,["Frostmaul Giant"]=7428,["Frostmaul Preserver"]=7429,["Young Frostsaber"]=7430,["Frostsaber"]=7431,["Frostsaber Stalker"]=7432,["Frostsaber Huntress"]=7433,["Frostsaber Pride Watcher"]=7434,["Cobalt Wyrmkin"]=7435,["Cobalt Scalebane"]=7436,["Cobalt Mageweaver"]=7437,["Winterfall Ursa"]=7438,["Winterfall Shaman"]=7439,["Winterfall Den Watcher"]=7440,["Winterfall Totemic"]=7441,["Winterfall Pathfinder"]=7442,["Shardtooth Mauler"]=7443,["Shardtooth Bear"]=7444,["Elder Shardtooth"]=7445,["Rabid Shardtooth"]=7446,["Fledgling Chillwind"]=7447,["Chillwind Chimaera"]=7448,["Chillwind Ravager"]=7449,["Ragged Owlbeast"]=7450,["Raging Owlbeast"]=7451,["Crazed Owlbeast"]=7452,["Moontouched Owlbeast"]=7453,["Berserk Owlbeast"]=7454,["Winterspring Owl"]=7455,["Winterspring Screecher"]=7456,["Rogue Ice Thistle"]=7457,["Ice Thistle Yeti"]=7458,["Ice Thistle Matriarch"]=7459,["Ice Thistle Patriarch"]=7460,["Hederine Initiate"]=7461,["Hederine Manastalker"]=7462,["Hederine Slayer"]=7463,["Magma Totem II"]=7464,["Magma Totem III"]=7465,["Magma Totem IV"]=7466,["Nature Resistance Totem"]=7467,["Nature Resistance Totem II"]=7468,["Nature Resistance Totem III"]=7469,["Windfury Totem II"]=7483,["Windfury Totem III"]=7484,["Nargatt"]=7485,["Grace of Air Totem"]=7486,["Grace of Air Totem II"]=7487,["Silverpine Deathguard"]=7489,["Bloodmage Drazial"]=7505,["Bloodmage Lynnore"]=7506,["Brown Snake"]=7507,["Black Kingsnake"]=7508,["Suffering Highborne"]=7523,["Anguished Highborne"]=7524,["Goblin Land Mine"]=7527,["Dark Whelpling"]=7543,["Crimson Whelpling"]=7544,["Emerald Whelpling"]=7545,["Bronze Whelpling"]=7546,["Azure Whelpling"]=7547,["Faeling"]=7548,["Tree Frog"]=7549,["Wood Frog"]=7550,["Dart Frog"]=7551,["Island Frog"]=7552,["Great Horned Owl"]=7553,["Snowy Owl"]=7554,["Hawk Owl"]=7555,["Eagle Owl"]=7556,["Cottontail Rabbit"]=7558,["Spotted Rabbit"]=7559,["Snowshoe Rabbit"]=7560,["Albino Snake"]=7561,["Blue Racer"]=7563,["Marin Noggenfogger"]=7564,["Scarlet Snake"]=7566,["Crimson Snake"]=7567,["Ribbon Snake"]=7568,["Green Water Snake"]=7569,["Elven Wisp"]=7570,["Fallen Hero of the Horde"]=7572,["Sprinkle"]=7583,["Wandering Forest Walker"]=7584,["Leprous Assistant"]=7603,["Sergeant Bly"]=7604,["Raven"]=7605,["Oro Eyegouge"]=7606,["Weegli Blastfuse"]=7607,["Murta Grimgut"]=7608,["Dispatch Commander Ruag"]=7623,["Bengor"]=7643,["Razelikh the Defiler"]=7664,["Grol the Destroyer"]=7665,["Archmage Allistarj"]=7666,["Lady Sevine"]=7667,["Servant of Razelikh"]=7668,["Servant of Grol"]=7669,["Servant of Allistarj"]=7670,["Servant of Sevine"]=7671,["Alessandro Luca"]=7683,["Riding Tiger (Yellow)"]=7684,["Riding Tiger (Red)"]=7686,["Spotted Frostsaber"]=7687,["Striped Nightsaber"]=7690,["Riding Raptor (Crimson)"]=7704,["Riding Raptor (Ivory)"]=7706,["Turquoise Raptor"]=7707,["Violet Raptor"]=7708,["Riding Tallstrider (Brown)"]=7709,["Riding Tallstrider (Gray)"]=7710,["Riding Tallstrider (Pink)"]=7711,["Riding Tallstrider (Purple)"]=7712,["Riding Tallstrider (Turquoise)"]=7713,["Byula"]=7714,["Senior Surveyor Fizzledowser"]=7724,["Grimtotem Raider"]=7725,["Grimtotem Naturalist"]=7726,["Grimtotem Shaman"]=7727,["Kirith the Damned"]=7728,["Spirit of Kirith"]=7729,["Stonetalon Grunt"]=7730,["Innkeeper Jayka"]=7731,["Dupe Bug"]=7732,["Innkeeper Fizzgrimble"]=7733,["Ilifar"]=7734,["Felcular"]=7735,["Innkeeper Shyria"]=7736,["Innkeeper Greul"]=7737,["Burning Servant"]=7738,["Red Mechanostrider"]=7739,["Gracina Spiritmight"]=7740,["Innkeeper Thulfram"]=7744,["Blue Mechanostrider"]=7749,["Corporal Thund Splithoof"]=7750,["Curgle Cranklehop"]=7763,["Troyas Moonbreeze"]=7764,["Rockbiter"]=7765,["Tyrion"]=7766,["Witherbark Felhunter"]=7767,["Witherbark Bloodling"]=7768,["Hazzali Parasite"]=7769,["Winkey"]=7770,["Marvon Rivetseeker"]=7771,["Kalin Windflight"]=7772,["Marli Wishrunner"]=7773,["Shay Leafrunner"]=7774,["Gregan Brewspewer"]=7775,["Talo Thornhoof"]=7776,["Rok Orhan"]=7777,["Doran Steelwing"]=7778,["Priestess Tyriona"]=7779,["Rin'ji"]=7780,["Loramus Thalipedes"]=7783,["Homing Robot OOX-17/TN"]=7784,["Ward of Zum'rah"]=7785,["Skeleton of Zum'rah"]=7786,["Sandfury Slave"]=7787,["Sandfury Drudge"]=7788,["Sandfury Cretin"]=7789,["Orokk Omosh"]=7790,["Aturk the Anvil"]=7792,["Ox"]=7793,["McGavan"]=7794,["Hydromancer Velratha"]=7795,["Nekrum Gutchewer"]=7796,["Ruuzlu"]=7797,["Hank the Hammer"]=7798,["Gimblethorn"]=7799,["Mekgineer Thermaplugg"]=7800,["Gilveradin Sunchaser"]=7801,["Galvan the Ancient"]=7802,["Scorpid Duneburrower"]=7803,["Trenton Lighthammer"]=7804,["Wastewander Scofflaw"]=7805,["Homing Robot OOX-09/HL"]=7806,["Homing Robot OOX-22/FE"]=7807,["Marauding Owlbeast"]=7808,["Vilebranch Ambusher"]=7809,["Bera Stonehammer"]=7823,["Bulkrek Ragefist"]=7824,["Oran Snakewrithe"]=7825,["Ambassador Ardalan"]=7826,["Gnomeregan Evacuee"]=7843,["Fire Nova Totem IV"]=7844,["Fire Nova Totem V"]=7845,["Teremus the Devourer"]=7846,["Caliph Scorpidsting"]=7847,["Lurking Feral Scar"]=7848,["Mobile Alert System"]=7849,["Kernobee"]=7850,["Nethergarde Elite"]=7851,["Pratt McGrubben"]=7852,["Scooty"]=7853,["Jangdor Swiftstrider"]=7854,["Southsea Pirate"]=7855,["Southsea Freebooter"]=7856,["Southsea Dock Worker"]=7857,["Southsea Swashbuckler"]=7858,["Dream Vision"]=7863,["Lingering Highborne"]=7864,["Wildhammer Sentry"]=7865,["Peter Galen"]=7866,["Thorkaf Dragoneye"]=7867,["Sarah Tanner"]=7868,["Brumn Winterhoof"]=7869,["Caryssia Moonhunter"]=7870,["Se'Jib"]=7871,["Death's Head Cultist"]=7872,["Razorfen Battleguard"]=7873,["Razorfen Thornweaver"]=7874,["Hadoken Swiftstrider"]=7875,["Tran'rek"]=7876,["Latronicus Moonspear"]=7877,["Vestia Moonspear"]=7878,["Quintis Jonespyre"]=7879,["Ginro Hearthkindle"]=7880,["Stoley"]=7881,["Security Chief Bilgewhizzle"]=7882,["Andre Firebeard"]=7883,["Fraggar Thundermantle"]=7884,["Spitelash Battlemaster"]=7885,["Spitelash Enchantress"]=7886,["Ambassador Bloodrage"]=7895,["Alarm-a-bomb 2600"]=7897,["Pirate treasure trigger mob"]=7898,["Treasure Hunting Pirate"]=7899,["Angelas Moonbreeze"]=7900,["Treasure Hunting Swashbuckler"]=7901,["Treasure Hunting Buccaneer"]=7902,["Jewel"]=7903,["Jacob"]=7904,["Daryn Lightwind"]=7907,["Walking Bomb"]=7915,["Erelas Ambersky"]=7916,["Brother Sarno"]=7917,["Stone Watcher of Norgannon"]=7918,["Lyon Mountainheart"]=7936,["High Tinker Mekkatorque"]=7937,["Feathermoon Sentinel"]=7939,["Darnall"]=7940,["Mardrack Greenwell"]=7941,["Faralorn"]=7942,["Harklane"]=7943,["Tinkmaster Overspark"]=7944,["Savanne"]=7945,["Brannock"]=7946,["Vivianna"]=7947,["Kylanna Windwhisper"]=7948,["Xylinnia Starshine"]=7949,["Master Mechanic Castpipe"]=7950,["Zas'Tysh"]=7951,["Zjolnir"]=7952,["Xar'Ti"]=7953,["Binjy Featherwhistle"]=7954,["Milli Featherwhistle"]=7955,["Kindal Moonweaver"]=7956,["Jer'kai Moonweaver"]=7957,["Camp Narache Brave"]=7975,["Thalgus Thunderfist"]=7976,["Gammerita"]=7977,["Bimble Longberry"]=7978,["Deathguard Elite"]=7980,["Vile Priestess Hexx"]=7995,["Qiaga the Keeper"]=7996,["Captured Sprite Darter"]=7997,["Blastmaster Emi Shortfuse"]=7998,["Tyrande Whisperwind"]=7999,["Ashenvale Sentinel"]=8015,["Barrens Guard"]=8016,["Sen'jin Guardian"]=8017,["Guthrum Thunderfist"]=8018,["Fyldren Moonfeather"]=8019,["Shyn"]=8020,["Orwin Gizzmick"]=8021,["Thadius Grimshade"]=8022,["Sharpbeak"]=8023,["Sharpbeak's Father"]=8024,["Sharpbeak's Mother"]=8025,["Thyn'tel Bladeweaver"]=8026,["Dark Iron Land Mine"]=8035,["Thelsamar Mountaineer"]=8055,["Edana Hatetalon"]=8075,["Sul'lithuz Sandcrawler"]=8095,["Westfall Brigade Guard"]=8096,["Witch Doctor Uzer'i"]=8115,["Ziggle Sparks"]=8116,["Wizbang Booms"]=8117,["Lillian Singh"]=8118,["Zikkel"]=8119,["Sul'lithuz Abomination"]=8120,["Jaxxil Sparks"]=8121,["Kizzak Sparks"]=8122,["Rickle Goldgrubber"]=8123,["Qizzik"]=8124,["Dirge Quikcleave"]=8125,["Nixx Sprocketspring"]=8126,["Antu'sul"]=8127,["Pikkle"]=8128,["Wrinkle Goodsteel"]=8129,["Sul'lithuz Hatchling"]=8130,["Blizrik Buckshot"]=8131,["Lord Shalzaru"]=8136,["Gikkix"]=8137,["Sul'lithuz Broodling"]=8138,["Jabbey"]=8139,["Brother Karman"]=8140,["Captain Evencane"]=8141,["Jannos Lighthoof"]=8142,["Loorana"]=8143,["Kulleg Stonehorn"]=8144,["Sheendra Tallgrass"]=8145,["Ruw"]=8146,["Camp Mojache Brave"]=8147,["Sul'lithuz Warder"]=8149,["Janet Hommers"]=8150,["Nijel's Point Guard"]=8151,["Harnor"]=8152,["Narv Hidecrafter"]=8153,["Ghost Walker Brave"]=8154,["Kargath Grunt"]=8155,["Servant of Antu'sul"]=8156,["Logannas"]=8157,["Bronk"]=8158,["Worb Strongstitch"]=8159,["Nioma"]=8160,["Harggan"]=8161,["Gharash"]=8176,["Rartar"]=8177,["Nina Lightbrew"]=8178,["Greater Healing Ward"]=8179,["Occulus"]=8196,["Chronalis"]=8197,["Tick"]=8198,["Warleader Krazzilak"]=8199,["Jin'Zallah the Sandbringer"]=8200,["Omgorn the Lost"]=8201,["Cyclok the Mad"]=8202,["Kregg Keelhaul"]=8203,["Soriid the Devourer"]=8204,["Haarka the Ravenous"]=8205,["Emberwing"]=8207,["Murderous Blisterpaw"]=8208,["Razortalon"]=8210,["Old Cliff Jumper"]=8211,["The Reak"]=8212,["Ironback"]=8213,["Jalinde Summerdrake"]=8214,["Grimungous"]=8215,["Retherokk the Berserker"]=8216,["Mith'rethis the Enchanter"]=8217,["Witherheart the Stalker"]=8218,["Zul'arek Hatefowler"]=8219,["Muck Frenzy"]=8236,["Curator Thorius"]=8256,["Oozeling"]=8257,["Soaring Razorbeak"]=8276,["Rekk'tilac"]=8277,["Smoldar"]=8278,["Faulty War Golem"]=8279,["Shleipnarr"]=8280,["Scald"]=8281,["Highlord Mastrogonde"]=8282,["Slave Master Blackheart"]=8283,["Dorius Stonetender"]=8284,["Mojo the Twisted"]=8296,["Magronos the Unyielding"]=8297,["Akubar the Seer"]=8298,["Spiteflayer"]=8299,["Ravage"]=8300,["Clack the Reaver"]=8301,["Deatheye"]=8302,["Grunter"]=8303,["Dreadscorn"]=8304,["Kixxle"]=8305,["Duhng"]=8306,["Tarban Hearthgrain"]=8307,["Alenndaar Lapidaar"]=8308,["Carlo Aurelius"]=8309,["Watcher Wollpert"]=8310,["Slime Maggot"]=8311,["Atal'ai Deathwalker's Spirit"]=8317,["Atal'ai Slave"]=8318,["Nightmare Whelp"]=8319,["Sprok"]=8320,["Atal'ai Skeleton"]=8324,["Hakkari Sapper"]=8336,["Dark Iron Steelshifter"]=8337,["Dark Iron Marksman"]=8338,["Chesmu"]=8356,["Atepa"]=8357,["Hewa"]=8358,["Ahanu"]=8359,["Elki"]=8360,["Chepi"]=8361,["Kuruk"]=8362,["Shadi Mistrunner"]=8363,["Pakwa"]=8364,["Mechanical Chicken"]=8376,["Alexandra Blazen"]=8378,["Archmage Xylem"]=8379,["Captain Vanessa Beltis"]=8380,["Lindros"]=8381,["Patrick Mills"]=8382,["Master Wood"]=8383,["Deep Lurker"]=8384,["Mura Runetotem"]=8385,["Horizon Scout Crewman"]=8386,["Horizon Scout First Mate"]=8387,["Horizon Scout Cook"]=8388,["Horizon Scout Engineer"]=8389,["Chemist Cuely"]=8390,["Lathoric the Black"]=8391,["Pilot Xiggs Fuselighter"]=8392,["Thersa Windsong"]=8393,["Roland Geardabbler"]=8394,["Sanath Lim-yo"]=8395,["Sentinel Dalia Sunblade"]=8396,["Sentinel Keldara Sunblade"]=8397,["Ohanko"]=8398,["Nyrill"]=8399,["Obsidion"]=8400,["Halpa"]=8401,["Enslaved Archaeologist"]=8402,["Jeremiah Payson"]=8403,["Xan'tish"]=8404,["Ogtinc"]=8405,["Warlord Krellian"]=8408,["Caravan Master Tset"]=8409,["Felix Whindlebolt"]=8416,["Dying Archaeologist"]=8417,["Falla Sagewind"]=8418,["Twilight Idolater"]=8419,["Kim'jael"]=8420,["Dorius"]=8421,["Zamael Lunthistle"]=8436,["Hakkari Minion"]=8437,["Hakkari Bloodkeeper"]=8438,["Nilith Lokrav"]=8439,["Shade of Hakkar"]=8440,["Raze"]=8441,["Shadowsilk Poacher"]=8442,["Avatar of Hakkar"]=8443,["Trade Master Kovic"]=8444,["Xiggs Fuselighter's Flyingmachine"]=8446,["Clunk"]=8447,["Skeletal Servant"]=8477,["Second Mate Shandril"]=8478,["Kalaran Windblade"]=8479,["Kalaran the Deceiver"]=8480,["Liv Rizzlefix"]=8496,["Nightmare Suppressor"]=8497,["Gibblewilt"]=8503,["Dark Iron Sentry"]=8504,["Eranikus the Chained"]=8506,["Tymor"]=8507,["Gretta Ganter"]=8508,["Squire Maltrake"]=8509,["Atal'ai Totem"]=8510,["Belnistrasz"]=8516,["Xiggs Fuselighter"]=8517,["Rynthariel the Keymaster"]=8518,["Blighted Surge"]=8519,["Plague Ravager"]=8520,["Blighted Horror"]=8521,["Plague Monstrosity"]=8522,["Scourge Soldier"]=8523,["Cursed Mage"]=8524,["Scourge Warder"]=8525,["Dark Caster"]=8526,["Scourge Guard"]=8527,["Dread Weaver"]=8528,["Scourge Champion"]=8529,["Cannibal Ghoul"]=8530,["Gibbering Ghoul"]=8531,["Diseased Flayer"]=8532,["Putrid Gargoyle"]=8534,["Putrid Shrieker"]=8535,["Interloper"]=8537,["Unseen Servant"]=8538,["Eyeless Watcher"]=8539,["Torn Screamer"]=8540,["Hate Shrieker"]=8541,["Death Singer"]=8542,["Stitched Horror"]=8543,["Gangled Golem"]=8544,["Stitched Golem"]=8545,["Dark Adept"]=8546,["Death Cultist"]=8547,["Vile Tutor"]=8548,["Shadowmage"]=8550,["Dark Summoner"]=8551,["Necromancer"]=8553,["Chief Sharptusk Thornmantle"]=8554,["Crypt Stalker"]=8555,["Crypt Walker"]=8556,["Crypt Horror"]=8557,["Crypt Slayer"]=8558,["Mossflayer Scout"]=8560,["Mossflayer Shadowhunter"]=8561,["Mossflayer Cannibal"]=8562,["Wretched Woodsman"]=8563,["Wretched Ranger"]=8564,["Wretched Pathstrider"]=8565,["Dark Iron Lookout"]=8566,["Glutton"]=8567,["Ag'tor Bloodfist"]=8576,["Magus Rimtori"]=8578,["Yeh'kinya"]=8579,["Atal'alarion"]=8580,["Blood Elf Defender"]=8581,["Kadrak"]=8582,["Dirania Silvershine"]=8583,["Iverron"]=8584,["Frost Spectre"]=8585,["Haggrum Bloodfist"]=8586,["Jediga"]=8587,["Umbranse the Spiritspeaker"]=8588,["Plaguehound Runt"]=8596,["Plaguehound"]=8597,["Frenzied Plaguehound"]=8598,["Plaguebat"]=8600,["Noxious Plaguebat"]=8601,["Monstrous Plaguebat"]=8602,["Carrion Grub"]=8603,["Carrion Devourer"]=8605,["Living Decay"]=8606,["Rotting Sludge"]=8607,["Angered Infernal"]=8608,["Alexandra Constantine"]=8609,["Kroum"]=8610,["Idol Room Spawner"]=8611,["Screecher Spirit"]=8612,["Mithril Dragonling"]=8615,["Infernal Servant"]=8616,["Zalashji"]=8617,["Morta'gya the Keeper"]=8636,["Dark Iron Watchman"]=8637,["Hukku's Voidwalker"]=8656,["Hukku's Succubus"]=8657,["Hukku's Imp"]=8658,["Jes'rimon"]=8659,["The Evalcharr"]=8660,["Auctioneer Beardo"]=8661,["Idol Oven Fire Target"]=8662,["Sunwalker Saern"]=8664,["Shylenai"]=8665,["Lil Timmy"]=8666,["Gusting Vortex"]=8667,["Felhound Tracker"]=8668,["Auctioneer Tolon"]=8669,["Auctioneer Chilton"]=8670,["Auctioneer Buckler"]=8671,["Auctioneer Leeka"]=8672,["Auctioneer Thathung"]=8673,["Auctioneer Stampi"]=8674,["Felbeast"]=8675,["World Goblin Engineering Trainer"]=8677,["Jubie Gadgetspring"]=8678,["Knaz Blunderflame"]=8679,["Outfitter Eric"]=8681,["Henry Stern"]=8696,["Dreadlord"]=8716,["Felguard Elite"]=8717,["Manahound"]=8718,["Auctioneer Fitch"]=8719,["Auctioneer Redmuse"]=8720,["Auctioneer Epitwee"]=8721,["Auctioneer Gullem"]=8722,["Auctioneer Golothas"]=8723,["Auctioneer Wabang"]=8724,["Buzzek Bracketswing"]=8736,["Linken"]=8737,["Vazario Linkgrease"]=8738,["Raytaf"]=8756,["Shahiar"]=8757,["Zaman"]=8758,["Mosshoof Runner"]=8759,["Mosshoof Stag"]=8760,["Mosshoof Courser"]=8761,["Timberweb Recluse"]=8762,["Mistwing Rogue"]=8763,["Mistwing Ravager"]=8764,["Forest Ooze"]=8766,["Sah'rhee"]=8767,["Emerald Dragon Whelp"]=8776,["Deathly Usher"]=8816,["Battle Chicken"]=8836,["Muck Splash"]=8837,["Tyrion's Spybot"]=8856,["Sandfury Acolyte"]=8876,["Sandfury Zealot"]=8877,["Muuran"]=8878,["Royal Historian Archesonus"]=8879,["Riding Ram"]=8881,["Riding Tiger"]=8882,["Riding Horse"]=8883,["Skeletal Mount"]=8884,["Riding Raptor"]=8885,["Deviate Python"]=8886,["A tormented voice"]=8887,["Franclorn Forgewright"]=8888,["Anvilrage Overseer"]=8889,["Anvilrage Warden"]=8890,["Anvilrage Guardsman"]=8891,["Anvilrage Footman"]=8892,["Anvilrage Soldier"]=8893,["Anvilrage Medic"]=8894,["Anvilrage Officer"]=8895,["Shadowforge Peasant"]=8896,["Doomforge Craftsman"]=8897,["Anvilrage Marshal"]=8898,["Doomforge Dragoon"]=8899,["Doomforge Arcanasmith"]=8900,["Anvilrage Reservist"]=8901,["Shadowforge Citizen"]=8902,["Anvilrage Captain"]=8903,["Shadowforge Senator"]=8904,["Warbringer Construct"]=8905,["Ragereaver Golem"]=8906,["Wrath Hammer Construct"]=8907,["Molten War Golem"]=8908,["Fireguard"]=8909,["Blazing Fireguard"]=8910,["Fireguard Destroyer"]=8911,["Twilight's Hammer Torturer"]=8912,["Twilight Emissary"]=8913,["Twilight Bodyguard"]=8914,["Twilight's Hammer Ambassador"]=8915,["Arena Spectator"]=8916,["Quarry Slave"]=8917,["Weapon Technician"]=8920,["Bloodhound"]=8921,["Bloodhound Mastiff"]=8922,["Panzor the Invincible"]=8923,["The Behemoth"]=8924,["Dredge Worm"]=8925,["Deep Stinger"]=8926,["Dark Screecher"]=8927,["Burrowing Thundersnout"]=8928,["Princess Moira Bronzebeard"]=8929,["Innkeeper Heather"]=8931,["Borer Beetle"]=8932,["Cave Creeper"]=8933,["Christopher Hewen"]=8934,["Pet Bomb"]=8937,["Angerclaw Bear"]=8956,["Angerclaw Grizzly"]=8957,["Angerclaw Mauler"]=8958,["Felpaw Wolf"]=8959,["Felpaw Scavenger"]=8960,["Felpaw Ravager"]=8961,["Nida"]=8962,["Effsee"]=8963,["Blackrock Drake"]=8964,["Shawn"]=8965,["Hematos"]=8976,["Krom'Grul"]=8977,["Thauris Balgarr"]=8978,["Gruklash"]=8979,["Firegut Captain"]=8980,["Malfunctioning Reaver"]=8981,["Ironhand Guardian"]=8982,["Golem Lord Argelmach"]=8983,["Voidwalker Minion"]=8996,["Gershala Nightwhisper"]=8997,["Bael'Gar"]=9016,["Lord Incendius"]=9017,["High Interrogator Gerstahn"]=9018,["Emperor Dagran Thaurissan"]=9019,["Commander Gor'shak"]=9020,["Kharan Mighthammer"]=9021,["Dughal Stormwing"]=9022,["Marshal Windsor"]=9023,["Pyromancer Loregrain"]=9024,["Lord Roccor"]=9025,["Overmaster Pyron"]=9026,["Gorosh the Dervish"]=9027,["Grizzle"]=9028,["Eviscerator"]=9029,["Ok'thor the Breaker"]=9030,["Anub'shiah"]=9031,["Hedrum the Creeper"]=9032,["General Angerforge"]=9033,["Hate'rel"]=9034,["Anger'rel"]=9035,["Vile'rel"]=9036,["Gloom'rel"]=9037,["Seeth'rel"]=9038,["Doom'rel"]=9039,["Dope'rel"]=9040,["Warder Stilgiss"]=9041,["Verek"]=9042,["Scarshield Grunt"]=9043,["Scarshield Sentry"]=9044,["Scarshield Acolyte"]=9045,["Scarshield Quartermaster"]=9046,["Jenal"]=9047,["Fineous Darkvire"]=9056,["Ghede"]=9076,["Warlord Goretooth"]=9077,["Shadowmage Vivian Lagrave"]=9078,["Hierophant Theodora Mulvadania"]=9079,["Lexlort"]=9080,["Galamav the Marksman"]=9081,["Thal'trak Proudtusk"]=9082,["Razal'blade"]=9083,["Thunderheart"]=9084,["Initiate Amakkar"]=9085,["Grunt Gargal"]=9086,["Bashana Runetotem"]=9087,["Rage Talon Dragonspawn"]=9096,["Scarshield Legionnaire"]=9097,["Scarshield Spellbinder"]=9098,["Sraaz"]=9099,["Eridan Bluewind"]=9116,["J.D. Collie"]=9117,["Larion"]=9118,["Muigin"]=9119,["Sha'ni Proudtusk"]=9136,["Ambassador Flamelash"]=9156,["Bloodpetal Pest"]=9157,["Warhorse"]=9158,["Young Diemetradon"]=9162,["Diemetradon"]=9163,["Elder Diemetradon"]=9164,["Fledgling Pterrordax"]=9165,["Pterrordax"]=9166,["Frenzied Pterrordax"]=9167,["Gorlop"]=9176,["Oralius"]=9177,["Burning Spirit"]=9178,["Jazzrik"]=9179,["Highlord Omokk"]=9196,["Spirestone Battle Mage"]=9197,["Spirestone Mystic"]=9198,["Spirestone Enforcer"]=9199,["Spirestone Reaver"]=9200,["Spirestone Ogre Magus"]=9201,["Spirestone Warlord"]=9216,["Spirestone Lord Magus"]=9217,["Spirestone Battle Lord"]=9218,["Spirestone Butcher"]=9219,["Shadow Hunter Vosh'gajin"]=9236,["War Master Voone"]=9237,["Quentin"]=9238,["Smolderthorn Mystic"]=9239,["Smolderthorn Shadow Priest"]=9240,["Smolderthorn Headhunter"]=9241,["Farm Chicken"]=9256,["Scarshield Warlock"]=9257,["Scarshield Raider"]=9258,["Firebrand Grunt"]=9259,["Firebrand Legionnaire"]=9260,["Firebrand Darkweaver"]=9261,["Firebrand Invoker"]=9262,["Firebrand Dreadweaver"]=9263,["Firebrand Pyromancer"]=9264,["Smolderthorn Shadow Hunter"]=9265,["Smolderthorn Witch Doctor"]=9266,["Smolderthorn Axe Thrower"]=9267,["Smolderthorn Berserker"]=9268,["Smolderthorn Seer"]=9269,["Williden Marshal"]=9270,["Hol'anyee Marshal"]=9271,["Spark Nilminer"]=9272,["Petra Grossen"]=9273,["Dadanga"]=9274,["Milly Osworth"]=9296,["Enraged Wyvern"]=9297,["Donova Snowden"]=9298,["Gaeriyan"]=9299,["Wenikee Boltbucket"]=9316,["Rilli Greasygob"]=9317,["Incendosaur"]=9318,["Houndmaster Grebmar"]=9319,["Boss Copperplug"]=9336,["Innkeeper Shul'kar"]=9356,["Blazerunner"]=9376,["Swirling Vortex"]=9377,["Ground Pounder"]=9396,["Unearthed Fossil"]=9397,["Twilight's Hammer Executioner"]=9398,["Scarshield Worg"]=9416,["Spawn of Bael'Gar"]=9436,["Dark Keeper Vorfalk"]=9437,["Dark Keeper Bethek"]=9438,["Dark Keeper Uggel"]=9439,["Dark Keeper Zimrel"]=9441,["Dark Keeper Ofgut"]=9442,["Dark Keeper Pelver"]=9443,["Dark Guard"]=9445,["Scarlet Warder"]=9447,["Scarlet Praetorian"]=9448,["Scarlet Cleric"]=9449,["Scarlet Curate"]=9450,["Scarlet Archmage"]=9451,["Scarlet Enchanter"]=9452,["Aquementas"]=9453,["Xavathras"]=9454,["Warlord Krom'zar"]=9456,["Horde Defender"]=9457,["Horde Axe Thrower"]=9458,["Cyrus Therepentous"]=9459,["Gadgetzan Bruiser"]=9460,["Frenzied Black Drake"]=9461,["Chieftain Bloodmaw"]=9462,["Overlord Ror"]=9464,["Golhine the Hooded"]=9465,["Miblon Snarltooth"]=9467,["Watchman Doomgrip"]=9476,["Cloned Ooze"]=9477,["Gorishi Egg"]=9496,["Gorishi Grub"]=9498,["Plugger Spazzring"]=9499,["Mistress Nagmara"]=9500,["Innkeeper Adegwa"]=9501,["Phalanx"]=9502,["Private Rocknot"]=9503,["Lord Banehollow"]=9516,["Shadow Lord Fel'dan"]=9517,["Rakaiah"]=9518,["Grark Lorkrub"]=9520,["Enraged Felbat"]=9521,["Blackrock Ambusher"]=9522,["Kolkar Stormseer"]=9523,["Kolkar Invader"]=9524,["Freewind Brave"]=9525,["Enraged Gryphon"]=9526,["Enraged Hippogryph"]=9527,["Arathandris Silversky"]=9528,["Maybess Riverbreeze"]=9529,["Maxwort Uberglint"]=9536,["Hurley Blackbreath"]=9537,["High Executioner Nuzrak"]=9538,["Shadow of Lexlort"]=9539,["Enohar Thunderbrew"]=9540,["Blackbreath Crony"]=9541,["Franclorn's Spirit"]=9542,["Ribbly Screwspigot"]=9543,["Yuka Screwspigot"]=9544,["Grim Patron"]=9545,["Raschal the Courier"]=9546,["Guzzling Patron"]=9547,["Cawind Trueaim"]=9548,["Borand"]=9549,["Furmund"]=9550,["Starn"]=9551,["Zanara"]=9552,["Nadia Vernon"]=9553,["Hammered Patron"]=9554,["Mu'uta"]=9555,["Felhound Minion"]=9556,["Grimble"]=9558,["Grizzlowe"]=9559,["Marshal Maxwell"]=9560,["Jalinda Sprig"]=9561,["Helendis Riverhorn"]=9562,["Ragged John"]=9563,["Frezza"]=9564,["Mayara Brightwing"]=9565,["Zapetta"]=9566,["Overlord Wyrmthalak"]=9568,["Orgrimmar Talent Master"]=9580,["Undercity Talent Master"]=9582,["Bloodaxe Veteran"]=9583,["Jalane Ayrole"]=9584,["Bannok Grimaxe"]=9596,["Arei"]=9598,["Parrot"]=9600,["Treant Spirit"]=9601,["Hahk'Zor"]=9602,["Gorgon'och"]=9604,["Blackrock Raider"]=9605,["Laris Geardawdle"]=9616,["Karna Remtravel"]=9618,["Torwa Pathfinder"]=9619,["Dreka'Sur"]=9620,["Gargantuan Ooze"]=9621,["U'cha"]=9622,["A-Me 01"]=9623,["Kireena"]=9636,["Scorching Totem"]=9637,["Pet Bombling"]=9656,["Lil' Smoky"]=9657,["Distract Test"]=9658,["Unkillable Test Dummy"]=9659,["Agnar Beastamer"]=9660,["Sprite Darter Hatchling"]=9662,["Tink Sprocketwhistle"]=9676,["Ograbisi"]=9677,["Shill Dinger"]=9678,["Tobias Seecher"]=9679,["Crest Killer"]=9680,["Jaz"]=9681,["Marshal Reginald Windsor"]=9682,["Lar'korwi Mate"]=9683,["Lar'korwi"]=9684,["Windwall Totem"]=9687,["Windwall Totem II"]=9688,["Windwall Totem III"]=9689,["Ember Worg"]=9690,["Venomtip Scorpid"]=9691,["Bloodaxe Raider"]=9692,["Bloodaxe Evoker"]=9693,["Slavering Ember Worg"]=9694,["Deathlash Scorpid"]=9695,["Bloodaxe Worg"]=9696,["Giant Ember Worg"]=9697,["Firetail Scorpid"]=9698,["Fire Beetle"]=9699,["Lava Crab"]=9700,["Spire Scorpid"]=9701,["Illusionary Dreamwatcher"]=9705,["Yorba Screwspigot"]=9706,["Scarshield Portal"]=9707,["Burning Imp"]=9708,["Bloodaxe Warmonger"]=9716,["Bloodaxe Summoner"]=9717,["Ghok Bashguud"]=9718,["Quartermaster Zigris"]=9736,["Flamekin Spitter"]=9776,["Flamekin Sprite"]=9777,["Flamekin Torcher"]=9778,["Flamekin Rager"]=9779,["Galgar"]=9796,["Pyroguard Emberseer"]=9816,["Blackhand Dreadweaver"]=9817,["Blackhand Summoner"]=9818,["Blackhand Veteran"]=9819,["Mathredis Firestar"]=9836,["Auctioneer Grimful"]=9856,["Auctioneer Grizzlin"]=9857,["Auctioneer Kresky"]=9858,["Auctioneer Lympkin"]=9859,["Salia"]=9860,["Moora"]=9861,["Jaedenar Legionnaire"]=9862,["Locheed"]=9876,["Prince Xavalis"]=9877,["Entropic Beast"]=9878,["Entropic Horror"]=9879,["Jarquia"]=9916,["Corrupted Kitten"]=9936,["Common Kitten"]=9937,["Magmus"]=9938,["Shadowforge Flame Keeper"]=9956,["Tharlidun"]=9976,["Sylista"]=9977,["Wesley"]=9978,["Sarah Goode"]=9979,["Shelby Stoneflint"]=9980,["Sikwa"]=9981,["Penny"]=9982,["Kelsuwa"]=9983,["Ulbrek Firehand"]=9984,["Laziphus"]=9985,["Shyrka Wolfrunner"]=9986,["Shoja'my"]=9987,["Xon'cha"]=9988,["Lina Hearthstove"]=9989,["Lanti'gah"]=9990,["Winna Hazzard"]=9996,["Spraggle Frock"]=9997,["Shizzle"]=9998,["Ringo"]=9999,["Arugal"]=10000,["Tainted Rat"]=10016,["Tainted Cockroach"]=10017,["Brackenwall Enforcer"]=10036,["Lakeshire Guard"]=10037,["Night Watch Guard"]=10038,["Gorishi Hive Guard"]=10040,["Gorishi Hive Queen"]=10041,["Corrupted Saber"]=10042,["Ribbly's Crony"]=10043,["Kirk Maxwell"]=10045,["Bethaine Flinthammer"]=10046,["Michael"]=10047,["Gereck"]=10048,["Hekkru"]=10049,["Seikwa"]=10050,["Seriadne"]=10051,["Maluressian"]=10052,["Anya Maulray"]=10053,["Bulrug"]=10054,["Morganus"]=10055,["Alassin"]=10056,["Theodore Mont Claire"]=10057,["Greth"]=10058,["Antarius"]=10059,["Grimestack"]=10060,["Killium Bouldertoe"]=10061,["Steven Black"]=10062,["Reggifuz"]=10063,["High Priestess of Thaurissan"]=10076,["Deathmaw"]=10077,["Terrorspark"]=10078,["Brave Moonhorn"]=10079,["Sandarr Dunereaver"]=10080,["Dustwraith"]=10081,["Zerillis"]=10082,["Rage Talon Flamescale"]=10083,["Jaelysia"]=10085,["Hesuwa Thunderhorn"]=10086,["Xao'tsu"]=10088,["Silvaria"]=10089,["Belia Thundergranite"]=10090,["High Justice Grimstone"]=10096,["Slave"]=10116,["Tortured Slave"]=10117,["Nessa Shadowsong"]=10118,["Volchan"]=10119,["Vault Warder"]=10120,["Chemist Fuely"]=10136,["Moonkin Oracle"]=10157,["Moonkin"]=10158,["Young Moonkin"]=10159,["Raging Moonkin"]=10160,["Rookery Whelp"]=10161,["Lord Victor Nefarius"]=10162,["Kaltunk"]=10176,["Spire Scarab"]=10177,["Riding MechaStrider (Black)"]=10179,["Unpainted Mechanostrider"]=10180,["Lady Sylvanas Windrunner"]=10181,["Rokaro"]=10182,["Moonflare Totem"]=10183,["Onyxia"]=10184,["General Colbatann"]=10196,["Mezzir the Howler"]=10197,["Kashoch the Reaver"]=10198,["Grizzle Snowpaw"]=10199,["Rak'shiri"]=10200,["Lady Hederine"]=10201,["Azurous"]=10202,["Misha"]=10204,["Gubber Blump"]=10216,["Flame Buffet Totem"]=10217,["Superior Healing Ward"]=10218,["Gwennyth Bly'Leggonde"]=10219,["Halycon"]=10220,["Bloodaxe Worg Pup"]=10221,["Bijou"]=10257,["Rookery Guardian"]=10258,["Worg Pup"]=10259,["Kibler"]=10260,["Burning Felhound"]=10261,["Opus"]=10262,["Burning Felguard"]=10263,["Solakar Flamewreath"]=10264,["Ug'thok"]=10266,["Tinkee Steamboil"]=10267,["Gizrul the Slavener"]=10268,["Rotgath Stonebeard"]=10276,["Groum Stonebeard"]=10277,["Thrag Stonehoof"]=10278,["Captured Felwood Ooze"]=10290,["Dulciea Frostmoon"]=10293,["Vaelan"]=10296,["Acride"]=10299,["Ranshalla"]=10300,["Jaron Stoneshaper"]=10301,["Krakle"]=10302,["Storm Shadowhoof"]=10303,["Aurora Skycaller"]=10304,["Umi Rumplesnicker"]=10305,["Trull Failbane"]=10306,["Witch Doctor Mau'ari"]=10307,["Blackhand Incarcerator"]=10316,["Blackhand Elite"]=10317,["Blackhand Assassin"]=10318,["Blackhand Iron Guard"]=10319,["Emberstrife"]=10321,["Riding Tiger (White)"]=10322,["Murkdeep"]=10323,["Gyth"]=10339,["Vaelastrasz the Red"]=10340,["Bayne"]=10356,["Ressan the Needler"]=10357,["Fellicent's Shade"]=10358,["Sri'skulk"]=10359,["Kergul Bloodaxe"]=10360,["Gruul Darkblade"]=10361,["General Drakkisath"]=10363,["Yaelika Farclaw"]=10364,["Rage Talon Dragon Guard"]=10366,["Shrye Ragefist"]=10367,["Trayexir"]=10369,["[UNUSED] Xur'gyl"]=10370,["Rage Talon Captain"]=10371,["Rage Talon Fire Tongue"]=10372,["Xabraxxis"]=10373,["Spire Spider"]=10374,["Spire Spiderling"]=10375,["Crystal Fang"]=10376,["Elu"]=10377,["Omusa Thunderhorn"]=10378,["Altsoba Ragetotem"]=10379,["Sanuye Runetotem"]=10380,["Ravaged Cadaver"]=10381,["Mangled Cadaver"]=10382,["Broken Cadaver"]=10383,["Spectral Citizen"]=10384,["Ghostly Citizen"]=10385,["Vengeful Phantom"]=10387,["Spiteful Phantom"]=10388,["Wrath Phantom"]=10389,["Skeletal Guardian"]=10390,["Skeletal Berserker"]=10391,["Skul"]=10393,["Black Guard Sentry"]=10394,["Thuzadin Shadowcaster"]=10398,["Thuzadin Acolyte"]=10399,["Thuzadin Necromancer"]=10400,["Pustulating Horror"]=10404,["Plague Ghoul"]=10405,["Ghoul Ravener"]=10406,["Fleshflayer Ghoul"]=10407,["Rockwing Gargoyle"]=10408,["Rockwing Screecher"]=10409,["Eye of Naxxramas"]=10411,["Crypt Crawler"]=10412,["Crypt Beast"]=10413,["Patchwork Horror"]=10414,["Ash'ari Crystal"]=10415,["Bile Spewer"]=10416,["Venom Belcher"]=10417,["Risen Guardsman"]=10418,["Risen Conjuror"]=10419,["Risen Initiate"]=10420,["Crimson Defender"]=10421,["Crimson Sorcerer"]=10422,["Crimson Priest"]=10423,["Risen Gallant"]=10424,["Crimson Battle Mage"]=10425,["Crimson Inquisitor"]=10426,["Pao'ka Swiftmountain"]=10427,["Motega Firemane"]=10428,["Warchief Rend Blackhand"]=10429,["The Beast"]=10430,["Gregor Greystone"]=10431,["Vectus"]=10432,["Marduk Blackpool"]=10433,["Magistrate Barthilas"]=10435,["Baroness Anastari"]=10436,["Nerub'enkan"]=10437,["Maleki the Pallid"]=10438,["Ramstein the Gorger"]=10439,["Baron Rivendare"]=10440,["Plagued Rat"]=10441,["Chromatic Whelp"]=10442,["Selina Dourman"]=10445,["Chromatic Dragonspawn"]=10447,["Binny Springblade"]=10455,["Prynne"]=10456,["Prospector Ironboot"]=10460,["Plagued Insect"]=10461,["Shrieking Banshee"]=10463,["Wailing Banshee"]=10464,["Mana Tide Totem"]=10467,["Felnok Steelspring"]=10468,["Scholomance Adept"]=10469,["Scholomance Neophyte"]=10470,["Scholomance Acolyte"]=10471,["Scholomance Occultist"]=10472,["Scholomance Student"]=10475,["Scholomance Necrolyte"]=10476,["Scholomance Necromancer"]=10477,["Splintered Skeleton"]=10478,["Skulking Corpse"]=10479,["Unstable Corpse"]=10480,["Reanimated Corpse"]=10481,["Risen Lackey"]=10482,["Risen Aberration"]=10485,["Risen Warrior"]=10486,["Risen Protector"]=10487,["Risen Construct"]=10488,["Risen Guard"]=10489,["Risen Bonewarder"]=10491,["Diseased Ghoul"]=10495,["Ragged Ghoul"]=10497,["Spectral Tutor"]=10498,["Spectral Researcher"]=10499,["Spectral Teacher"]=10500,["Lady Illucia Barov"]=10502,["Jandice Barov"]=10503,["Lord Alexei Barov"]=10504,["Instructor Malicia"]=10505,["Kirtonos the Herald"]=10506,["The Ravenian"]=10507,["Ras Frostwhisper"]=10508,["Jed Runewatcher"]=10509,["The Unforgiven"]=10516,["Plagued Maggot"]=10536,["Cliffwatcher Longhorn"]=10537,["Vaelastrasz"]=10538,["Hagar Lightninghoof"]=10539,["Vol'jin"]=10540,["Krakle's Thermometer"]=10541,["Lazy Peon"]=10556,["Flametongue Totem IV"]=10557,["Hearthsinger Forresten"]=10558,["Lady Vespia"]=10559,["Crypt Scarab"]=10577,["Bom'bay"]=10578,["Fetid Zombie"]=10580,["Young Arikara"]=10581,["Dog"]=10582,["Gryfe"]=10583,["Urok Doomhowl"]=10584,["Mother Smolderweb"]=10596,["Smolderweb Hatchling"]=10598,["Hulfnar Stonetotem"]=10599,["Thontek Rumblehoof"]=10600,["Urok Enforcer"]=10601,["Urok Ogre Magus"]=10602,["Hallucination"]=10603,["Huntress Nhemai"]=10604,["Scarlet Medic"]=10605,["Huntress Yaeliura"]=10606,["Scarlet Priest"]=10608,["Angus"]=10610,["Shorty"]=10611,["Guard Wachabe"]=10612,["Supervisor Raelen"]=10616,["Galak Messenger"]=10617,["Rivern Frostwind"]=10618,["Glacier"]=10619,["Pack Kodo"]=10636,["Malyfous Darkhammer"]=10637,["Kanati Greycloud"]=10638,["Rorgish Jowl"]=10639,["Oakpaw"]=10640,["Branch Snapper"]=10641,["Eck'alom"]=10642,["Mugglefin"]=10643,["Mist Howler"]=10644,["Thalia Amberhide"]=10645,["Lakota Windsong"]=10646,["Prince Raze"]=10647,["Xavaric"]=10648,["Guardian Felhunter"]=10656,["Corrupted Cat"]=10657,["Winna's Kitten"]=10658,["Cobalt Whelp"]=10659,["Cobalt Broodling"]=10660,["Spell Eater"]=10661,["Spellmaw"]=10662,["Manaclaw"]=10663,["Scryer"]=10664,["Junior Apothecary Holland"]=10665,["Gordo"]=10666,["Chromie"]=10667,["Beaten Corpse"]=10668,["Raider Jhash"]=10676,["Plagued Hatchling"]=10678,["Summoned Blackhand Dreadweaver"]=10680,["Summoned Blackhand Veteran"]=10681,["Raider Kerr"]=10682,["Rookery Hatcher"]=10683,["Remorseful Highborne"]=10684,["Swine"]=10685,["Refuge Pointe Defender"]=10696,["Bile Slime"]=10697,["Summoned Zombie"]=10698,["Carrion Scarab"]=10699,["Belfry Bat"]=10716,["Temporal Parasite"]=10717,["Shahram"]=10718,["Herald of Thrall"]=10719,["Galak Assassin"]=10720,["Novice Warrior"]=10721,["Shy-Rotam"]=10737,["High Chief Winterfall"]=10738,["Mulgris Deepriver"]=10739,["Awbee"]=10740,["Sian-Rotam"]=10741,["Blackhand Dragon Handler"]=10742,["Scalding Elemental"]=10756,["Boiling Elemental"]=10757,["Grimtotem Bandit"]=10758,["Grimtotem Stomper"]=10759,["Grimtotem Geomancer"]=10760,["Grimtotem Reaver"]=10761,["Blackhand Thug"]=10762,["Finkle Einhorn"]=10776,["Janice Felstone"]=10778,["Infected Squirrel"]=10779,["Infected Deer"]=10780,["Royal Overseer Bauhaus"]=10781,["Royal Factor Bathrilor"]=10782,["Orb of Deception (Tauren Male)"]=10785,["Warosh"]=10799,["Warosh the Redeemed"]=10800,["Jabbering Ghoul"]=10801,["Hitah'ya the Keeper"]=10802,["Rifleman Wheeler"]=10803,["Rifleman Middlecamp"]=10804,["Spotter Klemmy"]=10805,["Ursius"]=10806,["Brumeran"]=10807,["Timmy the Cruel"]=10808,["Stonespine"]=10809,["Instructor Galford"]=10811,["Grand Crusader Dathrohan"]=10812,["Balnazzar"]=10813,["Chromatic Elite Guard"]=10814,["Wandering Skeleton"]=10816,["Duggan Wildhammer"]=10817,["Death Knight Soulbearer"]=10818,["Baron Bloodbane"]=10819,["Duke Ragereaver"]=10820,["Hed'mush the Rotting"]=10821,["Warlord Thresh'jin"]=10822,["Zul'Brin Warpbranch"]=10823,["Ranger Lord Hawkspear"]=10824,["Gish the Unmoving"]=10825,["Lord Darkscythe"]=10826,["Deathspeaker Selendre"]=10827,["High General Abbendis"]=10828,["Farmer Dalson"]=10836,["High Executor Derrington"]=10837,["Commander Ashlam Valorfist"]=10838,["Argent Officer Garush"]=10839,["Argent Officer Pureheart"]=10840,["Argent Quartermaster Hasana"]=10856,["Argent Quartermaster Lightspark"]=10857,["Undead Scarab"]=10876,["Courier Hammerfall"]=10877,["Herald Moonstalker"]=10878,["Harbinger Balthazad"]=10879,["Warcaller Gorlach"]=10880,["Bluff Runner Windstrider"]=10881,["[Deprecated for 4.x]Arikara"]=10882,["Arnak Grimtotem"]=10896,["Sindrayl"]=10897,["Goraluk Anvilcrack"]=10899,["Lorekeeper Polkelt"]=10901,["Andorhal Tower One"]=10902,["Andorhal Tower Two"]=10903,["Andorhal Tower Three"]=10904,["Andorhal Tower Four"]=10905,["Winterfall Runner"]=10916,["Aurius"]=10917,["Lorax"]=10918,["Shatterspear Troll"]=10919,["Kelek Skykeeper"]=10920,["Taronn Redfeather"]=10921,["Greta Mosshoof"]=10922,["Tenell Leafrunner"]=10923,["Ivy Leafrunner"]=10924,["Rotting Worm"]=10925,["Pamela Redpath"]=10926,["Marlene Redpath"]=10927,["Succubus Minion"]=10928,["Haleh"]=10929,["Dargh Trueaim"]=10930,["Joseph Redpath"]=10936,["Captain Redpath"]=10937,["Redpath the Corrupted"]=10938,["Marduk the Black"]=10939,["Ghost of the Past"]=10940,["Wizlo Bearingshiner"]=10941,["Nessy"]=10942,["Decrepit Guardian"]=10943,["Davil Lightfire"]=10944,["Davil Crokford"]=10945,["Horgus the Ravager"]=10946,["Darrowshire Betrayer"]=10947,["Darrowshire Defender"]=10948,["Silver Hand Disciple"]=10949,["Redpath Militia"]=10950,["Marauding Corpse"]=10951,["Marauding Skeleton"]=10952,["Servant of Horgus"]=10953,["Bloodletter"]=10954,["Summoned Water Elemental"]=10955,["Naga Siren"]=10956,["Jeziba"]=10976,["Quixxil"]=10977,["Legacki"]=10978,["Scarlet Hound"]=10979,["Umi's Mechanical Yeti"]=10980,["Frostwolf"]=10981,["Whitewhisker Vermin"]=10982,["Snowblind Harpy"]=10986,["Irondeep Trogg"]=10987,["Kodo Spirit"]=10988,["Alterac Ram"]=10990,["Wildpaw Gnoll"]=10991,["Enraged Panther"]=10992,["Twizwick Sprocketgrind"]=10993,["Fallen Hero"]=10996,["Cannon Master Willey"]=10997,["Captured Arko'narin"]=11016,["Roxxik"]=11017,["Arko'narin"]=11018,["Jessir Moonbow"]=11019,["Remains of Trey Lightforge"]=11020,["Winterspring Frostsaber"]=11021,["Alexi Barov"]=11022,["Weldon Barov"]=11023,["Della"]=11024,["Mukdrak"]=11025,["Sprite Jumpsprocket"]=11026,["Illusory Wraith"]=11027,["Jemma Quikswitch"]=11028,["Trixie Quikswitch"]=11029,["Mindless Undead"]=11030,["Franklin Lloyd"]=11031,["Commander Malor"]=11032,["Smokey LaRue"]=11033,["Lord Maxwell Tyrosus"]=11034,["Betina Bigglezink"]=11035,["Leonid Barthalomew the Revered"]=11036,["Jenna Lemkenilli"]=11037,["Caretaker Alen"]=11038,["Duke Nicholas Zverenhoff"]=11039,["Watcher Brownell"]=11040,["Milla Fairancora"]=11041,["Sylvanna Forestmoon"]=11042,["Crimson Monk"]=11043,["Doctor Martin Felben"]=11044,["Whuut"]=11046,["Kray"]=11047,["Victor Ward"]=11048,["Rhiannon Davis"]=11049,["Trianna"]=11050,["Vhan"]=11051,["Timothy Worthington"]=11052,["High Priestess MacDonnell"]=11053,["Crimson Rifleman"]=11054,["Shadow Priestess Vandis"]=11055,["Alchemist Arbington"]=11056,["Apothecary Dithers"]=11057,["Fras Siabi"]=11058,["Carlin Redpath"]=11063,["Darrowshire Spirit"]=11064,["Thonys Pillarstone"]=11065,["Jhag"]=11066,["Malcomb Wynn"]=11067,["Betty Quin"]=11068,["Jenova Stoneshield"]=11069,["Lalina Summermoon"]=11070,["Mot Dawnstrider"]=11071,["Kitta Firewind"]=11072,["Annora"]=11073,["Hgarth"]=11074,["Cauldron Lord Bilemaw"]=11075,["Cauldron Lord Razarch"]=11076,["Cauldron Lord Malvinious"]=11077,["Cauldron Lord Soulwrath"]=11078,["Wynd Nightchaser"]=11079,["Faldron"]=11081,["Stratholme Courier"]=11082,["Darianna"]=11083,["Tarn"]=11084,["Randal Worth"]=11096,["Drakk Stonehand"]=11097,["Hahrana Ironhide"]=11098,["Argent Guard"]=11099,["Mana Tide Totem II"]=11100,["Mana Tide Totem III"]=11101,["Argent Rider"]=11102,["Innkeeper Lyshaerya"]=11103,["Shelgrayn"]=11104,["Aboda"]=11105,["Innkeeper Sikewa"]=11106,["Innkeeper Abeqwa"]=11116,["Awenasa"]=11117,["Innkeeper Vizzie"]=11118,["Azzleby"]=11119,["Risen Hammersmith"]=11120,["Black Guard Swordsmith"]=11121,["Restless Soul"]=11122,["Freed Soul"]=11136,["Xai'ander"]=11137,["Maethrya"]=11138,["Yugrek"]=11139,["Egan"]=11140,["Spirit of Trey Lightforge"]=11141,["Undead Postman"]=11142,["Postmaster Malown"]=11143,["Myolor Sunderfury"]=11145,["Ironus Coldsteel"]=11146,["Green Mechanostrider"]=11147,["The Scourge Cauldron"]=11152,["Red Skeletal Horse"]=11153,["Blue Skeletal Horse"]=11154,["Brown Skeletal Horse"]=11155,["Green Skeletal Warhorse"]=11156,["Krathok Moltenfist"]=11176,["Okothos Ironrager"]=11177,["Borgosh Corebender"]=11178,["Bloodvenom Post Brave"]=11180,["Shi'alune"]=11181,["Nixxrak"]=11182,["Blixxrak"]=11183,["Wixxrak"]=11184,["Xizzer Fizzbolt"]=11185,["Lunnix Sprocketslip"]=11186,["Himmik"]=11187,["Evie Whirlbrew"]=11188,["Qia"]=11189,["Everlook Bruiser"]=11190,["Lilith the Lithe"]=11191,["Kilram"]=11192,["Seril Scourgebane"]=11193,["Argent Defender"]=11194,["Shatterspear Drummer"]=11196,["Mindless Skeleton"]=11197,["Broken Exile"]=11198,["Crimson Cannon"]=11199,["Summoned Skeleton"]=11200,["Eva Sarkhoff"]=11216,["Lucien Sarkhoff"]=11217,["Kerlonian Evershade"]=11218,["Liladris Moonriver"]=11219,["Blood Parrot"]=11236,["Manifestation of Water"]=11256,["Scholomance Handler"]=11257,["Frail Skeleton"]=11258,["Nataka Longhorn"]=11259,["Northshire Peasant"]=11260,["Doctor Theolen Krastinov"]=11261,["Onyxian Whelp"]=11262,["Spectral Projection"]=11263,["Azshara Sentinel"]=11276,["Caer Darrow Citizen"]=11277,["Magnus Frostwake"]=11278,["Caer Darrow Guardsman"]=11279,["Caer Darrow Cannoneer"]=11280,["Caer Darrow Horseman"]=11281,["Melia"]=11282,["Sammy"]=11283,["Dark Shade"]=11284,["Rory"]=11285,["Magistrate Marduke"]=11286,["Baker Masterson"]=11287,["Spectral Betrayer"]=11288,["Spectral Defender"]=11289,["Mossflayer Zombie"]=11290,["Unliving Mossflayer"]=11291,["Darrowshire Poltergeist"]=11296,["Joseph Dirte"]=11316,["Jinar'Zillen"]=11317,["Ragefire Trogg"]=11318,["Ragefire Shaman"]=11319,["Earthborer"]=11320,["Molten Elemental"]=11321,["Searing Blade Cultist"]=11322,["Searing Blade Enforcer"]=11323,["Searing Blade Warlock"]=11324,["Panda Cub"]=11325,["Mini Diablo"]=11326,["Zergling"]=11327,["Eastvale Peasant"]=11328,["Hakkari Shadowcaster"]=11338,["Hakkari Shadow Hunter"]=11339,["Hakkari Blood Priest"]=11340,["Hakkari Oracle"]=11346,["Zealot Lor'Khan"]=11347,["Zealot Zath"]=11348,["Gurubashi Axe Thrower"]=11350,["Gurubashi Headhunter"]=11351,["Gurubashi Berserker"]=11352,["Gurubashi Blood Drinker"]=11353,["Gurubashi Warrior"]=11355,["Gurubashi Champion"]=11356,["Son of Hakkar"]=11357,["Soulflayer"]=11359,["Zulian Cub"]=11360,["Zulian Tiger"]=11361,["Zulian Panther"]=11365,["Bloodseeker Bat"]=11368,["Razzashi Broodwidow"]=11370,["Razzashi Serpent"]=11371,["Razzashi Adder"]=11372,["Razzashi Cobra"]=11373,["Hooktooth Frenzy"]=11374,["Foreman Thazz'ril"]=11378,["Jin'do the Hexxer"]=11380,["Bloodlord Mandokir"]=11382,["High Priestess Hai'watna"]=11383,["Sandfury Speaker"]=11387,["Witherbark Speaker"]=11388,["Bloodscalp Speaker"]=11389,["Skullsplitter Speaker"]=11390,["Vilebranch Speaker"]=11391,["Nara Meideros"]=11397,["Priestess Alathea"]=11401,["High Priest Rohan"]=11406,["Var'jun"]=11407,["Bibbly F'utzbuckle"]=11438,["Illusion of Jandice Barov"]=11439,["Gordok Enforcer"]=11440,["Gordok Brute"]=11441,["Gordok Mauler"]=11442,["Gordok Ogre-Mage"]=11443,["Gordok Mage-Lord"]=11444,["Gordok Captain"]=11445,["Gordok Spirit"]=11446,["Mushgog"]=11447,["Gordok Warlock"]=11448,["Gordok Reaver"]=11450,["Wildspawn Satyr"]=11451,["Wildspawn Rogue"]=11452,["Wildspawn Trickster"]=11453,["Wildspawn Betrayer"]=11454,["Wildspawn Felsworn"]=11455,["Wildspawn Shadowstalker"]=11456,["Wildspawn Hellcaller"]=11457,["Petrified Treant"]=11458,["Ironbark Protector"]=11459,["Alzzin's Minion"]=11460,["Warpwood Guardian"]=11461,["Warpwood Treant"]=11462,["Warpwood Tangler"]=11464,["Warpwood Stomper"]=11465,["Highborne Summoner"]=11466,["Tsu'zee"]=11467,["Eldreth Seether"]=11469,["Eldreth Sorcerer"]=11470,["Eldreth Apparition"]=11471,["Eldreth Spirit"]=11472,["Eldreth Spectre"]=11473,["Eldreth Phantasm"]=11475,["Skeletal Highborne"]=11476,["Rotting Highborne"]=11477,["Arcane Aberration"]=11480,["Mana Remnant"]=11483,["Residual Monstrosity"]=11484,["Prince Tortheldrin"]=11486,["Magister Kalendris"]=11487,["Illyanna Ravenoak"]=11488,["Tendris Warpwood"]=11489,["Zevrim Thornhoof"]=11490,["Old Ironbark"]=11491,["Alzzin the Wildshaper"]=11492,["Immol'thar"]=11496,["The Razza"]=11497,["Skarr the Broken"]=11498,["[UNUSED] Commander Gormaul"]=11499,["King Gordok"]=11501,["Ragnaros"]=11502,["Timbermaw Warder"]=11516,["Oggleflint"]=11517,["Jergosh the Invoker"]=11518,["Bazzalan"]=11519,["Taragaman the Hungerer"]=11520,["Kodo Apparition"]=11521,["Quartermaster Miranda Breechlock"]=11536,["TEST GEAR PALADIN"]=11537,["TEST GEAR WARRIOR"]=11538,["TEST GEAR HUNTER"]=11539,["TEST GEAR MAGE"]=11540,["TEST GEAR WARLOCK"]=11541,["TEST GEAR DRUID"]=11542,["TEST GEAR SHAMAN"]=11543,["TEST GEAR PRIEST"]=11544,["TEST GEAR ROGUE"]=11545,["Jack Sterling"]=11546,["Loh'atu"]=11548,["Necrofiend"]=11551,["Timbermaw Mystic"]=11552,["Timbermaw Woodbender"]=11553,["Grazle"]=11554,["Gorn One Eye"]=11555,["Salfa"]=11556,["Meilosh"]=11557,["Kernda"]=11558,["Outcast Necromancer"]=11559,["Magrami Spectre"]=11560,["Undead Ravager"]=11561,["Drysnap Crawler"]=11562,["Drysnap Pincer"]=11563,["Gizelton Caravan Kodo"]=11564,["Whirlwind Ripper"]=11576,["Whirlwind Stormwalker"]=11577,["Whirlwind Shredder"]=11578,["Scholomance Dark Summoner"]=11582,["Nefarian"]=11583,["Smeed Scrabblescrew"]=11596,["Risen Guardian"]=11598,["Irondeep Shaman"]=11600,["Irondeep Skullthumper"]=11602,["Whitewhisker Digger"]=11603,["Whitewhisker Geomancer"]=11604,["Whitewhisker Overseer"]=11605,["Bardu Sharpeye"]=11608,["Alexia Ironknife"]=11609,["Kirsta Deepshadow"]=11610,["Cavalier Durgen"]=11611,["Huntsman Radley"]=11613,["Bloodshot"]=11614,["Mickey Levine"]=11615,["Nathaniel Dumah"]=11616,["Spectral Marauder"]=11620,["Spectral Corpse"]=11621,["Rattlegore"]=11622,["Scourge Summoning Crystal"]=11623,["Taiga Wisemane"]=11624,["Cork Gizelton"]=11625,["Rigger Gizelton"]=11626,["Tamed Kodo"]=11627,["Jessica Redpath"]=11629,["Servant of Weldon Barov"]=11636,["Servant of Alexi Barov"]=11637,["Warsong Peon"]=11656,["Morloch"]=11657,["Molten Giant"]=11658,["Molten Destroyer"]=11659,["Flamewaker"]=11661,["Flamewaker Priest"]=11662,["Flamewaker Healer"]=11663,["Flamewaker Elite"]=11664,["Lava Annihilator"]=11665,["Firewalker"]=11666,["Flameguard"]=11667,["Firelord"]=11668,["Flame Imp"]=11669,["Core Hound"]=11671,["Core Rager"]=11672,["Core Hound"]=11673,["Snowblind Windcaller"]=11675,["Taskmaster Snivvle"]=11677,["Snowblind Ambusher"]=11678,["Horde Scout"]=11680,["Warsong Logger"]=11681,["Warsong Grunt"]=11682,["Warsong Shaman"]=11683,["Goblin Deforester"]=11684,["Maraudine Priest"]=11685,["Ghostly Raider"]=11686,["Ghostly Marauder"]=11687,["Cursed Centaur"]=11688,["Brown Kodo"]=11689,["Gnarlpine Instigator"]=11690,["Chal Fairwind"]=11696,["Mannoroc Lasher"]=11697,["Hive'Ashi Stinger"]=11698,["Varian Wrynn"]=11699,["Sarin Starlight"]=11700,["Mor'vek"]=11701,["Arin'sor"]=11702,["Graw Cornerstone"]=11703,["Kriss Goldenlight"]=11704,["Rayan Dawnrisen"]=11705,["Adon"]=11706,["Joy Ar'nareth"]=11707,["Coral Moongale"]=11708,["Jareth Wildwoods"]=11709,["Mirador"]=11710,["Sentinel Aynasha"]=11711,["Lilyn Darkriver"]=11712,["Blackwood Tracker"]=11713,["Marosh the Devious"]=11714,["Talendria"]=11715,["Celes Earthborne"]=11716,["Bethan Bluewater"]=11717,["Sar Browneye"]=11718,["Loruk Foreststrider"]=11720,["Hive'Ashi Worker"]=11721,["Hive'Ashi Defender"]=11722,["Hive'Ashi Sandstalker"]=11723,["Hive'Ashi Swarmer"]=11724,["Hive'Zora Waywatcher"]=11725,["Hive'Zora Tunneler"]=11726,["Hive'Zora Wasp"]=11727,["Hive'Zora Reaver"]=11728,["Hive'Zora Hive Sister"]=11729,["Hive'Regal Ambusher"]=11730,["Hive'Regal Burrower"]=11731,["Hive'Regal Spitfire"]=11732,["Hive'Regal Slavemaker"]=11733,["Hive'Regal Hive Lord"]=11734,["Stonelash Scorpid"]=11735,["Stonelash Pincer"]=11736,["Stonelash Flayer"]=11737,["Sand Skitterer"]=11738,["Rock Stalker"]=11739,["Dredge Striker"]=11740,["Dredge Crusher"]=11741,["Dust Stormer"]=11744,["Cyclone Warrior"]=11745,["Desert Rumbler"]=11746,["Desert Rager"]=11747,["Samantha Swifthoof"]=11748,["Feran Strongwind"]=11749,["Ganoosh"]=11750,["Rilan Howard"]=11751,["Blaise Montgomery"]=11752,["Gogo"]=11753,["Meggi Peppinrocker"]=11754,["Harlo Wigglesworth"]=11755,["Quinn"]=11756,["Umaron Stragarelm"]=11757,["Andi Lynn"]=11758,["Salome"]=11776,["Shadowshard Rumbler"]=11777,["Shadowshard Smasher"]=11778,["Ambershard Crusher"]=11781,["Ambershard Destroyer"]=11782,["Theradrim Shardling"]=11783,["Theradrim Guardian"]=11784,["Ambereye Basilisk"]=11785,["Ambereye Reaver"]=11786,["Rock Borer"]=11787,["Rock Worm"]=11788,["Deep Borer"]=11789,["Putridus Satyr"]=11790,["Putridus Trickster"]=11791,["Putridus Shadowstalker"]=11792,["Celebrian Dryad"]=11793,["Sister of Celebras"]=11794,["Mylentha Riverbend"]=11795,["Bessany Plainswind"]=11796,["Moren Riverbend"]=11797,["Bunthen Plainswind"]=11798,["Tajarri"]=11799,["Silva Fil'naveth"]=11800,["Rabine Saturna"]=11801,["Dendrite Starblaze"]=11802,["Twilight Keeper Exeter"]=11803,["Twilight Keeper Havunth"]=11804,["Jarund Stoutstrider"]=11805,["Sentinel Onaeya"]=11806,["Tristane Shadowstone"]=11807,["Grum Redbeard"]=11808,["Howin Kindfeather"]=11810,["Narain Soothfancy"]=11811,["Claira Kindfeather"]=11812,["Kerr Ironsight"]=11813,["Kali Remik"]=11814,["Voriya"]=11815,["Una Ji'ro"]=11816,["Krah'ranik"]=11817,["Orik'ando"]=11818,["Jory Zaga"]=11819,["Locke Okarr"]=11820,["Darn Talongrip"]=11821,["Moonglade Warden"]=11822,["Vark Battlescar"]=11823,["Erik Felixe"]=11824,["Paige Felixe"]=11825,["Kristy Grant"]=11826,["Kimberly Grant"]=11827,["Kelly Grant"]=11828,["Fahrak"]=11829,["Hakkari Priest"]=11830,["Hakkari Witch Doctor"]=11831,["Keeper Remulos"]=11832,["Rahauro"]=11833,["Maur Grimtotem"]=11834,["Theodore Griffs"]=11835,["Captured Rabid Thistle Bear"]=11836,["Wildpaw Shaman"]=11837,["Wildpaw Mystic"]=11838,["Wildpaw Brute"]=11839,["Wildpaw Alpha"]=11840,["Kaya Flathoof"]=11856,["Makaba Flathoof"]=11857,["Grundig Darkcloud"]=11858,["Doomguard"]=11859,["Maggran Earthbinder"]=11860,["Mor'rogal"]=11861,["Tsunaman"]=11862,["Azore Aldamort"]=11863,["Tammra Windfield"]=11864,["Buliwyf Stonehand"]=11865,["Ilyenia Moonfire"]=11866,["Woo Ping"]=11867,["Sayoc"]=11868,["Ansekhwa"]=11869,["Archibald"]=11870,["Grinning Dog"]=11871,["Myranda the Hag"]=11872,["Spectral Attendant"]=11873,["Masat T'andr"]=11874,["Mortar Team Target Dummy"]=11875,["Fel Spirit"]=11876,["Roon Wildmane"]=11877,["Nathanos Blightcaller"]=11878,["Twilight Avenger"]=11880,["Twilight Geolord"]=11881,["Twilight Stonecaller"]=11882,["Twilight Master"]=11883,["Obi"]=11884,["Blighthound"]=11885,["Mercutio Filthgorger"]=11886,["Crypt Robber"]=11887,["Borelgore"]=11896,["Duskwing"]=11897,["Crusader Lord Valdelmar"]=11898,["Shardi"]=11899,["Brakkar"]=11900,["Andruk"]=11901,["Grimtotem Ruffian"]=11910,["Grimtotem Mercenary"]=11911,["Grimtotem Brute"]=11912,["Grimtotem Sorcerer"]=11913,["Gorehoof the Black"]=11914,["Boulderslide Rock Keeper"]=11915,["Imelda"]=11916,["Boulderslide Geomancer"]=11917,["Boulderslide Stonepounder"]=11918,["Goggeroc"]=11920,["Besseleth"]=11921,["Artist Renfray"]=11936,["Demon Portal Guardian"]=11937,["Umber"]=11939,["Merissa Stilwell"]=11940,["Yori Crackhelm"]=11941,["Orenthil Whisperwind"]=11942,["Magga"]=11943,["Vorn Skyseer"]=11944,["Claire Willower"]=11945,["Drek'Thar"]=11946,["Captain Galvangar"]=11947,["Vanndar Stormpike"]=11948,["Captain Balinda Stonehearth"]=11949,["Great Bear Spirit"]=11956,["Great Cat Spirit"]=11957,["Kim Bridenbecker"]=11979,["Zuluhed the Whacked"]=11980,["Flamegor"]=11981,["Magmadar"]=11982,["Firemaw"]=11983,["Golemagg the Incinerator"]=11988,["Rob Bridenbecker"]=11994,["Ashley Bridenbecker"]=11996,["Stormpike Herald"]=11997,["Frostwolf Herald"]=11998,["Broodlord Lashlayer"]=12017,["Majordomo Executus"]=12018,["Dargon"]=12019,["Daeolyn Summerleaf"]=12021,["Lorelae Wintersong"]=12022,["Kharedon"]=12023,["Meliri"]=12024,["Malvor"]=12025,["My'lanna"]=12026,["Tukk"]=12027,["Lah'Mawhani"]=12028,["Narianna"]=12029,["Malux"]=12030,["Mai'Lahii"]=12031,["Lui'Mala"]=12032,["Wulan"]=12033,["Koiter"]=12034,["Grella Stonefist"]=12036,["Ursol'lok"]=12037,["Brannik Ironbelly"]=12040,["Loganaar"]=12042,["Kulwia"]=12043,["Hae'Wilani"]=12045,["Gor'marok the Ravager"]=12046,["Stormpike Mountaineer"]=12047,["Alliance Sentinel"]=12048,["Stormpike Defender"]=12050,["Frostwolf Legionnaire"]=12051,["Frostwolf Warrior"]=12052,["Frostwolf Guardian"]=12053,["Baron Geddon"]=12056,["Garr"]=12057,["Magma Elemental"]=12076,["Stormpike Quartermaster"]=12096,["Frostwolf Quartermaster"]=12097,["Sulfuron Harbinger"]=12098,["Firesworn"]=12099,["Lava Reaver"]=12100,["Lava Surger"]=12101,["Priestess of Elune"]=12116,["Lucifron"]=12118,["Flamewaker Protector"]=12119,["Plagueland Termite"]=12120,["Drakan"]=12121,["Duros"]=12122,["Reef Shark"]=12123,["Great Shark"]=12124,["Mammoth Shark"]=12125,["Lord Tirion Fordring"]=12126,["Stormpike Guardsman"]=12127,["Crimson Elite"]=12128,["Onyxian Warder"]=12129,["Snurk Bucksquick"]=12136,["Squibby Overspeck"]=12137,["Lunaclaw"]=12138,["Guardian of Elune"]=12140,["Ice Totem"]=12141,["Son of Flame"]=12143,["Lunaclaw Spirit"]=12144,["Riding Kodo (Teal)"]=12148,["Gray Kodo"]=12149,["Riding Kodo (Purple)"]=12150,["Riding Kodo (Green)"]=12151,["Voice of Elune"]=12152,["Korrak the Bloodrager"]=12159,["Shadowglen Sentinel"]=12160,["Tortured Druid"]=12178,["Tortured Sentinel"]=12179,["Innkeeper Kaylisk"]=12196,["Glordrum Steelbeard"]=12197,["Martin Lindsey"]=12198,["Shade of Ambermoon"]=12199,["Princess Theradras"]=12201,["Human Skull"]=12202,["Landslide"]=12203,["Spitelash Raider"]=12204,["Spitelash Witch"]=12205,["Primordial Behemoth"]=12206,["Thessala Hydra"]=12207,["Conquered Soul of the Blightcaller"]=12208,["Poison Sprite"]=12216,["Corruptor"]=12217,["Vile Larva"]=12218,["Barbed Lasher"]=12219,["Constrictor Vine"]=12220,["Noxious Slime"]=12221,["Creeping Sludge"]=12222,["Cavern Lurker"]=12223,["Cavern Shambler"]=12224,["Celebras the Cursed"]=12225,["Lord Vyletongue"]=12236,["Meshlok the Harvester"]=12237,["Zaetar's Spirit"]=12238,["Spirit of Gelk"]=12239,["Spirit of Kolk"]=12240,["Spirit of Magra"]=12241,["Spirit of Maraudos"]=12242,["Spirit of Veng"]=12243,["Mark of Detonation (NW)"]=12244,["Vendor-Tron 1000"]=12245,["Super-Seller 680"]=12246,["Scourge Structure"]=12247,["Infiltrator Hameya"]=12248,["Mark of Detonation (SW)"]=12249,["Zaeldarr the Outcast"]=12250,["Mark of Detonation (CLS)"]=12251,["Mark of Detonation (CRS)"]=12252,["Mark of Detonation (CSH)"]=12253,["Mark of Detonation (NESH)"]=12254,["Mark of Detonation (NE)"]=12255,["Mark of Detonation (SE)"]=12256,["Mechanical Yeti"]=12257,["Razorlash"]=12258,["Gehennas"]=12259,["Infected Mossflayer"]=12261,["Ziggurat Protector"]=12262,["Slaughterhouse Protector"]=12263,["Shazzrah"]=12264,["Lava Spawn"]=12265,["Melizza Brimbuzzle"]=12277,["Sickly Gazelle"]=12296,["Cured Gazelle"]=12297,["Sickly Deer"]=12298,["Cured Deer"]=12299,["Burning Blade Toxicologist"]=12319,["Burning Blade Crusher"]=12320,["Stormscale Toxicologist"]=12321,["Quel'Lithien Protector"]=12322,["Brother Crowley"]=12336,["Crimson Courier"]=12337,["Shadowprey Guardian"]=12338,["Demetria"]=12339,["Drulzegar Skraghook"]=12340,["Green Skeletal War Horse"]=12344,["Emerald Riding Raptor"]=12346,["Enraged Reef Crawler"]=12347,["Ivory Raptor"]=12348,["Turquoise Riding Raptor"]=12349,["Violet Riding Raptor"]=12350,["Dire Riding Wolf"]=12351,["Scarlet Cavalier"]=12352,["Timber Riding Wolf"]=12353,["Brown Riding Kodo"]=12354,["Gray Riding Kodo"]=12355,["Riding Striped Frostsaber"]=12358,["Riding Spotted Frostsaber"]=12359,["Riding Striped Nightsaber"]=12360,["Riding Nightsaber"]=12361,["Riding Frostsaber"]=12362,["Icy Blue Mechanostrider Mod A"]=12364,["Unpainted Mechanostrider X"]=12366,["White Mechanostrider Mod A"]=12368,["Lord Kragaru"]=12369,["Black Ram"]=12370,["Frost Ram"]=12371,["White Riding Ram Mount"]=12374,["Wailing Spectre"]=12377,["Damned Soul"]=12378,["Unliving Caretaker"]=12379,["Unliving Resident"]=12380,["Ley Sprite"]=12381,["Mana Sprite"]=12382,["Nibbles"]=12383,["Augustus the Touched"]=12384,["Mortar Team Advanced Target Dummy"]=12385,["Large Vile Slime"]=12387,["Doomguard Commander"]=12396,["Lord Kazzak"]=12397,["Blackwing Legionnaire"]=12416,["Gordok Hyena"]=12418,["Lifelike Toad"]=12419,["Blackwing Mage"]=12420,["Death Talon Dragonspawn"]=12422,["Guard Roberts"]=12423,["Flint Shadowmore"]=12425,["Masterwork Target Dummy"]=12426,["Mountaineer Dolf"]=12427,["Deathguard Kel"]=12428,["Sentinel Shaya"]=12429,["Grunt Kor'ja"]=12430,["Gorefang"]=12431,["Old Vicejaw"]=12432,["Krethis the Shadowspinner"]=12433,["Monster Generator (Blackwing)"]=12434,["Razorgore the Untamed"]=12435,["Blackwing Spellbinder"]=12457,["Blackwing Taskmaster"]=12458,["Blackwing Warlock"]=12459,["Death Talon Wyrmguard"]=12460,["Death Talon Overseer"]=12461,["Death Talon Flamescale"]=12463,["Death Talon Seether"]=12464,["Death Talon Wyrmkin"]=12465,["Death Talon Captain"]=12467,["Death Talon Hatcher"]=12468,["Arcanite Dragonling"]=12473,["Emeraldon Boughguard"]=12474,["Emeraldon Tree Warder"]=12475,["Emeraldon Oracle"]=12476,["Verdantine Boughguard"]=12477,["Verdantine Oracle"]=12478,["Verdantine Tree Warder"]=12479,["Melris Malagan"]=12480,["Justine Demalier"]=12481,["Dreamtracker"]=12496,["Dreamroarer"]=12497,["Dreamstalker"]=12498,["Grethok the Controller"]=12557,["Grish Longrunner"]=12576,["Jarrodenus"]=12577,["Mishellena"]=12578,["Bloodfury Ripper"]=12579,["Reginald Windsor"]=12580,["Mercutio"]=12581,["Bibilfaz Featherwhistle"]=12596,["Vhulgra"]=12616,["Khaelyn Steelwing"]=12617,["Georgia"]=12636,["Thamarian"]=12656,["Don Pompa"]=12657,["Adam Lind"]=12658,["Sharptalon"]=12676,["Shadumbra"]=12677,["Ursangous"]=12678,["Senani Thunderheart"]=12696,["Decedra Willham"]=12716,["Muglash"]=12717,["Gurda Ragescar"]=12718,["Marukai"]=12719,["Framnali"]=12720,["Mitsuwa"]=12721,["Vera Nightshade"]=12722,["Har'alen"]=12723,["Pixel"]=12724,["Je'neu Sancrea"]=12736,["Mastok Wrilehiss"]=12737,["Nori Pridedrift"]=12738,["Onyxia's Elite Guard"]=12739,["Faustron"]=12740,["Lady Onyxia"]=12756,["Karang Amakkar"]=12757,["Onyxia Trigger"]=12758,["Tideress"]=12759,["Hraug"]=12776,["Captain Dirgehammer"]=12777,["Lieutenant Rachel Vaccar"]=12778,["Archmage Gaiman"]=12779,["Sergeant Major Skyshadow"]=12780,["Master Sergeant Biggins"]=12781,["Captain O'Neal"]=12782,["Lieutenant Karter"]=12783,["Lieutenant Jackspring"]=12784,["Sergeant Major Clate"]=12785,["Guard Quine"]=12786,["Guard Hammon"]=12787,["Legionnaire Teena"]=12788,["Blood Guard Hini'wana"]=12789,["Advisor Willington"]=12790,["Chieftain Earthbind"]=12791,["Lady Palanseer"]=12792,["Brave Stonehide"]=12793,["Stone Guard Zarg"]=12794,["First Sergeant Hola'mahi"]=12795,["Raider Bork"]=12796,["Grunt Korf"]=12797,["Grunt Bek'rah"]=12798,["Sergeant Ba'sha"]=12799,["Chimaerok"]=12800,["Arcane Chimaerok"]=12801,["Chimaerok Devourer"]=12802,["Lord Lakmaeran"]=12803,["Officer Areyn"]=12805,["Magmakin"]=12806,["Greshka"]=12807,["Xen'Zilla"]=12816,["Ruul Snowhoof"]=12818,["Wandering Protector"]=12836,["Yama Snowhoof"]=12837,["Ashenvale Outrunner"]=12856,["Torek"]=12858,["Splintertree Raider"]=12859,["Duriel Moonfire"]=12860,["Warsong Scout"]=12862,["Warsong Runner"]=12863,["Warsong Outrider"]=12864,["Ambassador Malcin"]=12865,["Myriam Moonsinger"]=12866,["Kuray'bin"]=12867,["Baron Aquanis"]=12876,["Ertog Ragetusk"]=12877,["Silverwing Sentinel"]=12896,["Silverwing Warrior"]=12897,["Phantim Illusion"]=12898,["Axtroz"]=12899,["Somnus"]=12900,["Lorgus Jett"]=12902,["Splintertree Guard"]=12903,["Chief Murgut"]=12918,["Nat Pagle"]=12919,["Doctor Gregory Victor"]=12920,["Enraged Foulweald"]=12921,["Imp Minion"]=12922,["Wounded Soldier"]=12923,["Badly Injured Soldier"]=12924,["Critically Injured Soldier"]=12925,["Badly Injured Alliance Soldier"]=12936,["Critically Injured Alliance Soldier"]=12937,["Injured Alliance Soldier"]=12938,["Doctor Gustaf VanHowzen"]=12939,["Vorsha the Lasher"]=12940,["Jase Farlane"]=12941,["Leonard Porter"]=12942,["Werg Thickblade"]=12943,["Lokhtos Darkbargainer"]=12944,["Zannok Hidepiercer"]=12956,["Blimo Gadgetspring"]=12957,["Gigget Zipcoil"]=12958,["Nergal"]=12959,["Christi Galvanis"]=12960,["Kil'Hiwana"]=12961,["Wik'Tar"]=12962,["Kolkar Waylayer"]=12976,["Kolkar Ambusher"]=12977,["Mounted Ironforge Mountaineer"]=12996,["Monty"]=12997,["Dwarven Farmer"]=12998,["World Invisible Trigger"]=12999,["Gnome Engineer"]=13000,["Deeprun Rat"]=13016,["Enthralled Deeprun Rat"]=13017,["Nipsy"]=13018,["Burning Blade Seer"]=13019,["Vaelastrasz the Corrupt"]=13020,["Warpwood Crusher"]=13021,["Whip Lasher"]=13022,["Gordok Mastiff"]=13036,["Dun Morogh Mountaineer"]=13076,["Umi Thorson"]=13078,["Keetar"]=13079,["Irondeep Guard"]=13080,["Irondeep Raider"]=13081,["Milton Beats"]=13082,["Bixi Wobblebonk"]=13084,["Myrokos Silentform"]=13085,["Aggi Rumblestomp"]=13086,["Coldmine Invader"]=13087,["Masha Swiftcut"]=13088,["Coldmine Guard"]=13089,["Coldmine Explorer"]=13096,["Coldmine Surveyor"]=13097,["Irondeep Surveyor"]=13098,["Irondeep Explorer"]=13099,["Alliance Spirit Guide"]=13116,["Horde Spirit Guide"]=13117,["Crimson Bodyguard"]=13118,["Hive'Ashi Drone"]=13136,["Lieutenant Rugba"]=13137,["Lieutenant Spencer"]=13138,["Commander Randolph"]=13139,["Commander Dardosh"]=13140,["Deeprot Stomper"]=13141,["Deeprot Tangler"]=13142,["Lieutenant Stronghoof"]=13143,["Lieutenant Vol'talar"]=13144,["Lieutenant Grummus"]=13145,["Lieutenant Murp"]=13146,["Lieutenant Lewis"]=13147,["Flame of Ragnaros"]=13148,["Commander Malgor"]=13152,["Commander Mulfort"]=13153,["Commander Louis Philips"]=13154,["Makasgar"]=13157,["Lieutenant Sanders"]=13158,["James Clark"]=13159,["Carrion Swarmer"]=13160,["Aerie Gryphon"]=13161,["Smith Regzar"]=13176,["Vahgruk"]=13177,["War Rider"]=13178,["Wing Commander Guse"]=13179,["Wing Commander Jeztor"]=13180,["Wing Commander Mulverick"]=13181,["Phase Lasher"]=13196,["Fel Lash"]=13197,["Gaelden Hammersmith"]=13216,["Thanthaldis Snowgleam"]=13217,["Grunnda Wolfheart"]=13218,["Jorek Ironside"]=13219,["Layo Starstrike"]=13220,["Primalist Thurloga"]=13236,["Lokholar the Ice Lord"]=13256,["Murgot Deepforge"]=13257,["Wildspawn Imp"]=13276,["Dahne Pierce"]=13277,["Duke Hydraxis"]=13278,["Discordant Surge"]=13279,["Hydrospawn"]=13280,["Noxxion"]=13282,["Lord Tony Romano"]=13283,["Frostwolf Shaman"]=13284,["Death Lash"]=13285,["Lieutenant Largent"]=13296,["Lieutenant Stouthandle"]=13297,["Lieutenant Greywand"]=13298,["Lieutenant Lonadin"]=13299,["Lieutenant Mancuso"]=13300,["Hive'Ashi Ambusher"]=13301,["Coldmine Peon"]=13316,["Coldmine Miner"]=13317,["Commander Mortimer"]=13318,["Commander Duffy"]=13319,["Commander Karl Philips"]=13320,["Small Frog"]=13321,["Hydraxian Honor Guard"]=13322,["Subterranean Diemetradon"]=13323,["Seasoned Guardsman"]=13324,["Seasoned Mountaineer"]=13325,["Seasoned Defender"]=13326,["Seasoned Sentinel"]=13327,["Seasoned Guardian"]=13328,["Seasoned Legionnaire"]=13329,["Seasoned Warrior"]=13330,["Veteran Defender"]=13331,["Veteran Guardian"]=13332,["Veteran Guardsman"]=13333,["Veteran Legionnaire"]=13334,["Veteran Mountaineer"]=13335,["Veteran Sentinel"]=13336,["Veteran Warrior"]=13337,["Core Rat"]=13338,["Stormpike Bowman"]=13358,["Frostwolf Bowman"]=13359,["Frostwolf Shredder Unit"]=13378,["Irondeep Miner"]=13396,["Irondeep Peon"]=13397,["Stormpike Shredder Unit"]=13416,["Sagorne Creststrider"]=13417,["Kaymard Copperpinch"]=13418,["Ivus the Forest Lord"]=13419,["Penney Copperpinch"]=13420,["Champion Guardian"]=13421,["Champion Defender"]=13422,["Champion Guardsman"]=13424,["Champion Legionnaire"]=13425,["Champion Mountaineer"]=13426,["Champion Sentinel"]=13427,["Nardstrum Copperpinch"]=13429,["Jaycrue Copperpinch"]=13430,["Whulwert Copperpinch"]=13431,["Seersa Copperpinch"]=13432,["Wulmort Jinglepocket"]=13433,["Macey Jinglepocket"]=13434,["Khole Jinglepocket"]=13435,["Guchie Jinglepocket"]=13436,["Wing Commander Ichman"]=13437,["Wing Commander Slidore"]=13438,["Wing Commander Vipore"]=13439,["Frostwolf Wolf Rider"]=13440,["Frostwolf Wolf Rider Commander"]=13441,["Arch Druid Renferal"]=13442,["Druid of the Grove"]=13443,["Greatfather Winter"]=13444,["Great-father Winter"]=13445,["Field Marshal Teravaine"]=13446,["Corporal Noreg Stormpike"]=13447,["Sergeant Yazra Bloodsnarl"]=13448,["Warmaster Garrick"]=13449,["Noxxion's Spawn"]=13456,["Zen'Balai"]=13476,["Stormpike Commando"]=13524,["Seasoned Commando"]=13525,["Veteran Commando"]=13526,["Champion Commando"]=13527,["Seasoned Reaver"]=13529,["Veteran Reaver"]=13530,["Champion Reaver"]=13531,["Spewed Larva"]=13533,["Seasoned Coldmine Guard"]=13534,["Veteran Coldmine Guard"]=13535,["Champion Coldmine Guard"]=13536,["Seasoned Coldmine Surveyor"]=13537,["Veteran Coldmine Surveyor"]=13538,["Champion Coldmine Surveyor"]=13539,["Seasoned Irondeep Explorer"]=13540,["Veteran Irondeep Explorer"]=13541,["Champion Irondeep Explorer"]=13542,["Seasoned Irondeep Raider"]=13543,["Veteran Irondeep Raider"]=13544,["Champion Irondeep Raider"]=13545,["Seasoned Coldmine Explorer"]=13546,["Veteran Coldmine Explorer"]=13547,["Champion Coldmine Explorer"]=13548,["Seasoned Coldmine Invader"]=13549,["Veteran Coldmine Invader"]=13550,["Champion Coldmine Invader"]=13551,["Seasoned Irondeep Guard"]=13552,["Veteran Irondeep Guard"]=13553,["Champion Irondeep Guard"]=13554,["Seasoned Irondeep Surveyor"]=13555,["Veteran Irondeep Surveyor"]=13556,["Champion Irondeep Surveyor"]=13557,["Stormpike Ram Rider"]=13576,["Stormpike Ram Rider Commander"]=13577,["Rotgrip"]=13596,["Frostwolf Explosives Expert"]=13597,["Stormpike Explosives Expert"]=13598,["Stolid Snapjaw"]=13599,["Tinkerer Gizlock"]=13601,["The Abominable Greench"]=13602,["Frostwolf Stable Master"]=13616,["Stormpike Stable Master"]=13617,["Stabled Frostwolf"]=13618,["Strange Snowman"]=13636,["Willow"]=13656,["Noxxious Scion"]=13696,["Cavindra"]=13697,["Keeper Marandis"]=13698,["Selendra"]=13699,["Celebras the Redeemed"]=13716,["Centaur Pariah"]=13717,["The Nameless Prophet"]=13718,["Noxxious Essence"]=13736,["Marandis' Sister"]=13737,["Veng"]=13738,["Maraudos"]=13739,["Magra"]=13740,["Gelk"]=13741,["Kolk"]=13742,["Corrupt Force of Nature"]=13743,["PvP Graveyard Credit Marker"]=13756,["Corporal Teeka Bloodsnarl"]=13776,["Sergeant Durgen Stormpike"]=13777,["PvP Tower Credit Marker"]=13778,["PvP Mine Credit Marker"]=13796,["Mountaineer Boombellow"]=13797,["Jotek"]=13798,["Prospector Stonehewer"]=13816,["Voggah Deathgrip"]=13817,["Burning Blade Nightmare"]=13836,["Captured Stallion"]=13837,["Royal Dreadguard"]=13839,["Warmaster Laggrond"]=13840,["Lieutenant Haggerdin"]=13841,["Frostwolf Ambassador Rokhstrom"]=13842,["Lieutenant Rotimer"]=13843,["Mekgineer Trigger"]=13876,["Scalebeard"]=13896,["Dire Maul Crystal Totem"]=13916,["Izzy Coppergrab"]=13917,["Ravenholdt"]=13936,["Alterac Yeti"]=13959,["Tortured Drake"]=13976,["Blackwing Technician"]=13996,["Chromaggus"]=14020,["Corrupted Red Whelp"]=14022,["Corrupted Green Whelp"]=14023,["Corrupted Blue Whelp"]=14024,["Corrupted Bronze Whelp"]=14025,["Trigger Guse"]=14026,["Trigger Mulverick"]=14027,["Trigger Jeztor"]=14028,["Trigger Ichman"]=14029,["Trigger Slidore"]=14030,["Trigger Vipore"]=14031,["Haggle"]=14041,["Demon Portal"]=14081,["Enraged Felguard"]=14101,["Deeprun Diver"]=14121,["Massive Geyser"]=14122,["Steeljaw Snapper"]=14123,["Ar'lia"]=14143,["RaidMage"]=14162,["Bounty Hunter Kolark"]=14182,["Artilleryman Sheldonore"]=14183,["Najak Hexxen"]=14185,["Ravak Grimtotem"]=14186,["Athramanis"]=14187,["Dirk Swindle"]=14188,["Gravis Slipknot"]=14221,["Araga"]=14222,["Cranky Benj"]=14223,["7:XT"]=14224,["Prince Kellen"]=14225,["Kaskk"]=14226,["Hissperak"]=14227,["Giggler"]=14228,["Accursed Slitherblade"]=14229,["Burgle Eye"]=14230,["Drogoth the Roamer"]=14231,["Dart"]=14232,["Ripscale"]=14233,["Hayoc"]=14234,["The Rot"]=14235,["Lord Angler"]=14236,["Oozeworm"]=14237,["Ironbark the Redeemed"]=14241,["[UNUSED] Sulhasa"]=14242,["Blue Drakonid"]=14261,["Green Drakonid"]=14262,["Bronze Drakonid"]=14263,["Red Drakonid"]=14264,["Black Drakonid"]=14265,["Shanda the Spinner"]=14266,["Emogg the Crusher"]=14267,["Lord Condar"]=14268,["Seeker Aqualon"]=14269,["Squiddic"]=14270,["Ribchaser"]=14271,["Snarlflare"]=14272,["Boulderheart"]=14273,["Tamra Stormpike"]=14275,["Scargil"]=14276,["Lady Zephris"]=14277,["Ro'Bark"]=14278,["Creepthess"]=14279,["Big Samras"]=14280,["Jimmy the Bleeder"]=14281,["Frostwolf Bloodhound"]=14282,["Stormpike Owl"]=14283,["Stormpike Battleguard"]=14284,["Frostwolf Battleguard"]=14285,["Brinna Valanaar"]=14301,["Chromatic Drakonid"]=14302,["Petrified Guardian"]=14303,["Kor'kron Elite"]=14304,["Human Orphan"]=14305,["Eskhandar"]=14306,["Black Drakonid Spawner"]=14307,["Ferra"]=14308,["Red Drakonid Spawner"]=14309,["Green Drakonid Spawner"]=14310,["Bronze Drakonid Spawner"]=14311,["Blue Drakonid Spawner"]=14312,["Guard Fengus"]=14321,["Stomper Kreeg"]=14322,["Guard Slip'kik"]=14323,["Cho'Rush the Observer"]=14324,["Captain Kromcrush"]=14325,["Guard Mol'dar"]=14326,["Lethtendris"]=14327,["Black War Wolf"]=14329,["Black War Raptor"]=14330,["Red Skeletal Warhorse"]=14331,["Black War Steed"]=14332,["Black War Kodo"]=14333,["Black Battlestrider"]=14334,["Black War Ram"]=14335,["Black War Tiger"]=14336,["Field Repair Bot 74A"]=14337,["Knot Thimblejack"]=14338,["Death Howl"]=14339,["Alshirr Banebreath"]=14340,["Ragepaw"]=14342,["Olm the Wise"]=14343,["Mongress"]=14344,["The Ongar"]=14345,["Highlord Demitrian"]=14347,["Earthcaller Franzahl"]=14348,["Pimgib"]=14349,["Hydroling"]=14350,["Gordok Bushwacker"]=14351,["Mizzle the Crafty"]=14353,["Pusillin"]=14354,["Azj'Tordin"]=14355,["Sawfin Frenzy"]=14356,["Lake Thresher"]=14357,["Shen'dralar Ancient"]=14358,["Shen'dralar Wisp"]=14361,["Thornling"]=14362,["Thief Catcher Shadowdelve"]=14363,["Shen'dralar Spirit"]=14364,["Thief Catcher Farmountain"]=14365,["Warpwood Spores"]=14366,["Thief Catcher Thunderbrew"]=14367,["Lorekeeper Lydros"]=14368,["Shen'dralar Zealot"]=14369,["Cadaverous Worm"]=14370,["Shen'dralar Provisioner"]=14371,["Winterfall Ambusher"]=14372,["Sage Korolusk"]=14373,["Scholar Runethorn"]=14374,["Scout Stronghand"]=14375,["Scout Manslayer"]=14376,["Scout Tharr"]=14377,["Huntress Skymane"]=14378,["Huntress Ravenoak"]=14379,["Huntress Leafrunner"]=14380,["Lorekeeper Javon"]=14381,["Lorekeeper Mykos"]=14382,["Lorekeeper Kildrath"]=14383,["Doomguard Minion"]=14385,["Wandering Eye of Kilrogg"]=14386,["Lothos Riftwaker"]=14387,["Rogue Black Drake"]=14388,["Netherwalker"]=14389,["Expeditionary Mountaineer"]=14390,["Overlord Runthak"]=14392,["Expeditionary Priest"]=14393,["Major Mattingly"]=14394,["Griniblix the Spectator"]=14395,["Eye of Immol'thar"]=14396,["Mana Burst"]=14397,["Eldreth Darter"]=14398,["Arcane Torrent"]=14399,["Arcane Feedback"]=14400,["Master Elemental Shaper Krixix"]=14401,["Seeker Cromwell"]=14402,["Seeker Nahr"]=14403,["Seeker Thompson"]=14404,["Brown Prairie Dog"]=14421,["Officer Jaxon"]=14423,["Mirelow"]=14424,["Gnawbone"]=14425,["Harb Foulmountain"]=14426,["Gibblesnik"]=14427,["Uruson"]=14428,["Grimmaw"]=14429,["Duskstalker"]=14430,["Fury Shelda"]=14431,["Threggil"]=14432,["Sludginn"]=14433,["Alarm-o-Bot"]=14434,["Prince Thunderaan"]=14435,["Mor'zul Bloodbringer"]=14436,["Gorzeeki Wildeyes"]=14437,["Officer Pomeroy"]=14438,["Officer Brady"]=14439,["Hunter Sagewind"]=14440,["Hunter Ragetotem"]=14441,["Hunter Thunderhorn"]=14442,["Doomguard Tap Trigger"]=14443,["Orcish Orphan"]=14444,["Lord Captain Wyrmak"]=14445,["Fingat"]=14446,["Gilmorian"]=14447,["Molt Thorn"]=14448,["Blackwing Orb Trigger"]=14449,["Orphan Matron Nightingale"]=14450,["Orphan Matron Battlewail"]=14451,["Enslaved Doomguard Commander"]=14452,["Orb of Domination"]=14453,["The Windreaver"]=14454,["Whirling Invader"]=14455,["Blackwing Guardsman"]=14456,["Princess Tempestria"]=14457,["Watery Invader"]=14458,["Nefarian's Troops"]=14459,["Blazing Invader"]=14460,["Baron Charr"]=14461,["Thundering Invader"]=14462,["Daio the Decrepit"]=14463,["Avalanchion"]=14464,["Alliance Battle Standard"]=14465,["Horde Battle Standard"]=14466,["Kroshius"]=14467,["Niby the Almighty"]=14469,["Impsy"]=14470,["Setis"]=14471,["Gretheer"]=14472,["Lapress"]=14473,["Zora"]=14474,["Rex Ashil"]=14475,["Krellack"]=14476,["Grubthor"]=14477,["Huricanian"]=14478,["Twilight Lord Everun"]=14479,["Alowicious Czervik"]=14480,["Emmithue Smails"]=14481,["Xorothian Imp"]=14482,["Dread Guard"]=14483,["Injured Peasant"]=14484,["Plagued Peasant"]=14485,["Scourge Footsoldier"]=14486,["Gluggle"]=14487,["Roloch"]=14488,["Scourge Archer"]=14489,["Rippa"]=14490,["Kurmokk"]=14491,["Verifonix"]=14492,["Eris Havenfire"]=14494,["Invisible Trigger One"]=14495,["Stormwind Orphan"]=14496,["Shellene"]=14497,["Tosamina"]=14498,["Horde Orphan"]=14499,["J'eevee"]=14500,["Xorothian Dreadsteed"]=14502,["The Cleaner"]=14503,["Dreadsteed Spirit"]=14504,["Dreadsteed"]=14505,["Lord Hel'nurath"]=14506,["High Priest Venoxis"]=14507,["Short John Mithril"]=14508,["High Priest Thekal"]=14509,["High Priestess Mar'li"]=14510,["Shadowed Spirit"]=14511,["Corrupted Spirit"]=14512,["Malicious Spirit"]=14513,["Banal Spirit"]=14514,["High Priestess Arlokk"]=14515,["Death Knight Darkreaver"]=14516,["High Priestess Jeklik"]=14517,["Aspect of Banality"]=14518,["Aspect of Corruption"]=14519,["Aspect of Malice"]=14520,["Aspect of Shadow"]=14521,["Ur'dan"]=14522,["Ulathek"]=14523,["Vartrus the Ancient"]=14524,["Stoma the Ancient"]=14525,["Hastat the Ancient"]=14526,["Simone the Inconspicuous"]=14527,["Precious"]=14528,["Franklin the Friendly"]=14529,["Solenor the Slayer"]=14530,["Artorius the Amiable"]=14531,["Razzashi Venombrood"]=14532,["Simone the Seductress"]=14533,["Klinfran the Crazed"]=14534,["Artorius the Doombringer"]=14535,["Nelson the Nice"]=14536,["Precious the Devourer"]=14538,["Swift Timber Wolf"]=14539,["Swift Brown Wolf"]=14540,["Swift Gray Wolf"]=14541,["Great White Kodo"]=14542,["Swift Olive Raptor"]=14543,["Swift Orange Raptor"]=14544,["Swift Blue Raptor"]=14545,["Swift Brown Ram"]=14546,["Swift White Ram"]=14547,["Swift Gray Ram"]=14548,["Great Brown Kodo"]=14549,["Great Gray Kodo"]=14550,["Swift Yellow Mechanostrider"]=14551,["Swift White Mechanostrider"]=14552,["Swift Green Mechanostrider"]=14553,["Swift Mistsaber"]=14555,["Swift Frostsaber"]=14556,["Swift Dawnsaber"]=14557,["Purple Skeletal Warhorse"]=14558,["Swift Palomino"]=14559,["Swift White Steed"]=14560,["Swift Brown Steed"]=14561,["Swift Red Mechanostrider"]=14563,["Terrordale Spirit"]=14564,["Charger"]=14565,["Ancient Equine Spirit"]=14566,["Derotain Mudsipper"]=14567,["Darkreaver's Fallen Charger"]=14568,["Sergeant Thunderhorn"]=14581,["Ebonroc"]=14601,["Swift Stormsaber"]=14602,["Zapped Shore Strider"]=14603,["Zapped Land Walker"]=14604,["Bone Construct"]=14605,["Overseer Maltorius"]=14621,["Thorium Brotherhood Lookout"]=14622,["Warsong Gulch Battlemaster"]=14623,["Master Smith Burninate"]=14624,["Overseer Oilfist"]=14625,["Taskmaster Scrange"]=14626,["Hansel Heavyhands"]=14627,["Evonice Sootsmoker"]=14628,["Loggerhead Snapjaw"]=14629,["Leatherback Snapjaw"]=14630,["Olive Snapjaw"]=14631,["Hawksbill Snapjaw"]=14632,["Albino Snapjaw"]=14633,["Lookout Captain Lolo Longstriker"]=14634,["Sleepy Dark Iron Worker"]=14635,["Chambermaid Pillaclencher"]=14636,["Zorbin Fandazzle"]=14637,["Zapped Wave Strider"]=14638,["Zapped Deep Strider"]=14639,["Zapped Cliff Giant"]=14640,["Warsong Gulch Herald"]=14645,["Stratholme Trigger"]=14646,["Stinglasher"]=14661,["Corrupted Fire Nova Totem V"]=14662,["Corrupted Stoneskin Totem VI"]=14663,["Corrupted Healing Stream Totem V"]=14664,["Corrupted Windfury Totem III"]=14666,["Corrupted Totem"]=14667,["Corrupted Infernal"]=14668,["Sever"]=14682,["Balzaphon"]=14684,["Lady Falther'ess"]=14686,["Prince Sandoval"]=14688,["Revanchion"]=14690,["Scorn"]=14693,["Lord Blackwood"]=14695,["Lumbering Horror"]=14697,["Silverwing Elite"]=14715,["Horde Elite"]=14717,["Horde Laborer"]=14718,["High Overlord Saurfang"]=14720,["Field Marshal Afrasiabi"]=14721,["Clavicus Knavingham"]=14722,["Mistina Steelshield"]=14723,["Bubulo Acerbus"]=14724,["Raedon Duskstriker"]=14725,["Rashona Straglash"]=14726,["Vehena"]=14727,["Rumstag Proudstrider"]=14728,["Ralston Farnsley"]=14729,["Revantusk Watcher"]=14730,["Lard"]=14731,["PvP CTF Credit Marker"]=14732,["Sentinel Farsong"]=14733,["Revantusk Drummer"]=14734,["Primal Torntusk"]=14736,["Smith Slagtree"]=14737,["Otho Moji'ko"]=14738,["Mystic Yayo'jin"]=14739,["Katoom the Angler"]=14740,["Huntsman Markhor"]=14741,["Zap Farflinger"]=14742,["Jhordy Lapforge"]=14743,["Frostwolf Howler"]=14744,["Stormpike Battle Charger"]=14745,["Vilebranch Kidnapper"]=14748,["Gurubashi Bat Rider"]=14750,["Frostwolf Battle Standard"]=14751,["Stormpike Battle Standard"]=14752,["Illiyana Moonblaze"]=14753,["Kelm Hargunth"]=14754,["Tiny Green Dragon"]=14755,["Tiny Red Dragon"]=14756,["Elder Torntusk"]=14757,["Zul'Gurub Trigger"]=14758,["Creeping Doom"]=14761,["Dun Baldar North Marshal"]=14762,["Dun Baldar South Marshal"]=14763,["Icewing Marshal"]=14764,["Stonehearth Marshal"]=14765,["Iceblood Marshal"]=14766,["Tower Point Marshal"]=14767,["East Frostwolf Marshal"]=14768,["West Frostwolf Marshal"]=14769,["Dun Baldar North Warmaster"]=14770,["Dun Baldar South Warmaster"]=14771,["East Frostwolf Warmaster"]=14772,["Iceblood Warmaster"]=14773,["Icewing Warmaster"]=14774,["Stonehearth Warmaster"]=14775,["Tower Point Warmaster"]=14776,["West Frostwolf Warmaster"]=14777,["Captain Shatterskull"]=14781,["Razzashi Raptor"]=14821,["Sayge"]=14822,["Silas Darkmoon"]=14823,["Withered Mistress"]=14825,["Sacrificed Troll"]=14826,["Burth"]=14827,["Gelvas Grimegate"]=14828,["Yebb Neblegear"]=14829,["Unkillable Test Dummy 60 Warrior"]=14830,["Kerri Hicks"]=14832,["Chronos"]=14833,["Hakkar"]=14834,["Rinling"]=14841,["Melnan Darkstone"]=14842,["Kruban Darkblade"]=14843,["Sylannia"]=14844,["Stamp Thunderhorn"]=14845,["Lhara"]=14846,["Professor Thaddeus Paleo"]=14847,["Herald"]=14848,["Darkmoon Carnie"]=14849,["Gruk"]=14850,["Erk"]=14857,["Guard Taruc"]=14859,["Flik"]=14860,["Blood Steward of Kirtonos"]=14861,["Emissary Roman'khan"]=14862,["Khaz Modan Ram"]=14864,["Felinni"]=14865,["Flik's Frog"]=14866,["Jubjub"]=14867,["Hornsley"]=14868,["Pygmy Cockatrice"]=14869,["Morja"]=14871,["Trok"]=14872,["Okla"]=14873,["Karu"]=14874,["Molthor"]=14875,["Zandalar Headshrinker"]=14876,["Jubling"]=14878,["Arathi Basin Battlemaster"]=14879,["Razzashi Skitterer"]=14880,["Spider"]=14881,["Atal'ai Mistress"]=14882,["Voodoo Slave"]=14883,["Parasitic Serpent"]=14884,["Jonathan LeCraft"]=14885,["Ysondre"]=14887,["Lethon"]=14888,["Emeriss"]=14889,["Taerar"]=14890,["Fang"]=14892,["Guard Kurall"]=14893,["Swarm of bees"]=14894,["Peon"]=14901,["Jin'rokh the Breaker"]=14902,["Al'tabim the All-Seeing"]=14903,["Maywiki of Zuldazar"]=14904,["Falthir the Sightless"]=14905,["Mogg"]=14908,["Pooka"]=14909,["Exzhal"]=14910,["Zandalar Enforcer"]=14911,["Captured Hakkari Zealot"]=14912,["Rin'wosho the Trader"]=14921,["Kartra Bloodsnarl"]=14942,["Guse's War Rider"]=14943,["Jeztor's War Rider"]=14944,["Mulverick's War Rider"]=14945,["Slidore's Gryphon"]=14946,["Ichman's Gryphon"]=14947,["Vipore's Gryphon"]=14948,["Mirvyna Jinglepocket"]=14961,["Dillord Copperpinch"]=14962,["Gapp Jinglepocket"]=14963,["Hecht Copperpinch"]=14964,["Frenzied Bloodseeker Bat"]=14965,["Elfarran"]=14981,["Lylandris"]=14982,["Field Marshal Oslight"]=14983,["Sergeant Maclear"]=14984,["Shade of Jin'do"]=14986,["Powerful Healing Ward"]=14987,["Ohgan"]=14988,["Poisonous Cloud"]=14989,["Defilers Envoy"]=14990,["League of Arathor Emissary"]=14991,["Zandalarian Event Generator"]=14994,["Deze Snowbane"]=15006,["Sir Malory Wheeler"]=15007,["Lady Hoteshem"]=15008,["Voodoo Spirit"]=15009,["Jungle Toad"]=15010,["Wagner Hammerstrike"]=15011,["Javnir Nashak"]=15012,["Deathmaster Dwire"]=15021,["Deathstalker Mortis"]=15022,["Spawn of Mar'li"]=15041,["Zanza the Restless"]=15042,["Zulian Crocolisk"]=15043,["Arathi Farmer"]=15045,["Forsaken Farmer"]=15046,["Gurubashi"]=15047,["Spirit of Jin'do"]=15061,["Arathi Lumberjack"]=15062,["Arathi Blacksmith"]=15063,["Forsaken Blacksmith"]=15064,["Lady"]=15065,["Cleo"]=15066,["Zulian Stalker"]=15067,["Zulian Guardian"]=15068,["Heart of Hakkar"]=15069,["Vinchaxa"]=15070,["Underfoot"]=15071,["Spike"]=15072,["Pat's Hellfire Guy"]=15073,["Arathi Miner"]=15074,["Forsaken Miner"]=15075,["Zandalarian Emissary"]=15076,["Riggle Bassbait"]=15077,["Jang"]=15078,["Fishbot 5000"]=15079,["Servant of the Hand"]=15080,["Gri'lek"]=15082,["Hazza'rah"]=15083,["Renataki"]=15084,["Wushoolay"]=15085,["Arathi Stablehand"]=15086,["Forsaken Stablehand"]=15087,["Booty Bay Elite"]=15088,["Forsaken Lumberjack"]=15089,["Swift Razzashi Raptor"]=15090,["Zul'Gurub Panther Trigger"]=15091,["Zulian Prowler"]=15101,["Silverwing Emissary"]=15102,["Stormpike Emissary"]=15103,["Swift Zulian Tiger"]=15104,["Warsong Envoy"]=15105,["Frostwolf Envoy"]=15106,["Arathi Horse"]=15107,["Forsaken Horse"]=15108,["Mad Servant"]=15111,["Brain Wash Totem"]=15112,["Honored Hero"]=15113,["Gahz'ranka"]=15114,["Honored Ancestor"]=15115,["Grinkle"]=15116,["Chained Spirit"]=15117,["Barrus"]=15119,["Gahz'ranka Dead"]=15122,["Targot Jinglepocket"]=15124,["Kosco Copperpinch"]=15125,["Rutherford Twing"]=15126,["Samuel Hawke"]=15127,["Defiler Elite"]=15128,["League of Arathor Elite"]=15130,["Qeeju"]=15131,["Hammerfall Elite"]=15136,["Menethil Elite"]=15137,["Silverpine Elite"]=15138,["Pat's Splash Guy"]=15140,["Portal of Madness"]=15141,["Mad Voidwalker"]=15146,["Scarlet Inquisitor"]=15162,["Nightmare Illusion"]=15163,["Mulgore Trigger"]=15164,["Haughty Modiste"]=15165,["Vile Scarab"]=15168,["Ralo'shan the Eternal Watcher"]=15169,["Rutgar Glyphshaper"]=15170,["Frankal Stonebridge"]=15171,["Glibb"]=15172,["Calandrath"]=15174,["Khur Hornstriker"]=15175,["Vargus"]=15176,["Cloud Skydancer"]=15177,["Runk Windtamer"]=15178,["Mishta"]=15179,["Baristolth of the Shifting Sands"]=15180,["Commander Mar'alith"]=15181,["Vish Kozus"]=15182,["Geologist Larksbane"]=15183,["Cenarion Hold Infantry"]=15184,["Brood of Nozdormu"]=15185,["Murky"]=15186,["Cenarion Emissary Jademoon"]=15187,["Cenarion Emissary Blackhoof"]=15188,["Beetix Ficklespragg"]=15189,["Noggle Ficklespragg"]=15190,["Windcaller Proudhorn"]=15191,["Anachronos"]=15192,["The Banshee Queen"]=15193,["Hermit Ortell"]=15194,["Wickerman Guardian"]=15195,["Deathclasp"]=15196,["Darkcaller Yanka"]=15197,["Blackwing"]=15198,["Sergeant Hartman"]=15199,["Twilight Keeper Mayna"]=15200,["Twilight Flamereaver"]=15201,["Vyral the Vile"]=15202,["Prince Skaldrenox"]=15203,["High Marshal Whirlaxis"]=15204,["Baron Kazum"]=15205,["The Duke of Cynders"]=15206,["The Duke of Fathoms"]=15207,["The Duke of Shards"]=15208,["Crimson Templar"]=15209,["Azure Templar"]=15211,["Hoary Templar"]=15212,["Twilight Overlord"]=15213,["Invisible Stalker"]=15214,["Mistress Natalia Mar'alith"]=15215,["Darkmoon Faire Cannon"]=15218,["The Duke of Zephyrs"]=15220,["Frankal Invisible Trigger"]=15221,["Rutgar Invisible Trigger"]=15222,["Dream Fog"]=15224,["Vekniss Soldier"]=15229,["Vekniss Warrior"]=15230,["Vekniss Guardian"]=15233,["Vekniss Stinger"]=15235,["Vekniss Wasp"]=15236,["Vekniss Hive Crawler"]=15240,["Gryphon Rider Guard"]=15241,["Bat Rider Guard"]=15242,["Qiraji Mindslayer"]=15246,["Qiraji Brainwasher"]=15247,["Qiraji Lasher"]=15249,["Qiraji Slayer"]=15250,["Qiraji Champion"]=15252,["Demented Druid Spirit"]=15260,["Spirit Shade"]=15261,["Obsidian Eradicator"]=15262,["The Prophet Skeram"]=15263,["Anubisath Sentinel"]=15264,["Huum Wildmane"]=15270,["Tender"]=15271,["Arcane Wraith"]=15273,["Mana Wyrm"]=15274,["Emperor Vek'nilash"]=15275,["Emperor Vek'lor"]=15276,["Anubisath Defender"]=15277,["Magistrix Erona"]=15278,["Julia Sunstriker"]=15279,["Jesthenis Sunstriker"]=15280,["Lanthan Perilon"]=15281,["Aurel Goldleaf"]=15282,["Summoner Teli'Larien"]=15283,["Matron Arena"]=15284,["Pathstalker Kariel"]=15285,["Xil'xix"]=15286,["Shara Sunwing"]=15287,["Aluntir"]=15288,["Raelis Dawnstar"]=15289,["Arakis"]=15290,["Jainthess Thelryn"]=15291,["Faraden Thelryn"]=15292,["Aendel Windspear"]=15293,["Feral Tender"]=15294,["Well Watcher Solanian"]=15295,["Arcanist Ithanas"]=15296,["Arcanist Helion"]=15297,["Tainted Arcane Wraith"]=15298,["Viscidus"]=15299,["Vekniss Drone"]=15300,["Outrunner Alarion"]=15301,["Shade of Taerar"]=15302,["Maxima Blastenheimer"]=15303,["Ancient Mana Spring Totem"]=15304,["Lord Skwol"]=15305,["Bor Wildmane"]=15306,["Earthen Templar"]=15307,["Twilight Prophet"]=15308,["Spoops"]=15309,["Jesper"]=15310,["Anubisath Warder"]=15311,["Obsidian Nullifier"]=15312,["Moonkin (Druid - Tauren)"]=15314,["Mylini Frostmoon"]=15315,["Qiraji Scarab"]=15316,["Qiraji Scorpion"]=15317,["Hive'Zara Drone"]=15318,["Hive'Zara Collector"]=15319,["Hive'Zara Soldier"]=15320,["Hive'Zara Sandstalker"]=15323,["Qiraji Gladiator"]=15324,["Hive'Zara Wasp"]=15325,["Hive'Zara Stinger"]=15327,["Steam Tank"]=15328,["Silicate Feeder"]=15333,["Giant Eye Tentacle"]=15334,["Flesh Hunter"]=15335,["Hive'Zara Tail Lasher"]=15336,["Obsidian Destroyer"]=15338,["Ossirian the Unscarred"]=15339,["Moam"]=15340,["General Rajaxx"]=15341,["Qiraji Swarmguard"]=15343,["Swarmguard Needler"]=15344,["Kurinnaxx"]=15348,["Horde Warbringer"]=15350,["Alliance Brigadier General"]=15351,["Greater Earth Elemental"]=15352,["Katrina Shimmerstar"]=15353,["Rachelle Gothena"]=15354,["Anubisath Guardian"]=15355,["Blue Baby Murloc"]=15356,["Purple Baby Murloc"]=15357,["Lurky"]=15358,["Pink Baby Murloc"]=15359,["Green Baby Murloc"]=15360,["Murki"]=15361,["Malfurion Stormrage"]=15362,["Totem of Spirits"]=15363,["Springpaw Cub"]=15366,["Felendren the Banished"]=15367,["Tonk Mine"]=15368,["Ayamiss the Hunter"]=15369,["Buru the Gorger"]=15370,["Sunstrider Guardian"]=15371,["Springpaw Lynx"]=15372,["Merithra of the Dream"]=15378,["Caelestrasz"]=15379,["Arygos"]=15380,["Anachronos the Ancient"]=15381,["Fandral Staghelm"]=15382,["Sergeant Stonebrow"]=15383,["OLDWorld Trigger (DO NOT DELETE)"]=15384,["Colonel Zerran"]=15385,["Major Yeggeth"]=15386,["Qiraji Warrior"]=15387,["Major Pakkon"]=15388,["Captain Drenn"]=15389,["Captain Xurrem"]=15390,["Captain Qeez"]=15391,["Captain Tuubid"]=15392,["[UNUSED] Ruins Qiraji Gladiator Named 7"]=15393,["Nafien"]=15395,["Marniel Amberlight"]=15397,["Larianna Riverwind"]=15398,["Lieutenant Dawnrunner"]=15399,["Arathel Sunforge"]=15400,["Ley-Keeper Velania"]=15401,["Apprentice Mirveda"]=15402,["Aeldon Sunbrand"]=15403,["Velendris Whitemorn"]=15404,["Ley-Keeper Caidanis"]=15405,["Ven'jashi"]=15406,["Chieftain Zul'Marosh"]=15407,["Spearcrafter Otembe"]=15408,["Old Whitebark"]=15409,["Qiraji Wasp"]=15414,["Southshore Stink Bomb Counter"]=15415,["Ranger Jaela"]=15416,["Velan Brightoak"]=15417,["Magister Jaronis"]=15418,["Kania"]=15419,["Prospector Anvilward"]=15420,["Qiraji Drone"]=15421,["Qiraji Tank"]=15422,["Kaldorei Infantry"]=15423,["Anubisath Conqueror"]=15424,["Ahn'Qiraj Trigger"]=15426,["Sand Vortex"]=15428,["Disgusting Oozeling"]=15429,["Earth Elemental Totem"]=15430,["Corporal Carnes"]=15431,["Dame Twinbraid"]=15432,["Innkeeper Delaniel"]=15433,["Private Draxlegauge"]=15434,["Master Nightsong"]=15437,["Greater Fire Elemental"]=15438,["Fire Elemental Totem"]=15439,["Captain Blackanvil"]=15440,["Ironforge Brigade Rifleman"]=15441,["Ironforge Brigade Footman"]=15442,["Janela Stouthammer"]=15443,["Arcanist Nozzlespring"]=15444,["Sergeant Major Germaine"]=15445,["Bonnie Stoneflayer"]=15446,["Wrath of Air Totem"]=15447,["Private Porter"]=15448,["Hive'Zora Abomination"]=15449,["Marta Finespindle"]=15450,["Sentinel Silversky"]=15451,["Nurse Stonefield"]=15452,["Keeper Moonshade"]=15453,["Anachronos Quest Trigger Invisible"]=15454,["Slicky Gastronome"]=15455,["Sarah Sadwhistle"]=15456,["Huntress Swiftriver"]=15457,["Commander Stronghammer"]=15458,["Miner Cromwell"]=15459,["Grunt Maug"]=15460,["Shrieker Scarab"]=15461,["Spitting Scarab"]=15462,["Grace of Air Totem III"]=15463,["Strength of Earth Totem V"]=15464,["Minion of Omen"]=15466,["Omen"]=15467,["Sunstrider Mana Tap Counter"]=15468,["Senior Sergeant T'kelah"]=15469,["Stoneskin Totem VII"]=15470,["Lieutenant General Andorov"]=15471,["Kaldorei Elite"]=15473,["Stoneskin Totem VIII"]=15474,["Beetle"]=15475,["Scorpion"]=15476,["Herbalist Proudfeather"]=15477,["Stoneclaw Totem VII"]=15478,["Strength of Earth Totem VI"]=15479,["Searing Totem VII"]=15480,["Spirit of Azuregos"]=15481,["Fire Nova Totem VI"]=15482,["Magma Totem V"]=15484,["Flametongue Totem V"]=15485,["Frost Resistance Totem IV"]=15486,["Fire Resistance Totem IV"]=15487,["Healing Stream Totem VI"]=15488,["Mana Spring Totem V"]=15489,["Nature Resistance Totem IV"]=15490,["Eranikus Tyrant of the Dream"]=15491,["Windwall Totem IV"]=15492,["Marsilla Dawnstar"]=15493,["Yasmine Teli'Larien"]=15494,["Nighthaven Defender"]=15495,["Windfury Totem IV"]=15496,["Windfury Totem V"]=15497,["Windcaller Yessendra"]=15498,["Warden Haro"]=15499,["Keyl Swiftclaw"]=15500,["Aleinia"]=15501,["Andorgos"]=15502,["Kandrostrasz"]=15503,["Vethsera"]=15504,["Canal Frenzy"]=15505,["Batrider Pele'keiki"]=15508,["Princess Huhuran"]=15509,["Fankriss the Unyielding"]=15510,["Lord Kri"]=15511,["Apothecary Jezel"]=15512,["Ranger Sallina"]=15513,["Buru Egg"]=15514,["Skinner Jamani"]=15515,["Battleguard Sartura"]=15516,["Ouro"]=15517,["O'Reily"]=15520,["Hive'Zara Hatchling"]=15521,["Sergeant Umala"]=15522,["Temporary Reindeer"]=15524,["Doctor Serratus"]=15525,["Meridith the Mermaiden"]=15526,["Mana Fiend"]=15527,["Healer Longrunner"]=15528,["Lady Callow"]=15529,["Stoneguard Clayhoof"]=15532,["Bloodguard Rawtar"]=15533,["Fisherman Lin'do"]=15534,["Chief Sharpclaw"]=15535,["Anubisath Warrior"]=15537,["Anubisath Swarmguard"]=15538,["General Zog"]=15539,["Windcaller Kaldon"]=15540,["Twilight Marauder Morna"]=15541,["Twilight Marauder"]=15542,["Princess Yauj"]=15543,["Vem"]=15544,["Cenarion Outrider"]=15545,["Hive'Zara Swarmer"]=15546,["Spectral Charger"]=15547,["Spectral Stallion"]=15548,["Elder Morndeep"]=15549,["Attumen the Huntsman"]=15550,["Spectral Stable Hand"]=15551,["Doctor Weavil"]=15552,["Doctor Weavil's Flying Machine"]=15553,["Number Two"]=15554,["Hive'Zara Larva"]=15555,["Elder Splitrock"]=15556,["Elder Rumblerock"]=15557,["Elder Silvervein"]=15558,["Elder Highpeak"]=15559,["Elder Stonefort"]=15560,["Elder Obsidian"]=15561,["Elder Hammershout"]=15562,["Elder Bellowrage"]=15563,["Elder Darkcore"]=15564,["Elder Stormbrow"]=15565,["Elder Snowcrown"]=15566,["Elder Ironband"]=15567,["Elder Graveborn"]=15568,["Elder Goldwell"]=15569,["Elder Primestone"]=15570,["Maws"]=15571,["Elder Runetotem"]=15572,["Elder Ragetotem"]=15573,["Elder Stonespire"]=15574,["Elder Bloodhoof"]=15575,["Elder Winterhoof"]=15576,["Elder Skychaser"]=15577,["Elder Wildmane"]=15578,["Elder Darkhorn"]=15579,["Elder Ezra Wheathoof"]=15580,["Elder Grimtotem"]=15581,["Elder Windtotem"]=15582,["Elder Thunderhorn"]=15583,["Elder Skyseer"]=15584,["Elder Dawnstrider"]=15585,["Elder Dreamseer"]=15586,["Elder Mistwalker"]=15587,["Elder High Mountain"]=15588,["Eye of C'Thun"]=15589,["Ossirian Crystal Trigger"]=15590,["Minion of Weavil"]=15591,["Elder Windrun"]=15592,["Elder Starsong"]=15593,["Elder Moonstrike"]=15594,["Elder Bladeleaf"]=15595,["Elder Starglade"]=15596,["Elder Moonwarden"]=15597,["Elder Bladeswift"]=15598,["Elder Bladesing"]=15599,["Elder Skygleam"]=15600,["Elder Starweave"]=15601,["Elder Meadowrun"]=15602,["Elder Nightwind"]=15603,["Elder Morningdew"]=15604,["Elder Riversong"]=15605,["Elder Brightspear"]=15606,["Elder Farwhisper"]=15607,["Medivh"]=15608,["Cenarion Scout Landion"]=15609,["Cenarion Scout Azenel"]=15610,["Cenarion Scout Jalia"]=15611,["Krug Skullsplit"]=15612,["Merok Longstride"]=15613,["J.D. Shadesong"]=15614,["Shadow Priestess Shai"]=15615,["Orgrimmar Legion Grunt"]=15616,["Orgrimmar Legion Axe Thrower"]=15617,["Hive'Regal Hunter-Killer"]=15620,["Yauj Brood"]=15621,["Vekniss Borer"]=15622,["Xandivious"]=15623,["Forest Wisp"]=15624,["Twilight Corrupter"]=15625,["Eranikus the Redeemed"]=15628,["Nightmare Phantasm"]=15629,["Spawn of Fankriss"]=15630,["Spotlight"]=15631,["Tyrande"]=15633,["Priestess of the Moon"]=15634,["Eversong Tender"]=15635,["Eversong Green Keeper"]=15636,["Withered Green Keeper"]=15637,["Arcane Patroller"]=15638,["Amani Axe Thrower"]=15641,["Amani Shadowpriest"]=15642,["Amani Berserker"]=15643,["Wretched Urchin"]=15644,["Wretched Thug"]=15645,["Mana Stalker"]=15647,["Manawraith"]=15648,["Feral Dragonhawk Hatchling"]=15649,["Crazed Dragonhawk"]=15650,["Springpaw Stalker"]=15651,["Elder Springpaw"]=15652,["Plaguebone Pillager"]=15654,["Rotlimb Cannibal"]=15655,["Angershade"]=15656,["Darkwraith"]=15657,["Rotlimb Marauder"]=15658,["Auctioneer Jaxon"]=15659,["Baby Shark"]=15661,["War Effort Volunteer"]=15663,["Metzen the Reindeer"]=15664,["Mounted Reindeer"]=15665,["Blue Qiraji Battle Tank"]=15666,["Glob of Viscidus"]=15667,["Grimscale Murloc"]=15668,["Grimscale Oracle"]=15669,["Grimscale Forager"]=15670,["Auctioneer Stockton"]=15675,["Auctioneer Yarly"]=15676,["Auctioneer Graves"]=15677,["Auctioneer Silva'las"]=15678,["Auctioneer Cazarez"]=15679,["Auctioneer O'reely"]=15681,["Auctioneer Cain"]=15682,["Auctioneer Naxxremis"]=15683,["Auctioneer Tricket"]=15684,["Southsea Kidnapper"]=15685,["Auctioneer Rhyker"]=15686,["Moroes"]=15687,["Terestian Illhoof"]=15688,["Netherspite"]=15689,["Prince Malchezaar"]=15690,["The Curator"]=15691,["Dark Iron Kidnapper"]=15692,["Jonathan the Revelator"]=15693,["Stormwind Reveler"]=15694,["Vek Twins Trigger"]=15695,["War Effort Recruit"]=15696,["Father Winter's Helper"]=15698,["Tranquil Mechanical Yeti"]=15699,["Warlord Gorchuk"]=15700,["Field Marshal Snowfall"]=15701,["Senior Sergeant Taiga"]=15702,["Senior Sergeant Grimsford"]=15703,["Senior Sergeant Kai'jin"]=15704,["Winter's Little Helper"]=15705,["Winter Reindeer"]=15706,["Master Sergeant Fizzlebolt"]=15707,["Master Sergeant Maclure"]=15708,["Master Sergeant Moonshadow"]=15709,["Tiny Snowman"]=15710,["Black Qiraji Battle Tank"]=15711,["Dirt Mound"]=15712,["Yellow Qiraji Battle Tank"]=15714,["Green Qiraji Battle Tank"]=15715,["Red Qiraji Battle Tank"]=15716,["Ouro Scarab"]=15718,["Thunder Bluff Reveler"]=15719,["Timbermaw Ancestor"]=15720,["Mechanical Greench"]=15721,["Squire Leoren Mal'derath"]=15722,["Booty Bay Reveler"]=15723,["Drunken Bruiser"]=15724,["Claw Tentacle"]=15725,["Eye Tentacle"]=15726,["C'Thun"]=15727,["Giant Claw Tentacle"]=15728,["Pat's Snowcloud Guy"]=15730,["Darnassus Commendation Officer"]=15731,["Wonderform Operator"]=15732,["Gnomeregan Commendation Officer"]=15733,["Ironforge Commendation Officer"]=15734,["Stormwind Commendation Officer"]=15735,["Orgrimmar Commendation Officer"]=15736,["Darkspear Commendation Officer"]=15737,["Undercity Commendation Officer"]=15738,["Thunder Bluff Commendation Officer"]=15739,["Colossus of Zora"]=15740,["Colossus of Regal"]=15741,["Colossus of Ashi"]=15742,["Colossal Anubisath Warbringer"]=15743,["Imperial Qiraji Destroyer"]=15744,["Greatfather Winter's Helper"]=15745,["Great-father Winter's Helper"]=15746,["Qiraji Captain"]=15747,["Lesser Anubisath Warbringer"]=15748,["Lesser Silithid Flayer"]=15749,["Qiraji Major"]=15750,["Anubisath Warbringer"]=15751,["Silithid Flayer"]=15752,["Qiraji Brigadier General"]=15753,["Greater Anubisath Warbringer"]=15754,["Greater Silithid Flayer"]=15756,["Qiraji Lieutenant General"]=15757,["Supreme Anubisath Warbringer"]=15758,["Supreme Silithid Flayer"]=15759,["Winter Reveler"]=15760,["Officer Vu'Shalay"]=15761,["Officer Lunalight"]=15762,["Officer Porterhouse"]=15763,["Officer Ironbeard"]=15764,["Officer Redblade"]=15765,["Officer Maloof"]=15766,["Officer Thunderstrider"]=15767,["Officer Gothena"]=15768,["Resonating Crystal"]=15769,["Greater Resonating Crystal"]=15770,["Major Resonating Crystal"]=15771,["Mouth Tentacle Mount Visual"]=15778,["Human Male Winter Reveler"]=15780,["Human Female Winter Reveler"]=15781,["Goblin Female Winter Reveler"]=15787,["Colossus Researcher Sophia"]=15797,["Colossus Researcher Nestor"]=15798,["Colossus Researcher Eazel"]=15799,["Exit Trigger"]=15800,["GONG BOY DND DNR"]=15801,["Flesh Tentacle"]=15802,["Tranquil Air Totem"]=15803,["Lesser Resonating Crystal"]=15804,["Minor Resonating Crystal"]=15805,["Qiraji Lieutenant"]=15806,["Minor Anubisath Warbringer"]=15807,["Minor Silithid Flayer"]=15808,["Eroded Anubisath Warbringer"]=15810,["Faltering Silithid Flayer"]=15811,["Qiraji Officer"]=15812,["Qiraji Officer Zod"]=15813,["Qiraji Lieutenant Jo-rel"]=15814,["Qiraji Captain Ka'ark"]=15815,["Qiraji Major He'al-ie"]=15816,["Qiraji Brigadier General Pax-lish"]=15817,["Lieutenant General Nokhor"]=15818,["Might of Kalimdor Grunt"]=15839,["Might of Kalimdor Sergeant"]=15840,["Might of Kalimdor Lieutenant"]=15841,["Might of Kalimdor Mage"]=15842,["Might of Kalimdor Priest"]=15843,["Might of Kalimdor Restorer"]=15844,["Might of Kalimdor Captain"]=15845,["Might of Kalimdor Archer"]=15846,["Might of Kalimdor Shaman"]=15847,["Might of Kalimdor Infantry"]=15848,["Might of Kalimdor Druid"]=15849,["Might of Kalimdor Skirmisher"]=15850,["Might of Kalimdor Marshal"]=15851,["Orgrimmar Elite Shieldguard"]=15852,["Orgrimmar Elite Infantryman"]=15853,["Orgrimmar Elite Cavalryman"]=15854,["Tauren Rifleman"]=15855,["Tauren Primalist"]=15856,["Stormwind Cavalryman"]=15857,["Stormwind Infantry"]=15858,["Stormwind Archmage"]=15859,["Kaldorei Marksman"]=15860,["Ironforge Infantryman"]=15861,["Ironforge Cavalryman"]=15862,["Darkspear Shaman"]=15863,["Valadar Starsong"]=15864,["Might of Kalimdor Major"]=15865,["Commander Lynore Windstryke"]=15866,["Might of Kalimdor Archmage"]=15867,["Highlord Leoric Von Zeldig"]=15868,["Malagav the Tactician"]=15869,["Duke August Foehammer"]=15870,["Elder Bronzebeard"]=15871,["Pat's Firework Cluster Guy (BLUE)"]=15872,["Pat's Firework Cluster Guy (RED)"]=15873,["Pat's Firework Cluster Guy (GREEN)"]=15874,["Warcaller Finster"]=15878,["Pat's Firework Guy - BLUE"]=15879,["Pat's Firework Guy - GREEN"]=15880,["Pat's Firework Guy - RED"]=15882,["Pat's Firework Guy - YELLOW"]=15883,["Pat's Firework Guy - WHITE"]=15884,["Pat's Firework Guy - BLUE BIG"]=15885,["Pat's Firework Guy - GREEN BIG"]=15886,["Pat's Firework Guy - PURPLE BIG"]=15887,["Pat's Firework Guy - RED BIG"]=15888,["Pat's Firework Guy - WHITE BIG"]=15889,["Pat's Firework Guy - YELLOW BIG"]=15890,["Lunar Festival Herald"]=15891,["Lunar Festival Emissary"]=15892,["Lunar Firework Credit Marker"]=15893,["Lunar Cluster Credit Marker"]=15894,["Lunar Festival Harbinger"]=15895,["C'Thun Portal"]=15896,["Large Spotlight"]=15897,["Lunar Festival Vendor"]=15898,["Vanquished Tentacle"]=15901,["Giant Spotlight"]=15902,["Sergeant Carnes"]=15903,["Tentacle Portal"]=15904,["Darnassus Reveler"]=15905,["Ironforge Reveler"]=15906,["Undercity Reveler"]=15907,["Orgrimmar Reveler"]=15908,["Fariel Starsong"]=15909,["Giant Tentacle Portal"]=15910,["Pat's Firework Cluster Guy (BLUE BIG)"]=15911,["Pat's Firework Cluster Guy (GREEN BIG)"]=15912,["Pat's Firework Cluster Guy (RED BIG)"]=15914,["Lunar Festival Reveler"]=15917,["Pat's Firework Cluster Guy (ELUNE)"]=15918,["Jade Owl"]=15919,["Hathvelion Sungaze"]=15920,["Captain Kelisendra"]=15921,["Golden Hare"]=15923,["Apprentice Loralthalis"]=15924,["Toxic Slime"]=15925,["Black Pearl Panther"]=15926,["Truesilver Crab"]=15927,["Thaddius"]=15928,["Stalagg"]=15929,["Feugen"]=15930,["Grobbulus"]=15931,["Gluth"]=15932,["Poison Cloud"]=15933,["Hive'Zara Hornet"]=15934,["Truesilver Boar"]=15935,["Heigan the Unclean"]=15936,["Mmmrrrggglll"]=15937,["Eversong Ranger"]=15938,["Ranger Degolien"]=15939,["Ranger Selron"]=15940,["Apprentice Ralen"]=15941,["Ranger Sareyn"]=15942,["Ruby Serpent"]=15944,["Apprentice Meledor"]=15945,["Apprentice Veya"]=15946,["Emerald Owl"]=15948,["Thaelis the Hungerer"]=15949,["Grimscale Seer"]=15950,["Magister Duskwither"]=15951,["Maexxna"]=15952,["Grand Widow Faerlina"]=15953,["Noth the Plaguebringer"]=15954,["Black Diamond Crab"]=15955,["Anub'Rekhan"]=15956,["Ouro Spawner"]=15957,["Gharsul the Remorseless"]=15958,["Dark Iron Scorpid"]=15959,["Lunar Festival Sentinel"]=15961,["Vekniss Hatchling"]=15962,["The Master's Eye"]=15963,["Buru Egg Trigger"]=15964,["Duskwither Apprentice"]=15965,["Mana Serpent"]=15966,["Ether Fiend"]=15967,["Darnassian Scout"]=15968,["Groundskeeper Wyllithen"]=15969,["Instructor Antheol"]=15970,["Silvermoon Apprentice"]=15971,["Alterac Valley Battlemaster"]=15972,["Dread Creeper"]=15974,["Carrion Spinner"]=15975,["Venom Stalker"]=15976,["Poisonous Skitterer"]=15977,["Crypt Reaver"]=15978,["Tomb Horror"]=15979,["Naxxramas Cultist"]=15980,["Naxxramas Acolyte"]=15981,["Sartura's Royal Guard"]=15984,["Sapphiron"]=15989,["Kel'Thuzad"]=15990,["Lady Dena Kennedy"]=15991,["Aldris Fourclouds"]=16001,["Colara Dean"]=16002,["Deathguard Tor"]=16003,["Elenia Haydon"]=16004,["Lieutenant Jocryn Heldric"]=16005,["InCombat Trigger"]=16006,["Orok Deathbane"]=16007,["Temma of the Wells"]=16008,["Tormek Stoneriver"]=16009,["Loatheb"]=16011,["Mokvar"]=16012,["Deliana"]=16013,["Mux Manascrambler"]=16014,["Vi'el"]=16015,["Anthion Harmon"]=16016,["Patchwork Golem"]=16017,["Bile Retcher"]=16018,["Boorana Thunderhoof"]=16019,["Mad Scientist"]=16020,["Living Monstrosity"]=16021,["Surgical Assistant"]=16022,["Embalming Slime"]=16024,["Stitched Giant"]=16025,["Living Poison"]=16027,["Patchwerk"]=16028,["Sludge Belcher"]=16029,["Maggot"]=16030,["Ysida Harmon"]=16031,["Falrin Treeshaper"]=16032,["Bodley"]=16033,["Plague Beast"]=16034,["Frenzied Bat"]=16036,["Plagued Bat"]=16037,["Lord Valthalak"]=16042,["Magma Lord Bokk"]=16043,["Mor Grayhoof Trigger"]=16044,["Isalien Trigger"]=16045,["Jarien and Sothos Trigger"]=16046,["Kormok Trigger"]=16047,["Lord Valthalak Trigger"]=16048,["Lefty"]=16049,["Rotfang"]=16050,["Snokh Blackspine"]=16051,["Malgen Longspear"]=16052,["Korv"]=16053,["Rezznik"]=16054,["Va'jashni"]=16055,["Diseased Maggot"]=16056,["Rotting Maggot"]=16057,["Volida"]=16058,["Theldren"]=16059,["Gothik the Harvester"]=16060,["Instructor Razuvious"]=16061,["Highlord Mograine"]=16062,["Sir Zeliek"]=16063,["Thane Korth'azz"]=16064,["Lady Blaumeux"]=16065,["Spectral Assassin"]=16066,["Deathcharger Steed"]=16067,["Larva"]=16068,["Gurky"]=16069,["Garel Redrock"]=16070,["Tidelord Rrurgaz"]=16072,["Spirit of Lord Valthalak"]=16073,["Kwee Q. Peddlefeet"]=16075,["Tharl Stonebleeder"]=16076,["Unkillable Fixed Damage Test Dummy"]=16078,["Theldren Trigger"]=16079,["Mor Grayhoof"]=16080,["Naxxramas Trigger"]=16082,["Peddlefeet"]=16085,["Omar the Test Dragon"]=16089,["Rousch"]=16090,["Dirk Thunderwood"]=16091,["Silithis Teleporter"]=16092,["Spectral Stalker"]=16093,["Durik"]=16094,["Gnashjaw"]=16095,["Steamwheedle Bruiser"]=16096,["Isalien"]=16097,["Empyrean"]=16098,["Ysida's Trigger"]=16100,["Jarien"]=16101,["Sothos"]=16102,["Spirit of Jarien"]=16103,["Spirit of Sothos"]=16104,["Aristan Mottar"]=16105,["Evert Sorisam"]=16106,["Apothecary Staffron Lerent"]=16107,["Fenstad Argyle"]=16108,["Mara Rennick"]=16109,["Annalise Lerent"]=16110,["Love Fool"]=16111,["Crusade Commander Korfax"]=16112,["Father Inigo Montoy"]=16113,["Scarlet Commander Marjhan"]=16114,["Crusade Commander Eligor Dawnbringer"]=16115,["Archmage Angela Dosantos"]=16116,["Plagued Swine"]=16117,["Kormok"]=16118,["Bone Minion"]=16119,["Bone Mage"]=16120,["Mortar"]=16121,["Gremnik Rizzlesprang"]=16123,["Unrelenting Trainee"]=16124,["Unrelenting Death Knight"]=16125,["Unrelenting Rider"]=16126,["Spectral Trainee"]=16127,["Rhonin"]=16128,["Shadow Fissure"]=16129,["Rohan the Assassin"]=16131,["Huntsman Leopold"]=16132,["Mataus the Wrathcaster"]=16133,["Rimblat Earthshatter"]=16134,["Rayne"]=16135,["Necrotic Shard"]=16136,["Naxxramas Military Sub-Boss Trigger"]=16137,["Cenarion Hold Reservist"]=16139,["Ghoul Berserker"]=16141,["Bile Sludge"]=16142,["Shadow of Doom"]=16143,["Lord Saltheril"]=16144,["Death Knight Captain"]=16145,["Death Knight"]=16146,["Elisara Sunstriker"]=16147,["Spectral Death Knight"]=16148,["Spectral Horse"]=16149,["Spectral Rider"]=16150,["Midnight"]=16151,["Attumen the Huntsman"]=16152,["Berthold"]=16153,["Risen Squire"]=16154,["Dark Touched Warrior"]=16156,["Doom Touched Warrior"]=16157,["Death Touched Warrior"]=16158,["Calliard"]=16159,["Magistrix Eredania"]=16160,["Arcanist Sheynathren"]=16161,["Wretched Hooligan"]=16162,["Death Knight Cavalier"]=16163,["Shade of Naxxramas"]=16164,["Necro Knight"]=16165,["Theldren Kill Credit"]=16166,["Bony Construct"]=16167,["Stoneskin Gargoyle"]=16168,["Hastings"]=16169,["Coldmist Stalker"]=16170,["Coldmist Widow"]=16171,["Damaged Necrotic Shard"]=16172,["Shadowbat"]=16173,["Greater Shadowbat"]=16174,["Vampiric Shadowbat"]=16175,["Shadowbeast"]=16176,["Dreadbeast"]=16177,["Phase Hound"]=16178,["Hyakiss the Lurker"]=16179,["Shadikith the Glider"]=16180,["Rokad the Ravager"]=16181,["Courier Dawnstrider"]=16183,["Nerubian Overseer"]=16184,["Anathos"]=16185,["Vara"]=16186,["Quartermaster Lymel"]=16187,["Skymaster Sunwing"]=16189,["Sathren Azuredawn"]=16191,["Skymistress Gloaming"]=16192,["Skeletal Smith"]=16193,["Unholy Axe"]=16194,["Apothecary Thedra"]=16196,["Arcanist Vandril"]=16197,["Apothecary Renzithen"]=16198,["Magister Darenis"]=16199,["Deathstalker Rathiel"]=16200,["Geranis Whitemorn"]=16201,["Farstrider Sedina"]=16202,["Ranger Vynna"]=16203,["Magister Idonis"]=16204,["Magistrix Aminel"]=16205,["Apprentice Varnis"]=16206,["Apothecary Enith"]=16208,["Ranger Vedoran"]=16209,["Magistrix Landra Dawnstrider"]=16210,["Naxxramas Combat Dummy"]=16211,["Dispatch Commander Metz"]=16212,["Ranger Lethvalin"]=16213,["Unholy Staff"]=16215,["Unholy Swords"]=16216,["Lieutenant Tomathren"]=16217,["Tesla Coil"]=16218,["Ranger Valanna"]=16219,["Captain Helios"]=16220,["Silvermoon Guardian"]=16221,["Silvermoon City Guardian"]=16222,["Rathis Tomber"]=16224,["Pack Mule"]=16225,["Guard Didier"]=16226,["Bragok"]=16227,["Argent Dawn Infantry"]=16228,["Injured Argent Dawn Infantry"]=16229,["Cultist Engineer"]=16230,["Dame Auriferous"]=16231,["Caravan Mule"]=16232,["Eye Stalk"]=16236,["Magister Sylastor"]=16237,["Night Elf Ambusher"]=16238,["Magister Kaendris"]=16239,["Arcanist Janeda"]=16240,["Argent Recruiter"]=16241,["Tranquillien Scout"]=16242,["Plague Slime"]=16243,["Infectious Ghoul"]=16244,["Luzran"]=16245,["Knucklerot"]=16246,["Borgoth the Bloodletter"]=16247,["Jurion the Deceiver"]=16248,["Masophet the Black"]=16249,["Mirdoran the Fallen"]=16250,["Deathstalker Maltendis"]=16251,["High Executor Mavren"]=16252,["Master Chef Mouldier"]=16253,["Field Marshal Chambers"]=16254,["Argent Scout"]=16255,["Jessica Chambers"]=16256,["Geron"]=16257,["Farsil"]=16258,["Sheri"]=16259,["Areyn"]=16260,["Sathiel"]=16261,["Landraelanis"]=16262,["Paelarin"]=16263,["Winaestra"]=16264,["Celoenus"]=16266,["Daestra"]=16267,["Eralan"]=16268,["Garridel"]=16269,["Hannovia"]=16270,["Telenus"]=16271,["Kanaria"]=16272,["Mathreyn"]=16273,["Narina"]=16274,["Noellene"]=16275,["Ponaris"]=16276,["Quarelestra"]=16277,["Sathein"]=16278,["Tannaria"]=16279,["Perascamin"]=16280,["Keeper of the Rolls"]=16281,["Packmaster Stonebruiser"]=16283,["Argent Medic"]=16284,["Argent Emissary"]=16285,["Spore"]=16286,["Ambassador Sunsorrow"]=16287,["Advisor Sorrelon"]=16288,["Advisor Valwyn"]=16289,["Irradiated Slime"]=16290,["Magister Quallestis"]=16291,["Aquantion"]=16292,["Apprentice Shatharia"]=16293,["Aldaron the Reckless"]=16294,["Ranger Lilatha"]=16295,["Mutated Grub"]=16297,["Spectral Soldier"]=16298,["Skeletal Shocktrooper"]=16299,["Risen Creeper"]=16300,["Risen Hungerer"]=16301,["Risen Stalker"]=16302,["Dreadbone Skeleton"]=16303,["Arcane Devourer"]=16304,["Dreadbone Sentinel"]=16305,["Scourge Invasion Minion spawner Ghost/Ghoul"]=16306,["Deathcage Scryer"]=16307,["Deathcage Sorcerer"]=16308,["Gangled Cannibal"]=16309,["Mana Shifter"]=16310,["Phantasmal Watcher"]=16311,["Nerubis Guard"]=16313,["Fallen Ranger"]=16314,["Deatholme Acolyte"]=16315,["Stonewing Tracker"]=16316,["Deatholme Necromancer"]=16317,["Deatholme Darkmage"]=16318,["Nerubis Centurion"]=16319,["Eye of Dar'Khan"]=16320,["Wailer"]=16321,["Gangled Flesheater"]=16322,["Phantasmal Seeker"]=16323,["Stonewing Slayer"]=16324,["Quel'dorei Ghost"]=16325,["Quel'dorei Wraith"]=16326,["Ravening Apparition"]=16327,["Vengeful Apparition"]=16328,["Dar'Khan Drathir"]=16329,["Sentinel Spy"]=16330} \ No newline at end of file +npc_to_id={["Flesh Eater"]=3,["Kobold Vermin"]=6,["Benny Questgiver"]=19,["Kanrethad"]=29,["Forest Spider"]=30,["Furbolg"]=31,["Harvest Golem"]=36,["Defias Thug"]=38,["Kobold Miner"]=40,["Mine Spider"]=43,["Murloc Forager"]=46,["Skeletal Warrior"]=48,["Lesser Succubus"]=49,["Corina Steele"]=54,["Mean Ed the Blacksmith"]=55,["Ruklar the Trapper"]=60,["Thuros Lightfingers"]=61,["Gug Fatcandle"]=62,["Peasant Woman"]=65,["Tharynn Bouden"]=66,["[UNUSED] Marlon Darnik"]=67,["Stormwind City Guard"]=68,["Diseased Timber Wolf"]=69,["[UNUSED] Lower Class Citizen"]=70,["Rankist"]=71,["[UNUSED] Antaris the Trader"]=72,["Veraina the Apothecary"]=73,["Kurran Steele"]=74,["[UNUSED] Vashaum Nightwither"]=75,["Janos Hammerknuckle"]=78,["Narg the Taskmaster"]=79,["Kobold Laborer"]=80,["[UNUSED] Luglar the Clogger"]=81,["Crazy Leonetti"]=82,["Infernal"]=89,["Sea Giant"]=90,["Rock Elemental"]=92,["Centaur"]=93,["Cutpurse"]=94,["Defias Smuggler"]=95,["Riverpaw Runt"]=97,["Riverpaw Taskmaster"]=98,["Morgaine the Sly"]=99,["Gruff Swiftbite"]=100,["Bronze Dragonspawn"]=102,["Garrick Padfoot"]=103,["Tall Strider"]=105,["Kodo Beast"]=106,["Raptor"]=107,["Green Dragonspawn"]=108,["White Dragonspawn"]=109,["Priest"]=111,["Priestess"]=112,["Stonetusk Boar"]=113,["Harvest Watcher"]=114,["Harvest Reaper"]=115,["Bandit"]=116,["Riverpaw Gnoll"]=117,["Prowler"]=118,["Longsnout"]=119,["Forest Stalker"]=120,["Defias Pathstalker"]=121,["Defias Highwayman"]=122,["Riverpaw Mongrel"]=123,["Riverpaw Brute"]=124,["Riverpaw Overseer"]=125,["Murloc Coastrunner"]=126,["Murloc Tidehunter"]=127,["Angry Programmer Tweedle Dee"]=128,["Angry Programmer Tweedle Dum"]=129,["Programmer Vendor"]=130,["[UNUSED] Small Black Dragon Whelp"]=149,["[UNUSED] Brother Milius"]=150,["Brog Hamfist"]=151,["Brother Danil"]=152,["Bethina"]=153,["Greater Fleshripper"]=154,["Goretusk"]=157,["[UNUSED] Ander the Monk"]=161,["[UNUSED] Small Child"]=165,["Morhan Coppertongue"]=167,["Murloc Warrior"]=171,["Dermot Johns"]=190,["Blue Dragonspawn"]=193,["Eagan Peltskinner"]=196,["Marshal McBride"]=197,["Khelden Bremen"]=198,["Young Fleshripper"]=199,["Rotting Horror"]=202,["Skeletal Mage"]=203,["[UNUSED] Cackle Flamebone"]=204,["Nightbane Dark Runner"]=205,["Nightbane Vile Fang"]=206,["Bone Chewer"]=210,["Splinter Fist Warrior"]=212,["Starving Dire Wolf"]=213,["Defias Night Runner"]=215,["Venom Web Spider"]=217,["Grave Robber"]=218,["Nillen Andemar"]=222,["Dan Golthas"]=223,["Gavin Gnarltree"]=225,["Morg Gnarltree"]=226,["Mabel Solaj"]=227,["Avette Fellwood"]=228,["Farmer Ray"]=232,["Farmer Saldean"]=233,["Marshal Gryan Stoutmantle"]=234,["Salma Saldean"]=235,["Farmer Furlbrow"]=237,["Verna Furlbrow"]=238,["Grimbooze Thunderbrew"]=239,["Marshal Dughan"]=240,["[UNUSED] Greeby Mudwhisker TEST"]=243,["Ma Stonefield"]=244,["Billy Maclure"]=247,["Gramma Stonefield"]=248,["Pa Maclure"]=250,["Maybell Maclure"]=251,["Tommy Joe Stonefield"]=252,["William Pestle"]=253,["Gerard Tiller"]=255,["Kobold Worker"]=257,["Joshua Maclure"]=258,["Guard Thomas"]=261,["Lord Ello Ebonlocke"]=263,["Commander Althea Ebonlocke"]=264,["Madame Eva"]=265,["Wiley the Black"]=266,["Clerk Daltry"]=267,["Sirra Von'Indi"]=268,["Role Dreuger"]=269,["Councilman Millstipe"]=270,["Ambassador Berrybuck"]=271,["Chef Grual"]=272,["Tavernkeep Smitts"]=273,["Barkeep Hann"]=274,["Whit Wantmal"]=275,["Viktori Prism'Antras"]=276,["Roberto Pupellyverbos"]=277,["Sara Timberlain"]=278,["Morgan Pestle"]=279,["Placeholder - Jasperlode Mine"]=280,["Brown Horse"]=284,["Murloc"]=285,["Placeholder - Darkhollow Mine"]=287,["Jitters"]=288,["Abercrombie"]=289,["Placeholder - Fargodeep Mine"]=290,["Placeholder Chest of Drawers"]=291,["Marshal Haggard"]=294,["Innkeeper Farley"]=295,["[UNUSED] Goodmother Jans"]=296,["Caretaker Folsom"]=297,["Young Wolf"]=299,["Zzarc' Vul"]=300,["Blind Mary"]=302,["Felsteed"]=304,["White Stallion"]=305,["Palomino"]=306,["Pinto"]=307,["Black Stallion"]=308,["Sven Yorgen"]=311,["Theocritus"]=313,["Eliza"]=314,["Stalvan Mistmantle"]=315,["[UNUSED] Brother Benthas"]=319,["Hogan Ference"]=325,["Goldtooth"]=327,["Zaldimar Wefhellt"]=328,["Earth Elemental"]=329,["Princess"]=330,["Maginor Dumas"]=331,["Master Mathias Shaw"]=332,["Gath'Ilzogg"]=334,["Singe"]=335,["Mazen Mac'Nadir"]=338,["[UNUSED] Helgor the Pugilist"]=339,["Kendor Kabonka"]=340,["Foreman Oslow"]=341,["Martie Jainrose"]=342,["Chef Breanna"]=343,["Magistrate Solomon"]=344,["Bellygrub"]=345,["Barkeep Daniels"]=346,["Grizzle Halfmane"]=347,["Zem Leeward"]=348,["Corporal Keeshan"]=349,["Peasant"]=351,["Dungar Longdrink"]=352,["Antonia Dart"]=353,["Black Wolf"]=356,["Timber Wolf"]=358,["Riding Wolf (Winter)"]=359,["Scott's Flying Mount"]=365,["Karm Ironquill"]=372,["Cog Glitzspinner"]=374,["Priestess Anetta"]=375,["High Priestess Laurena"]=376,["Priestess Josetta"]=377,["Darcy Parker"]=379,["Dockmaster Baren"]=381,["Marshal Marris"]=382,["Jason Mathers"]=383,["Katie Hunter"]=384,["Horse"]=385,["Porcine Entourage"]=390,["Old Murk-Eye"]=391,["Captain Grayson"]=392,["Markus"]=395,["Grand Magus Doane"]=397,["Boy - placeholder 05"]=399,["Stitches"]=412,["Verner Osgood"]=415,["Imp"]=416,["Felhunter"]=417,["Murloc Flesheater"]=422,["Redridge Mongrel"]=423,["Redridge Poacher"]=424,["Redridge Brute"]=426,["Dire Condor"]=428,["Shadowhide Darkweaver"]=429,["Redridge Mystic"]=430,["Shadowhide Slayer"]=431,["Shadowhide Brute"]=432,["Shadowhide Gnoll"]=433,["Rabid Shadowhide Gnoll"]=434,["Blackrock Champion"]=435,["Blackrock Shadowcaster"]=436,["Blackrock Renegade"]=437,["Blackrock Grunt"]=440,["Black Dragon Whelp"]=441,["Tarantula"]=442,["Redridge Alpha"]=445,["Redridge Basher"]=446,["Hogger"]=448,["Defias Knuckleduster"]=449,["Defias Renegade Mage"]=450,["Riverpaw Bandit"]=452,["Riverpaw Mystic"]=453,["Young Goretusk"]=454,["Murloc Minor Oracle"]=456,["Murloc Hunter"]=458,["Drusilla La Salle"]=459,["Alamar Grimm"]=460,["Demisette Cloyce"]=461,["Vultros"]=462,["Watch Captain Parker"]=464,["Barkeep Dobbins"]=465,["General Marcus Jonathan"]=466,["The Defias Traitor"]=467,["Town Crier"]=468,["Lieutenant Doren"]=469,["Mother Fang"]=471,["Fedfennel"]=472,["Morgan the Collector"]=473,["Rogue Wizard"]=474,["Kobold Tunneler"]=475,["Kobold Geomancer"]=476,["Riverpaw Outrunner"]=478,["Rusty Harvest Golem"]=480,["Defias Footpad"]=481,["Elling Trias"]=482,["Elaine Trias"]=483,["Blackrock Outrunner"]=485,["Tharil'zun"]=486,["Protector Bialon"]=487,["Protector Weaver"]=488,["Protector Dutfield"]=489,["Protector Gariel"]=490,["Quartermaster Lewis"]=491,["Watcher Bukouris"]=494,["Watcher Keefer"]=495,["Watcher Paige"]=499,["Riverpaw Scout"]=500,["Riverpaw Herbalist"]=501,["Benny Blaanco"]=502,["Lord Malathrom"]=503,["Defias Trapper"]=504,["Greater Tarantula"]=505,["Sergeant Brashclaw"]=506,["Fenros"]=507,["[UNUSED] Long Fang"]=509,["Water Elemental"]=510,["Insane Ghoul"]=511,["Murloc Netter"]=513,["Smith Argus"]=514,["Murloc Raider"]=515,["Murloc Oracle"]=517,["Yowler"]=518,["Slark"]=519,["Brack"]=520,["Lupos"]=521,["Mor'Ladim"]=522,["Thor"]=523,["Rockhide Boar"]=524,["Mangy Wolf"]=525,["Skeletal Fiend"]=531,["Nightbane Shadow Weaver"]=533,["Nefaru"]=534,["Pygmy Venom Web Spider"]=539,["Nalesette Wildbringer"]=543,["Murloc Nightcrawler"]=544,["Murloc Tidecaller"]=545,["Great Goretusk"]=547,["Murloc Minor Tidecaller"]=548,["Defias Messenger"]=550,["Rabid Dire Wolf"]=565,["Shadowhide Warrior"]=568,["Green Recluse"]=569,["Brain Eater"]=570,["Leprithus"]=572,["Foe Reaper 4000"]=573,["Naraxis"]=574,["Fire Elemental"]=575,["Watcher Ladimore"]=576,["Murloc Scout"]=578,["Shadowhide Assassin"]=579,["Redridge Drudger"]=580,["Old Blanchy"]=582,["Ambusher"]=583,["Kazon"]=584,["Bloodscalp Warrior"]=587,["Bloodscalp Scout"]=588,["Defias Pillager"]=589,["Defias Looter"]=590,["Defias Henchman"]=594,["Bloodscalp Hunter"]=595,["Brainwashed Noble"]=596,["Bloodscalp Berserker"]=597,["Defias Miner"]=598,["Marisa du'Paige"]=599,["Grimtooth"]=603,["Plague Spreader"]=604,["[UNUSED] Rabid Mrs. Whipple"]=612,["Blackrock Tracker"]=615,["Chatter"]=616,["Defias Conjurer"]=619,["Chicken"]=620,["Goblin Engineer"]=622,["Skeletal Miner"]=623,["Undead Excavator"]=624,["Undead Dynamiter"]=625,["Foreman Thistlenettle"]=626,["Black Ravager"]=628,["Elaine Carevin"]=633,["Defias Overseer"]=634,["Defias Blackguard"]=636,["Edwin VanCleef"]=639,["Goblin Woodcarver"]=641,["Sneed's Shredder"]=642,["Sneed"]=643,["Rhahk'Zor"]=644,["Cookie"]=645,["Mr. Smite"]=646,["Captain Greenskin"]=647,["Bridge Worker Trent"]=648,["Bridge Worker Dmitri"]=649,["Bridge Worker Jess"]=650,["Bridge Worker Daniel"]=651,["Bridge Worker Matthew"]=652,["Bridge Worker Alex"]=653,["Wilder Thistlenettle"]=656,["Defias Pirate"]=657,["Sten Stoutarm"]=658,["El Pollo Grande"]=659,["Bloodscalp Witch Doctor"]=660,["Jonathan Carevin"]=661,["Calor"]=663,["Benjamin Carevin"]=664,["Skullsplitter Warrior"]=667,["Skullsplitter Hunter"]=669,["Skullsplitter Witch Doctor"]=670,["Bloodscalp Headhunter"]=671,["Skullsplitter Spiritchaser"]=672,["Venture Co. Strip Miner"]=674,["Venture Co. Foreman"]=675,["Venture Co. Surveyor"]=676,["Venture Co. Tinkerer"]=677,["Mosh'Ogg Mauler"]=678,["Mosh'Ogg Shaman"]=679,["Mosh'Ogg Lord"]=680,["Young Stranglethorn Tiger"]=681,["Stranglethorn Tiger"]=682,["Young Panther"]=683,["Shadowmaw Panther"]=684,["Stranglethorn Raptor"]=685,["Lashtail Raptor"]=686,["Jungle Stalker"]=687,["Stone Maw Basilisk"]=688,["Crystal Spine Basilisk"]=689,["Cold Eye Basilisk"]=690,["Lesser Water Elemental"]=691,["Bloodscalp Axe Thrower"]=694,["Skullsplitter Axe Thrower"]=696,["Bloodscalp Shaman"]=697,["Bloodscalp Tiger"]=698,["Bloodscalp Beastmaster"]=699,["Bloodscalp Mystic"]=701,["Bloodscalp Scavenger"]=702,["General Fangore"]=703,["Ragged Timber Wolf"]=704,["Ragged Young Wolf"]=705,["Frostmane Troll Whelp"]=706,["Rockjaw Trogg"]=707,["Small Crag Boar"]=708,["Mosh'Ogg Warmonger"]=709,["Mosh'Ogg Spellcrafter"]=710,["Ardo Dirtpaw"]=711,["Redridge Thrasher"]=712,["Balir Frosthammer"]=713,["Talin Keeneye"]=714,["Hemet Nesingwary Jr."]=715,["Barnil Stonepot"]=716,["Ajeck Rouack"]=717,["Sir S. J. Erlgadin"]=718,["Rabbit"]=721,["Mosh'Ogg Butcher"]=723,["Burly Rockjaw Trogg"]=724,["Ironforge Mountaineer"]=727,["Bhag'thera"]=728,["Sin'Dall"]=729,["Tethis"]=730,["King Bangalash"]=731,["Murloc Lurker"]=732,["Sergeant Yohwa"]=733,["Corporal Bluth"]=734,["Murloc Streamrunner"]=735,["Panther"]=736,["Kebok"]=737,["Private Thorsen"]=738,["Brother Nimetz"]=739,["Adolescent Whelp"]=740,["Dreaming Whelp"]=741,["Green Wyrmkin"]=742,["Wyrmkin Dreamwalker"]=743,["Green Scalebane"]=744,["Scalebane Captain"]=745,["Elder Dragonkin"]=746,["Marsh Murloc"]=747,["Marsh Inkspewer"]=750,["Marsh Flesheater"]=751,["Marsh Oracle"]=752,["Rebel Watchman"]=754,["Lost One Mudlurker"]=755,["Skullsplitter Panther"]=756,["Lost One Fisherman"]=757,["Lost One Hunter"]=759,["Lost One Muckdweller"]=760,["Lost One Seer"]=761,["Lost One Riftseeker"]=762,["Lost One Chieftain"]=763,["Swampwalker"]=764,["Swampwalker Elder"]=765,["Tangled Horror"]=766,["Swamp Jaguar"]=767,["Shadow Panther"]=768,["Deathstrike Tarantula"]=769,["Corporal Kaleb"]=770,["Commander Felstrom"]=771,["Stranglethorn Tigress"]=772,["Krazek"]=773,["Kurzen's Agent"]=775,["Amy Davenport"]=777,["Skullsplitter Mystic"]=780,["Skullsplitter Headhunter"]=781,["Skullsplitter Scout"]=782,["Skullsplitter Berserker"]=783,["Skullsplitter Beastmaster"]=784,["Skeletal Warder"]=785,["Grelin Whitebeard"]=786,["Skeletal Healer"]=787,["Kimberly Hiett"]=789,["Karen Taylor"]=790,["Lindsay Ashlock"]=791,["Kara Adams"]=793,["Matt"]=794,["Mark"]=795,["Joshua"]=796,["Bo"]=797,["Solomon"]=798,["Kevin"]=799,["Kyle"]=800,["Eric"]=801,["Jay"]=802,["Dana"]=804,["Cameron"]=805,["John"]=806,["Lisa"]=807,["Grik'nir the Cold"]=808,["Aaron"]=810,["Jose"]=811,["Alma Jainrose"]=812,["Colonel Kurzen"]=813,["Sergeant Malthus"]=814,["Bookie Herod"]=815,["Mai'Zoth"]=818,["Servant of Ilgalar"]=819,["Scout Riell"]=820,["Captain Danuvin"]=821,["Young Forest Bear"]=822,["Sergeant Willem"]=823,["Defias Digger"]=824,["Watcher Jan"]=826,["Watcher Mocarski"]=827,["Watcher Petras"]=828,["Adlin Pridedrift"]=829,["Sand Crawler"]=830,["Sea Crawler"]=831,["Unbound Cyclone"]=832,["Coyote Packleader"]=833,["Coyote"]=834,["Durnan Furcutter"]=836,["Branstock Khalder"]=837,["Watcher Backus"]=840,["Lumberjack"]=842,["Gina MacGregor"]=843,["Antonio Perelli"]=844,["Rotten Ghoul"]=846,["Nathan"]=847,["Madison"]=848,["Rachel"]=849,["Erin"]=850,["Hannah"]=851,["Feral Spirit"]=852,["Coldridge Mountaineer"]=853,["Young Jungle Stalker"]=854,["Young Stranglethorn Raptor"]=855,["Young Lashtail Raptor"]=856,["Donal Osgood"]=857,["Sorrow Spinner"]=858,["Guard Berton"]=859,["Stonard Scout"]=861,["Stonard Explorer"]=862,["Stonard Hunter"]=863,["Stonard Orc"]=864,["Stonard Wayfinder"]=865,["Stonard Grunt"]=866,["Stonard Cartographer"]=867,["Stonard Shaman"]=868,["Protector Dorana"]=869,["Protector Deni"]=870,["Saltscale Warrior"]=871,["Saltscale Oracle"]=873,["Protector Korelor"]=874,["Saltscale Tide Lord"]=875,["Protector Leick"]=876,["Saltscale Forager"]=877,["Scout Galiaan"]=878,["Saltscale Hunter"]=879,["Erlan Drudgemoor"]=880,["Surena Caledon"]=881,["Deer"]=883,["Watcher Keller"]=885,["Watcher Hartin"]=886,["Watcher Jordan"]=887,["Watcher Dodds"]=888,["Splinter Fist Ogre"]=889,["Fawn"]=890,["Splinter Fist Fire Weaver"]=891,["Splinter Fist Taskmaster"]=892,["Lars"]=893,["Homer Stonefield"]=894,["Thorgas Grimson"]=895,["Veldan Lightfoot"]=896,["Nightbane Worgen"]=898,["Bailiff Conacher"]=900,["Guard Howe"]=903,["Sharptooth Frenzy"]=905,["Maximillian Crowe"]=906,["Keras Wolfheart"]=907,["Flora Silverwind"]=908,["Defias Night Blade"]=909,["Defias Enchanter"]=910,["Llane Beshere"]=911,["Thran Khorman"]=912,["Lyria Du Lac"]=913,["Ander Germaine"]=914,["Jorik Kerridan"]=915,["Solm Hargrin"]=916,["Keryn Sylvius"]=917,["Osborne the Night Man"]=918,["Nightbane Tainted One"]=920,["Venture Co. Lumberjack"]=921,["Silt Crawler"]=922,["Young Black Ravager"]=923,["Brother Sammuel"]=925,["Bromos Grummner"]=926,["Brother Wilhelm"]=927,["Lord Grayson Shadowbreaker"]=928,["Black Widow Hatchling"]=930,["Ariena Stormfeather"]=931,["Guard Ashlock"]=932,["Guard Hiett"]=933,["Guard Clarke"]=934,["Guard Pearce"]=935,["Guard Adams"]=936,["Kurzen Jungle Fighter"]=937,["Kurzen Commando"]=938,["Kurzen Elite"]=939,["Kurzen Medicine Man"]=940,["Kurzen Headshrinker"]=941,["Kurzen Witch Doctor"]=942,["Kurzen Wrangler"]=943,["Marryk Nurribit"]=944,["Rybrad Coldbank"]=945,["Frostmane Novice"]=946,["Rohh the Silent"]=947,["Rotted One"]=948,["Carrion Recluse"]=949,["Swamp Talker"]=950,["Brother Paxton"]=951,["Brother Neals"]=952,["Kat Sampson"]=954,["Sergeant De Vries"]=955,["Dorin Songblade"]=956,["Dane Lindgren"]=957,["Dawn Brightstar"]=958,["Morley Eberlein"]=959,["Gunder Thornbush"]=960,["Deputy Rainer"]=963,["Kurzen War Tiger"]=976,["Kurzen War Panther"]=977,["Kurzen Subchief"]=978,["Kurzen Shadow Hunter"]=979,["Grimnal"]=980,["Hartash"]=981,["Thultash"]=982,["Thultazor"]=983,["Thralosh"]=984,["Malosh"]=985,["Haromm"]=986,["Ogromm"]=987,["Kartosh"]=988,["Banalash"]=989,["Watcher Royce"]=999,["Watcher Blomberg"]=1000,["Watcher Hutchins"]=1001,["Mosshide Gnoll"]=1007,["Mosshide Mongrel"]=1008,["Mosshide Mistweaver"]=1009,["Mosshide Fenrunner"]=1010,["Mosshide Trapper"]=1011,["Mosshide Brute"]=1012,["Mosshide Mystic"]=1013,["Mosshide Alpha"]=1014,["Highland Raptor"]=1015,["Highland Lashtail"]=1016,["Highland Scytheclaw"]=1017,["Highland Razormaw"]=1018,["Elder Razormaw"]=1019,["Mottled Raptor"]=1020,["Mottled Screecher"]=1021,["Mottled Scytheclaw"]=1022,["Mottled Razormaw"]=1023,["Bluegill Murloc"]=1024,["Bluegill Puddlejumper"]=1025,["Bluegill Forager"]=1026,["Bluegill Warrior"]=1027,["Bluegill Muckdweller"]=1028,["Bluegill Oracle"]=1029,["Black Slime"]=1030,["Crimson Ooze"]=1031,["Black Ooze"]=1032,["Monstrous Ooze"]=1033,["Dragonmaw Raider"]=1034,["Dragonmaw Swamprunner"]=1035,["Dragonmaw Centurion"]=1036,["Dragonmaw Battlemaster"]=1037,["Dragonmaw Shadowwarder"]=1038,["Fen Dweller"]=1039,["Fen Creeper"]=1040,["Fen Lord"]=1041,["Red Whelp"]=1042,["Lost Whelp"]=1043,["Flamesnorting Whelp"]=1044,["Red Dragonspawn"]=1045,["Red Wyrmkin"]=1046,["Red Scalebane"]=1047,["Scalebane Lieutenant"]=1048,["Wyrmkin Firebrand"]=1049,["Scalebane Royal Guard"]=1050,["Dark Iron Dwarf"]=1051,["Dark Iron Saboteur"]=1052,["Dark Iron Tunneler"]=1053,["Dark Iron Demolitionist"]=1054,["Dragonmaw Bonewarder"]=1057,["Ana'thek the Cruel"]=1059,["Mogh the Undying"]=1060,["Gan'zulah"]=1061,["Nezzliok the Dire"]=1062,["Jade"]=1063,["Grom'gol Grunt"]=1064,["Riverpaw Shaman"]=1065,["Gorn"]=1068,["Crimson Whelp"]=1069,["Deputy Feldon"]=1070,["Longbraid the Grim"]=1071,["Roggo Harlbarrow"]=1072,["Ashlan Stonesmirk"]=1073,["Motley Garmason"]=1074,["Rhag Garmason"]=1075,["Merrin Rockweaver"]=1076,["Prospector Whelgar"]=1077,["Ormer Ironbraid"]=1078,["Mire Lord"]=1081,["Sawtooth Crocolisk"]=1082,["Murloc Shorestriker"]=1083,["Young Sawtooth Crocolisk"]=1084,["Elder Stranglethorn Tiger"]=1085,["Sawtooth Snapper"]=1087,["Monstrous Crawler"]=1088,["Mountaineer Cobbleflint"]=1089,["Mountaineer Wallbang"]=1090,["Mountaineer Gravelgaw"]=1091,["Captain Rugelfuss"]=1092,["Chief Engineer Hinderweir VII"]=1093,["Venture Co. Miner"]=1094,["Venture Co. Workboss"]=1095,["Venture Co. Geologist"]=1096,["Venture Co. Mechanic"]=1097,["Watcher Merant"]=1098,["Watcher Gelwin"]=1099,["Watcher Selkin"]=1100,["Watcher Thayer"]=1101,["Eldrin"]=1103,["Grundel Harkin"]=1104,["Jern Hornhelm"]=1105,["Lost One Cook"]=1106,["Mistvale Gorilla"]=1108,["Fleshripper"]=1109,["Skeletal Raider"]=1110,["Leech Stalker"]=1111,["Leech Widow"]=1112,["Jungle Thunderer"]=1114,["Rockjaw Skullthumper"]=1115,["Rockjaw Ambusher"]=1116,["Rockjaw Bonesnapper"]=1117,["Rockjaw Backbreaker"]=1118,["Hammerspine"]=1119,["Frostmane Troll"]=1120,["Frostmane Snowstrider"]=1121,["Frostmane Hideskinner"]=1122,["Frostmane Headhunter"]=1123,["Frostmane Shadowcaster"]=1124,["Crag Boar"]=1125,["Large Crag Boar"]=1126,["Elder Crag Boar"]=1127,["Young Black Bear"]=1128,["Black Bear"]=1129,["Bjarn"]=1130,["Winter Wolf"]=1131,["Timber"]=1132,["Starving Winter Wolf"]=1133,["Young Wendigo"]=1134,["Wendigo"]=1135,["Edan the Howler"]=1137,["Snow Tracker Wolf"]=1138,["Magistrate Bluntnose"]=1139,["Razormaw Matriarch"]=1140,["Angus Stern"]=1141,["Mosh'Ogg Brute"]=1142,["Mosh'Ogg Witch Doctor"]=1144,["Vharr"]=1146,["Hragran"]=1147,["Nerrist"]=1148,["Uthok"]=1149,["River Crocolisk"]=1150,["Saltwater Crocolisk"]=1151,["Snapjaw Crocolisk"]=1152,["Torren Squarejaw"]=1153,["Marek Ironheart"]=1154,["Kelt Thomasin"]=1155,["Vyrin Swiftwind"]=1156,["Cursed Sailor"]=1157,["Cursed Marine"]=1158,["First Mate Snellig"]=1159,["Captain Halyndor"]=1160,["Stonesplinter Trogg"]=1161,["Stonesplinter Scout"]=1162,["Stonesplinter Skullthumper"]=1163,["Stonesplinter Bonesnapper"]=1164,["Stonesplinter Geomancer"]=1165,["Stonesplinter Seer"]=1166,["Stonesplinter Digger"]=1167,["Dark Iron Insurgent"]=1169,["Tunnel Rat Vermin"]=1172,["Tunnel Rat Scout"]=1173,["Tunnel Rat Geomancer"]=1174,["Tunnel Rat Digger"]=1175,["Tunnel Rat Forager"]=1176,["Tunnel Rat Surveyor"]=1177,["Mo'grosh Ogre"]=1178,["Mo'grosh Enforcer"]=1179,["Mo'grosh Brute"]=1180,["Mo'grosh Shaman"]=1181,["Brother Anton"]=1182,["Mo'grosh Mystic"]=1183,["Cliff Lurker"]=1184,["Wood Lurker"]=1185,["Black Bear"]=1186,["Daryl the Youngling"]=1187,["Grizzled Black Bear"]=1188,["Black Bear Patriarch"]=1189,["Mountain Boar"]=1190,["Mangy Mountain Boar"]=1191,["Elder Mountain Boar"]=1192,["Loch Frenzy"]=1193,["Mountain Buzzard"]=1194,["Forest Lurker"]=1195,["Ice Claw Bear"]=1196,["Stonesplinter Shaman"]=1197,["Rallic Finn"]=1198,["Juvenile Snow Leopard"]=1199,["Morbent Fel"]=1200,["Snow Leopard"]=1201,["Tunnel Rat Kobold"]=1202,["Watcher Sarys"]=1203,["Watcher Corwin"]=1204,["Grawmug"]=1205,["Gnasher"]=1206,["Brawler"]=1207,["Chok'sul"]=1210,["Leper Gnome"]=1211,["Bishop Farthing"]=1212,["Godric Rothgar"]=1213,["Aldren Cordon"]=1214,["Alchemist Mallory"]=1215,["Shore Crawler"]=1216,["Glorin Steelbrow"]=1217,["Herbalist Pomeroy"]=1218,["Dark Iron Sapper"]=1222,["Young Threshadon"]=1224,["Ol' Sooty"]=1225,["Maxan Anvol"]=1226,["Rygal Rocknell"]=1227,["Magis Sparkmantle"]=1228,["Granis Swiftaxe"]=1229,["[UNUSED] Lexin Haze"]=1230,["Grif Wildheart"]=1231,["Azar Stronghammer"]=1232,["[UNUSED] Shaethis Darkoak"]=1233,["Hogral Bakkan"]=1234,["Kobold Digger"]=1236,["Kazan Mogosh"]=1237,["Gamili Frosthide"]=1238,["First Mate Fitzsimmons"]=1239,["Boran Ironclink"]=1240,["Tognus Flintfire"]=1241,["Karl Boran"]=1242,["Hegnar Rumbleshot"]=1243,["Rethiel the Greenwarden"]=1244,["Kogan Forgestone"]=1245,["Vosur Brakthel"]=1246,["Innkeeper Belm"]=1247,["Quartermaster Hudson"]=1249,["Drake Lindgren"]=1250,["Splinter Fist Firemonger"]=1251,["Senir Whitebeard"]=1252,["Father Gavin"]=1253,["Foreman Stonebrow"]=1254,["Prospector Gehn"]=1255,["Quarrymaster Thesten"]=1256,["Keldric Boucher"]=1257,["Black Ravager Mastiff"]=1258,["Gobbler"]=1259,["Great Father Arctikus"]=1260,["Veron Amberstill"]=1261,["Yarlyn Amberstill"]=1263,["Rudra Amberstill"]=1265,["Tundra MacGrann"]=1266,["Ragnar Thunderbrew"]=1267,["Ozzie Togglevolt"]=1268,["Razzle Sprysprocket"]=1269,["Fetid Corpse"]=1270,["Old Icebeard"]=1271,["Grawn Thromwyn"]=1273,["Senator Barin Redstone"]=1274,["Kyra Boucher"]=1275,["Mountaineer Brokk"]=1276,["Mountaineer Ganin"]=1277,["Mountaineer Stenn"]=1278,["Mountaineer Flint"]=1279,["Mountaineer Droken"]=1280,["Mountaineer Zaren"]=1281,["Mountaineer Veek"]=1282,["Mountaineer Kalmir"]=1283,["Archbishop Benedictus"]=1284,["Thurman Mullby"]=1285,["Edna Mullby"]=1286,["Marda Weller"]=1287,["Gunther Weller"]=1289,["Carla Granger"]=1291,["Maris Granger"]=1292,["Ambo Cash"]=1293,["Aldric Moore"]=1294,["Lara Moore"]=1295,["Felder Stover"]=1296,["Lina Stover"]=1297,["Frederick Stover"]=1298,["Lisbeth Schneider"]=1299,["Lawrence Schneider"]=1300,["Julia Gallina"]=1301,["Bernard Gump"]=1302,["Felicia Gump"]=1303,["Darian Singh"]=1304,["Jarel Moor"]=1305,["Charys Yserian"]=1307,["Owen Vaughn"]=1308,["Wynne Larson"]=1309,["Evan Larson"]=1310,["Joachim Brenlow"]=1311,["Ardwyn Cailen"]=1312,["Maria Lumere"]=1313,["Duncan Cullen"]=1314,["Allan Hafgan"]=1315,["Adair Gilroy"]=1316,["Lucan Cordell"]=1317,["Jessara Cordell"]=1318,["Bryan Cross"]=1319,["Seoman Griffith"]=1320,["Alyssa Griffith"]=1321,["Maxton Strang"]=1322,["Osric Strang"]=1323,["Heinrich Stone"]=1324,["Jasper Fel"]=1325,["Sloan McCoy"]=1326,["Reese Langston"]=1327,["Elly Langston"]=1328,["Mountaineer Naarh"]=1329,["Mountaineer Tyraw"]=1330,["Mountaineer Luxst"]=1331,["Mountaineer Morran"]=1332,["Gerik Koen"]=1333,["Mountaineer Hammerfall"]=1334,["Mountaineer Yuttha"]=1335,["Mountaineer Zwarn"]=1336,["Mountaineer Gwarth"]=1337,["Mountaineer Dalk"]=1338,["Mayda Thane"]=1339,["Mountaineer Kadrell"]=1340,["Wilhelm Strang"]=1341,["Mountaineer Rockgar"]=1342,["Mountaineer Stormpike"]=1343,["Prospector Ironband"]=1344,["Magmar Fellhew"]=1345,["Georgio Bolero"]=1346,["Alexandra Bolero"]=1347,["Gregory Ardus"]=1348,["Agustus Moulaine"]=1349,["Theresa Moulaine"]=1350,["Brother Cassius"]=1351,["Fluffy"]=1352,["Sarltooth"]=1353,["Apprentice Soren"]=1354,["Cook Ghilm"]=1355,["Prospector Stormpike"]=1356,["Miner Grothor"]=1358,["Miner Grumnal"]=1360,["Gothor Brumn"]=1362,["Balgaras the Foul"]=1364,["Goli Krumn"]=1365,["Adam"]=1366,["Billy"]=1367,["Justin"]=1368,["Brandon"]=1370,["Roman"]=1371,["Jarven Thunderbrew"]=1373,["Rejold Barleybrew"]=1374,["Marleth Barleybrew"]=1375,["Beldin Steelgrill"]=1376,["Pilot Stonegear"]=1377,["Pilot Bellowfiz"]=1378,["Miran"]=1379,["Saean"]=1380,["Krakk"]=1381,["Mudduk"]=1382,["Snarl"]=1383,["Brawn"]=1385,["Rogvar"]=1386,["Thysta"]=1387,["Vagash"]=1388,["Berserk Trogg"]=1393,["Ol' Beasley"]=1395,["Frostmane Seer"]=1397,["Boss Galgosh"]=1398,["Magosh"]=1399,["Wetlands Crocolisk"]=1400,["Topper McNabb"]=1402,["Kragg"]=1404,["Morris Lawry"]=1405,["Sranda"]=1407,["Firewing Bloodwarder"]=1410,["Ian Strom"]=1411,["Squirrel"]=1412,["Janey Anship"]=1413,["Lisan Pierce"]=1414,["Suzanne"]=1415,["Grimand Elmore"]=1416,["Young Wetlands Crocolisk"]=1417,["Bluegill Raider"]=1418,["Fizzles"]=1419,["Toad"]=1420,["Private Merle"]=1421,["Corporal Sethman"]=1422,["Stormwind Guard"]=1423,["Master Digger"]=1424,["Kubb"]=1425,["Riverpaw Miner"]=1426,["Harlan Bagley"]=1427,["Rema Schneider"]=1428,["Thurman Schneider"]=1429,["Tomas"]=1430,["Suzetta Gallina"]=1431,["Renato Gallina"]=1432,["Corbett Schneider"]=1433,["Menethil Sentry"]=1434,["Zardeth of the Black Claw"]=1435,["Watcher Cutford"]=1436,["Thomas Booker"]=1437,["Lord Baurles K. Wishock"]=1439,["Milton Sheaf"]=1440,["Brak Durnad"]=1441,["Helgrum the Swift"]=1442,["Fel'zerul"]=1443,["Brother Kristoff"]=1444,["Jesse Halloran"]=1445,["Regina Halloran"]=1446,["Gimlok Rumdnul"]=1447,["Neal Allen"]=1448,["Witch Doctor Unbagwa"]=1449,["Brahnmar"]=1450,["Camerick Jongleur"]=1451,["Gruham Rumdnul"]=1452,["Dewin Shimmerdawn"]=1453,["Jennabink Powerseam"]=1454,["Kersok Prond"]=1456,["Samor Festivus"]=1457,["Telurinon Moonshadow"]=1458,["Naela Trance"]=1459,["Unger Statforth"]=1460,["Murndan Derth"]=1461,["Edwina Monzor"]=1462,["Falkan Armonis"]=1463,["Innkeeper Helbrek"]=1464,["Drac Roughcut"]=1465,["Gretta Finespindle"]=1466,["Vrok Blunderblast"]=1469,["Ghak Healtouch"]=1470,["Jannos Ironwill"]=1471,["Morgg Stormshot"]=1472,["Kali Healtouch"]=1473,["Rann Flamespinner"]=1474,["Menethil Guard"]=1475,["Hargin Mundar"]=1476,["Christoph Faral"]=1477,["Aedis Brom"]=1478,["Timothy Clark"]=1479,["Caitlin Grassman"]=1480,["Bart Tidewater"]=1481,["Andrea Halloran"]=1482,["Murphy West"]=1483,["Derina Rumdnul"]=1484,["Splinter Fist Enslaver"]=1487,["Zanzil Zombie"]=1488,["Zanzil Hunter"]=1489,["Zanzil Witch Doctor"]=1490,["Zanzil Naga"]=1491,["Gorlash"]=1492,["Mok'rash the Cleaver"]=1493,["Negolash"]=1494,["Deathguard Linnea"]=1495,["Deathguard Dillinger"]=1496,["Gunther Arcanus"]=1497,["Bethor Iceshard"]=1498,["Magistrate Sevren"]=1499,["Coleman Farthing"]=1500,["Mindless Zombie"]=1501,["Wretched Ghoul"]=1502,["Young Night Web Spider"]=1504,["Night Web Spider"]=1505,["Scarlet Convert"]=1506,["Scarlet Initiate"]=1507,["Young Scavenger"]=1508,["Ragged Scavenger"]=1509,["Enraged Silverback Gorilla"]=1511,["Duskbat"]=1512,["Mangy Duskbat"]=1513,["Mokk the Savage"]=1514,["Executor Zygand"]=1515,["Konda"]=1516,["Apothecary Johaan"]=1518,["Deathguard Simmer"]=1519,["Rattlecage Soldier"]=1520,["Gretchen Dedmar"]=1521,["Darkeye Bonecaster"]=1522,["Cracked Skull Soldier"]=1523,["Rotting Dead"]=1525,["Ravaged Corpse"]=1526,["Hungering Dead"]=1527,["Shambling Horror"]=1528,["Bleeding Horror"]=1529,["Rotting Ancestor"]=1530,["Lost Soul"]=1531,["Wandering Spirit"]=1532,["Tormented Spirit"]=1533,["Wailing Ancestor"]=1534,["Scarlet Warrior"]=1535,["Scarlet Missionary"]=1536,["Scarlet Zealot"]=1537,["Scarlet Friar"]=1538,["Scarlet Neophyte"]=1539,["Scarlet Vanguard"]=1540,["Vile Fin Murloc"]=1541,["Vile Fin Puddlejumper"]=1543,["Vile Fin Minor Oracle"]=1544,["Vile Fin Muckdweller"]=1545,["[UNUSED] Kegnar Thraln"]=1546,["Decrepit Darkhound"]=1547,["Cursed Darkhound"]=1548,["Ravenous Darkhound"]=1549,["Thrashtail Basilisk"]=1550,["Ironjaw Basilisk"]=1551,["Scale Belly"]=1552,["Greater Duskbat"]=1553,["Vampiric Duskbat"]=1554,["Vicious Night Web Spider"]=1555,["Elder Mistvale Gorilla"]=1557,["Silverback Patriarch"]=1558,["King Mukla"]=1559,["Yvette Farthing"]=1560,["Bloodsail Raider"]=1561,["Bloodsail Mage"]=1562,["Bloodsail Swashbuckler"]=1563,["Bloodsail Warlock"]=1564,["Bloodsail Sea Dog"]=1565,["Undertaker Mordo"]=1568,["Shadow Priest Sarvis"]=1569,["Executor Arren"]=1570,["Shellei Brondir"]=1571,["Thorgrum Borrelson"]=1572,["Gryth Thurden"]=1573,["Mage 1"]=1574,["Mage 5"]=1575,["Priest 20"]=1629,["Adele Fielder"]=1632,["Northshire Guard"]=1642,["Quartermaster Hicks"]=1645,["Baros Alexston"]=1646,["Terry Palin"]=1650,["Lee Brown"]=1651,["Deathguard Burgess"]=1652,["Bloodsail Elder Magus"]=1653,["Gregor Agamand"]=1654,["Nissa Agamand"]=1655,["Thurman Agamand"]=1656,["Devlin Agamand"]=1657,["Captain Dargol"]=1658,["Scarlet Bodyguard"]=1660,["Novice Elreth"]=1661,["Captain Perrine"]=1662,["Dextren Ward"]=1663,["Captain Vachon"]=1664,["Captain Melrache"]=1665,["Kam Deepfury"]=1666,["Meven Korgal"]=1667,["William MacGregor"]=1668,["Defias Profiteer"]=1669,["Mike Miller"]=1670,["Lamar Veisilli"]=1671,["Lohgan Eva"]=1672,["Alyssa Eva"]=1673,["Rot Hide Gnoll"]=1674,["Rot Hide Mongrel"]=1675,["Finbus Geargrind"]=1676,["Vernon Hale"]=1678,["Avarus Kharag"]=1679,["Matthew Hooper"]=1680,["Brock Stoneseeker"]=1681,["Yanni Stoutheart"]=1682,["Warg Deepwater"]=1683,["Khara Deepwater"]=1684,["Xandar Goodbeard"]=1685,["Irene Sureshot"]=1686,["Cliff Hadin"]=1687,["Night Web Matriarch"]=1688,["Scarred Crag Boar"]=1689,["Thrawn Boltar"]=1690,["Kreg Bilmn"]=1691,["Golorn Frostbeard"]=1692,["Loch Crocolisk"]=1693,["Loslor Rudge"]=1694,["Rendow"]=1695,["Targorr the Dread"]=1696,["Keeg Gibn"]=1697,["Frast Dokner"]=1698,["Gremlock Pilsnor"]=1699,["Paxton Ganter"]=1700,["Dank Drizzlecut"]=1701,["Bronk Guzzlegear"]=1702,["Uthrar Threx"]=1703,["Prisoner"]=1706,["Defias Captive"]=1707,["Defias Inmate"]=1708,["Convict"]=1711,["Elder Shadowmaw Panther"]=1713,["Insurgent"]=1715,["Bazil Thredd"]=1716,["Hamhock"]=1717,["Rockjaw Raider"]=1718,["Warden Thelwater"]=1719,["Bruegal Ironknuckle"]=1720,["Nikova Raskol"]=1721,["Defias Watchman"]=1725,["Defias Magician"]=1726,["Defias Worker"]=1727,["Defias Evoker"]=1729,["Goblin Craftsman"]=1731,["Defias Squallshaper"]=1732,["Zggi"]=1733,["Deathguard Abraham"]=1735,["Deathguard Randolph"]=1736,["Deathguard Oliver"]=1737,["Deathguard Terrence"]=1738,["Deathguard Phillip"]=1739,["Deathguard Saltain"]=1740,["Deathguard Bartrand"]=1741,["Deathguard Bartholomew"]=1742,["Deathguard Lawrence"]=1743,["Deathguard Mort"]=1744,["Deathguard Morris"]=1745,["Deathguard Cyrus"]=1746,["Anduin Wrynn"]=1747,["Highlord Bolvar Fordragon"]=1748,["Lady Katrana Prestor"]=1749,["Grand Admiral Jes-Tereth"]=1750,["Mithras Ironhill"]=1751,["Caledra Dawnbreeze"]=1752,["Maggot Eye"]=1753,["Lord Gregor Lescovar"]=1754,["Marzon the Silent Blade"]=1755,["Stormwind Royal Guard"]=1756,["Mega Rabbit"]=1757,["Gilnid"]=1763,["Greater Feral Spirit"]=1764,["Worg"]=1765,["Rabid Worg"]=1766,["Vile Fin Shredder"]=1767,["Vile Fin Tidehunter"]=1768,["Moonrage Whitescalp"]=1769,["Moonrage Darkrunner"]=1770,["Rot Hide Gladerunner"]=1772,["Rot Hide Mystic"]=1773,["Zun'dartha"]=1775,["Magtoor"]=1776,["Dakk Blunderblast"]=1777,["Ferocious Grizzled Bear"]=1778,["Moonrage Glutton"]=1779,["Skitterweb Striker"]=1780,["Skitterweb Lurker"]=1781,["Moonrage Darksoul"]=1782,["Skeletal Flayer"]=1783,["Skeletal Sorcerer"]=1784,["Skeletal Terror"]=1785,["Skeletal Executioner"]=1787,["Skeletal Warlord"]=1788,["Skeletal Acolyte"]=1789,["Slavering Ghoul"]=1791,["Rotting Ghoul"]=1793,["Soulless Ghoul"]=1794,["Searing Ghoul"]=1795,["Freezing Ghoul"]=1796,["Giant Rabid Bear"]=1797,["Cold Wraith"]=1800,["Blood Wraith"]=1801,["Hungering Wraith"]=1802,["Wailing Death"]=1804,["Flesh Golem"]=1805,["Vile Slime"]=1806,["Devouring Ooze"]=1808,["Carrion Vulture"]=1809,["Rotting Behemoth"]=1812,["Decaying Horror"]=1813,["Diseased Black Bear"]=1815,["Diseased Grizzly"]=1816,["Diseased Wolf"]=1817,["Carrion Lurker"]=1821,["Venom Mist Lurker"]=1822,["Plague Lurker"]=1824,["Scarlet Mage"]=1826,["Scarlet Sentinel"]=1827,["Scarlet Hunter"]=1831,["Scarlet Magus"]=1832,["Scarlet Knight"]=1833,["Scarlet Paladin"]=1834,["Scarlet Invoker"]=1835,["Scarlet Cavalier"]=1836,["Scarlet Judge"]=1837,["Scarlet Interrogator"]=1838,["Scarlet High Clerist"]=1839,["Grand Inquisitor Isillien"]=1840,["Scarlet Executioner"]=1841,["Highlord Taelan Fordring"]=1842,["Foreman Jerris"]=1843,["Foreman Marcrid"]=1844,["High Protector Tarsen"]=1845,["High Protector Lorik"]=1846,["Foulmane"]=1847,["Lord Maldazzar"]=1848,["Dreadwhisper"]=1849,["Putridius"]=1850,["The Husk"]=1851,["Araj the Summoner"]=1852,["Darkmaster Gandling"]=1853,["High Priest Thel'danis"]=1854,["Tirion Fordring"]=1855,["Voidwalker"]=1860,["Succubus"]=1863,["Ravenclaw Raider"]=1865,["Ravenclaw Slave"]=1866,["Dalaran Apprentice"]=1867,["Ravenclaw Servant"]=1868,["Ravenclaw Champion"]=1869,["Hand of Ravenclaw"]=1870,["Eliza's Guard"]=1871,["Tharek Blackstone"]=1872,["Berte"]=1880,["Scarlet Worker"]=1883,["Scarlet Lumberjack"]=1884,["Scarlet Smith"]=1885,["Ambermill Watcher"]=1888,["Ambermill Witchalok"]=1889,["Rattlecage Skeleton"]=1890,["Pyrewood Watcher"]=1891,["Moonrage Watcher"]=1892,["Moonrage Sentry"]=1893,["Pyrewood Sentry"]=1894,["Pyrewood Elder"]=1895,["Moonrage Elder"]=1896,["Kelstrum Stonebreaker"]=1901,["Naga Explorer"]=1907,["Vile Fin Oracle"]=1908,["Vile Fin Lakestalker"]=1909,["Muad"]=1910,["Deeb"]=1911,["Ambermill Protector"]=1912,["Ambermill Warder"]=1913,["Ambermill Mage"]=1914,["Ambermill Conjuror"]=1915,["Stephen Bhartec"]=1916,["Daniel Ulfman"]=1917,["Karrel Grayves"]=1918,["Samuel Fipps"]=1919,["Dalaran Spellscribe"]=1920,["Combat Dummy"]=1921,["Gray Forest Wolf"]=1922,["Bloodsnout Worg"]=1923,["Moonrage Bloodhowler"]=1924,["Captured Scarlet Zealot"]=1931,["Sheep"]=1933,["Tirisfal Farmer"]=1934,["Tirisfal Farmhand"]=1935,["Farmer Solliden"]=1936,["Apothecary Renferrel"]=1937,["Dalar Dawnweaver"]=1938,["Rot Hide Brute"]=1939,["Rot Hide Plague Weaver"]=1940,["Rot Hide Graverobber"]=1941,["Rot Hide Savage"]=1942,["Raging Rot Hide"]=1943,["Rot Hide Bruiser"]=1944,["Lillith Nefara"]=1946,["Thule Ravenclaw"]=1947,["Snarlmane"]=1948,["Servant of Azora"]=1949,["Rane Yorick"]=1950,["Quinn Yorick"]=1951,["High Executor Hadrec"]=1952,["Lake Skulker"]=1953,["Elder Lake Skulker"]=1954,["Lake Creeper"]=1955,["Elder Lake Creeper"]=1956,["Vile Fin Shorecreeper"]=1957,["Vile Fin Tidecaller"]=1958,["Mountaineer Barleybrew"]=1959,["Pilot Hammerfoot"]=1960,["Mangeclaw"]=1961,["Vidra Hearthstove"]=1963,["Treant"]=1964,["Mountaineer Thalos"]=1965,["Ivar the Foul"]=1971,["Grimson the Pale"]=1972,["Ravenclaw Guardian"]=1973,["Ravenclaw Drudger"]=1974,["Eastvale Lumberjack"]=1975,["Stormwind City Patroller"]=1976,["Senator Mehr Stonehallow"]=1977,["Deathstalker Erland"]=1978,["Dark Iron Ambusher"]=1981,["Nightlash"]=1983,["Young Thistle Boar"]=1984,["Thistle Boar"]=1985,["Webwood Spider"]=1986,["Grell"]=1988,["Grellkin"]=1989,["Tarindrella"]=1992,["Greenpaw"]=1993,["Githyiss the Vile"]=1994,["Strigid Owl"]=1995,["Strigid Screecher"]=1996,["Strigid Hunter"]=1997,["Webwood Lurker"]=1998,["Webwood Venomfang"]=1999,["Webwood Silkspinner"]=2000,["Giant Webwood Spider"]=2001,["Rascal Sprite"]=2002,["Shadow Sprite"]=2003,["Dark Sprite"]=2004,["Vicious Grell"]=2005,["Gnarlpine Ursa"]=2006,["Gnarlpine Gardener"]=2007,["Gnarlpine Warrior"]=2008,["Gnarlpine Shaman"]=2009,["Gnarlpine Defender"]=2010,["Gnarlpine Augur"]=2011,["Gnarlpine Pathfinder"]=2012,["Gnarlpine Avenger"]=2013,["Gnarlpine Totemic"]=2014,["Bloodfeather Harpy"]=2015,["Bloodfeather Rogue"]=2017,["Bloodfeather Sorceress"]=2018,["Bloodfeather Fury"]=2019,["Bloodfeather Wind Witch"]=2020,["Bloodfeather Matriarch"]=2021,["Timberling"]=2022,["Timberling Bark Ripper"]=2025,["Timberling Trampler"]=2027,["Timberling Mire Beast"]=2029,["Elder Timberling"]=2030,["Young Nightsaber"]=2031,["Mangy Nightsaber"]=2032,["Elder Nightsaber"]=2033,["Feral Nightsaber"]=2034,["Lord Melenas"]=2038,["Ursal the Mauler"]=2039,["Ancient Protector"]=2041,["Nightsaber"]=2042,["Nightsaber Stalker"]=2043,["Forlorn Spirit"]=2044,["Andrew Krighton"]=2046,["Raleigh Andrean"]=2050,["Haggard Refugee"]=2053,["Sickly Refugee"]=2054,["Master Apothecary Faranell"]=2055,["Ravenclaw Apparition"]=2056,["Huldar"]=2057,["Deathstalker Faerleia"]=2058,["Councilman Smithers"]=2060,["Councilman Thatcher"]=2061,["Councilman Hendricks"]=2062,["Councilman Wilhelm"]=2063,["Councilman Hartin"]=2064,["Councilman Cooper"]=2065,["Councilman Higarth"]=2066,["Councilman Brunswick"]=2067,["Lord Mayor Morrison"]=2068,["Moonstalker"]=2069,["Moonstalker Runt"]=2070,["Moonstalker Matriarch"]=2071,["Melithar Staghelm"]=2077,["Athridas Bearmantle"]=2078,["Ilthalaine"]=2079,["Denalan"]=2080,["Sentinel Kyra Starsong"]=2081,["Gilshalan Windwalker"]=2082,["Syral Bladeleaf"]=2083,["Natheril Raincaller"]=2084,["Valstag Ironjaw"]=2086,["Giant Wetlands Crocolisk"]=2089,["Ma'ruk Wyrmscale"]=2090,["Chieftain Nek'rosh"]=2091,["Pilot Longbeard"]=2092,["Einar Stonegrip"]=2093,["James Halloran"]=2094,["Tarrel Rockweaver"]=2096,["Harlo Barnaby"]=2097,["Ram"]=2098,["Maiden's Virtue Crewman"]=2099,["Dragonmaw Grunt"]=2102,["Dragonmaw Scout"]=2103,["Captain Stoutfist"]=2104,["Mountaineer Dokkin"]=2105,["Apothecary Berard"]=2106,["Gaerolas Talvethren"]=2107,["Garneg Charskull"]=2108,["Black Rat"]=2110,["Sida"]=2111,["Farrin Daris"]=2112,["Archibald Kava"]=2113,["Faruza"]=2114,["Joshua Kien"]=2115,["Blacksmith Rand"]=2116,["Harold Raims"]=2117,["Abigail Shiel"]=2118,["Dannal Stern"]=2119,["Archmage Ataeric"]=2120,["Shadow Priest Allister"]=2121,["David Trias"]=2122,["Dark Cleric Duesten"]=2123,["Isabella"]=2124,["Maximillion"]=2126,["Rupert Boch"]=2127,["Cain Firesong"]=2128,["Dark Cleric Beryl"]=2129,["Marion Call"]=2130,["Austil de Mon"]=2131,["Carolai Anise"]=2132,["Mrs. Winters"]=2134,["Abe Winters"]=2135,["Oliver Dwor"]=2136,["Eliza Callen"]=2137,["Edwin Harly"]=2140,["Watcher Callahan"]=2142,["Dark Iron Raider"]=2149,["Zenn Foulhoof"]=2150,["Moon Priestess Amara"]=2151,["Gnarlpine Ambusher"]=2152,["Terl Arakor"]=2153,["Sentinel Shayla Nightbreeze"]=2155,["Cracked Golem"]=2156,["Stone Behemoth"]=2157,["Gravelflint Scout"]=2158,["Gravelflint Bonesnapper"]=2159,["Gravelflint Geomancer"]=2160,["Agal"]=2162,["Thistle Bear"]=2163,["Rabid Thistle Bear"]=2164,["Grizzled Thistle Bear"]=2165,["Oakenscowl"]=2166,["Blackwood Pathfinder"]=2167,["Blackwood Warrior"]=2168,["Blackwood Totemic"]=2169,["Blackwood Ursa"]=2170,["Blackwood Shaman"]=2171,["Strider Clutchmother"]=2172,["Reef Frenzy"]=2173,["Coastal Frenzy"]=2174,["Shadowclaw"]=2175,["Cursed Highborne"]=2176,["Writhing Highborne"]=2177,["Wailing Highborne"]=2178,["Stormscale Wave Rider"]=2179,["Stormscale Siren"]=2180,["Stormscale Myrmidon"]=2181,["Stormscale Sorceress"]=2182,["Stormscale Warrior"]=2183,["Lady Moongazer"]=2184,["Darkshore Thresher"]=2185,["Carnivous the Breaker"]=2186,["Elder Darkshore Thresher"]=2187,["Deep Sea Threshadon"]=2188,["Vile Sprite"]=2189,["Wild Grell"]=2190,["Licillin"]=2191,["Firecaller Radison"]=2192,["Crier Goodman"]=2198,["Greymist Raider"]=2201,["Greymist Coastrunner"]=2202,["Greymist Seer"]=2203,["Greymist Netter"]=2204,["Greymist Warrior"]=2205,["Greymist Hunter"]=2206,["Greymist Oracle"]=2207,["Greymist Tidehunter"]=2208,["Deathguard Gavin"]=2209,["Deathguard Royann"]=2210,["Captured Mountaineer"]=2211,["Deth'ryll Satyr"]=2212,["Deathstalker Lesh"]=2214,["High Executor Darthalia"]=2215,["Apothecary Lydon"]=2216,["Zora Guthrek"]=2225,["Karos Razok"]=2226,["Sharlindra"]=2227,["Lieutenant Farren Orinelle"]=2228,["Krusk"]=2229,["Umpi"]=2230,["Pygmy Tide Crawler"]=2231,["Tide Crawler"]=2232,["Encrusted Tide Crawler"]=2233,["Young Reef Crawler"]=2234,["Reef Crawler"]=2235,["Raging Reef Crawler"]=2236,["Moonstalker Sire"]=2237,["Tog'thar"]=2238,["Drull"]=2239,["Syndicate Footpad"]=2240,["Syndicate Thief"]=2241,["Syndicate Spy"]=2242,["Syndicate Sentry"]=2243,["Syndicate Shadow Mage"]=2244,["Syndicate Saboteur"]=2245,["Syndicate Assassin"]=2246,["Syndicate Enforcer"]=2247,["Cave Yeti"]=2248,["Ferocious Yeti"]=2249,["Mountain Yeti"]=2250,["Giant Yeti"]=2251,["Crushridge Ogre"]=2252,["Crushridge Brute"]=2253,["Crushridge Mauler"]=2254,["Crushridge Mage"]=2255,["Crushridge Enforcer"]=2256,["Mug'thol"]=2257,["Maggarrak"]=2258,["Syndicate Rogue"]=2260,["Syndicate Watchman"]=2261,["Marshal Redpath"]=2263,["Hillsbrad Tailor"]=2264,["Hillsbrad Apprentice Blacksmith"]=2265,["Hillsbrad Farmer"]=2266,["Hillsbrad Peasant"]=2267,["Hillsbrad Footman"]=2268,["Hillsbrad Miner"]=2269,["Hillsbrad Sentry"]=2270,["Dalaran Shield Guard"]=2271,["Dalaran Theurgist"]=2272,["Stanley"]=2274,["Enraged Stanley"]=2275,["Magistrate Henry Maleb"]=2276,["Loremaster Dibbs"]=2277,["Melisara"]=2278,["Ravenclaw Regent"]=2283,["Captured Farmer"]=2284,["Count Remington Ridgewell"]=2285,["Crushridge Warmonger"]=2287,["Borgus Stoutarm"]=2299,["Aethalas"]=2302,["Lyranne Feathersong"]=2303,["Captain Ironhill"]=2304,["Foreman Bonds"]=2305,["Baron Vardus"]=2306,["Caretaker Caice"]=2307,["Andrew Brownell"]=2308,["Thomas Arlento"]=2309,["Jamie Nore"]=2310,["Doreen Beltis"]=2311,["Sahvan Bloodshadow"]=2314,["Maquell Ebonwood"]=2315,["Gol'dir"]=2316,["Elysa"]=2317,["Argus Shadow Mage"]=2318,["Syndicate Wizard"]=2319,["Nagaz"]=2320,["Foreststrider Fledgling"]=2321,["Foreststrider"]=2322,["Giant Foreststrider"]=2323,["Blackwood Windtalker"]=2324,["Thamner Pol"]=2326,["Shaina Fuller"]=2327,["Michelle Belle"]=2329,["Karlee Chaddis"]=2330,["Paige Chaddis"]=2331,["Valdred Moray"]=2332,["Henchman Valik"]=2333,["Event Generator 001"]=2334,["Magistrate Burnside"]=2335,["Dark Strand Fanatic"]=2336,["Dark Strand Voidcaller"]=2337,["Twilight Disciple"]=2338,["Twilight Thug"]=2339,["Dun Garok Mountaineer"]=2344,["Dun Garok Rifleman"]=2345,["Dun Garok Priest"]=2346,["Wild Gryphon"]=2347,["Elder Moss Creeper"]=2348,["Domesticated Creeper"]=2349,["Forest Creeper"]=2350,["Gray Bear"]=2351,["Innkeeper Anderson"]=2352,["Vicious Gray Bear"]=2354,["Elder Gray Bear"]=2356,["Merideth Carlson"]=2357,["Dalaran Summoner"]=2358,["Elemental Slave"]=2359,["Hillsbrad Farmhand"]=2360,["Tamara Armstrong"]=2361,["Hemmit Armstrong"]=2362,["Apprentice Honeywell"]=2363,["Neema"]=2364,["Bront Coldcleave"]=2365,["Barkeep Kelly"]=2366,["Donald Rabonne"]=2367,["Daggerspine Shorestalker"]=2368,["Daggerspine Shorehunter"]=2369,["Daggerspine Screamer"]=2370,["Daggerspine Siren"]=2371,["Mudsnout Gnoll"]=2372,["Mudsnout Shaman"]=2373,["Torn Fin Muckdweller"]=2374,["Torn Fin Coastrunner"]=2375,["Torn Fin Oracle"]=2376,["Torn Fin Tidehunter"]=2377,["Kundric Zanden"]=2378,["Caretaker Smithers"]=2379,["Nandar Branson"]=2380,["Micha Yance"]=2381,["Darren Malvew"]=2382,["Lindea Rabonne"]=2383,["Starving Mountain Lion"]=2384,["Foothill Stalker"]=2385,["Alliance Guard"]=2386,["Hillsbrad Councilman"]=2387,["Innkeeper Shay"]=2388,["Zarise"]=2389,["Aranae Venomblood"]=2390,["Serge Hinott"]=2391,["Delia Verana"]=2392,["Christoph Jeffcoat"]=2393,["Mallen Swain"]=2394,["Vinna Wayne"]=2395,["Hans Zandin"]=2396,["Derak Nightfall"]=2397,["Tara Coldgaze"]=2398,["Daryl Stack"]=2399,["Craig Hewitt"]=2400,["Kayren Soothallow"]=2401,["Shara Blazen"]=2402,["Farmer Getz"]=2403,["Blacksmith Verringtan"]=2404,["Tarren Mill Deathguard"]=2405,["Mountain Lion"]=2406,["Hulking Mountain Lion"]=2407,["Snapjaw"]=2408,["Felicia Maline"]=2409,["Magus Wordeen Voidglare"]=2410,["Ricter"]=2411,["Alina"]=2412,["Dermot"]=2413,["Kegan Darkmar"]=2414,["Warden Belamoore"]=2415,["Crushridge Plunderer"]=2416,["Grel'borg the Miser"]=2417,["Deathguard Samsa"]=2418,["Deathguard Humbert"]=2419,["Targ"]=2420,["Muckrake"]=2421,["Glommus"]=2422,["Lord Aliden Perenolde"]=2423,["Guild Banker"]=2424,["Varimathras"]=2425,["Jailor Eston"]=2427,["Jailor Marlgen"]=2428,["Novice Thaivand"]=2429,["Chef Jessen"]=2430,["Jailor Borhuin"]=2431,["Darla Harris"]=2432,["Helcular's Remains"]=2433,["Shadowy Assassin"]=2434,["Southshore Crier"]=2435,["Farmer Kent"]=2436,["Keeper Bel'varil"]=2437,["Bartolo Ginsetti"]=2438,["Major Samuelson"]=2439,["Drunken Footpad"]=2440,["Cow"]=2442,["Narillasanz"]=2447,["Clerk Horrace Whitesteed"]=2448,["Citizen Wilkes"]=2449,["Miner Hackett"]=2450,["Farmer Kalaba"]=2451,["Skhowl"]=2452,["Lo'Grosh"]=2453,["Olivia Burnside"]=2455,["Newton Burnside"]=2456,["John Burnside"]=2457,["Randolph Montague"]=2458,["Mortimer Montague"]=2459,["Barnum Stonemantle"]=2460,["Bailey Stonemantle"]=2461,["Flesh Eating Worm"]=2462,["Commander Aggro'gosh"]=2464,["Far Seer Mok'thardin"]=2465,["Mountaineer Grugelm"]=2466,["Mountaineer Thar"]=2468,["Mountaineer Rharen"]=2469,["Watcher Fraizer"]=2470,["Granistad"]=2473,["Kurdros"]=2474,["Sloth"]=2475,["Gosh-Haldir"]=2476,["Gradok"]=2477,["Haren Swifthoof"]=2478,["Sludge"]=2479,["Bro'kin"]=2480,["Bliztik"]=2481,["Zarena Cromwind"]=2482,["Jaquilina Dramet"]=2483,["Larimaine Purdue"]=2485,["Fin Fizracket"]=2486,["Fleet Master Seahorn"]=2487,["Deeg"]=2488,["Milstaff Stormeye"]=2489,["First Mate Crazz"]=2490,["Whiskey Slim"]=2491,["Lexington Mortaim"]=2492,["Dizzy One-Eye"]=2493,["Privateer Bloads"]=2494,["Drizzlik"]=2495,["Baron Revilgaz"]=2496,["Nimboya"]=2497,["Crank Fizzlebub"]=2498,["Markel Smythe"]=2499,["Captain Hecklebury Smotts"]=2500,["Hillsbrad Foreman"]=2503,["Donyal Tovald"]=2504,["Saltwater Snapjaw"]=2505,["Mountaineer Harn"]=2506,["Mountaineer Uthan"]=2507,["Mountaineer Wuar"]=2508,["Mountaineer Cragg"]=2509,["Mountaineer Ozmok"]=2510,["Mountaineer Bludd"]=2511,["Mountaineer Roghan"]=2512,["Mountaineer Janha"]=2513,["Mountaineer Modax"]=2514,["Mountaineer Fazgard"]=2515,["Mountaineer Kamdar"]=2516,["Mountaineer Langarr"]=2517,["Mountaineer Swarth"]=2518,["Kin'weelay"]=2519,["Remote-Controlled Golem"]=2520,["Skymane Gorilla"]=2521,["Jaguero Stalker"]=2522,["Searing Totem"]=2523,["Mountaineer Haggis"]=2524,["Mountaineer Barn"]=2525,["Mountaineer Morlic"]=2526,["Mountaineer Angst"]=2527,["Mountaineer Haggil"]=2528,["Son of Arugal"]=2529,["Yenniku"]=2530,["Minion of Doane"]=2531,["Donna"]=2532,["William"]=2533,["Zanzil the Outcast"]=2534,["Jon-Jon the Crow"]=2536,["Ambermill Serpent"]=2540,["Lord Sakrasis"]=2541,["Catelyn the Blade"]=2542,["Archmage Ansirem Runeweaver"]=2543,["Southern Sand Crawler"]=2544,["Fleet Master Firallon"]=2546,["Ironpatch"]=2547,["Captain Keelhaul"]=2548,["Garr Salthoof"]=2549,["Captain Stillwater"]=2550,["Brutus"]=2551,["Witherbark Troll"]=2552,["Witherbark Shadowcaster"]=2553,["Witherbark Axe Thrower"]=2554,["Witherbark Witch Doctor"]=2555,["Witherbark Headhunter"]=2556,["Witherbark Shadow Hunter"]=2557,["Witherbark Berserker"]=2558,["Highland Strider"]=2559,["Highland Thrasher"]=2560,["Highland Fleshstalker"]=2561,["Boulderfist Ogre"]=2562,["Plains Creeper"]=2563,["Boulderfist Enforcer"]=2564,["Giant Plains Creeper"]=2565,["Boulderfist Brute"]=2566,["Boulderfist Magus"]=2567,["Boulderfist Mauler"]=2569,["Boulderfist Shaman"]=2570,["Boulderfist Lord"]=2571,["Drywhisker Kobold"]=2572,["Drywhisker Surveyor"]=2573,["Drywhisker Digger"]=2574,["Dark Iron Supplier"]=2575,["Dark Iron Shadowcaster"]=2577,["Young Mesa Buzzard"]=2578,["Mesa Buzzard"]=2579,["Elder Mesa Buzzard"]=2580,["Dabyrie Militia"]=2581,["Dabyrie Laborer"]=2582,["Stromgarde Troll Hunter"]=2583,["Stromgarde Defender"]=2584,["Stromgarde Soldier"]=2585,["Syndicate Highwayman"]=2586,["Syndicate Pathstalker"]=2587,["Syndicate Prowler"]=2588,["Syndicate Mercenary"]=2589,["Syndicate Conjuror"]=2590,["Syndicate Magus"]=2591,["Rumbling Exile"]=2592,["Sprogger"]=2594,["Daggerspine Raider"]=2595,["Daggerspine Sorceress"]=2596,["Lord Falconcrest"]=2597,["Darbel Montrose"]=2598,["Otto"]=2599,["Singer"]=2600,["Foulbelly"]=2601,["Ruul Onestone"]=2602,["Kovork"]=2603,["Molok the Crusher"]=2604,["Zalas Witherbark"]=2605,["Nimar the Slayer"]=2606,["Prince Galen Trollbane"]=2607,["Commander Amaren"]=2608,["Geomancer Flintdagger"]=2609,["Shakes O'Breen"]=2610,["Fozruk"]=2611,["Lieutenant Valorcall"]=2612,["Air Force Alarm Bot (Alliance)"]=2614,["Air Force Alarm Bot (Horde)"]=2615,["Privateer Groy"]=2616,["Hammerfall Peon"]=2618,["Hammerfall Grunt"]=2619,["Prairie Dog"]=2620,["Hammerfall Guardian"]=2621,["Sly Garrett"]=2622,["Spirit of Old"]=2623,["Gazban"]=2624,["Viznik Goldgrubber"]=2625,["Old Man Heming"]=2626,["Grarnik Goodstitch"]=2627,["Dalaran Worker"]=2628,["Earthbind Totem"]=2630,["Princess Poobah"]=2634,["Elder Snapjaw Crocolisk"]=2635,["Blackwater Deckhand"]=2636,["Syndicate Bomb"]=2637,["Syndicate Spectre"]=2638,["Vilebranch Axe Thrower"]=2639,["Vilebranch Witch Doctor"]=2640,["Vilebranch Headhunter"]=2641,["Vilebranch Shadowcaster"]=2642,["Vilebranch Berserker"]=2643,["Vilebranch Hideskinner"]=2644,["Vilebranch Shadow Hunter"]=2645,["Vilebranch Blood Drinker"]=2646,["Vilebranch Soul Eater"]=2647,["Vilebranch Aman'zasi Guard"]=2648,["Witherbark Scalper"]=2649,["Witherbark Zealot"]=2650,["Witherbark Hideskinner"]=2651,["Witherbark Venomblood"]=2652,["Witherbark Sadist"]=2653,["Witherbark Caller"]=2654,["Green Sludge"]=2655,["Jade Ooze"]=2656,["Trained Razorbeak"]=2657,["Razorbeak Gryphon"]=2658,["Razorbeak Skylord"]=2659,["Narkk"]=2663,["Kelsey Yance"]=2664,["Ward of Laze"]=2667,["Danielle Zipstitch"]=2668,["Sheri Zipstitch"]=2669,["Xizk Goodstitch"]=2670,["Mechanical Squirrel"]=2671,["Cowardly Crosby"]=2672,["Target Dummy"]=2673,["Advanced Target Dummy"]=2674,["Explosive Sheep"]=2675,["Compact Harvest Reaper"]=2676,["Mechanical Dragonling"]=2678,["Wenna Silkbeard"]=2679,["Vilebranch Wolf Pup"]=2680,["Vilebranch Raiding Wolf"]=2681,["Fradd Swiftgear"]=2682,["Namdo Bizzfizzle"]=2683,["Rizz Loosebolt"]=2684,["Mazk Snipeshot"]=2685,["Witherbark Broodguard"]=2686,["Gnaz Blunderflame"]=2687,["Ruppo Zipcoil"]=2688,["Highvale Outrunner"]=2691,["Highvale Scout"]=2692,["Highvale Marksman"]=2693,["Highvale Ranger"]=2694,["Sara Balloo"]=2695,["Foggy MacKreel"]=2696,["Clyde Ranthal"]=2697,["George Candarte"]=2698,["Rikqiz"]=2699,["Captain Nials"]=2700,["Dustbelcher Ogre"]=2701,["Zengu"]=2703,["Hanashi"]=2704,["Brewmeister Bilger"]=2705,["Tor'gan"]=2706,["Shadra"]=2707,["Archmage Malin"]=2708,["Phin Odelic"]=2711,["Quae"]=2712,["Kinelory"]=2713,["Forsaken Courier"]=2714,["Dustbelcher Brute"]=2715,["Dustbelcher Wyrmhunter"]=2716,["Dustbelcher Mauler"]=2717,["Dustbelcher Shaman"]=2718,["Dustbelcher Lord"]=2719,["Dustbelcher Ogre Mage"]=2720,["Forsaken Bodyguard"]=2721,["Stone Golem"]=2723,["Scalding Whelp"]=2725,["Scorched Guardian"]=2726,["Crag Coyote"]=2727,["Feral Crag Coyote"]=2728,["Elder Crag Coyote"]=2729,["Rabid Crag Coyote"]=2730,["Ridge Stalker"]=2731,["Ridge Huntress"]=2732,["Apothecary Jorell"]=2733,["Ridge Stalker Patriarch"]=2734,["Lesser Rock Elemental"]=2735,["Greater Rock Elemental"]=2736,["Durtham Greldon"]=2737,["Stromgarde Cavalryman"]=2738,["Shadowforge Tunneler"]=2739,["Shadowforge Darkweaver"]=2740,["Shadowforge Chanter"]=2742,["Shadowforge Warrior"]=2743,["Shadowforge Commander"]=2744,["Ambassador Infernus"]=2745,["Archaedas"]=2748,["Barricade"]=2749,["War Golem"]=2751,["Rumbler"]=2752,["Barnabus"]=2753,["Anathemus"]=2754,["Myzrael"]=2755,["Blacklash"]=2757,["Hematus"]=2759,["Burning Exile"]=2760,["Cresting Exile"]=2761,["Thundering Exile"]=2762,["Thenan"]=2763,["Sleeby"]=2764,["Znort"]=2765,["Lolo the Lookout"]=2766,["First Mate Nilzlix"]=2767,["Professor Phizzlethorpe"]=2768,["Captain Steelgut"]=2769,["Tallow"]=2770,["Drum Fel"]=2771,["Korin Fel"]=2772,["Or'Kalar"]=2773,["Doctor Draxlegauge"]=2774,["Daggerspine Marauder"]=2775,["Vengeful Surge"]=2776,["Deckhand Moishe"]=2778,["Prince Nazjak"]=2779,["Caretaker Nevlin"]=2780,["Caretaker Weston"]=2781,["Caretaker Alaric"]=2782,["Marez Cowl"]=2783,["King Magni Bronzebeard"]=2784,["Theldurin the Lost"]=2785,["Gerrig Bonegrip"]=2786,["Zaruk"]=2787,["Apprentice Kryten"]=2788,["Skuerto"]=2789,["Grand Mason Marblesten"]=2790,["Enraged Rock Elemental"]=2791,["Gor'mul"]=2792,["Kor'gresh Coldrage"]=2793,["Summoned Guardian"]=2794,["Faelyssa"]=2796,["Hovrak Gutrender"]=2797,["Pand Stonebinder"]=2798,["Lucian Fenner"]=2799,["Tresa MacGregor"]=2801,["Susan Tillinghast"]=2802,["Malygen"]=2803,["Kurden Bloodclaw"]=2804,["Deneb Walker"]=2805,["Bale"]=2806,["Vikki Lonsav"]=2808,["Hammon Karwn"]=2810,["Drovnar Strongbrew"]=2812,["Narj Deepslice"]=2814,["Androd Fadran"]=2816,["Rigglefuzz"]=2817,["Slagg"]=2818,["Tunkk"]=2819,["Graud"]=2820,["Keena"]=2821,["Starving Buzzard"]=2829,["Parched Buzzard"]=2830,["Giant Buzzard"]=2831,["Nixxrax Fillamug"]=2832,["Myizz Luckycatch"]=2834,["Cedrik Prose"]=2835,["Brikk Keencraft"]=2836,["Jaxin Chong"]=2837,["Crazk Sparks"]=2838,["Haren Kanmae"]=2839,["Kizz Bluntstrike"]=2840,["Wigcik"]=2842,["Jutak"]=2843,["Hurklor"]=2844,["Fargon Mortalak"]=2845,["Blixrez Goodstitch"]=2846,["Jansen Underwood"]=2847,["Glyx Brewright"]=2848,["Qixdi Goodstitch"]=2849,["Broken Tooth"]=2850,["Urda"]=2851,["Enslaved Druid of the Talon"]=2852,["Freed Druid of the Talon"]=2853,["Snang"]=2855,["Angrun"]=2856,["Thund"]=2857,["Gringer"]=2858,["Gyll"]=2859,["Sigrun Ironhew"]=2860,["Gorrik"]=2861,["[UNUSED] Henria Derth"]=2870,["Grunenstur Balindom"]=2876,["Peria Lamenur"]=2878,["Karrina Mekenda"]=2879,["[UNUSED] Hurom Juggendolf"]=2880,["Durdek Karrin"]=2881,["Prismatic Exile"]=2887,["Garek"]=2888,["Stonevault Seer"]=2892,["Stonevault Bonesnapper"]=2893,["Stonevault Shaman"]=2894,["Dustbelcher Warrior"]=2906,["Dustbelcher Mystic"]=2907,["Grawl"]=2908,["Hammertoe Grez"]=2909,["Prospector Ryedol"]=2910,["Archaeologist Flagongut"]=2911,["Chief Archaeologist Greywhisker"]=2912,["Archaeologist Hollee"]=2913,["Snake"]=2914,["Hammertoe's Spirit"]=2915,["Historian Karnik"]=2916,["Prospector Remtravel"]=2917,["Advisor Belgrum"]=2918,["Fam'retor Guardian"]=2919,["Lucien Tosselwrench"]=2920,["Lotwil Veriatus"]=2921,["Servo"]=2922,["Mangy Silvermane"]=2923,["Silvermane Wolf"]=2924,["Silvermane Howler"]=2925,["Silvermane Stalker"]=2926,["Vicious Owlbeast"]=2927,["Primitive Owlbeast"]=2928,["Savage Owlbeast"]=2929,["Sentinel Glynda Nal'Shea"]=2930,["Zaricotl"]=2931,["Magregan Deepshadow"]=2932,["Keeper Bel'dugur"]=2934,["Dagun the Ravenous"]=2937,["Lanie Reed"]=2941,["Ransin Donner"]=2943,["Boss Tho'grun"]=2944,["Murdaloc"]=2945,["Puppet of Helcular"]=2946,["Harken Windtotem"]=2947,["Mull Thunderhorn"]=2948,["Palemane Tanner"]=2949,["Palemane Skinner"]=2950,["Palemane Poacher"]=2951,["Bristleback Invaders"]=2952,["Bristleback Shaman"]=2953,["Bristleback Battleboar"]=2954,["Plainstrider"]=2955,["Adult Plainstrider"]=2956,["Elder Plainstrider"]=2957,["Prairie Wolf"]=2958,["Prairie Stalker"]=2959,["Prairie Wolf Alpha"]=2960,["Mountain Cougar"]=2961,["Windfury Harpy"]=2962,["Windfury Wind Witch"]=2963,["Windfury Sorceress"]=2964,["Windfury Matriarch"]=2965,["Young Battleboar"]=2966,["Galak Centaur"]=2967,["Galak Outrunner"]=2968,["Wiry Swoop"]=2969,["Swoop"]=2970,["Taloned Swoop"]=2971,["Kodo Calf"]=2972,["Kodo Bull"]=2973,["Kodo Matriarch"]=2974,["Venture Co. Hireling"]=2975,["Venture Co. Laborer"]=2976,["Venture Co. Taskmaster"]=2977,["Venture Co. Worker"]=2978,["Venture Co. Supervisor"]=2979,["Grull Hawkwind"]=2980,["Chief Hawkwind"]=2981,["Seer Graytongue"]=2982,["The Plains Vision"]=2983,["Seer Wiserunner"]=2984,["Ruul Eagletalon"]=2985,["Dorn Plainstalker"]=2986,["Eyahn Eagletalon"]=2987,["Morin Cloudstalker"]=2988,["Bael'dun Digger"]=2989,["Bael'dun Appraiser"]=2990,["Greatmother Hawkwind"]=2991,["Healing Ward V"]=2992,["Baine Bloodhoof"]=2993,["Ancestral Spirit"]=2994,["Tal"]=2995,["Torn"]=2996,["Jyn Stonehoof"]=2997,["Karn Stonehoof"]=2998,["Taur Stonehoof"]=2999,["Gibbert"]=3000,["Brek Stonehoof"]=3001,["Kurm Stonehoof"]=3002,["Fyr Mistrunner"]=3003,["Tepa"]=3004,["Mahu"]=3005,["Una"]=3007,["Mak"]=3008,["Bena Winterhoof"]=3009,["Mani Winterhoof"]=3010,["Teg Dawnstrider"]=3011,["Nata Dawnstrider"]=3012,["Komin Winterhoof"]=3013,["Nida Winterhoof"]=3014,["Kuna Thunderhorn"]=3015,["Tand"]=3016,["Nan Mistrunner"]=3017,["Hogor Thunderhoof"]=3018,["Delgo Ragetotem"]=3019,["Etu Ragetotem"]=3020,["Kard Ragetotem"]=3021,["Sunn Ragetotem"]=3022,["Sura Wildmane"]=3023,["Tah Winterhoof"]=3024,["Kaga Mistrunner"]=3025,["Aska Mistrunner"]=3026,["Naal Mistrunner"]=3027,["Kah Mistrunner"]=3028,["Sewa Mistrunner"]=3029,["Siln Skychaser"]=3030,["Tigor Skychaser"]=3031,["Beram Skychaser"]=3032,["Turak Runetotem"]=3033,["Sheal Runetotem"]=3034,["Flatland Cougar"]=3035,["Kym Wildmane"]=3036,["Sheza Wildmane"]=3037,["Kary Thunderhorn"]=3038,["Holt Thunderhorn"]=3039,["Urek Thunderhorn"]=3040,["Torm Ragetotem"]=3041,["Sark Ragetotem"]=3042,["Ker Ragetotem"]=3043,["Miles Welsh"]=3044,["Malakai Cross"]=3045,["Father Cobb"]=3046,["Archmage Shymm"]=3047,["Ursyn Ghull"]=3048,["Thurston Xane"]=3049,["Veren Tallstrider"]=3050,["Supervisor Fizsprocket"]=3051,["Skorn Whitecloud"]=3052,["Synge"]=3053,["Zarlman Two-Moons"]=3054,["Maur Raincaller"]=3055,["Ghost Howl"]=3056,["Cairne Bloodhoof"]=3057,["Arra'chea"]=3058,["Harutt Thunderhorn"]=3059,["Gart Mistrunner"]=3060,["Lanka Farshot"]=3061,["Meela Dawnstrider"]=3062,["Krang Stonehoof"]=3063,["Gennia Runetotem"]=3064,["Yaw Sharpmane"]=3065,["Narm Skychaser"]=3066,["Pyall Silentstride"]=3067,["Mazzranache"]=3068,["Chaw Stronghide"]=3069,["Kawnie Softbreeze"]=3072,["Marjak Keenblade"]=3073,["Varia Hardhide"]=3074,["Bronk Steelrage"]=3075,["Moorat Longstride"]=3076,["Mahnott Roughwound"]=3077,["Kennah Hawkseye"]=3078,["Varg Windwhisper"]=3079,["Harant Ironbrace"]=3080,["Wunna Darkmane"]=3081,["Honor Guard"]=3083,["Bluffwatcher"]=3084,["Gloria Femmel"]=3085,["Gretchen Vogel"]=3086,["Crystal Boughman"]=3087,["Henry Chapal"]=3088,["Sherman Femmel"]=3089,["Gerald Crawley"]=3090,["Franklin Hamar"]=3091,["Tagain"]=3092,["Grod"]=3093,["Unseen"]=3094,["Fela"]=3095,["Captured Servant of Azora"]=3096,["Bernard Brubaker"]=3097,["Mottled Boar"]=3098,["Dire Mottled Boar"]=3099,["Elder Mottled Boar"]=3100,["Vile Familiar"]=3101,["Felstalker"]=3102,["Makrura Clacker"]=3103,["Makrura Shellhide"]=3104,["Makrura Snapclaw"]=3105,["Surf Crawler"]=3106,["Mature Surf Crawler"]=3107,["Encrusted Surf Crawler"]=3108,["Dreadmaw Crocolisk"]=3110,["Razormane Quilboar"]=3111,["Razormane Scout"]=3112,["Razormane Dustrunner"]=3113,["Razormane Battleguard"]=3114,["Dustwind Harpy"]=3115,["Dustwind Pillager"]=3116,["Dustwind Savage"]=3117,["Dustwind Storm Witch"]=3118,["Kolkar Drudge"]=3119,["Kolkar Outrunner"]=3120,["Durotar Tiger"]=3121,["Bloodtalon Taillasher"]=3122,["Bloodtalon Scythemaw"]=3123,["Scorpid Worker"]=3124,["Clattering Scorpid"]=3125,["Armored Scorpid"]=3126,["Venomtail Scorpid"]=3127,["Kul Tiras Sailor"]=3128,["Kul Tiras Marine"]=3129,["Thunder Lizard"]=3130,["Lightning Hide"]=3131,["Herble Baubbletump"]=3133,["Kzixx"]=3134,["Malissa"]=3135,["Clarise Gnarltree"]=3136,["Matt Johnson"]=3137,["Scott Carevin"]=3138,["Gar'Thok"]=3139,["Lar Prowltusk"]=3140,["Makrura Elder"]=3141,["Orgnil Soulscar"]=3142,["Gornek"]=3143,["Eitrigg"]=3144,["Zureetha Fargaze"]=3145,["Furl Scornbrow"]=3147,["Nez'raz"]=3149,["Hin Denburg"]=3150,["Frang"]=3153,["Jen'shan"]=3154,["Rwag"]=3155,["Nartok"]=3156,["Shikrik"]=3157,["Duokna"]=3158,["Kzan Thornslash"]=3159,["Huklah"]=3160,["Rarc"]=3161,["Burdrak Harglhelm"]=3162,["Uhgar"]=3163,["Jark"]=3164,["Ghrawt"]=3165,["Cutac"]=3166,["Wuark"]=3167,["Flakk"]=3168,["Tarshaw Jaggedscar"]=3169,["Kaplak"]=3170,["Thotar"]=3171,["Dhugru Gorelust"]=3172,["Swart"]=3173,["Dwukk"]=3174,["Krunn"]=3175,["Turuk Amberstill"]=3177,["Stuart Fleming"]=3178,["Harold Riggs"]=3179,["Dark Iron Entrepreneur"]=3180,["Fremal Doohickey"]=3181,["Junder Brokk"]=3182,["Yarrog Baneshadow"]=3183,["Miao'zan"]=3184,["Mishiki"]=3185,["K'waii"]=3186,["Tai'tasi"]=3187,["Master Gadrin"]=3188,["Kor'ghan"]=3189,["Rhinag"]=3190,["Cook Torka"]=3191,["Lieutenant Benedict"]=3192,["Misha Tor'kren"]=3193,["Vel'rin Fang"]=3194,["Burning Blade Thug"]=3195,["Burning Blade Neophyte"]=3196,["Burning Blade Fanatic"]=3197,["Burning Blade Apprentice"]=3198,["Burning Blade Cultist"]=3199,["Fizzle Darkclaw"]=3203,["Gazz'uz"]=3204,["Zalazane"]=3205,["Voodoo Troll"]=3206,["Hexed Troll"]=3207,["Margoz"]=3208,["Brave Windfeather"]=3209,["Brave Proudsnout"]=3210,["Brave Lightninghorn"]=3211,["Brave Ironhorn"]=3212,["Brave Running Wolf"]=3213,["Brave Greathoof"]=3214,["Brave Strongbash"]=3215,["Neeru Fireblade"]=3216,["Brave Dawneagle"]=3217,["Brave Swiftwind"]=3218,["Brave Leaping Deer"]=3219,["Brave Darksky"]=3220,["Brave Rockhorn"]=3221,["Brave Wildrunner"]=3222,["Brave Rainchaser"]=3223,["Brave Cloudmane"]=3224,["Corrupted Mottled Boar"]=3225,["Corrupted Scorpid"]=3226,["Corrupted Bloodtalon Scythemaw"]=3227,["Corrupted Surf Crawler"]=3228,["Nazgrel"]=3230,["Corrupted Dreadmaw Crocolisk"]=3231,["Bristleback Interloper"]=3232,["Lorekeeper Raintotem"]=3233,["Lost Barrens Kodo"]=3234,["Greater Barrens Kodo"]=3235,["Barrens Kodo"]=3236,["Wooly Kodo"]=3237,["Stormhide"]=3238,["Thunderhead"]=3239,["Stormsnout"]=3240,["Savannah Patriarch"]=3241,["Zhevra Runner"]=3242,["Savannah Highmane"]=3243,["Greater Plainstrider"]=3244,["Ornery Plainstrider"]=3245,["Fleeting Plainstrider"]=3246,["Thunderhawk Hatchling"]=3247,["Barrens Giraffe"]=3248,["Greater Thunderhawk"]=3249,["Silithid Creeper"]=3250,["Silithid Grub"]=3251,["Silithid Swarmer"]=3252,["Silithid Harvester"]=3253,["Sunscale Lashtail"]=3254,["Sunscale Screecher"]=3255,["Sunscale Scytheclaw"]=3256,["Ishamuhale"]=3257,["Bristleback Hunter"]=3258,["Bristleback Water Seeker"]=3260,["Bristleback Thornweaver"]=3261,["Bristleback Geomancer"]=3263,["Razormane Hunter"]=3265,["Razormane Defender"]=3266,["Razormane Plunderer"]=3267,["Razormane Thornweaver"]=3268,["Razormane Geomancer"]=3269,["Elder Mystic Razorsnout"]=3270,["Razormane Mystic"]=3271,["Kolkar Wrangler"]=3272,["Kolkar Stormer"]=3273,["Kolkar Pack Runner"]=3274,["Kolkar Marauder"]=3275,["Witchwing Harpy"]=3276,["Witchwing Roguefeather"]=3277,["Witchwing Slayer"]=3278,["Witchwing Ambusher"]=3279,["Witchwing Windcaller"]=3280,["Sarkoth"]=3281,["Venture Co. Mercenary"]=3282,["Venture Co. Enforcer"]=3283,["Venture Co. Drudger"]=3284,["Venture Co. Peon"]=3285,["Venture Co. Overseer"]=3286,["Hana'zua"]=3287,["Spirit of Minshina"]=3289,["Deek Fizzlebizz"]=3290,["Greishan Ironstove"]=3291,["Brewmaster Drohn"]=3292,["Rezlak"]=3293,["Ophek"]=3294,["Sludge Anomaly"]=3295,["Orgrimmar Grunt"]=3296,["Sen'jin Watcher"]=3297,["Gabrielle Chase"]=3298,["Adder"]=3300,["Morgan Ladimore"]=3301,["Master Vornal"]=3304,["Grisha"]=3305,["Keldas"]=3306,["Karus"]=3309,["Doras"]=3310,["Olvia"]=3312,["Trak'gen"]=3313,["Urtharo"]=3314,["Tor'phan"]=3315,["Handor"]=3316,["Ollanus"]=3317,["Koma"]=3318,["Sana"]=3319,["Soran"]=3320,["Morgum"]=3321,["Kaja"]=3322,["Horthus"]=3323,["Grol'dar"]=3324,["Mirket"]=3325,["Zevrost"]=3326,["Gest"]=3327,["Ormok"]=3328,["Kor'jus"]=3329,["Muragus"]=3330,["Kareth"]=3331,["Lumak"]=3332,["Shankys"]=3333,["Rekkul"]=3334,["Hagrus"]=3335,["Takrin Pathseeker"]=3336,["Kargal Battlescar"]=3337,["Sergra Darkthorn"]=3338,["Captain Thalo'thas Brightsun"]=3339,["Gann Stonespire"]=3341,["Shan'ti"]=3342,["Grelkor"]=3343,["Kardris Dreamseeker"]=3344,["Godan"]=3345,["Kithas"]=3346,["Yelmak"]=3347,["Kor'geld"]=3348,["Ukra'nor"]=3349,["Asoran"]=3350,["Magenius"]=3351,["Ormak Grimshot"]=3352,["Grezz Ragefist"]=3353,["Sorek"]=3354,["Saru Steelfury"]=3355,["Sumi"]=3356,["Makaru"]=3357,["Gorina"]=3358,["Kiro"]=3359,["Koru"]=3360,["Shoma"]=3361,["Ogunaro Wolfrunner"]=3362,["Magar"]=3363,["Borya"]=3364,["Karolek"]=3365,["Tamar"]=3366,["Felika"]=3367,["Borstan"]=3368,["Gotri"]=3369,["Urtrun Clanbringer"]=3370,["Tamaro"]=3371,["Sarlek"]=3372,["Arnok"]=3373,["Bael'dun Excavator"]=3374,["Bael'dun Foreman"]=3375,["Bael'dun Soldier"]=3376,["Bael'dun Rifleman"]=3377,["Bael'dun Officer"]=3378,["Burning Blade Bruiser"]=3379,["Burning Blade Acolyte"]=3380,["Southsea Brigand"]=3381,["Southsea Cannoneer"]=3382,["Southsea Cutthroat"]=3383,["Southsea Privateer"]=3384,["Theramore Marine"]=3385,["Theramore Preserver"]=3386,["Jorn Skyseer"]=3387,["Mahren Skyseer"]=3388,["Regthar Deathgate"]=3389,["Apothecary Helbrim"]=3390,["Gazlowe"]=3391,["Prospector Khazgorm"]=3392,["Captain Fairmount"]=3393,["Barak Kodobane"]=3394,["Verog the Dervish"]=3395,["Hezrul Bloodmark"]=3396,["Kolkar Bloodcharger"]=3397,["Gesharahan"]=3398,["Zamja"]=3399,["Xen'to"]=3400,["Shenthul"]=3401,["Zando'zan"]=3402,["Sian'tsu"]=3403,["Jandi"]=3404,["Zeal'aya"]=3405,["Xor'juul"]=3406,["Sian'dur"]=3407,["Zel'mak"]=3408,["Zendo'jian"]=3409,["Jin'sora"]=3410,["Denni'ka"]=3411,["Nogg"]=3412,["Sovik"]=3413,["General Twinbraid"]=3414,["Savannah Huntress"]=3415,["Savannah Matriarch"]=3416,["Living Flame"]=3417,["Kirge Sternhorn"]=3418,["Apothecary Zamah"]=3419,["Feegly the Exiled"]=3421,["Thunderhawk Cloudscraper"]=3424,["Savannah Prowler"]=3425,["Zhevra Charger"]=3426,["Korran"]=3428,["Thork"]=3429,["Mangletooth"]=3430,["Grenthar"]=3431,["Mankrik"]=3432,["Tatternack Steelforge"]=3433,["Nak"]=3434,["Lok Orcbane"]=3435,["Kuz"]=3436,["Kreenig Snarlsnout"]=3438,["Wizzlecrank's Shredder"]=3439,["Melor Stonehoof"]=3441,["Sputtervalve"]=3442,["Grub"]=3443,["Dig Rat"]=3444,["Supervisor Lugwizzle"]=3445,["Mebok Mizzyrix"]=3446,["Pawe Mistrunner"]=3447,["Tonga Runetotem"]=3448,["Darsok Swiftdagger"]=3449,["Defias Companion"]=3450,["Pilot Wizzlecrank"]=3451,["Serena Bloodfeather"]=3452,["Wharfmaster Dizzywig"]=3453,["Cannoneer Smythe"]=3454,["Cannoneer Whessan"]=3455,["Razormane Pathfinder"]=3456,["Razormane Stalker"]=3457,["Razormane Seer"]=3458,["Razormane Warfrenzy"]=3459,["Oasis Snapjaw"]=3461,["Elder Barrens Giraffe"]=3462,["Wandering Barrens Giraffe"]=3463,["Gazrog"]=3464,["Gilthares Firebough"]=3465,["Zhevra Courser"]=3466,["Baron Longshore"]=3467,["Ancient of Lore"]=3468,["Ancient of War"]=3469,["Rathorian"]=3470,["Tinkerer Sniggles"]=3471,["Washte Pawne"]=3472,["Owatanka"]=3473,["Lakota'mani"]=3474,["Echeyakee"]=3475,["Isha Awak"]=3476,["Hraq"]=3477,["Traugh"]=3478,["Nargal Deatheye"]=3479,["Moorane Hearthgrain"]=3480,["Barg"]=3481,["Tari'qa"]=3482,["Jahan Hawkwing"]=3483,["Kil'hala"]=3484,["Wrahk"]=3485,["Halija Whitestrider"]=3486,["Kalyimah Stormcloud"]=3487,["Uthrok"]=3488,["Zargh"]=3489,["Hula'mahi"]=3490,["Ironzar"]=3491,["Vexspindle"]=3492,["Grazlix"]=3493,["Tinkerwiz"]=3494,["Gagsprocket"]=3495,["Fuzruckle"]=3496,["Kilxx"]=3497,["Jazzik"]=3498,["Ranik"]=3499,["Tarhus"]=3500,["Horde Guard"]=3501,["Ratchet Bruiser"]=3502,["Silithid Protector"]=3503,["Gil"]=3504,["Pat"]=3505,["Andi"]=3507,["Mikey"]=3508,["Geoff"]=3509,["Twain"]=3510,["Steven"]=3511,["Jimmy"]=3512,["Miss Danna"]=3513,["Tenaron Stormgrip"]=3514,["Corithras Moonrage"]=3515,["Arch Druid Fandral Staghelm"]=3516,["Rellian Greenspyre"]=3517,["Thomas Miller"]=3518,["Sentinel Arynia Cloudsbreak"]=3519,["Ol' Emma"]=3520,["Ak'Zeloth"]=3521,["Constance Brisboise"]=3522,["Bowen Brisboise"]=3523,["Spirit Wolf"]=3524,["Healing Stream Totem"]=3527,["Pyrewood Armorer"]=3528,["Moonrage Armorer"]=3529,["Pyrewood Tailor"]=3530,["Moonrage Tailor"]=3531,["Pyrewood Leatherworker"]=3532,["Moonrage Leatherworker"]=3533,["Wallace the Blind"]=3534,["Blackmoss the Fetid"]=3535,["Kris Legace"]=3536,["Zixil"]=3537,["Overwatch Mark I"]=3538,["Ott"]=3539,["Hal McAllister"]=3540,["Sarah Raycroft"]=3541,["Jaysin Lanyda"]=3542,["Robert Aebischer"]=3543,["Jason Lemieux"]=3544,["Claude Erksine"]=3545,["Bernie Heisten"]=3546,["Hamlin Atkins"]=3547,["Selina Weston"]=3548,["Shelene Rhobart"]=3549,["Martine Tramblay"]=3550,["Patrice Dwyer"]=3551,["Alexandre Lefevre"]=3552,["Sebastian Meloche"]=3553,["Andrea Boynton"]=3554,["Johan Focht"]=3555,["Andrew Hilbert"]=3556,["Guillaume Sorouy"]=3557,["Healing Ward"]=3560,["Kyrai"]=3561,["Alaindia"]=3562,["Flatland Prowler"]=3566,["Tallonkai Swiftroot"]=3567,["Mist"]=3568,["Bogling"]=3569,["Cleansed Timberling"]=3570,["Teldrassil Sentinel"]=3571,["Zizzek"]=3572,["Mana Spring Totem"]=3573,["Ambermill Brewmaster"]=3577,["Ambermill Miner"]=3578,["Stoneclaw Totem"]=3579,["Crafticus Rabbitus"]=3580,["Sewer Beast"]=3581,["Aman"]=3582,["Barithras Moonshade"]=3583,["Therylune"]=3584,["Therysil"]=3585,["Miner Johnson"]=3586,["Lyrai"]=3587,["Khardan Proudblade"]=3588,["Keina"]=3589,["Janna Brightmoon"]=3590,["Freja Nightwing"]=3591,["Andiss"]=3592,["Alyissia"]=3593,["Frahun Shadewhisper"]=3594,["Shanda"]=3595,["Ayanna Everstride"]=3596,["Mardant Strongoak"]=3597,["Kyra Windblade"]=3598,["Jannok Breezesong"]=3599,["Laurna Morninglight"]=3600,["Dazalar"]=3601,["Kal"]=3602,["Cyndra Kindwhisper"]=3603,["Malorne Bladeleaf"]=3604,["Nadyia Maneweaver"]=3605,["Alanna Raveneye"]=3606,["Androl Oakhand"]=3607,["Aldia"]=3608,["Shalomon"]=3609,["Jeena Featherbow"]=3610,["Brannol Eaglemoon"]=3611,["Sinda"]=3612,["Meri Ironweave"]=3613,["Narret Shadowgrove"]=3614,["Devrak"]=3615,["Onu"]=3616,["Lordaeron Citizen"]=3617,["Ghost Saber"]=3619,["Harruk"]=3620,["Kurll"]=3621,["Grokor"]=3622,["Zudd"]=3624,["Rarck"]=3625,["Jenn Langston"]=3626,["Erich Lohan"]=3627,["Steven Lohan"]=3628,["David Langston"]=3629,["Deviate Coiler"]=3630,["Deviate Stinglash"]=3631,["Deviate Creeper"]=3632,["Deviate Slayer"]=3633,["Deviate Stalker"]=3634,["Deviate Ravager"]=3636,["Deviate Guardian"]=3637,["Devouring Ectoplasm"]=3638,["Sentinel Tysha Moonblade"]=3639,["Evolving Ectoplasm"]=3640,["Deviate Lurker"]=3641,["Cerellean Whiteclaw"]=3644,["Thundris Windweaver"]=3649,["Asterion"]=3650,["Trigore the Lasher"]=3652,["Kresh"]=3653,["Mutanus the Devourer"]=3654,["Mad Magglish"]=3655,["Sentinel Elissa Starbreeze"]=3657,["Lizzarik"]=3658,["Jorb"]=3659,["Athrikus Narassin"]=3660,["Balthule Shadowstrike"]=3661,["Delmanis the Hated"]=3662,["Delgren the Purifier"]=3663,["Ilkrud Magthrull"]=3664,["Crane Operator Bigglefuzz"]=3665,["Wizbang Cranktoggle"]=3666,["Anaya Dawnrunner"]=3667,["Lord Cobrahn"]=3669,["Lord Pythas"]=3670,["Lady Anacondra"]=3671,["Boahn"]=3672,["Lord Serpentis"]=3673,["Skum"]=3674,["Muyoh"]=3678,["Naralex"]=3679,["Serpentbloom Snake"]=3680,["Wisp"]=3681,["Vrang Wildgore"]=3682,["Kiknikle"]=3683,["Pizznukle"]=3684,["Harb Clawhoof"]=3685,["Reban Freerunner"]=3688,["Laer Stepperunner"]=3689,["Kar Stormsinger"]=3690,["Raene Wolfrunner"]=3691,["Volcor"]=3692,["Terenthis"]=3693,["Sentinel Selarin"]=3694,["Grimclaw"]=3695,["Ran Bloodtooth"]=3696,["Bolyun"]=3698,["Jadenvis Seawatcher"]=3700,["Tharnariun Treetender"]=3701,["Alanndarian Nightsong"]=3702,["Krulmoo Fullmoon"]=3703,["Mahani"]=3704,["Gahroot"]=3705,["Tai'jin"]=3706,["Ken'jai"]=3707,["Gruna"]=3708,["Wrathtail Myrmidon"]=3711,["Wrathtail Razortail"]=3712,["Wrathtail Wave Rider"]=3713,["Wrathtail Sea Witch"]=3715,["Wrathtail Sorceress"]=3717,["Mystlash Hydra"]=3721,["Mystlash Flayer"]=3722,["Dark Strand Cultist"]=3725,["Dark Strand Enforcer"]=3727,["Dark Strand Adept"]=3728,["Dark Strand Excavator"]=3730,["Forsaken Seeker"]=3732,["Forsaken Herbalist"]=3733,["Orc Overseer"]=3734,["Apothecary Falthis"]=3735,["Darkslayer Mordenthal"]=3736,["Saltspittle Puddlejumper"]=3737,["Saltspittle Warrior"]=3739,["Saltspittle Muckdweller"]=3740,["Saltspittle Oracle"]=3742,["Foulweald Warrior"]=3743,["Foulweald Pathfinder"]=3745,["Foulweald Den Watcher"]=3746,["Foulweald Shaman"]=3748,["Foulweald Ursa"]=3749,["Foulweald Totemic"]=3750,["Xavian Rogue"]=3752,["Xavian Betrayer"]=3754,["Xavian Felsworn"]=3755,["Xavian Hellcaller"]=3757,["Felmusk Satyr"]=3758,["Felmusk Rogue"]=3759,["Felmusk Felsworn"]=3762,["Felmusk Shadowstalker"]=3763,["Bleakheart Satyr"]=3765,["Bleakheart Trickster"]=3767,["Bleakheart Shadowstalker"]=3770,["Bleakheart Hellcaller"]=3771,["Lesser Felguard"]=3772,["Akkrilus"]=3773,["Felslayer"]=3774,["Syurana"]=3779,["Singed Shambler"]=3780,["Shadethicket Wood Shaper"]=3781,["Shadethicket Stone Mover"]=3782,["Shadethicket Raincaller"]=3783,["Shadethicket Bark Ripper"]=3784,["Terrowulf Fleshripper"]=3789,["Terrowulf Shadow Weaver"]=3791,["Terrowulf Packlord"]=3792,["Druid of the Talon"]=3794,["Druid of the Claw"]=3795,["Cenarion Protector"]=3797,["Severed Druid"]=3799,["Severed Sleeper"]=3801,["Severed Dreamer"]=3802,["Severed Keeper"]=3803,["Forsaken Intruder"]=3804,["Forsaken Infiltrator"]=3806,["Forsaken Assassin"]=3807,["Forsaken Dark Stalker"]=3808,["Ashenvale Bear"]=3809,["Elder Ashenvale Bear"]=3810,["Giant Ashenvale Bear"]=3811,["Clattering Crawler"]=3812,["Spined Crawler"]=3814,["Blink Dragon"]=3815,["Wild Buck"]=3816,["Shadowhorn Stag"]=3817,["Elder Shadowhorn Stag"]=3818,["Wildthorn Stalker"]=3819,["Wildthorn Venomspitter"]=3820,["Wildthorn Lurker"]=3821,["Ghostpaw Runner"]=3823,["Ghostpaw Howler"]=3824,["Ghostpaw Alpha"]=3825,["[UNUSED] Ancient Guardian"]=3831,["Cenarion Vindicator"]=3833,["Crazed Ancient"]=3834,["Biletoad"]=3835,["Mountaineer Pebblebitty"]=3836,["Vesprystus"]=3838,["Druid of the Fang"]=3840,["Teldira Moonfeather"]=3841,["Brombar Higgleby"]=3842,["Anaya"]=3843,["Healing Ward IV"]=3844,["Shindrell Swiftfire"]=3845,["Talen"]=3846,["Orendil Broadleaf"]=3847,["Kayneth Stillwind"]=3848,["Deathstalker Adamant"]=3849,["Sorcerer Ashcrombe"]=3850,["Shadowfang Whitescalp"]=3851,["Shadowfang Moonwalker"]=3853,["Shadowfang Wolfguard"]=3854,["Shadowfang Darksoul"]=3855,["Shadowfang Glutton"]=3857,["Shadowfang Ragetooth"]=3859,["Bleak Worg"]=3861,["Slavering Worg"]=3862,["Lupine Horror"]=3863,["Fel Steed"]=3864,["Shadow Charger"]=3865,["Vile Bat"]=3866,["Blood Seeker"]=3868,["Lesser Gargoyle"]=3869,["Stone Sleeper"]=3870,["Deathsworn Captain"]=3872,["Tormented Officer"]=3873,["Haunted Servitor"]=3875,["Wailing Guardsman"]=3877,["Dark Strand Assassin"]=3879,["Sentinel Melyria Frostshadow"]=3880,["Grimtak"]=3881,["Zlagk"]=3882,["Moodan Sungrain"]=3883,["Jhawna Oatwind"]=3884,["Sentinel Velene Starstrike"]=3885,["Razorclaw the Butcher"]=3886,["Baron Silverlaine"]=3887,["Korra"]=3888,["Brakgul Deathbringer"]=3890,["Teronis' Corpse"]=3891,["Relara Whitemoon"]=3892,["Forsaken Scout"]=3893,["Pelturas Whitemoon"]=3894,["Krolg"]=3897,["Aligar the Tormentor"]=3898,["Balizar the Umbrage"]=3899,["Caedakar the Vicious"]=3900,["Illiyana"]=3901,["Searing Totem II"]=3902,["Searing Totem III"]=3903,["Searing Totem IV"]=3904,["Healing Stream Totem II"]=3906,["Healing Stream Totem III"]=3907,["Healing Stream Totem IV"]=3908,["Healing Stream Totem V"]=3909,["Stoneclaw Totem II"]=3911,["Stoneclaw Totem III"]=3912,["Stoneclaw Totem IV"]=3913,["Rethilgore"]=3914,["Dagri"]=3915,["Shael'dryn"]=3916,["Befouled Water Elemental"]=3917,["Withered Ancient"]=3919,["Anilia"]=3920,["Thistlefur Ursa"]=3921,["Thistlefur Totemic"]=3922,["Thistlefur Den Watcher"]=3923,["Thistlefur Shaman"]=3924,["Thistlefur Avenger"]=3925,["Thistlefur Pathfinder"]=3926,["Wolf Master Nandos"]=3927,["Rotting Slime"]=3928,["Shadethicket Oracle"]=3931,["Bloodtooth Guard"]=3932,["Hai'zan"]=3933,["Innkeeper Boorand Plainswind"]=3934,["Toddrick"]=3935,["Shandris Feathermoon"]=3936,["Kira Songshine"]=3937,["Razormane Wolf"]=3939,["Taneel Darkwood"]=3940,["Uthil Mooncall"]=3941,["Mavoris Cloudsbreak"]=3942,["Ruuzel"]=3943,["Wrathtail Priestess"]=3944,["Caravaneer Ruzzgot"]=3945,["Velinde Starsong"]=3946,["Goblin Shipbuilder"]=3947,["Honni Goldenoat"]=3948,["Minor Water Guardian"]=3950,["Bhaldaran Ravenshade"]=3951,["Aeolynn"]=3952,["Tandaan Lightmane"]=3953,["Dalria"]=3954,["Shandrina"]=3955,["Harklan Moongrove"]=3956,["Jainay Featherbreeze"]=3957,["Lardan"]=3958,["Nantar"]=3959,["Ulthaan"]=3960,["Maliynn"]=3961,["Haljan Oakheart"]=3962,["Danlaar Nightstride"]=3963,["Kylanna"]=3964,["Cylania Rootstalker"]=3965,["Aayndia Floralwind"]=3967,["Sentry Totem"]=3968,["Fahran Silentblade"]=3969,["Llana"]=3970,["Houndmaster Loksey"]=3974,["Herod"]=3975,["Scarlet Commander Mograine"]=3976,["High Inquisitor Whitemane"]=3977,["Sage Truthseeker"]=3978,["Librarian Mae Paledust"]=3979,["Raleigh the Devout"]=3980,["Vorrel Sengutz"]=3981,["Monika Sengutz"]=3982,["Interrogator Vishas"]=3983,["Nancy Vishas"]=3984,["Grandpa Vishas"]=3985,["Sarilus Foulborne"]=3986,["Dal Bloodclaw"]=3987,["Venture Co. Operator"]=3988,["Venture Co. Logger"]=3989,["Venture Co. Deforester"]=3991,["Venture Co. Holdout"]=3992,["Venture Co. Machine Smith"]=3993,["Keeper Albagorm"]=3994,["Witch Doctor Jin'Zil"]=3995,["Faldreas Goeth'Shael"]=3996,["Windshear Vermin"]=3998,["Windshear Digger"]=3999,["Windshear Tunnel Rat"]=4001,["Windshear Stonecutter"]=4002,["Windshear Geomancer"]=4003,["Windshear Overlord"]=4004,["Deepmoss Creeper"]=4005,["Deepmoss Webspinner"]=4006,["Deepmoss Venomspitter"]=4007,["Cliff Stormer"]=4008,["Raging Cliff Stormer"]=4009,["Young Pridewing"]=4011,["Pridewing Wyvern"]=4012,["Pridewing Skyhunter"]=4013,["Pridewing Consort"]=4014,["Pridewing Patriarch"]=4015,["Fey Dragon"]=4016,["Wily Fey Dragon"]=4017,["Antlered Courser"]=4018,["Great Courser"]=4019,["Sap Beast"]=4020,["Corrupted Sap Beast"]=4021,["Bloodfury Harpy"]=4022,["Bloodfury Roguefeather"]=4023,["Bloodfury Slayer"]=4024,["Bloodfury Ambusher"]=4025,["Bloodfury Windcaller"]=4026,["Bloodfury Storm Witch"]=4027,["Charred Ancient"]=4028,["Blackened Ancient"]=4029,["Vengeful Ancient"]=4030,["Fledgling Chimaera"]=4031,["Young Chimaera"]=4032,["Enraged Stone Spirit"]=4034,["Furious Stone Spirit"]=4035,["Rogue Flame Spirit"]=4036,["Burning Ravager"]=4037,["Burning Destroyer"]=4038,["Cave Stalker"]=4040,["Scorched Basilisk"]=4041,["Singed Basilisk"]=4042,["Galthuk"]=4043,["Blackened Basilisk"]=4044,["Magatha Grimtotem"]=4046,["Zor Lonetree"]=4047,["Falfindel Waywarder"]=4048,["Seereth Stonebreak"]=4049,["Cenarion Caretaker"]=4050,["Cenarion Botanist"]=4051,["Cenarion Druid"]=4052,["Daughter of Cenarius"]=4053,["Laughing Sister"]=4054,["Mirkfallon Keeper"]=4056,["Son of Cenarius"]=4057,["Forest Spirit"]=4059,["Mirkfallon Dryad"]=4061,["Dark Iron Bombardier"]=4062,["Feeboz"]=4063,["Blackrock Scout"]=4064,["Blackrock Sentry"]=4065,["Nal'taszar"]=4066,["Twilight Runner"]=4067,["Serpent Messenger"]=4068,["Venture Co. Builder"]=4070,["Prisoner of Jin'Zil"]=4072,["XT:4"]=4073,["XT:9"]=4074,["Rat"]=4075,["Roach"]=4076,["Gaxim Rustfizzle"]=4077,["Collin Mauren"]=4078,["Sentinel Thenysil"]=4079,["Kaela Shadowspear"]=4080,["Lomac Gearstrip"]=4081,["Grawnal"]=4082,["Jeeda"]=4083,["Chylina"]=4084,["Nizzik"]=4085,["Veenix"]=4086,["Arias'ta Bladesinger"]=4087,["Elanaria"]=4088,["Sildanair"]=4089,["Astarii Starseeker"]=4090,["Jandria"]=4091,["Lariia"]=4092,["[Deprecated for 4.x]Galak Wrangler"]=4093,["[Deprecated for 4.x]Galak Scout"]=4094,["Galak Mauler"]=4095,["[Deprecated for 4.x]Galak Windchaser"]=4096,["Galak Stormer"]=4097,["Galak Marauder"]=4099,["Screeching Harpy"]=4100,["Screeching Roguefeather"]=4101,["Screeching Windcaller"]=4104,["Highperch Wyvern"]=4107,["Highperch Consort"]=4109,["Highperch Patriarch"]=4110,["Gravelsnout Kobold"]=4111,["Gravelsnout Vermin"]=4112,["Gravelsnout Digger"]=4113,["Gravelsnout Forager"]=4114,["Gravelsnout Surveyor"]=4116,["Cloud Serpent"]=4117,["Venomous Cloud Serpent"]=4118,["Elder Cloud Serpent"]=4119,["Thundering Boulderkin"]=4120,["Needles Cougar"]=4124,["Crag Stalker"]=4126,["Hecklefang Hyena"]=4127,["Hecklefang Stalker"]=4128,["Hecklefang Snarler"]=4129,["[Deprecated for 4.x]Silithid Searcher"]=4130,["[Deprecated for 4.x]Silithid Invader"]=4131,["Krkk'kx"]=4132,["[Deprecated for 4.x]Silithid Hive Drone"]=4133,["Jeen'ra Nightrunner"]=4138,["Scorpid Terror"]=4139,["Scorpid Reaver"]=4140,["[Deprecated for 4.x]Sparkleshell Tortoise"]=4142,["Sparkleshell Snapper"]=4143,["Sparkleshell Borer"]=4144,["Jocaste"]=4146,["[Deprecated for 4.x]Saltstone Basilisk"]=4147,["[Deprecated for 4.x]Saltstone Gazer"]=4150,["[Deprecated for 4.x]Saltstone Crystalhide"]=4151,["Salt Flats Scavenger"]=4154,["Idriana"]=4155,["Astaia"]=4156,["Salt Flats Vulture"]=4158,["Me'lynn"]=4159,["Ainethil"]=4160,["Lysheana"]=4161,["Syurna"]=4163,["Cylania"]=4164,["Elissa Dumas"]=4165,["Gazelle"]=4166,["Dendrythis"]=4167,["Elynna"]=4168,["Jaeana"]=4169,["Ellandrieth"]=4170,["Merelyssa"]=4171,["Anadyia"]=4172,["Landria"]=4173,["Vinasia"]=4175,["Melea"]=4177,["Ealyshia Dewwhisper"]=4180,["Fyrenna"]=4181,["Dalmond"]=4182,["Naram Longclaw"]=4183,["Geenia Sunshadow"]=4184,["Shaldyn"]=4185,["Mavralyn"]=4186,["Harlon Thornguard"]=4187,["Illyanie"]=4188,["Valdaron"]=4189,["Kyndri"]=4190,["Allyndia"]=4191,["Taldan"]=4192,["Grondal Moonbreeze"]=4193,["Ullanna"]=4194,["Tiyani"]=4195,["Silithid Swarm"]=4196,["Ken'zigla"]=4197,["Braelyn Firehand"]=4198,["Laird"]=4200,["Ziz Fizziks"]=4201,["Gerenzo Wrenchwhistle"]=4202,["Ariyell Skyshadow"]=4203,["Firodren Mooncaller"]=4204,["Dorion"]=4205,["Lairn"]=4208,["Garryeth"]=4209,["Alegorn"]=4210,["Dannelor"]=4211,["Telonis"]=4212,["Taladan"]=4213,["Erion Shadewhisper"]=4214,["Anishar"]=4215,["Chardryn"]=4216,["Mathrengyl Bearwalker"]=4217,["Denatharion"]=4218,["Fylerian Nightwing"]=4219,["Cyroen"]=4220,["Talaelar"]=4221,["Voloren"]=4222,["Fyldan"]=4223,["Saenorion"]=4225,["Ulthir"]=4226,["Vaean"]=4228,["Mythrin'dir"]=4229,["Yldan"]=4230,["Kieran"]=4231,["Glorandiir"]=4232,["Mythidan"]=4233,["Andrus"]=4234,["Turian"]=4235,["Cyridan"]=4236,["Caynrus"]=4240,["Mydrannul"]=4241,["Frostsaber Companion"]=4242,["Nightshade"]=4243,["Shadow"]=4244,["Pesterhide Hyena"]=4248,["Pesterhide Snarler"]=4249,["Galak Packhound"]=4250,["Goblin Racer"]=4251,["Gnome Racer"]=4252,["Geofram Bouldertoe"]=4254,["Brogus Thunderbrew"]=4255,["Golnir Bouldertoe"]=4256,["Lana Thunderbrew"]=4257,["Bengus Deepforge"]=4258,["Thurgrum Deepforge"]=4259,["Venture Co. Shredder"]=4260,["Darnassus Sentinel"]=4262,["Deepmoss Hatchling"]=4263,["Deepmoss Matriarch"]=4264,["Nyoma"]=4265,["Danlyia"]=4266,["Daelyshia"]=4267,["Chestnut Mare"]=4269,["Riding Wolf (Red)"]=4270,["Dire Wolf"]=4271,["Brown Wolf"]=4272,["Keeper Ordanus"]=4273,["Fenrus the Devourer"]=4274,["Archmage Arugal"]=4275,["Piznik"]=4276,["Eye of Kilrogg"]=4277,["Commander Springvale"]=4278,["Odo the Blindwatcher"]=4279,["Scarlet Preserver"]=4280,["Scarlet Scout"]=4281,["Scarlet Magician"]=4282,["Scarlet Sentry"]=4283,["Scarlet Augur"]=4284,["Scarlet Disciple"]=4285,["Scarlet Soldier"]=4286,["Scarlet Gallant"]=4287,["Scarlet Beastmaster"]=4288,["Scarlet Evoker"]=4289,["Scarlet Guardsman"]=4290,["Scarlet Diviner"]=4291,["Scarlet Protector"]=4292,["Scarlet Scryer"]=4293,["Scarlet Sorcerer"]=4294,["Scarlet Myrmidon"]=4295,["Scarlet Adept"]=4296,["Scarlet Conjuror"]=4297,["Scarlet Defender"]=4298,["Scarlet Chaplain"]=4299,["Scarlet Wizard"]=4300,["Scarlet Centurion"]=4301,["Scarlet Champion"]=4302,["Scarlet Abbot"]=4303,["Scarlet Tracking Hound"]=4304,["Kriggon Talsone"]=4305,["Scarlet Torturer"]=4306,["Heldan Galesong"]=4307,["Unfettered Spirit"]=4308,["Gorm Grimtotem"]=4309,["Cor Grimtotem"]=4310,["Holgar Stormaxe"]=4311,["Tharm"]=4312,["Gorkas"]=4314,["Kolkar Packhound"]=4316,["Nyse"]=4317,["Thyssiana"]=4319,["Caelyb"]=4320,["Baldruc"]=4321,["Searing Hatchling"]=4323,["Searing Whelp"]=4324,["Firemane Scalebane"]=4328,["Firemane Scout"]=4329,["Firemane Ash Tail"]=4331,["Firemane Flamecaller"]=4334,["Brimgore"]=4339,["Drywallow Crocolisk"]=4341,["Drywallow Vicejaw"]=4342,["Drywallow Snapper"]=4343,["Mottled Drywallow Crocolisk"]=4344,["Drywallow Daggermaw"]=4345,["Noxious Flayer"]=4346,["Noxious Reaver"]=4347,["Noxious Shredder"]=4348,["Bloodfen Raptor"]=4351,["Bloodfen Screecher"]=4352,["Bloodfen Scytheclaw"]=4355,["Bloodfen Razormaw"]=4356,["Bloodfen Lashtail"]=4357,["Mirefin Puddlejumper"]=4358,["Mirefin Murloc"]=4359,["Mirefin Warrior"]=4360,["Mirefin Muckdweller"]=4361,["Mirefin Coastrunner"]=4362,["Mirefin Oracle"]=4363,["Strashaz Warrior"]=4364,["Strashaz Serpent Guard"]=4366,["Strashaz Myrmidon"]=4368,["Strashaz Sorceress"]=4370,["Strashaz Siren"]=4371,["Strashaz Hydra"]=4374,["Darkmist Spider"]=4376,["Darkmist Hatchling"]=4377,["Darkmist Recluse"]=4378,["Darkmist Silkspinner"]=4379,["Darkmist Widow"]=4380,["Withervine Creeper"]=4382,["Withervine Rager"]=4385,["Withervine Bark Ripper"]=4386,["Withervine Mire Beast"]=4387,["Young Murk Thresher"]=4388,["Murk Thresher"]=4389,["Elder Murk Thresher"]=4390,["Swamp Ooze"]=4391,["Corrosive Swamp Ooze"]=4392,["Acidic Swamp Ooze"]=4393,["Bubbling Swamp Ooze"]=4394,["Mudrock Tortoise"]=4396,["Mudrock Spikeshell"]=4397,["Mudrock Burrower"]=4398,["Mudrock Borer"]=4399,["Mudrock Snapjaw"]=4400,["Muckshell Clacker"]=4401,["Muckshell Snapclaw"]=4402,["Muckshell Pincer"]=4403,["Muckshell Scrabbler"]=4404,["Muckshell Razorclaw"]=4405,["Teloren"]=4407,["Gatekeeper Kordurus"]=4409,["Darkfang Lurker"]=4411,["Darkfang Creeper"]=4412,["Darkfang Spider"]=4413,["Darkfang Venomspitter"]=4414,["Giant Darkfang Spider"]=4415,["Defias Strip Miner"]=4416,["Defias Taskmaster"]=4417,["Defias Wizard"]=4418,["Race Master Kronkrider"]=4419,["Overlord Ramtusk"]=4420,["Charlga Razorflank"]=4421,["Agathelos the Raging"]=4422,["Darnassian Protector"]=4423,["Aggem Thorncurse"]=4424,["Blind Hunter"]=4425,["Ward Guardian"]=4427,["Death Speaker Jargba"]=4428,["Goblin Pit Crewman"]=4429,["Gnome Pit Crewman"]=4430,["Razorfen Warrior"]=4435,["Razorfen Quilguard"]=4436,["Razorfen Warden"]=4437,["Razorfen Spearhide"]=4438,["Razorfen Totemic"]=4440,["Razorfen Defender"]=4442,["Deathstalker Vincent"]=4444,["Crazzle Sprysprocket"]=4449,["Rugfizzle"]=4450,["Auld Stonespire"]=4451,["Kravel Koalbeard"]=4452,["Wizzle Brassbolts"]=4453,["Fizzle Brassbolts"]=4454,["Red Jack Flint"]=4455,["Fiora Longears"]=4456,["Murkgill Forager"]=4457,["Murkgill Hunter"]=4458,["Murkgill Oracle"]=4459,["Murkgill Coldbringer"]=4460,["Murkgill Warrior"]=4461,["Blackrock Hunter"]=4462,["Blackrock Summoner"]=4463,["Blackrock Gladiator"]=4464,["Vilebranch Warrior"]=4465,["Vilebranch Scalper"]=4466,["Vilebranch Soothsayer"]=4467,["Jade Sludge"]=4468,["Emerald Ooze"]=4469,["Haunting Vision"]=4472,["Rotting Cadaver"]=4474,["Blighted Zombie"]=4475,["Fardel Dabyrie"]=4479,["Kenata Dabyrie"]=4480,["Marcel Dabyrie"]=4481,["Moktar Krin"]=4483,["Feero Ironhand"]=4484,["Belgrom Rockmaul"]=4485,["Genavie Callow"]=4486,["Parqual Fintallas"]=4488,["Braug Dimspirit"]=4489,["Grenka Bloodscreech"]=4490,["Scarlet Avenger"]=4493,["Scarlet Spellbinder"]=4494,["Gnome Pit Boss"]=4495,["Goblin Pit Boss"]=4496,["Captain Quirk"]=4497,["Maurin Bonesplitter"]=4498,["Rok'Alim the Pounder"]=4499,["Overlord Mok'Morokk"]=4500,["Draz'Zilb"]=4501,["Tharg"]=4502,["Mudcrush Durtfeet"]=4503,["Frostmaw"]=4504,["Bloodsail Deckhand"]=4505,["Bloodsail Swabby"]=4506,["Daisy"]=4507,["Willix the Importer"]=4508,["Sargath"]=4509,["Heralath Fallowbrook"]=4510,["Agam'ar"]=4511,["Rotting Agam'ar"]=4512,["Raging Agam'ar"]=4514,["Death's Head Acolyte"]=4515,["Death's Head Adept"]=4516,["Death's Head Priest"]=4517,["Death's Head Sage"]=4518,["Death's Head Seer"]=4519,["Razorfen Geomancer"]=4520,["Treshala Fallowbrook"]=4521,["Razorfen Dustweaver"]=4522,["Razorfen Groundshaker"]=4523,["Razorfen Earthbreaker"]=4525,["Wind Howler"]=4526,["Stone Rumbler"]=4528,["Razorfen Handler"]=4530,["Razorfen Beast Trainer"]=4531,["Razorfen Beastmaster"]=4532,["Tamed Hyena"]=4534,["Tamed Battleboar"]=4535,["Kraul Bat"]=4538,["Greater Kraul Bat"]=4539,["Scarlet Monk"]=4540,["Blood of Agamaggan"]=4541,["High Inquisitor Fairbanks"]=4542,["Bloodmage Thalnos"]=4543,["Krueg Skullsplitter"]=4544,["Nag'zehn"]=4545,["Bor'zehn"]=4546,["Tarkreu Shadowstalker"]=4547,["Steelsnap"]=4548,["William Montague"]=4549,["Ophelia Montague"]=4550,["Michael Garrett"]=4551,["Eunice Burch"]=4552,["Ronald Burch"]=4553,["Tawny Grisette"]=4554,["Eleanor Rusk"]=4555,["Gordon Wendham"]=4556,["Louis Warren"]=4557,["Lauren Newcomb"]=4558,["Timothy Weldon"]=4559,["Walter Ellingson"]=4560,["Daniel Bartlett"]=4561,["Thomas Mordan"]=4562,["Kaal Soulreaper"]=4563,["Luther Pickman"]=4564,["Richard Kerwin"]=4565,["Kaelystia Hatebringer"]=4566,["Pierce Shackleton"]=4567,["Anastasia Hartwell"]=4568,["Charles Seaton"]=4569,["Sydney Upton"]=4570,["Morley Bates"]=4571,["Silas Zimmer"]=4572,["Armand Cromwell"]=4573,["Lizbeth Cromwell"]=4574,["Hannah Akeley"]=4575,["Josef Gregorian"]=4576,["Millie Gregorian"]=4577,["Josephine Lister"]=4578,["Lucille Castleton"]=4580,["Salazar Bloch"]=4581,["Carolyn Ward"]=4582,["Miles Dexter"]=4583,["Gregory Charles"]=4584,["Ezekiel Graves"]=4585,["Graham Van Talen"]=4586,["Elizabeth Van Talen"]=4587,["Arthur Moore"]=4588,["Joseph Moore"]=4589,["Jonathan Chambers"]=4590,["Mary Edras"]=4591,["Nathaniel Steenwick"]=4592,["Christoph Walker"]=4593,["Angela Curthas"]=4594,["Baltus Fowler"]=4595,["James Van Brunt"]=4596,["Samuel Van Brunt"]=4597,["Brom Killian"]=4598,["Sarah Killian"]=4599,["Geoffrey Hartwell"]=4600,["Francis Eliot"]=4601,["Benijah Fenner"]=4602,["Nicholas Atwood"]=4603,["Abigail Sawyer"]=4604,["Basil Frye"]=4605,["Aelthalyste"]=4606,["Father Lankester"]=4607,["Father Lazarus"]=4608,["Doctor Marsh"]=4609,["Algernon"]=4610,["Doctor Herbert Halsey"]=4611,["Boyle"]=4612,["Christopher Drakul"]=4613,["Martha Alliestar"]=4614,["Katrina Alliestar"]=4615,["Lavinia Crowe"]=4616,["Thaddeus Webb"]=4617,["Martek the Exiled"]=4618,["Geltharis"]=4619,["Fobeed"]=4620,["Quilguard Champion"]=4623,["Booty Bay Bruiser"]=4624,["Death's Head Ward Keeper"]=4625,["Arugal's Voidwalker"]=4627,["Trackmaster Zherin"]=4629,["Pozzik"]=4630,["Wharfmaster Lozgil"]=4631,["Kolkar Centaur"]=4632,["Kolkar Scout"]=4633,["Kolkar Mauler"]=4634,["Kolkar Windchaser"]=4635,["Kolkar Battle Lord"]=4636,["Kolkar Destroyer"]=4637,["Magram Scout"]=4638,["Magram Outrunner"]=4639,["Magram Wrangler"]=4640,["Magram Windchaser"]=4641,["Magram Stormer"]=4642,["Magram Pack Runner"]=4643,["Magram Marauder"]=4644,["Magram Mauler"]=4645,["Gelkis Outrunner"]=4646,["Gelkis Scout"]=4647,["Gelkis Stamper"]=4648,["Gelkis Windchaser"]=4649,["Gelkis Earthcaller"]=4651,["Gelkis Mauler"]=4652,["Gelkis Marauder"]=4653,["Maraudine Scout"]=4654,["Maraudine Wrangler"]=4655,["Maraudine Mauler"]=4656,["Maraudine Windchaser"]=4657,["Maraudine Stormer"]=4658,["Maraudine Marauder"]=4659,["Maraudine Bonepaw"]=4660,["Gelkis Rumbler"]=4661,["Magram Bonepaw"]=4662,["Burning Blade Augur"]=4663,["Burning Blade Reaver"]=4664,["Burning Blade Adept"]=4665,["Burning Blade Felsworn"]=4666,["Burning Blade Shadowmage"]=4667,["Burning Blade Summoner"]=4668,["Hatefury Rogue"]=4670,["Hatefury Trickster"]=4671,["Hatefury Felsworn"]=4672,["Hatefury Betrayer"]=4673,["Hatefury Shadowstalker"]=4674,["Hatefury Hellcaller"]=4675,["Lesser Infernal"]=4676,["Doomwarder"]=4677,["Mana Eater"]=4678,["Nether Maiden"]=4679,["Doomwarder Captain"]=4680,["Mage Hunter"]=4681,["Nether Sister"]=4682,["Nether Sorceress"]=4684,["Ley Hunter"]=4685,["Deepstrider Giant"]=4686,["Deepstrider Searcher"]=4687,["Bonepaw Hyena"]=4688,["Starving Bonepaw"]=4689,["Rabid Bonepaw"]=4690,["Dread Swoop"]=4692,["Dread Flyer"]=4693,["Dread Ripper"]=4694,["Carrion Horror"]=4695,["Scorpashi Snapper"]=4696,["Scorpashi Lasher"]=4697,["Scorpashi Venomlash"]=4699,["Aged Kodo"]=4700,["Dying Kodo"]=4701,["Ancient Kodo"]=4702,["Burning Blade Invoker"]=4705,["Razzeric"]=4706,["Zuzubee"]=4707,["Shreev"]=4708,["Zamek"]=4709,["Gray Ram"]=4710,["Slitherblade Naga"]=4711,["Slitherblade Sorceress"]=4712,["Slitherblade Warrior"]=4713,["Slitherblade Myrmidon"]=4714,["Slitherblade Razortail"]=4715,["Slitherblade Tidehunter"]=4716,["Slitherblade Oracle"]=4718,["Slitherblade Sea Witch"]=4719,["Rizzle Brassbolts"]=4720,["Zangen Stonehoof"]=4721,["Rau Cliffrunner"]=4722,["Foreman Cozzle"]=4723,["Raging Thunder Lizard"]=4726,["Elder Thunder Lizard"]=4727,["Gritjaw Basilisk"]=4728,["Hulking Gritjaw Basilisk"]=4729,["Lelanai"]=4730,["Zachariah Post"]=4731,["Randal Hunter"]=4732,["Kildar"]=4752,["Jartsam"]=4753,["Ultham Ironhorn"]=4772,["Velma Warnam"]=4773,["Felicia Doan"]=4775,["White Ram"]=4777,["Riding Ram (Blue)"]=4778,["Brown Ram"]=4779,["Riding Ram (Black)"]=4780,["Snufflenose Gopher"]=4781,["Truk Wildbeard"]=4782,["Dawnwatcher Selgorm"]=4783,["Argent Guard Manados"]=4784,["Illusionary Nightmare"]=4785,["Dawnwatcher Shaedlass"]=4786,["Scout Thaelrid"]=4787,["Fallenroot Satyr"]=4788,["Fallenroot Rogue"]=4789,["Nazeer Bloodpike"]=4791,["Morgan Stern"]=4794,["Force of Nature"]=4795,["Fallenroot Shadowstalker"]=4798,["Fallenroot Hellcaller"]=4799,["Blackfathom Tide Priestess"]=4802,["Blackfathom Oracle"]=4803,["Blackfathom Sea Witch"]=4805,["Blackfathom Myrmidon"]=4807,["Twilight Acolyte"]=4809,["Twilight Reaver"]=4810,["Twilight Aquamancer"]=4811,["Twilight Loreseeker"]=4812,["Twilight Shadowmage"]=4813,["Twilight Elementalist"]=4814,["Murkshallow Snapclaw"]=4815,["Blindlight Murloc"]=4818,["Blindlight Muckdweller"]=4819,["Blindlight Oracle"]=4820,["Skittering Crustacean"]=4821,["Snapping Crustacean"]=4822,["Barbed Crustacean"]=4823,["Aku'mai Fisher"]=4824,["Aku'mai Snapjaw"]=4825,["Deep Pool Threshfin"]=4827,["Aku'mai"]=4829,["Old Serra'kis"]=4830,["Lady Sarevess"]=4831,["Twilight Lord Kelris"]=4832,["Theramore Infiltrator"]=4834,["Deadmire"]=4841,["Earthcaller Halmgar"]=4842,["Shadowforge Surveyor"]=4844,["Shadowforge Ruffian"]=4845,["Shadowforge Digger"]=4846,["Shadowforge Relic Hunter"]=4847,["Shadowforge Darkcaster"]=4848,["Shadowforge Archaeologist"]=4849,["Stonevault Cave Lurker"]=4850,["Stonevault Rockchewer"]=4851,["Stonevault Oracle"]=4852,["Stonevault Geomancer"]=4853,["Grimlok"]=4854,["Stonevault Brawler"]=4855,["Stonevault Cave Hunter"]=4856,["Stone Keeper"]=4857,["Stone Steward"]=4860,["Shrike Bat"]=4861,["Jadespine Basilisk"]=4863,["Obsidian Golem"]=4872,["Turhaw"]=4875,["Jawn Highmesa"]=4876,["Jandia"]=4877,["Montarr"]=4878,["Ogg'marr"]=4879,["Krak"]=4883,["Zulrg"]=4884,["Gregor MacVince"]=4885,["Hans Weston"]=4886,["Ghamoo-Ra"]=4887,["Marie Holdston"]=4888,["Torq Ironblast"]=4889,["Piter Verance"]=4890,["Dwane Wertle"]=4891,["Jensen Farran"]=4892,["Bartender Lillian"]=4893,["Craig Nollward"]=4894,["Smiling Jim"]=4895,["Charity Mipsy"]=4896,["Helenia Olden"]=4897,["Brant Jasperbloom"]=4898,["Uma Bartulm"]=4899,["Alchemist Narett"]=4900,["Sara Pierce"]=4901,["Mikal Pierce"]=4902,["Guard Byron"]=4921,["Guard Edward"]=4922,["Guard Jarad"]=4923,["Combat Master Criton"]=4924,["Krog"]=4926,["Caz Twosprocket"]=4941,["Mosarn"]=4943,["Captain Garran Vimes"]=4944,["Goblin Drag Car"]=4945,["Gnome Drag Car"]=4946,["Theramore Lieutenant"]=4947,["Adjutant Tesoran"]=4948,["Thrall"]=4949,["Spot"]=4950,["Theramore Practicing Guard"]=4951,["Theramore Combat Dummy"]=4952,["Moccasin"]=4953,["Uttnar"]=4954,["Theramore Archery Target 1"]=4955,["Haunting Spirit"]=4958,["Jorgen"]=4959,["Bishop DeLavey"]=4960,["Dashel Stonefist"]=4961,["Mikhail"]=4963,["Commander Samaul"]=4964,["Pained"]=4965,["Private Hendel"]=4966,["Archmage Tervosh"]=4967,["Lady Jaina Proudmoore"]=4968,["Old Town Thug"]=4969,["Slim's Friend"]=4971,["Kagoro"]=4972,["Guard Lasiter"]=4973,["Aldwin Laughlin"]=4974,["Theramore Archery Target 2"]=4975,["Murkshallow Softshell"]=4977,["Aku'mai Servant"]=4978,["Theramore Guard"]=4979,["Paval Reethe"]=4980,["Ben Trias"]=4981,["Thomas"]=4982,["Ogron"]=4983,["Argos Nightwhisper"]=4984,["World Warrior Trainer"]=4992,["Stockade Guard"]=4995,["Injured Stockade Guard"]=4996,["Nurse Lillian"]=5042,["Defias Rioter"]=5043,["Theramore Skirmisher"]=5044,["Private Hallan"]=5045,["Lieutenant Caldwell"]=5046,["Ellaercia"]=5047,["Deviate Adder"]=5048,["Lyesa Steelbrow"]=5049,["Edward Remington"]=5052,["Deviate Crocolisk"]=5053,["Krumn"]=5054,["Deviate Lasher"]=5055,["Deviate Dreadfang"]=5056,["Theramore Deserter"]=5057,["Wolfguard Worg"]=5058,["World Banker"]=5060,["Connor Rivers"]=5081,["Vincent Hyal"]=5082,["Paymaster Lendry"]=5083,["Sentry Point Guard"]=5085,["Captain Wymor"]=5086,["Do'gol"]=5087,["Falgran Hastil"]=5088,["Balos Jacken"]=5089,["Combat Master Szigeti"]=5090,["Guard Kahil"]=5091,["Guard Lana"]=5092,["Guard Narrisha"]=5093,["Guard Tark"]=5094,["Captain Andrews"]=5095,["Captain Thomas"]=5096,["Lupine Delusion"]=5097,["Soleil Stonemantle"]=5099,["Fillius Fizzlespinner"]=5100,["Bryllia Ironbrand"]=5101,["Dolman Steelfury"]=5102,["Grenil Steelfury"]=5103,["Bromiir Ormsen"]=5106,["Mangorn Flinthammer"]=5107,["Raena Flinthammer"]=5108,["Myra Tyrngaarde"]=5109,["Barim Jurgenstaad"]=5110,["Innkeeper Firebrew"]=5111,["Gwenna Firebrew"]=5112,["Kelv Sternhammer"]=5113,["Bilban Tosslespanner"]=5114,["Daera Brightspear"]=5115,["Olmin Burningbeard"]=5116,["Regnus Thundergranite"]=5117,["Brogun Stoneshield"]=5118,["Hegnar Swiftaxe"]=5119,["Brenwyn Wintersteel"]=5120,["Kelomir Ironhand"]=5121,["Skolmin Goldfury"]=5122,["Bretta Goldfury"]=5123,["Sognar Cliffbeard"]=5124,["Dolkin Craghelm"]=5125,["Olthran Craghelm"]=5126,["Fimble Finespindle"]=5127,["Bombus Finespindle"]=5128,["Lissyphus Finespindle"]=5129,["Jondor Steelbrow"]=5130,["Pithwick"]=5132,["Harick Boulderdrum"]=5133,["Jonivera Farmountain"]=5134,["Svalbrad Farmountain"]=5135,["Reyna Stonebranch"]=5137,["Gwina Stonebranch"]=5138,["Kurdrum Barleybeard"]=5139,["Edris Barleybeard"]=5140,["Theodrus Frostbeard"]=5141,["Braenna Flintcrag"]=5142,["Toldren Deepiron"]=5143,["Bink"]=5144,["Juli Stormkettle"]=5145,["Nittlebur Sparkfizzle"]=5146,["Valgar Highforge"]=5147,["Beldruk Doombrow"]=5148,["Brandur Ironhammer"]=5149,["Nissa Firestone"]=5150,["Ginny Longberry"]=5151,["Bingus"]=5152,["Jormund Stonebrow"]=5153,["Poranna Snowbraid"]=5154,["Ingrys Stonebrow"]=5155,["Maeva Snowbraid"]=5156,["Gimble Thistlefuzz"]=5157,["Tilli Thistlefuzz"]=5158,["Daryl Riknussun"]=5159,["Emrul Riknussun"]=5160,["Grimnur Stonebrand"]=5161,["Tansy Puddlefizz"]=5162,["Burbik Gearspanner"]=5163,["Grumnus Steelshaper"]=5164,["Hulfdan Blackbeard"]=5165,["Ormyr Flinteye"]=5166,["Fenthwick"]=5167,["Tynnus Venomsprout"]=5169,["Hjoldir Stoneblade"]=5170,["Thistleheart"]=5171,["Briarthorn"]=5172,["Alexander Calder"]=5173,["Springspindle Fizzlegear"]=5174,["Gearcutter Cogspinner"]=5175,["Tally Berryfizz"]=5177,["Soolie Berryfizz"]=5178,["Theramore Sentry"]=5184,["Hammerhead Shark"]=5185,["Basking Shark"]=5186,["Garyl"]=5188,["Thrumn"]=5189,["Merill Pleasance"]=5190,["Shalumon"]=5191,["Rebecca Laughlin"]=5193,["Black Riding Wolf"]=5194,["Brown Riding Wolf"]=5195,["Gray Riding Wolf"]=5196,["Red Riding Wolf"]=5197,["Arctic Riding Wolf"]=5198,["Medic Tamberlyn"]=5199,["Medic Helaina"]=5200,["Archery Target"]=5202,["Apothecary Zinge"]=5204,["Murk Slitherer"]=5224,["Murk Spitter"]=5225,["Murk Worm"]=5226,["Saturated Ooze"]=5228,["Gordunni Ogre"]=5229,["Gordunni Brute"]=5232,["Gordunni Mauler"]=5234,["Fungal Ooze"]=5235,["Gordunni Shaman"]=5236,["Gordunni Ogre Mage"]=5237,["Gordunni Battlemaster"]=5238,["Gordunni Mage-Lord"]=5239,["Gordunni Warlock"]=5240,["Gordunni Warlord"]=5241,["Cursed Atal'ai"]=5243,["Zukk'ash Stinger"]=5244,["Zukk'ash Wasp"]=5245,["Zukk'ash Worker"]=5246,["Zukk'ash Tunneler"]=5247,["Woodpaw Mongrel"]=5249,["Woodpaw Trapper"]=5251,["Woodpaw Brute"]=5253,["Woodpaw Mystic"]=5254,["Woodpaw Reaver"]=5255,["Atal'ai Warrior"]=5256,["Woodpaw Alpha"]=5258,["Atal'ai Witch Doctor"]=5259,["Groddoc Ape"]=5260,["Enthralled Atal'ai"]=5261,["Groddoc Thunderer"]=5262,["Mummified Atal'ai"]=5263,["Unliving Atal'ai"]=5267,["Ironfur Bear"]=5268,["Atal'ai Priest"]=5269,["Atal'ai Corpse Eater"]=5270,["Atal'ai Deathwalker"]=5271,["Grizzled Ironfur Bear"]=5272,["Atal'ai High Priest"]=5273,["Ironfur Patriarch"]=5274,["Sprite Dragon"]=5276,["Nightmare Scalebane"]=5277,["Sprite Darter"]=5278,["Nightmare Wyrmkin"]=5280,["Nightmare Wanderer"]=5283,["Longtooth Runner"]=5286,["Longtooth Howler"]=5287,["Rabid Longtooth"]=5288,["Hakkari Frostwing"]=5291,["Feral Scar Yeti"]=5292,["Hulking Feral Scar"]=5293,["Enraged Feral Scar"]=5295,["Rage Scar Yeti"]=5296,["Elder Rage Scar"]=5297,["Ferocious Rage Scar"]=5299,["Frayfeather Hippogryph"]=5300,["Frayfeather Stagwing"]=5304,["Frayfeather Skystormer"]=5305,["Frayfeather Patriarch"]=5306,["Vale Screecher"]=5307,["Rogue Vale Screecher"]=5308,["Lethlas"]=5312,["Phantim"]=5314,["Jademir Oracle"]=5317,["Jademir Tree Warder"]=5319,["Jademir Boughguard"]=5320,["Coast Crawl Snapclaw"]=5327,["Coast Crawl Deepseer"]=5328,["Hatecrest Warrior"]=5331,["Hatecrest Wave Rider"]=5332,["Hatecrest Serpent Guard"]=5333,["Hatecrest Myrmidon"]=5334,["Hatecrest Screamer"]=5335,["Hatecrest Sorceress"]=5336,["Hatecrest Siren"]=5337,["Lady Szallah"]=5343,["Diamond Head"]=5345,["Bloodroar the Stalker"]=5346,["Antilus the Soarer"]=5347,["Dreamwatcher Forktongue"]=5348,["Arash-ethis"]=5349,["Qirot"]=5350,["Old Grizzlegut"]=5352,["Itharius"]=5353,["Gnarl Leafbrother"]=5354,["Firewing Defender"]=5355,["Snarler"]=5356,["Land Walker"]=5357,["Cliff Giant"]=5358,["Shore Strider"]=5359,["Deep Strider"]=5360,["Wave Strider"]=5361,["Northspring Harpy"]=5362,["Northspring Roguefeather"]=5363,["Northspring Slayer"]=5364,["Northspring Windcaller"]=5366,["Brohann Caskbelly"]=5384,["Watcher Mahar Ba"]=5385,["Acolyte Dellis"]=5386,["High Explorer Magellas"]=5387,["Ingo Woolybush"]=5388,["Prospector Gunstan"]=5389,["Sage Palerunner"]=5390,["Galen Goodward"]=5391,["Yarr Hammerstone"]=5392,["Quartermaster Lungertz"]=5393,["Neeka Bloodscar"]=5394,["Felgur Twocuts"]=5395,["Captain Pentigast"]=5396,["Uthek the Wise"]=5397,["Warug"]=5398,["Veyzhak the Cannibal"]=5399,["Zekkis"]=5400,["Kazkaz the Unholy"]=5401,["Khan Hratha"]=5402,["Riding White Stallion"]=5403,["Nightmare"]=5407,["Harvester Swarm"]=5409,["Krinkle Goodsteel"]=5411,["Gurda Wildmane"]=5412,["Furen Longbeard"]=5413,["Apothecary Faustin"]=5414,["Infiltrator Marksen"]=5416,["Deathstalker Zraedus"]=5418,["Glasshide Basilisk"]=5419,["Glasshide Gazer"]=5420,["Glasshide Petrifier"]=5421,["Scorpid Hunter"]=5422,["Scorpid Tail Lasher"]=5423,["Scorpid Dunestalker"]=5424,["Starving Blisterpaw"]=5425,["Blisterpaw Hyena"]=5426,["Rabid Blisterpaw"]=5427,["Roc"]=5428,["Fire Roc"]=5429,["Searing Roc"]=5430,["Surf Glider"]=5431,["Giant Surf Glider"]=5432,["Coral Shark"]=5434,["Sand Shark"]=5435,["Hazzali Wasp"]=5441,["Hazzali Stinger"]=5450,["Hazzali Swarmer"]=5451,["Hazzali Worker"]=5452,["Hazzali Tunneler"]=5453,["Hazzali Sandreaver"]=5454,["Centipaar Wasp"]=5455,["Centipaar Stinger"]=5456,["Centipaar Swarmer"]=5457,["Centipaar Worker"]=5458,["Centipaar Tunneler"]=5459,["Centipaar Sandreaver"]=5460,["Sea Elemental"]=5461,["Sea Spray"]=5462,["Watchmaster Sorigal"]=5464,["Land Rager"]=5465,["Coast Strider"]=5466,["Deep Dweller"]=5467,["Dune Smasher"]=5469,["Raging Dune Smasher"]=5470,["Dunemaul Ogre"]=5471,["Dunemaul Enforcer"]=5472,["Dunemaul Ogre Mage"]=5473,["Dunemaul Brute"]=5474,["Dunemaul Warlock"]=5475,["Watcher Biggs"]=5476,["Noboru the Cudgel"]=5477,["Wu Shen"]=5479,["Ilsa Corbin"]=5480,["Thistleshrub Dew Collector"]=5481,["Stephen Ryback"]=5482,["Erika Tate"]=5483,["Brother Benjamin"]=5484,["Thistleshrub Rootshaper"]=5485,["Brother Joshua"]=5489,["Gnarled Thistleshrub"]=5490,["Arthur the Faithful"]=5491,["Katherine the Pure"]=5492,["Arnold Leland"]=5493,["Catherine Leland"]=5494,["Ursula Deline"]=5495,["Sandahl"]=5496,["Jennea Cannon"]=5497,["Elsharin"]=5498,["Lilyssia Nightbreeze"]=5499,["Tel'Athir"]=5500,["Kaerbrus"]=5501,["Shylamiir"]=5502,["Eldraeith"]=5503,["Sheldras Moontree"]=5504,["Theridran"]=5505,["Maldryn"]=5506,["Strumner Flintheel"]=5508,["Kathrum Axehand"]=5509,["Thulman Flintcrag"]=5510,["Therum Deepforge"]=5511,["Kaita Deepforge"]=5512,["Gelman Stonehand"]=5513,["Brooke Stonebraid"]=5514,["Einris Brightspear"]=5515,["Ulfir Ironbeard"]=5516,["Thorfin Stoneshield"]=5517,["Lilliam Sparkspindle"]=5518,["Billibub Cogspinner"]=5519,["Spackle Thornberry"]=5520,["War Party Kodo"]=5523,["Caravan Watcher"]=5524,["Caravan Packhorse"]=5525,["Clarice Foster"]=5543,["Grunt Zuul"]=5546,["Grunt Tharlak"]=5547,["Simon Tanner"]=5564,["Jillian Tanner"]=5565,["Tannysa"]=5566,["Sellandus"]=5567,["Captured Leper Gnome"]=5568,["Fizzlebang Booms"]=5569,["Bruuk Barleybeard"]=5570,["Dar"]=5591,["Tok'Kar"]=5592,["Katar"]=5593,["Alchemist Pestlezugg"]=5594,["Ironforge Guard"]=5595,["Grunt Komak"]=5597,["Atal'ai Exile"]=5598,["Kon Yelloweyes"]=5599,["Khan Dez'hepah"]=5600,["Khan Jehn"]=5601,["Khan Shaka"]=5602,["Grunt Mojka"]=5603,["Tisa Martine"]=5605,["Goma"]=5606,["Roger"]=5607,["Jamin"]=5608,["Zazo"]=5609,["Kozish"]=5610,["Barkeep Morag"]=5611,["Gimrizz Shadowcog"]=5612,["Doyo'da"]=5613,["Sarok"]=5614,["Wastewander Rogue"]=5615,["Wastewander Thief"]=5616,["Wastewander Shadow Mage"]=5617,["Wastewander Bandit"]=5618,["Bartender Wental"]=5620,["Ongeku"]=5622,["Wastewander Assassin"]=5623,["Undercity Guardian"]=5624,["Theramore Commando"]=5629,["Rhapsody Shindigger"]=5634,["Falstad Wildhammer"]=5635,["Gryphon Master Talonaxe"]=5636,["Roetten Stonehammer"]=5637,["Kreldig Ungor"]=5638,["Craven Drok"]=5639,["Keldran"]=5640,["Takata Steelblade"]=5641,["Vahlarriel Demonslayer"]=5642,["Tyranis Malem"]=5643,["Dalinda Malem"]=5644,["Sandfury Hideskinner"]=5645,["Sandfury Axe Thrower"]=5646,["Sandfury Firecaller"]=5647,["Sandfury Shadowcaster"]=5648,["Sandfury Blood Drinker"]=5649,["Sandfury Witch Doctor"]=5650,["Patrick Garrett"]=5651,["Undercity Practice Dummy"]=5652,["Tyler"]=5653,["Edward"]=5654,["Robert Gossom"]=5655,["Richard Van Brunt"]=5656,["Marla Fowler"]=5657,["Chloe Curthas"]=5658,["Andrew Hartwell"]=5659,["Riley Walker"]=5660,["Brother Malach"]=5661,["Sergeant Houser"]=5662,["Travist Bosk"]=5663,["Eldin Partridge"]=5664,["Alyssa Blaye"]=5665,["Gunther's Visage"]=5666,["Venya Marthand"]=5667,["Mattie Alred"]=5668,["Helena Atwood"]=5669,["Edrick Killian"]=5670,["Practice Target"]=5674,["Carendin Halgar"]=5675,["Summoned Voidwalker"]=5676,["Summoned Succubus"]=5677,["Lysta Bancroft"]=5679,["Male Human Captive"]=5680,["Female Human Captive"]=5681,["Dalin Forgewright"]=5682,["Comar Villard"]=5683,["Captive Ghoul"]=5685,["Captive Zombie"]=5686,["Captive Abomination"]=5687,["Innkeeper Renee"]=5688,["Clyde Kellen"]=5690,["Dalin Forgewright Projection"]=5691,["Comar Villard Projection"]=5692,["Godrick Farsan"]=5693,["High Sorcerer Andromath"]=5694,["Vance Undergloom"]=5695,["Gerard Abernathy"]=5696,["Theresa"]=5697,["Joanna Whitehall"]=5698,["Leona Tharpe"]=5699,["Samantha Shackleton"]=5700,["Selina Pickman"]=5701,["Jezelle Pruitt"]=5702,["Winifred Kerwin"]=5703,["Adrian Bartlett"]=5704,["Victor Bartholomew"]=5705,["Davitt Hickson"]=5706,["Reginald Grimsford"]=5707,["Spawn of Hakkar"]=5708,["Shade of Eranikus"]=5709,["Jammal'an the Prophet"]=5710,["Ogom the Wretched"]=5711,["Zolo"]=5712,["Gasher"]=5713,["Loro"]=5714,["Hukku"]=5715,["Zul'Lor"]=5716,["Mijan"]=5717,["Rothos"]=5718,["Morphaz"]=5719,["Weaver"]=5720,["Dreamscythe"]=5721,["Hazzas"]=5722,["Warug's Target Dummy"]=5723,["Ageron Kargal"]=5724,["Deathguard Lundmark"]=5725,["Jezelle's Felhunter"]=5726,["Jezelle's Felsteed"]=5727,["Jezelle's Succubus"]=5728,["Jezelle's Voidwalker"]=5729,["Jezelle's Imp"]=5730,["Apothecary Vallia"]=5731,["Apothecary Katrina"]=5732,["Apothecary Lycanus"]=5733,["Apothecary Keever"]=5734,["Caged Human Female"]=5735,["Caged Human Male"]=5736,["Caged Dwarf Male"]=5738,["Caged Squirrel"]=5739,["Caged Rabbit"]=5741,["Caged Toad"]=5742,["Caged Sheep"]=5743,["Cedric Stumpel"]=5744,["Hepzibah Sedgewick"]=5747,["Killian Sanatha"]=5748,["Kayla Smithe"]=5749,["Gina Lang"]=5750,["Corporal Melkins"]=5752,["Martha Strain"]=5753,["Zane Bradford"]=5754,["Deviate Viper"]=5755,["Deviate Venomwing"]=5756,["Lilly"]=5757,["Leo Sarn"]=5758,["Nurse Neela"]=5759,["Lord Azrethoc"]=5760,["Deviate Shambler"]=5761,["Deviate Moccasin"]=5762,["Nightmare Ectoplasm"]=5763,["Ruzan"]=5765,["Savannah Cub"]=5766,["Nalpak"]=5767,["Ebru"]=5768,["Arch Druid Hamuul Runetotem"]=5769,["Nara Wildmane"]=5770,["Jugkar Grim'rod"]=5771,["Lord Azrethoc's Image"]=5772,["Jugkar Grim'rod's Image"]=5773,["Riding Wolf"]=5774,["Verdan the Everliving"]=5775,["Summoned Viper"]=5779,["Cloned Ectoplasm"]=5780,["Silithid Creeper Egg"]=5781,["Crildor"]=5782,["Kalldan Felmoon"]=5783,["Waldor"]=5784,["Sister Hatelash"]=5785,["Snagglespear"]=5786,["Enforcer Emilgund"]=5787,["Gelgann Direforge"]=5788,["Drag Master Miglen"]=5792,["Aean Swiftriver"]=5797,["Thora Feathermoon"]=5798,["Hannah Bladeleaf"]=5799,["Marcus Bel"]=5800,["Treant Ally"]=5806,["The Rake"]=5807,["Warlord Kolkanis"]=5808,["Sergeant Curtis"]=5809,["Uzzek"]=5810,["Kamari"]=5811,["Tumi"]=5812,["Innkeeper Thulbek"]=5814,["Kurgul"]=5815,["Katis"]=5816,["Shimra"]=5817,["Mirelle Tremayne"]=5819,["Gillian Moore"]=5820,["Sheldon Von Croy"]=5821,["Felweaver Scornn"]=5822,["Death Flayer"]=5823,["Captain Flat Tusk"]=5824,["Geolord Mottle"]=5826,["Brontus"]=5827,["Humar the Pridelord"]=5828,["Snort the Heckler"]=5829,["Sister Rathtalon"]=5830,["Swiftmane"]=5831,["Thunderstomp"]=5832,["Margol the Rager"]=5833,["Azzere the Skyblade"]=5834,["Foreman Grills"]=5835,["Engineer Whirleygig"]=5836,["Stonearm"]=5837,["Brokespear"]=5838,["Dark Iron Geologist"]=5839,["Dark Iron Steamsmith"]=5840,["Rocklance"]=5841,["Takk the Leaper"]=5842,["Slave Worker"]=5843,["Dark Iron Slaver"]=5844,["Dark Iron Taskmaster"]=5846,["Heggin Stonewhisker"]=5847,["Malgin Barleybrew"]=5848,["Digger Flameforge"]=5849,["Blazing Elemental"]=5850,["Captain Gerogg Hammertoe"]=5851,["Inferno Elemental"]=5852,["Tempered War Golem"]=5853,["Heavy War Golem"]=5854,["Magma Elemental"]=5855,["Glassweb Spider"]=5856,["Searing Lava Spider"]=5857,["Greater Lava Spider"]=5858,["Hagg Taurenbane"]=5859,["Twilight Dark Shaman"]=5860,["Twilight Fire Guard"]=5861,["Twilight Geomancer"]=5862,["Geopriest Gukk'rok"]=5863,["Swinegart Spearhide"]=5864,["Dishu"]=5865,["Evil Squirrel"]=5868,["Krond"]=5870,["Larhka"]=5871,["Stoneskin Totem"]=5873,["Strength of Earth Totem"]=5874,["Gan'rul Bloodeye"]=5875,["Thun'grim Firegaze"]=5878,["Fire Nova Totem"]=5879,["Un'Thuwa"]=5880,["Cursed Sycamore"]=5881,["Pephredo"]=5882,["Enyo"]=5883,["Mai'ah"]=5884,["Deino"]=5885,["Gwyn Farrow"]=5886,["Canaga Earthcaller"]=5887,["Seer Ravenfeather"]=5888,["Mesa Earth Spirit"]=5889,["Redrock Earth Spirit"]=5890,["Minor Manifestation of Earth"]=5891,["Searn Firewarder"]=5892,["Minor Manifestation of Fire"]=5893,["Corrupt Minor Manifestation of Water"]=5894,["Minor Manifestation of Water"]=5895,["Fire Spirit"]=5896,["Corrupt Water Spirit"]=5897,["Air Spirit"]=5898,["Brine"]=5899,["Telf Joolam"]=5900,["Islen Waterseer"]=5901,["Minor Manifestation of Air"]=5902,["Nyx Bloodrage"]=5903,["Prate Cloudseer"]=5905,["Xanis Flameweaver"]=5906,["Kranal Fiss"]=5907,["Grunt Dogran"]=5908,["Cazul"]=5909,["Zankaja"]=5910,["Grunt Logmar"]=5911,["Deviate Faerie Dragon"]=5912,["Tremor Totem"]=5913,["Deviate Nightmare"]=5914,["Brother Ravenoak"]=5915,["Sentinel Amarassan"]=5916,["Clara Charles"]=5917,["Stoneskin Totem II"]=5919,["Stoneskin Totem III"]=5920,["Strength of Earth Totem II"]=5921,["Strength of Earth Totem III"]=5922,["Poison Cleansing Totem"]=5923,["Cleansing Totem"]=5924,["Grounding Totem"]=5925,["Frost Resistance Totem"]=5926,["Elemental Resistance Totem"]=5927,["Sorrow Wing"]=5928,["Magma Totem"]=5929,["Sister Riven"]=5930,["Foreman Rigger"]=5931,["Taskmaster Whipfang"]=5932,["Achellios the Banished"]=5933,["Heartrazor"]=5934,["Ironeye the Invincible"]=5935,["Orca"]=5936,["Vile Sting"]=5937,["Uthan Stillwater"]=5938,["Vira Younghoof"]=5939,["Harn Longcast"]=5940,["Lau'Tiki"]=5941,["Zansoa"]=5942,["Rawrk"]=5943,["Yonada"]=5944,["Owl Companion"]=5945,["Flametongue Totem"]=5950,["Hare"]=5951,["Den Grunt"]=5952,["Razor Hill Grunt"]=5953,["Tooga"]=5955,["Birgitte Cranston"]=5957,["Thuul"]=5958,["World Tauren Male Druid Trainer"]=5963,["Dreadmaul Ogre"]=5974,["Dreadmaul Ogre Mage"]=5975,["Dreadmaul Brute"]=5976,["Dreadmaul Mauler"]=5977,["Dreadmaul Warlock"]=5978,["Wretched Lost One"]=5979,["Portal Seeker"]=5981,["Black Slayer"]=5982,["Bonepicker Felfeeder"]=5983,["Starving Snickerfang"]=5984,["Snickerfang Hyena"]=5985,["Scorpok Stinger"]=5988,["Redstone Basilisk"]=5990,["Redstone Crystalhide"]=5991,["Ashmane Boar"]=5992,["Helboar"]=5993,["Zayus"]=5994,["Nethergarde Miner"]=5996,["Nethergarde Engineer"]=5997,["Nethergarde Foreman"]=5998,["Nethergarde Soldier"]=5999,["Nethergarde Cleric"]=6000,["Nethergarde Analyst"]=6001,["Nethergarde Riftwatcher"]=6002,["Nethergarde Officer"]=6003,["Shadowsworn Ritualist"]=6004,["Shadowsworn Thug"]=6005,["Shadowsworn Adept"]=6006,["Shadowsworn Enforcer"]=6007,["Shadowsworn Warlock"]=6008,["Shadowsworn Dreadweaver"]=6009,["Felhound"]=6010,["Felguard Sentry"]=6011,["Flametongue Totem II"]=6012,["Wayward Buzzard"]=6013,["X'yera"]=6014,["Torta"]=6015,["Elemental Protection Totem"]=6016,["Lava Spout Totem"]=6017,["Ur'kyo"]=6018,["Hornizz Brimbuzzle"]=6019,["Slimeshell Makrura"]=6020,["Boar Spirit"]=6021,["Breyk"]=6026,["Kitha"]=6027,["Burkrum"]=6028,["Thorvald Deepforge"]=6030,["Tormus Deepforge"]=6031,["Lake Frenzy"]=6033,["Lotherias"]=6034,["Razorfen Stalker"]=6035,["Aqua Guardian"]=6047,["Earthgrab Totem"]=6066,["Warug's Bodyguard"]=6068,["Maraudine Khan Guard"]=6069,["Maraudine Khan Advisor"]=6070,["Legion Hound"]=6071,["Diathorus the Seeker"]=6072,["Searing Infernal"]=6073,["Striped Frostsaber"]=6074,["Emerald Raptor"]=6075,["Riding Tallstrider (Ivory)"]=6076,["Auberdine Sentinel"]=6086,["Astranaar Sentinel"]=6087,["Harry Burlguard"]=6089,["Bartleby"]=6090,["Dellylah"]=6091,["Dead-Tooth Jack"]=6093,["Byancie"]=6094,["Shade"]=6107,["Azuregos"]=6109,["Fire Nova Totem II"]=6110,["Fire Nova Totem III"]=6111,["Windfury Totem"]=6112,["Vejrek"]=6113,["Muren Stormpike"]=6114,["Roaming Felguard"]=6115,["Highborne Apparition"]=6116,["Highborne Lichling"]=6117,["Varo'then's Ghost"]=6118,["Tog Rustsprocket"]=6119,["Lago Blackwrench"]=6120,["Remen Marcot"]=6121,["Gakin the Darkbinder"]=6122,["Dark Iron Spy"]=6123,["Captain Beld"]=6124,["Haldarr Satyr"]=6125,["Haldarr Trickster"]=6126,["Haldarr Felsworn"]=6127,["Vorlus Vilehoof"]=6128,["Draconic Magelord"]=6129,["Blue Scalebane"]=6130,["Draconic Mageweaver"]=6131,["Razorfen Servitor"]=6132,["Shade of Elura"]=6133,["Lord Arkkoroc"]=6134,["Arkkoran Clacker"]=6135,["Arkkoran Muckdweller"]=6136,["Arkkoran Pincer"]=6137,["Arkkoran Oracle"]=6138,["Highperch Soarer"]=6139,["Hetaera"]=6140,["Pridewing Soarer"]=6141,["Mathiel"]=6142,["Servant of Arkkoroc"]=6143,["Son of Arkkoroc"]=6144,["School of Fish"]=6145,["Cliff Breaker"]=6146,["Cliff Thunderer"]=6147,["Cliff Walker"]=6148,["Yorus Barleybrew"]=6166,["Chimaera Matriarch"]=6167,["Roogug"]=6168,["Klockmort Spannerspan"]=6169,["Gutspill"]=6170,["Duthorian Rall"]=6171,["Henze Faulk"]=6172,["Gazin Tenorm"]=6173,["Stephanie Turner"]=6174,["John Turner"]=6175,["Bath'rah the Windwatcher"]=6176,["Narm Faulk"]=6177,["Muiredon Battleforge"]=6178,["Tiza Battleforge"]=6179,["Defias Raider"]=6180,["Jordan Stilwell"]=6181,["Daphne Stilwell"]=6182,["Timbermaw Pathfinder"]=6184,["Timbermaw Warrior"]=6185,["Timbermaw Totemic"]=6186,["Timbermaw Den Watcher"]=6187,["Timbermaw Shaman"]=6188,["Timbermaw Ursa"]=6189,["Spitelash Warrior"]=6190,["Spitelash Screamer"]=6193,["Spitelash Serpent Guard"]=6194,["Spitelash Siren"]=6195,["Spitelash Myrmidon"]=6196,["Blood Elf Surveyor"]=6198,["Blood Elf Reclaimer"]=6199,["Legashi Satyr"]=6200,["Legashi Rogue"]=6201,["Legashi Hellcaller"]=6202,["Caverndeep Burrower"]=6206,["Caverndeep Ambusher"]=6207,["Caverndeep Invader"]=6208,["Caverndeep Looter"]=6209,["Caverndeep Pillager"]=6210,["Caverndeep Reaver"]=6211,["Dark Iron Agent"]=6212,["Irradiated Invader"]=6213,["Chomper"]=6215,["Irradiated Slime"]=6218,["Corrosive Lurker"]=6219,["Irradiated Horror"]=6220,["Addled Leper"]=6221,["Leprous Technician"]=6222,["Leprous Defender"]=6223,["Leprous Machinesmith"]=6224,["Mechano-Tank"]=6225,["Mechano-Flamewalker"]=6226,["Mechano-Frostwalker"]=6227,["Dark Iron Ambassador"]=6228,["Crowd Pummeler 9-60"]=6229,["Peacekeeper Security Suit"]=6230,["Techbot"]=6231,["Arcane Nullifier X-21"]=6232,["Mechanized Sentry"]=6233,["Mechanized Guardian"]=6234,["Electrocutioner 6000"]=6235,["Klannoc Macleod"]=6236,["Stockade Archer"]=6237,["Big Will"]=6238,["Cyclonian"]=6239,["Affray Challenger"]=6240,["Bailor Stonehand"]=6241,["Gelihast"]=6243,["Takar the Seer"]=6244,["Anathera"]=6245,["Latherion"]=6246,["Doan Karhan"]=6247,["Twiggy Flathead"]=6248,["Affray Spectator"]=6249,["Crawler"]=6250,["Strahad Farsan"]=6251,["Acolyte Magaz"]=6252,["Acolyte Fenrick"]=6253,["Acolyte Wytula"]=6254,["Menara Voidrender"]=6266,["Acolyte Porena"]=6267,["Summoned Felhunter"]=6268,["Mouse"]=6271,["Innkeeper Janene"]=6272,["Zarrin"]=6286,["Radnaal Maneweaver"]=6287,["Jayla"]=6288,["Rand Rhobart"]=6289,["Yonn Deepcut"]=6290,["Balthus Stoneflayer"]=6291,["Eladriel"]=6292,["Jorah Annison"]=6293,["Krom Stoutarm"]=6294,["Wilma Ranthal"]=6295,["Kurdram Stonehammer"]=6297,["Thelgrum Stonehammer"]=6298,["Delfrum Flintbeard"]=6299,["Elisa Steelhand"]=6300,["Gorbold Steelhand"]=6301,["Helene Peltskinner"]=6306,["Dannie Fizzwizzle"]=6328,["Irradiated Pillager"]=6329,["Young Wavethrasher"]=6347,["Wavethrasher"]=6348,["Great Wavethrasher"]=6349,["Makrinni Razorclaw"]=6350,["Storm Bay Oracle"]=6351,["Coralshell Lurker"]=6352,["Kurzen Mindslave"]=6366,["Donni Anthania"]=6367,["Cat"]=6368,["Coralshell Tortoise"]=6369,["Makrinni Scrabbler"]=6370,["Storm Bay Warrior"]=6371,["Makrinni Snapclaw"]=6372,["Dane Winslow"]=6373,["Cylina Darkheart"]=6374,["Thunderhead Hippogryph"]=6375,["Wren Darkspring"]=6376,["Thunderhead Stagwing"]=6377,["Thunderhead Skystormer"]=6378,["Thunderhead Patriarch"]=6379,["Thunderhead Consort"]=6380,["Jubahl Corpseseeker"]=6382,["Ward of Zanzil"]=6386,["Dranh"]=6387,["Zanzil Skeleton"]=6388,["Deathguard Podrig"]=6389,["Ulag the Cleaver"]=6390,["Holdout Warrior"]=6391,["Holdout Medic"]=6392,["Henen Ragetotem"]=6393,["Ruga Ragetotem"]=6394,["Sergeant Rutger"]=6395,["Holdout Technician"]=6407,["Ula'elek"]=6408,["Orm Stonehoof"]=6410,["Velora Nitely"]=6411,["Skeleton"]=6412,["Anguished Dead"]=6426,["Haunting Phantasm"]=6427,["Therzok"]=6446,["Gamon"]=6466,["Mennet Carkad"]=6467,["Black Skeletal Horse"]=6486,["Arcanist Doan"]=6487,["Fallen Champion"]=6488,["Ironspine"]=6489,["Azshir the Sleepless"]=6490,["Spirit Healer"]=6491,["Rift Spawn"]=6492,["Illusionary Phantasm"]=6493,["Tazan"]=6494,["Riznek"]=6495,["Brivelthwerp"]=6496,["Astor Hadren"]=6497,["Devilsaur"]=6498,["Ironhide Devilsaur"]=6499,["Tyrant Devilsaur"]=6500,["Stegodon"]=6501,["Plated Stegodon"]=6502,["Spiked Stegodon"]=6503,["Thunderstomp Stegodon"]=6504,["Ravasaur"]=6505,["Ravasaur Runner"]=6506,["Ravasaur Hunter"]=6507,["Venomhide Ravasaur"]=6508,["Bloodpetal Lasher"]=6509,["Bloodpetal Flayer"]=6510,["Bloodpetal Thresher"]=6511,["Bloodpetal Trapper"]=6512,["Un'Goro Stomper"]=6513,["Un'Goro Gorilla"]=6514,["Un'Goro Thunderer"]=6516,["Tar Beast"]=6517,["Tar Lurker"]=6518,["Tar Lord"]=6519,["Scorching Elemental"]=6520,["Living Blaze"]=6521,["Andron Gant"]=6522,["Dark Iron Rifleman"]=6523,["Tar Creeper"]=6527,["Tabetha"]=6546,["Suffering Victim"]=6547,["Magus Tirth"]=6548,["Demon of the Orb"]=6549,["Mana Surge"]=6550,["Gorishi Wasp"]=6551,["Gorishi Worker"]=6552,["Gorishi Reaver"]=6553,["Gorishi Stinger"]=6554,["Gorishi Tunneler"]=6555,["Muculent Ooze"]=6556,["Primal Ooze"]=6557,["Glutinous Ooze"]=6559,["Stone Guardian"]=6560,["Estelle Gendry"]=6566,["Ghok'kah"]=6567,["Vizzklick"]=6568,["Gnoarn"]=6569,["Fenwick Thatros"]=6570,["Travel Form (Druid)"]=6573,["Jun'ha"]=6574,["Scarlet Trainee"]=6575,["Brienna Starglow"]=6576,["Bingles Blastenheimer"]=6577,["Shoni the Shilent"]=6579,["Ravasaur Matriarch"]=6581,["Clutchmother Zavas"]=6582,["Gruff"]=6583,["King Mosh"]=6584,["Uhk'loc"]=6585,["Rokar Bladeshadow"]=6586,["Overseer Glibby"]=6606,["Harroc"]=6607,["Monnos the Elder"]=6646,["Magister Hawkhelm"]=6647,["Antilos"]=6648,["Lady Sesspira"]=6649,["General Fangferror"]=6650,["Gatekeeper Rageroar"]=6651,["Master Feardred"]=6652,["Huge Toad"]=6653,["Gelkak Gyromast"]=6667,["Lord Cyrik Blackforge"]=6668,["The Threshwackonator 4100"]=6669,["Westfall Woodworker"]=6670,["Baritanas Skyriver"]=6706,["Fahrad"]=6707,["Thalon"]=6726,["Innkeeper Brianna"]=6727,["Narnie"]=6728,["Morridune"]=6729,["Jinky Twizzlefixxit"]=6730,["Harlown Darkweave"]=6731,["Amie Pierce"]=6732,["Stonevault Basher"]=6733,["Innkeeper Hearthstove"]=6734,["Innkeeper Saelienne"]=6735,["Innkeeper Keldamyr"]=6736,["Innkeeper Shaussiy"]=6737,["Innkeeper Kimlya"]=6738,["Innkeeper Bates"]=6739,["Innkeeper Allison"]=6740,["Innkeeper Norman"]=6741,["Innkeeper Pala"]=6746,["Innkeeper Kauth"]=6747,["Water Spirit"]=6748,["Erma"]=6749,["Ravenholdt Guard"]=6766,["Lord Jorach Ravenholdt"]=6768,["Ravenholdt Assassin"]=6771,["Falkhaan Isenstrider"]=6774,["Antur Fallow"]=6775,["Magrin Rivermane"]=6776,["Zan Shivsproket"]=6777,["Melika Isenstrider"]=6778,["Smudge Thunderwood"]=6779,["Porthannius"]=6780,["Melarith"]=6781,["Hands Springsprocket"]=6782,["Calvin Montague"]=6784,["Ratslin Maime"]=6785,["Ukor"]=6786,["Yelnagi Blackarm"]=6787,["Den Mother"]=6788,["Thistle Cub"]=6789,["Innkeeper Trelayne"]=6790,["Innkeeper Wiley"]=6791,["Tannok Frosthammer"]=6806,["Innkeeper Skindle"]=6807,["Talvash del Kissel"]=6826,["Shore Crab"]=6827,["Dockmaster"]=6846,["Bodyguard"]=6866,["Tracking Hound"]=6867,["Jarkal Mossmeld"]=6868,["Onin MacHammar"]=6886,["Yalda"]=6887,["Baelog"]=6906,["Olaf"]=6908,["Sethir the Ancient"]=6909,["Revelosh"]=6910,["Minion of Sethir"]=6911,["Remains of a Paladin"]=6912,["Lost One Rift Traveler"]=6913,["Dockworker"]=6927,["Innkeeper Grosk"]=6928,["Innkeeper Gryshka"]=6929,["Innkeeper Karakul"]=6930,["Swamp Spirit"]=6932,["Lucius"]=6966,["Dran Droffers"]=6986,["Malton Droffers"]=6987,["Tiev Mordune"]=7007,["Arantir"]=7009,["Zilzibin Drumlore"]=7010,["Earthen Rocksmasher"]=7011,["Earthen Sculptor"]=7012,["Blackrock Guard"]=7013,["Flagglemurk the Cruel"]=7015,["Lady Vespira"]=7016,["Lord Sinslayer"]=7017,["Venomlash Scorpid"]=7022,["Obsidian Sentinel"]=7023,["Agent Kearnen"]=7024,["Blackrock Soldier"]=7025,["Blackrock Sorcerer"]=7026,["Blackrock Slayer"]=7027,["Blackrock Warlock"]=7028,["Blackrock Battlemaster"]=7029,["Shadowforge Geologist"]=7030,["Obsidian Elemental"]=7031,["Greater Obsidian Elemental"]=7032,["Firegut Ogre"]=7033,["Firegut Ogre Mage"]=7034,["Firegut Brute"]=7035,["Thaurissan Spy"]=7036,["Thaurissan Firewalker"]=7037,["Thaurissan Agent"]=7038,["War Reaver"]=7039,["Black Dragonspawn"]=7040,["Black Wyrmkin"]=7041,["Flamescale Dragonspawn"]=7042,["Flamescale Wyrmkin"]=7043,["Black Drake"]=7044,["Scalding Drake"]=7045,["Searscale Drake"]=7046,["Black Broodling"]=7047,["Scalding Broodling"]=7048,["Flamescale Broodling"]=7049,["Defias Drone"]=7050,["Malformed Defias Drone"]=7051,["Defias Tower Patroller"]=7052,["Klaven Mortwake"]=7053,["Blackrock Worg"]=7055,["Defias Tower Sentry"]=7056,["Digmaster Shovelphlange"]=7057,["Venture Co. Drone"]=7067,["Condemned Acolyte"]=7068,["Condemned Monk"]=7069,["Condemned Cleric"]=7070,["Cursed Paladin"]=7071,["Cursed Justicar"]=7072,["Writhing Mage"]=7075,["Earthen Guardian"]=7076,["Earthen Hallshaper"]=7077,["Cleft Scorpid"]=7078,["Viscous Fallout"]=7079,["Cursed Ooze"]=7086,["Killian Hagey"]=7087,["Thuwd"]=7088,["Mooranta"]=7089,["Shadowforge Ambusher"]=7091,["Tainted Ooze"]=7092,["Vile Ooze"]=7093,["Ironbeak Owl"]=7097,["Ironbeak Screecher"]=7098,["Ironbeak Hunter"]=7099,["Warpwood Moss Flayer"]=7100,["Warpwood Shredder"]=7101,["Dessecus"]=7104,["Jadefire Satyr"]=7105,["Jadefire Rogue"]=7106,["Jadefire Trickster"]=7107,["Jadefire Betrayer"]=7108,["Jadefire Felsworn"]=7109,["Jadefire Shadowstalker"]=7110,["Jadefire Hellcaller"]=7111,["Jaedenar Cultist"]=7112,["Jaedenar Guardian"]=7113,["Jaedenar Enforcer"]=7114,["Jaedenar Adept"]=7115,["Jaedenar Darkweaver"]=7118,["Jaedenar Warlock"]=7120,["Jaedenar Hound"]=7125,["Jaedenar Hunter"]=7126,["Toxic Horror"]=7132,["Infernal Bodyguard"]=7135,["Infernal Sentry"]=7136,["Immolatus"]=7137,["Irontree Wanderer"]=7138,["Irontree Stomper"]=7139,["Withered Protector"]=7149,["Deadwood Warrior"]=7153,["Deadwood Gardener"]=7154,["Deadwood Pathfinder"]=7155,["Deadwood Den Watcher"]=7156,["Deadwood Avenger"]=7157,["Deadwood Shaman"]=7158,["Wrenix the Wretched"]=7161,["Wrenix's Gizmotronic Apparatus"]=7166,["Polly"]=7167,["Polly"]=7168,["Thragomm"]=7170,["Lore Keeper of Norgannon"]=7172,["Stonevault Ambusher"]=7175,["Ancient Stone Keeper"]=7206,["Doc Mixilpixil"]=7207,["Noarm"]=7208,["Obsidian Shard"]=7209,["Sand Storm"]=7226,["Ironaya"]=7228,["Shayis Steelfury"]=7230,["Kelgruk Bloodaxe"]=7231,["Borgus Steelhand"]=7232,["Taskmaster Fizzule"]=7233,["Ferocitas the Dream Eater"]=7234,["Gnarlpine Mystic"]=7235,["Sandfury Shadowhunter"]=7246,["Sandfury Soul Eater"]=7247,["Ember"]=7266,["Chief Ukorz Sandscalp"]=7267,["Sandfury Guardian"]=7268,["Scarab"]=7269,["Sandfury Zombie"]=7270,["Witch Doctor Zum'rah"]=7271,["Theka the Martyr"]=7272,["Gahz'rilla"]=7273,["Sandfury Executioner"]=7274,["Shadowpriest Sezz'ziz"]=7275,["Zul'Farrak Dead Hero"]=7276,["Zul'Farrak Zombie"]=7286,["Foreman Silixiz"]=7287,["Grand Foreman Puzik Gallywix"]=7288,["Shadowforge Sharpshooter"]=7290,["Galgann Firehammer"]=7291,["Dinita Stonemantle"]=7292,["[UNUSED] Drayl"]=7293,["Shim'la"]=7294,["Shailiea"]=7295,["Corand"]=7296,["Gothard Winslow"]=7297,["Demnul Farmountain"]=7298,["Venture Co. Lookout"]=7307,["Venture Co. Patroller"]=7308,["Earthen Custodian"]=7309,["Mutated Venture Co. Drone"]=7310,["Uthel'nay"]=7311,["Dink"]=7312,["Priestess A'moora"]=7313,["Darnath Bladesinger"]=7315,["Sister Aquinne"]=7316,["Oben Rageclaw"]=7317,["Rageclaw"]=7318,["Lady Sathrah"]=7319,["Stonevault Mauler"]=7320,["Stonevault Flameweaver"]=7321,["Riding Tiger (Black)"]=7322,["Winstone Wolfe"]=7323,["Simone Cantrell"]=7324,["Master Kang"]=7325,["Withered Warrior"]=7327,["Withered Reaver"]=7328,["Withered Quilguard"]=7329,["Withered Spearhide"]=7332,["Withered Battle Boar"]=7333,["Battle Boar Horror"]=7334,["Death's Head Geomancer"]=7335,["Death's Head Necromancer"]=7337,["Skeletal Shadowcaster"]=7340,["Skeletal Frostweaver"]=7341,["Skeletal Summoner"]=7342,["Splinterbone Skeleton"]=7343,["Splinterbone Warrior"]=7344,["Splinterbone Captain"]=7345,["Splinterbone Centurion"]=7346,["Boneflayer Ghoul"]=7347,["Thorn Eater Ghoul"]=7348,["Tomb Fiend"]=7349,["Tomb Reaver"]=7351,["Frozen Soul"]=7352,["Freezing Spirit"]=7353,["Ragglesnout"]=7354,["Tuten'kash"]=7355,["Plaguemaw the Rotting"]=7356,["Mordresh Fire Eye"]=7357,["Amnennar the Coldbringer"]=7358,["Dun Garok Soldier"]=7360,["Grubbis"]=7361,["Kum'isha the Collector"]=7363,["Flawless Draenethyst Sphere"]=7364,["Flawless Draenethyst Fragment"]=7365,["Stoneskin Totem IV"]=7366,["Stoneskin Totem V"]=7367,["Stoneskin Totem VI"]=7368,["Deadwind Brute"]=7369,["Restless Shade"]=7370,["Deadwind Mauler"]=7371,["Deadwind Warlock"]=7372,["Sky Shadow"]=7376,["Deadwind Ogre Mage"]=7379,["Siamese Cat"]=7380,["Silver Tabby Cat"]=7381,["Orange Tabby Cat"]=7382,["Black Tabby Cat"]=7383,["Cornish Rex Cat"]=7384,["Bombay Cat"]=7385,["White Kitten"]=7386,["Green Wing Macaw"]=7387,["Cockatoo"]=7388,["Senegal"]=7389,["Cockatiel"]=7390,["Hyacinth Macaw"]=7391,["Prairie Chicken"]=7392,["White Plymouth Rock"]=7393,["Ancona Chicken"]=7394,["Cockroach"]=7395,["Earthen Stonebreaker"]=7396,["Earthen Stonecarver"]=7397,["Stoneclaw Totem V"]=7398,["Stoneclaw Totem VI"]=7399,["Searing Totem V"]=7400,["Draenei Refugee"]=7401,["Searing Totem VI"]=7402,["Strength of Earth Totem IV"]=7403,["[UNUSED]Galak Flame Guard"]=7404,["Deadly Cleft Scorpid"]=7405,["Oglethorpe Obnoticus"]=7406,["Chief Engineer Bilgewhizzle"]=7407,["Spigot Operator Luglunket"]=7408,["Faltering Draenethyst Sphere"]=7409,["Thelman Slatefist"]=7410,["Spirit of Sathrah"]=7411,["Frost Resistance Totem II"]=7412,["Frost Resistance Totem III"]=7413,["Mana Spring Totem II"]=7414,["Mana Spring Totem III"]=7415,["Mana Spring Totem IV"]=7416,["Flametongue Totem III"]=7423,["Fire Resistance Totem II"]=7424,["Fire Resistance Totem III"]=7425,["Taim Ragetotem"]=7427,["Frostmaul Giant"]=7428,["Frostmaul Preserver"]=7429,["Young Frostsaber"]=7430,["Frostsaber"]=7431,["Frostsaber Stalker"]=7432,["Frostsaber Huntress"]=7433,["Frostsaber Pride Watcher"]=7434,["Cobalt Wyrmkin"]=7435,["Cobalt Scalebane"]=7436,["Cobalt Mageweaver"]=7437,["Winterfall Ursa"]=7438,["Winterfall Shaman"]=7439,["Winterfall Den Watcher"]=7440,["Winterfall Totemic"]=7441,["Winterfall Pathfinder"]=7442,["Shardtooth Mauler"]=7443,["Shardtooth Bear"]=7444,["Elder Shardtooth"]=7445,["Rabid Shardtooth"]=7446,["Fledgling Chillwind"]=7447,["Chillwind Chimaera"]=7448,["Chillwind Ravager"]=7449,["Ragged Owlbeast"]=7450,["Raging Owlbeast"]=7451,["Crazed Owlbeast"]=7452,["Moontouched Owlbeast"]=7453,["Berserk Owlbeast"]=7454,["Winterspring Owl"]=7455,["Winterspring Screecher"]=7456,["Rogue Ice Thistle"]=7457,["Ice Thistle Yeti"]=7458,["Ice Thistle Matriarch"]=7459,["Ice Thistle Patriarch"]=7460,["Hederine Initiate"]=7461,["Hederine Manastalker"]=7462,["Hederine Slayer"]=7463,["Magma Totem II"]=7464,["Magma Totem III"]=7465,["Magma Totem IV"]=7466,["Nature Resistance Totem"]=7467,["Nature Resistance Totem II"]=7468,["Nature Resistance Totem III"]=7469,["Windfury Totem II"]=7483,["Windfury Totem III"]=7484,["Nargatt"]=7485,["Grace of Air Totem"]=7486,["Grace of Air Totem II"]=7487,["Silverpine Deathguard"]=7489,["Bloodmage Drazial"]=7505,["Bloodmage Lynnore"]=7506,["Brown Snake"]=7507,["Black Kingsnake"]=7508,["Suffering Highborne"]=7523,["Anguished Highborne"]=7524,["Goblin Land Mine"]=7527,["Dark Whelpling"]=7543,["Crimson Whelpling"]=7544,["Emerald Whelpling"]=7545,["Bronze Whelpling"]=7546,["Azure Whelpling"]=7547,["Faeling"]=7548,["Tree Frog"]=7549,["Wood Frog"]=7550,["Dart Frog"]=7551,["Island Frog"]=7552,["Great Horned Owl"]=7553,["Snowy Owl"]=7554,["Hawk Owl"]=7555,["Eagle Owl"]=7556,["Cottontail Rabbit"]=7558,["Spotted Rabbit"]=7559,["Snowshoe Rabbit"]=7560,["Albino Snake"]=7561,["Blue Racer"]=7563,["Marin Noggenfogger"]=7564,["Scarlet Snake"]=7566,["Crimson Snake"]=7567,["Ribbon Snake"]=7568,["Green Water Snake"]=7569,["Elven Wisp"]=7570,["Fallen Hero of the Horde"]=7572,["Sprinkle"]=7583,["Wandering Forest Walker"]=7584,["Leprous Assistant"]=7603,["Sergeant Bly"]=7604,["Raven"]=7605,["Oro Eyegouge"]=7606,["Weegli Blastfuse"]=7607,["Murta Grimgut"]=7608,["Dispatch Commander Ruag"]=7623,["Bengor"]=7643,["Razelikh the Defiler"]=7664,["Grol the Destroyer"]=7665,["Archmage Allistarj"]=7666,["Lady Sevine"]=7667,["Servant of Razelikh"]=7668,["Servant of Grol"]=7669,["Servant of Allistarj"]=7670,["Servant of Sevine"]=7671,["Alessandro Luca"]=7683,["Riding Tiger (Yellow)"]=7684,["Riding Tiger (Red)"]=7686,["Spotted Frostsaber"]=7687,["Striped Nightsaber"]=7690,["Riding Raptor (Crimson)"]=7704,["Riding Raptor (Ivory)"]=7706,["Turquoise Raptor"]=7707,["Violet Raptor"]=7708,["Riding Tallstrider (Brown)"]=7709,["Riding Tallstrider (Gray)"]=7710,["Riding Tallstrider (Pink)"]=7711,["Riding Tallstrider (Purple)"]=7712,["Riding Tallstrider (Turquoise)"]=7713,["Byula"]=7714,["Senior Surveyor Fizzledowser"]=7724,["Grimtotem Raider"]=7725,["Grimtotem Naturalist"]=7726,["Grimtotem Shaman"]=7727,["Kirith the Damned"]=7728,["Spirit of Kirith"]=7729,["Stonetalon Grunt"]=7730,["Innkeeper Jayka"]=7731,["Dupe Bug"]=7732,["Innkeeper Fizzgrimble"]=7733,["Ilifar"]=7734,["Felcular"]=7735,["Innkeeper Shyria"]=7736,["Innkeeper Greul"]=7737,["Burning Servant"]=7738,["Red Mechanostrider"]=7739,["Gracina Spiritmight"]=7740,["Innkeeper Thulfram"]=7744,["Blue Mechanostrider"]=7749,["Corporal Thund Splithoof"]=7750,["Curgle Cranklehop"]=7763,["Troyas Moonbreeze"]=7764,["Rockbiter"]=7765,["Tyrion"]=7766,["Witherbark Felhunter"]=7767,["Witherbark Bloodling"]=7768,["Hazzali Parasite"]=7769,["Winkey"]=7770,["Marvon Rivetseeker"]=7771,["Kalin Windflight"]=7772,["Marli Wishrunner"]=7773,["Shay Leafrunner"]=7774,["Gregan Brewspewer"]=7775,["Talo Thornhoof"]=7776,["Rok Orhan"]=7777,["Doran Steelwing"]=7778,["Priestess Tyriona"]=7779,["Rin'ji"]=7780,["Loramus Thalipedes"]=7783,["Homing Robot OOX-17/TN"]=7784,["Ward of Zum'rah"]=7785,["Skeleton of Zum'rah"]=7786,["Sandfury Slave"]=7787,["Sandfury Drudge"]=7788,["Sandfury Cretin"]=7789,["Orokk Omosh"]=7790,["Aturk the Anvil"]=7792,["Ox"]=7793,["McGavan"]=7794,["Hydromancer Velratha"]=7795,["Nekrum Gutchewer"]=7796,["Ruuzlu"]=7797,["Hank the Hammer"]=7798,["Gimblethorn"]=7799,["Mekgineer Thermaplugg"]=7800,["Gilveradin Sunchaser"]=7801,["Galvan the Ancient"]=7802,["Scorpid Duneburrower"]=7803,["Trenton Lighthammer"]=7804,["Wastewander Scofflaw"]=7805,["Homing Robot OOX-09/HL"]=7806,["Homing Robot OOX-22/FE"]=7807,["Marauding Owlbeast"]=7808,["Vilebranch Ambusher"]=7809,["Bera Stonehammer"]=7823,["Bulkrek Ragefist"]=7824,["Oran Snakewrithe"]=7825,["Ambassador Ardalan"]=7826,["Gnomeregan Evacuee"]=7843,["Fire Nova Totem IV"]=7844,["Fire Nova Totem V"]=7845,["Teremus the Devourer"]=7846,["Caliph Scorpidsting"]=7847,["Lurking Feral Scar"]=7848,["Mobile Alert System"]=7849,["Kernobee"]=7850,["Nethergarde Elite"]=7851,["Pratt McGrubben"]=7852,["Scooty"]=7853,["Jangdor Swiftstrider"]=7854,["Southsea Pirate"]=7855,["Southsea Freebooter"]=7856,["Southsea Dock Worker"]=7857,["Southsea Swashbuckler"]=7858,["Dream Vision"]=7863,["Lingering Highborne"]=7864,["Wildhammer Sentry"]=7865,["Peter Galen"]=7866,["Thorkaf Dragoneye"]=7867,["Sarah Tanner"]=7868,["Brumn Winterhoof"]=7869,["Caryssia Moonhunter"]=7870,["Se'Jib"]=7871,["Death's Head Cultist"]=7872,["Razorfen Battleguard"]=7873,["Razorfen Thornweaver"]=7874,["Hadoken Swiftstrider"]=7875,["Tran'rek"]=7876,["Latronicus Moonspear"]=7877,["Vestia Moonspear"]=7878,["Quintis Jonespyre"]=7879,["Ginro Hearthkindle"]=7880,["Stoley"]=7881,["Security Chief Bilgewhizzle"]=7882,["Andre Firebeard"]=7883,["Fraggar Thundermantle"]=7884,["Spitelash Battlemaster"]=7885,["Spitelash Enchantress"]=7886,["Ambassador Bloodrage"]=7895,["Alarm-a-bomb 2600"]=7897,["Pirate treasure trigger mob"]=7898,["Treasure Hunting Pirate"]=7899,["Angelas Moonbreeze"]=7900,["Treasure Hunting Swashbuckler"]=7901,["Treasure Hunting Buccaneer"]=7902,["Jewel"]=7903,["Jacob"]=7904,["Daryn Lightwind"]=7907,["Walking Bomb"]=7915,["Erelas Ambersky"]=7916,["Brother Sarno"]=7917,["Stone Watcher of Norgannon"]=7918,["Lyon Mountainheart"]=7936,["High Tinker Mekkatorque"]=7937,["Feathermoon Sentinel"]=7939,["Darnall"]=7940,["Mardrack Greenwell"]=7941,["Faralorn"]=7942,["Harklane"]=7943,["Tinkmaster Overspark"]=7944,["Savanne"]=7945,["Brannock"]=7946,["Vivianna"]=7947,["Kylanna Windwhisper"]=7948,["Xylinnia Starshine"]=7949,["Master Mechanic Castpipe"]=7950,["Zas'Tysh"]=7951,["Zjolnir"]=7952,["Xar'Ti"]=7953,["Binjy Featherwhistle"]=7954,["Milli Featherwhistle"]=7955,["Kindal Moonweaver"]=7956,["Jer'kai Moonweaver"]=7957,["Camp Narache Brave"]=7975,["Thalgus Thunderfist"]=7976,["Gammerita"]=7977,["Bimble Longberry"]=7978,["Deathguard Elite"]=7980,["Vile Priestess Hexx"]=7995,["Qiaga the Keeper"]=7996,["Captured Sprite Darter"]=7997,["Blastmaster Emi Shortfuse"]=7998,["Tyrande Whisperwind"]=7999,["Ashenvale Sentinel"]=8015,["Barrens Guard"]=8016,["Sen'jin Guardian"]=8017,["Guthrum Thunderfist"]=8018,["Fyldren Moonfeather"]=8019,["Shyn"]=8020,["Orwin Gizzmick"]=8021,["Thadius Grimshade"]=8022,["Sharpbeak"]=8023,["Sharpbeak's Father"]=8024,["Sharpbeak's Mother"]=8025,["Thyn'tel Bladeweaver"]=8026,["Dark Iron Land Mine"]=8035,["Thelsamar Mountaineer"]=8055,["Edana Hatetalon"]=8075,["Sul'lithuz Sandcrawler"]=8095,["Westfall Brigade Guard"]=8096,["Witch Doctor Uzer'i"]=8115,["Ziggle Sparks"]=8116,["Wizbang Booms"]=8117,["Lillian Singh"]=8118,["Zikkel"]=8119,["Sul'lithuz Abomination"]=8120,["Jaxxil Sparks"]=8121,["Kizzak Sparks"]=8122,["Rickle Goldgrubber"]=8123,["Qizzik"]=8124,["Dirge Quikcleave"]=8125,["Nixx Sprocketspring"]=8126,["Antu'sul"]=8127,["Pikkle"]=8128,["Wrinkle Goodsteel"]=8129,["Sul'lithuz Hatchling"]=8130,["Blizrik Buckshot"]=8131,["Lord Shalzaru"]=8136,["Gikkix"]=8137,["Sul'lithuz Broodling"]=8138,["Jabbey"]=8139,["Brother Karman"]=8140,["Captain Evencane"]=8141,["Jannos Lighthoof"]=8142,["Loorana"]=8143,["Kulleg Stonehorn"]=8144,["Sheendra Tallgrass"]=8145,["Ruw"]=8146,["Camp Mojache Brave"]=8147,["Sul'lithuz Warder"]=8149,["Janet Hommers"]=8150,["Nijel's Point Guard"]=8151,["Harnor"]=8152,["Narv Hidecrafter"]=8153,["Ghost Walker Brave"]=8154,["Kargath Grunt"]=8155,["Servant of Antu'sul"]=8156,["Logannas"]=8157,["Bronk"]=8158,["Worb Strongstitch"]=8159,["Nioma"]=8160,["Harggan"]=8161,["Gharash"]=8176,["Rartar"]=8177,["Nina Lightbrew"]=8178,["Greater Healing Ward"]=8179,["Occulus"]=8196,["Chronalis"]=8197,["Tick"]=8198,["Warleader Krazzilak"]=8199,["Jin'Zallah the Sandbringer"]=8200,["Omgorn the Lost"]=8201,["Cyclok the Mad"]=8202,["Kregg Keelhaul"]=8203,["Soriid the Devourer"]=8204,["Haarka the Ravenous"]=8205,["Emberwing"]=8207,["Murderous Blisterpaw"]=8208,["Razortalon"]=8210,["Old Cliff Jumper"]=8211,["The Reak"]=8212,["Ironback"]=8213,["Jalinde Summerdrake"]=8214,["Grimungous"]=8215,["Retherokk the Berserker"]=8216,["Mith'rethis the Enchanter"]=8217,["Witherheart the Stalker"]=8218,["Zul'arek Hatefowler"]=8219,["Muck Frenzy"]=8236,["Curator Thorius"]=8256,["Oozeling"]=8257,["Soaring Razorbeak"]=8276,["Rekk'tilac"]=8277,["Smoldar"]=8278,["Faulty War Golem"]=8279,["Shleipnarr"]=8280,["Scald"]=8281,["Highlord Mastrogonde"]=8282,["Slave Master Blackheart"]=8283,["Dorius Stonetender"]=8284,["Mojo the Twisted"]=8296,["Magronos the Unyielding"]=8297,["Akubar the Seer"]=8298,["Spiteflayer"]=8299,["Ravage"]=8300,["Clack the Reaver"]=8301,["Deatheye"]=8302,["Grunter"]=8303,["Dreadscorn"]=8304,["Kixxle"]=8305,["Duhng"]=8306,["Tarban Hearthgrain"]=8307,["Alenndaar Lapidaar"]=8308,["Carlo Aurelius"]=8309,["Watcher Wollpert"]=8310,["Slime Maggot"]=8311,["Atal'ai Deathwalker's Spirit"]=8317,["Atal'ai Slave"]=8318,["Nightmare Whelp"]=8319,["Sprok"]=8320,["Atal'ai Skeleton"]=8324,["Hakkari Sapper"]=8336,["Dark Iron Steelshifter"]=8337,["Dark Iron Marksman"]=8338,["Chesmu"]=8356,["Atepa"]=8357,["Hewa"]=8358,["Ahanu"]=8359,["Elki"]=8360,["Chepi"]=8361,["Kuruk"]=8362,["Shadi Mistrunner"]=8363,["Pakwa"]=8364,["Mechanical Chicken"]=8376,["Alexandra Blazen"]=8378,["Archmage Xylem"]=8379,["Captain Vanessa Beltis"]=8380,["Lindros"]=8381,["Patrick Mills"]=8382,["Master Wood"]=8383,["Deep Lurker"]=8384,["Mura Runetotem"]=8385,["Horizon Scout Crewman"]=8386,["Horizon Scout First Mate"]=8387,["Horizon Scout Cook"]=8388,["Horizon Scout Engineer"]=8389,["Chemist Cuely"]=8390,["Lathoric the Black"]=8391,["Pilot Xiggs Fuselighter"]=8392,["Thersa Windsong"]=8393,["Roland Geardabbler"]=8394,["Sanath Lim-yo"]=8395,["Sentinel Dalia Sunblade"]=8396,["Sentinel Keldara Sunblade"]=8397,["Ohanko"]=8398,["Nyrill"]=8399,["Obsidion"]=8400,["Halpa"]=8401,["Enslaved Archaeologist"]=8402,["Jeremiah Payson"]=8403,["Xan'tish"]=8404,["Ogtinc"]=8405,["Warlord Krellian"]=8408,["Caravan Master Tset"]=8409,["Felix Whindlebolt"]=8416,["Dying Archaeologist"]=8417,["Falla Sagewind"]=8418,["Twilight Idolater"]=8419,["Kim'jael"]=8420,["Dorius"]=8421,["Zamael Lunthistle"]=8436,["Hakkari Minion"]=8437,["Hakkari Bloodkeeper"]=8438,["Nilith Lokrav"]=8439,["Shade of Hakkar"]=8440,["Raze"]=8441,["Shadowsilk Poacher"]=8442,["Avatar of Hakkar"]=8443,["Trade Master Kovic"]=8444,["Xiggs Fuselighter's Flyingmachine"]=8446,["Clunk"]=8447,["Skeletal Servant"]=8477,["Second Mate Shandril"]=8478,["Kalaran Windblade"]=8479,["Kalaran the Deceiver"]=8480,["Liv Rizzlefix"]=8496,["Nightmare Suppressor"]=8497,["Gibblewilt"]=8503,["Dark Iron Sentry"]=8504,["Eranikus the Chained"]=8506,["Tymor"]=8507,["Gretta Ganter"]=8508,["Squire Maltrake"]=8509,["Atal'ai Totem"]=8510,["Belnistrasz"]=8516,["Xiggs Fuselighter"]=8517,["Rynthariel the Keymaster"]=8518,["Blighted Surge"]=8519,["Plague Ravager"]=8520,["Blighted Horror"]=8521,["Plague Monstrosity"]=8522,["Scourge Soldier"]=8523,["Cursed Mage"]=8524,["Scourge Warder"]=8525,["Dark Caster"]=8526,["Scourge Guard"]=8527,["Dread Weaver"]=8528,["Scourge Champion"]=8529,["Cannibal Ghoul"]=8530,["Gibbering Ghoul"]=8531,["Diseased Flayer"]=8532,["Putrid Gargoyle"]=8534,["Putrid Shrieker"]=8535,["Interloper"]=8537,["Unseen Servant"]=8538,["Eyeless Watcher"]=8539,["Torn Screamer"]=8540,["Hate Shrieker"]=8541,["Death Singer"]=8542,["Stitched Horror"]=8543,["Gangled Golem"]=8544,["Stitched Golem"]=8545,["Dark Adept"]=8546,["Death Cultist"]=8547,["Vile Tutor"]=8548,["Shadowmage"]=8550,["Dark Summoner"]=8551,["Necromancer"]=8553,["Chief Sharptusk Thornmantle"]=8554,["Crypt Stalker"]=8555,["Crypt Walker"]=8556,["Crypt Horror"]=8557,["Crypt Slayer"]=8558,["Mossflayer Scout"]=8560,["Mossflayer Shadowhunter"]=8561,["Mossflayer Cannibal"]=8562,["Wretched Woodsman"]=8563,["Wretched Ranger"]=8564,["Wretched Pathstrider"]=8565,["Dark Iron Lookout"]=8566,["Glutton"]=8567,["Ag'tor Bloodfist"]=8576,["Magus Rimtori"]=8578,["Yeh'kinya"]=8579,["Atal'alarion"]=8580,["Blood Elf Defender"]=8581,["Kadrak"]=8582,["Dirania Silvershine"]=8583,["Iverron"]=8584,["Frost Spectre"]=8585,["Haggrum Bloodfist"]=8586,["Jediga"]=8587,["Umbranse the Spiritspeaker"]=8588,["Plaguehound Runt"]=8596,["Plaguehound"]=8597,["Frenzied Plaguehound"]=8598,["Plaguebat"]=8600,["Noxious Plaguebat"]=8601,["Monstrous Plaguebat"]=8602,["Carrion Grub"]=8603,["Carrion Devourer"]=8605,["Living Decay"]=8606,["Rotting Sludge"]=8607,["Angered Infernal"]=8608,["Alexandra Constantine"]=8609,["Kroum"]=8610,["Idol Room Spawner"]=8611,["Screecher Spirit"]=8612,["Mithril Dragonling"]=8615,["Infernal Servant"]=8616,["Zalashji"]=8617,["Morta'gya the Keeper"]=8636,["Dark Iron Watchman"]=8637,["Hukku's Voidwalker"]=8656,["Hukku's Succubus"]=8657,["Hukku's Imp"]=8658,["Jes'rimon"]=8659,["The Evalcharr"]=8660,["Auctioneer Beardo"]=8661,["Idol Oven Fire Target"]=8662,["Sunwalker Saern"]=8664,["Shylenai"]=8665,["Lil Timmy"]=8666,["Gusting Vortex"]=8667,["Felhound Tracker"]=8668,["Auctioneer Tolon"]=8669,["Auctioneer Chilton"]=8670,["Auctioneer Buckler"]=8671,["Auctioneer Leeka"]=8672,["Auctioneer Thathung"]=8673,["Auctioneer Stampi"]=8674,["Felbeast"]=8675,["World Goblin Engineering Trainer"]=8677,["Jubie Gadgetspring"]=8678,["Knaz Blunderflame"]=8679,["Outfitter Eric"]=8681,["Henry Stern"]=8696,["Dreadlord"]=8716,["Felguard Elite"]=8717,["Manahound"]=8718,["Auctioneer Fitch"]=8719,["Auctioneer Redmuse"]=8720,["Auctioneer Epitwee"]=8721,["Auctioneer Gullem"]=8722,["Auctioneer Golothas"]=8723,["Auctioneer Wabang"]=8724,["Buzzek Bracketswing"]=8736,["Linken"]=8737,["Vazario Linkgrease"]=8738,["Raytaf"]=8756,["Shahiar"]=8757,["Zaman"]=8758,["Mosshoof Runner"]=8759,["Mosshoof Stag"]=8760,["Mosshoof Courser"]=8761,["Timberweb Recluse"]=8762,["Mistwing Rogue"]=8763,["Mistwing Ravager"]=8764,["Forest Ooze"]=8766,["Sah'rhee"]=8767,["Emerald Dragon Whelp"]=8776,["Deathly Usher"]=8816,["Battle Chicken"]=8836,["Muck Splash"]=8837,["Tyrion's Spybot"]=8856,["Sandfury Acolyte"]=8876,["Sandfury Zealot"]=8877,["Muuran"]=8878,["Royal Historian Archesonus"]=8879,["Riding Ram"]=8881,["Riding Tiger"]=8882,["Riding Horse"]=8883,["Skeletal Mount"]=8884,["Riding Raptor"]=8885,["Deviate Python"]=8886,["A tormented voice"]=8887,["Franclorn Forgewright"]=8888,["Anvilrage Overseer"]=8889,["Anvilrage Warden"]=8890,["Anvilrage Guardsman"]=8891,["Anvilrage Footman"]=8892,["Anvilrage Soldier"]=8893,["Anvilrage Medic"]=8894,["Anvilrage Officer"]=8895,["Shadowforge Peasant"]=8896,["Doomforge Craftsman"]=8897,["Anvilrage Marshal"]=8898,["Doomforge Dragoon"]=8899,["Doomforge Arcanasmith"]=8900,["Anvilrage Reservist"]=8901,["Shadowforge Citizen"]=8902,["Anvilrage Captain"]=8903,["Shadowforge Senator"]=8904,["Warbringer Construct"]=8905,["Ragereaver Golem"]=8906,["Wrath Hammer Construct"]=8907,["Molten War Golem"]=8908,["Fireguard"]=8909,["Blazing Fireguard"]=8910,["Fireguard Destroyer"]=8911,["Twilight's Hammer Torturer"]=8912,["Twilight Emissary"]=8913,["Twilight Bodyguard"]=8914,["Twilight's Hammer Ambassador"]=8915,["Arena Spectator"]=8916,["Quarry Slave"]=8917,["Weapon Technician"]=8920,["Bloodhound"]=8921,["Bloodhound Mastiff"]=8922,["Panzor the Invincible"]=8923,["The Behemoth"]=8924,["Dredge Worm"]=8925,["Deep Stinger"]=8926,["Dark Screecher"]=8927,["Burrowing Thundersnout"]=8928,["Princess Moira Bronzebeard"]=8929,["Innkeeper Heather"]=8931,["Borer Beetle"]=8932,["Cave Creeper"]=8933,["Christopher Hewen"]=8934,["Pet Bomb"]=8937,["Angerclaw Bear"]=8956,["Angerclaw Grizzly"]=8957,["Angerclaw Mauler"]=8958,["Felpaw Wolf"]=8959,["Felpaw Scavenger"]=8960,["Felpaw Ravager"]=8961,["Nida"]=8962,["Effsee"]=8963,["Blackrock Drake"]=8964,["Shawn"]=8965,["Hematos"]=8976,["Krom'Grul"]=8977,["Thauris Balgarr"]=8978,["Gruklash"]=8979,["Firegut Captain"]=8980,["Malfunctioning Reaver"]=8981,["Ironhand Guardian"]=8982,["Golem Lord Argelmach"]=8983,["Voidwalker Minion"]=8996,["Gershala Nightwhisper"]=8997,["Bael'Gar"]=9016,["Lord Incendius"]=9017,["High Interrogator Gerstahn"]=9018,["Emperor Dagran Thaurissan"]=9019,["Commander Gor'shak"]=9020,["Kharan Mighthammer"]=9021,["Dughal Stormwing"]=9022,["Marshal Windsor"]=9023,["Pyromancer Loregrain"]=9024,["Lord Roccor"]=9025,["Overmaster Pyron"]=9026,["Gorosh the Dervish"]=9027,["Grizzle"]=9028,["Eviscerator"]=9029,["Ok'thor the Breaker"]=9030,["Anub'shiah"]=9031,["Hedrum the Creeper"]=9032,["General Angerforge"]=9033,["Hate'rel"]=9034,["Anger'rel"]=9035,["Vile'rel"]=9036,["Gloom'rel"]=9037,["Seeth'rel"]=9038,["Doom'rel"]=9039,["Dope'rel"]=9040,["Warder Stilgiss"]=9041,["Verek"]=9042,["Scarshield Grunt"]=9043,["Scarshield Sentry"]=9044,["Scarshield Acolyte"]=9045,["Scarshield Quartermaster"]=9046,["Jenal"]=9047,["Fineous Darkvire"]=9056,["Ghede"]=9076,["Warlord Goretooth"]=9077,["Shadowmage Vivian Lagrave"]=9078,["Hierophant Theodora Mulvadania"]=9079,["Lexlort"]=9080,["Galamav the Marksman"]=9081,["Thal'trak Proudtusk"]=9082,["Razal'blade"]=9083,["Thunderheart"]=9084,["Initiate Amakkar"]=9085,["Grunt Gargal"]=9086,["Bashana Runetotem"]=9087,["Rage Talon Dragonspawn"]=9096,["Scarshield Legionnaire"]=9097,["Scarshield Spellbinder"]=9098,["Sraaz"]=9099,["Eridan Bluewind"]=9116,["J.D. Collie"]=9117,["Larion"]=9118,["Muigin"]=9119,["Sha'ni Proudtusk"]=9136,["Ambassador Flamelash"]=9156,["Bloodpetal Pest"]=9157,["Warhorse"]=9158,["Young Diemetradon"]=9162,["Diemetradon"]=9163,["Elder Diemetradon"]=9164,["Fledgling Pterrordax"]=9165,["Pterrordax"]=9166,["Frenzied Pterrordax"]=9167,["Gorlop"]=9176,["Oralius"]=9177,["Burning Spirit"]=9178,["Jazzrik"]=9179,["Highlord Omokk"]=9196,["Spirestone Battle Mage"]=9197,["Spirestone Mystic"]=9198,["Spirestone Enforcer"]=9199,["Spirestone Reaver"]=9200,["Spirestone Ogre Magus"]=9201,["Spirestone Warlord"]=9216,["Spirestone Lord Magus"]=9217,["Spirestone Battle Lord"]=9218,["Spirestone Butcher"]=9219,["Shadow Hunter Vosh'gajin"]=9236,["War Master Voone"]=9237,["Quentin"]=9238,["Smolderthorn Mystic"]=9239,["Smolderthorn Shadow Priest"]=9240,["Smolderthorn Headhunter"]=9241,["Farm Chicken"]=9256,["Scarshield Warlock"]=9257,["Scarshield Raider"]=9258,["Firebrand Grunt"]=9259,["Firebrand Legionnaire"]=9260,["Firebrand Darkweaver"]=9261,["Firebrand Invoker"]=9262,["Firebrand Dreadweaver"]=9263,["Firebrand Pyromancer"]=9264,["Smolderthorn Shadow Hunter"]=9265,["Smolderthorn Witch Doctor"]=9266,["Smolderthorn Axe Thrower"]=9267,["Smolderthorn Berserker"]=9268,["Smolderthorn Seer"]=9269,["Williden Marshal"]=9270,["Hol'anyee Marshal"]=9271,["Spark Nilminer"]=9272,["Petra Grossen"]=9273,["Dadanga"]=9274,["Milly Osworth"]=9296,["Enraged Wyvern"]=9297,["Donova Snowden"]=9298,["Gaeriyan"]=9299,["Wenikee Boltbucket"]=9316,["Rilli Greasygob"]=9317,["Incendosaur"]=9318,["Houndmaster Grebmar"]=9319,["Boss Copperplug"]=9336,["Innkeeper Shul'kar"]=9356,["Blazerunner"]=9376,["Swirling Vortex"]=9377,["Ground Pounder"]=9396,["Unearthed Fossil"]=9397,["Twilight's Hammer Executioner"]=9398,["Scarshield Worg"]=9416,["Spawn of Bael'Gar"]=9436,["Dark Keeper Vorfalk"]=9437,["Dark Keeper Bethek"]=9438,["Dark Keeper Uggel"]=9439,["Dark Keeper Zimrel"]=9441,["Dark Keeper Ofgut"]=9442,["Dark Keeper Pelver"]=9443,["Dark Guard"]=9445,["Scarlet Warder"]=9447,["Scarlet Praetorian"]=9448,["Scarlet Cleric"]=9449,["Scarlet Curate"]=9450,["Scarlet Archmage"]=9451,["Scarlet Enchanter"]=9452,["Aquementas"]=9453,["Xavathras"]=9454,["Warlord Krom'zar"]=9456,["Horde Defender"]=9457,["Horde Axe Thrower"]=9458,["Cyrus Therepentous"]=9459,["Gadgetzan Bruiser"]=9460,["Frenzied Black Drake"]=9461,["Chieftain Bloodmaw"]=9462,["Overlord Ror"]=9464,["Golhine the Hooded"]=9465,["Miblon Snarltooth"]=9467,["Watchman Doomgrip"]=9476,["Cloned Ooze"]=9477,["Gorishi Egg"]=9496,["Gorishi Grub"]=9498,["Plugger Spazzring"]=9499,["Mistress Nagmara"]=9500,["Innkeeper Adegwa"]=9501,["Phalanx"]=9502,["Private Rocknot"]=9503,["Lord Banehollow"]=9516,["Shadow Lord Fel'dan"]=9517,["Rakaiah"]=9518,["Grark Lorkrub"]=9520,["Enraged Felbat"]=9521,["Blackrock Ambusher"]=9522,["Kolkar Stormseer"]=9523,["Kolkar Invader"]=9524,["Freewind Brave"]=9525,["Enraged Gryphon"]=9526,["Enraged Hippogryph"]=9527,["Arathandris Silversky"]=9528,["Maybess Riverbreeze"]=9529,["Maxwort Uberglint"]=9536,["Hurley Blackbreath"]=9537,["High Executioner Nuzrak"]=9538,["Shadow of Lexlort"]=9539,["Enohar Thunderbrew"]=9540,["Blackbreath Crony"]=9541,["Franclorn's Spirit"]=9542,["Ribbly Screwspigot"]=9543,["Yuka Screwspigot"]=9544,["Grim Patron"]=9545,["Raschal the Courier"]=9546,["Guzzling Patron"]=9547,["Cawind Trueaim"]=9548,["Borand"]=9549,["Furmund"]=9550,["Starn"]=9551,["Zanara"]=9552,["Nadia Vernon"]=9553,["Hammered Patron"]=9554,["Mu'uta"]=9555,["Felhound Minion"]=9556,["Grimble"]=9558,["Grizzlowe"]=9559,["Marshal Maxwell"]=9560,["Jalinda Sprig"]=9561,["Helendis Riverhorn"]=9562,["Ragged John"]=9563,["Frezza"]=9564,["Mayara Brightwing"]=9565,["Zapetta"]=9566,["Overlord Wyrmthalak"]=9568,["Orgrimmar Talent Master"]=9580,["Undercity Talent Master"]=9582,["Bloodaxe Veteran"]=9583,["Jalane Ayrole"]=9584,["Bannok Grimaxe"]=9596,["Arei"]=9598,["Parrot"]=9600,["Treant Spirit"]=9601,["Hahk'Zor"]=9602,["Gorgon'och"]=9604,["Blackrock Raider"]=9605,["Laris Geardawdle"]=9616,["Karna Remtravel"]=9618,["Torwa Pathfinder"]=9619,["Dreka'Sur"]=9620,["Gargantuan Ooze"]=9621,["U'cha"]=9622,["A-Me 01"]=9623,["Kireena"]=9636,["Scorching Totem"]=9637,["Pet Bombling"]=9656,["Lil' Smoky"]=9657,["Distract Test"]=9658,["Unkillable Test Dummy"]=9659,["Agnar Beastamer"]=9660,["Sprite Darter Hatchling"]=9662,["Tink Sprocketwhistle"]=9676,["Ograbisi"]=9677,["Shill Dinger"]=9678,["Tobias Seecher"]=9679,["Crest Killer"]=9680,["Jaz"]=9681,["Marshal Reginald Windsor"]=9682,["Lar'korwi Mate"]=9683,["Lar'korwi"]=9684,["Windwall Totem"]=9687,["Windwall Totem II"]=9688,["Windwall Totem III"]=9689,["Ember Worg"]=9690,["Venomtip Scorpid"]=9691,["Bloodaxe Raider"]=9692,["Bloodaxe Evoker"]=9693,["Slavering Ember Worg"]=9694,["Deathlash Scorpid"]=9695,["Bloodaxe Worg"]=9696,["Giant Ember Worg"]=9697,["Firetail Scorpid"]=9698,["Fire Beetle"]=9699,["Lava Crab"]=9700,["Spire Scorpid"]=9701,["Illusionary Dreamwatcher"]=9705,["Yorba Screwspigot"]=9706,["Scarshield Portal"]=9707,["Burning Imp"]=9708,["Bloodaxe Warmonger"]=9716,["Bloodaxe Summoner"]=9717,["Ghok Bashguud"]=9718,["Quartermaster Zigris"]=9736,["Flamekin Spitter"]=9776,["Flamekin Sprite"]=9777,["Flamekin Torcher"]=9778,["Flamekin Rager"]=9779,["Galgar"]=9796,["Pyroguard Emberseer"]=9816,["Blackhand Dreadweaver"]=9817,["Blackhand Summoner"]=9818,["Blackhand Veteran"]=9819,["Mathredis Firestar"]=9836,["Auctioneer Grimful"]=9856,["Auctioneer Grizzlin"]=9857,["Auctioneer Kresky"]=9858,["Auctioneer Lympkin"]=9859,["Salia"]=9860,["Moora"]=9861,["Jaedenar Legionnaire"]=9862,["Locheed"]=9876,["Prince Xavalis"]=9877,["Entropic Beast"]=9878,["Entropic Horror"]=9879,["Jarquia"]=9916,["Corrupted Kitten"]=9936,["Common Kitten"]=9937,["Magmus"]=9938,["Shadowforge Flame Keeper"]=9956,["Tharlidun"]=9976,["Sylista"]=9977,["Wesley"]=9978,["Sarah Goode"]=9979,["Shelby Stoneflint"]=9980,["Sikwa"]=9981,["Penny"]=9982,["Kelsuwa"]=9983,["Ulbrek Firehand"]=9984,["Laziphus"]=9985,["Shyrka Wolfrunner"]=9986,["Shoja'my"]=9987,["Xon'cha"]=9988,["Lina Hearthstove"]=9989,["Lanti'gah"]=9990,["Winna Hazzard"]=9996,["Spraggle Frock"]=9997,["Shizzle"]=9998,["Ringo"]=9999,["Arugal"]=10000,["Tainted Rat"]=10016,["Tainted Cockroach"]=10017,["Brackenwall Enforcer"]=10036,["Lakeshire Guard"]=10037,["Night Watch Guard"]=10038,["Gorishi Hive Guard"]=10040,["Gorishi Hive Queen"]=10041,["Corrupted Saber"]=10042,["Ribbly's Crony"]=10043,["Kirk Maxwell"]=10045,["Bethaine Flinthammer"]=10046,["Michael"]=10047,["Gereck"]=10048,["Hekkru"]=10049,["Seikwa"]=10050,["Seriadne"]=10051,["Maluressian"]=10052,["Anya Maulray"]=10053,["Bulrug"]=10054,["Morganus"]=10055,["Alassin"]=10056,["Theodore Mont Claire"]=10057,["Greth"]=10058,["Antarius"]=10059,["Grimestack"]=10060,["Killium Bouldertoe"]=10061,["Steven Black"]=10062,["Reggifuz"]=10063,["High Priestess of Thaurissan"]=10076,["Deathmaw"]=10077,["Terrorspark"]=10078,["Brave Moonhorn"]=10079,["Sandarr Dunereaver"]=10080,["Dustwraith"]=10081,["Zerillis"]=10082,["Rage Talon Flamescale"]=10083,["Jaelysia"]=10085,["Hesuwa Thunderhorn"]=10086,["Xao'tsu"]=10088,["Silvaria"]=10089,["Belia Thundergranite"]=10090,["High Justice Grimstone"]=10096,["Slave"]=10116,["Tortured Slave"]=10117,["Nessa Shadowsong"]=10118,["Volchan"]=10119,["Vault Warder"]=10120,["Chemist Fuely"]=10136,["Moonkin Oracle"]=10157,["Moonkin"]=10158,["Young Moonkin"]=10159,["Raging Moonkin"]=10160,["Rookery Whelp"]=10161,["Lord Victor Nefarius"]=10162,["Kaltunk"]=10176,["Spire Scarab"]=10177,["Riding MechaStrider (Black)"]=10179,["Unpainted Mechanostrider"]=10180,["Lady Sylvanas Windrunner"]=10181,["Rokaro"]=10182,["Moonflare Totem"]=10183,["Onyxia"]=10184,["General Colbatann"]=10196,["Mezzir the Howler"]=10197,["Kashoch the Reaver"]=10198,["Grizzle Snowpaw"]=10199,["Rak'shiri"]=10200,["Lady Hederine"]=10201,["Azurous"]=10202,["Misha"]=10204,["Gubber Blump"]=10216,["Flame Buffet Totem"]=10217,["Superior Healing Ward"]=10218,["Gwennyth Bly'Leggonde"]=10219,["Halycon"]=10220,["Bloodaxe Worg Pup"]=10221,["Bijou"]=10257,["Rookery Guardian"]=10258,["Worg Pup"]=10259,["Kibler"]=10260,["Burning Felhound"]=10261,["Opus"]=10262,["Burning Felguard"]=10263,["Solakar Flamewreath"]=10264,["Ug'thok"]=10266,["Tinkee Steamboil"]=10267,["Gizrul the Slavener"]=10268,["Rotgath Stonebeard"]=10276,["Groum Stonebeard"]=10277,["Thrag Stonehoof"]=10278,["Captured Felwood Ooze"]=10290,["Dulciea Frostmoon"]=10293,["Vaelan"]=10296,["Acride"]=10299,["Ranshalla"]=10300,["Jaron Stoneshaper"]=10301,["Krakle"]=10302,["Storm Shadowhoof"]=10303,["Aurora Skycaller"]=10304,["Umi Rumplesnicker"]=10305,["Trull Failbane"]=10306,["Witch Doctor Mau'ari"]=10307,["Blackhand Incarcerator"]=10316,["Blackhand Elite"]=10317,["Blackhand Assassin"]=10318,["Blackhand Iron Guard"]=10319,["Emberstrife"]=10321,["Riding Tiger (White)"]=10322,["Murkdeep"]=10323,["Gyth"]=10339,["Vaelastrasz the Red"]=10340,["Bayne"]=10356,["Ressan the Needler"]=10357,["Fellicent's Shade"]=10358,["Sri'skulk"]=10359,["Kergul Bloodaxe"]=10360,["Gruul Darkblade"]=10361,["General Drakkisath"]=10363,["Yaelika Farclaw"]=10364,["Rage Talon Dragon Guard"]=10366,["Shrye Ragefist"]=10367,["Trayexir"]=10369,["[UNUSED] Xur'gyl"]=10370,["Rage Talon Captain"]=10371,["Rage Talon Fire Tongue"]=10372,["Xabraxxis"]=10373,["Spire Spider"]=10374,["Spire Spiderling"]=10375,["Crystal Fang"]=10376,["Elu"]=10377,["Omusa Thunderhorn"]=10378,["Altsoba Ragetotem"]=10379,["Sanuye Runetotem"]=10380,["Ravaged Cadaver"]=10381,["Mangled Cadaver"]=10382,["Broken Cadaver"]=10383,["Spectral Citizen"]=10384,["Ghostly Citizen"]=10385,["Vengeful Phantom"]=10387,["Spiteful Phantom"]=10388,["Wrath Phantom"]=10389,["Skeletal Guardian"]=10390,["Skeletal Berserker"]=10391,["Skul"]=10393,["Black Guard Sentry"]=10394,["Thuzadin Shadowcaster"]=10398,["Thuzadin Acolyte"]=10399,["Thuzadin Necromancer"]=10400,["Pustulating Horror"]=10404,["Plague Ghoul"]=10405,["Ghoul Ravener"]=10406,["Fleshflayer Ghoul"]=10407,["Rockwing Gargoyle"]=10408,["Rockwing Screecher"]=10409,["Eye of Naxxramas"]=10411,["Crypt Crawler"]=10412,["Crypt Beast"]=10413,["Patchwork Horror"]=10414,["Ash'ari Crystal"]=10415,["Bile Spewer"]=10416,["Venom Belcher"]=10417,["Risen Guardsman"]=10418,["Risen Conjuror"]=10419,["Risen Initiate"]=10420,["Crimson Defender"]=10421,["Crimson Sorcerer"]=10422,["Crimson Priest"]=10423,["Risen Gallant"]=10424,["Crimson Battle Mage"]=10425,["Crimson Inquisitor"]=10426,["Pao'ka Swiftmountain"]=10427,["Motega Firemane"]=10428,["Warchief Rend Blackhand"]=10429,["The Beast"]=10430,["Gregor Greystone"]=10431,["Vectus"]=10432,["Marduk Blackpool"]=10433,["Magistrate Barthilas"]=10435,["Baroness Anastari"]=10436,["Nerub'enkan"]=10437,["Maleki the Pallid"]=10438,["Ramstein the Gorger"]=10439,["Baron Rivendare"]=10440,["Plagued Rat"]=10441,["Chromatic Whelp"]=10442,["Selina Dourman"]=10445,["Chromatic Dragonspawn"]=10447,["Binny Springblade"]=10455,["Prynne"]=10456,["Prospector Ironboot"]=10460,["Plagued Insect"]=10461,["Shrieking Banshee"]=10463,["Wailing Banshee"]=10464,["Mana Tide Totem"]=10467,["Felnok Steelspring"]=10468,["Scholomance Adept"]=10469,["Scholomance Neophyte"]=10470,["Scholomance Acolyte"]=10471,["Scholomance Occultist"]=10472,["Scholomance Student"]=10475,["Scholomance Necrolyte"]=10476,["Scholomance Necromancer"]=10477,["Splintered Skeleton"]=10478,["Skulking Corpse"]=10479,["Unstable Corpse"]=10480,["Reanimated Corpse"]=10481,["Risen Lackey"]=10482,["Risen Aberration"]=10485,["Risen Warrior"]=10486,["Risen Protector"]=10487,["Risen Construct"]=10488,["Risen Guard"]=10489,["Risen Bonewarder"]=10491,["Diseased Ghoul"]=10495,["Ragged Ghoul"]=10497,["Spectral Tutor"]=10498,["Spectral Researcher"]=10499,["Spectral Teacher"]=10500,["Lady Illucia Barov"]=10502,["Jandice Barov"]=10503,["Lord Alexei Barov"]=10504,["Instructor Malicia"]=10505,["Kirtonos the Herald"]=10506,["The Ravenian"]=10507,["Ras Frostwhisper"]=10508,["Jed Runewatcher"]=10509,["The Unforgiven"]=10516,["Plagued Maggot"]=10536,["Cliffwatcher Longhorn"]=10537,["Vaelastrasz"]=10538,["Hagar Lightninghoof"]=10539,["Vol'jin"]=10540,["Krakle's Thermometer"]=10541,["Lazy Peon"]=10556,["Flametongue Totem IV"]=10557,["Hearthsinger Forresten"]=10558,["Lady Vespia"]=10559,["Crypt Scarab"]=10577,["Bom'bay"]=10578,["Fetid Zombie"]=10580,["Young Arikara"]=10581,["Dog"]=10582,["Gryfe"]=10583,["Urok Doomhowl"]=10584,["Mother Smolderweb"]=10596,["Smolderweb Hatchling"]=10598,["Hulfnar Stonetotem"]=10599,["Thontek Rumblehoof"]=10600,["Urok Enforcer"]=10601,["Urok Ogre Magus"]=10602,["Hallucination"]=10603,["Huntress Nhemai"]=10604,["Scarlet Medic"]=10605,["Huntress Yaeliura"]=10606,["Scarlet Priest"]=10608,["Angus"]=10610,["Shorty"]=10611,["Guard Wachabe"]=10612,["Supervisor Raelen"]=10616,["Galak Messenger"]=10617,["Rivern Frostwind"]=10618,["Glacier"]=10619,["Pack Kodo"]=10636,["Malyfous Darkhammer"]=10637,["Kanati Greycloud"]=10638,["Rorgish Jowl"]=10639,["Oakpaw"]=10640,["Branch Snapper"]=10641,["Eck'alom"]=10642,["Mugglefin"]=10643,["Mist Howler"]=10644,["Thalia Amberhide"]=10645,["Lakota Windsong"]=10646,["Prince Raze"]=10647,["Xavaric"]=10648,["Guardian Felhunter"]=10656,["Corrupted Cat"]=10657,["Winna's Kitten"]=10658,["Cobalt Whelp"]=10659,["Cobalt Broodling"]=10660,["Spell Eater"]=10661,["Spellmaw"]=10662,["Manaclaw"]=10663,["Scryer"]=10664,["Junior Apothecary Holland"]=10665,["Gordo"]=10666,["Chromie"]=10667,["Beaten Corpse"]=10668,["Raider Jhash"]=10676,["Plagued Hatchling"]=10678,["Summoned Blackhand Dreadweaver"]=10680,["Summoned Blackhand Veteran"]=10681,["Raider Kerr"]=10682,["Rookery Hatcher"]=10683,["Remorseful Highborne"]=10684,["Swine"]=10685,["Refuge Pointe Defender"]=10696,["Bile Slime"]=10697,["Summoned Zombie"]=10698,["Carrion Scarab"]=10699,["Belfry Bat"]=10716,["Temporal Parasite"]=10717,["Shahram"]=10718,["Herald of Thrall"]=10719,["Galak Assassin"]=10720,["Novice Warrior"]=10721,["Shy-Rotam"]=10737,["High Chief Winterfall"]=10738,["Mulgris Deepriver"]=10739,["Awbee"]=10740,["Sian-Rotam"]=10741,["Blackhand Dragon Handler"]=10742,["Scalding Elemental"]=10756,["Boiling Elemental"]=10757,["Grimtotem Bandit"]=10758,["Grimtotem Stomper"]=10759,["Grimtotem Geomancer"]=10760,["Grimtotem Reaver"]=10761,["Blackhand Thug"]=10762,["Finkle Einhorn"]=10776,["Janice Felstone"]=10778,["Infected Squirrel"]=10779,["Infected Deer"]=10780,["Royal Overseer Bauhaus"]=10781,["Royal Factor Bathrilor"]=10782,["Orb of Deception (Tauren Male)"]=10785,["Warosh"]=10799,["Warosh the Redeemed"]=10800,["Jabbering Ghoul"]=10801,["Hitah'ya the Keeper"]=10802,["Rifleman Wheeler"]=10803,["Rifleman Middlecamp"]=10804,["Spotter Klemmy"]=10805,["Ursius"]=10806,["Brumeran"]=10807,["Timmy the Cruel"]=10808,["Stonespine"]=10809,["Instructor Galford"]=10811,["Grand Crusader Dathrohan"]=10812,["Balnazzar"]=10813,["Chromatic Elite Guard"]=10814,["Wandering Skeleton"]=10816,["Duggan Wildhammer"]=10817,["Death Knight Soulbearer"]=10818,["Baron Bloodbane"]=10819,["Duke Ragereaver"]=10820,["Hed'mush the Rotting"]=10821,["Warlord Thresh'jin"]=10822,["Zul'Brin Warpbranch"]=10823,["Ranger Lord Hawkspear"]=10824,["Gish the Unmoving"]=10825,["Lord Darkscythe"]=10826,["Deathspeaker Selendre"]=10827,["High General Abbendis"]=10828,["Farmer Dalson"]=10836,["High Executor Derrington"]=10837,["Commander Ashlam Valorfist"]=10838,["Argent Officer Garush"]=10839,["Argent Officer Pureheart"]=10840,["Argent Quartermaster Hasana"]=10856,["Argent Quartermaster Lightspark"]=10857,["Undead Scarab"]=10876,["Courier Hammerfall"]=10877,["Herald Moonstalker"]=10878,["Harbinger Balthazad"]=10879,["Warcaller Gorlach"]=10880,["Bluff Runner Windstrider"]=10881,["[Deprecated for 4.x]Arikara"]=10882,["Arnak Grimtotem"]=10896,["Sindrayl"]=10897,["Goraluk Anvilcrack"]=10899,["Lorekeeper Polkelt"]=10901,["Andorhal Tower One"]=10902,["Andorhal Tower Two"]=10903,["Andorhal Tower Three"]=10904,["Andorhal Tower Four"]=10905,["Winterfall Runner"]=10916,["Aurius"]=10917,["Lorax"]=10918,["Shatterspear Troll"]=10919,["Kelek Skykeeper"]=10920,["Taronn Redfeather"]=10921,["Greta Mosshoof"]=10922,["Tenell Leafrunner"]=10923,["Ivy Leafrunner"]=10924,["Rotting Worm"]=10925,["Pamela Redpath"]=10926,["Marlene Redpath"]=10927,["Succubus Minion"]=10928,["Haleh"]=10929,["Dargh Trueaim"]=10930,["Joseph Redpath"]=10936,["Captain Redpath"]=10937,["Redpath the Corrupted"]=10938,["Marduk the Black"]=10939,["Ghost of the Past"]=10940,["Wizlo Bearingshiner"]=10941,["Nessy"]=10942,["Decrepit Guardian"]=10943,["Davil Lightfire"]=10944,["Davil Crokford"]=10945,["Horgus the Ravager"]=10946,["Darrowshire Betrayer"]=10947,["Darrowshire Defender"]=10948,["Silver Hand Disciple"]=10949,["Redpath Militia"]=10950,["Marauding Corpse"]=10951,["Marauding Skeleton"]=10952,["Servant of Horgus"]=10953,["Bloodletter"]=10954,["Summoned Water Elemental"]=10955,["Naga Siren"]=10956,["Jeziba"]=10976,["Quixxil"]=10977,["Legacki"]=10978,["Scarlet Hound"]=10979,["Umi's Mechanical Yeti"]=10980,["Frostwolf"]=10981,["Whitewhisker Vermin"]=10982,["Snowblind Harpy"]=10986,["Irondeep Trogg"]=10987,["Kodo Spirit"]=10988,["Alterac Ram"]=10990,["Wildpaw Gnoll"]=10991,["Enraged Panther"]=10992,["Twizwick Sprocketgrind"]=10993,["Fallen Hero"]=10996,["Cannon Master Willey"]=10997,["Captured Arko'narin"]=11016,["Roxxik"]=11017,["Arko'narin"]=11018,["Jessir Moonbow"]=11019,["Remains of Trey Lightforge"]=11020,["Winterspring Frostsaber"]=11021,["Alexi Barov"]=11022,["Weldon Barov"]=11023,["Della"]=11024,["Mukdrak"]=11025,["Sprite Jumpsprocket"]=11026,["Illusory Wraith"]=11027,["Jemma Quikswitch"]=11028,["Trixie Quikswitch"]=11029,["Mindless Undead"]=11030,["Franklin Lloyd"]=11031,["Commander Malor"]=11032,["Smokey LaRue"]=11033,["Lord Maxwell Tyrosus"]=11034,["Betina Bigglezink"]=11035,["Leonid Barthalomew the Revered"]=11036,["Jenna Lemkenilli"]=11037,["Caretaker Alen"]=11038,["Duke Nicholas Zverenhoff"]=11039,["Watcher Brownell"]=11040,["Milla Fairancora"]=11041,["Sylvanna Forestmoon"]=11042,["Crimson Monk"]=11043,["Doctor Martin Felben"]=11044,["Whuut"]=11046,["Kray"]=11047,["Victor Ward"]=11048,["Rhiannon Davis"]=11049,["Trianna"]=11050,["Vhan"]=11051,["Timothy Worthington"]=11052,["High Priestess MacDonnell"]=11053,["Crimson Rifleman"]=11054,["Shadow Priestess Vandis"]=11055,["Alchemist Arbington"]=11056,["Apothecary Dithers"]=11057,["Fras Siabi"]=11058,["Carlin Redpath"]=11063,["Darrowshire Spirit"]=11064,["Thonys Pillarstone"]=11065,["Jhag"]=11066,["Malcomb Wynn"]=11067,["Betty Quin"]=11068,["Jenova Stoneshield"]=11069,["Lalina Summermoon"]=11070,["Mot Dawnstrider"]=11071,["Kitta Firewind"]=11072,["Annora"]=11073,["Hgarth"]=11074,["Cauldron Lord Bilemaw"]=11075,["Cauldron Lord Razarch"]=11076,["Cauldron Lord Malvinious"]=11077,["Cauldron Lord Soulwrath"]=11078,["Wynd Nightchaser"]=11079,["Faldron"]=11081,["Stratholme Courier"]=11082,["Darianna"]=11083,["Tarn"]=11084,["Randal Worth"]=11096,["Drakk Stonehand"]=11097,["Hahrana Ironhide"]=11098,["Argent Guard"]=11099,["Mana Tide Totem II"]=11100,["Mana Tide Totem III"]=11101,["Argent Rider"]=11102,["Innkeeper Lyshaerya"]=11103,["Shelgrayn"]=11104,["Aboda"]=11105,["Innkeeper Sikewa"]=11106,["Innkeeper Abeqwa"]=11116,["Awenasa"]=11117,["Innkeeper Vizzie"]=11118,["Azzleby"]=11119,["Risen Hammersmith"]=11120,["Black Guard Swordsmith"]=11121,["Restless Soul"]=11122,["Freed Soul"]=11136,["Xai'ander"]=11137,["Maethrya"]=11138,["Yugrek"]=11139,["Egan"]=11140,["Spirit of Trey Lightforge"]=11141,["Undead Postman"]=11142,["Postmaster Malown"]=11143,["Myolor Sunderfury"]=11145,["Ironus Coldsteel"]=11146,["Green Mechanostrider"]=11147,["The Scourge Cauldron"]=11152,["Red Skeletal Horse"]=11153,["Blue Skeletal Horse"]=11154,["Brown Skeletal Horse"]=11155,["Green Skeletal Warhorse"]=11156,["Krathok Moltenfist"]=11176,["Okothos Ironrager"]=11177,["Borgosh Corebender"]=11178,["Bloodvenom Post Brave"]=11180,["Shi'alune"]=11181,["Nixxrak"]=11182,["Blixxrak"]=11183,["Wixxrak"]=11184,["Xizzer Fizzbolt"]=11185,["Lunnix Sprocketslip"]=11186,["Himmik"]=11187,["Evie Whirlbrew"]=11188,["Qia"]=11189,["Everlook Bruiser"]=11190,["Lilith the Lithe"]=11191,["Kilram"]=11192,["Seril Scourgebane"]=11193,["Argent Defender"]=11194,["Shatterspear Drummer"]=11196,["Mindless Skeleton"]=11197,["Broken Exile"]=11198,["Crimson Cannon"]=11199,["Summoned Skeleton"]=11200,["Eva Sarkhoff"]=11216,["Lucien Sarkhoff"]=11217,["Kerlonian Evershade"]=11218,["Liladris Moonriver"]=11219,["Blood Parrot"]=11236,["Manifestation of Water"]=11256,["Scholomance Handler"]=11257,["Frail Skeleton"]=11258,["Nataka Longhorn"]=11259,["Northshire Peasant"]=11260,["Doctor Theolen Krastinov"]=11261,["Onyxian Whelp"]=11262,["Spectral Projection"]=11263,["Azshara Sentinel"]=11276,["Caer Darrow Citizen"]=11277,["Magnus Frostwake"]=11278,["Caer Darrow Guardsman"]=11279,["Caer Darrow Cannoneer"]=11280,["Caer Darrow Horseman"]=11281,["Melia"]=11282,["Sammy"]=11283,["Dark Shade"]=11284,["Rory"]=11285,["Magistrate Marduke"]=11286,["Baker Masterson"]=11287,["Spectral Betrayer"]=11288,["Spectral Defender"]=11289,["Mossflayer Zombie"]=11290,["Unliving Mossflayer"]=11291,["Darrowshire Poltergeist"]=11296,["Joseph Dirte"]=11316,["Jinar'Zillen"]=11317,["Ragefire Trogg"]=11318,["Ragefire Shaman"]=11319,["Earthborer"]=11320,["Molten Elemental"]=11321,["Searing Blade Cultist"]=11322,["Searing Blade Enforcer"]=11323,["Searing Blade Warlock"]=11324,["Panda Cub"]=11325,["Mini Diablo"]=11326,["Zergling"]=11327,["Eastvale Peasant"]=11328,["Hakkari Shadowcaster"]=11338,["Hakkari Shadow Hunter"]=11339,["Hakkari Blood Priest"]=11340,["Hakkari Oracle"]=11346,["Zealot Lor'Khan"]=11347,["Zealot Zath"]=11348,["Gurubashi Axe Thrower"]=11350,["Gurubashi Headhunter"]=11351,["Gurubashi Berserker"]=11352,["Gurubashi Blood Drinker"]=11353,["Gurubashi Warrior"]=11355,["Gurubashi Champion"]=11356,["Son of Hakkar"]=11357,["Soulflayer"]=11359,["Zulian Cub"]=11360,["Zulian Tiger"]=11361,["Zulian Panther"]=11365,["Bloodseeker Bat"]=11368,["Razzashi Broodwidow"]=11370,["Razzashi Serpent"]=11371,["Razzashi Adder"]=11372,["Razzashi Cobra"]=11373,["Hooktooth Frenzy"]=11374,["Foreman Thazz'ril"]=11378,["Jin'do the Hexxer"]=11380,["Bloodlord Mandokir"]=11382,["High Priestess Hai'watna"]=11383,["Sandfury Speaker"]=11387,["Witherbark Speaker"]=11388,["Bloodscalp Speaker"]=11389,["Skullsplitter Speaker"]=11390,["Vilebranch Speaker"]=11391,["Nara Meideros"]=11397,["Priestess Alathea"]=11401,["High Priest Rohan"]=11406,["Var'jun"]=11407,["Bibbly F'utzbuckle"]=11438,["Illusion of Jandice Barov"]=11439,["Gordok Enforcer"]=11440,["Gordok Brute"]=11441,["Gordok Mauler"]=11442,["Gordok Ogre-Mage"]=11443,["Gordok Mage-Lord"]=11444,["Gordok Captain"]=11445,["Gordok Spirit"]=11446,["Mushgog"]=11447,["Gordok Warlock"]=11448,["Gordok Reaver"]=11450,["Wildspawn Satyr"]=11451,["Wildspawn Rogue"]=11452,["Wildspawn Trickster"]=11453,["Wildspawn Betrayer"]=11454,["Wildspawn Felsworn"]=11455,["Wildspawn Shadowstalker"]=11456,["Wildspawn Hellcaller"]=11457,["Petrified Treant"]=11458,["Ironbark Protector"]=11459,["Alzzin's Minion"]=11460,["Warpwood Guardian"]=11461,["Warpwood Treant"]=11462,["Warpwood Tangler"]=11464,["Warpwood Stomper"]=11465,["Highborne Summoner"]=11466,["Tsu'zee"]=11467,["Eldreth Seether"]=11469,["Eldreth Sorcerer"]=11470,["Eldreth Apparition"]=11471,["Eldreth Spirit"]=11472,["Eldreth Spectre"]=11473,["Eldreth Phantasm"]=11475,["Skeletal Highborne"]=11476,["Rotting Highborne"]=11477,["Arcane Aberration"]=11480,["Mana Remnant"]=11483,["Residual Monstrosity"]=11484,["Prince Tortheldrin"]=11486,["Magister Kalendris"]=11487,["Illyanna Ravenoak"]=11488,["Tendris Warpwood"]=11489,["Zevrim Thornhoof"]=11490,["Old Ironbark"]=11491,["Alzzin the Wildshaper"]=11492,["Immol'thar"]=11496,["The Razza"]=11497,["Skarr the Broken"]=11498,["[UNUSED] Commander Gormaul"]=11499,["King Gordok"]=11501,["Ragnaros"]=11502,["Timbermaw Warder"]=11516,["Oggleflint"]=11517,["Jergosh the Invoker"]=11518,["Bazzalan"]=11519,["Taragaman the Hungerer"]=11520,["Kodo Apparition"]=11521,["Quartermaster Miranda Breechlock"]=11536,["TEST GEAR PALADIN"]=11537,["TEST GEAR WARRIOR"]=11538,["TEST GEAR HUNTER"]=11539,["TEST GEAR MAGE"]=11540,["TEST GEAR WARLOCK"]=11541,["TEST GEAR DRUID"]=11542,["TEST GEAR SHAMAN"]=11543,["TEST GEAR PRIEST"]=11544,["TEST GEAR ROGUE"]=11545,["Jack Sterling"]=11546,["Loh'atu"]=11548,["Necrofiend"]=11551,["Timbermaw Mystic"]=11552,["Timbermaw Woodbender"]=11553,["Grazle"]=11554,["Gorn One Eye"]=11555,["Salfa"]=11556,["Meilosh"]=11557,["Kernda"]=11558,["Outcast Necromancer"]=11559,["Magrami Spectre"]=11560,["Undead Ravager"]=11561,["Drysnap Crawler"]=11562,["Drysnap Pincer"]=11563,["Gizelton Caravan Kodo"]=11564,["Whirlwind Ripper"]=11576,["Whirlwind Stormwalker"]=11577,["Whirlwind Shredder"]=11578,["Scholomance Dark Summoner"]=11582,["Nefarian"]=11583,["Smeed Scrabblescrew"]=11596,["Risen Guardian"]=11598,["Irondeep Shaman"]=11600,["Irondeep Skullthumper"]=11602,["Whitewhisker Digger"]=11603,["Whitewhisker Geomancer"]=11604,["Whitewhisker Overseer"]=11605,["Bardu Sharpeye"]=11608,["Alexia Ironknife"]=11609,["Kirsta Deepshadow"]=11610,["Cavalier Durgen"]=11611,["Huntsman Radley"]=11613,["Bloodshot"]=11614,["Mickey Levine"]=11615,["Nathaniel Dumah"]=11616,["Spectral Marauder"]=11620,["Spectral Corpse"]=11621,["Rattlegore"]=11622,["Scourge Summoning Crystal"]=11623,["Taiga Wisemane"]=11624,["Cork Gizelton"]=11625,["Rigger Gizelton"]=11626,["Tamed Kodo"]=11627,["Jessica Redpath"]=11629,["Servant of Weldon Barov"]=11636,["Servant of Alexi Barov"]=11637,["Warsong Peon"]=11656,["Morloch"]=11657,["Molten Giant"]=11658,["Molten Destroyer"]=11659,["Flamewaker"]=11661,["Flamewaker Priest"]=11662,["Flamewaker Healer"]=11663,["Flamewaker Elite"]=11664,["Lava Annihilator"]=11665,["Firewalker"]=11666,["Flameguard"]=11667,["Firelord"]=11668,["Flame Imp"]=11669,["Core Hound"]=11671,["Core Rager"]=11672,["Core Hound"]=11673,["Snowblind Windcaller"]=11675,["Taskmaster Snivvle"]=11677,["Snowblind Ambusher"]=11678,["Horde Scout"]=11680,["Warsong Logger"]=11681,["Warsong Grunt"]=11682,["Warsong Shaman"]=11683,["Goblin Deforester"]=11684,["Maraudine Priest"]=11685,["Ghostly Raider"]=11686,["Ghostly Marauder"]=11687,["Cursed Centaur"]=11688,["Brown Kodo"]=11689,["Gnarlpine Instigator"]=11690,["Chal Fairwind"]=11696,["Mannoroc Lasher"]=11697,["Hive'Ashi Stinger"]=11698,["Varian Wrynn"]=11699,["Sarin Starlight"]=11700,["Mor'vek"]=11701,["Arin'sor"]=11702,["Graw Cornerstone"]=11703,["Kriss Goldenlight"]=11704,["Rayan Dawnrisen"]=11705,["Adon"]=11706,["Joy Ar'nareth"]=11707,["Coral Moongale"]=11708,["Jareth Wildwoods"]=11709,["Mirador"]=11710,["Sentinel Aynasha"]=11711,["Lilyn Darkriver"]=11712,["Blackwood Tracker"]=11713,["Marosh the Devious"]=11714,["Talendria"]=11715,["Celes Earthborne"]=11716,["Bethan Bluewater"]=11717,["Sar Browneye"]=11718,["Loruk Foreststrider"]=11720,["Hive'Ashi Worker"]=11721,["Hive'Ashi Defender"]=11722,["Hive'Ashi Sandstalker"]=11723,["Hive'Ashi Swarmer"]=11724,["Hive'Zora Waywatcher"]=11725,["Hive'Zora Tunneler"]=11726,["Hive'Zora Wasp"]=11727,["Hive'Zora Reaver"]=11728,["Hive'Zora Hive Sister"]=11729,["Hive'Regal Ambusher"]=11730,["Hive'Regal Burrower"]=11731,["Hive'Regal Spitfire"]=11732,["Hive'Regal Slavemaker"]=11733,["Hive'Regal Hive Lord"]=11734,["Stonelash Scorpid"]=11735,["Stonelash Pincer"]=11736,["Stonelash Flayer"]=11737,["Sand Skitterer"]=11738,["Rock Stalker"]=11739,["Dredge Striker"]=11740,["Dredge Crusher"]=11741,["Dust Stormer"]=11744,["Cyclone Warrior"]=11745,["Desert Rumbler"]=11746,["Desert Rager"]=11747,["Samantha Swifthoof"]=11748,["Feran Strongwind"]=11749,["Ganoosh"]=11750,["Rilan Howard"]=11751,["Blaise Montgomery"]=11752,["Gogo"]=11753,["Meggi Peppinrocker"]=11754,["Harlo Wigglesworth"]=11755,["Quinn"]=11756,["Umaron Stragarelm"]=11757,["Andi Lynn"]=11758,["Salome"]=11776,["Shadowshard Rumbler"]=11777,["Shadowshard Smasher"]=11778,["Ambershard Crusher"]=11781,["Ambershard Destroyer"]=11782,["Theradrim Shardling"]=11783,["Theradrim Guardian"]=11784,["Ambereye Basilisk"]=11785,["Ambereye Reaver"]=11786,["Rock Borer"]=11787,["Rock Worm"]=11788,["Deep Borer"]=11789,["Putridus Satyr"]=11790,["Putridus Trickster"]=11791,["Putridus Shadowstalker"]=11792,["Celebrian Dryad"]=11793,["Sister of Celebras"]=11794,["Mylentha Riverbend"]=11795,["Bessany Plainswind"]=11796,["Moren Riverbend"]=11797,["Bunthen Plainswind"]=11798,["Tajarri"]=11799,["Silva Fil'naveth"]=11800,["Rabine Saturna"]=11801,["Dendrite Starblaze"]=11802,["Twilight Keeper Exeter"]=11803,["Twilight Keeper Havunth"]=11804,["Jarund Stoutstrider"]=11805,["Sentinel Onaeya"]=11806,["Tristane Shadowstone"]=11807,["Grum Redbeard"]=11808,["Howin Kindfeather"]=11810,["Narain Soothfancy"]=11811,["Claira Kindfeather"]=11812,["Kerr Ironsight"]=11813,["Kali Remik"]=11814,["Voriya"]=11815,["Una Ji'ro"]=11816,["Krah'ranik"]=11817,["Orik'ando"]=11818,["Jory Zaga"]=11819,["Locke Okarr"]=11820,["Darn Talongrip"]=11821,["Moonglade Warden"]=11822,["Vark Battlescar"]=11823,["Erik Felixe"]=11824,["Paige Felixe"]=11825,["Kristy Grant"]=11826,["Kimberly Grant"]=11827,["Kelly Grant"]=11828,["Fahrak"]=11829,["Hakkari Priest"]=11830,["Hakkari Witch Doctor"]=11831,["Keeper Remulos"]=11832,["Rahauro"]=11833,["Maur Grimtotem"]=11834,["Theodore Griffs"]=11835,["Captured Rabid Thistle Bear"]=11836,["Wildpaw Shaman"]=11837,["Wildpaw Mystic"]=11838,["Wildpaw Brute"]=11839,["Wildpaw Alpha"]=11840,["Kaya Flathoof"]=11856,["Makaba Flathoof"]=11857,["Grundig Darkcloud"]=11858,["Doomguard"]=11859,["Maggran Earthbinder"]=11860,["Mor'rogal"]=11861,["Tsunaman"]=11862,["Azore Aldamort"]=11863,["Tammra Windfield"]=11864,["Buliwyf Stonehand"]=11865,["Ilyenia Moonfire"]=11866,["Woo Ping"]=11867,["Sayoc"]=11868,["Ansekhwa"]=11869,["Archibald"]=11870,["Grinning Dog"]=11871,["Myranda the Hag"]=11872,["Spectral Attendant"]=11873,["Masat T'andr"]=11874,["Mortar Team Target Dummy"]=11875,["Fel Spirit"]=11876,["Roon Wildmane"]=11877,["Nathanos Blightcaller"]=11878,["Twilight Avenger"]=11880,["Twilight Geolord"]=11881,["Twilight Stonecaller"]=11882,["Twilight Master"]=11883,["Obi"]=11884,["Blighthound"]=11885,["Mercutio Filthgorger"]=11886,["Crypt Robber"]=11887,["Borelgore"]=11896,["Duskwing"]=11897,["Crusader Lord Valdelmar"]=11898,["Shardi"]=11899,["Brakkar"]=11900,["Andruk"]=11901,["Grimtotem Ruffian"]=11910,["Grimtotem Mercenary"]=11911,["Grimtotem Brute"]=11912,["Grimtotem Sorcerer"]=11913,["Gorehoof the Black"]=11914,["Boulderslide Rock Keeper"]=11915,["Imelda"]=11916,["Boulderslide Geomancer"]=11917,["Boulderslide Stonepounder"]=11918,["Goggeroc"]=11920,["Besseleth"]=11921,["Artist Renfray"]=11936,["Demon Portal Guardian"]=11937,["Umber"]=11939,["Merissa Stilwell"]=11940,["Yori Crackhelm"]=11941,["Orenthil Whisperwind"]=11942,["Magga"]=11943,["Vorn Skyseer"]=11944,["Claire Willower"]=11945,["Drek'Thar"]=11946,["Captain Galvangar"]=11947,["Vanndar Stormpike"]=11948,["Captain Balinda Stonehearth"]=11949,["Great Bear Spirit"]=11956,["Great Cat Spirit"]=11957,["Kim Bridenbecker"]=11979,["Zuluhed the Whacked"]=11980,["Flamegor"]=11981,["Magmadar"]=11982,["Firemaw"]=11983,["Golemagg the Incinerator"]=11988,["Rob Bridenbecker"]=11994,["Ashley Bridenbecker"]=11996,["Stormpike Herald"]=11997,["Frostwolf Herald"]=11998,["Broodlord Lashlayer"]=12017,["Majordomo Executus"]=12018,["Dargon"]=12019,["Daeolyn Summerleaf"]=12021,["Lorelae Wintersong"]=12022,["Kharedon"]=12023,["Meliri"]=12024,["Malvor"]=12025,["My'lanna"]=12026,["Tukk"]=12027,["Lah'Mawhani"]=12028,["Narianna"]=12029,["Malux"]=12030,["Mai'Lahii"]=12031,["Lui'Mala"]=12032,["Wulan"]=12033,["Koiter"]=12034,["Grella Stonefist"]=12036,["Ursol'lok"]=12037,["Brannik Ironbelly"]=12040,["Loganaar"]=12042,["Kulwia"]=12043,["Hae'Wilani"]=12045,["Gor'marok the Ravager"]=12046,["Stormpike Mountaineer"]=12047,["Alliance Sentinel"]=12048,["Stormpike Defender"]=12050,["Frostwolf Legionnaire"]=12051,["Frostwolf Warrior"]=12052,["Frostwolf Guardian"]=12053,["Baron Geddon"]=12056,["Garr"]=12057,["Magma Elemental"]=12076,["Stormpike Quartermaster"]=12096,["Frostwolf Quartermaster"]=12097,["Sulfuron Harbinger"]=12098,["Firesworn"]=12099,["Lava Reaver"]=12100,["Lava Surger"]=12101,["Priestess of Elune"]=12116,["Lucifron"]=12118,["Flamewaker Protector"]=12119,["Plagueland Termite"]=12120,["Drakan"]=12121,["Duros"]=12122,["Reef Shark"]=12123,["Great Shark"]=12124,["Mammoth Shark"]=12125,["Lord Tirion Fordring"]=12126,["Stormpike Guardsman"]=12127,["Crimson Elite"]=12128,["Onyxian Warder"]=12129,["Snurk Bucksquick"]=12136,["Squibby Overspeck"]=12137,["Lunaclaw"]=12138,["Guardian of Elune"]=12140,["Ice Totem"]=12141,["Son of Flame"]=12143,["Lunaclaw Spirit"]=12144,["Riding Kodo (Teal)"]=12148,["Gray Kodo"]=12149,["Riding Kodo (Purple)"]=12150,["Riding Kodo (Green)"]=12151,["Voice of Elune"]=12152,["Korrak the Bloodrager"]=12159,["Shadowglen Sentinel"]=12160,["Tortured Druid"]=12178,["Tortured Sentinel"]=12179,["Innkeeper Kaylisk"]=12196,["Glordrum Steelbeard"]=12197,["Martin Lindsey"]=12198,["Shade of Ambermoon"]=12199,["Princess Theradras"]=12201,["Human Skull"]=12202,["Landslide"]=12203,["Spitelash Raider"]=12204,["Spitelash Witch"]=12205,["Primordial Behemoth"]=12206,["Thessala Hydra"]=12207,["Conquered Soul of the Blightcaller"]=12208,["Poison Sprite"]=12216,["Corruptor"]=12217,["Vile Larva"]=12218,["Barbed Lasher"]=12219,["Constrictor Vine"]=12220,["Noxious Slime"]=12221,["Creeping Sludge"]=12222,["Cavern Lurker"]=12223,["Cavern Shambler"]=12224,["Celebras the Cursed"]=12225,["Lord Vyletongue"]=12236,["Meshlok the Harvester"]=12237,["Zaetar's Spirit"]=12238,["Spirit of Gelk"]=12239,["Spirit of Kolk"]=12240,["Spirit of Magra"]=12241,["Spirit of Maraudos"]=12242,["Spirit of Veng"]=12243,["Mark of Detonation (NW)"]=12244,["Vendor-Tron 1000"]=12245,["Super-Seller 680"]=12246,["Scourge Structure"]=12247,["Infiltrator Hameya"]=12248,["Mark of Detonation (SW)"]=12249,["Zaeldarr the Outcast"]=12250,["Mark of Detonation (CLS)"]=12251,["Mark of Detonation (CRS)"]=12252,["Mark of Detonation (CSH)"]=12253,["Mark of Detonation (NESH)"]=12254,["Mark of Detonation (NE)"]=12255,["Mark of Detonation (SE)"]=12256,["Mechanical Yeti"]=12257,["Razorlash"]=12258,["Gehennas"]=12259,["Infected Mossflayer"]=12261,["Ziggurat Protector"]=12262,["Slaughterhouse Protector"]=12263,["Shazzrah"]=12264,["Lava Spawn"]=12265,["Melizza Brimbuzzle"]=12277,["Sickly Gazelle"]=12296,["Cured Gazelle"]=12297,["Sickly Deer"]=12298,["Cured Deer"]=12299,["Burning Blade Toxicologist"]=12319,["Burning Blade Crusher"]=12320,["Stormscale Toxicologist"]=12321,["Quel'Lithien Protector"]=12322,["Brother Crowley"]=12336,["Crimson Courier"]=12337,["Shadowprey Guardian"]=12338,["Demetria"]=12339,["Drulzegar Skraghook"]=12340,["Green Skeletal War Horse"]=12344,["Emerald Riding Raptor"]=12346,["Enraged Reef Crawler"]=12347,["Ivory Raptor"]=12348,["Turquoise Riding Raptor"]=12349,["Violet Riding Raptor"]=12350,["Dire Riding Wolf"]=12351,["Scarlet Cavalier"]=12352,["Timber Riding Wolf"]=12353,["Brown Riding Kodo"]=12354,["Gray Riding Kodo"]=12355,["Riding Striped Frostsaber"]=12358,["Riding Spotted Frostsaber"]=12359,["Riding Striped Nightsaber"]=12360,["Riding Nightsaber"]=12361,["Riding Frostsaber"]=12362,["Icy Blue Mechanostrider Mod A"]=12364,["Unpainted Mechanostrider X"]=12366,["White Mechanostrider Mod A"]=12368,["Lord Kragaru"]=12369,["Black Ram"]=12370,["Frost Ram"]=12371,["White Riding Ram Mount"]=12374,["Wailing Spectre"]=12377,["Damned Soul"]=12378,["Unliving Caretaker"]=12379,["Unliving Resident"]=12380,["Ley Sprite"]=12381,["Mana Sprite"]=12382,["Nibbles"]=12383,["Augustus the Touched"]=12384,["Mortar Team Advanced Target Dummy"]=12385,["Large Vile Slime"]=12387,["Doomguard Commander"]=12396,["Lord Kazzak"]=12397,["Blackwing Legionnaire"]=12416,["Gordok Hyena"]=12418,["Lifelike Toad"]=12419,["Blackwing Mage"]=12420,["Death Talon Dragonspawn"]=12422,["Guard Roberts"]=12423,["Flint Shadowmore"]=12425,["Masterwork Target Dummy"]=12426,["Mountaineer Dolf"]=12427,["Deathguard Kel"]=12428,["Sentinel Shaya"]=12429,["Grunt Kor'ja"]=12430,["Gorefang"]=12431,["Old Vicejaw"]=12432,["Krethis the Shadowspinner"]=12433,["Monster Generator (Blackwing)"]=12434,["Razorgore the Untamed"]=12435,["Blackwing Spellbinder"]=12457,["Blackwing Taskmaster"]=12458,["Blackwing Warlock"]=12459,["Death Talon Wyrmguard"]=12460,["Death Talon Overseer"]=12461,["Death Talon Flamescale"]=12463,["Death Talon Seether"]=12464,["Death Talon Wyrmkin"]=12465,["Death Talon Captain"]=12467,["Death Talon Hatcher"]=12468,["Arcanite Dragonling"]=12473,["Emeraldon Boughguard"]=12474,["Emeraldon Tree Warder"]=12475,["Emeraldon Oracle"]=12476,["Verdantine Boughguard"]=12477,["Verdantine Oracle"]=12478,["Verdantine Tree Warder"]=12479,["Melris Malagan"]=12480,["Justine Demalier"]=12481,["Dreamtracker"]=12496,["Dreamroarer"]=12497,["Dreamstalker"]=12498,["Grethok the Controller"]=12557,["Grish Longrunner"]=12576,["Jarrodenus"]=12577,["Mishellena"]=12578,["Bloodfury Ripper"]=12579,["Reginald Windsor"]=12580,["Mercutio"]=12581,["Bibilfaz Featherwhistle"]=12596,["Vhulgra"]=12616,["Khaelyn Steelwing"]=12617,["Georgia"]=12636,["Thamarian"]=12656,["Don Pompa"]=12657,["Adam Lind"]=12658,["Sharptalon"]=12676,["Shadumbra"]=12677,["Ursangous"]=12678,["Senani Thunderheart"]=12696,["Decedra Willham"]=12716,["Muglash"]=12717,["Gurda Ragescar"]=12718,["Marukai"]=12719,["Framnali"]=12720,["Mitsuwa"]=12721,["Vera Nightshade"]=12722,["Har'alen"]=12723,["Pixel"]=12724,["Je'neu Sancrea"]=12736,["Mastok Wrilehiss"]=12737,["Nori Pridedrift"]=12738,["Onyxia's Elite Guard"]=12739,["Faustron"]=12740,["Lady Onyxia"]=12756,["Karang Amakkar"]=12757,["Onyxia Trigger"]=12758,["Tideress"]=12759,["Hraug"]=12776,["Captain Dirgehammer"]=12777,["Lieutenant Rachel Vaccar"]=12778,["Archmage Gaiman"]=12779,["Sergeant Major Skyshadow"]=12780,["Master Sergeant Biggins"]=12781,["Captain O'Neal"]=12782,["Lieutenant Karter"]=12783,["Lieutenant Jackspring"]=12784,["Sergeant Major Clate"]=12785,["Guard Quine"]=12786,["Guard Hammon"]=12787,["Legionnaire Teena"]=12788,["Blood Guard Hini'wana"]=12789,["Advisor Willington"]=12790,["Chieftain Earthbind"]=12791,["Lady Palanseer"]=12792,["Brave Stonehide"]=12793,["Stone Guard Zarg"]=12794,["First Sergeant Hola'mahi"]=12795,["Raider Bork"]=12796,["Grunt Korf"]=12797,["Grunt Bek'rah"]=12798,["Sergeant Ba'sha"]=12799,["Chimaerok"]=12800,["Arcane Chimaerok"]=12801,["Chimaerok Devourer"]=12802,["Lord Lakmaeran"]=12803,["Officer Areyn"]=12805,["Magmakin"]=12806,["Greshka"]=12807,["Xen'Zilla"]=12816,["Ruul Snowhoof"]=12818,["Wandering Protector"]=12836,["Yama Snowhoof"]=12837,["Ashenvale Outrunner"]=12856,["Torek"]=12858,["Splintertree Raider"]=12859,["Duriel Moonfire"]=12860,["Warsong Scout"]=12862,["Warsong Runner"]=12863,["Warsong Outrider"]=12864,["Ambassador Malcin"]=12865,["Myriam Moonsinger"]=12866,["Kuray'bin"]=12867,["Baron Aquanis"]=12876,["Ertog Ragetusk"]=12877,["Silverwing Sentinel"]=12896,["Silverwing Warrior"]=12897,["Phantim Illusion"]=12898,["Axtroz"]=12899,["Somnus"]=12900,["Lorgus Jett"]=12902,["Splintertree Guard"]=12903,["Chief Murgut"]=12918,["Nat Pagle"]=12919,["Doctor Gregory Victor"]=12920,["Enraged Foulweald"]=12921,["Imp Minion"]=12922,["Wounded Soldier"]=12923,["Badly Injured Soldier"]=12924,["Critically Injured Soldier"]=12925,["Badly Injured Alliance Soldier"]=12936,["Critically Injured Alliance Soldier"]=12937,["Injured Alliance Soldier"]=12938,["Doctor Gustaf VanHowzen"]=12939,["Vorsha the Lasher"]=12940,["Jase Farlane"]=12941,["Leonard Porter"]=12942,["Werg Thickblade"]=12943,["Lokhtos Darkbargainer"]=12944,["Zannok Hidepiercer"]=12956,["Blimo Gadgetspring"]=12957,["Gigget Zipcoil"]=12958,["Nergal"]=12959,["Christi Galvanis"]=12960,["Kil'Hiwana"]=12961,["Wik'Tar"]=12962,["Kolkar Waylayer"]=12976,["Kolkar Ambusher"]=12977,["Mounted Ironforge Mountaineer"]=12996,["Monty"]=12997,["Dwarven Farmer"]=12998,["World Invisible Trigger"]=12999,["Gnome Engineer"]=13000,["Deeprun Rat"]=13016,["Enthralled Deeprun Rat"]=13017,["Nipsy"]=13018,["Burning Blade Seer"]=13019,["Vaelastrasz the Corrupt"]=13020,["Warpwood Crusher"]=13021,["Whip Lasher"]=13022,["Gordok Mastiff"]=13036,["Dun Morogh Mountaineer"]=13076,["Umi Thorson"]=13078,["Keetar"]=13079,["Irondeep Guard"]=13080,["Irondeep Raider"]=13081,["Milton Beats"]=13082,["Bixi Wobblebonk"]=13084,["Myrokos Silentform"]=13085,["Aggi Rumblestomp"]=13086,["Coldmine Invader"]=13087,["Masha Swiftcut"]=13088,["Coldmine Guard"]=13089,["Coldmine Explorer"]=13096,["Coldmine Surveyor"]=13097,["Irondeep Surveyor"]=13098,["Irondeep Explorer"]=13099,["Alliance Spirit Guide"]=13116,["Horde Spirit Guide"]=13117,["Crimson Bodyguard"]=13118,["Hive'Ashi Drone"]=13136,["Lieutenant Rugba"]=13137,["Lieutenant Spencer"]=13138,["Commander Randolph"]=13139,["Commander Dardosh"]=13140,["Deeprot Stomper"]=13141,["Deeprot Tangler"]=13142,["Lieutenant Stronghoof"]=13143,["Lieutenant Vol'talar"]=13144,["Lieutenant Grummus"]=13145,["Lieutenant Murp"]=13146,["Lieutenant Lewis"]=13147,["Flame of Ragnaros"]=13148,["Commander Malgor"]=13152,["Commander Mulfort"]=13153,["Commander Louis Philips"]=13154,["Makasgar"]=13157,["Lieutenant Sanders"]=13158,["James Clark"]=13159,["Carrion Swarmer"]=13160,["Aerie Gryphon"]=13161,["Smith Regzar"]=13176,["Vahgruk"]=13177,["War Rider"]=13178,["Wing Commander Guse"]=13179,["Wing Commander Jeztor"]=13180,["Wing Commander Mulverick"]=13181,["Phase Lasher"]=13196,["Fel Lash"]=13197,["Gaelden Hammersmith"]=13216,["Thanthaldis Snowgleam"]=13217,["Grunnda Wolfheart"]=13218,["Jorek Ironside"]=13219,["Layo Starstrike"]=13220,["Primalist Thurloga"]=13236,["Lokholar the Ice Lord"]=13256,["Murgot Deepforge"]=13257,["Wildspawn Imp"]=13276,["Dahne Pierce"]=13277,["Duke Hydraxis"]=13278,["Discordant Surge"]=13279,["Hydrospawn"]=13280,["Noxxion"]=13282,["Lord Tony Romano"]=13283,["Frostwolf Shaman"]=13284,["Death Lash"]=13285,["Lieutenant Largent"]=13296,["Lieutenant Stouthandle"]=13297,["Lieutenant Greywand"]=13298,["Lieutenant Lonadin"]=13299,["Lieutenant Mancuso"]=13300,["Hive'Ashi Ambusher"]=13301,["Coldmine Peon"]=13316,["Coldmine Miner"]=13317,["Commander Mortimer"]=13318,["Commander Duffy"]=13319,["Commander Karl Philips"]=13320,["Small Frog"]=13321,["Hydraxian Honor Guard"]=13322,["Subterranean Diemetradon"]=13323,["Seasoned Guardsman"]=13324,["Seasoned Mountaineer"]=13325,["Seasoned Defender"]=13326,["Seasoned Sentinel"]=13327,["Seasoned Guardian"]=13328,["Seasoned Legionnaire"]=13329,["Seasoned Warrior"]=13330,["Veteran Defender"]=13331,["Veteran Guardian"]=13332,["Veteran Guardsman"]=13333,["Veteran Legionnaire"]=13334,["Veteran Mountaineer"]=13335,["Veteran Sentinel"]=13336,["Veteran Warrior"]=13337,["Core Rat"]=13338,["Stormpike Bowman"]=13358,["Frostwolf Bowman"]=13359,["Frostwolf Shredder Unit"]=13378,["Irondeep Miner"]=13396,["Irondeep Peon"]=13397,["Stormpike Shredder Unit"]=13416,["Sagorne Creststrider"]=13417,["Kaymard Copperpinch"]=13418,["Ivus the Forest Lord"]=13419,["Penney Copperpinch"]=13420,["Champion Guardian"]=13421,["Champion Defender"]=13422,["Champion Guardsman"]=13424,["Champion Legionnaire"]=13425,["Champion Mountaineer"]=13426,["Champion Sentinel"]=13427,["Nardstrum Copperpinch"]=13429,["Jaycrue Copperpinch"]=13430,["Whulwert Copperpinch"]=13431,["Seersa Copperpinch"]=13432,["Wulmort Jinglepocket"]=13433,["Macey Jinglepocket"]=13434,["Khole Jinglepocket"]=13435,["Guchie Jinglepocket"]=13436,["Wing Commander Ichman"]=13437,["Wing Commander Slidore"]=13438,["Wing Commander Vipore"]=13439,["Frostwolf Wolf Rider"]=13440,["Frostwolf Wolf Rider Commander"]=13441,["Arch Druid Renferal"]=13442,["Druid of the Grove"]=13443,["Greatfather Winter"]=13444,["Great-father Winter"]=13445,["Field Marshal Teravaine"]=13446,["Corporal Noreg Stormpike"]=13447,["Sergeant Yazra Bloodsnarl"]=13448,["Warmaster Garrick"]=13449,["Noxxion's Spawn"]=13456,["Zen'Balai"]=13476,["Stormpike Commando"]=13524,["Seasoned Commando"]=13525,["Veteran Commando"]=13526,["Champion Commando"]=13527,["Seasoned Reaver"]=13529,["Veteran Reaver"]=13530,["Champion Reaver"]=13531,["Spewed Larva"]=13533,["Seasoned Coldmine Guard"]=13534,["Veteran Coldmine Guard"]=13535,["Champion Coldmine Guard"]=13536,["Seasoned Coldmine Surveyor"]=13537,["Veteran Coldmine Surveyor"]=13538,["Champion Coldmine Surveyor"]=13539,["Seasoned Irondeep Explorer"]=13540,["Veteran Irondeep Explorer"]=13541,["Champion Irondeep Explorer"]=13542,["Seasoned Irondeep Raider"]=13543,["Veteran Irondeep Raider"]=13544,["Champion Irondeep Raider"]=13545,["Seasoned Coldmine Explorer"]=13546,["Veteran Coldmine Explorer"]=13547,["Champion Coldmine Explorer"]=13548,["Seasoned Coldmine Invader"]=13549,["Veteran Coldmine Invader"]=13550,["Champion Coldmine Invader"]=13551,["Seasoned Irondeep Guard"]=13552,["Veteran Irondeep Guard"]=13553,["Champion Irondeep Guard"]=13554,["Seasoned Irondeep Surveyor"]=13555,["Veteran Irondeep Surveyor"]=13556,["Champion Irondeep Surveyor"]=13557,["Stormpike Ram Rider"]=13576,["Stormpike Ram Rider Commander"]=13577,["Rotgrip"]=13596,["Frostwolf Explosives Expert"]=13597,["Stormpike Explosives Expert"]=13598,["Stolid Snapjaw"]=13599,["Tinkerer Gizlock"]=13601,["The Abominable Greench"]=13602,["Frostwolf Stable Master"]=13616,["Stormpike Stable Master"]=13617,["Stabled Frostwolf"]=13618,["Strange Snowman"]=13636,["Willow"]=13656,["Noxxious Scion"]=13696,["Cavindra"]=13697,["Keeper Marandis"]=13698,["Selendra"]=13699,["Celebras the Redeemed"]=13716,["Centaur Pariah"]=13717,["The Nameless Prophet"]=13718,["Noxxious Essence"]=13736,["Marandis' Sister"]=13737,["Veng"]=13738,["Maraudos"]=13739,["Magra"]=13740,["Gelk"]=13741,["Kolk"]=13742,["Corrupt Force of Nature"]=13743,["PvP Graveyard Credit Marker"]=13756,["Corporal Teeka Bloodsnarl"]=13776,["Sergeant Durgen Stormpike"]=13777,["PvP Tower Credit Marker"]=13778,["PvP Mine Credit Marker"]=13796,["Mountaineer Boombellow"]=13797,["Jotek"]=13798,["Prospector Stonehewer"]=13816,["Voggah Deathgrip"]=13817,["Burning Blade Nightmare"]=13836,["Captured Stallion"]=13837,["Royal Dreadguard"]=13839,["Warmaster Laggrond"]=13840,["Lieutenant Haggerdin"]=13841,["Frostwolf Ambassador Rokhstrom"]=13842,["Lieutenant Rotimer"]=13843,["Mekgineer Trigger"]=13876,["Scalebeard"]=13896,["Dire Maul Crystal Totem"]=13916,["Izzy Coppergrab"]=13917,["Ravenholdt"]=13936,["Alterac Yeti"]=13959,["Tortured Drake"]=13976,["Blackwing Technician"]=13996,["Chromaggus"]=14020,["Corrupted Red Whelp"]=14022,["Corrupted Green Whelp"]=14023,["Corrupted Blue Whelp"]=14024,["Corrupted Bronze Whelp"]=14025,["Trigger Guse"]=14026,["Trigger Mulverick"]=14027,["Trigger Jeztor"]=14028,["Trigger Ichman"]=14029,["Trigger Slidore"]=14030,["Trigger Vipore"]=14031,["Haggle"]=14041,["Demon Portal"]=14081,["Enraged Felguard"]=14101,["Deeprun Diver"]=14121,["Massive Geyser"]=14122,["Steeljaw Snapper"]=14123,["Ar'lia"]=14143,["RaidMage"]=14162,["Bounty Hunter Kolark"]=14182,["Artilleryman Sheldonore"]=14183,["Najak Hexxen"]=14185,["Ravak Grimtotem"]=14186,["Athramanis"]=14187,["Dirk Swindle"]=14188,["Gravis Slipknot"]=14221,["Araga"]=14222,["Cranky Benj"]=14223,["7:XT"]=14224,["Prince Kellen"]=14225,["Kaskk"]=14226,["Hissperak"]=14227,["Giggler"]=14228,["Accursed Slitherblade"]=14229,["Burgle Eye"]=14230,["Drogoth the Roamer"]=14231,["Dart"]=14232,["Ripscale"]=14233,["Hayoc"]=14234,["The Rot"]=14235,["Lord Angler"]=14236,["Oozeworm"]=14237,["Ironbark the Redeemed"]=14241,["[UNUSED] Sulhasa"]=14242,["Blue Drakonid"]=14261,["Green Drakonid"]=14262,["Bronze Drakonid"]=14263,["Red Drakonid"]=14264,["Black Drakonid"]=14265,["Shanda the Spinner"]=14266,["Emogg the Crusher"]=14267,["Lord Condar"]=14268,["Seeker Aqualon"]=14269,["Squiddic"]=14270,["Ribchaser"]=14271,["Snarlflare"]=14272,["Boulderheart"]=14273,["Tamra Stormpike"]=14275,["Scargil"]=14276,["Lady Zephris"]=14277,["Ro'Bark"]=14278,["Creepthess"]=14279,["Big Samras"]=14280,["Jimmy the Bleeder"]=14281,["Frostwolf Bloodhound"]=14282,["Stormpike Owl"]=14283,["Stormpike Battleguard"]=14284,["Frostwolf Battleguard"]=14285,["Brinna Valanaar"]=14301,["Chromatic Drakonid"]=14302,["Petrified Guardian"]=14303,["Kor'kron Elite"]=14304,["Human Orphan"]=14305,["Eskhandar"]=14306,["Black Drakonid Spawner"]=14307,["Ferra"]=14308,["Red Drakonid Spawner"]=14309,["Green Drakonid Spawner"]=14310,["Bronze Drakonid Spawner"]=14311,["Blue Drakonid Spawner"]=14312,["Guard Fengus"]=14321,["Stomper Kreeg"]=14322,["Guard Slip'kik"]=14323,["Cho'Rush the Observer"]=14324,["Captain Kromcrush"]=14325,["Guard Mol'dar"]=14326,["Lethtendris"]=14327,["Black War Wolf"]=14329,["Black War Raptor"]=14330,["Red Skeletal Warhorse"]=14331,["Black War Steed"]=14332,["Black War Kodo"]=14333,["Black Battlestrider"]=14334,["Black War Ram"]=14335,["Black War Tiger"]=14336,["Field Repair Bot 74A"]=14337,["Knot Thimblejack"]=14338,["Death Howl"]=14339,["Alshirr Banebreath"]=14340,["Ragepaw"]=14342,["Olm the Wise"]=14343,["Mongress"]=14344,["The Ongar"]=14345,["Highlord Demitrian"]=14347,["Earthcaller Franzahl"]=14348,["Pimgib"]=14349,["Hydroling"]=14350,["Gordok Bushwacker"]=14351,["Mizzle the Crafty"]=14353,["Pusillin"]=14354,["Azj'Tordin"]=14355,["Sawfin Frenzy"]=14356,["Lake Thresher"]=14357,["Shen'dralar Ancient"]=14358,["Shen'dralar Wisp"]=14361,["Thornling"]=14362,["Thief Catcher Shadowdelve"]=14363,["Shen'dralar Spirit"]=14364,["Thief Catcher Farmountain"]=14365,["Warpwood Spores"]=14366,["Thief Catcher Thunderbrew"]=14367,["Lorekeeper Lydros"]=14368,["Shen'dralar Zealot"]=14369,["Cadaverous Worm"]=14370,["Shen'dralar Provisioner"]=14371,["Winterfall Ambusher"]=14372,["Sage Korolusk"]=14373,["Scholar Runethorn"]=14374,["Scout Stronghand"]=14375,["Scout Manslayer"]=14376,["Scout Tharr"]=14377,["Huntress Skymane"]=14378,["Huntress Ravenoak"]=14379,["Huntress Leafrunner"]=14380,["Lorekeeper Javon"]=14381,["Lorekeeper Mykos"]=14382,["Lorekeeper Kildrath"]=14383,["Doomguard Minion"]=14385,["Wandering Eye of Kilrogg"]=14386,["Lothos Riftwaker"]=14387,["Rogue Black Drake"]=14388,["Netherwalker"]=14389,["Expeditionary Mountaineer"]=14390,["Overlord Runthak"]=14392,["Expeditionary Priest"]=14393,["Major Mattingly"]=14394,["Griniblix the Spectator"]=14395,["Eye of Immol'thar"]=14396,["Mana Burst"]=14397,["Eldreth Darter"]=14398,["Arcane Torrent"]=14399,["Arcane Feedback"]=14400,["Master Elemental Shaper Krixix"]=14401,["Seeker Cromwell"]=14402,["Seeker Nahr"]=14403,["Seeker Thompson"]=14404,["Brown Prairie Dog"]=14421,["Officer Jaxon"]=14423,["Mirelow"]=14424,["Gnawbone"]=14425,["Harb Foulmountain"]=14426,["Gibblesnik"]=14427,["Uruson"]=14428,["Grimmaw"]=14429,["Duskstalker"]=14430,["Fury Shelda"]=14431,["Threggil"]=14432,["Sludginn"]=14433,["Alarm-o-Bot"]=14434,["Prince Thunderaan"]=14435,["Mor'zul Bloodbringer"]=14436,["Gorzeeki Wildeyes"]=14437,["Officer Pomeroy"]=14438,["Officer Brady"]=14439,["Hunter Sagewind"]=14440,["Hunter Ragetotem"]=14441,["Hunter Thunderhorn"]=14442,["Doomguard Tap Trigger"]=14443,["Orcish Orphan"]=14444,["Lord Captain Wyrmak"]=14445,["Fingat"]=14446,["Gilmorian"]=14447,["Molt Thorn"]=14448,["Blackwing Orb Trigger"]=14449,["Orphan Matron Nightingale"]=14450,["Orphan Matron Battlewail"]=14451,["Enslaved Doomguard Commander"]=14452,["Orb of Domination"]=14453,["The Windreaver"]=14454,["Whirling Invader"]=14455,["Blackwing Guardsman"]=14456,["Princess Tempestria"]=14457,["Watery Invader"]=14458,["Nefarian's Troops"]=14459,["Blazing Invader"]=14460,["Baron Charr"]=14461,["Thundering Invader"]=14462,["Daio the Decrepit"]=14463,["Avalanchion"]=14464,["Alliance Battle Standard"]=14465,["Horde Battle Standard"]=14466,["Kroshius"]=14467,["Niby the Almighty"]=14469,["Impsy"]=14470,["Setis"]=14471,["Gretheer"]=14472,["Lapress"]=14473,["Zora"]=14474,["Rex Ashil"]=14475,["Krellack"]=14476,["Grubthor"]=14477,["Huricanian"]=14478,["Twilight Lord Everun"]=14479,["Alowicious Czervik"]=14480,["Emmithue Smails"]=14481,["Xorothian Imp"]=14482,["Dread Guard"]=14483,["Injured Peasant"]=14484,["Plagued Peasant"]=14485,["Scourge Footsoldier"]=14486,["Gluggle"]=14487,["Roloch"]=14488,["Scourge Archer"]=14489,["Rippa"]=14490,["Kurmokk"]=14491,["Verifonix"]=14492,["Eris Havenfire"]=14494,["Invisible Trigger One"]=14495,["Stormwind Orphan"]=14496,["Shellene"]=14497,["Tosamina"]=14498,["Horde Orphan"]=14499,["J'eevee"]=14500,["Xorothian Dreadsteed"]=14502,["The Cleaner"]=14503,["Dreadsteed Spirit"]=14504,["Dreadsteed"]=14505,["Lord Hel'nurath"]=14506,["High Priest Venoxis"]=14507,["Short John Mithril"]=14508,["High Priest Thekal"]=14509,["High Priestess Mar'li"]=14510,["Shadowed Spirit"]=14511,["Corrupted Spirit"]=14512,["Malicious Spirit"]=14513,["Banal Spirit"]=14514,["High Priestess Arlokk"]=14515,["Death Knight Darkreaver"]=14516,["High Priestess Jeklik"]=14517,["Aspect of Banality"]=14518,["Aspect of Corruption"]=14519,["Aspect of Malice"]=14520,["Aspect of Shadow"]=14521,["Ur'dan"]=14522,["Ulathek"]=14523,["Vartrus the Ancient"]=14524,["Stoma the Ancient"]=14525,["Hastat the Ancient"]=14526,["Simone the Inconspicuous"]=14527,["Precious"]=14528,["Franklin the Friendly"]=14529,["Solenor the Slayer"]=14530,["Artorius the Amiable"]=14531,["Razzashi Venombrood"]=14532,["Simone the Seductress"]=14533,["Klinfran the Crazed"]=14534,["Artorius the Doombringer"]=14535,["Nelson the Nice"]=14536,["Precious the Devourer"]=14538,["Swift Timber Wolf"]=14539,["Swift Brown Wolf"]=14540,["Swift Gray Wolf"]=14541,["Great White Kodo"]=14542,["Swift Olive Raptor"]=14543,["Swift Orange Raptor"]=14544,["Swift Blue Raptor"]=14545,["Swift Brown Ram"]=14546,["Swift White Ram"]=14547,["Swift Gray Ram"]=14548,["Great Brown Kodo"]=14549,["Great Gray Kodo"]=14550,["Swift Yellow Mechanostrider"]=14551,["Swift White Mechanostrider"]=14552,["Swift Green Mechanostrider"]=14553,["Swift Mistsaber"]=14555,["Swift Frostsaber"]=14556,["Swift Dawnsaber"]=14557,["Purple Skeletal Warhorse"]=14558,["Swift Palomino"]=14559,["Swift White Steed"]=14560,["Swift Brown Steed"]=14561,["Swift Red Mechanostrider"]=14563,["Terrordale Spirit"]=14564,["Charger"]=14565,["Ancient Equine Spirit"]=14566,["Derotain Mudsipper"]=14567,["Darkreaver's Fallen Charger"]=14568,["Sergeant Thunderhorn"]=14581,["Ebonroc"]=14601,["Swift Stormsaber"]=14602,["Zapped Shore Strider"]=14603,["Zapped Land Walker"]=14604,["Bone Construct"]=14605,["Overseer Maltorius"]=14621,["Thorium Brotherhood Lookout"]=14622,["Warsong Gulch Battlemaster"]=14623,["Master Smith Burninate"]=14624,["Overseer Oilfist"]=14625,["Taskmaster Scrange"]=14626,["Hansel Heavyhands"]=14627,["Evonice Sootsmoker"]=14628,["Loggerhead Snapjaw"]=14629,["Leatherback Snapjaw"]=14630,["Olive Snapjaw"]=14631,["Hawksbill Snapjaw"]=14632,["Albino Snapjaw"]=14633,["Lookout Captain Lolo Longstriker"]=14634,["Sleepy Dark Iron Worker"]=14635,["Chambermaid Pillaclencher"]=14636,["Zorbin Fandazzle"]=14637,["Zapped Wave Strider"]=14638,["Zapped Deep Strider"]=14639,["Zapped Cliff Giant"]=14640,["Warsong Gulch Herald"]=14645,["Stratholme Trigger"]=14646,["Stinglasher"]=14661,["Corrupted Fire Nova Totem V"]=14662,["Corrupted Stoneskin Totem VI"]=14663,["Corrupted Healing Stream Totem V"]=14664,["Corrupted Windfury Totem III"]=14666,["Corrupted Totem"]=14667,["Corrupted Infernal"]=14668,["Sever"]=14682,["Balzaphon"]=14684,["Lady Falther'ess"]=14686,["Prince Sandoval"]=14688,["Revanchion"]=14690,["Scorn"]=14693,["Lord Blackwood"]=14695,["Lumbering Horror"]=14697,["Silverwing Elite"]=14715,["Horde Elite"]=14717,["Horde Laborer"]=14718,["High Overlord Saurfang"]=14720,["Field Marshal Afrasiabi"]=14721,["Clavicus Knavingham"]=14722,["Mistina Steelshield"]=14723,["Bubulo Acerbus"]=14724,["Raedon Duskstriker"]=14725,["Rashona Straglash"]=14726,["Vehena"]=14727,["Rumstag Proudstrider"]=14728,["Ralston Farnsley"]=14729,["Revantusk Watcher"]=14730,["Lard"]=14731,["PvP CTF Credit Marker"]=14732,["Sentinel Farsong"]=14733,["Revantusk Drummer"]=14734,["Primal Torntusk"]=14736,["Smith Slagtree"]=14737,["Otho Moji'ko"]=14738,["Mystic Yayo'jin"]=14739,["Katoom the Angler"]=14740,["Huntsman Markhor"]=14741,["Zap Farflinger"]=14742,["Jhordy Lapforge"]=14743,["Frostwolf Howler"]=14744,["Stormpike Battle Charger"]=14745,["Vilebranch Kidnapper"]=14748,["Gurubashi Bat Rider"]=14750,["Frostwolf Battle Standard"]=14751,["Stormpike Battle Standard"]=14752,["Illiyana Moonblaze"]=14753,["Kelm Hargunth"]=14754,["Tiny Green Dragon"]=14755,["Tiny Red Dragon"]=14756,["Elder Torntusk"]=14757,["Zul'Gurub Trigger"]=14758,["Creeping Doom"]=14761,["Dun Baldar North Marshal"]=14762,["Dun Baldar South Marshal"]=14763,["Icewing Marshal"]=14764,["Stonehearth Marshal"]=14765,["Iceblood Marshal"]=14766,["Tower Point Marshal"]=14767,["East Frostwolf Marshal"]=14768,["West Frostwolf Marshal"]=14769,["Dun Baldar North Warmaster"]=14770,["Dun Baldar South Warmaster"]=14771,["East Frostwolf Warmaster"]=14772,["Iceblood Warmaster"]=14773,["Icewing Warmaster"]=14774,["Stonehearth Warmaster"]=14775,["Tower Point Warmaster"]=14776,["West Frostwolf Warmaster"]=14777,["Captain Shatterskull"]=14781,["Razzashi Raptor"]=14821,["Sayge"]=14822,["Silas Darkmoon"]=14823,["Withered Mistress"]=14825,["Sacrificed Troll"]=14826,["Burth"]=14827,["Gelvas Grimegate"]=14828,["Yebb Neblegear"]=14829,["Unkillable Test Dummy 60 Warrior"]=14830,["Kerri Hicks"]=14832,["Chronos"]=14833,["Hakkar"]=14834,["Rinling"]=14841,["Melnan Darkstone"]=14842,["Kruban Darkblade"]=14843,["Sylannia"]=14844,["Stamp Thunderhorn"]=14845,["Lhara"]=14846,["Professor Thaddeus Paleo"]=14847,["Herald"]=14848,["Darkmoon Carnie"]=14849,["Gruk"]=14850,["Erk"]=14857,["Guard Taruc"]=14859,["Flik"]=14860,["Blood Steward of Kirtonos"]=14861,["Emissary Roman'khan"]=14862,["Khaz Modan Ram"]=14864,["Felinni"]=14865,["Flik's Frog"]=14866,["Jubjub"]=14867,["Hornsley"]=14868,["Pygmy Cockatrice"]=14869,["Morja"]=14871,["Trok"]=14872,["Okla"]=14873,["Karu"]=14874,["Molthor"]=14875,["Zandalar Headshrinker"]=14876,["Jubling"]=14878,["Arathi Basin Battlemaster"]=14879,["Razzashi Skitterer"]=14880,["Spider"]=14881,["Atal'ai Mistress"]=14882,["Voodoo Slave"]=14883,["Parasitic Serpent"]=14884,["Jonathan LeCraft"]=14885,["Ysondre"]=14887,["Lethon"]=14888,["Emeriss"]=14889,["Taerar"]=14890,["Fang"]=14892,["Guard Kurall"]=14893,["Swarm of bees"]=14894,["Peon"]=14901,["Jin'rokh the Breaker"]=14902,["Al'tabim the All-Seeing"]=14903,["Maywiki of Zuldazar"]=14904,["Falthir the Sightless"]=14905,["Mogg"]=14908,["Pooka"]=14909,["Exzhal"]=14910,["Zandalar Enforcer"]=14911,["Captured Hakkari Zealot"]=14912,["Rin'wosho the Trader"]=14921,["Kartra Bloodsnarl"]=14942,["Guse's War Rider"]=14943,["Jeztor's War Rider"]=14944,["Mulverick's War Rider"]=14945,["Slidore's Gryphon"]=14946,["Ichman's Gryphon"]=14947,["Vipore's Gryphon"]=14948,["Mirvyna Jinglepocket"]=14961,["Dillord Copperpinch"]=14962,["Gapp Jinglepocket"]=14963,["Hecht Copperpinch"]=14964,["Frenzied Bloodseeker Bat"]=14965,["Elfarran"]=14981,["Lylandris"]=14982,["Field Marshal Oslight"]=14983,["Sergeant Maclear"]=14984,["Shade of Jin'do"]=14986,["Powerful Healing Ward"]=14987,["Ohgan"]=14988,["Poisonous Cloud"]=14989,["Defilers Envoy"]=14990,["League of Arathor Emissary"]=14991,["Zandalarian Event Generator"]=14994,["Deze Snowbane"]=15006,["Sir Malory Wheeler"]=15007,["Lady Hoteshem"]=15008,["Voodoo Spirit"]=15009,["Jungle Toad"]=15010,["Wagner Hammerstrike"]=15011,["Javnir Nashak"]=15012,["Deathmaster Dwire"]=15021,["Deathstalker Mortis"]=15022,["Spawn of Mar'li"]=15041,["Zanza the Restless"]=15042,["Zulian Crocolisk"]=15043,["Arathi Farmer"]=15045,["Forsaken Farmer"]=15046,["Gurubashi"]=15047,["Spirit of Jin'do"]=15061,["Arathi Lumberjack"]=15062,["Arathi Blacksmith"]=15063,["Forsaken Blacksmith"]=15064,["Lady"]=15065,["Cleo"]=15066,["Zulian Stalker"]=15067,["Zulian Guardian"]=15068,["Heart of Hakkar"]=15069,["Vinchaxa"]=15070,["Underfoot"]=15071,["Spike"]=15072,["Pat's Hellfire Guy"]=15073,["Arathi Miner"]=15074,["Forsaken Miner"]=15075,["Zandalarian Emissary"]=15076,["Riggle Bassbait"]=15077,["Jang"]=15078,["Fishbot 5000"]=15079,["Servant of the Hand"]=15080,["Gri'lek"]=15082,["Hazza'rah"]=15083,["Renataki"]=15084,["Wushoolay"]=15085,["Arathi Stablehand"]=15086,["Forsaken Stablehand"]=15087,["Booty Bay Elite"]=15088,["Forsaken Lumberjack"]=15089,["Swift Razzashi Raptor"]=15090,["Zul'Gurub Panther Trigger"]=15091,["Zulian Prowler"]=15101,["Silverwing Emissary"]=15102,["Stormpike Emissary"]=15103,["Swift Zulian Tiger"]=15104,["Warsong Envoy"]=15105,["Frostwolf Envoy"]=15106,["Arathi Horse"]=15107,["Forsaken Horse"]=15108,["Mad Servant"]=15111,["Brain Wash Totem"]=15112,["Honored Hero"]=15113,["Gahz'ranka"]=15114,["Honored Ancestor"]=15115,["Grinkle"]=15116,["Chained Spirit"]=15117,["Barrus"]=15119,["Gahz'ranka Dead"]=15122,["Targot Jinglepocket"]=15124,["Kosco Copperpinch"]=15125,["Rutherford Twing"]=15126,["Samuel Hawke"]=15127,["Defiler Elite"]=15128,["League of Arathor Elite"]=15130,["Qeeju"]=15131,["Hammerfall Elite"]=15136,["Menethil Elite"]=15137,["Silverpine Elite"]=15138,["Pat's Splash Guy"]=15140,["Portal of Madness"]=15141,["Mad Voidwalker"]=15146,["Scarlet Inquisitor"]=15162,["Nightmare Illusion"]=15163,["Mulgore Trigger"]=15164,["Haughty Modiste"]=15165,["Vile Scarab"]=15168,["Ralo'shan the Eternal Watcher"]=15169,["Rutgar Glyphshaper"]=15170,["Frankal Stonebridge"]=15171,["Glibb"]=15172,["Calandrath"]=15174,["Khur Hornstriker"]=15175,["Vargus"]=15176,["Cloud Skydancer"]=15177,["Runk Windtamer"]=15178,["Mishta"]=15179,["Baristolth of the Shifting Sands"]=15180,["Commander Mar'alith"]=15181,["Vish Kozus"]=15182,["Geologist Larksbane"]=15183,["Cenarion Hold Infantry"]=15184,["Brood of Nozdormu"]=15185,["Murky"]=15186,["Cenarion Emissary Jademoon"]=15187,["Cenarion Emissary Blackhoof"]=15188,["Beetix Ficklespragg"]=15189,["Noggle Ficklespragg"]=15190,["Windcaller Proudhorn"]=15191,["Anachronos"]=15192,["The Banshee Queen"]=15193,["Hermit Ortell"]=15194,["Wickerman Guardian"]=15195,["Deathclasp"]=15196,["Darkcaller Yanka"]=15197,["Blackwing"]=15198,["Sergeant Hartman"]=15199,["Twilight Keeper Mayna"]=15200,["Twilight Flamereaver"]=15201,["Vyral the Vile"]=15202,["Prince Skaldrenox"]=15203,["High Marshal Whirlaxis"]=15204,["Baron Kazum"]=15205,["The Duke of Cynders"]=15206,["The Duke of Fathoms"]=15207,["The Duke of Shards"]=15208,["Crimson Templar"]=15209,["Azure Templar"]=15211,["Hoary Templar"]=15212,["Twilight Overlord"]=15213,["Invisible Stalker"]=15214,["Mistress Natalia Mar'alith"]=15215,["Darkmoon Faire Cannon"]=15218,["The Duke of Zephyrs"]=15220,["Frankal Invisible Trigger"]=15221,["Rutgar Invisible Trigger"]=15222,["Dream Fog"]=15224,["Vekniss Soldier"]=15229,["Vekniss Warrior"]=15230,["Vekniss Guardian"]=15233,["Vekniss Stinger"]=15235,["Vekniss Wasp"]=15236,["Vekniss Hive Crawler"]=15240,["Gryphon Rider Guard"]=15241,["Bat Rider Guard"]=15242,["Qiraji Mindslayer"]=15246,["Qiraji Brainwasher"]=15247,["Qiraji Lasher"]=15249,["Qiraji Slayer"]=15250,["Qiraji Champion"]=15252,["Demented Druid Spirit"]=15260,["Spirit Shade"]=15261,["Obsidian Eradicator"]=15262,["The Prophet Skeram"]=15263,["Anubisath Sentinel"]=15264,["Huum Wildmane"]=15270,["Tender"]=15271,["Arcane Wraith"]=15273,["Mana Wyrm"]=15274,["Emperor Vek'nilash"]=15275,["Emperor Vek'lor"]=15276,["Anubisath Defender"]=15277,["Magistrix Erona"]=15278,["Julia Sunstriker"]=15279,["Jesthenis Sunstriker"]=15280,["Lanthan Perilon"]=15281,["Aurel Goldleaf"]=15282,["Summoner Teli'Larien"]=15283,["Matron Arena"]=15284,["Pathstalker Kariel"]=15285,["Xil'xix"]=15286,["Shara Sunwing"]=15287,["Aluntir"]=15288,["Raelis Dawnstar"]=15289,["Arakis"]=15290,["Jainthess Thelryn"]=15291,["Faraden Thelryn"]=15292,["Aendel Windspear"]=15293,["Feral Tender"]=15294,["Well Watcher Solanian"]=15295,["Arcanist Ithanas"]=15296,["Arcanist Helion"]=15297,["Tainted Arcane Wraith"]=15298,["Viscidus"]=15299,["Vekniss Drone"]=15300,["Outrunner Alarion"]=15301,["Shade of Taerar"]=15302,["Maxima Blastenheimer"]=15303,["Ancient Mana Spring Totem"]=15304,["Lord Skwol"]=15305,["Bor Wildmane"]=15306,["Earthen Templar"]=15307,["Twilight Prophet"]=15308,["Spoops"]=15309,["Jesper"]=15310,["Anubisath Warder"]=15311,["Obsidian Nullifier"]=15312,["Moonkin (Druid - Tauren)"]=15314,["Mylini Frostmoon"]=15315,["Qiraji Scarab"]=15316,["Qiraji Scorpion"]=15317,["Hive'Zara Drone"]=15318,["Hive'Zara Collector"]=15319,["Hive'Zara Soldier"]=15320,["Hive'Zara Sandstalker"]=15323,["Qiraji Gladiator"]=15324,["Hive'Zara Wasp"]=15325,["Hive'Zara Stinger"]=15327,["Steam Tank"]=15328,["Silicate Feeder"]=15333,["Giant Eye Tentacle"]=15334,["Flesh Hunter"]=15335,["Hive'Zara Tail Lasher"]=15336,["Obsidian Destroyer"]=15338,["Ossirian the Unscarred"]=15339,["Moam"]=15340,["General Rajaxx"]=15341,["Qiraji Swarmguard"]=15343,["Swarmguard Needler"]=15344,["Kurinnaxx"]=15348,["Horde Warbringer"]=15350,["Alliance Brigadier General"]=15351,["Greater Earth Elemental"]=15352,["Katrina Shimmerstar"]=15353,["Rachelle Gothena"]=15354,["Anubisath Guardian"]=15355,["Blue Baby Murloc"]=15356,["Purple Baby Murloc"]=15357,["Lurky"]=15358,["Pink Baby Murloc"]=15359,["Green Baby Murloc"]=15360,["Murki"]=15361,["Malfurion Stormrage"]=15362,["Totem of Spirits"]=15363,["Springpaw Cub"]=15366,["Felendren the Banished"]=15367,["Tonk Mine"]=15368,["Ayamiss the Hunter"]=15369,["Buru the Gorger"]=15370,["Sunstrider Guardian"]=15371,["Springpaw Lynx"]=15372,["Merithra of the Dream"]=15378,["Caelestrasz"]=15379,["Arygos"]=15380,["Anachronos the Ancient"]=15381,["Fandral Staghelm"]=15382,["Sergeant Stonebrow"]=15383,["OLDWorld Trigger (DO NOT DELETE)"]=15384,["Colonel Zerran"]=15385,["Major Yeggeth"]=15386,["Qiraji Warrior"]=15387,["Major Pakkon"]=15388,["Captain Drenn"]=15389,["Captain Xurrem"]=15390,["Captain Qeez"]=15391,["Captain Tuubid"]=15392,["[UNUSED] Ruins Qiraji Gladiator Named 7"]=15393,["Nafien"]=15395,["Marniel Amberlight"]=15397,["Larianna Riverwind"]=15398,["Lieutenant Dawnrunner"]=15399,["Arathel Sunforge"]=15400,["Ley-Keeper Velania"]=15401,["Apprentice Mirveda"]=15402,["Aeldon Sunbrand"]=15403,["Velendris Whitemorn"]=15404,["Ley-Keeper Caidanis"]=15405,["Ven'jashi"]=15406,["Chieftain Zul'Marosh"]=15407,["Spearcrafter Otembe"]=15408,["Old Whitebark"]=15409,["Qiraji Wasp"]=15414,["Southshore Stink Bomb Counter"]=15415,["Ranger Jaela"]=15416,["Velan Brightoak"]=15417,["Magister Jaronis"]=15418,["Kania"]=15419,["Prospector Anvilward"]=15420,["Qiraji Drone"]=15421,["Qiraji Tank"]=15422,["Kaldorei Infantry"]=15423,["Anubisath Conqueror"]=15424,["Ahn'Qiraj Trigger"]=15426,["Sand Vortex"]=15428,["Disgusting Oozeling"]=15429,["Earth Elemental Totem"]=15430,["Corporal Carnes"]=15431,["Dame Twinbraid"]=15432,["Innkeeper Delaniel"]=15433,["Private Draxlegauge"]=15434,["Master Nightsong"]=15437,["Greater Fire Elemental"]=15438,["Fire Elemental Totem"]=15439,["Captain Blackanvil"]=15440,["Ironforge Brigade Rifleman"]=15441,["Ironforge Brigade Footman"]=15442,["Janela Stouthammer"]=15443,["Arcanist Nozzlespring"]=15444,["Sergeant Major Germaine"]=15445,["Bonnie Stoneflayer"]=15446,["Wrath of Air Totem"]=15447,["Private Porter"]=15448,["Hive'Zora Abomination"]=15449,["Marta Finespindle"]=15450,["Sentinel Silversky"]=15451,["Nurse Stonefield"]=15452,["Keeper Moonshade"]=15453,["Anachronos Quest Trigger Invisible"]=15454,["Slicky Gastronome"]=15455,["Sarah Sadwhistle"]=15456,["Huntress Swiftriver"]=15457,["Commander Stronghammer"]=15458,["Miner Cromwell"]=15459,["Grunt Maug"]=15460,["Shrieker Scarab"]=15461,["Spitting Scarab"]=15462,["Grace of Air Totem III"]=15463,["Strength of Earth Totem V"]=15464,["Minion of Omen"]=15466,["Omen"]=15467,["Sunstrider Mana Tap Counter"]=15468,["Senior Sergeant T'kelah"]=15469,["Stoneskin Totem VII"]=15470,["Lieutenant General Andorov"]=15471,["Kaldorei Elite"]=15473,["Stoneskin Totem VIII"]=15474,["Beetle"]=15475,["Scorpion"]=15476,["Herbalist Proudfeather"]=15477,["Stoneclaw Totem VII"]=15478,["Strength of Earth Totem VI"]=15479,["Searing Totem VII"]=15480,["Spirit of Azuregos"]=15481,["Fire Nova Totem VI"]=15482,["Magma Totem V"]=15484,["Flametongue Totem V"]=15485,["Frost Resistance Totem IV"]=15486,["Fire Resistance Totem IV"]=15487,["Healing Stream Totem VI"]=15488,["Mana Spring Totem V"]=15489,["Nature Resistance Totem IV"]=15490,["Eranikus Tyrant of the Dream"]=15491,["Windwall Totem IV"]=15492,["Marsilla Dawnstar"]=15493,["Yasmine Teli'Larien"]=15494,["Nighthaven Defender"]=15495,["Windfury Totem IV"]=15496,["Windfury Totem V"]=15497,["Windcaller Yessendra"]=15498,["Warden Haro"]=15499,["Keyl Swiftclaw"]=15500,["Aleinia"]=15501,["Andorgos"]=15502,["Kandrostrasz"]=15503,["Vethsera"]=15504,["Canal Frenzy"]=15505,["Batrider Pele'keiki"]=15508,["Princess Huhuran"]=15509,["Fankriss the Unyielding"]=15510,["Lord Kri"]=15511,["Apothecary Jezel"]=15512,["Ranger Sallina"]=15513,["Buru Egg"]=15514,["Skinner Jamani"]=15515,["Battleguard Sartura"]=15516,["Ouro"]=15517,["O'Reily"]=15520,["Hive'Zara Hatchling"]=15521,["Sergeant Umala"]=15522,["Temporary Reindeer"]=15524,["Doctor Serratus"]=15525,["Meridith the Mermaiden"]=15526,["Mana Fiend"]=15527,["Healer Longrunner"]=15528,["Lady Callow"]=15529,["Stoneguard Clayhoof"]=15532,["Bloodguard Rawtar"]=15533,["Fisherman Lin'do"]=15534,["Chief Sharpclaw"]=15535,["Anubisath Warrior"]=15537,["Anubisath Swarmguard"]=15538,["General Zog"]=15539,["Windcaller Kaldon"]=15540,["Twilight Marauder Morna"]=15541,["Twilight Marauder"]=15542,["Princess Yauj"]=15543,["Vem"]=15544,["Cenarion Outrider"]=15545,["Hive'Zara Swarmer"]=15546,["Spectral Charger"]=15547,["Spectral Stallion"]=15548,["Elder Morndeep"]=15549,["Attumen the Huntsman"]=15550,["Spectral Stable Hand"]=15551,["Doctor Weavil"]=15552,["Doctor Weavil's Flying Machine"]=15553,["Number Two"]=15554,["Hive'Zara Larva"]=15555,["Elder Splitrock"]=15556,["Elder Rumblerock"]=15557,["Elder Silvervein"]=15558,["Elder Highpeak"]=15559,["Elder Stonefort"]=15560,["Elder Obsidian"]=15561,["Elder Hammershout"]=15562,["Elder Bellowrage"]=15563,["Elder Darkcore"]=15564,["Elder Stormbrow"]=15565,["Elder Snowcrown"]=15566,["Elder Ironband"]=15567,["Elder Graveborn"]=15568,["Elder Goldwell"]=15569,["Elder Primestone"]=15570,["Maws"]=15571,["Elder Runetotem"]=15572,["Elder Ragetotem"]=15573,["Elder Stonespire"]=15574,["Elder Bloodhoof"]=15575,["Elder Winterhoof"]=15576,["Elder Skychaser"]=15577,["Elder Wildmane"]=15578,["Elder Darkhorn"]=15579,["Elder Ezra Wheathoof"]=15580,["Elder Grimtotem"]=15581,["Elder Windtotem"]=15582,["Elder Thunderhorn"]=15583,["Elder Skyseer"]=15584,["Elder Dawnstrider"]=15585,["Elder Dreamseer"]=15586,["Elder Mistwalker"]=15587,["Elder High Mountain"]=15588,["Eye of C'Thun"]=15589,["Ossirian Crystal Trigger"]=15590,["Minion of Weavil"]=15591,["Elder Windrun"]=15592,["Elder Starsong"]=15593,["Elder Moonstrike"]=15594,["Elder Bladeleaf"]=15595,["Elder Starglade"]=15596,["Elder Moonwarden"]=15597,["Elder Bladeswift"]=15598,["Elder Bladesing"]=15599,["Elder Skygleam"]=15600,["Elder Starweave"]=15601,["Elder Meadowrun"]=15602,["Elder Nightwind"]=15603,["Elder Morningdew"]=15604,["Elder Riversong"]=15605,["Elder Brightspear"]=15606,["Elder Farwhisper"]=15607,["Medivh"]=15608,["Cenarion Scout Landion"]=15609,["Cenarion Scout Azenel"]=15610,["Cenarion Scout Jalia"]=15611,["Krug Skullsplit"]=15612,["Merok Longstride"]=15613,["J.D. Shadesong"]=15614,["Shadow Priestess Shai"]=15615,["Orgrimmar Legion Grunt"]=15616,["Orgrimmar Legion Axe Thrower"]=15617,["Hive'Regal Hunter-Killer"]=15620,["Yauj Brood"]=15621,["Vekniss Borer"]=15622,["Xandivious"]=15623,["Forest Wisp"]=15624,["Twilight Corrupter"]=15625,["Eranikus the Redeemed"]=15628,["Nightmare Phantasm"]=15629,["Spawn of Fankriss"]=15630,["Spotlight"]=15631,["Tyrande"]=15633,["Priestess of the Moon"]=15634,["Eversong Tender"]=15635,["Eversong Green Keeper"]=15636,["Withered Green Keeper"]=15637,["Arcane Patroller"]=15638,["Amani Axe Thrower"]=15641,["Amani Shadowpriest"]=15642,["Amani Berserker"]=15643,["Wretched Urchin"]=15644,["Wretched Thug"]=15645,["Mana Stalker"]=15647,["Manawraith"]=15648,["Feral Dragonhawk Hatchling"]=15649,["Crazed Dragonhawk"]=15650,["Springpaw Stalker"]=15651,["Elder Springpaw"]=15652,["Plaguebone Pillager"]=15654,["Rotlimb Cannibal"]=15655,["Angershade"]=15656,["Darkwraith"]=15657,["Rotlimb Marauder"]=15658,["Auctioneer Jaxon"]=15659,["Baby Shark"]=15661,["War Effort Volunteer"]=15663,["Metzen the Reindeer"]=15664,["Mounted Reindeer"]=15665,["Blue Qiraji Battle Tank"]=15666,["Glob of Viscidus"]=15667,["Grimscale Murloc"]=15668,["Grimscale Oracle"]=15669,["Grimscale Forager"]=15670,["Auctioneer Stockton"]=15675,["Auctioneer Yarly"]=15676,["Auctioneer Graves"]=15677,["Auctioneer Silva'las"]=15678,["Auctioneer Cazarez"]=15679,["Auctioneer O'reely"]=15681,["Auctioneer Cain"]=15682,["Auctioneer Naxxremis"]=15683,["Auctioneer Tricket"]=15684,["Southsea Kidnapper"]=15685,["Auctioneer Rhyker"]=15686,["Moroes"]=15687,["Terestian Illhoof"]=15688,["Netherspite"]=15689,["Prince Malchezaar"]=15690,["The Curator"]=15691,["Dark Iron Kidnapper"]=15692,["Jonathan the Revelator"]=15693,["Stormwind Reveler"]=15694,["Vek Twins Trigger"]=15695,["War Effort Recruit"]=15696,["Father Winter's Helper"]=15698,["Tranquil Mechanical Yeti"]=15699,["Warlord Gorchuk"]=15700,["Field Marshal Snowfall"]=15701,["Senior Sergeant Taiga"]=15702,["Senior Sergeant Grimsford"]=15703,["Senior Sergeant Kai'jin"]=15704,["Winter's Little Helper"]=15705,["Winter Reindeer"]=15706,["Master Sergeant Fizzlebolt"]=15707,["Master Sergeant Maclure"]=15708,["Master Sergeant Moonshadow"]=15709,["Tiny Snowman"]=15710,["Black Qiraji Battle Tank"]=15711,["Dirt Mound"]=15712,["Yellow Qiraji Battle Tank"]=15714,["Green Qiraji Battle Tank"]=15715,["Red Qiraji Battle Tank"]=15716,["Ouro Scarab"]=15718,["Thunder Bluff Reveler"]=15719,["Timbermaw Ancestor"]=15720,["Mechanical Greench"]=15721,["Squire Leoren Mal'derath"]=15722,["Booty Bay Reveler"]=15723,["Drunken Bruiser"]=15724,["Claw Tentacle"]=15725,["Eye Tentacle"]=15726,["C'Thun"]=15727,["Giant Claw Tentacle"]=15728,["Pat's Snowcloud Guy"]=15730,["Darnassus Commendation Officer"]=15731,["Wonderform Operator"]=15732,["Gnomeregan Commendation Officer"]=15733,["Ironforge Commendation Officer"]=15734,["Stormwind Commendation Officer"]=15735,["Orgrimmar Commendation Officer"]=15736,["Darkspear Commendation Officer"]=15737,["Undercity Commendation Officer"]=15738,["Thunder Bluff Commendation Officer"]=15739,["Colossus of Zora"]=15740,["Colossus of Regal"]=15741,["Colossus of Ashi"]=15742,["Colossal Anubisath Warbringer"]=15743,["Imperial Qiraji Destroyer"]=15744,["Greatfather Winter's Helper"]=15745,["Great-father Winter's Helper"]=15746,["Qiraji Captain"]=15747,["Lesser Anubisath Warbringer"]=15748,["Lesser Silithid Flayer"]=15749,["Qiraji Major"]=15750,["Anubisath Warbringer"]=15751,["Silithid Flayer"]=15752,["Qiraji Brigadier General"]=15753,["Greater Anubisath Warbringer"]=15754,["Greater Silithid Flayer"]=15756,["Qiraji Lieutenant General"]=15757,["Supreme Anubisath Warbringer"]=15758,["Supreme Silithid Flayer"]=15759,["Winter Reveler"]=15760,["Officer Vu'Shalay"]=15761,["Officer Lunalight"]=15762,["Officer Porterhouse"]=15763,["Officer Ironbeard"]=15764,["Officer Redblade"]=15765,["Officer Maloof"]=15766,["Officer Thunderstrider"]=15767,["Officer Gothena"]=15768,["Resonating Crystal"]=15769,["Greater Resonating Crystal"]=15770,["Major Resonating Crystal"]=15771,["Mouth Tentacle Mount Visual"]=15778,["Human Male Winter Reveler"]=15780,["Human Female Winter Reveler"]=15781,["Goblin Female Winter Reveler"]=15787,["Colossus Researcher Sophia"]=15797,["Colossus Researcher Nestor"]=15798,["Colossus Researcher Eazel"]=15799,["Exit Trigger"]=15800,["GONG BOY DND DNR"]=15801,["Flesh Tentacle"]=15802,["Tranquil Air Totem"]=15803,["Lesser Resonating Crystal"]=15804,["Minor Resonating Crystal"]=15805,["Qiraji Lieutenant"]=15806,["Minor Anubisath Warbringer"]=15807,["Minor Silithid Flayer"]=15808,["Eroded Anubisath Warbringer"]=15810,["Faltering Silithid Flayer"]=15811,["Qiraji Officer"]=15812,["Qiraji Officer Zod"]=15813,["Qiraji Lieutenant Jo-rel"]=15814,["Qiraji Captain Ka'ark"]=15815,["Qiraji Major He'al-ie"]=15816,["Qiraji Brigadier General Pax-lish"]=15817,["Lieutenant General Nokhor"]=15818,["Might of Kalimdor Grunt"]=15839,["Might of Kalimdor Sergeant"]=15840,["Might of Kalimdor Lieutenant"]=15841,["Might of Kalimdor Mage"]=15842,["Might of Kalimdor Priest"]=15843,["Might of Kalimdor Restorer"]=15844,["Might of Kalimdor Captain"]=15845,["Might of Kalimdor Archer"]=15846,["Might of Kalimdor Shaman"]=15847,["Might of Kalimdor Infantry"]=15848,["Might of Kalimdor Druid"]=15849,["Might of Kalimdor Skirmisher"]=15850,["Might of Kalimdor Marshal"]=15851,["Orgrimmar Elite Shieldguard"]=15852,["Orgrimmar Elite Infantryman"]=15853,["Orgrimmar Elite Cavalryman"]=15854,["Tauren Rifleman"]=15855,["Tauren Primalist"]=15856,["Stormwind Cavalryman"]=15857,["Stormwind Infantry"]=15858,["Stormwind Archmage"]=15859,["Kaldorei Marksman"]=15860,["Ironforge Infantryman"]=15861,["Ironforge Cavalryman"]=15862,["Darkspear Shaman"]=15863,["Valadar Starsong"]=15864,["Might of Kalimdor Major"]=15865,["Commander Lynore Windstryke"]=15866,["Might of Kalimdor Archmage"]=15867,["Highlord Leoric Von Zeldig"]=15868,["Malagav the Tactician"]=15869,["Duke August Foehammer"]=15870,["Elder Bronzebeard"]=15871,["Pat's Firework Cluster Guy (BLUE)"]=15872,["Pat's Firework Cluster Guy (RED)"]=15873,["Pat's Firework Cluster Guy (GREEN)"]=15874,["Warcaller Finster"]=15878,["Pat's Firework Guy - BLUE"]=15879,["Pat's Firework Guy - GREEN"]=15880,["Pat's Firework Guy - RED"]=15882,["Pat's Firework Guy - YELLOW"]=15883,["Pat's Firework Guy - WHITE"]=15884,["Pat's Firework Guy - BLUE BIG"]=15885,["Pat's Firework Guy - GREEN BIG"]=15886,["Pat's Firework Guy - PURPLE BIG"]=15887,["Pat's Firework Guy - RED BIG"]=15888,["Pat's Firework Guy - WHITE BIG"]=15889,["Pat's Firework Guy - YELLOW BIG"]=15890,["Lunar Festival Herald"]=15891,["Lunar Festival Emissary"]=15892,["Lunar Firework Credit Marker"]=15893,["Lunar Cluster Credit Marker"]=15894,["Lunar Festival Harbinger"]=15895,["C'Thun Portal"]=15896,["Large Spotlight"]=15897,["Lunar Festival Vendor"]=15898,["Vanquished Tentacle"]=15901,["Giant Spotlight"]=15902,["Sergeant Carnes"]=15903,["Tentacle Portal"]=15904,["Darnassus Reveler"]=15905,["Ironforge Reveler"]=15906,["Undercity Reveler"]=15907,["Orgrimmar Reveler"]=15908,["Fariel Starsong"]=15909,["Giant Tentacle Portal"]=15910,["Pat's Firework Cluster Guy (BLUE BIG)"]=15911,["Pat's Firework Cluster Guy (GREEN BIG)"]=15912,["Pat's Firework Cluster Guy (RED BIG)"]=15914,["Lunar Festival Reveler"]=15917,["Pat's Firework Cluster Guy (ELUNE)"]=15918,["Jade Owl"]=15919,["Hathvelion Sungaze"]=15920,["Captain Kelisendra"]=15921,["Golden Hare"]=15923,["Apprentice Loralthalis"]=15924,["Toxic Slime"]=15925,["Black Pearl Panther"]=15926,["Truesilver Crab"]=15927,["Thaddius"]=15928,["Stalagg"]=15929,["Feugen"]=15930,["Grobbulus"]=15931,["Gluth"]=15932,["Poison Cloud"]=15933,["Hive'Zara Hornet"]=15934,["Truesilver Boar"]=15935,["Heigan the Unclean"]=15936,["Mmmrrrggglll"]=15937,["Eversong Ranger"]=15938,["Ranger Degolien"]=15939,["Ranger Selron"]=15940,["Apprentice Ralen"]=15941,["Ranger Sareyn"]=15942,["Ruby Serpent"]=15944,["Apprentice Meledor"]=15945,["Apprentice Veya"]=15946,["Emerald Owl"]=15948,["Thaelis the Hungerer"]=15949,["Grimscale Seer"]=15950,["Magister Duskwither"]=15951,["Maexxna"]=15952,["Grand Widow Faerlina"]=15953,["Noth the Plaguebringer"]=15954,["Black Diamond Crab"]=15955,["Anub'Rekhan"]=15956,["Ouro Spawner"]=15957,["Gharsul the Remorseless"]=15958,["Dark Iron Scorpid"]=15959,["Lunar Festival Sentinel"]=15961,["Vekniss Hatchling"]=15962,["The Master's Eye"]=15963,["Buru Egg Trigger"]=15964,["Duskwither Apprentice"]=15965,["Mana Serpent"]=15966,["Ether Fiend"]=15967,["Darnassian Scout"]=15968,["Groundskeeper Wyllithen"]=15969,["Instructor Antheol"]=15970,["Silvermoon Apprentice"]=15971,["Alterac Valley Battlemaster"]=15972,["Dread Creeper"]=15974,["Carrion Spinner"]=15975,["Venom Stalker"]=15976,["Poisonous Skitterer"]=15977,["Crypt Reaver"]=15978,["Tomb Horror"]=15979,["Naxxramas Cultist"]=15980,["Naxxramas Acolyte"]=15981,["Sartura's Royal Guard"]=15984,["Sapphiron"]=15989,["Kel'Thuzad"]=15990,["Lady Dena Kennedy"]=15991,["Aldris Fourclouds"]=16001,["Colara Dean"]=16002,["Deathguard Tor"]=16003,["Elenia Haydon"]=16004,["Lieutenant Jocryn Heldric"]=16005,["InCombat Trigger"]=16006,["Orok Deathbane"]=16007,["Temma of the Wells"]=16008,["Tormek Stoneriver"]=16009,["Loatheb"]=16011,["Mokvar"]=16012,["Deliana"]=16013,["Mux Manascrambler"]=16014,["Vi'el"]=16015,["Anthion Harmon"]=16016,["Patchwork Golem"]=16017,["Bile Retcher"]=16018,["Boorana Thunderhoof"]=16019,["Mad Scientist"]=16020,["Living Monstrosity"]=16021,["Surgical Assistant"]=16022,["Embalming Slime"]=16024,["Stitched Giant"]=16025,["Living Poison"]=16027,["Patchwerk"]=16028,["Sludge Belcher"]=16029,["Maggot"]=16030,["Ysida Harmon"]=16031,["Falrin Treeshaper"]=16032,["Bodley"]=16033,["Plague Beast"]=16034,["Frenzied Bat"]=16036,["Plagued Bat"]=16037,["Lord Valthalak"]=16042,["Magma Lord Bokk"]=16043,["Mor Grayhoof Trigger"]=16044,["Isalien Trigger"]=16045,["Jarien and Sothos Trigger"]=16046,["Kormok Trigger"]=16047,["Lord Valthalak Trigger"]=16048,["Lefty"]=16049,["Rotfang"]=16050,["Snokh Blackspine"]=16051,["Malgen Longspear"]=16052,["Korv"]=16053,["Rezznik"]=16054,["Va'jashni"]=16055,["Diseased Maggot"]=16056,["Rotting Maggot"]=16057,["Volida"]=16058,["Theldren"]=16059,["Gothik the Harvester"]=16060,["Instructor Razuvious"]=16061,["Highlord Mograine"]=16062,["Sir Zeliek"]=16063,["Thane Korth'azz"]=16064,["Lady Blaumeux"]=16065,["Spectral Assassin"]=16066,["Deathcharger Steed"]=16067,["Larva"]=16068,["Gurky"]=16069,["Garel Redrock"]=16070,["Tidelord Rrurgaz"]=16072,["Spirit of Lord Valthalak"]=16073,["Kwee Q. Peddlefeet"]=16075,["Tharl Stonebleeder"]=16076,["Unkillable Fixed Damage Test Dummy"]=16078,["Theldren Trigger"]=16079,["Mor Grayhoof"]=16080,["Naxxramas Trigger"]=16082,["Peddlefeet"]=16085,["Omar the Test Dragon"]=16089,["Rousch"]=16090,["Dirk Thunderwood"]=16091,["Silithis Teleporter"]=16092,["Spectral Stalker"]=16093,["Durik"]=16094,["Gnashjaw"]=16095,["Steamwheedle Bruiser"]=16096,["Isalien"]=16097,["Empyrean"]=16098,["Ysida's Trigger"]=16100,["Jarien"]=16101,["Sothos"]=16102,["Spirit of Jarien"]=16103,["Spirit of Sothos"]=16104,["Aristan Mottar"]=16105,["Evert Sorisam"]=16106,["Apothecary Staffron Lerent"]=16107,["Fenstad Argyle"]=16108,["Mara Rennick"]=16109,["Annalise Lerent"]=16110,["Love Fool"]=16111,["Crusade Commander Korfax"]=16112,["Father Inigo Montoy"]=16113,["Scarlet Commander Marjhan"]=16114,["Crusade Commander Eligor Dawnbringer"]=16115,["Archmage Angela Dosantos"]=16116,["Plagued Swine"]=16117,["Kormok"]=16118,["Bone Minion"]=16119,["Bone Mage"]=16120,["Mortar"]=16121,["Gremnik Rizzlesprang"]=16123,["Unrelenting Trainee"]=16124,["Unrelenting Death Knight"]=16125,["Unrelenting Rider"]=16126,["Spectral Trainee"]=16127,["Rhonin"]=16128,["Shadow Fissure"]=16129,["Rohan the Assassin"]=16131,["Huntsman Leopold"]=16132,["Mataus the Wrathcaster"]=16133,["Rimblat Earthshatter"]=16134,["Rayne"]=16135,["Necrotic Shard"]=16136,["Naxxramas Military Sub-Boss Trigger"]=16137,["Cenarion Hold Reservist"]=16139,["Ghoul Berserker"]=16141,["Bile Sludge"]=16142,["Shadow of Doom"]=16143,["Lord Saltheril"]=16144,["Death Knight Captain"]=16145,["Death Knight"]=16146,["Elisara Sunstriker"]=16147,["Spectral Death Knight"]=16148,["Spectral Horse"]=16149,["Spectral Rider"]=16150,["Midnight"]=16151,["Attumen the Huntsman"]=16152,["Berthold"]=16153,["Risen Squire"]=16154,["Dark Touched Warrior"]=16156,["Doom Touched Warrior"]=16157,["Death Touched Warrior"]=16158,["Calliard"]=16159,["Magistrix Eredania"]=16160,["Arcanist Sheynathren"]=16161,["Wretched Hooligan"]=16162,["Death Knight Cavalier"]=16163,["Shade of Naxxramas"]=16164,["Necro Knight"]=16165,["Theldren Kill Credit"]=16166,["Bony Construct"]=16167,["Stoneskin Gargoyle"]=16168,["Hastings"]=16169,["Coldmist Stalker"]=16170,["Coldmist Widow"]=16171,["Damaged Necrotic Shard"]=16172,["Shadowbat"]=16173,["Greater Shadowbat"]=16174,["Vampiric Shadowbat"]=16175,["Shadowbeast"]=16176,["Dreadbeast"]=16177,["Phase Hound"]=16178,["Hyakiss the Lurker"]=16179,["Shadikith the Glider"]=16180,["Rokad the Ravager"]=16181,["Courier Dawnstrider"]=16183,["Nerubian Overseer"]=16184,["Anathos"]=16185,["Vara"]=16186,["Quartermaster Lymel"]=16187,["Skymaster Sunwing"]=16189,["Sathren Azuredawn"]=16191,["Skymistress Gloaming"]=16192,["Skeletal Smith"]=16193,["Unholy Axe"]=16194,["Apothecary Thedra"]=16196,["Arcanist Vandril"]=16197,["Apothecary Renzithen"]=16198,["Magister Darenis"]=16199,["Deathstalker Rathiel"]=16200,["Geranis Whitemorn"]=16201,["Farstrider Sedina"]=16202,["Ranger Vynna"]=16203,["Magister Idonis"]=16204,["Magistrix Aminel"]=16205,["Apprentice Varnis"]=16206,["Apothecary Enith"]=16208,["Ranger Vedoran"]=16209,["Magistrix Landra Dawnstrider"]=16210,["Naxxramas Combat Dummy"]=16211,["Dispatch Commander Metz"]=16212,["Ranger Lethvalin"]=16213,["Unholy Staff"]=16215,["Unholy Swords"]=16216,["Lieutenant Tomathren"]=16217,["Tesla Coil"]=16218,["Ranger Valanna"]=16219,["Captain Helios"]=16220,["Silvermoon Guardian"]=16221,["Silvermoon City Guardian"]=16222,["Rathis Tomber"]=16224,["Pack Mule"]=16225,["Guard Didier"]=16226,["Bragok"]=16227,["Argent Dawn Infantry"]=16228,["Injured Argent Dawn Infantry"]=16229,["Cultist Engineer"]=16230,["Dame Auriferous"]=16231,["Caravan Mule"]=16232,["Eye Stalk"]=16236,["Magister Sylastor"]=16237,["Night Elf Ambusher"]=16238,["Magister Kaendris"]=16239,["Arcanist Janeda"]=16240,["Argent Recruiter"]=16241,["Tranquillien Scout"]=16242,["Plague Slime"]=16243,["Infectious Ghoul"]=16244,["Luzran"]=16245,["Knucklerot"]=16246,["Borgoth the Bloodletter"]=16247,["Jurion the Deceiver"]=16248,["Masophet the Black"]=16249,["Mirdoran the Fallen"]=16250,["Deathstalker Maltendis"]=16251,["High Executor Mavren"]=16252,["Master Chef Mouldier"]=16253,["Field Marshal Chambers"]=16254,["Argent Scout"]=16255,["Jessica Chambers"]=16256,["Geron"]=16257,["Farsil"]=16258,["Sheri"]=16259,["Areyn"]=16260,["Sathiel"]=16261,["Landraelanis"]=16262,["Paelarin"]=16263,["Winaestra"]=16264,["Celoenus"]=16266,["Daestra"]=16267,["Eralan"]=16268,["Garridel"]=16269,["Hannovia"]=16270,["Telenus"]=16271,["Kanaria"]=16272,["Mathreyn"]=16273,["Narina"]=16274,["Noellene"]=16275,["Ponaris"]=16276,["Quarelestra"]=16277,["Sathein"]=16278,["Tannaria"]=16279,["Perascamin"]=16280,["Keeper of the Rolls"]=16281,["Packmaster Stonebruiser"]=16283,["Argent Medic"]=16284,["Argent Emissary"]=16285,["Spore"]=16286,["Ambassador Sunsorrow"]=16287,["Advisor Sorrelon"]=16288,["Advisor Valwyn"]=16289,["Irradiated Slime"]=16290,["Magister Quallestis"]=16291,["Aquantion"]=16292,["Apprentice Shatharia"]=16293,["Aldaron the Reckless"]=16294,["Ranger Lilatha"]=16295,["Mutated Grub"]=16297,["Spectral Soldier"]=16298,["Skeletal Shocktrooper"]=16299,["Risen Creeper"]=16300,["Risen Hungerer"]=16301,["Risen Stalker"]=16302,["Dreadbone Skeleton"]=16303,["Arcane Devourer"]=16304,["Dreadbone Sentinel"]=16305,["Scourge Invasion Minion spawner Ghost/Ghoul"]=16306,["Deathcage Scryer"]=16307,["Deathcage Sorcerer"]=16308,["Gangled Cannibal"]=16309,["Mana Shifter"]=16310,["Phantasmal Watcher"]=16311,["Nerubis Guard"]=16313,["Fallen Ranger"]=16314,["Deatholme Acolyte"]=16315,["Stonewing Tracker"]=16316,["Deatholme Necromancer"]=16317,["Deatholme Darkmage"]=16318,["Nerubis Centurion"]=16319,["Eye of Dar'Khan"]=16320,["Wailer"]=16321,["Gangled Flesheater"]=16322,["Phantasmal Seeker"]=16323,["Stonewing Slayer"]=16324,["Quel'dorei Ghost"]=16325,["Quel'dorei Wraith"]=16326,["Ravening Apparition"]=16327,["Vengeful Apparition"]=16328,["Dar'Khan Drathir"]=16329,["Sentinel Spy"]=16330,["Stone Guard Zarg"]=12794,["G'eras"]=18525,["Gruul the Dragonkiller"]=19044,["Prince Malchezaar"]=15690,["First Sergeant Hola'mahi"]=12795,["Lieutenant Jackspring"]=12784,["High King Maulgar"]=18831,["Sergeant Major Clate"]=12785,["Nightbane"]=17225,["Illidan Stormrage"]=22917,["Magtheridon"]=17257,["Warlord Kalithresh"]=17798,["Lady Palanseer"]=12792,["Doomwalker"]=17711,["Almaador"]=21432,["Neal Allen"]=1448,["Warchief Kargath Bladefist"]=16808,["Quagmirran"]=17942,["Plagued Swine"]=16117,["Fedryen Swiftspear"]=17904,["Moroes"]=15687,["Donova Snowden"]=9298,["Captain Dirgehammer"]=12777,["Murmur"]=18708,["Pathaleon the Calculator"]=19220,["Doom Lord Kazzak"]=18728,["Quartermaster Enuril"]=19331,["Ravager Specimen"]=17199,["Alurmi"]=21643,["Netherspite"]=15689,["Nakodu"]=21655,["Enraged Ravager"]=17527,["Attumen the Huntsman"]=16152,["Mythrin'dir"]=4229,["Rip-Blade Ravager"]=22123,["Keli'dan the Breaker"]=17377,["Aeonus"]=17881,["Kael'thas Sunstrider"]=19622,["Nat Pagle"]=12919,["Epoch Hunter"]=18096,["Quartermaster Endarin"]=19321,["High Chief Winterfall"]=10738,["Talon King Ikiss"]=18473,["Omor the Unscarred"]=17308,["Warp Splinter"]=17977,["Kil'jaeden"]=25315,["Daniel Bartlett"]=4561,["The Curator"]=15691,["Watchkeeper Gargolmar"]=17306,["Tydormu"]=23381,["Jandia"]=4877,["Logistics Officer Ulrike"]=17657,["Shade of Aran"]=16524,["Rokad the Ravager"]=16181,["Terestian Illhoof"]=15688,["Old Man Heming"]=2626,["Lorelae Wintersong"]=12022,["Quartermaster Urgronn"]=17585,["Maiden of Virtue"]=16457,["Lady Vashj"]=21212,["Felguard"]=17252,["Drolig Blastpipe"]=27722,["Fel Reaver"]=18733,["The Maker"]=17381,["Drake Dealer Hurlunk"]=23489,["Angered Nether-wraith"]=17870,["Barnes"]=16812,["Mennu the Betrayer"]=17941,["Harbinger Skyriss"]=20912,["Broggok"]=17380,["Kam Deepfury"]=1666,["Rungor"]=18960,["The Black Stalker"]=17882,["Anzu"]=23035,["Exarch Maladaar"]=18373,["Karaaz"]=20242,["Brave Stonehide"]=12793,["Kelm Hargunth"]=14754,["Pandemonius"]=18341,["Archimonde"]=17968,["Vazruden"]=17537,["Illiyana Moonblaze"]=14753,["Master Sergeant Biggins"]=12781,["Grand Warlock Nethekurse"]=16807,["Rhahk'Zor"]=644,["Provisioner Nasela"]=20241,["Rethilgore"]=3914,["Farii"]=19778,["Mycah"]=18382,["Yor"]=22930,["Iorioa"]=20791,["Smith Gorlunk"]=22037,["Blackheart the Inciter"]=18667,["Shirrak the Dead Watcher"]=18371,["Mordenai"]=22113,["Sergeant Thunderhorn"]=14581,["Ghaz'an"]=18105,["Razorfang Hatchling"]=16932,["Baelog"]=6906,["Aggem Thorncurse"]=4424,["Gikkix"]=8137,["Terokk"]=21838,["Trader Narasu"]=20240,["Lebowski"]=18775,["Hama"]=18772,["Harbinger Mikolaas"]=17423,["Jekyll Flandring"]=13219,["Void Reaver"]=19516,["Ambassador Hellmaw"]=18731,["Nexus-Prince Shaffar"]=18344,["Haris Pilton"]=18756,["Al'ar"]=19514,["Lady Anacondra"]=3671,["Dalliah the Doomsayer"]=20885,["Simon Unit"]=23385,["Olrokk"]=20500,["Sapphiron"]=15989,["Gidge Spellweaver"]=22213,["Thanthaldis Snowgleam"]=13217,["Thorkaf Dragoneye"]=7867,["Ilsa Blusterbrew"]=20511,["Lauranna Thar'well"]=17909,["Captain O'Neal"]=12782,["Magistrate Barthilas"]=10435,["Gaelden Hammersmith"]=13216,["Kalinda"]=19775,["The Lurker Below"]=21217,["Lorokeem"]=19052,["Arcanist Doan"]=6487,["Zul'jin"]=23863,["Nasmara Moonsong"]=22208,["Burko"]=18990,["Juno Dufrain"]=18911,["Kelek Skykeeper"]=10920,["High Inquisitor Whitemane"]=3977,["Asuur"]=20616,["Quillfang Skitterer"]=19189,["Inscriber Saalyn"]=20807,["Hungarfen"]=17770,["Leotheras the Blind"]=21215,["The Big Bad Wolf"]=17521,["Avatar of the Martyred"]=18478,["Sal'salabim"]=18584,["Kael'thas Sunstrider"]=24664,["Dalria"]=3954,["Khadgar"]=18166,["Ontok Shatterhorn"]=27668,["Galgrom"]=20080,["Tavarok"]=18343,["Rutherford Twing"]=15126,["High Astromancer Solarian"]=18805,["Durn the Hungerer"]=18411,["Force Commander Danath Trollbane"]=16819,["Magmus"]=9938,["Temporus"]=17880,["Andrion Darkspinner"]=22212,["High Botanist Freywinn"]=17975,["Attumen the Huntsman"]=15550,["Dalinna"]=18749,["Nula the Butcher"]=20097,["High Enchanter Bardolan"]=19252,["Scarlet Commander Mograine"]=3976,["Vodesiin"]=19004,["Teron Gorefiend"]=22871,["Dreadfang Widow"]=18467,["Samuel Hawke"]=15127,["Hydross the Unstable"]=21216,["Kel'Thuzad"]=15990,["Edwin VanCleef"]=639,["Highlord Kruul"]=18338,["Interrogator Vishas"]=3983,["Aleinia"]=15501,["Knucklerot"]=16246,["Nathanos Blightcaller"]=11878,["Shattered Hand Executioner"]=17301,["Micha Yance"]=2381,["Kulwia"]=12043,["Isalien"]=16097,["Raider Bork"]=12796,["The Crone"]=18168,["Johan Barnes"]=18773,["Alchemist Gribble"]=18802,["David Wayne"]=21465,["Felannia"]=18753,["Incandescent Fel Spark"]=22323,["Agent Proudwell"]=19942,["Invading Felguard"]=19284,["Qia"]=11189,["Anetheron"]=17808,["M'uru"]=25741,["Quillfang Ravager"]=16934,["Darkweaver Syth"]=18472,["Hyakiss the Lurker"]=16179,["Eldara Dawnrunner"]=25032,["Peter Galen"]=7866,["Brutallus"]=24882,["Morogrim Tidewalker"]=21213,["Battle Chicken"]=8836,["Rokmar the Crackler"]=17991,["Lieutenant Karter"]=12783,["Hammon Karwn"]=2810,["Lord Serpentis"]=3673,["Swamplord Musel'ek"]=17826,["Uriku"]=20096,["Kradu Grimblade"]=20124,["Winterfall Totemic"]=7441,["Archmage Arugal"]=4275,["Derotain Mudsipper"]=14567,["Eiin"]=19213,["Sneed's Shredder"]=642,["Lord Pythas"]=3670,["Aaron Hollman"]=19662,["Herod"]=3975,["Scalewing Serpent"]=20749,["Mekgineer Steamrigger"]=17796,["Mother Shahraz"]=22947,["Princess Theradras"]=12201,["Bash'ir Spell-Thief"]=22242,["Grunnda Wolfheart"]=13218,["Magistrix Fyalenn"]=18531,["Fathom-Lord Karathress"]=21214,["Deneb Walker"]=2805,["Kalaen"]=18751,["Warbringer O'mrogg"]=16809,["Charlga Razorflank"]=4421,["Chief Engineer Lorthander"]=18697,["High Inquisitor Fairbanks"]=4542,["Vixton Pinchwhistle"]=20278,["Archaedas"]=2748,["Apothecary Antonivich"]=16588,["Arazzius the Cruel"]=19191,["Archmage Alturus"]=17613,["Tatiana"]=18774,["Julianne"]=17534,["Ashmane Boar"]=5992,["Zebig"]=18752,["Hemet Nesingwary"]=18180,["Sunfury Researcher"]=20136,["Twilight Serpent"]=23026,["Hamanar"]=19063,["Madame Ruby"]=19663,["Oronok Torn-heart"]=21183,["Ysuria"]=27703,["Bloodmaul Geomancer"]=19952,["Daga Ramba"]=19837,["Kildar"]=4752,["Tabetha"]=6546,["Kresh"]=3653,["Nazan"]=17536,["Caza'rez"]=17558,["Unliving Resident"]=12380,["Felmyst"]=25038,["Supremus"]=22898,["Brunn Flamebeard"]=20510,["Coren Direbrew"]=23872,["Warbringer Arix'Amal"]=19298,["Azgalor"]=17842,["Grandmaster Vorpil"]=18732,["Olaf"]=6908,["Enraged Fire Spirit"]=21061,["King Bangalash"]=731,["Sunfury Bloodwarder"]=18853,["Emperor Dagran Thaurissan"]=9019,["Mechano-Lord Capacitus"]=19219,["Onyxia"]=10184,["Bloodmage Thalnos"]=4543,["The Rokk"]=24393,["Nethermancer Sepethrea"]=19221,["Adyen the Lightwarden"]=18537,["Humar the Pridelord"]=5828,["Thornfang Ravager"]=19349,["Sarah Tanner"]=7868,["Storming Wind-Ripper"]=22310,["Baron Rivendare"]=10440,["Dirge Quikcleave"]=8125,["Mack Diver"]=17637,["Razorfang Ravager"]=16933,["Searing Elemental"]=20514,["Shadow Council Warlock"]=21302,["Gurtogg Bloodboil"]=22948,["Mekgineer Thermaplugg"]=7800,["Mutanus the Devourer"]=3654,["Wrath-Scryer Soccothrates"]=20886,["Kael'thas Sunstrider"]=23054,["Rohok"]=16583,["Hydromancer Thespia"]=17797,["Borgus Steelhand"]=7232,["Ythyar"]=17518,["Kalecgos"]=24850,["Quartermaster Zigris"]=9736,["Rage Winterchill"]=17767,["Shadikith the Glider"]=16180,["Blood Elf Bandit"]=17591,["Brumn Winterhoof"]=7869,["Image of Nexus-Prince Haramad"]=20084,["Lilith the Lithe"]=11191,["Mana Seeker"]=18867,["Nether Drake"]=18877,["Overlord Ramtusk"]=4420,["Scarlet Spellbinder"]=4494,["Thurman Mullby"]=1285,["Celebras the Cursed"]=12225,["Romulo"]=17533,["Azuregos"]=6109,["Borgosh Corebender"]=11178,["Enraged Air Spirit"]=21060,["Griftah"]=19227,["Gutripper"]=18257,["Lieutenant Drake"]=17848,["Midnight"]=16151,["Balai Lok'Wein"]=13476,["Skreah"]=19074,["Ambassador Jerrikar"]=18695,["Arrond"]=19521,["Handiir"]=16773,["Gezzarak the Huntress"]=23163,["Shandrina"]=3955,["Alzzin the Wildshaper"]=11492,["Innkeeper Biribi"]=19296,["Mor'zul Bloodbringer"]=14436,["Wind Trader Lathrai"]=18484,["Caryssia Moonhunter"]=7870,["Echo of Medivh"]=16816,["Eredar Deathbringer"]=20880,["Houndmaster Loksey"]=3974,["Raging Fire-Soul"]=22311,["Spirit Sage Gartok"]=19772,["Talonsworn Forest-Rager"]=23029,["Veynna Dawnstar"]=21905,["Chrono Lord Deja"]=17879,["Priestess Delrissa"]=24560,["Medivh"]=15608,["Mishta"]=15179,["Rorelien"]=18776,["Theremis"]=25976,["Chief Ukorz Sandscalp"]=7267,["Warder Stilgiss"]=9041,["Apprentice Darius"]=18255,["Arthorn Windsong"]=22924,["Hurnak Grimmord"]=18779,["Kireena"]=9636,["Paulsta'ats"]=23007,["Rin'wosho the Trader"]=14921,["Shade of Eranikus"]=5709,["Agathelos the Raging"]=4422,["Amnennar the Coldbringer"]=7358,["Bazzalan"]=11519,["Kelara"]=21906,["Nazgrel"]=3230,["Vivianna"]=7947,["Verdan the Everliving"]=5775,["War Master Voone"]=9237,["A'dal"]=18481,["Aalun"]=20914,["Jho'nass"]=23428,["Kylene"]=19186,["Lelanai"]=4730,["Roogug"]=6168,["Winterspring Screecher"]=7456,["Dama Wildmane"]=20494,["Haalrun"]=18005,["Krugosh"]=18747,["Mageslayer"]=18866,["Mildred Fletcher"]=19184,["Old Man Barlo"]=25580,["Scarlet Archmage"]=9451,["Trak'gen"]=3313,["Warchief Rend Blackhand"]=10429,["Gahz'rilla"]=7273,["General Angerforge"]=9033,["Lord Roccor"]=9025,["Lord Vyletongue"]=12236,["Ghamoo-ra"]=4887,["Helenia Olden"]=4897,["Innkeeper Haelthol"]=19232,["K. Lee Smallfry"]=17634,["Kania"]=15419,["Kelsey Yance"]=2664,["Murkblood Raider"]=18203,["Se'Jib"]=7871,["Sneed"]=643,["Unliving Caretaker"]=12379,["Ysiel Windsinger"]=17841,["Commander Springvale"]=4278,["Fenrus the Devourer"]=4274,["Laj"]=17980,["Odo the Blindwatcher"]=4279,["Razorlash"]=12258,["Theka the Martyr"]=7272,["Broken Tooth"]=2850,["Harbinger Skyriss"]=21466,["Keelen Sheets"]=16640,["Wailing Spectre"]=12377,["Baron Silverlaine"]=3887,["Dorothee"]=17535,["Entropius"]=25840,["Arthur the Faithful"]=5491,["Damned Soul"]=12378,["Edna Mullby"]=1286,["General Drakkisath"]=10363,["Grella"]=23367,["Master Pyreanor"]=23128,["Captain Skarloc"]=17862,["Hex Lord Malacrass"]=24239,["High Warlord Naj'entus"]=22887,["Kaz'rogal"]=17888,["Shadowpriest Sezz'ziz"]=7275,["Vexallus"]=24744,["Aku'mai"]=4829,["Gan'arg Analyzer"]=23386,["Imp"]=416,["Nether-Stalker Khay'ji"]=19880,["Overseer Nuaar"]=21981,["Pyroguard Emberseer"]=9816,["Randal Hunter"]=4732,["Sid Limbardi"]=16826,["Twilight Lord Kelris"]=4832,["Razorclaw the Butcher"]=3886,["Wolf Master Nandos"]=3927,["Zereketh the Unbound"]=20870,["Farseer Nobundo"]=17204,["Frostsaber Stalker"]=7432,["Lady Sarevess"]=4831,["Nixx Sprocketspring"]=8126,["High Interrogator Gerstahn"]=9018,["Nutral"]=18940,["Ruul the Darkener"]=21315,["Spirit Sage Zran"]=19773,["Archivist Galford"]=10811,["Golem Lord Argelmach"]=8983,["Houndmaster Grebmar"]=9319,["Betina Bigglezink"]=11035,["Bloodaxe Worg"]=9696,["Doba"]=20028,["Ethereum Jailor"]=23008,["Gilnid"]=1763,["Ironus Coldsteel"]=11146,["Lantresor of the Blade"]=18261,["Nethermine Ravager"]=23326,["Voren'thal the Seer"]=18530,["Anub'shiah"]=9031,["Avatar of Hakkar"]=8443,["Captain Greenskin"]=647,["Commander Ameer"]=20448,["Gul'dan"]=17008,["Jelena Nightsky"]=18777,["Kirtonos the Herald"]=10506,["Rema"]=21956,["Warp Stalker"]=18464,["Xerintha Ravenoak"]=20916,["Balnazzar"]=10813,["Ancient Shadowmoon Spirit"]=21797,["Cho'war the Pillager"]=18423,["Gambarinka"]=18015,["Lesser Nether Drake"]=21004,["Lorrin Foxfire"]=27705,["Netherock"]=20772,["The Beast"]=10430,["Andormu"]=20130,["Arred"]=17512,["Big Zokk Torquewrench"]=26352,["Demon Hunter Initiate"]=21180,["Drelik Blastpipe"]=27721,["Dugiru"]=20604,["Fahssn"]=17923,["Mari Stonehand"]=19373,["Restless Shade"]=7370,["Yrma"]=25977,["Zarevhi"]=22427,["Bael'Gar"]=9016,["C'Thun"]=15727,["Rotgrip"]=13596,["Ashtongue Warrior"]=21454,["Bernie Heisten"]=3546,["Devilsaur"]=6498,["Gurgthock"]=18471,["Vilebranch Raiding Wolf"]=2681,["Wild Elekk"]=18334,["Baroness Anastari"]=10436,["Lady Sacrolash"]=25165,["Noxxion"]=13282,["Brokentoe"]=18398,["Clefthoof Bull"]=17132,["Dreadfang Lurker"]=18466,["Felsworn Scalewing"]=21123,["Inscriber Veredis"]=20808,["Nether Dragon"]=20332,["Professor Thaddeus Paleo"]=14847,["Techbot"]=6231,["The Illidari Council"]=23426,["Zaxxis Raider"]=18875,["Commander Sarannis"]=17976,["Tinkerer Gizlock"]=13601,["Witch Doctor Zum'rah"]=7271,["Bellygrub"]=345,["Malygen"]=2803,["Mana Wraith"]=18864,["Narina"]=16274,["Old Serra'kis"]=4830,["Perascamin"]=16280,["Provisioner Vredigar"]=16528,["Refik"]=16729,["Yuula"]=23449,["Lord Kri"]=15511,["Nefarian"]=11583,["Altruis the Sufferer"]=18417,["Aresella"]=18991,["Auction House"]=91914,["Dimensius the All-Devouring"]=19554,["Doctor Gustaf VanHowzen"]=12939,["Dust Devil"]=832,["Ghostrider of Karabor"]=21784,["Jabbey"]=8139,["Kelgruk Bloodaxe"]=7231,["Mordresh Fire Eye"]=7357,["Nerrist"]=1148,["Teremus the Devourer"]=7846,["Fankriss the Unyielding"]=15510,["Grand Warlock Alythess"]=25166,["Landslide"]=12203,["Anachronos"]=15192,["Bach'lor"]=18258,["Champion Bachi"]=16681,["Enraged Earth Spirit"]=21050,["Grikkin Copperspring"]=25176,["Kiggler the Crazed"]=18835,["Land Rager"]=5465,["Shimmerscale Eel"]=18750,["Thornfang Venomspitter"]=19350,["Crowd Pummeler 9-60"]=6229,["High Nethermancer Zerevor"]=22950,["Ragnaros"]=11502,["Thorngrin the Tender"]=17978,["Arodis Sunblade"]=20613,["Cookie"]=645,["Death Speaker Jargba"]=4428,["Haggard War Veteran"]=19684,["Jonathan Garrett"]=25099,["Qiff"]=19575,["High Priest Thekal"]=14509,["Hydromancer Velratha"]=7795,["Lord Cobrahn"]=3669,["Moam"]=15340,["Overlord Wyrmthalak"]=9568,["Brogg"]=23579,["Coilskar Cobra"]=19784,["Ghost Saber"]=3619,["Goc"]=20555,["Helboar"]=5993,["Ileda"]=16621,["Jase Farlane"]=12941,["Krosh Firehand"]=18832,["Masophet the Black"]=16249,["Melaris"]=16641,["Mirren Longbeard"]=16851,["Mo'arg Weaponsmith"]=19755,["Mr. Smite"]=646,["Quartermaster Miranda Breechlock"]=11536,["Skettis Surger"]=21728,["Warden Moi'bff Jill"]=18408,["Watcher Jhang"]=17884,["Electrocutioner 6000"]=6235,["Gorosh the Dervish"]=9027,["Grizzle"]=9028,["Hedrum the Creeper"]=9032,["Roar"]=17546,["Arcanist Adyria"]=18596,["Auchenai Monk"]=18497,["Bloodtalon Scythemaw"]=3123,["Bog Lord"]=18127,["Boulderfist Warrior"]=17136,["Gelanthis"]=16624,["Gyth"]=10339,["Mok'rash"]=1493,["Sahaak"]=23363,["Stonelash Flayer"]=11737,["Taragaman the Hungerer"]=11520,["Thomas Yance"]=18672,["Warden Bullrok"]=18407,["Winterfall Runner"]=10916,["Timmy the Cruel"]=10808,["Alliance Field Scout"]=18581,["Anwehu"]=27667,["Cookie One-Eye"]=16585,["Denatharion"]=4218,["Gelihast"]=6243,["Keena"]=2821,["Krathok Moltenfist"]=11176,["Kuz"]=3436,["Lady Illucia Barov"]=10502,["Niobe Whizzlespark"]=24868,["Noellene"]=16275,["Swiftwing Shredder"]=20673,["Torallius the Pack Handler"]=17584,["Lord Incendius"]=9017,["Obsidian Sentinel"]=7023,["Ossirian the Unscarred"]=15339,["Revelosh"]=6910,["Skum"]=3674,["Alamma"]=16646,["Altaa"]=16705,["Leeli Longhaggle"]=19042,["Lucan Cordell"]=1317,["Officer Areyn"]=12805,["Speaker Mar'grom"]=18693,["Talbuk Thorngrazer"]=17131,["Vazruden the Herald"]=17307,["Vhel'kur"]=21801,["Zurai"]=18011,["Akil'zon"]=23574,["Antu'sul"]=8127,["Blood Guard Porung"]=20923,["Galgann Firehammer"]=7291,["Grimlok"]=4854,["Hurley Blackbreath"]=9537,["Apex"]=19940,["Arnold Leland"]=5493,["Brumman"]=18771,["Crazed Murkblood Miner"]=23324,["Darkmaster Gandling"]=1853,["Gaston"]=18987,["Hermit Ortell"]=15194,["Overlord Mor'ghor"]=23139,["Sian-Rotam"]=10741,["Supply Officer Mills"]=19038,["Wretched Skulker"]=24688,["Yatheon"]=16782,["Digmaster Shovelphlange"]=7057,["Grubbis"]=7361,["Plugger Spazzring"]=9499,["Ramstein the Gorger"]=10439,["Atal'alarion"]=8580,["Bonestripper Vulture"]=16973,["Dealer Najeeb"]=20981,["Dire Raven"]=21042,["Georgio Bolero"]=1346,["Glordrum Steelbeard"]=12197,["Highlord Taelan Fordring"]=1842,["Ironjaw"]=18670,["Koren"]=16388,["Lokhtos Darkbargainer"]=12944,["Magus Zabraxis"]=16829,["Master Chef Mouldier"]=16253,["Monstrous Kaliri"]=23051,["Mountain Gronn"]=19201,["Reth'hedron the Subduer"]=22357,["Rok'Alim the Pounder"]=4499,["Scorchshell Pincer"]=21864,["Taerar"]=14890,["Tharynn Bouden"]=66,["Training Dummy"]=17578,["Trigger Guse"]=14026,["Val'zareq the Conqueror"]=21979,["Windcaller Claw"]=17894,["Highlord Omokk"]=9196,["Nekrum Gutchewer"]=7796,["Urok Doomhowl"]=10584,["Viscous Fallout"]=7079,["Bor Wildmane"]=15306,["Dreadwing"]=21032,["Farseer Umbrua"]=20407,["Grand Crusader Dathrohan"]=10812,["Jergosh the Invoker"]=11518,["Leonid Barthalomew the Revered"]=11036,["Lord Kazzak"]=12397,["Taskmaster Varkule Dragonbreath"]=23140,["[PH] Bri's Test NPC"]=25139,["Ambassador Flamelash"]=9156,["Ancient Stone Keeper"]=7206,["Aether Ray"]=22181,["Aurius"]=10917,["Blindeye the Seer"]=18836,["Bloodscale Slavedriver"]=18089,["Dealer Tariq"]=20986,["Deino"]=5885,["Elder Shardtooth"]=7445,["Explodyne Fizzlespurt"]=18898,["Fallout Slime"]=16290,["Firemane Scout"]=4329,["Humphry"]=16823,["Martha Alliestar"]=4614,["Prophet Velen"]=17468,["Scorpid Bonecrawler"]=22100,["Scythetooth Raptor"]=20634,["Shartuul"]=23230,["Smith Hauthaa"]=25046,["Smokey LaRue"]=11033,["Tinkee Steamboil"]=10267,["Vile Fire-Soul"]=22298,["Wulan"]=12033,["Battleguard Sartura"]=15516,["Essence of Anger"]=23420,["Shade of Akama"]=22841,["Tinhead"]=17547,["Annora"]=11073,["Asarnan"]=19540,["Banalash"]=989,["Baxter"]=18988,["Bazil Thredd"]=1716,["Culuthas"]=20138,["Fantei"]=19678,["Field Repair Bot 110G"]=24780,["Fishbot 5000"]=15079,["Gezhe"]=18265,["Knight-Lord Bloodvalor"]=17717,["Lor'themar Theron"]=16802,["Lorgus Jett"]=12902,["Ranik"]=3499,["Trigger Vipore"]=14031,["Vekax"]=22429,["Venture Co. Lumberjack"]=921,["Withered Giant"]=18124,["Jan'alai"]=23578,["Maleki the Pallid"]=10438,["-"]=17582,["Arvoar the Rapacious"]=23267,["Bash'ir"]=23391,["Bleeding Hollow Darkcaster"]=17269,["Collapsing Voidwalker"]=17014,["Dreadmaw Crocolisk"]=3110,["Earthbinder Rayge"]=17885,["Fallen Hero of the Horde"]=7572,["Feera"]=16657,["Glutton"]=8567,["Gray Bear"]=2351,["Loganaar"]=12042,["Lord Valthalak"]=16042,["Lunaraa"]=16755,["Shattered Rumbler"]=17157,["Sunfury Archer"]=19707,["The Duke of Cynders"]=15206,["Toxic Horror"]=7132,["Volcor"]=3692,["Winterfall Pathfinder"]=7442,["Wrathbringer"]=18858,["Zelemar the Wrathful"]=17830,["Zjolnir"]=7952,["Fineous Darkvire"]=9056,["Ironaya"]=7228,["Malor the Zealous"]=11032,["Ribbly Screwspigot"]=9543,["Shadow Hunter Vosh'gajin"]=9236,["The Unforgiven"]=10516,["Akama"]=21700,["Bale"]=2806,["Baron Aquanis"]=12876,["Dealer Jadyan"]=19536,["Drazzit Dripvalve"]=23572,["Eclipsion Archmage"]=19796,["Erozion"]=18723,["Frostsaber Huntress"]=7433,["Ironbeak Owl"]=7097,["Jadefire Felsworn"]=7109,["Jartsam"]=4753,["Longtooth Runner"]=5286,["Lorekeeper Lydros"]=14368,["Ogunaro Wolfrunner"]=3362,["Okuno"]=23159,["Salt Flats Vulture"]=4158,["Sever"]=14682,["Shy-Rotam"]=10737,["Sundered Thunderer"]=18882,["Temper"]=17205,["Tirion Fordring"]=1855,["Unger Statforth"]=1460,["Zachariah Post"]=4731,["Cannon Master Willey"]=10997,["Jammal'an the Prophet"]=5710,["Nerub'enkan"]=10437,["Strawman"]=17543,["Battleboar"]=2966,["Belil"]=16663,["Bruegal Ironknuckle"]=1720,["Calandrath"]=15174,["Christoph Jeffcoat"]=2393,["Darmari"]=19187,["Earthen Templar"]=15307,["Fozruk"]=2611,["Furious Nether-wraith"]=22408,["Greater Fleshripper"]=154,["High Justice Grimstone"]=10096,["Itharius"]=5353,["Jandice Barov"]=10503,["Kayri"]=26089,["Luzran"]=16245,["Magister Aledis"]=20159,["Targorr the Dread"]=1696,["Tel'athion the Impure"]=17359,["Voidshrieker"]=18870,["Warmaul Shaman"]=18064,["Windy Cloud"]=24222,["Winterfall Den Watcher"]=7440,["Dreamscythe"]=5721,["King Gordok"]=11501,["Cyber-Rage Forgelord"]=16943,["Emeriss"]=14889,["Flawless Arcane Elemental"]=23100,["Gasher"]=5713,["Goreclaw the Ravenous"]=23873,["Great Goretusk"]=547,["Horde Warbringer"]=15350,["Kormok"]=16118,["Lhara"]=14846,["Living Cyclone"]=17160,["Lumak"]=3332,["Magisters' Terrace - Scryer Quest Bunny"]=25042,["Magnus Frostwake"]=11278,["Mudfin Frenzy"]=18212,["Narillasanz"]=2447,["Netherwalker"]=14389,["Oggleflint"]=11517,["Pentatharon"]=20215,["Rak'shiri"]=10200,["Sayge"]=14822,["Voidhunter Yar"]=18683,["Wing Commander Brack"]=19401,["Halycon"]=10220,["Ok'thor the Breaker"]=9030,["Ruuzlu"]=7797,["The Prophet Skeram"]=15263,["Beram Skychaser"]=3032,["Blackfang Tarantula"]=18983,["Chief Researcher Kartos"]=18817,["Chromie"]=10667,["Dampscale Basilisk"]=18461,["Dar'Khan Drathir"]=16329,["Eldrin"]=1103,["Frostwolf Quartermaster"]=12097,["Olm the Summoner"]=18834,["Qiaga the Keeper"]=7996,["Scorn"]=14693,["Sha'nir"]=18597,["Shen'dralar Ancient"]=14358,["Tinkerwiz"]=3494,["Unkor the Ruthless"]=18262,["Vir'aani Arcanist"]=17150,["Warp Hunter"]=18465,["Windcaller Yessendra"]=15498,["Wravien"]=16813,["Gahz'ranka"]=15114,["Pyromancer Loregrain"]=9024,["Tito"]=17548,["Alchemist Pestlezugg"]=5594,["Blind Hunter"]=4425,["Bonechewer Destroyer"]=17271,["Burbik Gearspanner"]=5163,["Catherine Leland"]=5494,["Clefthoof"]=18205,["Coilfang Enchantress"]=17961,["Crystal Ward"]=24980,["Daisy"]=4507,["Darkwater Crocolisk"]=17952,["Daryl Riknussun"]=5159,["Doctor Gregory Victor"]=12920,["Domesticated Felboar"]=21195,["Elder Mottled Boar"]=3100,["Enraged Crusher"]=18062,["Exarch Onaala"]=21860,["Gronn-Priest"]=21350,["Gurf"]=17441,["Hemet Nesingwary Jr."]=715,["Indormi"]=23437,["Insidion"]=23281,["Jubahl Corpseseeker"]=6382,["Karrog"]=23165,["Kum'isha the Collector"]=7363,["Lord Skwol"]=15305,["Morthis Whisperwing"]=22832,["Mosh'Ogg Lord"]=680,["Plaguemaw the Rotting"]=7356,["Scholomance Necromancer"]=10477,["Sin'Dall"]=729,["Soridormi"]=19935,["Trachela"]=21515,["Cho'Rush the Observer"]=14324,["Immol'thar"]=11496,["Princess Moira Bronzebeard"]=8929,["Alexander Calder"]=5173,["Axle"]=23995,["Ayren Cloudbreaker"]=25059,["Azshir the Sleepless"]=6490,["Baristolth of the Shifting Sands"]=15180,["Bath'rah the Windwatcher"]=6176,["Black Blood of Draenor"]=23286,["Botanist Nathera"]=16644,["Captured Gnome"]=19383,["Cenarion Hold Infantry"]=15184,["Collidus the Warp-Watcher"]=18694,["Dealer Senzik"]=19538,["Dredge Crusher"]=11741,["Ishanah"]=18538,["Kil'sorrow Deathsworn"]=17148,["Legashi Rogue"]=6201,["Magar"]=3363,["Old Murk-Eye"]=391,["Overseer Ripsaw"]=21499,["Pterrordax"]=9166,["Rartar"]=8177,["Rexxar"]=21984,["Sai'kkal the Elder"]=22932,["Servant of Grol"]=7669,["Skettis Kaliri"]=21804,["Sunfury Bowman"]=20207,["Tasaldan"]=21483,["The Rake"]=5807,["Tooga"]=5955,["Tuluun"]=17212,["Underbog Colossus"]=21251,["Gathios the Shatterer"]=22949,["Kurinnaxx"]=15348,["Loatheb"]=16011,["Mother Smolderweb"]=10596,["Noth the Plaguebringer"]=15954,["Ouro"]=15517,["Aldraan"]=21485,["Alliance Brigadier General"]=15351,["Anchorite Ceyla"]=21402,["Anger Guard"]=16952,["Barim Spilthoof"]=18754,["Binjy Featherwhistle"]=7954,["Bladespire Brute"]=19995,["Bonechewer Backbreaker"]=16810,["Cabal Tomb-Raider"]=21662,["Corrupted Mottled Boar"]=3225,["Dust Howler"]=17158,["Elder Springpaw"]=15652,["Enraged Water Spirit"]=21059,["Galak Messenger"]=10617,["Godan"]=3345,["Injured Argent Dawn Infantry"]=16229,["Jadefire Trickster"]=7107,["Jazdalaad"]=19539,["Jed Runewatcher"]=10509,["Kardris Dreamseeker"]=3344,["Kendor Kabonka"]=340,["King Magni Bronzebeard"]=2784,["Krixel Pinchwhistle"]=23396,["Magistrate Marduke"]=11286,["Murkgill Warrior"]=4461,["Sagorne Creststrider"]=13417,["Saltscale Warrior"]=871,["Shadrek"]=18333,["Steward of Time"]=20142,["Xyrol"]=19576,["Eviscerator"]=9029,["Hakkar"]=14834,["Jin'do the Hexxer"]=11380,["Maexxna"]=15952,["Mor Grayhoof"]=16080,["Razorgore the Untamed"]=12435,["Anastasia Hartwell"]=4568,["Archmage Leryda"]=18253,["Argent Guard Thaelrid"]=4787,["Blackmoss the Fetid"]=3535,["Bone Wastes - Event Trigger A"]=21451,["Clefthoof Calf"]=19183,["Coilskar Siren"]=19768,["Daranelle"]=21469,["Deynna"]=16638,["Ever-Core the Punisher"]=18698,["Ghost Howl"]=3056,["Harn Longcast"]=5940,["Jaedenar Legionnaire"]=9862,["Legashi Satyr"]=6200,["Magtheridon"]=21174,["Mana Invader"]=20618,["Marvon Rivetseeker"]=7771,["Nether Drake Egg Bunny"]=21814,["Oglethorpe Obnoticus"]=7406,["Prospector Ironboot"]=10460,["Ras Frostwhisper"]=10508,["Rattlegore"]=11622,["Rokgah Bloodgrip"]=21311,["Roloch"]=14488,["Shadowmoon Technician"]=17414,["Smolderwing"]=23789,["Storm Rager"]=17159,["Sundered Rumbler"]=18881,["Takar the Seer"]=6244,["Warlord Dar'toon"]=19254,["Wonderform Operator"]=15732,["Instructor Razuvious"]=16061,["Nalorakk"]=23576,["King Dond"]=18897,["Agnar Beastamer"]=9660,["Bloodmage Drazial"]=7505,["Congealed Void Horror"]=20779,["Demon Hunter Supplicant"]=21179,["Earthmender Torlok"]=21024,["Elder Rage Scar"]=5297,["Empoor"]=18482,["Falla Sagewind"]=8418,["Farseer Javad"]=23127,["Felcular"]=7735,["Ferocious Yeti"]=2249,["Fulgorge"]=18678,["Greater Windroc"]=17129,["Hamhock"]=1717,["Horde Field Scout"]=18564,["Ivy Leafrunner"]=10924} \ No newline at end of file From ed4a1a2c9ba8a718d063efcc13881cf5afb751bf Mon Sep 17 00:00:00 2001 From: Holiest WoW Date: Thu, 15 Jan 2026 09:47:19 -0500 Subject: [PATCH 02/12] Securely Fixed Era->TBC GUID issues. --- CharacterStatusScreen.lua | 3 +- Hardcore.lua | 254 +++++++++++++++++++++++++++++++++----- Hardcore_TBC.toc | 174 ++++++++++++++++++++++++++ InspectStatusScreen.lua | 22 +++- LevelToast.lua | 2 +- MainMenu.lua | 10 +- Security.lua | 2 +- dungeon-db-tbc.lua | 169 +++++++++++++++++++++++++ id_to_npc_classic.lua | 2 +- id_to_npc_tbc.lua | 0 npc_to_id_classic.lua | 2 +- 11 files changed, 596 insertions(+), 44 deletions(-) create mode 100644 Hardcore_TBC.toc create mode 100644 dungeon-db-tbc.lua create mode 100644 id_to_npc_tbc.lua diff --git a/CharacterStatusScreen.lua b/CharacterStatusScreen.lua index 576b36e6..293abea0 100644 --- a/CharacterStatusScreen.lua +++ b/CharacterStatusScreen.lua @@ -44,6 +44,7 @@ end local f if _G["HardcoreBuildLabel"] ~= "Cata" then f = CreateFrame("Frame", "HardcoreOuterFrame", Panel) + f:SetFrameStrata("HIGH") f:SetSize(400, 400) f:SetPoint("CENTER") f:Hide() @@ -478,7 +479,7 @@ function ShowCharacterHC(_hardcore_character) UpdateCharacterHC( _hardcore_character, UnitName("player"), - GetAddOnMetadata("Hardcore", "Version"), + C_AddOns.GetAddOnMetadata("Hardcore", "Version"), f2, class, class_en, diff --git a/Hardcore.lua b/Hardcore.lua index da7224e0..a5e99b5b 100644 --- a/Hardcore.lua +++ b/Hardcore.lua @@ -468,6 +468,8 @@ function FailureFunction(achievement_name) then if Hardcore_Character.game_version == "WotLK" then max_level = 80 + elseif Hardcore_Character.game_version == "TBC" then + max_level = 70 else max_level = 85 end @@ -780,6 +782,8 @@ TradeFrameTradeButton:SetScript("OnClick", function() then if Hardcore_Character.game_version == "WotLK" then max_level = 80 + elseif Hardcore_Character.game_version == "TBC" then + max_level = 70 else max_level = 85 end @@ -811,6 +815,38 @@ function Hardcore:Startup() -- the entry point of our addon -- called inside loading screen before player sees world, some api functions are not available yet. + if not Hardcore.Original_ChatFrame1_AddMessage then + Hardcore.Original_ChatFrame1_AddMessage = ChatFrame1.AddMessage + end + + ChatFrame1.AddMessage = function(self, text, ...) + -- Safety check: ensure text exists and buffer is active + if text and HIDE_RTP_CHAT_MSG_BUFFER > 0 then + + -- Define the patterns to look for (strip the %s variable) + local totalPrefix = string.gsub(TIME_PLAYED_TOTAL, "%%s", "") + local levelPrefix = string.gsub(TIME_PLAYED_LEVEL, "%%s", "") + + -- Check for "Total time played" + if string.find(text, totalPrefix, 1, true) then + -- Return without calling original function -> Message Hidden + return + end + + -- Check for "Time played this level" + if string.find(text, levelPrefix, 1, true) then + -- Decrement buffer + HIDE_RTP_CHAT_MSG_BUFFER = HIDE_RTP_CHAT_MSG_BUFFER - 1 + if HIDE_RTP_CHAT_MSG_BUFFER < 0 then HIDE_RTP_CHAT_MSG_BUFFER = 0 end + + return -- Message Hidden + end + end + + -- If not hidden, pass it to the real chat frame + return Hardcore.Original_ChatFrame1_AddMessage(self, text, ...) + end + -- event handling helper self:SetScript("OnEvent", function(self, event, ...) self[event](self, ...) @@ -959,17 +995,93 @@ function Hardcore:PLAYER_LOGIN() -- For dungeon tracking targetting of door npcs --self:RegisterEvent("ADDON_ACTION_FORBIDDEN") + + ChatFrame_AddMessageEventFilter("CHAT_MSG_SYSTEM", function(frame, event, message, ...) + if HIDE_RTP_CHAT_MSG_BUFFER > 0 then + -- Get the localized global strings for time played and strip the "%s" variable + -- This ensures it works on all client languages + local totalPrefix = string.gsub(TIME_PLAYED_TOTAL, "%%s", "") -- "Total time played: " + local levelPrefix = string.gsub(TIME_PLAYED_LEVEL, "%%s", "") -- "Time played this level: " + + -- Check if the message starts with "Total time played" + if string.find(message, totalPrefix, 1, true) then + if debug then + Hardcore:Debug("ChatFilter: Hidden 'Total' message: " .. message) + end + -- We hide this line, but don't decrement yet because the 'Level' line comes next + return true + end + + -- Check if the message starts with "Time played this level" + if string.find(message, levelPrefix, 1, true) then + if debug then + Hardcore:Debug("ChatFilter: Hidden 'Level' message. Decrementing Buffer.") + end + + -- This is usually the last message in the block, so we decrement now + HIDE_RTP_CHAT_MSG_BUFFER = HIDE_RTP_CHAT_MSG_BUFFER - 1 + if HIDE_RTP_CHAT_MSG_BUFFER < 0 then HIDE_RTP_CHAT_MSG_BUFFER = 0 end + + return true + end + end + + return false, message, ... + end) Hardcore:InitializeSavedVariables() Hardcore:InitializeSettingsSavedVariables() Hardcore:ApplyAlertFrameSettings() - -- different guid means new character with the same name + -- different guid means new character with the same name OR Era->TBC Transfer if Hardcore_Character.guid ~= PLAYER_GUID then - Hardcore:Print("New character detected. Contact a mod or technician in #addon-appeal if this is unexpected.") - Hardcore:ForceResetSavedVariables() - WARNING = "" + -- DEBUG START + Hardcore:Print("|cff00FFFF[DEBUG] GUID Mismatch Detected!|r") + Hardcore:Print(" Stored GUID (Old): " .. tostring(Hardcore_Character.guid)) + Hardcore:Print(" Player GUID (New): " .. tostring(PLAYER_GUID)) + Hardcore:Print(" Stored Game Version: " .. tostring(Hardcore_Character.game_version)) + -- DEBUG END + + -- 1. Security Hash Check + -- Hardcore_VerifyChecksum() runs the check but returns nil. + -- We must check Hardcore_GetSecurityStatus() for the actual result ("OK" or "FAIL"). + Hardcore_VerifyChecksum() + local securityStatus = Hardcore_GetSecurityStatus() + local isFileAuthentic = (securityStatus == "OK") + + -- DEBUG START + Hardcore:Print(" Security Status: " .. tostring(securityStatus)) + Hardcore:Print(" Is Authentic? " .. tostring(isFileAuthentic)) + -- DEBUG END + + -- 2. Era Check + local isFromEra = (Hardcore_Character.game_version == "Era" or Hardcore_Character.game_version == "SoM" or Hardcore_Character.game_version == "Classic") + + -- DEBUG START + Hardcore:Print(" Is From Era/SoM/Classic? " .. tostring(isFromEra)) + -- DEBUG END + + if isFileAuthentic and isFromEra then + Hardcore:Print("|cff00FF00Hardcore:|r Era-to-TBC Transfer Detected. Verifying Playtime...") + + -- Flag this session as pending verification. + -- We DO NOT update the GUID yet, and we DO NOT wipe the data. + Hardcore.pending_transfer_verification = true + + else + -- DEBUG START + Hardcore:Print("|cffFF0000[DEBUG] Migration Logic Failed.|r") + if not isFileAuthentic then Hardcore:Print(" Reason: File Tampered/Checksum Failed (Status: " .. tostring(securityStatus) .. ")") end + if not isFromEra then Hardcore:Print(" Reason: Not an Era/SoM file (Version: " .. tostring(Hardcore_Character.game_version) .. ")") end + -- DEBUG END + + -- Hash failed, or not from Era. Treat as new character. + Hardcore:Print("New character detected (or file security failed). Resetting data.") + Hardcore:ForceResetSavedVariables() + Hardcore_Character.guid = PLAYER_GUID + WARNING = "" + end end -- Improved time resolutions for segments @@ -1046,7 +1158,7 @@ function Hardcore:PLAYER_LOGIN() -- check players version against highest version local FULL_PLAYER_NAME = Hardcore_GetPlayerPlusRealmName() - Hardcore:CheckVersionsAndUpdate(FULL_PLAYER_NAME, GetAddOnMetadata("Hardcore", "Version")) + Hardcore:CheckVersionsAndUpdate(FULL_PLAYER_NAME, C_AddOns.GetAddOnMetadata("Hardcore", "Version")) -- reset debug log; To view debug log, log out and see saved variables before logging back in Hardcore_Settings.debug_log = {} @@ -1242,17 +1354,19 @@ function Hardcore:INSPECT_READY(...) hooksecurefunc("CharacterFrameTab_OnClick", function(self) local name = self:GetName() - if - (name ~= "InspectFrameTab3" and _G["HardcoreBuildLabel"] ~= "WotLK") - or (name ~= "InspectFrameTab4" and _G["HardcoreBuildLabel"] == "WotLK") - then -- 3:era, 4:wotlk + -- Determine if we are on a version with 3 default tabs (TBC, WotLK, Cata) or 2 (Era/SoM) + local isExpansion = _G["HardcoreBuildLabel"] == "WotLK" or _G["HardcoreBuildLabel"] == "TBC" or _G["HardcoreBuildLabel"] == "Cata" + + -- Target Tab is 4 for Expansions, 3 for Era + local targetTabName = isExpansion and "InspectFrameTab4" or "InspectFrameTab3" + local targetTabID = isExpansion and 4 or 3 + + if name ~= targetTabName then return end - if _G["HardcoreBuildLabel"] == "WotLK" then - PanelTemplates_SetTab(InspectFrame, 4) - else - PanelTemplates_SetTab(InspectFrame, 3) - end + + PanelTemplates_SetTab(InspectFrame, targetTabID) + if _G["InspectPaperDollFrame"] ~= nil then _G["InspectPaperDollFrame"]:Hide() end @@ -1703,6 +1817,47 @@ local function initiateRecoverTime(duration_since_last_recording) end function Hardcore:TIME_PLAYED_MSG(...) + -- ERA -> TBC IDENTITY VERIFICATION + if Hardcore.pending_transfer_verification then + local totalTimePlayed, _ = ... + local storedTime = Hardcore_Character.time_played or 0 + local timeDiff = math.abs(totalTimePlayed - storedTime) + + -- DEBUG START + Hardcore:Print("|cff00FFFF[DEBUG] Time Verification Running...|r") + Hardcore:Print(" Server Time: " .. tostring(totalTimePlayed)) + Hardcore:Print(" Stored Time: " .. tostring(storedTime)) + Hardcore:Print(" Difference: " .. tostring(timeDiff) .. " seconds") + -- DEBUG END + + -- Tolerance Window: 15 Minutes (900 seconds) to account for minor sync differences + if timeDiff < 900 then + Hardcore:Print("|cff00FF00Hardcore:|r Identity Verified. Updating Database to TBC.") + + -- 1. Update GUID + Hardcore_Character.guid = UnitGUID("player") + + -- 2. Update Version + Hardcore_Character.game_version = "TBC" -- or _G["HardcoreBuildLabel"] + + -- 3. Reset Gold Tracker (Prevents "Tampered" warning due to GUID change) + Hardcore_Character.gt = nil + + -- 4. Re-Sign the file + Hardcore_StoreChecksum() + + Hardcore:Print("Character successfully migrated.") + else + -- Identity Check Failed (Time mismatch implies new character with same name) + Hardcore:Print("|cffFF0000Hardcore:|r Playtime mismatch (Server: "..SecondsToTime(totalTimePlayed).." vs File: "..SecondsToTime(storedTime).."). Resetting.") + Hardcore:ForceResetSavedVariables() + Hardcore_Character.guid = UnitGUID("player") + Hardcore_StoreChecksum() + end + + -- Clear the flag so we don't run this again + Hardcore.pending_transfer_verification = nil + end -- Don't update anymore after the data security checksum has been calculated if player_logged_out == true then return @@ -1948,11 +2103,27 @@ end local Cached_ChatFrame_DisplayTimePlayed = ChatFrame_DisplayTimePlayed ChatFrame_DisplayTimePlayed = function(...) - if HIDE_RTP_CHAT_MSG_BUFFER > 0 then + -- Debug: Check what the buffer sees when the game tries to print the message + if debug then + Hardcore:Debug("Game attempted to display TimePlayed. Current Buffer: " .. tostring(HIDE_RTP_CHAT_MSG_BUFFER)) + end + + if HIDE_RTP_CHAT_MSG_BUFFER == 1 then HIDE_RTP_CHAT_MSG_BUFFER = HIDE_RTP_CHAT_MSG_BUFFER - 1 - return - end - return Cached_ChatFrame_DisplayTimePlayed(...) + if debug then + Hardcore:Debug("Message Hidden. New Buffer: " .. tostring(HIDE_RTP_CHAT_MSG_BUFFER)) + end + return + elseif HIDE_RTP_CHAT_MSG_BUFFER == 2 then + HIDE_RTP_CHAT_MSG_BUFFER = HIDE_RTP_CHAT_MSG_BUFFER - 2 + if debug then + Hardcore:Debug("Messages Hidden. New Buffer: " .. tostring(HIDE_RTP_CHAT_MSG_BUFFER)) + end + return + end + + -- If buffer is 0, we let the message through + return Cached_ChatFrame_DisplayTimePlayed(...) end function Hardcore:RequestTimePlayed() @@ -1974,6 +2145,8 @@ function Hardcore:ShouldShowPlaytimeWarning(level, percentage) then if Hardcore_Character.game_version == "WotLK" then level = (level * 60) / 80 + elseif Hardcore_Character.game_version == "TBC" then + level = (level * 60) / 70 else -- Cataclysm or other level = (level * 60) / 85 end @@ -2333,6 +2506,8 @@ local function levelToast(rea_name, rea_class, rea_level) toastMaxLevel = "85" elseif _G["HardcoreBuildLabel"] == "WotLK" then toastMaxLevel = "80" + elseif _G["HardcoreBuildLabel"] == "TBC" then + toastMaxLevel = "70" end if tostring(rea_level) ~= toastMaxLevel then return @@ -2687,7 +2862,7 @@ function Hardcore:FormatRow(row, fullcolor, formattype) local version if row.name == FULL_PLAYER_NAME then - version = GetAddOnMetadata("Hardcore", "Version") + version = C_AddOns.GetAddOnMetadata("Hardcore", "Version") else version = guild_versions[row.name] end @@ -3105,7 +3280,7 @@ function Hardcore:initMinimapButton() if not tooltip or not tooltip.AddLine then return end - tooltip:AddLine("Hardcore (" .. GetAddOnMetadata("Hardcore", "Version") .. ")") + tooltip:AddLine("Hardcore (" .. C_AddOns.GetAddOnMetadata("Hardcore", "Version") .. ")") tooltip:AddLine("|cFFCFCFCFleft click|r toggle hc window") tooltip:AddLine("|cFFCFCFCFright click|r open hc options") end, @@ -3335,7 +3510,7 @@ end local ATTRIBUTE_SEPARATOR = "_" function Hardcore:GenerateVerificationString() - local version = GetAddOnMetadata("Hardcore", "Version") + local version = C_AddOns.GetAddOnMetadata("Hardcore", "Version") local _, class, _, race, _, name = GetPlayerInfoByGUID(UnitGUID("player")) local realm = GetRealmName() local level = UnitLevel("player") @@ -3382,7 +3557,7 @@ function Hardcore:InitiatePulse() local isInGuild, _, guild_rank_index = GetGuildInfo("player") if CTL and isInGuild then -- Send along the version we're using - local version = GetAddOnMetadata("Hardcore", "Version") + local version = C_Addons.GetAddonMetadata("Hardcore", "Version") local commMessage = COMM_COMMANDS[1] .. COMM_COMMAND_DELIM .. version CTL:SendAddonMessage("BULK", COMM_NAME, commMessage, "GUILD") hc_guild_rank_index = guild_rank_index @@ -3400,7 +3575,7 @@ end function Hardcore:SendCharacterData(dest) if CTL then local commMessage = COMM_COMMANDS[4] .. COMM_COMMAND_DELIM - commMessage = commMessage .. GetAddOnMetadata("Hardcore", "Version") .. COMM_FIELD_DELIM -- Add Version + commMessage = commMessage .. C_Addons.GetAddonMetadata("Hardcore", "Version") .. COMM_FIELD_DELIM -- Add Version if Hardcore_Character.first_recorded ~= nil and Hardcore_Character.first_recorded ~= -1 then commMessage = commMessage .. Hardcore_Character.first_recorded .. COMM_FIELD_DELIM -- Add creation time else @@ -3502,7 +3677,7 @@ function Hardcore:ReceivePulse(data, sender) Hardcore:CheckVersionsAndUpdate(sender, data) -- Set my versions - local version = GetAddOnMetadata("Hardcore", "Version") + local version = C_Addons.GetAddonMetadata("Hardcore", "Version") if version ~= guild_highest_version then guild_versions_status[FULL_PLAYER_NAME] = "outdated" end @@ -3517,7 +3692,7 @@ end function Hardcore:CheckVersionsAndUpdate(playername, versionstring) if guild_highest_version == nil then - guild_highest_version = GetAddOnMetadata("Hardcore", "Version") + guild_highest_version = C_Addons.GetAddonMetadata("Hardcore", "Version") end -- Hardcore:Debug('Comparing: data: '..versionstring.. ' to guild_highest_version: '..guild_highest_version) @@ -3629,11 +3804,34 @@ ChatFrame_AddMessageEventFilter("CHAT_MSG_GUILD", function(frame, event, message -- note that you must return *all* of the values that were passed to your filter, even ones you didn't change end) -ChatFrame_AddMessageEventFilter("CHAT_MSG_SYSTEM", function(frame, event, message, sender, ...) - if message:match("No player named") and message:match("is currently playing") then - return true, nil, sender, ... +ChatFrame_AddMessageEventFilter("CHAT_MSG_GUILD", function(frame, event, message, sender, ...) + if + hc_mute_inguild + and guild_online[sender] + and guild_online[sender]["level"] + and tonumber(hc_mute_inguild) >= guild_online[sender]["level"] + then + return + end + + if Hardcore_Settings.filter_f_in_chat then + if message == "f" or message == "F" then + return true, message, sender, ... + end + end + if Hardcore_Settings.show_version_in_chat then + if guild_versions[sender] then + message = "|cfffd9122[" .. guild_versions[sender] .. "]|r " .. message + end + end + + local _name, _ = string.split("-", sender) + if _G.hc_online_player_ranks[_name] and _G.hc_online_player_ranks[_name] == "officer" then + message = "\124cFFFF0000\124r " .. message + -- message = "|T" .. "Interface\\Addons\\Hardcore\\Media\\icon_crown.blp" .. ":8:8:0:0:64:64:4:60:4:60|t " .. message -- crown end return false, message, sender, ... -- don't hide this message + -- note that you must return *all* of the values that were passed to your filter, even ones you didn't change end) ChatFrame_AddMessageEventFilter("CHAT_MSG_CHANNEL", function(frame, event, message, sender, ...) diff --git a/Hardcore_TBC.toc b/Hardcore_TBC.toc new file mode 100644 index 00000000..e6ac3517 --- /dev/null +++ b/Hardcore_TBC.toc @@ -0,0 +1,174 @@ + +## Interface: 20505 +## Title: Hardcore 0.11.58b +## Notes: Supports TBC Hardcore +## Author: The Classic Hardcore team, Molikar (Sean Kennedy) +## X-License: All Rights Reserved +## X-Category: Leveling,Guild +## Version: 0.11.58b + + +## DefaultState: enabled +## SavedVariables: Hardcore_Settings,Backup_Character_Data +## SavedVariablesPerCharacter: WARNING,Hardcore_Character + +embeds.xml + +Libs/ascii85/ascii85.lua +CustomLayouts.lua +utils.lua +Security.lua +Hardcore.xml + +#Tokens +DKToken.lua +PartyChangeToken.lua + +Achievements/AchievementG.lua + +Achievements/Solo.lua +Achievements/Duo.lua +Achievements/Trio.lua +#Begin achievement modules +Achievements/Arcanist.lua +Achievements/FireAndFrost.lua +Achievements/ShadowAndFlame.lua +Achievements/AnimalFriend.lua +Achievements/Berserker.lua +Achievements/Bloodbath.lua +Achievements/CloseCombat.lua +Achievements/Cyromancer.lua +Achievements/DruidOfTheClaw.lua +Achievements/Ephemeral.lua +Achievements/Felfire.lua +Achievements/Grounded.lua +Achievements/Hammertime.lua +Achievements/Homebound.lua +Achievements/Humanist.lua +Achievements/ICanSeeYou.lua +Achievements/ImpMaster.lua +Achievements/InsaneInTheMembrane.lua +Achievements/LoneWolf.lua +Achievements/MortalPet.lua +Achievements/Naturalist.lua +Achievements/NobodyGotTimeForThat.lua +Achievements/NoHealthPotions.lua +Achievements/NoHit.lua +Achievements/NotSoDeadly.lua +Achievements/NotSoTalented.lua +Achievements/NotTheBlessedRun.lua +Achievements/NoWayOut.lua +Achievements/Nudist.lua +Achievements/Pacifist.lua +Achievements/PartnerUp.lua +Achievements/Pyromancer.lua +Achievements/Scavenger.lua +#Achievements/Speedrunner.lua +Achievements/SelfMade.lua +Achievements/ShadowEmbrace.lua +Achievements/Shivved.lua +Achievements/Shocked.lua +Achievements/SolitaryStruggle.lua +Achievements/SwordAndBoard.lua +Achievements/TiedHands.lua +Achievements/Thunderstruck.lua +Achievements/TotemicMisery.lua +Achievements/TrueBeliever.lua +Achievements/TunnelVision.lua +Achievements/Unrestored.lua +Achievements/WhiteKnight.lua +Achievements/Vagrant.lua +Achievements/VoidServant.lua +Achievements/SelfMadeDuo.lua +Achievements/SelfMadeTrio.lua +#End achievement modules + +#Start passive achievements +Achievements/KingOfTheJungle.lua +#Achievements/ShyRotam.lua +Achievements/HighChiefWinterfall.lua +Achievements/OfForgottenMemories.lua +Achievements/Maltorious.lua +Achievements/PawnCapturesQueen.lua +Achievements/Deathclasp.lua +Achievements/AFinalBlow.lua +Achievements/SummoningThePrincess.lua +Achievements/AbsentMindedProspector.lua +Achievements/TheHuntCompleted.lua +Achievements/MageSummoner.lua +Achievements/EarthenArise.lua +Achievements/GetMeOutOfHere.lua +Achievements/RitesOfTheEarthmother.lua +Achievements/KimjaelIndeed.lua +Achievements/Counterattack.lua +Achievements/TidalCharmAcquired.lua +Achievements/MasterLeatherworker.lua +Achievements/MasterBlacksmith.lua +Achievements/MasterAlchemist.lua +Achievements/MasterEnchanter.lua +Achievements/MasterTailoring.lua +Achievements/MasterEngineering.lua +Achievements/MasterSkinner.lua +Achievements/MasterMiner.lua +Achievements/MasterHerbalism.lua +Achievements/MasterFishing.lua +Achievements/MasterCooking.lua +Achievements/MasterFirstAid.lua +Achievements/Parkour.lua +Achievements/Tainted.lua +Achievements/TheDungeonCrawler.lua +Achievements/SpeedrunnerTen.lua +Achievements/SpeedrunnerTwenty.lua +Achievements/SpeedrunnerThirty.lua +Achievements/SpeedrunnerForty.lua +Achievements/SpeedrunnerFifty.lua +Achievements/SpeedrunnerSixty.lua +#Achievements/SpeedrunnerFifteen.lua +Achievements/DarkHeart.lua +Achievements/AgainstLordShalzaru.lua +Achievements/TestOfEndurance.lua +Achievements/CuergosGold.lua +Achievements/TheStonesThatBindUs.lua +Achievements/GalensEscape.lua +Achievements/Morladim.lua +Achievements/TheForgottenHeirloom.lua +Achievements/Hogger.lua +Achievements/Fangore.lua +Achievements/DragonkinMenace.lua +Achievements/Kromgul.lua +Achievements/NothingButTheTruth.lua +Achievements/SealOfEarth.lua +Achievements/TremorsofEarth.lua +Achievements/Vagash.lua +Achievements/InDefenseOfTheKing.lua +Achievements/DefeatNekrosh.lua +Achievements/DruidOfTheClawQuest.lua +Achievements/TheCrownOfWill.lua +Achievements/BattleOfHillsbrad.lua +Achievements/TheWeaver.lua +Achievements/TheFamilyCrypt.lua +Achievements/HintsOfANewPlague.lua +Achievements/RecoverTheKey.lua +Achievements/StinkysEscape.lua +Achievements/BurningShadows.lua +#End passive achievements + +CharacterStatusScreen.lua +InspectStatusScreen.lua +AchievementTab.lua +FirstMenuScreen.lua +ReloadReminder.lua +dungeon-db-tbc.lua +Dungeons.lua +Survey.lua +MainMenu.lua +TextureUtils.lua +TextureInfo.lua +AchievementAlertFrame.lua +id_to_npc_classic.lua +npc_to_id_classic.lua +DeathLog.lua +SlashCommands.lua +LevelToast.lua +Hardcore.lua + diff --git a/InspectStatusScreen.lua b/InspectStatusScreen.lua index 4b58db91..327a94af 100644 --- a/InspectStatusScreen.lua +++ b/InspectStatusScreen.lua @@ -2,6 +2,7 @@ local IPanel = CreateFrame("Frame", nil, CharacterFrame) IPanel:SetPoint("TOPLEFT", CharacterFrame, "TOPLEFT", -50, -200) IPanel:SetPoint("BOTTOMRIGHT", CharacterFrame, "BOTTOMRIGHT", -200, 0) local I_f = CreateFrame("Frame", "YourFrameName", IPanel) +I_f:SetFrameStrata("HIGH") I_f:SetSize(400, 400) I_f:SetPoint("CENTER") I_f:Hide() @@ -50,12 +51,21 @@ function ShowInspectHC(_hardcore_character, other_name, version) IPanel:SetParent(InspectFrame) IPanel:SetPoint("TOPLEFT", InspectFrame, "TOPLEFT", -50, -200) IPanel:SetPoint("BOTTOMRIGHT", InspectFrame, "BOTTOMRIGHT", -200, 0) - I_t:SetPoint("TOPLEFT", InspectFrame, "TOPLEFT", 2, -1) - I_tr:SetPoint("TOPLEFT", InspectFrame, "TOPLEFT", 258, -1) - I_bl:SetPoint("TOPLEFT", InspectFrame, "TOPLEFT", 2, -257) - I_br:SetPoint("TOPLEFT", InspectFrame, "TOPLEFT", 258, -257) - I_f2:SetPoint("TOPLEFT", InspectFrame, "TOPLEFT", 8, -38) - title_text:SetPoint("TOPLEFT", InspectFrame, "TOPLEFT", 150, -45) + + -- Adjusted Offsets: Moved UP (+Y) and LEFT (-X) + -- If it is still not perfect, adjust these numbers. + -- Make X more negative to go Left. Make Y more positive to go Up. + local xOffset = -12 + local yOffset = 13 + + I_t:SetPoint("TOPLEFT", InspectFrame, "TOPLEFT", xOffset, yOffset) + I_tr:SetPoint("TOPLEFT", InspectFrame, "TOPLEFT", xOffset + 256, yOffset) + I_bl:SetPoint("TOPLEFT", InspectFrame, "TOPLEFT", xOffset, yOffset - 256) + I_br:SetPoint("TOPLEFT", InspectFrame, "TOPLEFT", xOffset + 256, yOffset - 256) + + -- Adjust content and title relative to the new background position + I_f2:SetPoint("TOPLEFT", InspectFrame, "TOPLEFT", xOffset + 6, yOffset - 37) + title_text:SetPoint("TOPLEFT", InspectFrame, "TOPLEFT", xOffset + 148, yOffset - 44) local class, class_en, _ = UnitClass("target") UpdateCharacterHC(_hardcore_character, other_name, version, I_f2, class, class_en, UnitLevel("target")) diff --git a/LevelToast.lua b/LevelToast.lua index e66ff40f..3bf1e54e 100644 --- a/LevelToast.lua +++ b/LevelToast.lua @@ -63,7 +63,7 @@ frame.desc:SetPoint("TOP", 10, -30) frame.desc:SetTextColor(1, 0.8, 0, 1) frame.desc:SetJustifyH("LEFT") frame.desc:SetFont("Fonts\\blei00d.TTF", 14, "") -frame.desc:SetText("New level 60!") +frame.desc:SetText("New level 70!") local ticker_handler = nil local main_alpha = 0 diff --git a/MainMenu.lua b/MainMenu.lua index f1e93831..c07ba011 100644 --- a/MainMenu.lua +++ b/MainMenu.lua @@ -750,7 +750,7 @@ local function DrawVerifyTab(container, _hardcore_character) local string_format_new = true local first_menu_description local function GenerateVerificationString() - local version = GetAddOnMetadata("Hardcore", "Version") + local version = C_AddOns.GetAddOnMetadata("Hardcore", "Version") local _, class, _, race, _, name = GetPlayerInfoByGUID(UnitGUID("player")) local realm = GetRealmName() local level = UnitLevel("player") @@ -805,7 +805,7 @@ local function DrawVerifyTab(container, _hardcore_character) end end - local version = GetAddOnMetadata("Hardcore", "Version") + local version = C_AddOns.GetAddOnMetadata("Hardcore", "Version") local _, class, _, race, _, name = GetPlayerInfoByGUID(UnitGUID("player")) local realm = GetRealmName() local level = UnitLevel("player") @@ -1348,7 +1348,7 @@ local function DrawDungeonsTab(container, _hardcore_character) boss_data:SetText(boss_str) end - local version = GetAddOnMetadata("Hardcore", "Version") + local version = C_AddOns.GetAddOnMetadata("Hardcore", "Version") -- Add the banner local first_menu_description_title = AceGUI:Create("Label") @@ -1495,7 +1495,7 @@ local function DrawDungeonsTab(container, _hardcore_character) "|c00FFFF00You've run " .. #_hardcore_character.dt.runs .. " dungeons. (" - .. GetAddOnMetadata("Hardcore", "Version") + .. C_AddOns.GetAddOnMetadata("Hardcore", "Version") .. ", " .. UnitName("player") .. ", " @@ -1588,7 +1588,7 @@ local function DrawAccountabilityTab(container) ) or player_name_short == UnitName("player") then if player_name_short == UnitName("player") then - version_text = GetAddOnMetadata("Hardcore", "Version") + version_text = C_AddOns.GetAddOnMetadata("Hardcore", "Version") else version_text = hardcore_modern_menu_state.guild_versions[player_name_long] end diff --git a/Security.lua b/Security.lua index 826d4b80..13b0f419 100644 --- a/Security.lua +++ b/Security.lua @@ -177,7 +177,7 @@ function Hardcore_StoreCharacterInfo( level ) Hardcore_Character.char_info.class = class Hardcore_Character.char_info.name = name Hardcore_Character.char_info.realm = realm - Hardcore_Character.char_info.version = GetAddOnMetadata("Hardcore", "Version") + Hardcore_Character.char_info.version = C_AddOns.GetAddOnMetadata("Hardcore", "Version") if level == nil then Hardcore_Character.char_info.level = UnitLevel("player") else diff --git a/dungeon-db-tbc.lua b/dungeon-db-tbc.lua new file mode 100644 index 00000000..d463ba5b --- /dev/null +++ b/dungeon-db-tbc.lua @@ -0,0 +1,169 @@ +-- dungeon-db-tbc.lua +-- Dungeon data for the dungeon tracker +-- Written by Frank de Jong and edited by Jordan Thomas + + +-- dt_db ( = dungeon tracker database ) +-- +-- Contains all the info for the dungeons: +-- { instanceMapID, zoneID, "English Name", type = { "D", "R", "B", "O" }, max_players, max_runs, { max_level_era, max_level_wotlk }, { quests }, { bosses } }, +-- Types: D = dungeon (5-player), R = raid, B = battleground, O = other + +-- The following dungeon table was compiled with help from @Jordynna (thanks!) +-- Note that quests that can be completed inside the instance have been removed, as they can lead to double runs, +-- when the player's client crashes after turning them in inside the dungeon. + +dt_db = { + + -- Era dungeons + { 389, 2437, "Ragefire Chasm", "D", 5, 1, { 18, 20 }, + { 5728, 5761, 5723, 5724, 5725 }, -- "Searching for the lost satchel" replaced by "Returning the Lost satchel" because the former can be finished inside + {{"Bazzalan",11519}, {"Taramagan the Hungerer",11520}, {"Oggleflint",11517}, {"Jergosh the Invoker",11518}} + }, + { 43, 718, "Wailing Caverns", "D", 5, 1, { 24, 24 }, + { 914, 1487, 3366 }, -- Leaders of the Fang, Deviate Eradication, The Glowing Shard + {{"Mutanus",3654}, {"Kresh",3653}, {"Lady Anacondra",3671}, {"Lord Cobrahn",3669}, {"Lord Pythas",3670}, {"Skum",3674}, {"Lord Serpentis",3673}, {"Verdan the Everliving",5775}} + }, + { 36, 1581, "The Deadmines", "D", 5, 1, { 26, 24 }, + { 2040, 166, 373 }, -- Underground Assault, The Defias Brotherhood, The Unsent Letter + {{"Edwin VanCleef",639}, {"Rhahk'Zor",644}, {"Sneed's Shredder",642}, {"Gilnid",1763}, {"Mr. Smite",646}, {"Captain Greenskin",647}, {"Cookie",645}} + }, + { 33, 209, "Shadowfang Keep", "D", 5, 1, { 30, 25 }, + { 1013, 1014 }, -- The Book of Ur, Arugal Must Die // Deathstalkers in Shadowfang removed (inside completion) + {{"Archmage Arugal",4275}, {"Rethilgore",3914}, {"Razorclaw the Butcher",3886}, {"Baron Silverlaine",3887}, {"Commander Springvale",4278}, {"Odo the Blindwatcher",4279}, {"Fenrus the Devourer",4274}, {"Wolf Master Nandos",3927}} + }, + { 48, 719, "Blackfathom Deeps", "D", 5, 1, { 32, 28 }, + { 971, 1199, 6565, 6921, 1200, 6561, 6922 }, -- 1198 removed (inside completion) + {{"Aku'mai",4829}, {"Ghamoo-ra",4887}, {"Lady Sarevess",4831}, {"Gelihast",6243}, {"Lorgus Jett",12902}, {"Twilight Lord Kelris",4832}, {"Old Serra'kis",4830}} + }, + { 34, 717, "The Stockade", "D", 5, 1, { 32, 29 }, + { 387, 386, 378, 388, 377, 391 }, + {{"Bazil Thredd",1716}, {"Targorr the Dread",1696}, {"Kam Deepfury",1666}, {"Hamhock",1717}, {"Dextren Ward",1663}} + }, + { 47, 491, "Razorfen Kraul", "D", 5, 1, { 38, 31 }, + { 1221, 1102, 1109, 1101, 1142, 6522 }, -- 1144 removed (inside completion) + {{"Charlga Razorflank",4421}, {"Roogug",6168}, {"Aggem Thorncurse",4424}, {"Death Speaker Jargba",4428}, {"Overlord Ramtusk",4420}, {"Agathelos the Raging",4422}} + }, + { 90, 721, "Gnomeregan", "D", 5, 1, { 38, 32 }, + { 2904, 2924, 2930, 2929, 2841 }, -- 2945, 2951 removed (inside completion), 2929 removed (outside quest) + {{"Mekgineer Thermaplugg",7800}, {"Grubbis ",7361}, {"Viscous Fallout",7079}, {"Electrocutioner 6000",6235}, {"Crowd Pummeler 9-60",6229}} + }, + { 129, 722, "Razorfen Downs", "D", 5, 1, { 46, 41 }, + { 3636, 3341 }, -- 3525 removed (inside completion) + {{"Amnennar the Coldbringer",7358}, {"Tuten'kash",7355}, {"Mordresh Fire Eye",7357}, {"Glutton",8567}} + }, + { 189, 796, "Scarlet Monastery", "D", 5, 1, { 45, 44 }, + {}, + {} -- Empty boss list allows logging of bosses in the wings (do not touch!) + }, + { 18901, 79601, "Scarlet Monastery (GY)", "D", 5, 1, { 45, 44 }, -- Bit of a hack here, the 4 wings don't have a separate ID, so we fake one for them + {}, -- No quests in GY + { {"Bloodmage Thalnos", 4543}, {"Interrogator Vishas", 3983} } + }, + { 18902, 79602, "Scarlet Monastery (Lib)", "D", 5, 1, { 45, 44 }, + { 1050, 1053, 1049, 1048, 1160, 1951 }, -- 1048+1053: kill 4 bosses needs Lib+Cath+Arm + { {"Arcanist Doan", 6487}, {"Houndmaster Loksey", 3974} } + }, + { 18903, 79603, "Scarlet Monastery (Cath)", "D", 5, 1, { 45, 44 }, + { 1053, 1048 }, -- 1048+1053: kill 4 bosses needs Lib+Cath+Arm + { {"Scarlet Commander Mograine", 3976}, {"High Inquisitor Whitemane", 3977}, {"High Inquisitor Fairbanks", 4542 } } + }, + { 18904, 79604, "Scarlet Monastery (Arm)", "D", 5, 1, { 45, 44 }, + { 1053, 1048 }, -- 1048+1053: kill 4 bosses needs Lib+Cath+Arm + { {"Herod", 3975} } + }, + { 70, 1137, "Uldaman", "D", 5, 1, { 51, 44 }, + { 2240, 1139, 2204 }, -- 2278 removed (inside completion) + {{"Archaedas",2748}, {"Revelosh",6910}, {"Ironaya",7228}, {"Obsidian Sentinel",7023}, {"Ancient Stone Keeper",7206}, {"Galgann Firehammer",7291}, {"Grimlok",4854}} + }, + { 209, 1176, "Zul'Farrak", "D", 5, 1, { 54, 50 }, + { 3042, 2865, 2846, 2768, 2770, 3527, 2991, 2936 }, + {{"Chief Ukorz Sandscalp",7267}, {"Ruuzlu",7797}, {"Antu'sul",8127}, {"Theka the Martyr",7272}, {"Witch Doctor Zum'rah",7271}, {"Nekrum Gutchewer",7796}, {"Shadowpriest Sezz'ziz",7275}, {"Sergeant Bly",7604}, {"Hydromancer Velratha",7795}} + }, + { 349, 2100, "Maraudon", "D", 5, 1, { 55, 52 }, + { 7041, 7029, 7065, 7064, 7067 }, -- 7044+7046 removed (inside completion) + {{"Princess Theradras",12201}, {"Noxxion",13282}, {"Razorlash",12258}, {"Lord Vyletongue",12236}, {"Celebras the Cursed",12225}, {"Landslide",12203}, {"Tinkerer Gizlock",13601}, {"Rotgrip",13596}} + }, + { 109, 1477, "The Temple of Atal'Hakkar", "D", 5, 1, { 60, 54 }, + { 3528 }, -- 1475, 4143, 4146, removed: tablets and haze drop outside; 3446+3373+3447 removed (inside completion) + {{"Shade of Eranikus",5709}, {"Atal'alarion",8580}, {"Dreamscythe",5721}, {"Weaver",5720}, {"Jammal'an the Prophet",5710}, {"Ogom the Wretched",5711}, {"Morphaz",5719}, {"Hazzas",5722}, {"Avatar of Hakkar",8443}} + }, + { 229, 1583, "Blackrock Spire", "D", 10, 1, { 60, 62 }, + { 4701, 4724, 4903, 4862, 4729, 4788, 4768, 4974, 4764, 5102, 6821 }, -- 4982+5001+7761 removed (inside completion) + {{"General Drakkisath",10363}, {"Highlord Omokk",9196}, {"Shadow Hunter Vosh'gajin",9236}, {"War Master Voone",9237}, {"Mor Grayhoof",16080}, {"Mother Smolderweb",10596}, + {"Urok Doomhowl",10584}, {"Quartermaster Zigris",9736}, {"Halycon",10220}, {"Gizrul the Slavener",10268},{"Overlord Wyrmthalak",9537}, + {"Pyroguard Emberseer",9816}, {"Solakar Flamewreath",10264}, {"Goraluk Anvilcrack",10899}, {"Warchief Rend Blackhand",10429}, {"Gyth",10339}, {"The Beast",10430} + } + }, -- UBRS and LBRS are one instance + { 230, 1584, "Blackrock Depths", "D", 5, 1, { 60, 60 }, + { 4136, 4123, 4286, 4126, 4081, 4134 }, + {{"Emperor Dagran Thaurissan",9019}, {"Lord Roccor",9025}, {"Bael'Gar",9016}, {"Houndmaster Grebmar",9319}, {"High Interrogator Gerstahn",9018}, {"High Justice Grimstone",10096}, + {"Pyromancer Loregrain",9024}, {"General Angerforge",9033}, {"Golem Lord Argelmach",8983}, + {"Ribbly Screwspigot",9543}, {"Hurley Blackbreath",9537}, {"Plugger Spazzring",9499}, {"Phalanx",9502}, + {"Lord Incendius",9017}, {"Fineous Darkvire",9056}, {"Warder Stilgiss",9041}, {"Ambassador Flamelash",9156}, {"Magmus",9938}, + {"Princess Moira Bronzebeard",8929}} + }, + { 289, 2057, "Scholomance", "D", 5, 1, { 60, 62 }, + { 5529, 5582, 5382, 5384, 5466, 5343, 5341 }, + {{"Darkmaster Gandling",1853}, {"Kirtonos the Herald",10506}, {"Jandice Barov",10503}, {"Rattlegore",11622}, {"Marduk Blackpool",10433}, {"Vectus",10432}, {"Ras Frostwhisper",10508}, {"Instructor Malicia",10505}, {"Doctor Theolin Krastinov",11261}, {"Lorekeeper Polkelt",10901}, {"The Ravenian",10507}, {"Lord Alexei Barov",10504}, {"Lady Ilucia Barov",10502}} + }, + { 429, 2557, "Dire Maul", "D", 5, 1, { 60, 62 }, + { 7488, 7489, 7441, 5526 }, -- 7461+7462+7703 removed (inside completion) + { {"King Gordok",11501},{"Pusillin",14354},{"Lethendris",14327}, {"Hydrospawn",13280}, {"Zevrim Thornhoof",11490},{"Alzzin the Wildshaper",11492}, + {"Guard Mol'dar",14326},{"Stomper Kreeg",14322},{"Guard Fengus",14321},{"Guard Slip'kik",14323},{"Captain Kromcrush",14325},{"Cho'Rush the Observer",14324}, + {"Tendris Warpwood",11489},{"Magister Kalendris",11487},{"Tsu'zee",11467},{"Illyanna Ravenoak",11488},{"Immol'thar",11496},{"Prince Tortheldrin",11486}, + } + }, + { 329, 2017, "Stratholme", "D", 5, 1, { 60, 62 }, + { 5282, 5214, 5251, 5262, 5848, 5212, 5263, 5243, 6163 }, -- 5122+5463+8945 removed (inside completion) + { {"Baron Rivendare",10440}, + {"Fras Siabi",11058}, {"The Unforgiven",10516}, {"Postmaster Malown",11143},{"Timmy the Cruel",10808}, + {"Malor the Zealous",11032},{"Cannon Master Willey",10997}, {"Crimson Hammersmith",11120}, {"Archivist Galford",10811},{"Balnazzar",10813}, + {"Magistrate Barthilas",10435},{"Nerub'enkan",10437}, {"Baroness Anastari",10436}, {"Maleki the Pallid",10438},{"Ramstein the Gorger",10439} + } + }, -- Undead / Live parts are one instance + + -- Era Raids + { 249, 2159, "Onyxia's Lair", "R", 40, 1000, { 1000, 1000 }, {} }, + { 309, 1977, "Zul'Gurub", "R", 20, 1000, { 1000, 1000 }, {} }, + { 409, 2717, "Molten Core", "R", 40, 1000, { 1000, 1000 }, {} }, + { 469, 2677, "Blackwing Lair", "R", 40, 1000, { 1000, 1000 }, {} }, + { 509, 3429, "Ruins of Ahn'Qiraj", "R", 20, 1000, { 1000, 1000 }, {} }, + { 531, 3428, "Ahn'Qiraj", "R", 40, 1000, { 1000, 1000 }, {} }, + + -- Era Battlegrounds + { 489, 3277, "Warsong Gulch", "B", 10, 1000, { 1000, 1000 }, {} }, + { 30, 2597, "Alterac Valley", "B", 40, 1000, { 1000, 1000 }, {} }, + { 529, 3358, "Arathi Basin", "B", 15, 1000, { 1000, 1000 }, {} }, + + -- TBC dungeons + { 543, 3562, "Hellfire Ramparts", "D", 5, 1, { 1000, 64 }, { 9575, 9572, 9587, 9588 } }, + { 542, 3713, "The Blood Furnace", "D", 5, 1, { 1000, 65 }, { 9607, 9608, 9589, 9590 } }, + { 547, 3717, "The Slave Pens", "D", 5, 1, { 1000, 66 }, { 9738 } }, + { 546, 3716, "The Underbog", "D", 5, 1, { 1000, 66 }, { 9738, 9717, 9719 } }, -- 9715 removed because also drops in Steamvault + { 557, 3792, "Mana-Tombs", "D", 5, 1, { 1000, 68 }, { 10216, 10218, 10165 } }, + { 558, 3790, "Auchenai Crypts", "D", 5, 1, { 1000, 70 }, { 10164, 10167 } }, -- "All remaining TBC dungeons have a MAX level of 70" + { 560, 2367, "Old Hillsbrad Foothills", "D", 5, 1, { 1000, 70 }, { 10283, 10284, 10285 } }, + { 556, 3791, "Sethekk Halls", "D", 5, 1, { 1000, 70 }, { 10097, 10098 } }, + { 553, 3847, "The Botanica", "D", 5, 1, { 1000, 70 }, { 10704, 10257, 10897 } }, + { 555, 3789, "Shadow Labyrinth", "D", 5, 1, { 1000, 70 }, { 10885, 10094, 10095, 10091, 10649, 10666, 9831 } }, + { 545, 3715, "The Steamvault", "D", 5, 1, { 1000, 70 }, { 9763, 9832, 10667, 10885 } }, + { 540, 3714, "The Shattered Halls", "D", 5, 1, { 1000, 70 }, { 9492, 9495, 9493, 9496, 10670 } }, + { 554, 3849, "The Mechanar", "D", 5, 1, { 1000, 70 }, { 10704, 10665 } }, + { 269, 2366, "The Black Morass", "D", 5, 1, { 1000, 70 }, { 10296, 10297, 10298, 9836, 9837, 10902 } }, + { 552, 3848, "The Arcatraz", "D", 5, 1, { 1000, 70 }, { 9832, 10886 } }, + { 585, 4131, "Magisters' Terrace", "D", 5, 1, { 1000, 70 }, { 11492, 11499 } }, + -- TBC Raids + { 532, 3457, "Karazhan", "R", 10, 1000, { 1000, 1000 }, {} }, + { 533, 3456, "Naxxramas", "R", 40, 1000, { 1000, 1000 }, {} }, + { 534, 3606, "Hyjal Summit", "R", 25, 1000, { 1000, 1000 }, {} }, + { 544, 3836, "Magtheridon's Lair", "R", 25, 1000, { 1000, 1000 }, {} }, + { 548, 3607, "Serpentshrine Cavern", "R", 25, 1000, { 1000, 1000 }, {} }, + { 564, 3959, "Black Temple", "R", 25, 1000, { 1000, 1000 }, {} }, + { 565, 3923, "Gruul's Lair", "R", 25, 1000, { 1000, 1000 }, {} }, + { 568, 3805, "Zul'Aman", "R", 10, 1000, { 1000, 1000 }, {} }, + { 580, 4075, "Sunwell Plateau", "R", 25, 1000, { 1000, 1000 }, {} }, + { 550, 3845, "Tempest Keep", "R", 25, 1000, { 1000, 1000 }, {} }, + -- TBC Battlegrounds + { 566, 3820, "The Eye of the Storm", "B", 15, 1000, { 1000, 1000 }, {} }, +} \ No newline at end of file diff --git a/id_to_npc_classic.lua b/id_to_npc_classic.lua index 4f10baef..4a2139c2 100644 --- a/id_to_npc_classic.lua +++ b/id_to_npc_classic.lua @@ -1 +1 @@ -id_to_npc = {[3]="Flesh Eater",[6]="Kobold Vermin",[19]="Benny Questgiver",[29]="Kanrethad",[30]="Forest Spider",[31]="Furbolg",[36]="Harvest Golem",[38]="Defias Thug",[40]="Kobold Miner",[43]="Mine Spider",[46]="Murloc Forager",[48]="Skeletal Warrior",[49]="Lesser Succubus",[54]="Corina Steele",[55]="Mean Ed the Blacksmith",[60]="Ruklar the Trapper",[61]="Thuros Lightfingers",[62]="Gug Fatcandle",[65]="Peasant Woman",[66]="Tharynn Bouden",[67]="[UNUSED] Marlon Darnik",[68]="Stormwind City Guard",[69]="Diseased Timber Wolf",[70]="[UNUSED] Lower Class Citizen",[71]="Rankist",[72]="[UNUSED] Antaris the Trader",[73]="Veraina the Apothecary",[74]="Kurran Steele",[75]="[UNUSED] Vashaum Nightwither",[78]="Janos Hammerknuckle",[79]="Narg the Taskmaster",[80]="Kobold Laborer",[81]="[UNUSED] Luglar the Clogger",[82]="Crazy Leonetti",[89]="Infernal",[90]="Sea Giant",[92]="Rock Elemental",[93]="Centaur",[94]="Cutpurse",[95]="Defias Smuggler",[97]="Riverpaw Runt",[98]="Riverpaw Taskmaster",[99]="Morgaine the Sly",[100]="Gruff Swiftbite",[102]="Bronze Dragonspawn",[103]="Garrick Padfoot",[105]="Tall Strider",[106]="Kodo Beast",[107]="Raptor",[108]="Green Dragonspawn",[109]="White Dragonspawn",[111]="Priest",[112]="Priestess",[113]="Stonetusk Boar",[114]="Harvest Watcher",[115]="Harvest Reaper",[116]="Bandit",[117]="Riverpaw Gnoll",[118]="Prowler",[119]="Longsnout",[120]="Forest Stalker",[121]="Defias Pathstalker",[122]="Defias Highwayman",[123]="Riverpaw Mongrel",[124]="Riverpaw Brute",[125]="Riverpaw Overseer",[126]="Murloc Coastrunner",[127]="Murloc Tidehunter",[128]="Angry Programmer Tweedle Dee",[129]="Angry Programmer Tweedle Dum",[130]="Programmer Vendor",[149]="[UNUSED] Small Black Dragon Whelp",[150]="[UNUSED] Brother Milius",[151]="Brog Hamfist",[152]="Brother Danil",[153]="Bethina",[154]="Greater Fleshripper",[157]="Goretusk",[161]="[UNUSED] Ander the Monk",[165]="[UNUSED] Small Child",[167]="Morhan Coppertongue",[171]="Murloc Warrior",[190]="Dermot Johns",[193]="Blue Dragonspawn",[196]="Eagan Peltskinner",[197]="Marshal McBride",[198]="Khelden Bremen",[199]="Young Fleshripper",[202]="Rotting Horror",[203]="Skeletal Mage",[204]="[UNUSED] Cackle Flamebone",[205]="Nightbane Dark Runner",[206]="Nightbane Vile Fang",[210]="Bone Chewer",[212]="Splinter Fist Warrior",[213]="Starving Dire Wolf",[215]="Defias Night Runner",[217]="Venom Web Spider",[218]="Grave Robber",[222]="Nillen Andemar",[223]="Dan Golthas",[225]="Gavin Gnarltree",[226]="Morg Gnarltree",[227]="Mabel Solaj",[228]="Avette Fellwood",[232]="Farmer Ray",[233]="Farmer Saldean",[234]="Marshal Gryan Stoutmantle",[235]="Salma Saldean",[237]="Farmer Furlbrow",[238]="Verna Furlbrow",[239]="Grimbooze Thunderbrew",[240]="Marshal Dughan",[243]="[UNUSED] Greeby Mudwhisker TEST",[244]="Ma Stonefield",[247]="Billy Maclure",[248]="Gramma Stonefield",[250]="Pa Maclure",[251]="Maybell Maclure",[252]="Tommy Joe Stonefield",[253]="William Pestle",[255]="Gerard Tiller",[257]="Kobold Worker",[258]="Joshua Maclure",[261]="Guard Thomas",[263]="Lord Ello Ebonlocke",[264]="Commander Althea Ebonlocke",[265]="Madame Eva",[266]="Wiley the Black",[267]="Clerk Daltry",[268]="Sirra Von'Indi",[269]="Role Dreuger",[270]="Councilman Millstipe",[271]="Ambassador Berrybuck",[272]="Chef Grual",[273]="Tavernkeep Smitts",[274]="Barkeep Hann",[275]="Whit Wantmal",[276]="Viktori Prism'Antras",[277]="Roberto Pupellyverbos",[278]="Sara Timberlain",[279]="Morgan Pestle",[280]="Placeholder - Jasperlode Mine",[284]="Brown Horse",[285]="Murloc",[287]="Placeholder - Darkhollow Mine",[288]="Jitters",[289]="Abercrombie",[290]="Placeholder - Fargodeep Mine",[291]="Placeholder Chest of Drawers",[294]="Marshal Haggard",[295]="Innkeeper Farley",[296]="[UNUSED] Goodmother Jans",[297]="Caretaker Folsom",[299]="Young Wolf",[300]="Zzarc' Vul",[302]="Blind Mary",[304]="Felsteed",[305]="White Stallion",[306]="Palomino",[307]="Pinto",[308]="Black Stallion",[311]="Sven Yorgen",[313]="Theocritus",[314]="Eliza",[315]="Stalvan Mistmantle",[319]="[UNUSED] Brother Benthas",[325]="Hogan Ference",[327]="Goldtooth",[328]="Zaldimar Wefhellt",[329]="Earth Elemental",[330]="Princess",[331]="Maginor Dumas",[332]="Master Mathias Shaw",[334]="Gath'Ilzogg",[335]="Singe",[338]="Mazen Mac'Nadir",[339]="[UNUSED] Helgor the Pugilist",[340]="Kendor Kabonka",[341]="Foreman Oslow",[342]="Martie Jainrose",[343]="Chef Breanna",[344]="Magistrate Solomon",[345]="Bellygrub",[346]="Barkeep Daniels",[347]="Grizzle Halfmane",[348]="Zem Leeward",[349]="Corporal Keeshan",[351]="Peasant",[352]="Dungar Longdrink",[353]="Antonia Dart",[356]="Black Wolf",[358]="Timber Wolf",[359]="Riding Wolf (Winter)",[365]="Scott's Flying Mount",[372]="Karm Ironquill",[374]="Cog Glitzspinner",[375]="Priestess Anetta",[376]="High Priestess Laurena",[377]="Priestess Josetta",[379]="Darcy Parker",[381]="Dockmaster Baren",[382]="Marshal Marris",[383]="Jason Mathers",[384]="Katie Hunter",[385]="Horse",[390]="Porcine Entourage",[391]="Old Murk-Eye",[392]="Captain Grayson",[395]="Markus",[397]="Grand Magus Doane",[399]="Boy - placeholder 05",[412]="Stitches",[415]="Verner Osgood",[416]="Imp",[417]="Felhunter",[422]="Murloc Flesheater",[423]="Redridge Mongrel",[424]="Redridge Poacher",[426]="Redridge Brute",[428]="Dire Condor",[429]="Shadowhide Darkweaver",[430]="Redridge Mystic",[431]="Shadowhide Slayer",[432]="Shadowhide Brute",[433]="Shadowhide Gnoll",[434]="Rabid Shadowhide Gnoll",[435]="Blackrock Champion",[436]="Blackrock Shadowcaster",[437]="Blackrock Renegade",[440]="Blackrock Grunt",[441]="Black Dragon Whelp",[442]="Tarantula",[445]="Redridge Alpha",[446]="Redridge Basher",[448]="Hogger",[449]="Defias Knuckleduster",[450]="Defias Renegade Mage",[452]="Riverpaw Bandit",[453]="Riverpaw Mystic",[454]="Young Goretusk",[456]="Murloc Minor Oracle",[458]="Murloc Hunter",[459]="Drusilla La Salle",[460]="Alamar Grimm",[461]="Demisette Cloyce",[462]="Vultros",[464]="Watch Captain Parker",[465]="Barkeep Dobbins",[466]="General Marcus Jonathan",[467]="The Defias Traitor",[468]="Town Crier",[469]="Lieutenant Doren",[471]="Mother Fang",[472]="Fedfennel",[473]="Morgan the Collector",[474]="Rogue Wizard",[475]="Kobold Tunneler",[476]="Kobold Geomancer",[478]="Riverpaw Outrunner",[480]="Rusty Harvest Golem",[481]="Defias Footpad",[482]="Elling Trias",[483]="Elaine Trias",[485]="Blackrock Outrunner",[486]="Tharil'zun",[487]="Protector Bialon",[488]="Protector Weaver",[489]="Protector Dutfield",[490]="Protector Gariel",[491]="Quartermaster Lewis",[494]="Watcher Bukouris",[495]="Watcher Keefer",[499]="Watcher Paige",[500]="Riverpaw Scout",[501]="Riverpaw Herbalist",[502]="Benny Blaanco",[503]="Lord Malathrom",[504]="Defias Trapper",[505]="Greater Tarantula",[506]="Sergeant Brashclaw",[507]="Fenros",[509]="[UNUSED] Long Fang",[510]="Water Elemental",[511]="Insane Ghoul",[513]="Murloc Netter",[514]="Smith Argus",[515]="Murloc Raider",[517]="Murloc Oracle",[518]="Yowler",[519]="Slark",[520]="Brack",[521]="Lupos",[522]="Mor'Ladim",[523]="Thor",[524]="Rockhide Boar",[525]="Mangy Wolf",[531]="Skeletal Fiend",[533]="Nightbane Shadow Weaver",[534]="Nefaru",[539]="Pygmy Venom Web Spider",[543]="Nalesette Wildbringer",[544]="Murloc Nightcrawler",[545]="Murloc Tidecaller",[547]="Great Goretusk",[548]="Murloc Minor Tidecaller",[550]="Defias Messenger",[565]="Rabid Dire Wolf",[568]="Shadowhide Warrior",[569]="Green Recluse",[570]="Brain Eater",[572]="Leprithus",[573]="Foe Reaper 4000",[574]="Naraxis",[575]="Fire Elemental",[576]="Watcher Ladimore",[578]="Murloc Scout",[579]="Shadowhide Assassin",[580]="Redridge Drudger",[582]="Old Blanchy",[583]="Ambusher",[584]="Kazon",[587]="Bloodscalp Warrior",[588]="Bloodscalp Scout",[589]="Defias Pillager",[590]="Defias Looter",[594]="Defias Henchman",[595]="Bloodscalp Hunter",[596]="Brainwashed Noble",[597]="Bloodscalp Berserker",[598]="Defias Miner",[599]="Marisa du'Paige",[603]="Grimtooth",[604]="Plague Spreader",[612]="[UNUSED] Rabid Mrs. Whipple",[615]="Blackrock Tracker",[616]="Chatter",[619]="Defias Conjurer",[620]="Chicken",[622]="Goblin Engineer",[623]="Skeletal Miner",[624]="Undead Excavator",[625]="Undead Dynamiter",[626]="Foreman Thistlenettle",[628]="Black Ravager",[633]="Elaine Carevin",[634]="Defias Overseer",[636]="Defias Blackguard",[639]="Edwin VanCleef",[641]="Goblin Woodcarver",[642]="Sneed's Shredder",[643]="Sneed",[644]="Rhahk'Zor",[645]="Cookie",[646]="Mr. Smite",[647]="Captain Greenskin",[648]="Bridge Worker Trent",[649]="Bridge Worker Dmitri",[650]="Bridge Worker Jess",[651]="Bridge Worker Daniel",[652]="Bridge Worker Matthew",[653]="Bridge Worker Alex",[656]="Wilder Thistlenettle",[657]="Defias Pirate",[658]="Sten Stoutarm",[659]="El Pollo Grande",[660]="Bloodscalp Witch Doctor",[661]="Jonathan Carevin",[663]="Calor",[664]="Benjamin Carevin",[667]="Skullsplitter Warrior",[669]="Skullsplitter Hunter",[670]="Skullsplitter Witch Doctor",[671]="Bloodscalp Headhunter",[672]="Skullsplitter Spiritchaser",[674]="Venture Co. Strip Miner",[675]="Venture Co. Foreman",[676]="Venture Co. Surveyor",[677]="Venture Co. Tinkerer",[678]="Mosh'Ogg Mauler",[679]="Mosh'Ogg Shaman",[680]="Mosh'Ogg Lord",[681]="Young Stranglethorn Tiger",[682]="Stranglethorn Tiger",[683]="Young Panther",[684]="Shadowmaw Panther",[685]="Stranglethorn Raptor",[686]="Lashtail Raptor",[687]="Jungle Stalker",[688]="Stone Maw Basilisk",[689]="Crystal Spine Basilisk",[690]="Cold Eye Basilisk",[691]="Lesser Water Elemental",[694]="Bloodscalp Axe Thrower",[696]="Skullsplitter Axe Thrower",[697]="Bloodscalp Shaman",[698]="Bloodscalp Tiger",[699]="Bloodscalp Beastmaster",[701]="Bloodscalp Mystic",[702]="Bloodscalp Scavenger",[703]="General Fangore",[704]="Ragged Timber Wolf",[705]="Ragged Young Wolf",[706]="Frostmane Troll Whelp",[707]="Rockjaw Trogg",[708]="Small Crag Boar",[709]="Mosh'Ogg Warmonger",[710]="Mosh'Ogg Spellcrafter",[711]="Ardo Dirtpaw",[712]="Redridge Thrasher",[713]="Balir Frosthammer",[714]="Talin Keeneye",[715]="Hemet Nesingwary Jr.",[716]="Barnil Stonepot",[717]="Ajeck Rouack",[718]="Sir S. J. Erlgadin",[721]="Rabbit",[723]="Mosh'Ogg Butcher",[724]="Burly Rockjaw Trogg",[727]="Ironforge Mountaineer",[728]="Bhag'thera",[729]="Sin'Dall",[730]="Tethis",[731]="King Bangalash",[732]="Murloc Lurker",[733]="Sergeant Yohwa",[734]="Corporal Bluth",[735]="Murloc Streamrunner",[736]="Panther",[737]="Kebok",[738]="Private Thorsen",[739]="Brother Nimetz",[740]="Adolescent Whelp",[741]="Dreaming Whelp",[742]="Green Wyrmkin",[743]="Wyrmkin Dreamwalker",[744]="Green Scalebane",[745]="Scalebane Captain",[746]="Elder Dragonkin",[747]="Marsh Murloc",[750]="Marsh Inkspewer",[751]="Marsh Flesheater",[752]="Marsh Oracle",[754]="Rebel Watchman",[755]="Lost One Mudlurker",[756]="Skullsplitter Panther",[757]="Lost One Fisherman",[759]="Lost One Hunter",[760]="Lost One Muckdweller",[761]="Lost One Seer",[762]="Lost One Riftseeker",[763]="Lost One Chieftain",[764]="Swampwalker",[765]="Swampwalker Elder",[766]="Tangled Horror",[767]="Swamp Jaguar",[768]="Shadow Panther",[769]="Deathstrike Tarantula",[770]="Corporal Kaleb",[771]="Commander Felstrom",[772]="Stranglethorn Tigress",[773]="Krazek",[775]="Kurzen's Agent",[777]="Amy Davenport",[780]="Skullsplitter Mystic",[781]="Skullsplitter Headhunter",[782]="Skullsplitter Scout",[783]="Skullsplitter Berserker",[784]="Skullsplitter Beastmaster",[785]="Skeletal Warder",[786]="Grelin Whitebeard",[787]="Skeletal Healer",[789]="Kimberly Hiett",[790]="Karen Taylor",[791]="Lindsay Ashlock",[793]="Kara Adams",[794]="Matt",[795]="Mark",[796]="Joshua",[797]="Bo",[798]="Solomon",[799]="Kevin",[800]="Kyle",[801]="Eric",[802]="Jay",[804]="Dana",[805]="Cameron",[806]="John",[807]="Lisa",[808]="Grik'nir the Cold",[810]="Aaron",[811]="Jose",[812]="Alma Jainrose",[813]="Colonel Kurzen",[814]="Sergeant Malthus",[815]="Bookie Herod",[818]="Mai'Zoth",[819]="Servant of Ilgalar",[820]="Scout Riell",[821]="Captain Danuvin",[822]="Young Forest Bear",[823]="Sergeant Willem",[824]="Defias Digger",[826]="Watcher Jan",[827]="Watcher Mocarski",[828]="Watcher Petras",[829]="Adlin Pridedrift",[830]="Sand Crawler",[831]="Sea Crawler",[832]="Unbound Cyclone",[833]="Coyote Packleader",[834]="Coyote",[836]="Durnan Furcutter",[837]="Branstock Khalder",[840]="Watcher Backus",[842]="Lumberjack",[843]="Gina MacGregor",[844]="Antonio Perelli",[846]="Rotten Ghoul",[847]="Nathan",[848]="Madison",[849]="Rachel",[850]="Erin",[851]="Hannah",[852]="Feral Spirit",[853]="Coldridge Mountaineer",[854]="Young Jungle Stalker",[855]="Young Stranglethorn Raptor",[856]="Young Lashtail Raptor",[857]="Donal Osgood",[858]="Sorrow Spinner",[859]="Guard Berton",[861]="Stonard Scout",[862]="Stonard Explorer",[863]="Stonard Hunter",[864]="Stonard Orc",[865]="Stonard Wayfinder",[866]="Stonard Grunt",[867]="Stonard Cartographer",[868]="Stonard Shaman",[869]="Protector Dorana",[870]="Protector Deni",[871]="Saltscale Warrior",[873]="Saltscale Oracle",[874]="Protector Korelor",[875]="Saltscale Tide Lord",[876]="Protector Leick",[877]="Saltscale Forager",[878]="Scout Galiaan",[879]="Saltscale Hunter",[880]="Erlan Drudgemoor",[881]="Surena Caledon",[883]="Deer",[885]="Watcher Keller",[886]="Watcher Hartin",[887]="Watcher Jordan",[888]="Watcher Dodds",[889]="Splinter Fist Ogre",[890]="Fawn",[891]="Splinter Fist Fire Weaver",[892]="Splinter Fist Taskmaster",[893]="Lars",[894]="Homer Stonefield",[895]="Thorgas Grimson",[896]="Veldan Lightfoot",[898]="Nightbane Worgen",[900]="Bailiff Conacher",[903]="Guard Howe",[905]="Sharptooth Frenzy",[906]="Maximillian Crowe",[907]="Keras Wolfheart",[908]="Flora Silverwind",[909]="Defias Night Blade",[910]="Defias Enchanter",[911]="Llane Beshere",[912]="Thran Khorman",[913]="Lyria Du Lac",[914]="Ander Germaine",[915]="Jorik Kerridan",[916]="Solm Hargrin",[917]="Keryn Sylvius",[918]="Osborne the Night Man",[920]="Nightbane Tainted One",[921]="Venture Co. Lumberjack",[922]="Silt Crawler",[923]="Young Black Ravager",[925]="Brother Sammuel",[926]="Bromos Grummner",[927]="Brother Wilhelm",[928]="Lord Grayson Shadowbreaker",[930]="Black Widow Hatchling",[931]="Ariena Stormfeather",[932]="Guard Ashlock",[933]="Guard Hiett",[934]="Guard Clarke",[935]="Guard Pearce",[936]="Guard Adams",[937]="Kurzen Jungle Fighter",[938]="Kurzen Commando",[939]="Kurzen Elite",[940]="Kurzen Medicine Man",[941]="Kurzen Headshrinker",[942]="Kurzen Witch Doctor",[943]="Kurzen Wrangler",[944]="Marryk Nurribit",[945]="Rybrad Coldbank",[946]="Frostmane Novice",[947]="Rohh the Silent",[948]="Rotted One",[949]="Carrion Recluse",[950]="Swamp Talker",[951]="Brother Paxton",[952]="Brother Neals",[954]="Kat Sampson",[955]="Sergeant De Vries",[956]="Dorin Songblade",[957]="Dane Lindgren",[958]="Dawn Brightstar",[959]="Morley Eberlein",[960]="Gunder Thornbush",[963]="Deputy Rainer",[976]="Kurzen War Tiger",[977]="Kurzen War Panther",[978]="Kurzen Subchief",[979]="Kurzen Shadow Hunter",[980]="Grimnal",[981]="Hartash",[982]="Thultash",[983]="Thultazor",[984]="Thralosh",[985]="Malosh",[986]="Haromm",[987]="Ogromm",[988]="Kartosh",[989]="Banalash",[999]="Watcher Royce",[1000]="Watcher Blomberg",[1001]="Watcher Hutchins",[1007]="Mosshide Gnoll",[1008]="Mosshide Mongrel",[1009]="Mosshide Mistweaver",[1010]="Mosshide Fenrunner",[1011]="Mosshide Trapper",[1012]="Mosshide Brute",[1013]="Mosshide Mystic",[1014]="Mosshide Alpha",[1015]="Highland Raptor",[1016]="Highland Lashtail",[1017]="Highland Scytheclaw",[1018]="Highland Razormaw",[1019]="Elder Razormaw",[1020]="Mottled Raptor",[1021]="Mottled Screecher",[1022]="Mottled Scytheclaw",[1023]="Mottled Razormaw",[1024]="Bluegill Murloc",[1025]="Bluegill Puddlejumper",[1026]="Bluegill Forager",[1027]="Bluegill Warrior",[1028]="Bluegill Muckdweller",[1029]="Bluegill Oracle",[1030]="Black Slime",[1031]="Crimson Ooze",[1032]="Black Ooze",[1033]="Monstrous Ooze",[1034]="Dragonmaw Raider",[1035]="Dragonmaw Swamprunner",[1036]="Dragonmaw Centurion",[1037]="Dragonmaw Battlemaster",[1038]="Dragonmaw Shadowwarder",[1039]="Fen Dweller",[1040]="Fen Creeper",[1041]="Fen Lord",[1042]="Red Whelp",[1043]="Lost Whelp",[1044]="Flamesnorting Whelp",[1045]="Red Dragonspawn",[1046]="Red Wyrmkin",[1047]="Red Scalebane",[1048]="Scalebane Lieutenant",[1049]="Wyrmkin Firebrand",[1050]="Scalebane Royal Guard",[1051]="Dark Iron Dwarf",[1052]="Dark Iron Saboteur",[1053]="Dark Iron Tunneler",[1054]="Dark Iron Demolitionist",[1057]="Dragonmaw Bonewarder",[1059]="Ana'thek the Cruel",[1060]="Mogh the Undying",[1061]="Gan'zulah",[1062]="Nezzliok the Dire",[1063]="Jade",[1064]="Grom'gol Grunt",[1065]="Riverpaw Shaman",[1068]="Gorn",[1069]="Crimson Whelp",[1070]="Deputy Feldon",[1071]="Longbraid the Grim",[1072]="Roggo Harlbarrow",[1073]="Ashlan Stonesmirk",[1074]="Motley Garmason",[1075]="Rhag Garmason",[1076]="Merrin Rockweaver",[1077]="Prospector Whelgar",[1078]="Ormer Ironbraid",[1081]="Mire Lord",[1082]="Sawtooth Crocolisk",[1083]="Murloc Shorestriker",[1084]="Young Sawtooth Crocolisk",[1085]="Elder Stranglethorn Tiger",[1087]="Sawtooth Snapper",[1088]="Monstrous Crawler",[1089]="Mountaineer Cobbleflint",[1090]="Mountaineer Wallbang",[1091]="Mountaineer Gravelgaw",[1092]="Captain Rugelfuss",[1093]="Chief Engineer Hinderweir VII",[1094]="Venture Co. Miner",[1095]="Venture Co. Workboss",[1096]="Venture Co. Geologist",[1097]="Venture Co. Mechanic",[1098]="Watcher Merant",[1099]="Watcher Gelwin",[1100]="Watcher Selkin",[1101]="Watcher Thayer",[1103]="Eldrin",[1104]="Grundel Harkin",[1105]="Jern Hornhelm",[1106]="Lost One Cook",[1108]="Mistvale Gorilla",[1109]="Fleshripper",[1110]="Skeletal Raider",[1111]="Leech Stalker",[1112]="Leech Widow",[1114]="Jungle Thunderer",[1115]="Rockjaw Skullthumper",[1116]="Rockjaw Ambusher",[1117]="Rockjaw Bonesnapper",[1118]="Rockjaw Backbreaker",[1119]="Hammerspine",[1120]="Frostmane Troll",[1121]="Frostmane Snowstrider",[1122]="Frostmane Hideskinner",[1123]="Frostmane Headhunter",[1124]="Frostmane Shadowcaster",[1125]="Crag Boar",[1126]="Large Crag Boar",[1127]="Elder Crag Boar",[1128]="Young Black Bear",[1129]="Black Bear",[1130]="Bjarn",[1131]="Winter Wolf",[1132]="Timber",[1133]="Starving Winter Wolf",[1134]="Young Wendigo",[1135]="Wendigo",[1137]="Edan the Howler",[1138]="Snow Tracker Wolf",[1139]="Magistrate Bluntnose",[1140]="Razormaw Matriarch",[1141]="Angus Stern",[1142]="Mosh'Ogg Brute",[1144]="Mosh'Ogg Witch Doctor",[1146]="Vharr",[1147]="Hragran",[1148]="Nerrist",[1149]="Uthok",[1150]="River Crocolisk",[1151]="Saltwater Crocolisk",[1152]="Snapjaw Crocolisk",[1153]="Torren Squarejaw",[1154]="Marek Ironheart",[1155]="Kelt Thomasin",[1156]="Vyrin Swiftwind",[1157]="Cursed Sailor",[1158]="Cursed Marine",[1159]="First Mate Snellig",[1160]="Captain Halyndor",[1161]="Stonesplinter Trogg",[1162]="Stonesplinter Scout",[1163]="Stonesplinter Skullthumper",[1164]="Stonesplinter Bonesnapper",[1165]="Stonesplinter Geomancer",[1166]="Stonesplinter Seer",[1167]="Stonesplinter Digger",[1169]="Dark Iron Insurgent",[1172]="Tunnel Rat Vermin",[1173]="Tunnel Rat Scout",[1174]="Tunnel Rat Geomancer",[1175]="Tunnel Rat Digger",[1176]="Tunnel Rat Forager",[1177]="Tunnel Rat Surveyor",[1178]="Mo'grosh Ogre",[1179]="Mo'grosh Enforcer",[1180]="Mo'grosh Brute",[1181]="Mo'grosh Shaman",[1182]="Brother Anton",[1183]="Mo'grosh Mystic",[1184]="Cliff Lurker",[1185]="Wood Lurker",[1186]="Black Bear",[1187]="Daryl the Youngling",[1188]="Grizzled Black Bear",[1189]="Black Bear Patriarch",[1190]="Mountain Boar",[1191]="Mangy Mountain Boar",[1192]="Elder Mountain Boar",[1193]="Loch Frenzy",[1194]="Mountain Buzzard",[1195]="Forest Lurker",[1196]="Ice Claw Bear",[1197]="Stonesplinter Shaman",[1198]="Rallic Finn",[1199]="Juvenile Snow Leopard",[1200]="Morbent Fel",[1201]="Snow Leopard",[1202]="Tunnel Rat Kobold",[1203]="Watcher Sarys",[1204]="Watcher Corwin",[1205]="Grawmug",[1206]="Gnasher",[1207]="Brawler",[1210]="Chok'sul",[1211]="Leper Gnome",[1212]="Bishop Farthing",[1213]="Godric Rothgar",[1214]="Aldren Cordon",[1215]="Alchemist Mallory",[1216]="Shore Crawler",[1217]="Glorin Steelbrow",[1218]="Herbalist Pomeroy",[1222]="Dark Iron Sapper",[1224]="Young Threshadon",[1225]="Ol' Sooty",[1226]="Maxan Anvol",[1227]="Rygal Rocknell",[1228]="Magis Sparkmantle",[1229]="Granis Swiftaxe",[1230]="[UNUSED] Lexin Haze",[1231]="Grif Wildheart",[1232]="Azar Stronghammer",[1233]="[UNUSED] Shaethis Darkoak",[1234]="Hogral Bakkan",[1236]="Kobold Digger",[1237]="Kazan Mogosh",[1238]="Gamili Frosthide",[1239]="First Mate Fitzsimmons",[1240]="Boran Ironclink",[1241]="Tognus Flintfire",[1242]="Karl Boran",[1243]="Hegnar Rumbleshot",[1244]="Rethiel the Greenwarden",[1245]="Kogan Forgestone",[1246]="Vosur Brakthel",[1247]="Innkeeper Belm",[1249]="Quartermaster Hudson",[1250]="Drake Lindgren",[1251]="Splinter Fist Firemonger",[1252]="Senir Whitebeard",[1253]="Father Gavin",[1254]="Foreman Stonebrow",[1255]="Prospector Gehn",[1256]="Quarrymaster Thesten",[1257]="Keldric Boucher",[1258]="Black Ravager Mastiff",[1259]="Gobbler",[1260]="Great Father Arctikus",[1261]="Veron Amberstill",[1263]="Yarlyn Amberstill",[1265]="Rudra Amberstill",[1266]="Tundra MacGrann",[1267]="Ragnar Thunderbrew",[1268]="Ozzie Togglevolt",[1269]="Razzle Sprysprocket",[1270]="Fetid Corpse",[1271]="Old Icebeard",[1273]="Grawn Thromwyn",[1274]="Senator Barin Redstone",[1275]="Kyra Boucher",[1276]="Mountaineer Brokk",[1277]="Mountaineer Ganin",[1278]="Mountaineer Stenn",[1279]="Mountaineer Flint",[1280]="Mountaineer Droken",[1281]="Mountaineer Zaren",[1282]="Mountaineer Veek",[1283]="Mountaineer Kalmir",[1284]="Archbishop Benedictus",[1285]="Thurman Mullby",[1286]="Edna Mullby",[1287]="Marda Weller",[1289]="Gunther Weller",[1291]="Carla Granger",[1292]="Maris Granger",[1293]="Ambo Cash",[1294]="Aldric Moore",[1295]="Lara Moore",[1296]="Felder Stover",[1297]="Lina Stover",[1298]="Frederick Stover",[1299]="Lisbeth Schneider",[1300]="Lawrence Schneider",[1301]="Julia Gallina",[1302]="Bernard Gump",[1303]="Felicia Gump",[1304]="Darian Singh",[1305]="Jarel Moor",[1307]="Charys Yserian",[1308]="Owen Vaughn",[1309]="Wynne Larson",[1310]="Evan Larson",[1311]="Joachim Brenlow",[1312]="Ardwyn Cailen",[1313]="Maria Lumere",[1314]="Duncan Cullen",[1315]="Allan Hafgan",[1316]="Adair Gilroy",[1317]="Lucan Cordell",[1318]="Jessara Cordell",[1319]="Bryan Cross",[1320]="Seoman Griffith",[1321]="Alyssa Griffith",[1322]="Maxton Strang",[1323]="Osric Strang",[1324]="Heinrich Stone",[1325]="Jasper Fel",[1326]="Sloan McCoy",[1327]="Reese Langston",[1328]="Elly Langston",[1329]="Mountaineer Naarh",[1330]="Mountaineer Tyraw",[1331]="Mountaineer Luxst",[1332]="Mountaineer Morran",[1333]="Gerik Koen",[1334]="Mountaineer Hammerfall",[1335]="Mountaineer Yuttha",[1336]="Mountaineer Zwarn",[1337]="Mountaineer Gwarth",[1338]="Mountaineer Dalk",[1339]="Mayda Thane",[1340]="Mountaineer Kadrell",[1341]="Wilhelm Strang",[1342]="Mountaineer Rockgar",[1343]="Mountaineer Stormpike",[1344]="Prospector Ironband",[1345]="Magmar Fellhew",[1346]="Georgio Bolero",[1347]="Alexandra Bolero",[1348]="Gregory Ardus",[1349]="Agustus Moulaine",[1350]="Theresa Moulaine",[1351]="Brother Cassius",[1352]="Fluffy",[1353]="Sarltooth",[1354]="Apprentice Soren",[1355]="Cook Ghilm",[1356]="Prospector Stormpike",[1358]="Miner Grothor",[1360]="Miner Grumnal",[1362]="Gothor Brumn",[1364]="Balgaras the Foul",[1365]="Goli Krumn",[1366]="Adam",[1367]="Billy",[1368]="Justin",[1370]="Brandon",[1371]="Roman",[1373]="Jarven Thunderbrew",[1374]="Rejold Barleybrew",[1375]="Marleth Barleybrew",[1376]="Beldin Steelgrill",[1377]="Pilot Stonegear",[1378]="Pilot Bellowfiz",[1379]="Miran",[1380]="Saean",[1381]="Krakk",[1382]="Mudduk",[1383]="Snarl",[1385]="Brawn",[1386]="Rogvar",[1387]="Thysta",[1388]="Vagash",[1393]="Berserk Trogg",[1395]="Ol' Beasley",[1397]="Frostmane Seer",[1398]="Boss Galgosh",[1399]="Magosh",[1400]="Wetlands Crocolisk",[1402]="Topper McNabb",[1404]="Kragg",[1405]="Morris Lawry",[1407]="Sranda",[1410]="Firewing Bloodwarder",[1411]="Ian Strom",[1412]="Squirrel",[1413]="Janey Anship",[1414]="Lisan Pierce",[1415]="Suzanne",[1416]="Grimand Elmore",[1417]="Young Wetlands Crocolisk",[1418]="Bluegill Raider",[1419]="Fizzles",[1420]="Toad",[1421]="Private Merle",[1422]="Corporal Sethman",[1423]="Stormwind Guard",[1424]="Master Digger",[1425]="Kubb",[1426]="Riverpaw Miner",[1427]="Harlan Bagley",[1428]="Rema Schneider",[1429]="Thurman Schneider",[1430]="Tomas",[1431]="Suzetta Gallina",[1432]="Renato Gallina",[1433]="Corbett Schneider",[1434]="Menethil Sentry",[1435]="Zardeth of the Black Claw",[1436]="Watcher Cutford",[1437]="Thomas Booker",[1439]="Lord Baurles K. Wishock",[1440]="Milton Sheaf",[1441]="Brak Durnad",[1442]="Helgrum the Swift",[1443]="Fel'zerul",[1444]="Brother Kristoff",[1445]="Jesse Halloran",[1446]="Regina Halloran",[1447]="Gimlok Rumdnul",[1448]="Neal Allen",[1449]="Witch Doctor Unbagwa",[1450]="Brahnmar",[1451]="Camerick Jongleur",[1452]="Gruham Rumdnul",[1453]="Dewin Shimmerdawn",[1454]="Jennabink Powerseam",[1456]="Kersok Prond",[1457]="Samor Festivus",[1458]="Telurinon Moonshadow",[1459]="Naela Trance",[1460]="Unger Statforth",[1461]="Murndan Derth",[1462]="Edwina Monzor",[1463]="Falkan Armonis",[1464]="Innkeeper Helbrek",[1465]="Drac Roughcut",[1466]="Gretta Finespindle",[1469]="Vrok Blunderblast",[1470]="Ghak Healtouch",[1471]="Jannos Ironwill",[1472]="Morgg Stormshot",[1473]="Kali Healtouch",[1474]="Rann Flamespinner",[1475]="Menethil Guard",[1476]="Hargin Mundar",[1477]="Christoph Faral",[1478]="Aedis Brom",[1479]="Timothy Clark",[1480]="Caitlin Grassman",[1481]="Bart Tidewater",[1482]="Andrea Halloran",[1483]="Murphy West",[1484]="Derina Rumdnul",[1487]="Splinter Fist Enslaver",[1488]="Zanzil Zombie",[1489]="Zanzil Hunter",[1490]="Zanzil Witch Doctor",[1491]="Zanzil Naga",[1492]="Gorlash",[1493]="Mok'rash the Cleaver",[1494]="Negolash",[1495]="Deathguard Linnea",[1496]="Deathguard Dillinger",[1497]="Gunther Arcanus",[1498]="Bethor Iceshard",[1499]="Magistrate Sevren",[1500]="Coleman Farthing",[1501]="Mindless Zombie",[1502]="Wretched Ghoul",[1504]="Young Night Web Spider",[1505]="Night Web Spider",[1506]="Scarlet Convert",[1507]="Scarlet Initiate",[1508]="Young Scavenger",[1509]="Ragged Scavenger",[1511]="Enraged Silverback Gorilla",[1512]="Duskbat",[1513]="Mangy Duskbat",[1514]="Mokk the Savage",[1515]="Executor Zygand",[1516]="Konda",[1518]="Apothecary Johaan",[1519]="Deathguard Simmer",[1520]="Rattlecage Soldier",[1521]="Gretchen Dedmar",[1522]="Darkeye Bonecaster",[1523]="Cracked Skull Soldier",[1525]="Rotting Dead",[1526]="Ravaged Corpse",[1527]="Hungering Dead",[1528]="Shambling Horror",[1529]="Bleeding Horror",[1530]="Rotting Ancestor",[1531]="Lost Soul",[1532]="Wandering Spirit",[1533]="Tormented Spirit",[1534]="Wailing Ancestor",[1535]="Scarlet Warrior",[1536]="Scarlet Missionary",[1537]="Scarlet Zealot",[1538]="Scarlet Friar",[1539]="Scarlet Neophyte",[1540]="Scarlet Vanguard",[1541]="Vile Fin Murloc",[1543]="Vile Fin Puddlejumper",[1544]="Vile Fin Minor Oracle",[1545]="Vile Fin Muckdweller",[1546]="[UNUSED] Kegnar Thraln",[1547]="Decrepit Darkhound",[1548]="Cursed Darkhound",[1549]="Ravenous Darkhound",[1550]="Thrashtail Basilisk",[1551]="Ironjaw Basilisk",[1552]="Scale Belly",[1553]="Greater Duskbat",[1554]="Vampiric Duskbat",[1555]="Vicious Night Web Spider",[1557]="Elder Mistvale Gorilla",[1558]="Silverback Patriarch",[1559]="King Mukla",[1560]="Yvette Farthing",[1561]="Bloodsail Raider",[1562]="Bloodsail Mage",[1563]="Bloodsail Swashbuckler",[1564]="Bloodsail Warlock",[1565]="Bloodsail Sea Dog",[1568]="Undertaker Mordo",[1569]="Shadow Priest Sarvis",[1570]="Executor Arren",[1571]="Shellei Brondir",[1572]="Thorgrum Borrelson",[1573]="Gryth Thurden",[1574]="Mage 1",[1575]="Mage 5",[1629]="Priest 20",[1632]="Adele Fielder",[1642]="Northshire Guard",[1645]="Quartermaster Hicks",[1646]="Baros Alexston",[1650]="Terry Palin",[1651]="Lee Brown",[1652]="Deathguard Burgess",[1653]="Bloodsail Elder Magus",[1654]="Gregor Agamand",[1655]="Nissa Agamand",[1656]="Thurman Agamand",[1657]="Devlin Agamand",[1658]="Captain Dargol",[1660]="Scarlet Bodyguard",[1661]="Novice Elreth",[1662]="Captain Perrine",[1663]="Dextren Ward",[1664]="Captain Vachon",[1665]="Captain Melrache",[1666]="Kam Deepfury",[1667]="Meven Korgal",[1668]="William MacGregor",[1669]="Defias Profiteer",[1670]="Mike Miller",[1671]="Lamar Veisilli",[1672]="Lohgan Eva",[1673]="Alyssa Eva",[1674]="Rot Hide Gnoll",[1675]="Rot Hide Mongrel",[1676]="Finbus Geargrind",[1678]="Vernon Hale",[1679]="Avarus Kharag",[1680]="Matthew Hooper",[1681]="Brock Stoneseeker",[1682]="Yanni Stoutheart",[1683]="Warg Deepwater",[1684]="Khara Deepwater",[1685]="Xandar Goodbeard",[1686]="Irene Sureshot",[1687]="Cliff Hadin",[1688]="Night Web Matriarch",[1689]="Scarred Crag Boar",[1690]="Thrawn Boltar",[1691]="Kreg Bilmn",[1692]="Golorn Frostbeard",[1693]="Loch Crocolisk",[1694]="Loslor Rudge",[1695]="Rendow",[1696]="Targorr the Dread",[1697]="Keeg Gibn",[1698]="Frast Dokner",[1699]="Gremlock Pilsnor",[1700]="Paxton Ganter",[1701]="Dank Drizzlecut",[1702]="Bronk Guzzlegear",[1703]="Uthrar Threx",[1706]="Prisoner",[1707]="Defias Captive",[1708]="Defias Inmate",[1711]="Convict",[1713]="Elder Shadowmaw Panther",[1715]="Insurgent",[1716]="Bazil Thredd",[1717]="Hamhock",[1718]="Rockjaw Raider",[1719]="Warden Thelwater",[1720]="Bruegal Ironknuckle",[1721]="Nikova Raskol",[1725]="Defias Watchman",[1726]="Defias Magician",[1727]="Defias Worker",[1729]="Defias Evoker",[1731]="Goblin Craftsman",[1732]="Defias Squallshaper",[1733]="Zggi",[1735]="Deathguard Abraham",[1736]="Deathguard Randolph",[1737]="Deathguard Oliver",[1738]="Deathguard Terrence",[1739]="Deathguard Phillip",[1740]="Deathguard Saltain",[1741]="Deathguard Bartrand",[1742]="Deathguard Bartholomew",[1743]="Deathguard Lawrence",[1744]="Deathguard Mort",[1745]="Deathguard Morris",[1746]="Deathguard Cyrus",[1747]="Anduin Wrynn",[1748]="Highlord Bolvar Fordragon",[1749]="Lady Katrana Prestor",[1750]="Grand Admiral Jes-Tereth",[1751]="Mithras Ironhill",[1752]="Caledra Dawnbreeze",[1753]="Maggot Eye",[1754]="Lord Gregor Lescovar",[1755]="Marzon the Silent Blade",[1756]="Stormwind Royal Guard",[1757]="Mega Rabbit",[1763]="Gilnid",[1764]="Greater Feral Spirit",[1765]="Worg",[1766]="Rabid Worg",[1767]="Vile Fin Shredder",[1768]="Vile Fin Tidehunter",[1769]="Moonrage Whitescalp",[1770]="Moonrage Darkrunner",[1772]="Rot Hide Gladerunner",[1773]="Rot Hide Mystic",[1775]="Zun'dartha",[1776]="Magtoor",[1777]="Dakk Blunderblast",[1778]="Ferocious Grizzled Bear",[1779]="Moonrage Glutton",[1780]="Skitterweb Striker",[1781]="Skitterweb Lurker",[1782]="Moonrage Darksoul",[1783]="Skeletal Flayer",[1784]="Skeletal Sorcerer",[1785]="Skeletal Terror",[1787]="Skeletal Executioner",[1788]="Skeletal Warlord",[1789]="Skeletal Acolyte",[1791]="Slavering Ghoul",[1793]="Rotting Ghoul",[1794]="Soulless Ghoul",[1795]="Searing Ghoul",[1796]="Freezing Ghoul",[1797]="Giant Rabid Bear",[1800]="Cold Wraith",[1801]="Blood Wraith",[1802]="Hungering Wraith",[1804]="Wailing Death",[1805]="Flesh Golem",[1806]="Vile Slime",[1808]="Devouring Ooze",[1809]="Carrion Vulture",[1812]="Rotting Behemoth",[1813]="Decaying Horror",[1815]="Diseased Black Bear",[1816]="Diseased Grizzly",[1817]="Diseased Wolf",[1821]="Carrion Lurker",[1822]="Venom Mist Lurker",[1824]="Plague Lurker",[1826]="Scarlet Mage",[1827]="Scarlet Sentinel",[1831]="Scarlet Hunter",[1832]="Scarlet Magus",[1833]="Scarlet Knight",[1834]="Scarlet Paladin",[1835]="Scarlet Invoker",[1836]="Scarlet Cavalier",[1837]="Scarlet Judge",[1838]="Scarlet Interrogator",[1839]="Scarlet High Clerist",[1840]="Grand Inquisitor Isillien",[1841]="Scarlet Executioner",[1842]="Highlord Taelan Fordring",[1843]="Foreman Jerris",[1844]="Foreman Marcrid",[1845]="High Protector Tarsen",[1846]="High Protector Lorik",[1847]="Foulmane",[1848]="Lord Maldazzar",[1849]="Dreadwhisper",[1850]="Putridius",[1851]="The Husk",[1852]="Araj the Summoner",[1853]="Darkmaster Gandling",[1854]="High Priest Thel'danis",[1855]="Tirion Fordring",[1860]="Voidwalker",[1863]="Succubus",[1865]="Ravenclaw Raider",[1866]="Ravenclaw Slave",[1867]="Dalaran Apprentice",[1868]="Ravenclaw Servant",[1869]="Ravenclaw Champion",[1870]="Hand of Ravenclaw",[1871]="Eliza's Guard",[1872]="Tharek Blackstone",[1880]="Berte",[1883]="Scarlet Worker",[1884]="Scarlet Lumberjack",[1885]="Scarlet Smith",[1888]="Ambermill Watcher",[1889]="Ambermill Witchalok",[1890]="Rattlecage Skeleton",[1891]="Pyrewood Watcher",[1892]="Moonrage Watcher",[1893]="Moonrage Sentry",[1894]="Pyrewood Sentry",[1895]="Pyrewood Elder",[1896]="Moonrage Elder",[1901]="Kelstrum Stonebreaker",[1907]="Naga Explorer",[1908]="Vile Fin Oracle",[1909]="Vile Fin Lakestalker",[1910]="Muad",[1911]="Deeb",[1912]="Ambermill Protector",[1913]="Ambermill Warder",[1914]="Ambermill Mage",[1915]="Ambermill Conjuror",[1916]="Stephen Bhartec",[1917]="Daniel Ulfman",[1918]="Karrel Grayves",[1919]="Samuel Fipps",[1920]="Dalaran Spellscribe",[1921]="Combat Dummy",[1922]="Gray Forest Wolf",[1923]="Bloodsnout Worg",[1924]="Moonrage Bloodhowler",[1931]="Captured Scarlet Zealot",[1933]="Sheep",[1934]="Tirisfal Farmer",[1935]="Tirisfal Farmhand",[1936]="Farmer Solliden",[1937]="Apothecary Renferrel",[1938]="Dalar Dawnweaver",[1939]="Rot Hide Brute",[1940]="Rot Hide Plague Weaver",[1941]="Rot Hide Graverobber",[1942]="Rot Hide Savage",[1943]="Raging Rot Hide",[1944]="Rot Hide Bruiser",[1946]="Lillith Nefara",[1947]="Thule Ravenclaw",[1948]="Snarlmane",[1949]="Servant of Azora",[1950]="Rane Yorick",[1951]="Quinn Yorick",[1952]="High Executor Hadrec",[1953]="Lake Skulker",[1954]="Elder Lake Skulker",[1955]="Lake Creeper",[1956]="Elder Lake Creeper",[1957]="Vile Fin Shorecreeper",[1958]="Vile Fin Tidecaller",[1959]="Mountaineer Barleybrew",[1960]="Pilot Hammerfoot",[1961]="Mangeclaw",[1963]="Vidra Hearthstove",[1964]="Treant",[1965]="Mountaineer Thalos",[1971]="Ivar the Foul",[1972]="Grimson the Pale",[1973]="Ravenclaw Guardian",[1974]="Ravenclaw Drudger",[1975]="Eastvale Lumberjack",[1976]="Stormwind City Patroller",[1977]="Senator Mehr Stonehallow",[1978]="Deathstalker Erland",[1981]="Dark Iron Ambusher",[1983]="Nightlash",[1984]="Young Thistle Boar",[1985]="Thistle Boar",[1986]="Webwood Spider",[1988]="Grell",[1989]="Grellkin",[1992]="Tarindrella",[1993]="Greenpaw",[1994]="Githyiss the Vile",[1995]="Strigid Owl",[1996]="Strigid Screecher",[1997]="Strigid Hunter",[1998]="Webwood Lurker",[1999]="Webwood Venomfang",[2000]="Webwood Silkspinner",[2001]="Giant Webwood Spider",[2002]="Rascal Sprite",[2003]="Shadow Sprite",[2004]="Dark Sprite",[2005]="Vicious Grell",[2006]="Gnarlpine Ursa",[2007]="Gnarlpine Gardener",[2008]="Gnarlpine Warrior",[2009]="Gnarlpine Shaman",[2010]="Gnarlpine Defender",[2011]="Gnarlpine Augur",[2012]="Gnarlpine Pathfinder",[2013]="Gnarlpine Avenger",[2014]="Gnarlpine Totemic",[2015]="Bloodfeather Harpy",[2017]="Bloodfeather Rogue",[2018]="Bloodfeather Sorceress",[2019]="Bloodfeather Fury",[2020]="Bloodfeather Wind Witch",[2021]="Bloodfeather Matriarch",[2022]="Timberling",[2025]="Timberling Bark Ripper",[2027]="Timberling Trampler",[2029]="Timberling Mire Beast",[2030]="Elder Timberling",[2031]="Young Nightsaber",[2032]="Mangy Nightsaber",[2033]="Elder Nightsaber",[2034]="Feral Nightsaber",[2038]="Lord Melenas",[2039]="Ursal the Mauler",[2041]="Ancient Protector",[2042]="Nightsaber",[2043]="Nightsaber Stalker",[2044]="Forlorn Spirit",[2046]="Andrew Krighton",[2050]="Raleigh Andrean",[2053]="Haggard Refugee",[2054]="Sickly Refugee",[2055]="Master Apothecary Faranell",[2056]="Ravenclaw Apparition",[2057]="Huldar",[2058]="Deathstalker Faerleia",[2060]="Councilman Smithers",[2061]="Councilman Thatcher",[2062]="Councilman Hendricks",[2063]="Councilman Wilhelm",[2064]="Councilman Hartin",[2065]="Councilman Cooper",[2066]="Councilman Higarth",[2067]="Councilman Brunswick",[2068]="Lord Mayor Morrison",[2069]="Moonstalker",[2070]="Moonstalker Runt",[2071]="Moonstalker Matriarch",[2077]="Melithar Staghelm",[2078]="Athridas Bearmantle",[2079]="Ilthalaine",[2080]="Denalan",[2081]="Sentinel Kyra Starsong",[2082]="Gilshalan Windwalker",[2083]="Syral Bladeleaf",[2084]="Natheril Raincaller",[2086]="Valstag Ironjaw",[2089]="Giant Wetlands Crocolisk",[2090]="Ma'ruk Wyrmscale",[2091]="Chieftain Nek'rosh",[2092]="Pilot Longbeard",[2093]="Einar Stonegrip",[2094]="James Halloran",[2096]="Tarrel Rockweaver",[2097]="Harlo Barnaby",[2098]="Ram",[2099]="Maiden's Virtue Crewman",[2102]="Dragonmaw Grunt",[2103]="Dragonmaw Scout",[2104]="Captain Stoutfist",[2105]="Mountaineer Dokkin",[2106]="Apothecary Berard",[2107]="Gaerolas Talvethren",[2108]="Garneg Charskull",[2110]="Black Rat",[2111]="Sida",[2112]="Farrin Daris",[2113]="Archibald Kava",[2114]="Faruza",[2115]="Joshua Kien",[2116]="Blacksmith Rand",[2117]="Harold Raims",[2118]="Abigail Shiel",[2119]="Dannal Stern",[2120]="Archmage Ataeric",[2121]="Shadow Priest Allister",[2122]="David Trias",[2123]="Dark Cleric Duesten",[2124]="Isabella",[2126]="Maximillion",[2127]="Rupert Boch",[2128]="Cain Firesong",[2129]="Dark Cleric Beryl",[2130]="Marion Call",[2131]="Austil de Mon",[2132]="Carolai Anise",[2134]="Mrs. Winters",[2135]="Abe Winters",[2136]="Oliver Dwor",[2137]="Eliza Callen",[2140]="Edwin Harly",[2142]="Watcher Callahan",[2149]="Dark Iron Raider",[2150]="Zenn Foulhoof",[2151]="Moon Priestess Amara",[2152]="Gnarlpine Ambusher",[2153]="Terl Arakor",[2155]="Sentinel Shayla Nightbreeze",[2156]="Cracked Golem",[2157]="Stone Behemoth",[2158]="Gravelflint Scout",[2159]="Gravelflint Bonesnapper",[2160]="Gravelflint Geomancer",[2162]="Agal",[2163]="Thistle Bear",[2164]="Rabid Thistle Bear",[2165]="Grizzled Thistle Bear",[2166]="Oakenscowl",[2167]="Blackwood Pathfinder",[2168]="Blackwood Warrior",[2169]="Blackwood Totemic",[2170]="Blackwood Ursa",[2171]="Blackwood Shaman",[2172]="Strider Clutchmother",[2173]="Reef Frenzy",[2174]="Coastal Frenzy",[2175]="Shadowclaw",[2176]="Cursed Highborne",[2177]="Writhing Highborne",[2178]="Wailing Highborne",[2179]="Stormscale Wave Rider",[2180]="Stormscale Siren",[2181]="Stormscale Myrmidon",[2182]="Stormscale Sorceress",[2183]="Stormscale Warrior",[2184]="Lady Moongazer",[2185]="Darkshore Thresher",[2186]="Carnivous the Breaker",[2187]="Elder Darkshore Thresher",[2188]="Deep Sea Threshadon",[2189]="Vile Sprite",[2190]="Wild Grell",[2191]="Licillin",[2192]="Firecaller Radison",[2198]="Crier Goodman",[2201]="Greymist Raider",[2202]="Greymist Coastrunner",[2203]="Greymist Seer",[2204]="Greymist Netter",[2205]="Greymist Warrior",[2206]="Greymist Hunter",[2207]="Greymist Oracle",[2208]="Greymist Tidehunter",[2209]="Deathguard Gavin",[2210]="Deathguard Royann",[2211]="Captured Mountaineer",[2212]="Deth'ryll Satyr",[2214]="Deathstalker Lesh",[2215]="High Executor Darthalia",[2216]="Apothecary Lydon",[2225]="Zora Guthrek",[2226]="Karos Razok",[2227]="Sharlindra",[2228]="Lieutenant Farren Orinelle",[2229]="Krusk",[2230]="Umpi",[2231]="Pygmy Tide Crawler",[2232]="Tide Crawler",[2233]="Encrusted Tide Crawler",[2234]="Young Reef Crawler",[2235]="Reef Crawler",[2236]="Raging Reef Crawler",[2237]="Moonstalker Sire",[2238]="Tog'thar",[2239]="Drull",[2240]="Syndicate Footpad",[2241]="Syndicate Thief",[2242]="Syndicate Spy",[2243]="Syndicate Sentry",[2244]="Syndicate Shadow Mage",[2245]="Syndicate Saboteur",[2246]="Syndicate Assassin",[2247]="Syndicate Enforcer",[2248]="Cave Yeti",[2249]="Ferocious Yeti",[2250]="Mountain Yeti",[2251]="Giant Yeti",[2252]="Crushridge Ogre",[2253]="Crushridge Brute",[2254]="Crushridge Mauler",[2255]="Crushridge Mage",[2256]="Crushridge Enforcer",[2257]="Mug'thol",[2258]="Maggarrak",[2260]="Syndicate Rogue",[2261]="Syndicate Watchman",[2263]="Marshal Redpath",[2264]="Hillsbrad Tailor",[2265]="Hillsbrad Apprentice Blacksmith",[2266]="Hillsbrad Farmer",[2267]="Hillsbrad Peasant",[2268]="Hillsbrad Footman",[2269]="Hillsbrad Miner",[2270]="Hillsbrad Sentry",[2271]="Dalaran Shield Guard",[2272]="Dalaran Theurgist",[2274]="Stanley",[2275]="Enraged Stanley",[2276]="Magistrate Henry Maleb",[2277]="Loremaster Dibbs",[2278]="Melisara",[2283]="Ravenclaw Regent",[2284]="Captured Farmer",[2285]="Count Remington Ridgewell",[2287]="Crushridge Warmonger",[2299]="Borgus Stoutarm",[2302]="Aethalas",[2303]="Lyranne Feathersong",[2304]="Captain Ironhill",[2305]="Foreman Bonds",[2306]="Baron Vardus",[2307]="Caretaker Caice",[2308]="Andrew Brownell",[2309]="Thomas Arlento",[2310]="Jamie Nore",[2311]="Doreen Beltis",[2314]="Sahvan Bloodshadow",[2315]="Maquell Ebonwood",[2316]="Gol'dir",[2317]="Elysa",[2318]="Argus Shadow Mage",[2319]="Syndicate Wizard",[2320]="Nagaz",[2321]="Foreststrider Fledgling",[2322]="Foreststrider",[2323]="Giant Foreststrider",[2324]="Blackwood Windtalker",[2326]="Thamner Pol",[2327]="Shaina Fuller",[2329]="Michelle Belle",[2330]="Karlee Chaddis",[2331]="Paige Chaddis",[2332]="Valdred Moray",[2333]="Henchman Valik",[2334]="Event Generator 001",[2335]="Magistrate Burnside",[2336]="Dark Strand Fanatic",[2337]="Dark Strand Voidcaller",[2338]="Twilight Disciple",[2339]="Twilight Thug",[2344]="Dun Garok Mountaineer",[2345]="Dun Garok Rifleman",[2346]="Dun Garok Priest",[2347]="Wild Gryphon",[2348]="Elder Moss Creeper",[2349]="Domesticated Creeper",[2350]="Forest Creeper",[2351]="Gray Bear",[2352]="Innkeeper Anderson",[2354]="Vicious Gray Bear",[2356]="Elder Gray Bear",[2357]="Merideth Carlson",[2358]="Dalaran Summoner",[2359]="Elemental Slave",[2360]="Hillsbrad Farmhand",[2361]="Tamara Armstrong",[2362]="Hemmit Armstrong",[2363]="Apprentice Honeywell",[2364]="Neema",[2365]="Bront Coldcleave",[2366]="Barkeep Kelly",[2367]="Donald Rabonne",[2368]="Daggerspine Shorestalker",[2369]="Daggerspine Shorehunter",[2370]="Daggerspine Screamer",[2371]="Daggerspine Siren",[2372]="Mudsnout Gnoll",[2373]="Mudsnout Shaman",[2374]="Torn Fin Muckdweller",[2375]="Torn Fin Coastrunner",[2376]="Torn Fin Oracle",[2377]="Torn Fin Tidehunter",[2378]="Kundric Zanden",[2379]="Caretaker Smithers",[2380]="Nandar Branson",[2381]="Micha Yance",[2382]="Darren Malvew",[2383]="Lindea Rabonne",[2384]="Starving Mountain Lion",[2385]="Foothill Stalker",[2386]="Alliance Guard",[2387]="Hillsbrad Councilman",[2388]="Innkeeper Shay",[2389]="Zarise",[2390]="Aranae Venomblood",[2391]="Serge Hinott",[2392]="Delia Verana",[2393]="Christoph Jeffcoat",[2394]="Mallen Swain",[2395]="Vinna Wayne",[2396]="Hans Zandin",[2397]="Derak Nightfall",[2398]="Tara Coldgaze",[2399]="Daryl Stack",[2400]="Craig Hewitt",[2401]="Kayren Soothallow",[2402]="Shara Blazen",[2403]="Farmer Getz",[2404]="Blacksmith Verringtan",[2405]="Tarren Mill Deathguard",[2406]="Mountain Lion",[2407]="Hulking Mountain Lion",[2408]="Snapjaw",[2409]="Felicia Maline",[2410]="Magus Wordeen Voidglare",[2411]="Ricter",[2412]="Alina",[2413]="Dermot",[2414]="Kegan Darkmar",[2415]="Warden Belamoore",[2416]="Crushridge Plunderer",[2417]="Grel'borg the Miser",[2418]="Deathguard Samsa",[2419]="Deathguard Humbert",[2420]="Targ",[2421]="Muckrake",[2422]="Glommus",[2423]="Lord Aliden Perenolde",[2424]="Guild Banker",[2425]="Varimathras",[2427]="Jailor Eston",[2428]="Jailor Marlgen",[2429]="Novice Thaivand",[2430]="Chef Jessen",[2431]="Jailor Borhuin",[2432]="Darla Harris",[2433]="Helcular's Remains",[2434]="Shadowy Assassin",[2435]="Southshore Crier",[2436]="Farmer Kent",[2437]="Keeper Bel'varil",[2438]="Bartolo Ginsetti",[2439]="Major Samuelson",[2440]="Drunken Footpad",[2442]="Cow",[2447]="Narillasanz",[2448]="Clerk Horrace Whitesteed",[2449]="Citizen Wilkes",[2450]="Miner Hackett",[2451]="Farmer Kalaba",[2452]="Skhowl",[2453]="Lo'Grosh",[2455]="Olivia Burnside",[2456]="Newton Burnside",[2457]="John Burnside",[2458]="Randolph Montague",[2459]="Mortimer Montague",[2460]="Barnum Stonemantle",[2461]="Bailey Stonemantle",[2462]="Flesh Eating Worm",[2464]="Commander Aggro'gosh",[2465]="Far Seer Mok'thardin",[2466]="Mountaineer Grugelm",[2468]="Mountaineer Thar",[2469]="Mountaineer Rharen",[2470]="Watcher Fraizer",[2473]="Granistad",[2474]="Kurdros",[2475]="Sloth",[2476]="Gosh-Haldir",[2477]="Gradok",[2478]="Haren Swifthoof",[2479]="Sludge",[2480]="Bro'kin",[2481]="Bliztik",[2482]="Zarena Cromwind",[2483]="Jaquilina Dramet",[2485]="Larimaine Purdue",[2486]="Fin Fizracket",[2487]="Fleet Master Seahorn",[2488]="Deeg",[2489]="Milstaff Stormeye",[2490]="First Mate Crazz",[2491]="Whiskey Slim",[2492]="Lexington Mortaim",[2493]="Dizzy One-Eye",[2494]="Privateer Bloads",[2495]="Drizzlik",[2496]="Baron Revilgaz",[2497]="Nimboya",[2498]="Crank Fizzlebub",[2499]="Markel Smythe",[2500]="Captain Hecklebury Smotts",[2503]="Hillsbrad Foreman",[2504]="Donyal Tovald",[2505]="Saltwater Snapjaw",[2506]="Mountaineer Harn",[2507]="Mountaineer Uthan",[2508]="Mountaineer Wuar",[2509]="Mountaineer Cragg",[2510]="Mountaineer Ozmok",[2511]="Mountaineer Bludd",[2512]="Mountaineer Roghan",[2513]="Mountaineer Janha",[2514]="Mountaineer Modax",[2515]="Mountaineer Fazgard",[2516]="Mountaineer Kamdar",[2517]="Mountaineer Langarr",[2518]="Mountaineer Swarth",[2519]="Kin'weelay",[2520]="Remote-Controlled Golem",[2521]="Skymane Gorilla",[2522]="Jaguero Stalker",[2523]="Searing Totem",[2524]="Mountaineer Haggis",[2525]="Mountaineer Barn",[2526]="Mountaineer Morlic",[2527]="Mountaineer Angst",[2528]="Mountaineer Haggil",[2529]="Son of Arugal",[2530]="Yenniku",[2531]="Minion of Doane",[2532]="Donna",[2533]="William",[2534]="Zanzil the Outcast",[2536]="Jon-Jon the Crow",[2540]="Ambermill Serpent",[2541]="Lord Sakrasis",[2542]="Catelyn the Blade",[2543]="Archmage Ansirem Runeweaver",[2544]="Southern Sand Crawler",[2546]="Fleet Master Firallon",[2547]="Ironpatch",[2548]="Captain Keelhaul",[2549]="Garr Salthoof",[2550]="Captain Stillwater",[2551]="Brutus",[2552]="Witherbark Troll",[2553]="Witherbark Shadowcaster",[2554]="Witherbark Axe Thrower",[2555]="Witherbark Witch Doctor",[2556]="Witherbark Headhunter",[2557]="Witherbark Shadow Hunter",[2558]="Witherbark Berserker",[2559]="Highland Strider",[2560]="Highland Thrasher",[2561]="Highland Fleshstalker",[2562]="Boulderfist Ogre",[2563]="Plains Creeper",[2564]="Boulderfist Enforcer",[2565]="Giant Plains Creeper",[2566]="Boulderfist Brute",[2567]="Boulderfist Magus",[2569]="Boulderfist Mauler",[2570]="Boulderfist Shaman",[2571]="Boulderfist Lord",[2572]="Drywhisker Kobold",[2573]="Drywhisker Surveyor",[2574]="Drywhisker Digger",[2575]="Dark Iron Supplier",[2577]="Dark Iron Shadowcaster",[2578]="Young Mesa Buzzard",[2579]="Mesa Buzzard",[2580]="Elder Mesa Buzzard",[2581]="Dabyrie Militia",[2582]="Dabyrie Laborer",[2583]="Stromgarde Troll Hunter",[2584]="Stromgarde Defender",[2585]="Stromgarde Soldier",[2586]="Syndicate Highwayman",[2587]="Syndicate Pathstalker",[2588]="Syndicate Prowler",[2589]="Syndicate Mercenary",[2590]="Syndicate Conjuror",[2591]="Syndicate Magus",[2592]="Rumbling Exile",[2594]="Sprogger",[2595]="Daggerspine Raider",[2596]="Daggerspine Sorceress",[2597]="Lord Falconcrest",[2598]="Darbel Montrose",[2599]="Otto",[2600]="Singer",[2601]="Foulbelly",[2602]="Ruul Onestone",[2603]="Kovork",[2604]="Molok the Crusher",[2605]="Zalas Witherbark",[2606]="Nimar the Slayer",[2607]="Prince Galen Trollbane",[2608]="Commander Amaren",[2609]="Geomancer Flintdagger",[2610]="Shakes O'Breen",[2611]="Fozruk",[2612]="Lieutenant Valorcall",[2614]="Air Force Alarm Bot (Alliance)",[2615]="Air Force Alarm Bot (Horde)",[2616]="Privateer Groy",[2618]="Hammerfall Peon",[2619]="Hammerfall Grunt",[2620]="Prairie Dog",[2621]="Hammerfall Guardian",[2622]="Sly Garrett",[2623]="Spirit of Old",[2624]="Gazban",[2625]="Viznik Goldgrubber",[2626]="Old Man Heming",[2627]="Grarnik Goodstitch",[2628]="Dalaran Worker",[2630]="Earthbind Totem",[2634]="Princess Poobah",[2635]="Elder Snapjaw Crocolisk",[2636]="Blackwater Deckhand",[2637]="Syndicate Bomb",[2638]="Syndicate Spectre",[2639]="Vilebranch Axe Thrower",[2640]="Vilebranch Witch Doctor",[2641]="Vilebranch Headhunter",[2642]="Vilebranch Shadowcaster",[2643]="Vilebranch Berserker",[2644]="Vilebranch Hideskinner",[2645]="Vilebranch Shadow Hunter",[2646]="Vilebranch Blood Drinker",[2647]="Vilebranch Soul Eater",[2648]="Vilebranch Aman'zasi Guard",[2649]="Witherbark Scalper",[2650]="Witherbark Zealot",[2651]="Witherbark Hideskinner",[2652]="Witherbark Venomblood",[2653]="Witherbark Sadist",[2654]="Witherbark Caller",[2655]="Green Sludge",[2656]="Jade Ooze",[2657]="Trained Razorbeak",[2658]="Razorbeak Gryphon",[2659]="Razorbeak Skylord",[2663]="Narkk",[2664]="Kelsey Yance",[2667]="Ward of Laze",[2668]="Danielle Zipstitch",[2669]="Sheri Zipstitch",[2670]="Xizk Goodstitch",[2671]="Mechanical Squirrel",[2672]="Cowardly Crosby",[2673]="Target Dummy",[2674]="Advanced Target Dummy",[2675]="Explosive Sheep",[2676]="Compact Harvest Reaper",[2678]="Mechanical Dragonling",[2679]="Wenna Silkbeard",[2680]="Vilebranch Wolf Pup",[2681]="Vilebranch Raiding Wolf",[2682]="Fradd Swiftgear",[2683]="Namdo Bizzfizzle",[2684]="Rizz Loosebolt",[2685]="Mazk Snipeshot",[2686]="Witherbark Broodguard",[2687]="Gnaz Blunderflame",[2688]="Ruppo Zipcoil",[2691]="Highvale Outrunner",[2692]="Highvale Scout",[2693]="Highvale Marksman",[2694]="Highvale Ranger",[2695]="Sara Balloo",[2696]="Foggy MacKreel",[2697]="Clyde Ranthal",[2698]="George Candarte",[2699]="Rikqiz",[2700]="Captain Nials",[2701]="Dustbelcher Ogre",[2703]="Zengu",[2704]="Hanashi",[2705]="Brewmeister Bilger",[2706]="Tor'gan",[2707]="Shadra",[2708]="Archmage Malin",[2711]="Phin Odelic",[2712]="Quae",[2713]="Kinelory",[2714]="Forsaken Courier",[2715]="Dustbelcher Brute",[2716]="Dustbelcher Wyrmhunter",[2717]="Dustbelcher Mauler",[2718]="Dustbelcher Shaman",[2719]="Dustbelcher Lord",[2720]="Dustbelcher Ogre Mage",[2721]="Forsaken Bodyguard",[2723]="Stone Golem",[2725]="Scalding Whelp",[2726]="Scorched Guardian",[2727]="Crag Coyote",[2728]="Feral Crag Coyote",[2729]="Elder Crag Coyote",[2730]="Rabid Crag Coyote",[2731]="Ridge Stalker",[2732]="Ridge Huntress",[2733]="Apothecary Jorell",[2734]="Ridge Stalker Patriarch",[2735]="Lesser Rock Elemental",[2736]="Greater Rock Elemental",[2737]="Durtham Greldon",[2738]="Stromgarde Cavalryman",[2739]="Shadowforge Tunneler",[2740]="Shadowforge Darkweaver",[2742]="Shadowforge Chanter",[2743]="Shadowforge Warrior",[2744]="Shadowforge Commander",[2745]="Ambassador Infernus",[2748]="Archaedas",[2749]="Barricade",[2751]="War Golem",[2752]="Rumbler",[2753]="Barnabus",[2754]="Anathemus",[2755]="Myzrael",[2757]="Blacklash",[2759]="Hematus",[2760]="Burning Exile",[2761]="Cresting Exile",[2762]="Thundering Exile",[2763]="Thenan",[2764]="Sleeby",[2765]="Znort",[2766]="Lolo the Lookout",[2767]="First Mate Nilzlix",[2768]="Professor Phizzlethorpe",[2769]="Captain Steelgut",[2770]="Tallow",[2771]="Drum Fel",[2772]="Korin Fel",[2773]="Or'Kalar",[2774]="Doctor Draxlegauge",[2775]="Daggerspine Marauder",[2776]="Vengeful Surge",[2778]="Deckhand Moishe",[2779]="Prince Nazjak",[2780]="Caretaker Nevlin",[2781]="Caretaker Weston",[2782]="Caretaker Alaric",[2783]="Marez Cowl",[2784]="King Magni Bronzebeard",[2785]="Theldurin the Lost",[2786]="Gerrig Bonegrip",[2787]="Zaruk",[2788]="Apprentice Kryten",[2789]="Skuerto",[2790]="Grand Mason Marblesten",[2791]="Enraged Rock Elemental",[2792]="Gor'mul",[2793]="Kor'gresh Coldrage",[2794]="Summoned Guardian",[2796]="Faelyssa",[2797]="Hovrak Gutrender",[2798]="Pand Stonebinder",[2799]="Lucian Fenner",[2801]="Tresa MacGregor",[2802]="Susan Tillinghast",[2803]="Malygen",[2804]="Kurden Bloodclaw",[2805]="Deneb Walker",[2806]="Bale",[2808]="Vikki Lonsav",[2810]="Hammon Karwn",[2812]="Drovnar Strongbrew",[2814]="Narj Deepslice",[2816]="Androd Fadran",[2817]="Rigglefuzz",[2818]="Slagg",[2819]="Tunkk",[2820]="Graud",[2821]="Keena",[2829]="Starving Buzzard",[2830]="Parched Buzzard",[2831]="Giant Buzzard",[2832]="Nixxrax Fillamug",[2834]="Myizz Luckycatch",[2835]="Cedrik Prose",[2836]="Brikk Keencraft",[2837]="Jaxin Chong",[2838]="Crazk Sparks",[2839]="Haren Kanmae",[2840]="Kizz Bluntstrike",[2842]="Wigcik",[2843]="Jutak",[2844]="Hurklor",[2845]="Fargon Mortalak",[2846]="Blixrez Goodstitch",[2847]="Jansen Underwood",[2848]="Glyx Brewright",[2849]="Qixdi Goodstitch",[2850]="Broken Tooth",[2851]="Urda",[2852]="Enslaved Druid of the Talon",[2853]="Freed Druid of the Talon",[2855]="Snang",[2856]="Angrun",[2857]="Thund",[2858]="Gringer",[2859]="Gyll",[2860]="Sigrun Ironhew",[2861]="Gorrik",[2870]="[UNUSED] Henria Derth",[2876]="Grunenstur Balindom",[2878]="Peria Lamenur",[2879]="Karrina Mekenda",[2880]="[UNUSED] Hurom Juggendolf",[2881]="Durdek Karrin",[2887]="Prismatic Exile",[2888]="Garek",[2892]="Stonevault Seer",[2893]="Stonevault Bonesnapper",[2894]="Stonevault Shaman",[2906]="Dustbelcher Warrior",[2907]="Dustbelcher Mystic",[2908]="Grawl",[2909]="Hammertoe Grez",[2910]="Prospector Ryedol",[2911]="Archaeologist Flagongut",[2912]="Chief Archaeologist Greywhisker",[2913]="Archaeologist Hollee",[2914]="Snake",[2915]="Hammertoe's Spirit",[2916]="Historian Karnik",[2917]="Prospector Remtravel",[2918]="Advisor Belgrum",[2919]="Fam'retor Guardian",[2920]="Lucien Tosselwrench",[2921]="Lotwil Veriatus",[2922]="Servo",[2923]="Mangy Silvermane",[2924]="Silvermane Wolf",[2925]="Silvermane Howler",[2926]="Silvermane Stalker",[2927]="Vicious Owlbeast",[2928]="Primitive Owlbeast",[2929]="Savage Owlbeast",[2930]="Sentinel Glynda Nal'Shea",[2931]="Zaricotl",[2932]="Magregan Deepshadow",[2934]="Keeper Bel'dugur",[2937]="Dagun the Ravenous",[2941]="Lanie Reed",[2943]="Ransin Donner",[2944]="Boss Tho'grun",[2945]="Murdaloc",[2946]="Puppet of Helcular",[2947]="Harken Windtotem",[2948]="Mull Thunderhorn",[2949]="Palemane Tanner",[2950]="Palemane Skinner",[2951]="Palemane Poacher",[2952]="Bristleback Invaders",[2953]="Bristleback Shaman",[2954]="Bristleback Battleboar",[2955]="Plainstrider",[2956]="Adult Plainstrider",[2957]="Elder Plainstrider",[2958]="Prairie Wolf",[2959]="Prairie Stalker",[2960]="Prairie Wolf Alpha",[2961]="Mountain Cougar",[2962]="Windfury Harpy",[2963]="Windfury Wind Witch",[2964]="Windfury Sorceress",[2965]="Windfury Matriarch",[2966]="Young Battleboar",[2967]="Galak Centaur",[2968]="Galak Outrunner",[2969]="Wiry Swoop",[2970]="Swoop",[2971]="Taloned Swoop",[2972]="Kodo Calf",[2973]="Kodo Bull",[2974]="Kodo Matriarch",[2975]="Venture Co. Hireling",[2976]="Venture Co. Laborer",[2977]="Venture Co. Taskmaster",[2978]="Venture Co. Worker",[2979]="Venture Co. Supervisor",[2980]="Grull Hawkwind",[2981]="Chief Hawkwind",[2982]="Seer Graytongue",[2983]="The Plains Vision",[2984]="Seer Wiserunner",[2985]="Ruul Eagletalon",[2986]="Dorn Plainstalker",[2987]="Eyahn Eagletalon",[2988]="Morin Cloudstalker",[2989]="Bael'dun Digger",[2990]="Bael'dun Appraiser",[2991]="Greatmother Hawkwind",[2992]="Healing Ward V",[2993]="Baine Bloodhoof",[2994]="Ancestral Spirit",[2995]="Tal",[2996]="Torn",[2997]="Jyn Stonehoof",[2998]="Karn Stonehoof",[2999]="Taur Stonehoof",[3000]="Gibbert",[3001]="Brek Stonehoof",[3002]="Kurm Stonehoof",[3003]="Fyr Mistrunner",[3004]="Tepa",[3005]="Mahu",[3007]="Una",[3008]="Mak",[3009]="Bena Winterhoof",[3010]="Mani Winterhoof",[3011]="Teg Dawnstrider",[3012]="Nata Dawnstrider",[3013]="Komin Winterhoof",[3014]="Nida Winterhoof",[3015]="Kuna Thunderhorn",[3016]="Tand",[3017]="Nan Mistrunner",[3018]="Hogor Thunderhoof",[3019]="Delgo Ragetotem",[3020]="Etu Ragetotem",[3021]="Kard Ragetotem",[3022]="Sunn Ragetotem",[3023]="Sura Wildmane",[3024]="Tah Winterhoof",[3025]="Kaga Mistrunner",[3026]="Aska Mistrunner",[3027]="Naal Mistrunner",[3028]="Kah Mistrunner",[3029]="Sewa Mistrunner",[3030]="Siln Skychaser",[3031]="Tigor Skychaser",[3032]="Beram Skychaser",[3033]="Turak Runetotem",[3034]="Sheal Runetotem",[3035]="Flatland Cougar",[3036]="Kym Wildmane",[3037]="Sheza Wildmane",[3038]="Kary Thunderhorn",[3039]="Holt Thunderhorn",[3040]="Urek Thunderhorn",[3041]="Torm Ragetotem",[3042]="Sark Ragetotem",[3043]="Ker Ragetotem",[3044]="Miles Welsh",[3045]="Malakai Cross",[3046]="Father Cobb",[3047]="Archmage Shymm",[3048]="Ursyn Ghull",[3049]="Thurston Xane",[3050]="Veren Tallstrider",[3051]="Supervisor Fizsprocket",[3052]="Skorn Whitecloud",[3053]="Synge",[3054]="Zarlman Two-Moons",[3055]="Maur Raincaller",[3056]="Ghost Howl",[3057]="Cairne Bloodhoof",[3058]="Arra'chea",[3059]="Harutt Thunderhorn",[3060]="Gart Mistrunner",[3061]="Lanka Farshot",[3062]="Meela Dawnstrider",[3063]="Krang Stonehoof",[3064]="Gennia Runetotem",[3065]="Yaw Sharpmane",[3066]="Narm Skychaser",[3067]="Pyall Silentstride",[3068]="Mazzranache",[3069]="Chaw Stronghide",[3072]="Kawnie Softbreeze",[3073]="Marjak Keenblade",[3074]="Varia Hardhide",[3075]="Bronk Steelrage",[3076]="Moorat Longstride",[3077]="Mahnott Roughwound",[3078]="Kennah Hawkseye",[3079]="Varg Windwhisper",[3080]="Harant Ironbrace",[3081]="Wunna Darkmane",[3083]="Honor Guard",[3084]="Bluffwatcher",[3085]="Gloria Femmel",[3086]="Gretchen Vogel",[3087]="Crystal Boughman",[3088]="Henry Chapal",[3089]="Sherman Femmel",[3090]="Gerald Crawley",[3091]="Franklin Hamar",[3092]="Tagain",[3093]="Grod",[3094]="Unseen",[3095]="Fela",[3096]="Captured Servant of Azora",[3097]="Bernard Brubaker",[3098]="Mottled Boar",[3099]="Dire Mottled Boar",[3100]="Elder Mottled Boar",[3101]="Vile Familiar",[3102]="Felstalker",[3103]="Makrura Clacker",[3104]="Makrura Shellhide",[3105]="Makrura Snapclaw",[3106]="Surf Crawler",[3107]="Mature Surf Crawler",[3108]="Encrusted Surf Crawler",[3110]="Dreadmaw Crocolisk",[3111]="Razormane Quilboar",[3112]="Razormane Scout",[3113]="Razormane Dustrunner",[3114]="Razormane Battleguard",[3115]="Dustwind Harpy",[3116]="Dustwind Pillager",[3117]="Dustwind Savage",[3118]="Dustwind Storm Witch",[3119]="Kolkar Drudge",[3120]="Kolkar Outrunner",[3121]="Durotar Tiger",[3122]="Bloodtalon Taillasher",[3123]="Bloodtalon Scythemaw",[3124]="Scorpid Worker",[3125]="Clattering Scorpid",[3126]="Armored Scorpid",[3127]="Venomtail Scorpid",[3128]="Kul Tiras Sailor",[3129]="Kul Tiras Marine",[3130]="Thunder Lizard",[3131]="Lightning Hide",[3133]="Herble Baubbletump",[3134]="Kzixx",[3135]="Malissa",[3136]="Clarise Gnarltree",[3137]="Matt Johnson",[3138]="Scott Carevin",[3139]="Gar'Thok",[3140]="Lar Prowltusk",[3141]="Makrura Elder",[3142]="Orgnil Soulscar",[3143]="Gornek",[3144]="Eitrigg",[3145]="Zureetha Fargaze",[3147]="Furl Scornbrow",[3149]="Nez'raz",[3150]="Hin Denburg",[3153]="Frang",[3154]="Jen'shan",[3155]="Rwag",[3156]="Nartok",[3157]="Shikrik",[3158]="Duokna",[3159]="Kzan Thornslash",[3160]="Huklah",[3161]="Rarc",[3162]="Burdrak Harglhelm",[3163]="Uhgar",[3164]="Jark",[3165]="Ghrawt",[3166]="Cutac",[3167]="Wuark",[3168]="Flakk",[3169]="Tarshaw Jaggedscar",[3170]="Kaplak",[3171]="Thotar",[3172]="Dhugru Gorelust",[3173]="Swart",[3174]="Dwukk",[3175]="Krunn",[3177]="Turuk Amberstill",[3178]="Stuart Fleming",[3179]="Harold Riggs",[3180]="Dark Iron Entrepreneur",[3181]="Fremal Doohickey",[3182]="Junder Brokk",[3183]="Yarrog Baneshadow",[3184]="Miao'zan",[3185]="Mishiki",[3186]="K'waii",[3187]="Tai'tasi",[3188]="Master Gadrin",[3189]="Kor'ghan",[3190]="Rhinag",[3191]="Cook Torka",[3192]="Lieutenant Benedict",[3193]="Misha Tor'kren",[3194]="Vel'rin Fang",[3195]="Burning Blade Thug",[3196]="Burning Blade Neophyte",[3197]="Burning Blade Fanatic",[3198]="Burning Blade Apprentice",[3199]="Burning Blade Cultist",[3203]="Fizzle Darkclaw",[3204]="Gazz'uz",[3205]="Zalazane",[3206]="Voodoo Troll",[3207]="Hexed Troll",[3208]="Margoz",[3209]="Brave Windfeather",[3210]="Brave Proudsnout",[3211]="Brave Lightninghorn",[3212]="Brave Ironhorn",[3213]="Brave Running Wolf",[3214]="Brave Greathoof",[3215]="Brave Strongbash",[3216]="Neeru Fireblade",[3217]="Brave Dawneagle",[3218]="Brave Swiftwind",[3219]="Brave Leaping Deer",[3220]="Brave Darksky",[3221]="Brave Rockhorn",[3222]="Brave Wildrunner",[3223]="Brave Rainchaser",[3224]="Brave Cloudmane",[3225]="Corrupted Mottled Boar",[3226]="Corrupted Scorpid",[3227]="Corrupted Bloodtalon Scythemaw",[3228]="Corrupted Surf Crawler",[3230]="Nazgrel",[3231]="Corrupted Dreadmaw Crocolisk",[3232]="Bristleback Interloper",[3233]="Lorekeeper Raintotem",[3234]="Lost Barrens Kodo",[3235]="Greater Barrens Kodo",[3236]="Barrens Kodo",[3237]="Wooly Kodo",[3238]="Stormhide",[3239]="Thunderhead",[3240]="Stormsnout",[3241]="Savannah Patriarch",[3242]="Zhevra Runner",[3243]="Savannah Highmane",[3244]="Greater Plainstrider",[3245]="Ornery Plainstrider",[3246]="Fleeting Plainstrider",[3247]="Thunderhawk Hatchling",[3248]="Barrens Giraffe",[3249]="Greater Thunderhawk",[3250]="Silithid Creeper",[3251]="Silithid Grub",[3252]="Silithid Swarmer",[3253]="Silithid Harvester",[3254]="Sunscale Lashtail",[3255]="Sunscale Screecher",[3256]="Sunscale Scytheclaw",[3257]="Ishamuhale",[3258]="Bristleback Hunter",[3260]="Bristleback Water Seeker",[3261]="Bristleback Thornweaver",[3263]="Bristleback Geomancer",[3265]="Razormane Hunter",[3266]="Razormane Defender",[3267]="Razormane Plunderer",[3268]="Razormane Thornweaver",[3269]="Razormane Geomancer",[3270]="Elder Mystic Razorsnout",[3271]="Razormane Mystic",[3272]="Kolkar Wrangler",[3273]="Kolkar Stormer",[3274]="Kolkar Pack Runner",[3275]="Kolkar Marauder",[3276]="Witchwing Harpy",[3277]="Witchwing Roguefeather",[3278]="Witchwing Slayer",[3279]="Witchwing Ambusher",[3280]="Witchwing Windcaller",[3281]="Sarkoth",[3282]="Venture Co. Mercenary",[3283]="Venture Co. Enforcer",[3284]="Venture Co. Drudger",[3285]="Venture Co. Peon",[3286]="Venture Co. Overseer",[3287]="Hana'zua",[3289]="Spirit of Minshina",[3290]="Deek Fizzlebizz",[3291]="Greishan Ironstove",[3292]="Brewmaster Drohn",[3293]="Rezlak",[3294]="Ophek",[3295]="Sludge Anomaly",[3296]="Orgrimmar Grunt",[3297]="Sen'jin Watcher",[3298]="Gabrielle Chase",[3300]="Adder",[3301]="Morgan Ladimore",[3304]="Master Vornal",[3305]="Grisha",[3306]="Keldas",[3309]="Karus",[3310]="Doras",[3312]="Olvia",[3313]="Trak'gen",[3314]="Urtharo",[3315]="Tor'phan",[3316]="Handor",[3317]="Ollanus",[3318]="Koma",[3319]="Sana",[3320]="Soran",[3321]="Morgum",[3322]="Kaja",[3323]="Horthus",[3324]="Grol'dar",[3325]="Mirket",[3326]="Zevrost",[3327]="Gest",[3328]="Ormok",[3329]="Kor'jus",[3330]="Muragus",[3331]="Kareth",[3332]="Lumak",[3333]="Shankys",[3334]="Rekkul",[3335]="Hagrus",[3336]="Takrin Pathseeker",[3337]="Kargal Battlescar",[3338]="Sergra Darkthorn",[3339]="Captain Thalo'thas Brightsun",[3341]="Gann Stonespire",[3342]="Shan'ti",[3343]="Grelkor",[3344]="Kardris Dreamseeker",[3345]="Godan",[3346]="Kithas",[3347]="Yelmak",[3348]="Kor'geld",[3349]="Ukra'nor",[3350]="Asoran",[3351]="Magenius",[3352]="Ormak Grimshot",[3353]="Grezz Ragefist",[3354]="Sorek",[3355]="Saru Steelfury",[3356]="Sumi",[3357]="Makaru",[3358]="Gorina",[3359]="Kiro",[3360]="Koru",[3361]="Shoma",[3362]="Ogunaro Wolfrunner",[3363]="Magar",[3364]="Borya",[3365]="Karolek",[3366]="Tamar",[3367]="Felika",[3368]="Borstan",[3369]="Gotri",[3370]="Urtrun Clanbringer",[3371]="Tamaro",[3372]="Sarlek",[3373]="Arnok",[3374]="Bael'dun Excavator",[3375]="Bael'dun Foreman",[3376]="Bael'dun Soldier",[3377]="Bael'dun Rifleman",[3378]="Bael'dun Officer",[3379]="Burning Blade Bruiser",[3380]="Burning Blade Acolyte",[3381]="Southsea Brigand",[3382]="Southsea Cannoneer",[3383]="Southsea Cutthroat",[3384]="Southsea Privateer",[3385]="Theramore Marine",[3386]="Theramore Preserver",[3387]="Jorn Skyseer",[3388]="Mahren Skyseer",[3389]="Regthar Deathgate",[3390]="Apothecary Helbrim",[3391]="Gazlowe",[3392]="Prospector Khazgorm",[3393]="Captain Fairmount",[3394]="Barak Kodobane",[3395]="Verog the Dervish",[3396]="Hezrul Bloodmark",[3397]="Kolkar Bloodcharger",[3398]="Gesharahan",[3399]="Zamja",[3400]="Xen'to",[3401]="Shenthul",[3402]="Zando'zan",[3403]="Sian'tsu",[3404]="Jandi",[3405]="Zeal'aya",[3406]="Xor'juul",[3407]="Sian'dur",[3408]="Zel'mak",[3409]="Zendo'jian",[3410]="Jin'sora",[3411]="Denni'ka",[3412]="Nogg",[3413]="Sovik",[3414]="General Twinbraid",[3415]="Savannah Huntress",[3416]="Savannah Matriarch",[3417]="Living Flame",[3418]="Kirge Sternhorn",[3419]="Apothecary Zamah",[3421]="Feegly the Exiled",[3424]="Thunderhawk Cloudscraper",[3425]="Savannah Prowler",[3426]="Zhevra Charger",[3428]="Korran",[3429]="Thork",[3430]="Mangletooth",[3431]="Grenthar",[3432]="Mankrik",[3433]="Tatternack Steelforge",[3434]="Nak",[3435]="Lok Orcbane",[3436]="Kuz",[3438]="Kreenig Snarlsnout",[3439]="Wizzlecrank's Shredder",[3441]="Melor Stonehoof",[3442]="Sputtervalve",[3443]="Grub",[3444]="Dig Rat",[3445]="Supervisor Lugwizzle",[3446]="Mebok Mizzyrix",[3447]="Pawe Mistrunner",[3448]="Tonga Runetotem",[3449]="Darsok Swiftdagger",[3450]="Defias Companion",[3451]="Pilot Wizzlecrank",[3452]="Serena Bloodfeather",[3453]="Wharfmaster Dizzywig",[3454]="Cannoneer Smythe",[3455]="Cannoneer Whessan",[3456]="Razormane Pathfinder",[3457]="Razormane Stalker",[3458]="Razormane Seer",[3459]="Razormane Warfrenzy",[3461]="Oasis Snapjaw",[3462]="Elder Barrens Giraffe",[3463]="Wandering Barrens Giraffe",[3464]="Gazrog",[3465]="Gilthares Firebough",[3466]="Zhevra Courser",[3467]="Baron Longshore",[3468]="Ancient of Lore",[3469]="Ancient of War",[3470]="Rathorian",[3471]="Tinkerer Sniggles",[3472]="Washte Pawne",[3473]="Owatanka",[3474]="Lakota'mani",[3475]="Echeyakee",[3476]="Isha Awak",[3477]="Hraq",[3478]="Traugh",[3479]="Nargal Deatheye",[3480]="Moorane Hearthgrain",[3481]="Barg",[3482]="Tari'qa",[3483]="Jahan Hawkwing",[3484]="Kil'hala",[3485]="Wrahk",[3486]="Halija Whitestrider",[3487]="Kalyimah Stormcloud",[3488]="Uthrok",[3489]="Zargh",[3490]="Hula'mahi",[3491]="Ironzar",[3492]="Vexspindle",[3493]="Grazlix",[3494]="Tinkerwiz",[3495]="Gagsprocket",[3496]="Fuzruckle",[3497]="Kilxx",[3498]="Jazzik",[3499]="Ranik",[3500]="Tarhus",[3501]="Horde Guard",[3502]="Ratchet Bruiser",[3503]="Silithid Protector",[3504]="Gil",[3505]="Pat",[3507]="Andi",[3508]="Mikey",[3509]="Geoff",[3510]="Twain",[3511]="Steven",[3512]="Jimmy",[3513]="Miss Danna",[3514]="Tenaron Stormgrip",[3515]="Corithras Moonrage",[3516]="Arch Druid Fandral Staghelm",[3517]="Rellian Greenspyre",[3518]="Thomas Miller",[3519]="Sentinel Arynia Cloudsbreak",[3520]="Ol' Emma",[3521]="Ak'Zeloth",[3522]="Constance Brisboise",[3523]="Bowen Brisboise",[3524]="Spirit Wolf",[3527]="Healing Stream Totem",[3528]="Pyrewood Armorer",[3529]="Moonrage Armorer",[3530]="Pyrewood Tailor",[3531]="Moonrage Tailor",[3532]="Pyrewood Leatherworker",[3533]="Moonrage Leatherworker",[3534]="Wallace the Blind",[3535]="Blackmoss the Fetid",[3536]="Kris Legace",[3537]="Zixil",[3538]="Overwatch Mark I",[3539]="Ott",[3540]="Hal McAllister",[3541]="Sarah Raycroft",[3542]="Jaysin Lanyda",[3543]="Robert Aebischer",[3544]="Jason Lemieux",[3545]="Claude Erksine",[3546]="Bernie Heisten",[3547]="Hamlin Atkins",[3548]="Selina Weston",[3549]="Shelene Rhobart",[3550]="Martine Tramblay",[3551]="Patrice Dwyer",[3552]="Alexandre Lefevre",[3553]="Sebastian Meloche",[3554]="Andrea Boynton",[3555]="Johan Focht",[3556]="Andrew Hilbert",[3557]="Guillaume Sorouy",[3560]="Healing Ward",[3561]="Kyrai",[3562]="Alaindia",[3566]="Flatland Prowler",[3567]="Tallonkai Swiftroot",[3568]="Mist",[3569]="Bogling",[3570]="Cleansed Timberling",[3571]="Teldrassil Sentinel",[3572]="Zizzek",[3573]="Mana Spring Totem",[3577]="Ambermill Brewmaster",[3578]="Ambermill Miner",[3579]="Stoneclaw Totem",[3580]="Crafticus Rabbitus",[3581]="Sewer Beast",[3582]="Aman",[3583]="Barithras Moonshade",[3584]="Therylune",[3585]="Therysil",[3586]="Miner Johnson",[3587]="Lyrai",[3588]="Khardan Proudblade",[3589]="Keina",[3590]="Janna Brightmoon",[3591]="Freja Nightwing",[3592]="Andiss",[3593]="Alyissia",[3594]="Frahun Shadewhisper",[3595]="Shanda",[3596]="Ayanna Everstride",[3597]="Mardant Strongoak",[3598]="Kyra Windblade",[3599]="Jannok Breezesong",[3600]="Laurna Morninglight",[3601]="Dazalar",[3602]="Kal",[3603]="Cyndra Kindwhisper",[3604]="Malorne Bladeleaf",[3605]="Nadyia Maneweaver",[3606]="Alanna Raveneye",[3607]="Androl Oakhand",[3608]="Aldia",[3609]="Shalomon",[3610]="Jeena Featherbow",[3611]="Brannol Eaglemoon",[3612]="Sinda",[3613]="Meri Ironweave",[3614]="Narret Shadowgrove",[3615]="Devrak",[3616]="Onu",[3617]="Lordaeron Citizen",[3619]="Ghost Saber",[3620]="Harruk",[3621]="Kurll",[3622]="Grokor",[3624]="Zudd",[3625]="Rarck",[3626]="Jenn Langston",[3627]="Erich Lohan",[3628]="Steven Lohan",[3629]="David Langston",[3630]="Deviate Coiler",[3631]="Deviate Stinglash",[3632]="Deviate Creeper",[3633]="Deviate Slayer",[3634]="Deviate Stalker",[3636]="Deviate Ravager",[3637]="Deviate Guardian",[3638]="Devouring Ectoplasm",[3639]="Sentinel Tysha Moonblade",[3640]="Evolving Ectoplasm",[3641]="Deviate Lurker",[3644]="Cerellean Whiteclaw",[3649]="Thundris Windweaver",[3650]="Asterion",[3652]="Trigore the Lasher",[3653]="Kresh",[3654]="Mutanus the Devourer",[3655]="Mad Magglish",[3657]="Sentinel Elissa Starbreeze",[3658]="Lizzarik",[3659]="Jorb",[3660]="Athrikus Narassin",[3661]="Balthule Shadowstrike",[3662]="Delmanis the Hated",[3663]="Delgren the Purifier",[3664]="Ilkrud Magthrull",[3665]="Crane Operator Bigglefuzz",[3666]="Wizbang Cranktoggle",[3667]="Anaya Dawnrunner",[3669]="Lord Cobrahn",[3670]="Lord Pythas",[3671]="Lady Anacondra",[3672]="Boahn",[3673]="Lord Serpentis",[3674]="Skum",[3678]="Muyoh",[3679]="Naralex",[3680]="Serpentbloom Snake",[3681]="Wisp",[3682]="Vrang Wildgore",[3683]="Kiknikle",[3684]="Pizznukle",[3685]="Harb Clawhoof",[3688]="Reban Freerunner",[3689]="Laer Stepperunner",[3690]="Kar Stormsinger",[3691]="Raene Wolfrunner",[3692]="Volcor",[3693]="Terenthis",[3694]="Sentinel Selarin",[3695]="Grimclaw",[3696]="Ran Bloodtooth",[3698]="Bolyun",[3700]="Jadenvis Seawatcher",[3701]="Tharnariun Treetender",[3702]="Alanndarian Nightsong",[3703]="Krulmoo Fullmoon",[3704]="Mahani",[3705]="Gahroot",[3706]="Tai'jin",[3707]="Ken'jai",[3708]="Gruna",[3711]="Wrathtail Myrmidon",[3712]="Wrathtail Razortail",[3713]="Wrathtail Wave Rider",[3715]="Wrathtail Sea Witch",[3717]="Wrathtail Sorceress",[3721]="Mystlash Hydra",[3722]="Mystlash Flayer",[3725]="Dark Strand Cultist",[3727]="Dark Strand Enforcer",[3728]="Dark Strand Adept",[3730]="Dark Strand Excavator",[3732]="Forsaken Seeker",[3733]="Forsaken Herbalist",[3734]="Orc Overseer",[3735]="Apothecary Falthis",[3736]="Darkslayer Mordenthal",[3737]="Saltspittle Puddlejumper",[3739]="Saltspittle Warrior",[3740]="Saltspittle Muckdweller",[3742]="Saltspittle Oracle",[3743]="Foulweald Warrior",[3745]="Foulweald Pathfinder",[3746]="Foulweald Den Watcher",[3748]="Foulweald Shaman",[3749]="Foulweald Ursa",[3750]="Foulweald Totemic",[3752]="Xavian Rogue",[3754]="Xavian Betrayer",[3755]="Xavian Felsworn",[3757]="Xavian Hellcaller",[3758]="Felmusk Satyr",[3759]="Felmusk Rogue",[3762]="Felmusk Felsworn",[3763]="Felmusk Shadowstalker",[3765]="Bleakheart Satyr",[3767]="Bleakheart Trickster",[3770]="Bleakheart Shadowstalker",[3771]="Bleakheart Hellcaller",[3772]="Lesser Felguard",[3773]="Akkrilus",[3774]="Felslayer",[3779]="Syurana",[3780]="Singed Shambler",[3781]="Shadethicket Wood Shaper",[3782]="Shadethicket Stone Mover",[3783]="Shadethicket Raincaller",[3784]="Shadethicket Bark Ripper",[3789]="Terrowulf Fleshripper",[3791]="Terrowulf Shadow Weaver",[3792]="Terrowulf Packlord",[3794]="Druid of the Talon",[3795]="Druid of the Claw",[3797]="Cenarion Protector",[3799]="Severed Druid",[3801]="Severed Sleeper",[3802]="Severed Dreamer",[3803]="Severed Keeper",[3804]="Forsaken Intruder",[3806]="Forsaken Infiltrator",[3807]="Forsaken Assassin",[3808]="Forsaken Dark Stalker",[3809]="Ashenvale Bear",[3810]="Elder Ashenvale Bear",[3811]="Giant Ashenvale Bear",[3812]="Clattering Crawler",[3814]="Spined Crawler",[3815]="Blink Dragon",[3816]="Wild Buck",[3817]="Shadowhorn Stag",[3818]="Elder Shadowhorn Stag",[3819]="Wildthorn Stalker",[3820]="Wildthorn Venomspitter",[3821]="Wildthorn Lurker",[3823]="Ghostpaw Runner",[3824]="Ghostpaw Howler",[3825]="Ghostpaw Alpha",[3831]="[UNUSED] Ancient Guardian",[3833]="Cenarion Vindicator",[3834]="Crazed Ancient",[3835]="Biletoad",[3836]="Mountaineer Pebblebitty",[3838]="Vesprystus",[3840]="Druid of the Fang",[3841]="Teldira Moonfeather",[3842]="Brombar Higgleby",[3843]="Anaya",[3844]="Healing Ward IV",[3845]="Shindrell Swiftfire",[3846]="Talen",[3847]="Orendil Broadleaf",[3848]="Kayneth Stillwind",[3849]="Deathstalker Adamant",[3850]="Sorcerer Ashcrombe",[3851]="Shadowfang Whitescalp",[3853]="Shadowfang Moonwalker",[3854]="Shadowfang Wolfguard",[3855]="Shadowfang Darksoul",[3857]="Shadowfang Glutton",[3859]="Shadowfang Ragetooth",[3861]="Bleak Worg",[3862]="Slavering Worg",[3863]="Lupine Horror",[3864]="Fel Steed",[3865]="Shadow Charger",[3866]="Vile Bat",[3868]="Blood Seeker",[3869]="Lesser Gargoyle",[3870]="Stone Sleeper",[3872]="Deathsworn Captain",[3873]="Tormented Officer",[3875]="Haunted Servitor",[3877]="Wailing Guardsman",[3879]="Dark Strand Assassin",[3880]="Sentinel Melyria Frostshadow",[3881]="Grimtak",[3882]="Zlagk",[3883]="Moodan Sungrain",[3884]="Jhawna Oatwind",[3885]="Sentinel Velene Starstrike",[3886]="Razorclaw the Butcher",[3887]="Baron Silverlaine",[3888]="Korra",[3890]="Brakgul Deathbringer",[3891]="Teronis' Corpse",[3892]="Relara Whitemoon",[3893]="Forsaken Scout",[3894]="Pelturas Whitemoon",[3897]="Krolg",[3898]="Aligar the Tormentor",[3899]="Balizar the Umbrage",[3900]="Caedakar the Vicious",[3901]="Illiyana",[3902]="Searing Totem II",[3903]="Searing Totem III",[3904]="Searing Totem IV",[3906]="Healing Stream Totem II",[3907]="Healing Stream Totem III",[3908]="Healing Stream Totem IV",[3909]="Healing Stream Totem V",[3911]="Stoneclaw Totem II",[3912]="Stoneclaw Totem III",[3913]="Stoneclaw Totem IV",[3914]="Rethilgore",[3915]="Dagri",[3916]="Shael'dryn",[3917]="Befouled Water Elemental",[3919]="Withered Ancient",[3920]="Anilia",[3921]="Thistlefur Ursa",[3922]="Thistlefur Totemic",[3923]="Thistlefur Den Watcher",[3924]="Thistlefur Shaman",[3925]="Thistlefur Avenger",[3926]="Thistlefur Pathfinder",[3927]="Wolf Master Nandos",[3928]="Rotting Slime",[3931]="Shadethicket Oracle",[3932]="Bloodtooth Guard",[3933]="Hai'zan",[3934]="Innkeeper Boorand Plainswind",[3935]="Toddrick",[3936]="Shandris Feathermoon",[3937]="Kira Songshine",[3939]="Razormane Wolf",[3940]="Taneel Darkwood",[3941]="Uthil Mooncall",[3942]="Mavoris Cloudsbreak",[3943]="Ruuzel",[3944]="Wrathtail Priestess",[3945]="Caravaneer Ruzzgot",[3946]="Velinde Starsong",[3947]="Goblin Shipbuilder",[3948]="Honni Goldenoat",[3950]="Minor Water Guardian",[3951]="Bhaldaran Ravenshade",[3952]="Aeolynn",[3953]="Tandaan Lightmane",[3954]="Dalria",[3955]="Shandrina",[3956]="Harklan Moongrove",[3957]="Jainay Featherbreeze",[3958]="Lardan",[3959]="Nantar",[3960]="Ulthaan",[3961]="Maliynn",[3962]="Haljan Oakheart",[3963]="Danlaar Nightstride",[3964]="Kylanna",[3965]="Cylania Rootstalker",[3967]="Aayndia Floralwind",[3968]="Sentry Totem",[3969]="Fahran Silentblade",[3970]="Llana",[3974]="Houndmaster Loksey",[3975]="Herod",[3976]="Scarlet Commander Mograine",[3977]="High Inquisitor Whitemane",[3978]="Sage Truthseeker",[3979]="Librarian Mae Paledust",[3980]="Raleigh the Devout",[3981]="Vorrel Sengutz",[3982]="Monika Sengutz",[3983]="Interrogator Vishas",[3984]="Nancy Vishas",[3985]="Grandpa Vishas",[3986]="Sarilus Foulborne",[3987]="Dal Bloodclaw",[3988]="Venture Co. Operator",[3989]="Venture Co. Logger",[3991]="Venture Co. Deforester",[3992]="Venture Co. Holdout",[3993]="Venture Co. Machine Smith",[3994]="Keeper Albagorm",[3995]="Witch Doctor Jin'Zil",[3996]="Faldreas Goeth'Shael",[3998]="Windshear Vermin",[3999]="Windshear Digger",[4001]="Windshear Tunnel Rat",[4002]="Windshear Stonecutter",[4003]="Windshear Geomancer",[4004]="Windshear Overlord",[4005]="Deepmoss Creeper",[4006]="Deepmoss Webspinner",[4007]="Deepmoss Venomspitter",[4008]="Cliff Stormer",[4009]="Raging Cliff Stormer",[4011]="Young Pridewing",[4012]="Pridewing Wyvern",[4013]="Pridewing Skyhunter",[4014]="Pridewing Consort",[4015]="Pridewing Patriarch",[4016]="Fey Dragon",[4017]="Wily Fey Dragon",[4018]="Antlered Courser",[4019]="Great Courser",[4020]="Sap Beast",[4021]="Corrupted Sap Beast",[4022]="Bloodfury Harpy",[4023]="Bloodfury Roguefeather",[4024]="Bloodfury Slayer",[4025]="Bloodfury Ambusher",[4026]="Bloodfury Windcaller",[4027]="Bloodfury Storm Witch",[4028]="Charred Ancient",[4029]="Blackened Ancient",[4030]="Vengeful Ancient",[4031]="Fledgling Chimaera",[4032]="Young Chimaera",[4034]="Enraged Stone Spirit",[4035]="Furious Stone Spirit",[4036]="Rogue Flame Spirit",[4037]="Burning Ravager",[4038]="Burning Destroyer",[4040]="Cave Stalker",[4041]="Scorched Basilisk",[4042]="Singed Basilisk",[4043]="Galthuk",[4044]="Blackened Basilisk",[4046]="Magatha Grimtotem",[4047]="Zor Lonetree",[4048]="Falfindel Waywarder",[4049]="Seereth Stonebreak",[4050]="Cenarion Caretaker",[4051]="Cenarion Botanist",[4052]="Cenarion Druid",[4053]="Daughter of Cenarius",[4054]="Laughing Sister",[4056]="Mirkfallon Keeper",[4057]="Son of Cenarius",[4059]="Forest Spirit",[4061]="Mirkfallon Dryad",[4062]="Dark Iron Bombardier",[4063]="Feeboz",[4064]="Blackrock Scout",[4065]="Blackrock Sentry",[4066]="Nal'taszar",[4067]="Twilight Runner",[4068]="Serpent Messenger",[4070]="Venture Co. Builder",[4072]="Prisoner of Jin'Zil",[4073]="XT:4",[4074]="XT:9",[4075]="Rat",[4076]="Roach",[4077]="Gaxim Rustfizzle",[4078]="Collin Mauren",[4079]="Sentinel Thenysil",[4080]="Kaela Shadowspear",[4081]="Lomac Gearstrip",[4082]="Grawnal",[4083]="Jeeda",[4084]="Chylina",[4085]="Nizzik",[4086]="Veenix",[4087]="Arias'ta Bladesinger",[4088]="Elanaria",[4089]="Sildanair",[4090]="Astarii Starseeker",[4091]="Jandria",[4092]="Lariia",[4093]="[Deprecated for 4.x]Galak Wrangler",[4094]="[Deprecated for 4.x]Galak Scout",[4095]="Galak Mauler",[4096]="[Deprecated for 4.x]Galak Windchaser",[4097]="Galak Stormer",[4099]="Galak Marauder",[4100]="Screeching Harpy",[4101]="Screeching Roguefeather",[4104]="Screeching Windcaller",[4107]="Highperch Wyvern",[4109]="Highperch Consort",[4110]="Highperch Patriarch",[4111]="Gravelsnout Kobold",[4112]="Gravelsnout Vermin",[4113]="Gravelsnout Digger",[4114]="Gravelsnout Forager",[4116]="Gravelsnout Surveyor",[4117]="Cloud Serpent",[4118]="Venomous Cloud Serpent",[4119]="Elder Cloud Serpent",[4120]="Thundering Boulderkin",[4124]="Needles Cougar",[4126]="Crag Stalker",[4127]="Hecklefang Hyena",[4128]="Hecklefang Stalker",[4129]="Hecklefang Snarler",[4130]="[Deprecated for 4.x]Silithid Searcher",[4131]="[Deprecated for 4.x]Silithid Invader",[4132]="Krkk'kx",[4133]="[Deprecated for 4.x]Silithid Hive Drone",[4138]="Jeen'ra Nightrunner",[4139]="Scorpid Terror",[4140]="Scorpid Reaver",[4142]="[Deprecated for 4.x]Sparkleshell Tortoise",[4143]="Sparkleshell Snapper",[4144]="Sparkleshell Borer",[4146]="Jocaste",[4147]="[Deprecated for 4.x]Saltstone Basilisk",[4150]="[Deprecated for 4.x]Saltstone Gazer",[4151]="[Deprecated for 4.x]Saltstone Crystalhide",[4154]="Salt Flats Scavenger",[4155]="Idriana",[4156]="Astaia",[4158]="Salt Flats Vulture",[4159]="Me'lynn",[4160]="Ainethil",[4161]="Lysheana",[4163]="Syurna",[4164]="Cylania",[4165]="Elissa Dumas",[4166]="Gazelle",[4167]="Dendrythis",[4168]="Elynna",[4169]="Jaeana",[4170]="Ellandrieth",[4171]="Merelyssa",[4172]="Anadyia",[4173]="Landria",[4175]="Vinasia",[4177]="Melea",[4180]="Ealyshia Dewwhisper",[4181]="Fyrenna",[4182]="Dalmond",[4183]="Naram Longclaw",[4184]="Geenia Sunshadow",[4185]="Shaldyn",[4186]="Mavralyn",[4187]="Harlon Thornguard",[4188]="Illyanie",[4189]="Valdaron",[4190]="Kyndri",[4191]="Allyndia",[4192]="Taldan",[4193]="Grondal Moonbreeze",[4194]="Ullanna",[4195]="Tiyani",[4196]="Silithid Swarm",[4197]="Ken'zigla",[4198]="Braelyn Firehand",[4200]="Laird",[4201]="Ziz Fizziks",[4202]="Gerenzo Wrenchwhistle",[4203]="Ariyell Skyshadow",[4204]="Firodren Mooncaller",[4205]="Dorion",[4208]="Lairn",[4209]="Garryeth",[4210]="Alegorn",[4211]="Dannelor",[4212]="Telonis",[4213]="Taladan",[4214]="Erion Shadewhisper",[4215]="Anishar",[4216]="Chardryn",[4217]="Mathrengyl Bearwalker",[4218]="Denatharion",[4219]="Fylerian Nightwing",[4220]="Cyroen",[4221]="Talaelar",[4222]="Voloren",[4223]="Fyldan",[4225]="Saenorion",[4226]="Ulthir",[4228]="Vaean",[4229]="Mythrin'dir",[4230]="Yldan",[4231]="Kieran",[4232]="Glorandiir",[4233]="Mythidan",[4234]="Andrus",[4235]="Turian",[4236]="Cyridan",[4240]="Caynrus",[4241]="Mydrannul",[4242]="Frostsaber Companion",[4243]="Nightshade",[4244]="Shadow",[4248]="Pesterhide Hyena",[4249]="Pesterhide Snarler",[4250]="Galak Packhound",[4251]="Goblin Racer",[4252]="Gnome Racer",[4254]="Geofram Bouldertoe",[4255]="Brogus Thunderbrew",[4256]="Golnir Bouldertoe",[4257]="Lana Thunderbrew",[4258]="Bengus Deepforge",[4259]="Thurgrum Deepforge",[4260]="Venture Co. Shredder",[4262]="Darnassus Sentinel",[4263]="Deepmoss Hatchling",[4264]="Deepmoss Matriarch",[4265]="Nyoma",[4266]="Danlyia",[4267]="Daelyshia",[4269]="Chestnut Mare",[4270]="Riding Wolf (Red)",[4271]="Dire Wolf",[4272]="Brown Wolf",[4273]="Keeper Ordanus",[4274]="Fenrus the Devourer",[4275]="Archmage Arugal",[4276]="Piznik",[4277]="Eye of Kilrogg",[4278]="Commander Springvale",[4279]="Odo the Blindwatcher",[4280]="Scarlet Preserver",[4281]="Scarlet Scout",[4282]="Scarlet Magician",[4283]="Scarlet Sentry",[4284]="Scarlet Augur",[4285]="Scarlet Disciple",[4286]="Scarlet Soldier",[4287]="Scarlet Gallant",[4288]="Scarlet Beastmaster",[4289]="Scarlet Evoker",[4290]="Scarlet Guardsman",[4291]="Scarlet Diviner",[4292]="Scarlet Protector",[4293]="Scarlet Scryer",[4294]="Scarlet Sorcerer",[4295]="Scarlet Myrmidon",[4296]="Scarlet Adept",[4297]="Scarlet Conjuror",[4298]="Scarlet Defender",[4299]="Scarlet Chaplain",[4300]="Scarlet Wizard",[4301]="Scarlet Centurion",[4302]="Scarlet Champion",[4303]="Scarlet Abbot",[4304]="Scarlet Tracking Hound",[4305]="Kriggon Talsone",[4306]="Scarlet Torturer",[4307]="Heldan Galesong",[4308]="Unfettered Spirit",[4309]="Gorm Grimtotem",[4310]="Cor Grimtotem",[4311]="Holgar Stormaxe",[4312]="Tharm",[4314]="Gorkas",[4316]="Kolkar Packhound",[4317]="Nyse",[4319]="Thyssiana",[4320]="Caelyb",[4321]="Baldruc",[4323]="Searing Hatchling",[4324]="Searing Whelp",[4328]="Firemane Scalebane",[4329]="Firemane Scout",[4331]="Firemane Ash Tail",[4334]="Firemane Flamecaller",[4339]="Brimgore",[4341]="Drywallow Crocolisk",[4342]="Drywallow Vicejaw",[4343]="Drywallow Snapper",[4344]="Mottled Drywallow Crocolisk",[4345]="Drywallow Daggermaw",[4346]="Noxious Flayer",[4347]="Noxious Reaver",[4348]="Noxious Shredder",[4351]="Bloodfen Raptor",[4352]="Bloodfen Screecher",[4355]="Bloodfen Scytheclaw",[4356]="Bloodfen Razormaw",[4357]="Bloodfen Lashtail",[4358]="Mirefin Puddlejumper",[4359]="Mirefin Murloc",[4360]="Mirefin Warrior",[4361]="Mirefin Muckdweller",[4362]="Mirefin Coastrunner",[4363]="Mirefin Oracle",[4364]="Strashaz Warrior",[4366]="Strashaz Serpent Guard",[4368]="Strashaz Myrmidon",[4370]="Strashaz Sorceress",[4371]="Strashaz Siren",[4374]="Strashaz Hydra",[4376]="Darkmist Spider",[4377]="Darkmist Hatchling",[4378]="Darkmist Recluse",[4379]="Darkmist Silkspinner",[4380]="Darkmist Widow",[4382]="Withervine Creeper",[4385]="Withervine Rager",[4386]="Withervine Bark Ripper",[4387]="Withervine Mire Beast",[4388]="Young Murk Thresher",[4389]="Murk Thresher",[4390]="Elder Murk Thresher",[4391]="Swamp Ooze",[4392]="Corrosive Swamp Ooze",[4393]="Acidic Swamp Ooze",[4394]="Bubbling Swamp Ooze",[4396]="Mudrock Tortoise",[4397]="Mudrock Spikeshell",[4398]="Mudrock Burrower",[4399]="Mudrock Borer",[4400]="Mudrock Snapjaw",[4401]="Muckshell Clacker",[4402]="Muckshell Snapclaw",[4403]="Muckshell Pincer",[4404]="Muckshell Scrabbler",[4405]="Muckshell Razorclaw",[4407]="Teloren",[4409]="Gatekeeper Kordurus",[4411]="Darkfang Lurker",[4412]="Darkfang Creeper",[4413]="Darkfang Spider",[4414]="Darkfang Venomspitter",[4415]="Giant Darkfang Spider",[4416]="Defias Strip Miner",[4417]="Defias Taskmaster",[4418]="Defias Wizard",[4419]="Race Master Kronkrider",[4420]="Overlord Ramtusk",[4421]="Charlga Razorflank",[4422]="Agathelos the Raging",[4423]="Darnassian Protector",[4424]="Aggem Thorncurse",[4425]="Blind Hunter",[4427]="Ward Guardian",[4428]="Death Speaker Jargba",[4429]="Goblin Pit Crewman",[4430]="Gnome Pit Crewman",[4435]="Razorfen Warrior",[4436]="Razorfen Quilguard",[4437]="Razorfen Warden",[4438]="Razorfen Spearhide",[4440]="Razorfen Totemic",[4442]="Razorfen Defender",[4444]="Deathstalker Vincent",[4449]="Crazzle Sprysprocket",[4450]="Rugfizzle",[4451]="Auld Stonespire",[4452]="Kravel Koalbeard",[4453]="Wizzle Brassbolts",[4454]="Fizzle Brassbolts",[4455]="Red Jack Flint",[4456]="Fiora Longears",[4457]="Murkgill Forager",[4458]="Murkgill Hunter",[4459]="Murkgill Oracle",[4460]="Murkgill Coldbringer",[4461]="Murkgill Warrior",[4462]="Blackrock Hunter",[4463]="Blackrock Summoner",[4464]="Blackrock Gladiator",[4465]="Vilebranch Warrior",[4466]="Vilebranch Scalper",[4467]="Vilebranch Soothsayer",[4468]="Jade Sludge",[4469]="Emerald Ooze",[4472]="Haunting Vision",[4474]="Rotting Cadaver",[4475]="Blighted Zombie",[4479]="Fardel Dabyrie",[4480]="Kenata Dabyrie",[4481]="Marcel Dabyrie",[4483]="Moktar Krin",[4484]="Feero Ironhand",[4485]="Belgrom Rockmaul",[4486]="Genavie Callow",[4488]="Parqual Fintallas",[4489]="Braug Dimspirit",[4490]="Grenka Bloodscreech",[4493]="Scarlet Avenger",[4494]="Scarlet Spellbinder",[4495]="Gnome Pit Boss",[4496]="Goblin Pit Boss",[4497]="Captain Quirk",[4498]="Maurin Bonesplitter",[4499]="Rok'Alim the Pounder",[4500]="Overlord Mok'Morokk",[4501]="Draz'Zilb",[4502]="Tharg",[4503]="Mudcrush Durtfeet",[4504]="Frostmaw",[4505]="Bloodsail Deckhand",[4506]="Bloodsail Swabby",[4507]="Daisy",[4508]="Willix the Importer",[4509]="Sargath",[4510]="Heralath Fallowbrook",[4511]="Agam'ar",[4512]="Rotting Agam'ar",[4514]="Raging Agam'ar",[4515]="Death's Head Acolyte",[4516]="Death's Head Adept",[4517]="Death's Head Priest",[4518]="Death's Head Sage",[4519]="Death's Head Seer",[4520]="Razorfen Geomancer",[4521]="Treshala Fallowbrook",[4522]="Razorfen Dustweaver",[4523]="Razorfen Groundshaker",[4525]="Razorfen Earthbreaker",[4526]="Wind Howler",[4528]="Stone Rumbler",[4530]="Razorfen Handler",[4531]="Razorfen Beast Trainer",[4532]="Razorfen Beastmaster",[4534]="Tamed Hyena",[4535]="Tamed Battleboar",[4538]="Kraul Bat",[4539]="Greater Kraul Bat",[4540]="Scarlet Monk",[4541]="Blood of Agamaggan",[4542]="High Inquisitor Fairbanks",[4543]="Bloodmage Thalnos",[4544]="Krueg Skullsplitter",[4545]="Nag'zehn",[4546]="Bor'zehn",[4547]="Tarkreu Shadowstalker",[4548]="Steelsnap",[4549]="William Montague",[4550]="Ophelia Montague",[4551]="Michael Garrett",[4552]="Eunice Burch",[4553]="Ronald Burch",[4554]="Tawny Grisette",[4555]="Eleanor Rusk",[4556]="Gordon Wendham",[4557]="Louis Warren",[4558]="Lauren Newcomb",[4559]="Timothy Weldon",[4560]="Walter Ellingson",[4561]="Daniel Bartlett",[4562]="Thomas Mordan",[4563]="Kaal Soulreaper",[4564]="Luther Pickman",[4565]="Richard Kerwin",[4566]="Kaelystia Hatebringer",[4567]="Pierce Shackleton",[4568]="Anastasia Hartwell",[4569]="Charles Seaton",[4570]="Sydney Upton",[4571]="Morley Bates",[4572]="Silas Zimmer",[4573]="Armand Cromwell",[4574]="Lizbeth Cromwell",[4575]="Hannah Akeley",[4576]="Josef Gregorian",[4577]="Millie Gregorian",[4578]="Josephine Lister",[4580]="Lucille Castleton",[4581]="Salazar Bloch",[4582]="Carolyn Ward",[4583]="Miles Dexter",[4584]="Gregory Charles",[4585]="Ezekiel Graves",[4586]="Graham Van Talen",[4587]="Elizabeth Van Talen",[4588]="Arthur Moore",[4589]="Joseph Moore",[4590]="Jonathan Chambers",[4591]="Mary Edras",[4592]="Nathaniel Steenwick",[4593]="Christoph Walker",[4594]="Angela Curthas",[4595]="Baltus Fowler",[4596]="James Van Brunt",[4597]="Samuel Van Brunt",[4598]="Brom Killian",[4599]="Sarah Killian",[4600]="Geoffrey Hartwell",[4601]="Francis Eliot",[4602]="Benijah Fenner",[4603]="Nicholas Atwood",[4604]="Abigail Sawyer",[4605]="Basil Frye",[4606]="Aelthalyste",[4607]="Father Lankester",[4608]="Father Lazarus",[4609]="Doctor Marsh",[4610]="Algernon",[4611]="Doctor Herbert Halsey",[4612]="Boyle",[4613]="Christopher Drakul",[4614]="Martha Alliestar",[4615]="Katrina Alliestar",[4616]="Lavinia Crowe",[4617]="Thaddeus Webb",[4618]="Martek the Exiled",[4619]="Geltharis",[4620]="Fobeed",[4623]="Quilguard Champion",[4624]="Booty Bay Bruiser",[4625]="Death's Head Ward Keeper",[4627]="Arugal's Voidwalker",[4629]="Trackmaster Zherin",[4630]="Pozzik",[4631]="Wharfmaster Lozgil",[4632]="Kolkar Centaur",[4633]="Kolkar Scout",[4634]="Kolkar Mauler",[4635]="Kolkar Windchaser",[4636]="Kolkar Battle Lord",[4637]="Kolkar Destroyer",[4638]="Magram Scout",[4639]="Magram Outrunner",[4640]="Magram Wrangler",[4641]="Magram Windchaser",[4642]="Magram Stormer",[4643]="Magram Pack Runner",[4644]="Magram Marauder",[4645]="Magram Mauler",[4646]="Gelkis Outrunner",[4647]="Gelkis Scout",[4648]="Gelkis Stamper",[4649]="Gelkis Windchaser",[4651]="Gelkis Earthcaller",[4652]="Gelkis Mauler",[4653]="Gelkis Marauder",[4654]="Maraudine Scout",[4655]="Maraudine Wrangler",[4656]="Maraudine Mauler",[4657]="Maraudine Windchaser",[4658]="Maraudine Stormer",[4659]="Maraudine Marauder",[4660]="Maraudine Bonepaw",[4661]="Gelkis Rumbler",[4662]="Magram Bonepaw",[4663]="Burning Blade Augur",[4664]="Burning Blade Reaver",[4665]="Burning Blade Adept",[4666]="Burning Blade Felsworn",[4667]="Burning Blade Shadowmage",[4668]="Burning Blade Summoner",[4670]="Hatefury Rogue",[4671]="Hatefury Trickster",[4672]="Hatefury Felsworn",[4673]="Hatefury Betrayer",[4674]="Hatefury Shadowstalker",[4675]="Hatefury Hellcaller",[4676]="Lesser Infernal",[4677]="Doomwarder",[4678]="Mana Eater",[4679]="Nether Maiden",[4680]="Doomwarder Captain",[4681]="Mage Hunter",[4682]="Nether Sister",[4684]="Nether Sorceress",[4685]="Ley Hunter",[4686]="Deepstrider Giant",[4687]="Deepstrider Searcher",[4688]="Bonepaw Hyena",[4689]="Starving Bonepaw",[4690]="Rabid Bonepaw",[4692]="Dread Swoop",[4693]="Dread Flyer",[4694]="Dread Ripper",[4695]="Carrion Horror",[4696]="Scorpashi Snapper",[4697]="Scorpashi Lasher",[4699]="Scorpashi Venomlash",[4700]="Aged Kodo",[4701]="Dying Kodo",[4702]="Ancient Kodo",[4705]="Burning Blade Invoker",[4706]="Razzeric",[4707]="Zuzubee",[4708]="Shreev",[4709]="Zamek",[4710]="Gray Ram",[4711]="Slitherblade Naga",[4712]="Slitherblade Sorceress",[4713]="Slitherblade Warrior",[4714]="Slitherblade Myrmidon",[4715]="Slitherblade Razortail",[4716]="Slitherblade Tidehunter",[4718]="Slitherblade Oracle",[4719]="Slitherblade Sea Witch",[4720]="Rizzle Brassbolts",[4721]="Zangen Stonehoof",[4722]="Rau Cliffrunner",[4723]="Foreman Cozzle",[4726]="Raging Thunder Lizard",[4727]="Elder Thunder Lizard",[4728]="Gritjaw Basilisk",[4729]="Hulking Gritjaw Basilisk",[4730]="Lelanai",[4731]="Zachariah Post",[4732]="Randal Hunter",[4752]="Kildar",[4753]="Jartsam",[4772]="Ultham Ironhorn",[4773]="Velma Warnam",[4775]="Felicia Doan",[4777]="White Ram",[4778]="Riding Ram (Blue)",[4779]="Brown Ram",[4780]="Riding Ram (Black)",[4781]="Snufflenose Gopher",[4782]="Truk Wildbeard",[4783]="Dawnwatcher Selgorm",[4784]="Argent Guard Manados",[4785]="Illusionary Nightmare",[4786]="Dawnwatcher Shaedlass",[4787]="Scout Thaelrid",[4788]="Fallenroot Satyr",[4789]="Fallenroot Rogue",[4791]="Nazeer Bloodpike",[4794]="Morgan Stern",[4795]="Force of Nature",[4798]="Fallenroot Shadowstalker",[4799]="Fallenroot Hellcaller",[4802]="Blackfathom Tide Priestess",[4803]="Blackfathom Oracle",[4805]="Blackfathom Sea Witch",[4807]="Blackfathom Myrmidon",[4809]="Twilight Acolyte",[4810]="Twilight Reaver",[4811]="Twilight Aquamancer",[4812]="Twilight Loreseeker",[4813]="Twilight Shadowmage",[4814]="Twilight Elementalist",[4815]="Murkshallow Snapclaw",[4818]="Blindlight Murloc",[4819]="Blindlight Muckdweller",[4820]="Blindlight Oracle",[4821]="Skittering Crustacean",[4822]="Snapping Crustacean",[4823]="Barbed Crustacean",[4824]="Aku'mai Fisher",[4825]="Aku'mai Snapjaw",[4827]="Deep Pool Threshfin",[4829]="Aku'mai",[4830]="Old Serra'kis",[4831]="Lady Sarevess",[4832]="Twilight Lord Kelris",[4834]="Theramore Infiltrator",[4841]="Deadmire",[4842]="Earthcaller Halmgar",[4844]="Shadowforge Surveyor",[4845]="Shadowforge Ruffian",[4846]="Shadowforge Digger",[4847]="Shadowforge Relic Hunter",[4848]="Shadowforge Darkcaster",[4849]="Shadowforge Archaeologist",[4850]="Stonevault Cave Lurker",[4851]="Stonevault Rockchewer",[4852]="Stonevault Oracle",[4853]="Stonevault Geomancer",[4854]="Grimlok",[4855]="Stonevault Brawler",[4856]="Stonevault Cave Hunter",[4857]="Stone Keeper",[4860]="Stone Steward",[4861]="Shrike Bat",[4863]="Jadespine Basilisk",[4872]="Obsidian Golem",[4875]="Turhaw",[4876]="Jawn Highmesa",[4877]="Jandia",[4878]="Montarr",[4879]="Ogg'marr",[4883]="Krak",[4884]="Zulrg",[4885]="Gregor MacVince",[4886]="Hans Weston",[4887]="Ghamoo-Ra",[4888]="Marie Holdston",[4889]="Torq Ironblast",[4890]="Piter Verance",[4891]="Dwane Wertle",[4892]="Jensen Farran",[4893]="Bartender Lillian",[4894]="Craig Nollward",[4895]="Smiling Jim",[4896]="Charity Mipsy",[4897]="Helenia Olden",[4898]="Brant Jasperbloom",[4899]="Uma Bartulm",[4900]="Alchemist Narett",[4901]="Sara Pierce",[4902]="Mikal Pierce",[4921]="Guard Byron",[4922]="Guard Edward",[4923]="Guard Jarad",[4924]="Combat Master Criton",[4926]="Krog",[4941]="Caz Twosprocket",[4943]="Mosarn",[4944]="Captain Garran Vimes",[4945]="Goblin Drag Car",[4946]="Gnome Drag Car",[4947]="Theramore Lieutenant",[4948]="Adjutant Tesoran",[4949]="Thrall",[4950]="Spot",[4951]="Theramore Practicing Guard",[4952]="Theramore Combat Dummy",[4953]="Moccasin",[4954]="Uttnar",[4955]="Theramore Archery Target 1",[4958]="Haunting Spirit",[4959]="Jorgen",[4960]="Bishop DeLavey",[4961]="Dashel Stonefist",[4963]="Mikhail",[4964]="Commander Samaul",[4965]="Pained",[4966]="Private Hendel",[4967]="Archmage Tervosh",[4968]="Lady Jaina Proudmoore",[4969]="Old Town Thug",[4971]="Slim's Friend",[4972]="Kagoro",[4973]="Guard Lasiter",[4974]="Aldwin Laughlin",[4975]="Theramore Archery Target 2",[4977]="Murkshallow Softshell",[4978]="Aku'mai Servant",[4979]="Theramore Guard",[4980]="Paval Reethe",[4981]="Ben Trias",[4982]="Thomas",[4983]="Ogron",[4984]="Argos Nightwhisper",[4992]="World Warrior Trainer",[4995]="Stockade Guard",[4996]="Injured Stockade Guard",[5042]="Nurse Lillian",[5043]="Defias Rioter",[5044]="Theramore Skirmisher",[5045]="Private Hallan",[5046]="Lieutenant Caldwell",[5047]="Ellaercia",[5048]="Deviate Adder",[5049]="Lyesa Steelbrow",[5052]="Edward Remington",[5053]="Deviate Crocolisk",[5054]="Krumn",[5055]="Deviate Lasher",[5056]="Deviate Dreadfang",[5057]="Theramore Deserter",[5058]="Wolfguard Worg",[5060]="World Banker",[5081]="Connor Rivers",[5082]="Vincent Hyal",[5083]="Paymaster Lendry",[5085]="Sentry Point Guard",[5086]="Captain Wymor",[5087]="Do'gol",[5088]="Falgran Hastil",[5089]="Balos Jacken",[5090]="Combat Master Szigeti",[5091]="Guard Kahil",[5092]="Guard Lana",[5093]="Guard Narrisha",[5094]="Guard Tark",[5095]="Captain Andrews",[5096]="Captain Thomas",[5097]="Lupine Delusion",[5099]="Soleil Stonemantle",[5100]="Fillius Fizzlespinner",[5101]="Bryllia Ironbrand",[5102]="Dolman Steelfury",[5103]="Grenil Steelfury",[5106]="Bromiir Ormsen",[5107]="Mangorn Flinthammer",[5108]="Raena Flinthammer",[5109]="Myra Tyrngaarde",[5110]="Barim Jurgenstaad",[5111]="Innkeeper Firebrew",[5112]="Gwenna Firebrew",[5113]="Kelv Sternhammer",[5114]="Bilban Tosslespanner",[5115]="Daera Brightspear",[5116]="Olmin Burningbeard",[5117]="Regnus Thundergranite",[5118]="Brogun Stoneshield",[5119]="Hegnar Swiftaxe",[5120]="Brenwyn Wintersteel",[5121]="Kelomir Ironhand",[5122]="Skolmin Goldfury",[5123]="Bretta Goldfury",[5124]="Sognar Cliffbeard",[5125]="Dolkin Craghelm",[5126]="Olthran Craghelm",[5127]="Fimble Finespindle",[5128]="Bombus Finespindle",[5129]="Lissyphus Finespindle",[5130]="Jondor Steelbrow",[5132]="Pithwick",[5133]="Harick Boulderdrum",[5134]="Jonivera Farmountain",[5135]="Svalbrad Farmountain",[5137]="Reyna Stonebranch",[5138]="Gwina Stonebranch",[5139]="Kurdrum Barleybeard",[5140]="Edris Barleybeard",[5141]="Theodrus Frostbeard",[5142]="Braenna Flintcrag",[5143]="Toldren Deepiron",[5144]="Bink",[5145]="Juli Stormkettle",[5146]="Nittlebur Sparkfizzle",[5147]="Valgar Highforge",[5148]="Beldruk Doombrow",[5149]="Brandur Ironhammer",[5150]="Nissa Firestone",[5151]="Ginny Longberry",[5152]="Bingus",[5153]="Jormund Stonebrow",[5154]="Poranna Snowbraid",[5155]="Ingrys Stonebrow",[5156]="Maeva Snowbraid",[5157]="Gimble Thistlefuzz",[5158]="Tilli Thistlefuzz",[5159]="Daryl Riknussun",[5160]="Emrul Riknussun",[5161]="Grimnur Stonebrand",[5162]="Tansy Puddlefizz",[5163]="Burbik Gearspanner",[5164]="Grumnus Steelshaper",[5165]="Hulfdan Blackbeard",[5166]="Ormyr Flinteye",[5167]="Fenthwick",[5169]="Tynnus Venomsprout",[5170]="Hjoldir Stoneblade",[5171]="Thistleheart",[5172]="Briarthorn",[5173]="Alexander Calder",[5174]="Springspindle Fizzlegear",[5175]="Gearcutter Cogspinner",[5177]="Tally Berryfizz",[5178]="Soolie Berryfizz",[5184]="Theramore Sentry",[5185]="Hammerhead Shark",[5186]="Basking Shark",[5188]="Garyl",[5189]="Thrumn",[5190]="Merill Pleasance",[5191]="Shalumon",[5193]="Rebecca Laughlin",[5194]="Black Riding Wolf",[5195]="Brown Riding Wolf",[5196]="Gray Riding Wolf",[5197]="Red Riding Wolf",[5198]="Arctic Riding Wolf",[5199]="Medic Tamberlyn",[5200]="Medic Helaina",[5202]="Archery Target",[5204]="Apothecary Zinge",[5224]="Murk Slitherer",[5225]="Murk Spitter",[5226]="Murk Worm",[5228]="Saturated Ooze",[5229]="Gordunni Ogre",[5232]="Gordunni Brute",[5234]="Gordunni Mauler",[5235]="Fungal Ooze",[5236]="Gordunni Shaman",[5237]="Gordunni Ogre Mage",[5238]="Gordunni Battlemaster",[5239]="Gordunni Mage-Lord",[5240]="Gordunni Warlock",[5241]="Gordunni Warlord",[5243]="Cursed Atal'ai",[5244]="Zukk'ash Stinger",[5245]="Zukk'ash Wasp",[5246]="Zukk'ash Worker",[5247]="Zukk'ash Tunneler",[5249]="Woodpaw Mongrel",[5251]="Woodpaw Trapper",[5253]="Woodpaw Brute",[5254]="Woodpaw Mystic",[5255]="Woodpaw Reaver",[5256]="Atal'ai Warrior",[5258]="Woodpaw Alpha",[5259]="Atal'ai Witch Doctor",[5260]="Groddoc Ape",[5261]="Enthralled Atal'ai",[5262]="Groddoc Thunderer",[5263]="Mummified Atal'ai",[5267]="Unliving Atal'ai",[5268]="Ironfur Bear",[5269]="Atal'ai Priest",[5270]="Atal'ai Corpse Eater",[5271]="Atal'ai Deathwalker",[5272]="Grizzled Ironfur Bear",[5273]="Atal'ai High Priest",[5274]="Ironfur Patriarch",[5276]="Sprite Dragon",[5277]="Nightmare Scalebane",[5278]="Sprite Darter",[5280]="Nightmare Wyrmkin",[5283]="Nightmare Wanderer",[5286]="Longtooth Runner",[5287]="Longtooth Howler",[5288]="Rabid Longtooth",[5291]="Hakkari Frostwing",[5292]="Feral Scar Yeti",[5293]="Hulking Feral Scar",[5295]="Enraged Feral Scar",[5296]="Rage Scar Yeti",[5297]="Elder Rage Scar",[5299]="Ferocious Rage Scar",[5300]="Frayfeather Hippogryph",[5304]="Frayfeather Stagwing",[5305]="Frayfeather Skystormer",[5306]="Frayfeather Patriarch",[5307]="Vale Screecher",[5308]="Rogue Vale Screecher",[5312]="Lethlas",[5314]="Phantim",[5317]="Jademir Oracle",[5319]="Jademir Tree Warder",[5320]="Jademir Boughguard",[5327]="Coast Crawl Snapclaw",[5328]="Coast Crawl Deepseer",[5331]="Hatecrest Warrior",[5332]="Hatecrest Wave Rider",[5333]="Hatecrest Serpent Guard",[5334]="Hatecrest Myrmidon",[5335]="Hatecrest Screamer",[5336]="Hatecrest Sorceress",[5337]="Hatecrest Siren",[5343]="Lady Szallah",[5345]="Diamond Head",[5346]="Bloodroar the Stalker",[5347]="Antilus the Soarer",[5348]="Dreamwatcher Forktongue",[5349]="Arash-ethis",[5350]="Qirot",[5352]="Old Grizzlegut",[5353]="Itharius",[5354]="Gnarl Leafbrother",[5355]="Firewing Defender",[5356]="Snarler",[5357]="Land Walker",[5358]="Cliff Giant",[5359]="Shore Strider",[5360]="Deep Strider",[5361]="Wave Strider",[5362]="Northspring Harpy",[5363]="Northspring Roguefeather",[5364]="Northspring Slayer",[5366]="Northspring Windcaller",[5384]="Brohann Caskbelly",[5385]="Watcher Mahar Ba",[5386]="Acolyte Dellis",[5387]="High Explorer Magellas",[5388]="Ingo Woolybush",[5389]="Prospector Gunstan",[5390]="Sage Palerunner",[5391]="Galen Goodward",[5392]="Yarr Hammerstone",[5393]="Quartermaster Lungertz",[5394]="Neeka Bloodscar",[5395]="Felgur Twocuts",[5396]="Captain Pentigast",[5397]="Uthek the Wise",[5398]="Warug",[5399]="Veyzhak the Cannibal",[5400]="Zekkis",[5401]="Kazkaz the Unholy",[5402]="Khan Hratha",[5403]="Riding White Stallion",[5407]="Nightmare",[5409]="Harvester Swarm",[5411]="Krinkle Goodsteel",[5412]="Gurda Wildmane",[5413]="Furen Longbeard",[5414]="Apothecary Faustin",[5416]="Infiltrator Marksen",[5418]="Deathstalker Zraedus",[5419]="Glasshide Basilisk",[5420]="Glasshide Gazer",[5421]="Glasshide Petrifier",[5422]="Scorpid Hunter",[5423]="Scorpid Tail Lasher",[5424]="Scorpid Dunestalker",[5425]="Starving Blisterpaw",[5426]="Blisterpaw Hyena",[5427]="Rabid Blisterpaw",[5428]="Roc",[5429]="Fire Roc",[5430]="Searing Roc",[5431]="Surf Glider",[5432]="Giant Surf Glider",[5434]="Coral Shark",[5435]="Sand Shark",[5441]="Hazzali Wasp",[5450]="Hazzali Stinger",[5451]="Hazzali Swarmer",[5452]="Hazzali Worker",[5453]="Hazzali Tunneler",[5454]="Hazzali Sandreaver",[5455]="Centipaar Wasp",[5456]="Centipaar Stinger",[5457]="Centipaar Swarmer",[5458]="Centipaar Worker",[5459]="Centipaar Tunneler",[5460]="Centipaar Sandreaver",[5461]="Sea Elemental",[5462]="Sea Spray",[5464]="Watchmaster Sorigal",[5465]="Land Rager",[5466]="Coast Strider",[5467]="Deep Dweller",[5469]="Dune Smasher",[5470]="Raging Dune Smasher",[5471]="Dunemaul Ogre",[5472]="Dunemaul Enforcer",[5473]="Dunemaul Ogre Mage",[5474]="Dunemaul Brute",[5475]="Dunemaul Warlock",[5476]="Watcher Biggs",[5477]="Noboru the Cudgel",[5479]="Wu Shen",[5480]="Ilsa Corbin",[5481]="Thistleshrub Dew Collector",[5482]="Stephen Ryback",[5483]="Erika Tate",[5484]="Brother Benjamin",[5485]="Thistleshrub Rootshaper",[5489]="Brother Joshua",[5490]="Gnarled Thistleshrub",[5491]="Arthur the Faithful",[5492]="Katherine the Pure",[5493]="Arnold Leland",[5494]="Catherine Leland",[5495]="Ursula Deline",[5496]="Sandahl",[5497]="Jennea Cannon",[5498]="Elsharin",[5499]="Lilyssia Nightbreeze",[5500]="Tel'Athir",[5501]="Kaerbrus",[5502]="Shylamiir",[5503]="Eldraeith",[5504]="Sheldras Moontree",[5505]="Theridran",[5506]="Maldryn",[5508]="Strumner Flintheel",[5509]="Kathrum Axehand",[5510]="Thulman Flintcrag",[5511]="Therum Deepforge",[5512]="Kaita Deepforge",[5513]="Gelman Stonehand",[5514]="Brooke Stonebraid",[5515]="Einris Brightspear",[5516]="Ulfir Ironbeard",[5517]="Thorfin Stoneshield",[5518]="Lilliam Sparkspindle",[5519]="Billibub Cogspinner",[5520]="Spackle Thornberry",[5523]="War Party Kodo",[5524]="Caravan Watcher",[5525]="Caravan Packhorse",[5543]="Clarice Foster",[5546]="Grunt Zuul",[5547]="Grunt Tharlak",[5564]="Simon Tanner",[5565]="Jillian Tanner",[5566]="Tannysa",[5567]="Sellandus",[5568]="Captured Leper Gnome",[5569]="Fizzlebang Booms",[5570]="Bruuk Barleybeard",[5591]="Dar",[5592]="Tok'Kar",[5593]="Katar",[5594]="Alchemist Pestlezugg",[5595]="Ironforge Guard",[5597]="Grunt Komak",[5598]="Atal'ai Exile",[5599]="Kon Yelloweyes",[5600]="Khan Dez'hepah",[5601]="Khan Jehn",[5602]="Khan Shaka",[5603]="Grunt Mojka",[5605]="Tisa Martine",[5606]="Goma",[5607]="Roger",[5608]="Jamin",[5609]="Zazo",[5610]="Kozish",[5611]="Barkeep Morag",[5612]="Gimrizz Shadowcog",[5613]="Doyo'da",[5614]="Sarok",[5615]="Wastewander Rogue",[5616]="Wastewander Thief",[5617]="Wastewander Shadow Mage",[5618]="Wastewander Bandit",[5620]="Bartender Wental",[5622]="Ongeku",[5623]="Wastewander Assassin",[5624]="Undercity Guardian",[5629]="Theramore Commando",[5634]="Rhapsody Shindigger",[5635]="Falstad Wildhammer",[5636]="Gryphon Master Talonaxe",[5637]="Roetten Stonehammer",[5638]="Kreldig Ungor",[5639]="Craven Drok",[5640]="Keldran",[5641]="Takata Steelblade",[5642]="Vahlarriel Demonslayer",[5643]="Tyranis Malem",[5644]="Dalinda Malem",[5645]="Sandfury Hideskinner",[5646]="Sandfury Axe Thrower",[5647]="Sandfury Firecaller",[5648]="Sandfury Shadowcaster",[5649]="Sandfury Blood Drinker",[5650]="Sandfury Witch Doctor",[5651]="Patrick Garrett",[5652]="Undercity Practice Dummy",[5653]="Tyler",[5654]="Edward",[5655]="Robert Gossom",[5656]="Richard Van Brunt",[5657]="Marla Fowler",[5658]="Chloe Curthas",[5659]="Andrew Hartwell",[5660]="Riley Walker",[5661]="Brother Malach",[5662]="Sergeant Houser",[5663]="Travist Bosk",[5664]="Eldin Partridge",[5665]="Alyssa Blaye",[5666]="Gunther's Visage",[5667]="Venya Marthand",[5668]="Mattie Alred",[5669]="Helena Atwood",[5670]="Edrick Killian",[5674]="Practice Target",[5675]="Carendin Halgar",[5676]="Summoned Voidwalker",[5677]="Summoned Succubus",[5679]="Lysta Bancroft",[5680]="Male Human Captive",[5681]="Female Human Captive",[5682]="Dalin Forgewright",[5683]="Comar Villard",[5685]="Captive Ghoul",[5686]="Captive Zombie",[5687]="Captive Abomination",[5688]="Innkeeper Renee",[5690]="Clyde Kellen",[5691]="Dalin Forgewright Projection",[5692]="Comar Villard Projection",[5693]="Godrick Farsan",[5694]="High Sorcerer Andromath",[5695]="Vance Undergloom",[5696]="Gerard Abernathy",[5697]="Theresa",[5698]="Joanna Whitehall",[5699]="Leona Tharpe",[5700]="Samantha Shackleton",[5701]="Selina Pickman",[5702]="Jezelle Pruitt",[5703]="Winifred Kerwin",[5704]="Adrian Bartlett",[5705]="Victor Bartholomew",[5706]="Davitt Hickson",[5707]="Reginald Grimsford",[5708]="Spawn of Hakkar",[5709]="Shade of Eranikus",[5710]="Jammal'an the Prophet",[5711]="Ogom the Wretched",[5712]="Zolo",[5713]="Gasher",[5714]="Loro",[5715]="Hukku",[5716]="Zul'Lor",[5717]="Mijan",[5718]="Rothos",[5719]="Morphaz",[5720]="Weaver",[5721]="Dreamscythe",[5722]="Hazzas",[5723]="Warug's Target Dummy",[5724]="Ageron Kargal",[5725]="Deathguard Lundmark",[5726]="Jezelle's Felhunter",[5727]="Jezelle's Felsteed",[5728]="Jezelle's Succubus",[5729]="Jezelle's Voidwalker",[5730]="Jezelle's Imp",[5731]="Apothecary Vallia",[5732]="Apothecary Katrina",[5733]="Apothecary Lycanus",[5734]="Apothecary Keever",[5735]="Caged Human Female",[5736]="Caged Human Male",[5738]="Caged Dwarf Male",[5739]="Caged Squirrel",[5741]="Caged Rabbit",[5742]="Caged Toad",[5743]="Caged Sheep",[5744]="Cedric Stumpel",[5747]="Hepzibah Sedgewick",[5748]="Killian Sanatha",[5749]="Kayla Smithe",[5750]="Gina Lang",[5752]="Corporal Melkins",[5753]="Martha Strain",[5754]="Zane Bradford",[5755]="Deviate Viper",[5756]="Deviate Venomwing",[5757]="Lilly",[5758]="Leo Sarn",[5759]="Nurse Neela",[5760]="Lord Azrethoc",[5761]="Deviate Shambler",[5762]="Deviate Moccasin",[5763]="Nightmare Ectoplasm",[5765]="Ruzan",[5766]="Savannah Cub",[5767]="Nalpak",[5768]="Ebru",[5769]="Arch Druid Hamuul Runetotem",[5770]="Nara Wildmane",[5771]="Jugkar Grim'rod",[5772]="Lord Azrethoc's Image",[5773]="Jugkar Grim'rod's Image",[5774]="Riding Wolf",[5775]="Verdan the Everliving",[5779]="Summoned Viper",[5780]="Cloned Ectoplasm",[5781]="Silithid Creeper Egg",[5782]="Crildor",[5783]="Kalldan Felmoon",[5784]="Waldor",[5785]="Sister Hatelash",[5786]="Snagglespear",[5787]="Enforcer Emilgund",[5788]="Gelgann Direforge",[5792]="Drag Master Miglen",[5797]="Aean Swiftriver",[5798]="Thora Feathermoon",[5799]="Hannah Bladeleaf",[5800]="Marcus Bel",[5806]="Treant Ally",[5807]="The Rake",[5808]="Warlord Kolkanis",[5809]="Sergeant Curtis",[5810]="Uzzek",[5811]="Kamari",[5812]="Tumi",[5814]="Innkeeper Thulbek",[5815]="Kurgul",[5816]="Katis",[5817]="Shimra",[5819]="Mirelle Tremayne",[5820]="Gillian Moore",[5821]="Sheldon Von Croy",[5822]="Felweaver Scornn",[5823]="Death Flayer",[5824]="Captain Flat Tusk",[5826]="Geolord Mottle",[5827]="Brontus",[5828]="Humar the Pridelord",[5829]="Snort the Heckler",[5830]="Sister Rathtalon",[5831]="Swiftmane",[5832]="Thunderstomp",[5833]="Margol the Rager",[5834]="Azzere the Skyblade",[5835]="Foreman Grills",[5836]="Engineer Whirleygig",[5837]="Stonearm",[5838]="Brokespear",[5839]="Dark Iron Geologist",[5840]="Dark Iron Steamsmith",[5841]="Rocklance",[5842]="Takk the Leaper",[5843]="Slave Worker",[5844]="Dark Iron Slaver",[5846]="Dark Iron Taskmaster",[5847]="Heggin Stonewhisker",[5848]="Malgin Barleybrew",[5849]="Digger Flameforge",[5850]="Blazing Elemental",[5851]="Captain Gerogg Hammertoe",[5852]="Inferno Elemental",[5853]="Tempered War Golem",[5854]="Heavy War Golem",[5855]="Magma Elemental",[5856]="Glassweb Spider",[5857]="Searing Lava Spider",[5858]="Greater Lava Spider",[5859]="Hagg Taurenbane",[5860]="Twilight Dark Shaman",[5861]="Twilight Fire Guard",[5862]="Twilight Geomancer",[5863]="Geopriest Gukk'rok",[5864]="Swinegart Spearhide",[5865]="Dishu",[5868]="Evil Squirrel",[5870]="Krond",[5871]="Larhka",[5873]="Stoneskin Totem",[5874]="Strength of Earth Totem",[5875]="Gan'rul Bloodeye",[5878]="Thun'grim Firegaze",[5879]="Fire Nova Totem",[5880]="Un'Thuwa",[5881]="Cursed Sycamore",[5882]="Pephredo",[5883]="Enyo",[5884]="Mai'ah",[5885]="Deino",[5886]="Gwyn Farrow",[5887]="Canaga Earthcaller",[5888]="Seer Ravenfeather",[5889]="Mesa Earth Spirit",[5890]="Redrock Earth Spirit",[5891]="Minor Manifestation of Earth",[5892]="Searn Firewarder",[5893]="Minor Manifestation of Fire",[5894]="Corrupt Minor Manifestation of Water",[5895]="Minor Manifestation of Water",[5896]="Fire Spirit",[5897]="Corrupt Water Spirit",[5898]="Air Spirit",[5899]="Brine",[5900]="Telf Joolam",[5901]="Islen Waterseer",[5902]="Minor Manifestation of Air",[5903]="Nyx Bloodrage",[5905]="Prate Cloudseer",[5906]="Xanis Flameweaver",[5907]="Kranal Fiss",[5908]="Grunt Dogran",[5909]="Cazul",[5910]="Zankaja",[5911]="Grunt Logmar",[5912]="Deviate Faerie Dragon",[5913]="Tremor Totem",[5914]="Deviate Nightmare",[5915]="Brother Ravenoak",[5916]="Sentinel Amarassan",[5917]="Clara Charles",[5919]="Stoneskin Totem II",[5920]="Stoneskin Totem III",[5921]="Strength of Earth Totem II",[5922]="Strength of Earth Totem III",[5923]="Poison Cleansing Totem",[5924]="Cleansing Totem",[5925]="Grounding Totem",[5926]="Frost Resistance Totem",[5927]="Elemental Resistance Totem",[5928]="Sorrow Wing",[5929]="Magma Totem",[5930]="Sister Riven",[5931]="Foreman Rigger",[5932]="Taskmaster Whipfang",[5933]="Achellios the Banished",[5934]="Heartrazor",[5935]="Ironeye the Invincible",[5936]="Orca",[5937]="Vile Sting",[5938]="Uthan Stillwater",[5939]="Vira Younghoof",[5940]="Harn Longcast",[5941]="Lau'Tiki",[5942]="Zansoa",[5943]="Rawrk",[5944]="Yonada",[5945]="Owl Companion",[5950]="Flametongue Totem",[5951]="Hare",[5952]="Den Grunt",[5953]="Razor Hill Grunt",[5955]="Tooga",[5957]="Birgitte Cranston",[5958]="Thuul",[5963]="World Tauren Male Druid Trainer",[5974]="Dreadmaul Ogre",[5975]="Dreadmaul Ogre Mage",[5976]="Dreadmaul Brute",[5977]="Dreadmaul Mauler",[5978]="Dreadmaul Warlock",[5979]="Wretched Lost One",[5981]="Portal Seeker",[5982]="Black Slayer",[5983]="Bonepicker Felfeeder",[5984]="Starving Snickerfang",[5985]="Snickerfang Hyena",[5988]="Scorpok Stinger",[5990]="Redstone Basilisk",[5991]="Redstone Crystalhide",[5992]="Ashmane Boar",[5993]="Helboar",[5994]="Zayus",[5996]="Nethergarde Miner",[5997]="Nethergarde Engineer",[5998]="Nethergarde Foreman",[5999]="Nethergarde Soldier",[6000]="Nethergarde Cleric",[6001]="Nethergarde Analyst",[6002]="Nethergarde Riftwatcher",[6003]="Nethergarde Officer",[6004]="Shadowsworn Ritualist",[6005]="Shadowsworn Thug",[6006]="Shadowsworn Adept",[6007]="Shadowsworn Enforcer",[6008]="Shadowsworn Warlock",[6009]="Shadowsworn Dreadweaver",[6010]="Felhound",[6011]="Felguard Sentry",[6012]="Flametongue Totem II",[6013]="Wayward Buzzard",[6014]="X'yera",[6015]="Torta",[6016]="Elemental Protection Totem",[6017]="Lava Spout Totem",[6018]="Ur'kyo",[6019]="Hornizz Brimbuzzle",[6020]="Slimeshell Makrura",[6021]="Boar Spirit",[6026]="Breyk",[6027]="Kitha",[6028]="Burkrum",[6030]="Thorvald Deepforge",[6031]="Tormus Deepforge",[6033]="Lake Frenzy",[6034]="Lotherias",[6035]="Razorfen Stalker",[6047]="Aqua Guardian",[6066]="Earthgrab Totem",[6068]="Warug's Bodyguard",[6069]="Maraudine Khan Guard",[6070]="Maraudine Khan Advisor",[6071]="Legion Hound",[6072]="Diathorus the Seeker",[6073]="Searing Infernal",[6074]="Striped Frostsaber",[6075]="Emerald Raptor",[6076]="Riding Tallstrider (Ivory)",[6086]="Auberdine Sentinel",[6087]="Astranaar Sentinel",[6089]="Harry Burlguard",[6090]="Bartleby",[6091]="Dellylah",[6093]="Dead-Tooth Jack",[6094]="Byancie",[6107]="Shade",[6109]="Azuregos",[6110]="Fire Nova Totem II",[6111]="Fire Nova Totem III",[6112]="Windfury Totem",[6113]="Vejrek",[6114]="Muren Stormpike",[6115]="Roaming Felguard",[6116]="Highborne Apparition",[6117]="Highborne Lichling",[6118]="Varo'then's Ghost",[6119]="Tog Rustsprocket",[6120]="Lago Blackwrench",[6121]="Remen Marcot",[6122]="Gakin the Darkbinder",[6123]="Dark Iron Spy",[6124]="Captain Beld",[6125]="Haldarr Satyr",[6126]="Haldarr Trickster",[6127]="Haldarr Felsworn",[6128]="Vorlus Vilehoof",[6129]="Draconic Magelord",[6130]="Blue Scalebane",[6131]="Draconic Mageweaver",[6132]="Razorfen Servitor",[6133]="Shade of Elura",[6134]="Lord Arkkoroc",[6135]="Arkkoran Clacker",[6136]="Arkkoran Muckdweller",[6137]="Arkkoran Pincer",[6138]="Arkkoran Oracle",[6139]="Highperch Soarer",[6140]="Hetaera",[6141]="Pridewing Soarer",[6142]="Mathiel",[6143]="Servant of Arkkoroc",[6144]="Son of Arkkoroc",[6145]="School of Fish",[6146]="Cliff Breaker",[6147]="Cliff Thunderer",[6148]="Cliff Walker",[6166]="Yorus Barleybrew",[6167]="Chimaera Matriarch",[6168]="Roogug",[6169]="Klockmort Spannerspan",[6170]="Gutspill",[6171]="Duthorian Rall",[6172]="Henze Faulk",[6173]="Gazin Tenorm",[6174]="Stephanie Turner",[6175]="John Turner",[6176]="Bath'rah the Windwatcher",[6177]="Narm Faulk",[6178]="Muiredon Battleforge",[6179]="Tiza Battleforge",[6180]="Defias Raider",[6181]="Jordan Stilwell",[6182]="Daphne Stilwell",[6184]="Timbermaw Pathfinder",[6185]="Timbermaw Warrior",[6186]="Timbermaw Totemic",[6187]="Timbermaw Den Watcher",[6188]="Timbermaw Shaman",[6189]="Timbermaw Ursa",[6190]="Spitelash Warrior",[6193]="Spitelash Screamer",[6194]="Spitelash Serpent Guard",[6195]="Spitelash Siren",[6196]="Spitelash Myrmidon",[6198]="Blood Elf Surveyor",[6199]="Blood Elf Reclaimer",[6200]="Legashi Satyr",[6201]="Legashi Rogue",[6202]="Legashi Hellcaller",[6206]="Caverndeep Burrower",[6207]="Caverndeep Ambusher",[6208]="Caverndeep Invader",[6209]="Caverndeep Looter",[6210]="Caverndeep Pillager",[6211]="Caverndeep Reaver",[6212]="Dark Iron Agent",[6213]="Irradiated Invader",[6215]="Chomper",[6218]="Irradiated Slime",[6219]="Corrosive Lurker",[6220]="Irradiated Horror",[6221]="Addled Leper",[6222]="Leprous Technician",[6223]="Leprous Defender",[6224]="Leprous Machinesmith",[6225]="Mechano-Tank",[6226]="Mechano-Flamewalker",[6227]="Mechano-Frostwalker",[6228]="Dark Iron Ambassador",[6229]="Crowd Pummeler 9-60",[6230]="Peacekeeper Security Suit",[6231]="Techbot",[6232]="Arcane Nullifier X-21",[6233]="Mechanized Sentry",[6234]="Mechanized Guardian",[6235]="Electrocutioner 6000",[6236]="Klannoc Macleod",[6237]="Stockade Archer",[6238]="Big Will",[6239]="Cyclonian",[6240]="Affray Challenger",[6241]="Bailor Stonehand",[6243]="Gelihast",[6244]="Takar the Seer",[6245]="Anathera",[6246]="Latherion",[6247]="Doan Karhan",[6248]="Twiggy Flathead",[6249]="Affray Spectator",[6250]="Crawler",[6251]="Strahad Farsan",[6252]="Acolyte Magaz",[6253]="Acolyte Fenrick",[6254]="Acolyte Wytula",[6266]="Menara Voidrender",[6267]="Acolyte Porena",[6268]="Summoned Felhunter",[6271]="Mouse",[6272]="Innkeeper Janene",[6286]="Zarrin",[6287]="Radnaal Maneweaver",[6288]="Jayla",[6289]="Rand Rhobart",[6290]="Yonn Deepcut",[6291]="Balthus Stoneflayer",[6292]="Eladriel",[6293]="Jorah Annison",[6294]="Krom Stoutarm",[6295]="Wilma Ranthal",[6297]="Kurdram Stonehammer",[6298]="Thelgrum Stonehammer",[6299]="Delfrum Flintbeard",[6300]="Elisa Steelhand",[6301]="Gorbold Steelhand",[6306]="Helene Peltskinner",[6328]="Dannie Fizzwizzle",[6329]="Irradiated Pillager",[6347]="Young Wavethrasher",[6348]="Wavethrasher",[6349]="Great Wavethrasher",[6350]="Makrinni Razorclaw",[6351]="Storm Bay Oracle",[6352]="Coralshell Lurker",[6366]="Kurzen Mindslave",[6367]="Donni Anthania",[6368]="Cat",[6369]="Coralshell Tortoise",[6370]="Makrinni Scrabbler",[6371]="Storm Bay Warrior",[6372]="Makrinni Snapclaw",[6373]="Dane Winslow",[6374]="Cylina Darkheart",[6375]="Thunderhead Hippogryph",[6376]="Wren Darkspring",[6377]="Thunderhead Stagwing",[6378]="Thunderhead Skystormer",[6379]="Thunderhead Patriarch",[6380]="Thunderhead Consort",[6382]="Jubahl Corpseseeker",[6386]="Ward of Zanzil",[6387]="Dranh",[6388]="Zanzil Skeleton",[6389]="Deathguard Podrig",[6390]="Ulag the Cleaver",[6391]="Holdout Warrior",[6392]="Holdout Medic",[6393]="Henen Ragetotem",[6394]="Ruga Ragetotem",[6395]="Sergeant Rutger",[6407]="Holdout Technician",[6408]="Ula'elek",[6410]="Orm Stonehoof",[6411]="Velora Nitely",[6412]="Skeleton",[6426]="Anguished Dead",[6427]="Haunting Phantasm",[6446]="Therzok",[6466]="Gamon",[6467]="Mennet Carkad",[6486]="Black Skeletal Horse",[6487]="Arcanist Doan",[6488]="Fallen Champion",[6489]="Ironspine",[6490]="Azshir the Sleepless",[6491]="Spirit Healer",[6492]="Rift Spawn",[6493]="Illusionary Phantasm",[6494]="Tazan",[6495]="Riznek",[6496]="Brivelthwerp",[6497]="Astor Hadren",[6498]="Devilsaur",[6499]="Ironhide Devilsaur",[6500]="Tyrant Devilsaur",[6501]="Stegodon",[6502]="Plated Stegodon",[6503]="Spiked Stegodon",[6504]="Thunderstomp Stegodon",[6505]="Ravasaur",[6506]="Ravasaur Runner",[6507]="Ravasaur Hunter",[6508]="Venomhide Ravasaur",[6509]="Bloodpetal Lasher",[6510]="Bloodpetal Flayer",[6511]="Bloodpetal Thresher",[6512]="Bloodpetal Trapper",[6513]="Un'Goro Stomper",[6514]="Un'Goro Gorilla",[6516]="Un'Goro Thunderer",[6517]="Tar Beast",[6518]="Tar Lurker",[6519]="Tar Lord",[6520]="Scorching Elemental",[6521]="Living Blaze",[6522]="Andron Gant",[6523]="Dark Iron Rifleman",[6527]="Tar Creeper",[6546]="Tabetha",[6547]="Suffering Victim",[6548]="Magus Tirth",[6549]="Demon of the Orb",[6550]="Mana Surge",[6551]="Gorishi Wasp",[6552]="Gorishi Worker",[6553]="Gorishi Reaver",[6554]="Gorishi Stinger",[6555]="Gorishi Tunneler",[6556]="Muculent Ooze",[6557]="Primal Ooze",[6559]="Glutinous Ooze",[6560]="Stone Guardian",[6566]="Estelle Gendry",[6567]="Ghok'kah",[6568]="Vizzklick",[6569]="Gnoarn",[6570]="Fenwick Thatros",[6573]="Travel Form (Druid)",[6574]="Jun'ha",[6575]="Scarlet Trainee",[6576]="Brienna Starglow",[6577]="Bingles Blastenheimer",[6579]="Shoni the Shilent",[6581]="Ravasaur Matriarch",[6582]="Clutchmother Zavas",[6583]="Gruff",[6584]="King Mosh",[6585]="Uhk'loc",[6586]="Rokar Bladeshadow",[6606]="Overseer Glibby",[6607]="Harroc",[6646]="Monnos the Elder",[6647]="Magister Hawkhelm",[6648]="Antilos",[6649]="Lady Sesspira",[6650]="General Fangferror",[6651]="Gatekeeper Rageroar",[6652]="Master Feardred",[6653]="Huge Toad",[6667]="Gelkak Gyromast",[6668]="Lord Cyrik Blackforge",[6669]="The Threshwackonator 4100",[6670]="Westfall Woodworker",[6706]="Baritanas Skyriver",[6707]="Fahrad",[6726]="Thalon",[6727]="Innkeeper Brianna",[6728]="Narnie",[6729]="Morridune",[6730]="Jinky Twizzlefixxit",[6731]="Harlown Darkweave",[6732]="Amie Pierce",[6733]="Stonevault Basher",[6734]="Innkeeper Hearthstove",[6735]="Innkeeper Saelienne",[6736]="Innkeeper Keldamyr",[6737]="Innkeeper Shaussiy",[6738]="Innkeeper Kimlya",[6739]="Innkeeper Bates",[6740]="Innkeeper Allison",[6741]="Innkeeper Norman",[6746]="Innkeeper Pala",[6747]="Innkeeper Kauth",[6748]="Water Spirit",[6749]="Erma",[6766]="Ravenholdt Guard",[6768]="Lord Jorach Ravenholdt",[6771]="Ravenholdt Assassin",[6774]="Falkhaan Isenstrider",[6775]="Antur Fallow",[6776]="Magrin Rivermane",[6777]="Zan Shivsproket",[6778]="Melika Isenstrider",[6779]="Smudge Thunderwood",[6780]="Porthannius",[6781]="Melarith",[6782]="Hands Springsprocket",[6784]="Calvin Montague",[6785]="Ratslin Maime",[6786]="Ukor",[6787]="Yelnagi Blackarm",[6788]="Den Mother",[6789]="Thistle Cub",[6790]="Innkeeper Trelayne",[6791]="Innkeeper Wiley",[6806]="Tannok Frosthammer",[6807]="Innkeeper Skindle",[6826]="Talvash del Kissel",[6827]="Shore Crab",[6846]="Dockmaster",[6866]="Bodyguard",[6867]="Tracking Hound",[6868]="Jarkal Mossmeld",[6886]="Onin MacHammar",[6887]="Yalda",[6906]="Baelog",[6908]="Olaf",[6909]="Sethir the Ancient",[6910]="Revelosh",[6911]="Minion of Sethir",[6912]="Remains of a Paladin",[6913]="Lost One Rift Traveler",[6927]="Dockworker",[6928]="Innkeeper Grosk",[6929]="Innkeeper Gryshka",[6930]="Innkeeper Karakul",[6932]="Swamp Spirit",[6966]="Lucius",[6986]="Dran Droffers",[6987]="Malton Droffers",[7007]="Tiev Mordune",[7009]="Arantir",[7010]="Zilzibin Drumlore",[7011]="Earthen Rocksmasher",[7012]="Earthen Sculptor",[7013]="Blackrock Guard",[7015]="Flagglemurk the Cruel",[7016]="Lady Vespira",[7017]="Lord Sinslayer",[7022]="Venomlash Scorpid",[7023]="Obsidian Sentinel",[7024]="Agent Kearnen",[7025]="Blackrock Soldier",[7026]="Blackrock Sorcerer",[7027]="Blackrock Slayer",[7028]="Blackrock Warlock",[7029]="Blackrock Battlemaster",[7030]="Shadowforge Geologist",[7031]="Obsidian Elemental",[7032]="Greater Obsidian Elemental",[7033]="Firegut Ogre",[7034]="Firegut Ogre Mage",[7035]="Firegut Brute",[7036]="Thaurissan Spy",[7037]="Thaurissan Firewalker",[7038]="Thaurissan Agent",[7039]="War Reaver",[7040]="Black Dragonspawn",[7041]="Black Wyrmkin",[7042]="Flamescale Dragonspawn",[7043]="Flamescale Wyrmkin",[7044]="Black Drake",[7045]="Scalding Drake",[7046]="Searscale Drake",[7047]="Black Broodling",[7048]="Scalding Broodling",[7049]="Flamescale Broodling",[7050]="Defias Drone",[7051]="Malformed Defias Drone",[7052]="Defias Tower Patroller",[7053]="Klaven Mortwake",[7055]="Blackrock Worg",[7056]="Defias Tower Sentry",[7057]="Digmaster Shovelphlange",[7067]="Venture Co. Drone",[7068]="Condemned Acolyte",[7069]="Condemned Monk",[7070]="Condemned Cleric",[7071]="Cursed Paladin",[7072]="Cursed Justicar",[7075]="Writhing Mage",[7076]="Earthen Guardian",[7077]="Earthen Hallshaper",[7078]="Cleft Scorpid",[7079]="Viscous Fallout",[7086]="Cursed Ooze",[7087]="Killian Hagey",[7088]="Thuwd",[7089]="Mooranta",[7091]="Shadowforge Ambusher",[7092]="Tainted Ooze",[7093]="Vile Ooze",[7097]="Ironbeak Owl",[7098]="Ironbeak Screecher",[7099]="Ironbeak Hunter",[7100]="Warpwood Moss Flayer",[7101]="Warpwood Shredder",[7104]="Dessecus",[7105]="Jadefire Satyr",[7106]="Jadefire Rogue",[7107]="Jadefire Trickster",[7108]="Jadefire Betrayer",[7109]="Jadefire Felsworn",[7110]="Jadefire Shadowstalker",[7111]="Jadefire Hellcaller",[7112]="Jaedenar Cultist",[7113]="Jaedenar Guardian",[7114]="Jaedenar Enforcer",[7115]="Jaedenar Adept",[7118]="Jaedenar Darkweaver",[7120]="Jaedenar Warlock",[7125]="Jaedenar Hound",[7126]="Jaedenar Hunter",[7132]="Toxic Horror",[7135]="Infernal Bodyguard",[7136]="Infernal Sentry",[7137]="Immolatus",[7138]="Irontree Wanderer",[7139]="Irontree Stomper",[7149]="Withered Protector",[7153]="Deadwood Warrior",[7154]="Deadwood Gardener",[7155]="Deadwood Pathfinder",[7156]="Deadwood Den Watcher",[7157]="Deadwood Avenger",[7158]="Deadwood Shaman",[7161]="Wrenix the Wretched",[7166]="Wrenix's Gizmotronic Apparatus",[7167]="Polly",[7168]="Polly",[7170]="Thragomm",[7172]="Lore Keeper of Norgannon",[7175]="Stonevault Ambusher",[7206]="Ancient Stone Keeper",[7207]="Doc Mixilpixil",[7208]="Noarm",[7209]="Obsidian Shard",[7226]="Sand Storm",[7228]="Ironaya",[7230]="Shayis Steelfury",[7231]="Kelgruk Bloodaxe",[7232]="Borgus Steelhand",[7233]="Taskmaster Fizzule",[7234]="Ferocitas the Dream Eater",[7235]="Gnarlpine Mystic",[7246]="Sandfury Shadowhunter",[7247]="Sandfury Soul Eater",[7266]="Ember",[7267]="Chief Ukorz Sandscalp",[7268]="Sandfury Guardian",[7269]="Scarab",[7270]="Sandfury Zombie",[7271]="Witch Doctor Zum'rah",[7272]="Theka the Martyr",[7273]="Gahz'rilla",[7274]="Sandfury Executioner",[7275]="Shadowpriest Sezz'ziz",[7276]="Zul'Farrak Dead Hero",[7286]="Zul'Farrak Zombie",[7287]="Foreman Silixiz",[7288]="Grand Foreman Puzik Gallywix",[7290]="Shadowforge Sharpshooter",[7291]="Galgann Firehammer",[7292]="Dinita Stonemantle",[7293]="[UNUSED] Drayl",[7294]="Shim'la",[7295]="Shailiea",[7296]="Corand",[7297]="Gothard Winslow",[7298]="Demnul Farmountain",[7307]="Venture Co. Lookout",[7308]="Venture Co. Patroller",[7309]="Earthen Custodian",[7310]="Mutated Venture Co. Drone",[7311]="Uthel'nay",[7312]="Dink",[7313]="Priestess A'moora",[7315]="Darnath Bladesinger",[7316]="Sister Aquinne",[7317]="Oben Rageclaw",[7318]="Rageclaw",[7319]="Lady Sathrah",[7320]="Stonevault Mauler",[7321]="Stonevault Flameweaver",[7322]="Riding Tiger (Black)",[7323]="Winstone Wolfe",[7324]="Simone Cantrell",[7325]="Master Kang",[7327]="Withered Warrior",[7328]="Withered Reaver",[7329]="Withered Quilguard",[7332]="Withered Spearhide",[7333]="Withered Battle Boar",[7334]="Battle Boar Horror",[7335]="Death's Head Geomancer",[7337]="Death's Head Necromancer",[7340]="Skeletal Shadowcaster",[7341]="Skeletal Frostweaver",[7342]="Skeletal Summoner",[7343]="Splinterbone Skeleton",[7344]="Splinterbone Warrior",[7345]="Splinterbone Captain",[7346]="Splinterbone Centurion",[7347]="Boneflayer Ghoul",[7348]="Thorn Eater Ghoul",[7349]="Tomb Fiend",[7351]="Tomb Reaver",[7352]="Frozen Soul",[7353]="Freezing Spirit",[7354]="Ragglesnout",[7355]="Tuten'kash",[7356]="Plaguemaw the Rotting",[7357]="Mordresh Fire Eye",[7358]="Amnennar the Coldbringer",[7360]="Dun Garok Soldier",[7361]="Grubbis",[7363]="Kum'isha the Collector",[7364]="Flawless Draenethyst Sphere",[7365]="Flawless Draenethyst Fragment",[7366]="Stoneskin Totem IV",[7367]="Stoneskin Totem V",[7368]="Stoneskin Totem VI",[7369]="Deadwind Brute",[7370]="Restless Shade",[7371]="Deadwind Mauler",[7372]="Deadwind Warlock",[7376]="Sky Shadow",[7379]="Deadwind Ogre Mage",[7380]="Siamese Cat",[7381]="Silver Tabby Cat",[7382]="Orange Tabby Cat",[7383]="Black Tabby Cat",[7384]="Cornish Rex Cat",[7385]="Bombay Cat",[7386]="White Kitten",[7387]="Green Wing Macaw",[7388]="Cockatoo",[7389]="Senegal",[7390]="Cockatiel",[7391]="Hyacinth Macaw",[7392]="Prairie Chicken",[7393]="White Plymouth Rock",[7394]="Ancona Chicken",[7395]="Cockroach",[7396]="Earthen Stonebreaker",[7397]="Earthen Stonecarver",[7398]="Stoneclaw Totem V",[7399]="Stoneclaw Totem VI",[7400]="Searing Totem V",[7401]="Draenei Refugee",[7402]="Searing Totem VI",[7403]="Strength of Earth Totem IV",[7404]="[UNUSED]Galak Flame Guard",[7405]="Deadly Cleft Scorpid",[7406]="Oglethorpe Obnoticus",[7407]="Chief Engineer Bilgewhizzle",[7408]="Spigot Operator Luglunket",[7409]="Faltering Draenethyst Sphere",[7410]="Thelman Slatefist",[7411]="Spirit of Sathrah",[7412]="Frost Resistance Totem II",[7413]="Frost Resistance Totem III",[7414]="Mana Spring Totem II",[7415]="Mana Spring Totem III",[7416]="Mana Spring Totem IV",[7423]="Flametongue Totem III",[7424]="Fire Resistance Totem II",[7425]="Fire Resistance Totem III",[7427]="Taim Ragetotem",[7428]="Frostmaul Giant",[7429]="Frostmaul Preserver",[7430]="Young Frostsaber",[7431]="Frostsaber",[7432]="Frostsaber Stalker",[7433]="Frostsaber Huntress",[7434]="Frostsaber Pride Watcher",[7435]="Cobalt Wyrmkin",[7436]="Cobalt Scalebane",[7437]="Cobalt Mageweaver",[7438]="Winterfall Ursa",[7439]="Winterfall Shaman",[7440]="Winterfall Den Watcher",[7441]="Winterfall Totemic",[7442]="Winterfall Pathfinder",[7443]="Shardtooth Mauler",[7444]="Shardtooth Bear",[7445]="Elder Shardtooth",[7446]="Rabid Shardtooth",[7447]="Fledgling Chillwind",[7448]="Chillwind Chimaera",[7449]="Chillwind Ravager",[7450]="Ragged Owlbeast",[7451]="Raging Owlbeast",[7452]="Crazed Owlbeast",[7453]="Moontouched Owlbeast",[7454]="Berserk Owlbeast",[7455]="Winterspring Owl",[7456]="Winterspring Screecher",[7457]="Rogue Ice Thistle",[7458]="Ice Thistle Yeti",[7459]="Ice Thistle Matriarch",[7460]="Ice Thistle Patriarch",[7461]="Hederine Initiate",[7462]="Hederine Manastalker",[7463]="Hederine Slayer",[7464]="Magma Totem II",[7465]="Magma Totem III",[7466]="Magma Totem IV",[7467]="Nature Resistance Totem",[7468]="Nature Resistance Totem II",[7469]="Nature Resistance Totem III",[7483]="Windfury Totem II",[7484]="Windfury Totem III",[7485]="Nargatt",[7486]="Grace of Air Totem",[7487]="Grace of Air Totem II",[7489]="Silverpine Deathguard",[7505]="Bloodmage Drazial",[7506]="Bloodmage Lynnore",[7507]="Brown Snake",[7508]="Black Kingsnake",[7523]="Suffering Highborne",[7524]="Anguished Highborne",[7527]="Goblin Land Mine",[7543]="Dark Whelpling",[7544]="Crimson Whelpling",[7545]="Emerald Whelpling",[7546]="Bronze Whelpling",[7547]="Azure Whelpling",[7548]="Faeling",[7549]="Tree Frog",[7550]="Wood Frog",[7551]="Dart Frog",[7552]="Island Frog",[7553]="Great Horned Owl",[7554]="Snowy Owl",[7555]="Hawk Owl",[7556]="Eagle Owl",[7558]="Cottontail Rabbit",[7559]="Spotted Rabbit",[7560]="Snowshoe Rabbit",[7561]="Albino Snake",[7563]="Blue Racer",[7564]="Marin Noggenfogger",[7566]="Scarlet Snake",[7567]="Crimson Snake",[7568]="Ribbon Snake",[7569]="Green Water Snake",[7570]="Elven Wisp",[7572]="Fallen Hero of the Horde",[7583]="Sprinkle",[7584]="Wandering Forest Walker",[7603]="Leprous Assistant",[7604]="Sergeant Bly",[7605]="Raven",[7606]="Oro Eyegouge",[7607]="Weegli Blastfuse",[7608]="Murta Grimgut",[7623]="Dispatch Commander Ruag",[7643]="Bengor",[7664]="Razelikh the Defiler",[7665]="Grol the Destroyer",[7666]="Archmage Allistarj",[7667]="Lady Sevine",[7668]="Servant of Razelikh",[7669]="Servant of Grol",[7670]="Servant of Allistarj",[7671]="Servant of Sevine",[7683]="Alessandro Luca",[7684]="Riding Tiger (Yellow)",[7686]="Riding Tiger (Red)",[7687]="Spotted Frostsaber",[7690]="Striped Nightsaber",[7704]="Riding Raptor (Crimson)",[7706]="Riding Raptor (Ivory)",[7707]="Turquoise Raptor",[7708]="Violet Raptor",[7709]="Riding Tallstrider (Brown)",[7710]="Riding Tallstrider (Gray)",[7711]="Riding Tallstrider (Pink)",[7712]="Riding Tallstrider (Purple)",[7713]="Riding Tallstrider (Turquoise)",[7714]="Byula",[7724]="Senior Surveyor Fizzledowser",[7725]="Grimtotem Raider",[7726]="Grimtotem Naturalist",[7727]="Grimtotem Shaman",[7728]="Kirith the Damned",[7729]="Spirit of Kirith",[7730]="Stonetalon Grunt",[7731]="Innkeeper Jayka",[7732]="Dupe Bug",[7733]="Innkeeper Fizzgrimble",[7734]="Ilifar",[7735]="Felcular",[7736]="Innkeeper Shyria",[7737]="Innkeeper Greul",[7738]="Burning Servant",[7739]="Red Mechanostrider",[7740]="Gracina Spiritmight",[7744]="Innkeeper Thulfram",[7749]="Blue Mechanostrider",[7750]="Corporal Thund Splithoof",[7763]="Curgle Cranklehop",[7764]="Troyas Moonbreeze",[7765]="Rockbiter",[7766]="Tyrion",[7767]="Witherbark Felhunter",[7768]="Witherbark Bloodling",[7769]="Hazzali Parasite",[7770]="Winkey",[7771]="Marvon Rivetseeker",[7772]="Kalin Windflight",[7773]="Marli Wishrunner",[7774]="Shay Leafrunner",[7775]="Gregan Brewspewer",[7776]="Talo Thornhoof",[7777]="Rok Orhan",[7778]="Doran Steelwing",[7779]="Priestess Tyriona",[7780]="Rin'ji",[7783]="Loramus Thalipedes",[7784]="Homing Robot OOX-17/TN",[7785]="Ward of Zum'rah",[7786]="Skeleton of Zum'rah",[7787]="Sandfury Slave",[7788]="Sandfury Drudge",[7789]="Sandfury Cretin",[7790]="Orokk Omosh",[7792]="Aturk the Anvil",[7793]="Ox",[7794]="McGavan",[7795]="Hydromancer Velratha",[7796]="Nekrum Gutchewer",[7797]="Ruuzlu",[7798]="Hank the Hammer",[7799]="Gimblethorn",[7800]="Mekgineer Thermaplugg",[7801]="Gilveradin Sunchaser",[7802]="Galvan the Ancient",[7803]="Scorpid Duneburrower",[7804]="Trenton Lighthammer",[7805]="Wastewander Scofflaw",[7806]="Homing Robot OOX-09/HL",[7807]="Homing Robot OOX-22/FE",[7808]="Marauding Owlbeast",[7809]="Vilebranch Ambusher",[7823]="Bera Stonehammer",[7824]="Bulkrek Ragefist",[7825]="Oran Snakewrithe",[7826]="Ambassador Ardalan",[7843]="Gnomeregan Evacuee",[7844]="Fire Nova Totem IV",[7845]="Fire Nova Totem V",[7846]="Teremus the Devourer",[7847]="Caliph Scorpidsting",[7848]="Lurking Feral Scar",[7849]="Mobile Alert System",[7850]="Kernobee",[7851]="Nethergarde Elite",[7852]="Pratt McGrubben",[7853]="Scooty",[7854]="Jangdor Swiftstrider",[7855]="Southsea Pirate",[7856]="Southsea Freebooter",[7857]="Southsea Dock Worker",[7858]="Southsea Swashbuckler",[7863]="Dream Vision",[7864]="Lingering Highborne",[7865]="Wildhammer Sentry",[7866]="Peter Galen",[7867]="Thorkaf Dragoneye",[7868]="Sarah Tanner",[7869]="Brumn Winterhoof",[7870]="Caryssia Moonhunter",[7871]="Se'Jib",[7872]="Death's Head Cultist",[7873]="Razorfen Battleguard",[7874]="Razorfen Thornweaver",[7875]="Hadoken Swiftstrider",[7876]="Tran'rek",[7877]="Latronicus Moonspear",[7878]="Vestia Moonspear",[7879]="Quintis Jonespyre",[7880]="Ginro Hearthkindle",[7881]="Stoley",[7882]="Security Chief Bilgewhizzle",[7883]="Andre Firebeard",[7884]="Fraggar Thundermantle",[7885]="Spitelash Battlemaster",[7886]="Spitelash Enchantress",[7895]="Ambassador Bloodrage",[7897]="Alarm-a-bomb 2600",[7898]="Pirate treasure trigger mob",[7899]="Treasure Hunting Pirate",[7900]="Angelas Moonbreeze",[7901]="Treasure Hunting Swashbuckler",[7902]="Treasure Hunting Buccaneer",[7903]="Jewel",[7904]="Jacob",[7907]="Daryn Lightwind",[7915]="Walking Bomb",[7916]="Erelas Ambersky",[7917]="Brother Sarno",[7918]="Stone Watcher of Norgannon",[7936]="Lyon Mountainheart",[7937]="High Tinker Mekkatorque",[7939]="Feathermoon Sentinel",[7940]="Darnall",[7941]="Mardrack Greenwell",[7942]="Faralorn",[7943]="Harklane",[7944]="Tinkmaster Overspark",[7945]="Savanne",[7946]="Brannock",[7947]="Vivianna",[7948]="Kylanna Windwhisper",[7949]="Xylinnia Starshine",[7950]="Master Mechanic Castpipe",[7951]="Zas'Tysh",[7952]="Zjolnir",[7953]="Xar'Ti",[7954]="Binjy Featherwhistle",[7955]="Milli Featherwhistle",[7956]="Kindal Moonweaver",[7957]="Jer'kai Moonweaver",[7975]="Camp Narache Brave",[7976]="Thalgus Thunderfist",[7977]="Gammerita",[7978]="Bimble Longberry",[7980]="Deathguard Elite",[7995]="Vile Priestess Hexx",[7996]="Qiaga the Keeper",[7997]="Captured Sprite Darter",[7998]="Blastmaster Emi Shortfuse",[7999]="Tyrande Whisperwind",[8015]="Ashenvale Sentinel",[8016]="Barrens Guard",[8017]="Sen'jin Guardian",[8018]="Guthrum Thunderfist",[8019]="Fyldren Moonfeather",[8020]="Shyn",[8021]="Orwin Gizzmick",[8022]="Thadius Grimshade",[8023]="Sharpbeak",[8024]="Sharpbeak's Father",[8025]="Sharpbeak's Mother",[8026]="Thyn'tel Bladeweaver",[8035]="Dark Iron Land Mine",[8055]="Thelsamar Mountaineer",[8075]="Edana Hatetalon",[8095]="Sul'lithuz Sandcrawler",[8096]="Westfall Brigade Guard",[8115]="Witch Doctor Uzer'i",[8116]="Ziggle Sparks",[8117]="Wizbang Booms",[8118]="Lillian Singh",[8119]="Zikkel",[8120]="Sul'lithuz Abomination",[8121]="Jaxxil Sparks",[8122]="Kizzak Sparks",[8123]="Rickle Goldgrubber",[8124]="Qizzik",[8125]="Dirge Quikcleave",[8126]="Nixx Sprocketspring",[8127]="Antu'sul",[8128]="Pikkle",[8129]="Wrinkle Goodsteel",[8130]="Sul'lithuz Hatchling",[8131]="Blizrik Buckshot",[8136]="Lord Shalzaru",[8137]="Gikkix",[8138]="Sul'lithuz Broodling",[8139]="Jabbey",[8140]="Brother Karman",[8141]="Captain Evencane",[8142]="Jannos Lighthoof",[8143]="Loorana",[8144]="Kulleg Stonehorn",[8145]="Sheendra Tallgrass",[8146]="Ruw",[8147]="Camp Mojache Brave",[8149]="Sul'lithuz Warder",[8150]="Janet Hommers",[8151]="Nijel's Point Guard",[8152]="Harnor",[8153]="Narv Hidecrafter",[8154]="Ghost Walker Brave",[8155]="Kargath Grunt",[8156]="Servant of Antu'sul",[8157]="Logannas",[8158]="Bronk",[8159]="Worb Strongstitch",[8160]="Nioma",[8161]="Harggan",[8176]="Gharash",[8177]="Rartar",[8178]="Nina Lightbrew",[8179]="Greater Healing Ward",[8196]="Occulus",[8197]="Chronalis",[8198]="Tick",[8199]="Warleader Krazzilak",[8200]="Jin'Zallah the Sandbringer",[8201]="Omgorn the Lost",[8202]="Cyclok the Mad",[8203]="Kregg Keelhaul",[8204]="Soriid the Devourer",[8205]="Haarka the Ravenous",[8207]="Emberwing",[8208]="Murderous Blisterpaw",[8210]="Razortalon",[8211]="Old Cliff Jumper",[8212]="The Reak",[8213]="Ironback",[8214]="Jalinde Summerdrake",[8215]="Grimungous",[8216]="Retherokk the Berserker",[8217]="Mith'rethis the Enchanter",[8218]="Witherheart the Stalker",[8219]="Zul'arek Hatefowler",[8236]="Muck Frenzy",[8256]="Curator Thorius",[8257]="Oozeling",[8276]="Soaring Razorbeak",[8277]="Rekk'tilac",[8278]="Smoldar",[8279]="Faulty War Golem",[8280]="Shleipnarr",[8281]="Scald",[8282]="Highlord Mastrogonde",[8283]="Slave Master Blackheart",[8284]="Dorius Stonetender",[8296]="Mojo the Twisted",[8297]="Magronos the Unyielding",[8298]="Akubar the Seer",[8299]="Spiteflayer",[8300]="Ravage",[8301]="Clack the Reaver",[8302]="Deatheye",[8303]="Grunter",[8304]="Dreadscorn",[8305]="Kixxle",[8306]="Duhng",[8307]="Tarban Hearthgrain",[8308]="Alenndaar Lapidaar",[8309]="Carlo Aurelius",[8310]="Watcher Wollpert",[8311]="Slime Maggot",[8317]="Atal'ai Deathwalker's Spirit",[8318]="Atal'ai Slave",[8319]="Nightmare Whelp",[8320]="Sprok",[8324]="Atal'ai Skeleton",[8336]="Hakkari Sapper",[8337]="Dark Iron Steelshifter",[8338]="Dark Iron Marksman",[8356]="Chesmu",[8357]="Atepa",[8358]="Hewa",[8359]="Ahanu",[8360]="Elki",[8361]="Chepi",[8362]="Kuruk",[8363]="Shadi Mistrunner",[8364]="Pakwa",[8376]="Mechanical Chicken",[8378]="Alexandra Blazen",[8379]="Archmage Xylem",[8380]="Captain Vanessa Beltis",[8381]="Lindros",[8382]="Patrick Mills",[8383]="Master Wood",[8384]="Deep Lurker",[8385]="Mura Runetotem",[8386]="Horizon Scout Crewman",[8387]="Horizon Scout First Mate",[8388]="Horizon Scout Cook",[8389]="Horizon Scout Engineer",[8390]="Chemist Cuely",[8391]="Lathoric the Black",[8392]="Pilot Xiggs Fuselighter",[8393]="Thersa Windsong",[8394]="Roland Geardabbler",[8395]="Sanath Lim-yo",[8396]="Sentinel Dalia Sunblade",[8397]="Sentinel Keldara Sunblade",[8398]="Ohanko",[8399]="Nyrill",[8400]="Obsidion",[8401]="Halpa",[8402]="Enslaved Archaeologist",[8403]="Jeremiah Payson",[8404]="Xan'tish",[8405]="Ogtinc",[8408]="Warlord Krellian",[8409]="Caravan Master Tset",[8416]="Felix Whindlebolt",[8417]="Dying Archaeologist",[8418]="Falla Sagewind",[8419]="Twilight Idolater",[8420]="Kim'jael",[8421]="Dorius",[8436]="Zamael Lunthistle",[8437]="Hakkari Minion",[8438]="Hakkari Bloodkeeper",[8439]="Nilith Lokrav",[8440]="Shade of Hakkar",[8441]="Raze",[8442]="Shadowsilk Poacher",[8443]="Avatar of Hakkar",[8444]="Trade Master Kovic",[8446]="Xiggs Fuselighter's Flyingmachine",[8447]="Clunk",[8477]="Skeletal Servant",[8478]="Second Mate Shandril",[8479]="Kalaran Windblade",[8480]="Kalaran the Deceiver",[8496]="Liv Rizzlefix",[8497]="Nightmare Suppressor",[8503]="Gibblewilt",[8504]="Dark Iron Sentry",[8506]="Eranikus the Chained",[8507]="Tymor",[8508]="Gretta Ganter",[8509]="Squire Maltrake",[8510]="Atal'ai Totem",[8516]="Belnistrasz",[8517]="Xiggs Fuselighter",[8518]="Rynthariel the Keymaster",[8519]="Blighted Surge",[8520]="Plague Ravager",[8521]="Blighted Horror",[8522]="Plague Monstrosity",[8523]="Scourge Soldier",[8524]="Cursed Mage",[8525]="Scourge Warder",[8526]="Dark Caster",[8527]="Scourge Guard",[8528]="Dread Weaver",[8529]="Scourge Champion",[8530]="Cannibal Ghoul",[8531]="Gibbering Ghoul",[8532]="Diseased Flayer",[8534]="Putrid Gargoyle",[8535]="Putrid Shrieker",[8537]="Interloper",[8538]="Unseen Servant",[8539]="Eyeless Watcher",[8540]="Torn Screamer",[8541]="Hate Shrieker",[8542]="Death Singer",[8543]="Stitched Horror",[8544]="Gangled Golem",[8545]="Stitched Golem",[8546]="Dark Adept",[8547]="Death Cultist",[8548]="Vile Tutor",[8550]="Shadowmage",[8551]="Dark Summoner",[8553]="Necromancer",[8554]="Chief Sharptusk Thornmantle",[8555]="Crypt Stalker",[8556]="Crypt Walker",[8557]="Crypt Horror",[8558]="Crypt Slayer",[8560]="Mossflayer Scout",[8561]="Mossflayer Shadowhunter",[8562]="Mossflayer Cannibal",[8563]="Wretched Woodsman",[8564]="Wretched Ranger",[8565]="Wretched Pathstrider",[8566]="Dark Iron Lookout",[8567]="Glutton",[8576]="Ag'tor Bloodfist",[8578]="Magus Rimtori",[8579]="Yeh'kinya",[8580]="Atal'alarion",[8581]="Blood Elf Defender",[8582]="Kadrak",[8583]="Dirania Silvershine",[8584]="Iverron",[8585]="Frost Spectre",[8586]="Haggrum Bloodfist",[8587]="Jediga",[8588]="Umbranse the Spiritspeaker",[8596]="Plaguehound Runt",[8597]="Plaguehound",[8598]="Frenzied Plaguehound",[8600]="Plaguebat",[8601]="Noxious Plaguebat",[8602]="Monstrous Plaguebat",[8603]="Carrion Grub",[8605]="Carrion Devourer",[8606]="Living Decay",[8607]="Rotting Sludge",[8608]="Angered Infernal",[8609]="Alexandra Constantine",[8610]="Kroum",[8611]="Idol Room Spawner",[8612]="Screecher Spirit",[8615]="Mithril Dragonling",[8616]="Infernal Servant",[8617]="Zalashji",[8636]="Morta'gya the Keeper",[8637]="Dark Iron Watchman",[8656]="Hukku's Voidwalker",[8657]="Hukku's Succubus",[8658]="Hukku's Imp",[8659]="Jes'rimon",[8660]="The Evalcharr",[8661]="Auctioneer Beardo",[8662]="Idol Oven Fire Target",[8664]="Sunwalker Saern",[8665]="Shylenai",[8666]="Lil Timmy",[8667]="Gusting Vortex",[8668]="Felhound Tracker",[8669]="Auctioneer Tolon",[8670]="Auctioneer Chilton",[8671]="Auctioneer Buckler",[8672]="Auctioneer Leeka",[8673]="Auctioneer Thathung",[8674]="Auctioneer Stampi",[8675]="Felbeast",[8677]="World Goblin Engineering Trainer",[8678]="Jubie Gadgetspring",[8679]="Knaz Blunderflame",[8681]="Outfitter Eric",[8696]="Henry Stern",[8716]="Dreadlord",[8717]="Felguard Elite",[8718]="Manahound",[8719]="Auctioneer Fitch",[8720]="Auctioneer Redmuse",[8721]="Auctioneer Epitwee",[8722]="Auctioneer Gullem",[8723]="Auctioneer Golothas",[8724]="Auctioneer Wabang",[8736]="Buzzek Bracketswing",[8737]="Linken",[8738]="Vazario Linkgrease",[8756]="Raytaf",[8757]="Shahiar",[8758]="Zaman",[8759]="Mosshoof Runner",[8760]="Mosshoof Stag",[8761]="Mosshoof Courser",[8762]="Timberweb Recluse",[8763]="Mistwing Rogue",[8764]="Mistwing Ravager",[8766]="Forest Ooze",[8767]="Sah'rhee",[8776]="Emerald Dragon Whelp",[8816]="Deathly Usher",[8836]="Battle Chicken",[8837]="Muck Splash",[8856]="Tyrion's Spybot",[8876]="Sandfury Acolyte",[8877]="Sandfury Zealot",[8878]="Muuran",[8879]="Royal Historian Archesonus",[8881]="Riding Ram",[8882]="Riding Tiger",[8883]="Riding Horse",[8884]="Skeletal Mount",[8885]="Riding Raptor",[8886]="Deviate Python",[8887]="A tormented voice",[8888]="Franclorn Forgewright",[8889]="Anvilrage Overseer",[8890]="Anvilrage Warden",[8891]="Anvilrage Guardsman",[8892]="Anvilrage Footman",[8893]="Anvilrage Soldier",[8894]="Anvilrage Medic",[8895]="Anvilrage Officer",[8896]="Shadowforge Peasant",[8897]="Doomforge Craftsman",[8898]="Anvilrage Marshal",[8899]="Doomforge Dragoon",[8900]="Doomforge Arcanasmith",[8901]="Anvilrage Reservist",[8902]="Shadowforge Citizen",[8903]="Anvilrage Captain",[8904]="Shadowforge Senator",[8905]="Warbringer Construct",[8906]="Ragereaver Golem",[8907]="Wrath Hammer Construct",[8908]="Molten War Golem",[8909]="Fireguard",[8910]="Blazing Fireguard",[8911]="Fireguard Destroyer",[8912]="Twilight's Hammer Torturer",[8913]="Twilight Emissary",[8914]="Twilight Bodyguard",[8915]="Twilight's Hammer Ambassador",[8916]="Arena Spectator",[8917]="Quarry Slave",[8920]="Weapon Technician",[8921]="Bloodhound",[8922]="Bloodhound Mastiff",[8923]="Panzor the Invincible",[8924]="The Behemoth",[8925]="Dredge Worm",[8926]="Deep Stinger",[8927]="Dark Screecher",[8928]="Burrowing Thundersnout",[8929]="Princess Moira Bronzebeard",[8931]="Innkeeper Heather",[8932]="Borer Beetle",[8933]="Cave Creeper",[8934]="Christopher Hewen",[8937]="Pet Bomb",[8956]="Angerclaw Bear",[8957]="Angerclaw Grizzly",[8958]="Angerclaw Mauler",[8959]="Felpaw Wolf",[8960]="Felpaw Scavenger",[8961]="Felpaw Ravager",[8962]="Nida",[8963]="Effsee",[8964]="Blackrock Drake",[8965]="Shawn",[8976]="Hematos",[8977]="Krom'Grul",[8978]="Thauris Balgarr",[8979]="Gruklash",[8980]="Firegut Captain",[8981]="Malfunctioning Reaver",[8982]="Ironhand Guardian",[8983]="Golem Lord Argelmach",[8996]="Voidwalker Minion",[8997]="Gershala Nightwhisper",[9016]="Bael'Gar",[9017]="Lord Incendius",[9018]="High Interrogator Gerstahn",[9019]="Emperor Dagran Thaurissan",[9020]="Commander Gor'shak",[9021]="Kharan Mighthammer",[9022]="Dughal Stormwing",[9023]="Marshal Windsor",[9024]="Pyromancer Loregrain",[9025]="Lord Roccor",[9026]="Overmaster Pyron",[9027]="Gorosh the Dervish",[9028]="Grizzle",[9029]="Eviscerator",[9030]="Ok'thor the Breaker",[9031]="Anub'shiah",[9032]="Hedrum the Creeper",[9033]="General Angerforge",[9034]="Hate'rel",[9035]="Anger'rel",[9036]="Vile'rel",[9037]="Gloom'rel",[9038]="Seeth'rel",[9039]="Doom'rel",[9040]="Dope'rel",[9041]="Warder Stilgiss",[9042]="Verek",[9043]="Scarshield Grunt",[9044]="Scarshield Sentry",[9045]="Scarshield Acolyte",[9046]="Scarshield Quartermaster",[9047]="Jenal",[9056]="Fineous Darkvire",[9076]="Ghede",[9077]="Warlord Goretooth",[9078]="Shadowmage Vivian Lagrave",[9079]="Hierophant Theodora Mulvadania",[9080]="Lexlort",[9081]="Galamav the Marksman",[9082]="Thal'trak Proudtusk",[9083]="Razal'blade",[9084]="Thunderheart",[9085]="Initiate Amakkar",[9086]="Grunt Gargal",[9087]="Bashana Runetotem",[9096]="Rage Talon Dragonspawn",[9097]="Scarshield Legionnaire",[9098]="Scarshield Spellbinder",[9099]="Sraaz",[9116]="Eridan Bluewind",[9117]="J.D. Collie",[9118]="Larion",[9119]="Muigin",[9136]="Sha'ni Proudtusk",[9156]="Ambassador Flamelash",[9157]="Bloodpetal Pest",[9158]="Warhorse",[9162]="Young Diemetradon",[9163]="Diemetradon",[9164]="Elder Diemetradon",[9165]="Fledgling Pterrordax",[9166]="Pterrordax",[9167]="Frenzied Pterrordax",[9176]="Gorlop",[9177]="Oralius",[9178]="Burning Spirit",[9179]="Jazzrik",[9196]="Highlord Omokk",[9197]="Spirestone Battle Mage",[9198]="Spirestone Mystic",[9199]="Spirestone Enforcer",[9200]="Spirestone Reaver",[9201]="Spirestone Ogre Magus",[9216]="Spirestone Warlord",[9217]="Spirestone Lord Magus",[9218]="Spirestone Battle Lord",[9219]="Spirestone Butcher",[9236]="Shadow Hunter Vosh'gajin",[9237]="War Master Voone",[9238]="Quentin",[9239]="Smolderthorn Mystic",[9240]="Smolderthorn Shadow Priest",[9241]="Smolderthorn Headhunter",[9256]="Farm Chicken",[9257]="Scarshield Warlock",[9258]="Scarshield Raider",[9259]="Firebrand Grunt",[9260]="Firebrand Legionnaire",[9261]="Firebrand Darkweaver",[9262]="Firebrand Invoker",[9263]="Firebrand Dreadweaver",[9264]="Firebrand Pyromancer",[9265]="Smolderthorn Shadow Hunter",[9266]="Smolderthorn Witch Doctor",[9267]="Smolderthorn Axe Thrower",[9268]="Smolderthorn Berserker",[9269]="Smolderthorn Seer",[9270]="Williden Marshal",[9271]="Hol'anyee Marshal",[9272]="Spark Nilminer",[9273]="Petra Grossen",[9274]="Dadanga",[9296]="Milly Osworth",[9297]="Enraged Wyvern",[9298]="Donova Snowden",[9299]="Gaeriyan",[9316]="Wenikee Boltbucket",[9317]="Rilli Greasygob",[9318]="Incendosaur",[9319]="Houndmaster Grebmar",[9336]="Boss Copperplug",[9356]="Innkeeper Shul'kar",[9376]="Blazerunner",[9377]="Swirling Vortex",[9396]="Ground Pounder",[9397]="Unearthed Fossil",[9398]="Twilight's Hammer Executioner",[9416]="Scarshield Worg",[9436]="Spawn of Bael'Gar",[9437]="Dark Keeper Vorfalk",[9438]="Dark Keeper Bethek",[9439]="Dark Keeper Uggel",[9441]="Dark Keeper Zimrel",[9442]="Dark Keeper Ofgut",[9443]="Dark Keeper Pelver",[9445]="Dark Guard",[9447]="Scarlet Warder",[9448]="Scarlet Praetorian",[9449]="Scarlet Cleric",[9450]="Scarlet Curate",[9451]="Scarlet Archmage",[9452]="Scarlet Enchanter",[9453]="Aquementas",[9454]="Xavathras",[9456]="Warlord Krom'zar",[9457]="Horde Defender",[9458]="Horde Axe Thrower",[9459]="Cyrus Therepentous",[9460]="Gadgetzan Bruiser",[9461]="Frenzied Black Drake",[9462]="Chieftain Bloodmaw",[9464]="Overlord Ror",[9465]="Golhine the Hooded",[9467]="Miblon Snarltooth",[9476]="Watchman Doomgrip",[9477]="Cloned Ooze",[9496]="Gorishi Egg",[9498]="Gorishi Grub",[9499]="Plugger Spazzring",[9500]="Mistress Nagmara",[9501]="Innkeeper Adegwa",[9502]="Phalanx",[9503]="Private Rocknot",[9516]="Lord Banehollow",[9517]="Shadow Lord Fel'dan",[9518]="Rakaiah",[9520]="Grark Lorkrub",[9521]="Enraged Felbat",[9522]="Blackrock Ambusher",[9523]="Kolkar Stormseer",[9524]="Kolkar Invader",[9525]="Freewind Brave",[9526]="Enraged Gryphon",[9527]="Enraged Hippogryph",[9528]="Arathandris Silversky",[9529]="Maybess Riverbreeze",[9536]="Maxwort Uberglint",[9537]="Hurley Blackbreath",[9538]="High Executioner Nuzrak",[9539]="Shadow of Lexlort",[9540]="Enohar Thunderbrew",[9541]="Blackbreath Crony",[9542]="Franclorn's Spirit",[9543]="Ribbly Screwspigot",[9544]="Yuka Screwspigot",[9545]="Grim Patron",[9546]="Raschal the Courier",[9547]="Guzzling Patron",[9548]="Cawind Trueaim",[9549]="Borand",[9550]="Furmund",[9551]="Starn",[9552]="Zanara",[9553]="Nadia Vernon",[9554]="Hammered Patron",[9555]="Mu'uta",[9556]="Felhound Minion",[9558]="Grimble",[9559]="Grizzlowe",[9560]="Marshal Maxwell",[9561]="Jalinda Sprig",[9562]="Helendis Riverhorn",[9563]="Ragged John",[9564]="Frezza",[9565]="Mayara Brightwing",[9566]="Zapetta",[9568]="Overlord Wyrmthalak",[9580]="Orgrimmar Talent Master",[9582]="Undercity Talent Master",[9583]="Bloodaxe Veteran",[9584]="Jalane Ayrole",[9596]="Bannok Grimaxe",[9598]="Arei",[9600]="Parrot",[9601]="Treant Spirit",[9602]="Hahk'Zor",[9604]="Gorgon'och",[9605]="Blackrock Raider",[9616]="Laris Geardawdle",[9618]="Karna Remtravel",[9619]="Torwa Pathfinder",[9620]="Dreka'Sur",[9621]="Gargantuan Ooze",[9622]="U'cha",[9623]="A-Me 01",[9636]="Kireena",[9637]="Scorching Totem",[9656]="Pet Bombling",[9657]="Lil' Smoky",[9658]="Distract Test",[9659]="Unkillable Test Dummy",[9660]="Agnar Beastamer",[9662]="Sprite Darter Hatchling",[9676]="Tink Sprocketwhistle",[9677]="Ograbisi",[9678]="Shill Dinger",[9679]="Tobias Seecher",[9680]="Crest Killer",[9681]="Jaz",[9682]="Marshal Reginald Windsor",[9683]="Lar'korwi Mate",[9684]="Lar'korwi",[9687]="Windwall Totem",[9688]="Windwall Totem II",[9689]="Windwall Totem III",[9690]="Ember Worg",[9691]="Venomtip Scorpid",[9692]="Bloodaxe Raider",[9693]="Bloodaxe Evoker",[9694]="Slavering Ember Worg",[9695]="Deathlash Scorpid",[9696]="Bloodaxe Worg",[9697]="Giant Ember Worg",[9698]="Firetail Scorpid",[9699]="Fire Beetle",[9700]="Lava Crab",[9701]="Spire Scorpid",[9705]="Illusionary Dreamwatcher",[9706]="Yorba Screwspigot",[9707]="Scarshield Portal",[9708]="Burning Imp",[9716]="Bloodaxe Warmonger",[9717]="Bloodaxe Summoner",[9718]="Ghok Bashguud",[9736]="Quartermaster Zigris",[9776]="Flamekin Spitter",[9777]="Flamekin Sprite",[9778]="Flamekin Torcher",[9779]="Flamekin Rager",[9796]="Galgar",[9816]="Pyroguard Emberseer",[9817]="Blackhand Dreadweaver",[9818]="Blackhand Summoner",[9819]="Blackhand Veteran",[9836]="Mathredis Firestar",[9856]="Auctioneer Grimful",[9857]="Auctioneer Grizzlin",[9858]="Auctioneer Kresky",[9859]="Auctioneer Lympkin",[9860]="Salia",[9861]="Moora",[9862]="Jaedenar Legionnaire",[9876]="Locheed",[9877]="Prince Xavalis",[9878]="Entropic Beast",[9879]="Entropic Horror",[9916]="Jarquia",[9936]="Corrupted Kitten",[9937]="Common Kitten",[9938]="Magmus",[9956]="Shadowforge Flame Keeper",[9976]="Tharlidun",[9977]="Sylista",[9978]="Wesley",[9979]="Sarah Goode",[9980]="Shelby Stoneflint",[9981]="Sikwa",[9982]="Penny",[9983]="Kelsuwa",[9984]="Ulbrek Firehand",[9985]="Laziphus",[9986]="Shyrka Wolfrunner",[9987]="Shoja'my",[9988]="Xon'cha",[9989]="Lina Hearthstove",[9990]="Lanti'gah",[9996]="Winna Hazzard",[9997]="Spraggle Frock",[9998]="Shizzle",[9999]="Ringo",[10000]="Arugal",[10016]="Tainted Rat",[10017]="Tainted Cockroach",[10036]="Brackenwall Enforcer",[10037]="Lakeshire Guard",[10038]="Night Watch Guard",[10040]="Gorishi Hive Guard",[10041]="Gorishi Hive Queen",[10042]="Corrupted Saber",[10043]="Ribbly's Crony",[10045]="Kirk Maxwell",[10046]="Bethaine Flinthammer",[10047]="Michael",[10048]="Gereck",[10049]="Hekkru",[10050]="Seikwa",[10051]="Seriadne",[10052]="Maluressian",[10053]="Anya Maulray",[10054]="Bulrug",[10055]="Morganus",[10056]="Alassin",[10057]="Theodore Mont Claire",[10058]="Greth",[10059]="Antarius",[10060]="Grimestack",[10061]="Killium Bouldertoe",[10062]="Steven Black",[10063]="Reggifuz",[10076]="High Priestess of Thaurissan",[10077]="Deathmaw",[10078]="Terrorspark",[10079]="Brave Moonhorn",[10080]="Sandarr Dunereaver",[10081]="Dustwraith",[10082]="Zerillis",[10083]="Rage Talon Flamescale",[10085]="Jaelysia",[10086]="Hesuwa Thunderhorn",[10088]="Xao'tsu",[10089]="Silvaria",[10090]="Belia Thundergranite",[10096]="High Justice Grimstone",[10116]="Slave",[10117]="Tortured Slave",[10118]="Nessa Shadowsong",[10119]="Volchan",[10120]="Vault Warder",[10136]="Chemist Fuely",[10157]="Moonkin Oracle",[10158]="Moonkin",[10159]="Young Moonkin",[10160]="Raging Moonkin",[10161]="Rookery Whelp",[10162]="Lord Victor Nefarius",[10176]="Kaltunk",[10177]="Spire Scarab",[10179]="Riding MechaStrider (Black)",[10180]="Unpainted Mechanostrider",[10181]="Lady Sylvanas Windrunner",[10182]="Rokaro",[10183]="Moonflare Totem",[10184]="Onyxia",[10196]="General Colbatann",[10197]="Mezzir the Howler",[10198]="Kashoch the Reaver",[10199]="Grizzle Snowpaw",[10200]="Rak'shiri",[10201]="Lady Hederine",[10202]="Azurous",[10204]="Misha",[10216]="Gubber Blump",[10217]="Flame Buffet Totem",[10218]="Superior Healing Ward",[10219]="Gwennyth Bly'Leggonde",[10220]="Halycon",[10221]="Bloodaxe Worg Pup",[10257]="Bijou",[10258]="Rookery Guardian",[10259]="Worg Pup",[10260]="Kibler",[10261]="Burning Felhound",[10262]="Opus",[10263]="Burning Felguard",[10264]="Solakar Flamewreath",[10266]="Ug'thok",[10267]="Tinkee Steamboil",[10268]="Gizrul the Slavener",[10276]="Rotgath Stonebeard",[10277]="Groum Stonebeard",[10278]="Thrag Stonehoof",[10290]="Captured Felwood Ooze",[10293]="Dulciea Frostmoon",[10296]="Vaelan",[10299]="Acride",[10300]="Ranshalla",[10301]="Jaron Stoneshaper",[10302]="Krakle",[10303]="Storm Shadowhoof",[10304]="Aurora Skycaller",[10305]="Umi Rumplesnicker",[10306]="Trull Failbane",[10307]="Witch Doctor Mau'ari",[10316]="Blackhand Incarcerator",[10317]="Blackhand Elite",[10318]="Blackhand Assassin",[10319]="Blackhand Iron Guard",[10321]="Emberstrife",[10322]="Riding Tiger (White)",[10323]="Murkdeep",[10339]="Gyth",[10340]="Vaelastrasz the Red",[10356]="Bayne",[10357]="Ressan the Needler",[10358]="Fellicent's Shade",[10359]="Sri'skulk",[10360]="Kergul Bloodaxe",[10361]="Gruul Darkblade",[10363]="General Drakkisath",[10364]="Yaelika Farclaw",[10366]="Rage Talon Dragon Guard",[10367]="Shrye Ragefist",[10369]="Trayexir",[10370]="[UNUSED] Xur'gyl",[10371]="Rage Talon Captain",[10372]="Rage Talon Fire Tongue",[10373]="Xabraxxis",[10374]="Spire Spider",[10375]="Spire Spiderling",[10376]="Crystal Fang",[10377]="Elu",[10378]="Omusa Thunderhorn",[10379]="Altsoba Ragetotem",[10380]="Sanuye Runetotem",[10381]="Ravaged Cadaver",[10382]="Mangled Cadaver",[10383]="Broken Cadaver",[10384]="Spectral Citizen",[10385]="Ghostly Citizen",[10387]="Vengeful Phantom",[10388]="Spiteful Phantom",[10389]="Wrath Phantom",[10390]="Skeletal Guardian",[10391]="Skeletal Berserker",[10393]="Skul",[10394]="Black Guard Sentry",[10398]="Thuzadin Shadowcaster",[10399]="Thuzadin Acolyte",[10400]="Thuzadin Necromancer",[10404]="Pustulating Horror",[10405]="Plague Ghoul",[10406]="Ghoul Ravener",[10407]="Fleshflayer Ghoul",[10408]="Rockwing Gargoyle",[10409]="Rockwing Screecher",[10411]="Eye of Naxxramas",[10412]="Crypt Crawler",[10413]="Crypt Beast",[10414]="Patchwork Horror",[10415]="Ash'ari Crystal",[10416]="Bile Spewer",[10417]="Venom Belcher",[10418]="Risen Guardsman",[10419]="Risen Conjuror",[10420]="Risen Initiate",[10421]="Crimson Defender",[10422]="Crimson Sorcerer",[10423]="Crimson Priest",[10424]="Risen Gallant",[10425]="Crimson Battle Mage",[10426]="Crimson Inquisitor",[10427]="Pao'ka Swiftmountain",[10428]="Motega Firemane",[10429]="Warchief Rend Blackhand",[10430]="The Beast",[10431]="Gregor Greystone",[10432]="Vectus",[10433]="Marduk Blackpool",[10435]="Magistrate Barthilas",[10436]="Baroness Anastari",[10437]="Nerub'enkan",[10438]="Maleki the Pallid",[10439]="Ramstein the Gorger",[10440]="Baron Rivendare",[10441]="Plagued Rat",[10442]="Chromatic Whelp",[10445]="Selina Dourman",[10447]="Chromatic Dragonspawn",[10455]="Binny Springblade",[10456]="Prynne",[10460]="Prospector Ironboot",[10461]="Plagued Insect",[10463]="Shrieking Banshee",[10464]="Wailing Banshee",[10467]="Mana Tide Totem",[10468]="Felnok Steelspring",[10469]="Scholomance Adept",[10470]="Scholomance Neophyte",[10471]="Scholomance Acolyte",[10472]="Scholomance Occultist",[10475]="Scholomance Student",[10476]="Scholomance Necrolyte",[10477]="Scholomance Necromancer",[10478]="Splintered Skeleton",[10479]="Skulking Corpse",[10480]="Unstable Corpse",[10481]="Reanimated Corpse",[10482]="Risen Lackey",[10485]="Risen Aberration",[10486]="Risen Warrior",[10487]="Risen Protector",[10488]="Risen Construct",[10489]="Risen Guard",[10491]="Risen Bonewarder",[10495]="Diseased Ghoul",[10497]="Ragged Ghoul",[10498]="Spectral Tutor",[10499]="Spectral Researcher",[10500]="Spectral Teacher",[10502]="Lady Illucia Barov",[10503]="Jandice Barov",[10504]="Lord Alexei Barov",[10505]="Instructor Malicia",[10506]="Kirtonos the Herald",[10507]="The Ravenian",[10508]="Ras Frostwhisper",[10509]="Jed Runewatcher",[10516]="The Unforgiven",[10536]="Plagued Maggot",[10537]="Cliffwatcher Longhorn",[10538]="Vaelastrasz",[10539]="Hagar Lightninghoof",[10540]="Vol'jin",[10541]="Krakle's Thermometer",[10556]="Lazy Peon",[10557]="Flametongue Totem IV",[10558]="Hearthsinger Forresten",[10559]="Lady Vespia",[10577]="Crypt Scarab",[10578]="Bom'bay",[10580]="Fetid Zombie",[10581]="Young Arikara",[10582]="Dog",[10583]="Gryfe",[10584]="Urok Doomhowl",[10596]="Mother Smolderweb",[10598]="Smolderweb Hatchling",[10599]="Hulfnar Stonetotem",[10600]="Thontek Rumblehoof",[10601]="Urok Enforcer",[10602]="Urok Ogre Magus",[10603]="Hallucination",[10604]="Huntress Nhemai",[10605]="Scarlet Medic",[10606]="Huntress Yaeliura",[10608]="Scarlet Priest",[10610]="Angus",[10611]="Shorty",[10612]="Guard Wachabe",[10616]="Supervisor Raelen",[10617]="Galak Messenger",[10618]="Rivern Frostwind",[10619]="Glacier",[10636]="Pack Kodo",[10637]="Malyfous Darkhammer",[10638]="Kanati Greycloud",[10639]="Rorgish Jowl",[10640]="Oakpaw",[10641]="Branch Snapper",[10642]="Eck'alom",[10643]="Mugglefin",[10644]="Mist Howler",[10645]="Thalia Amberhide",[10646]="Lakota Windsong",[10647]="Prince Raze",[10648]="Xavaric",[10656]="Guardian Felhunter",[10657]="Corrupted Cat",[10658]="Winna's Kitten",[10659]="Cobalt Whelp",[10660]="Cobalt Broodling",[10661]="Spell Eater",[10662]="Spellmaw",[10663]="Manaclaw",[10664]="Scryer",[10665]="Junior Apothecary Holland",[10666]="Gordo",[10667]="Chromie",[10668]="Beaten Corpse",[10676]="Raider Jhash",[10678]="Plagued Hatchling",[10680]="Summoned Blackhand Dreadweaver",[10681]="Summoned Blackhand Veteran",[10682]="Raider Kerr",[10683]="Rookery Hatcher",[10684]="Remorseful Highborne",[10685]="Swine",[10696]="Refuge Pointe Defender",[10697]="Bile Slime",[10698]="Summoned Zombie",[10699]="Carrion Scarab",[10716]="Belfry Bat",[10717]="Temporal Parasite",[10718]="Shahram",[10719]="Herald of Thrall",[10720]="Galak Assassin",[10721]="Novice Warrior",[10737]="Shy-Rotam",[10738]="High Chief Winterfall",[10739]="Mulgris Deepriver",[10740]="Awbee",[10741]="Sian-Rotam",[10742]="Blackhand Dragon Handler",[10756]="Scalding Elemental",[10757]="Boiling Elemental",[10758]="Grimtotem Bandit",[10759]="Grimtotem Stomper",[10760]="Grimtotem Geomancer",[10761]="Grimtotem Reaver",[10762]="Blackhand Thug",[10776]="Finkle Einhorn",[10778]="Janice Felstone",[10779]="Infected Squirrel",[10780]="Infected Deer",[10781]="Royal Overseer Bauhaus",[10782]="Royal Factor Bathrilor",[10785]="Orb of Deception (Tauren Male)",[10799]="Warosh",[10800]="Warosh the Redeemed",[10801]="Jabbering Ghoul",[10802]="Hitah'ya the Keeper",[10803]="Rifleman Wheeler",[10804]="Rifleman Middlecamp",[10805]="Spotter Klemmy",[10806]="Ursius",[10807]="Brumeran",[10808]="Timmy the Cruel",[10809]="Stonespine",[10811]="Instructor Galford",[10812]="Grand Crusader Dathrohan",[10813]="Balnazzar",[10814]="Chromatic Elite Guard",[10816]="Wandering Skeleton",[10817]="Duggan Wildhammer",[10818]="Death Knight Soulbearer",[10819]="Baron Bloodbane",[10820]="Duke Ragereaver",[10821]="Hed'mush the Rotting",[10822]="Warlord Thresh'jin",[10823]="Zul'Brin Warpbranch",[10824]="Ranger Lord Hawkspear",[10825]="Gish the Unmoving",[10826]="Lord Darkscythe",[10827]="Deathspeaker Selendre",[10828]="High General Abbendis",[10836]="Farmer Dalson",[10837]="High Executor Derrington",[10838]="Commander Ashlam Valorfist",[10839]="Argent Officer Garush",[10840]="Argent Officer Pureheart",[10856]="Argent Quartermaster Hasana",[10857]="Argent Quartermaster Lightspark",[10876]="Undead Scarab",[10877]="Courier Hammerfall",[10878]="Herald Moonstalker",[10879]="Harbinger Balthazad",[10880]="Warcaller Gorlach",[10881]="Bluff Runner Windstrider",[10882]="[Deprecated for 4.x]Arikara",[10896]="Arnak Grimtotem",[10897]="Sindrayl",[10899]="Goraluk Anvilcrack",[10901]="Lorekeeper Polkelt",[10902]="Andorhal Tower One",[10903]="Andorhal Tower Two",[10904]="Andorhal Tower Three",[10905]="Andorhal Tower Four",[10916]="Winterfall Runner",[10917]="Aurius",[10918]="Lorax",[10919]="Shatterspear Troll",[10920]="Kelek Skykeeper",[10921]="Taronn Redfeather",[10922]="Greta Mosshoof",[10923]="Tenell Leafrunner",[10924]="Ivy Leafrunner",[10925]="Rotting Worm",[10926]="Pamela Redpath",[10927]="Marlene Redpath",[10928]="Succubus Minion",[10929]="Haleh",[10930]="Dargh Trueaim",[10936]="Joseph Redpath",[10937]="Captain Redpath",[10938]="Redpath the Corrupted",[10939]="Marduk the Black",[10940]="Ghost of the Past",[10941]="Wizlo Bearingshiner",[10942]="Nessy",[10943]="Decrepit Guardian",[10944]="Davil Lightfire",[10945]="Davil Crokford",[10946]="Horgus the Ravager",[10947]="Darrowshire Betrayer",[10948]="Darrowshire Defender",[10949]="Silver Hand Disciple",[10950]="Redpath Militia",[10951]="Marauding Corpse",[10952]="Marauding Skeleton",[10953]="Servant of Horgus",[10954]="Bloodletter",[10955]="Summoned Water Elemental",[10956]="Naga Siren",[10976]="Jeziba",[10977]="Quixxil",[10978]="Legacki",[10979]="Scarlet Hound",[10980]="Umi's Mechanical Yeti",[10981]="Frostwolf",[10982]="Whitewhisker Vermin",[10986]="Snowblind Harpy",[10987]="Irondeep Trogg",[10988]="Kodo Spirit",[10990]="Alterac Ram",[10991]="Wildpaw Gnoll",[10992]="Enraged Panther",[10993]="Twizwick Sprocketgrind",[10996]="Fallen Hero",[10997]="Cannon Master Willey",[11016]="Captured Arko'narin",[11017]="Roxxik",[11018]="Arko'narin",[11019]="Jessir Moonbow",[11020]="Remains of Trey Lightforge",[11021]="Winterspring Frostsaber",[11022]="Alexi Barov",[11023]="Weldon Barov",[11024]="Della",[11025]="Mukdrak",[11026]="Sprite Jumpsprocket",[11027]="Illusory Wraith",[11028]="Jemma Quikswitch",[11029]="Trixie Quikswitch",[11030]="Mindless Undead",[11031]="Franklin Lloyd",[11032]="Commander Malor",[11033]="Smokey LaRue",[11034]="Lord Maxwell Tyrosus",[11035]="Betina Bigglezink",[11036]="Leonid Barthalomew the Revered",[11037]="Jenna Lemkenilli",[11038]="Caretaker Alen",[11039]="Duke Nicholas Zverenhoff",[11040]="Watcher Brownell",[11041]="Milla Fairancora",[11042]="Sylvanna Forestmoon",[11043]="Crimson Monk",[11044]="Doctor Martin Felben",[11046]="Whuut",[11047]="Kray",[11048]="Victor Ward",[11049]="Rhiannon Davis",[11050]="Trianna",[11051]="Vhan",[11052]="Timothy Worthington",[11053]="High Priestess MacDonnell",[11054]="Crimson Rifleman",[11055]="Shadow Priestess Vandis",[11056]="Alchemist Arbington",[11057]="Apothecary Dithers",[11058]="Fras Siabi",[11063]="Carlin Redpath",[11064]="Darrowshire Spirit",[11065]="Thonys Pillarstone",[11066]="Jhag",[11067]="Malcomb Wynn",[11068]="Betty Quin",[11069]="Jenova Stoneshield",[11070]="Lalina Summermoon",[11071]="Mot Dawnstrider",[11072]="Kitta Firewind",[11073]="Annora",[11074]="Hgarth",[11075]="Cauldron Lord Bilemaw",[11076]="Cauldron Lord Razarch",[11077]="Cauldron Lord Malvinious",[11078]="Cauldron Lord Soulwrath",[11079]="Wynd Nightchaser",[11081]="Faldron",[11082]="Stratholme Courier",[11083]="Darianna",[11084]="Tarn",[11096]="Randal Worth",[11097]="Drakk Stonehand",[11098]="Hahrana Ironhide",[11099]="Argent Guard",[11100]="Mana Tide Totem II",[11101]="Mana Tide Totem III",[11102]="Argent Rider",[11103]="Innkeeper Lyshaerya",[11104]="Shelgrayn",[11105]="Aboda",[11106]="Innkeeper Sikewa",[11116]="Innkeeper Abeqwa",[11117]="Awenasa",[11118]="Innkeeper Vizzie",[11119]="Azzleby",[11120]="Risen Hammersmith",[11121]="Black Guard Swordsmith",[11122]="Restless Soul",[11136]="Freed Soul",[11137]="Xai'ander",[11138]="Maethrya",[11139]="Yugrek",[11140]="Egan",[11141]="Spirit of Trey Lightforge",[11142]="Undead Postman",[11143]="Postmaster Malown",[11145]="Myolor Sunderfury",[11146]="Ironus Coldsteel",[11147]="Green Mechanostrider",[11152]="The Scourge Cauldron",[11153]="Red Skeletal Horse",[11154]="Blue Skeletal Horse",[11155]="Brown Skeletal Horse",[11156]="Green Skeletal Warhorse",[11176]="Krathok Moltenfist",[11177]="Okothos Ironrager",[11178]="Borgosh Corebender",[11180]="Bloodvenom Post Brave",[11181]="Shi'alune",[11182]="Nixxrak",[11183]="Blixxrak",[11184]="Wixxrak",[11185]="Xizzer Fizzbolt",[11186]="Lunnix Sprocketslip",[11187]="Himmik",[11188]="Evie Whirlbrew",[11189]="Qia",[11190]="Everlook Bruiser",[11191]="Lilith the Lithe",[11192]="Kilram",[11193]="Seril Scourgebane",[11194]="Argent Defender",[11196]="Shatterspear Drummer",[11197]="Mindless Skeleton",[11198]="Broken Exile",[11199]="Crimson Cannon",[11200]="Summoned Skeleton",[11216]="Eva Sarkhoff",[11217]="Lucien Sarkhoff",[11218]="Kerlonian Evershade",[11219]="Liladris Moonriver",[11236]="Blood Parrot",[11256]="Manifestation of Water",[11257]="Scholomance Handler",[11258]="Frail Skeleton",[11259]="Nataka Longhorn",[11260]="Northshire Peasant",[11261]="Doctor Theolen Krastinov",[11262]="Onyxian Whelp",[11263]="Spectral Projection",[11276]="Azshara Sentinel",[11277]="Caer Darrow Citizen",[11278]="Magnus Frostwake",[11279]="Caer Darrow Guardsman",[11280]="Caer Darrow Cannoneer",[11281]="Caer Darrow Horseman",[11282]="Melia",[11283]="Sammy",[11284]="Dark Shade",[11285]="Rory",[11286]="Magistrate Marduke",[11287]="Baker Masterson",[11288]="Spectral Betrayer",[11289]="Spectral Defender",[11290]="Mossflayer Zombie",[11291]="Unliving Mossflayer",[11296]="Darrowshire Poltergeist",[11316]="Joseph Dirte",[11317]="Jinar'Zillen",[11318]="Ragefire Trogg",[11319]="Ragefire Shaman",[11320]="Earthborer",[11321]="Molten Elemental",[11322]="Searing Blade Cultist",[11323]="Searing Blade Enforcer",[11324]="Searing Blade Warlock",[11325]="Panda Cub",[11326]="Mini Diablo",[11327]="Zergling",[11328]="Eastvale Peasant",[11338]="Hakkari Shadowcaster",[11339]="Hakkari Shadow Hunter",[11340]="Hakkari Blood Priest",[11346]="Hakkari Oracle",[11347]="Zealot Lor'Khan",[11348]="Zealot Zath",[11350]="Gurubashi Axe Thrower",[11351]="Gurubashi Headhunter",[11352]="Gurubashi Berserker",[11353]="Gurubashi Blood Drinker",[11355]="Gurubashi Warrior",[11356]="Gurubashi Champion",[11357]="Son of Hakkar",[11359]="Soulflayer",[11360]="Zulian Cub",[11361]="Zulian Tiger",[11365]="Zulian Panther",[11368]="Bloodseeker Bat",[11370]="Razzashi Broodwidow",[11371]="Razzashi Serpent",[11372]="Razzashi Adder",[11373]="Razzashi Cobra",[11374]="Hooktooth Frenzy",[11378]="Foreman Thazz'ril",[11380]="Jin'do the Hexxer",[11382]="Bloodlord Mandokir",[11383]="High Priestess Hai'watna",[11387]="Sandfury Speaker",[11388]="Witherbark Speaker",[11389]="Bloodscalp Speaker",[11390]="Skullsplitter Speaker",[11391]="Vilebranch Speaker",[11397]="Nara Meideros",[11401]="Priestess Alathea",[11406]="High Priest Rohan",[11407]="Var'jun",[11438]="Bibbly F'utzbuckle",[11439]="Illusion of Jandice Barov",[11440]="Gordok Enforcer",[11441]="Gordok Brute",[11442]="Gordok Mauler",[11443]="Gordok Ogre-Mage",[11444]="Gordok Mage-Lord",[11445]="Gordok Captain",[11446]="Gordok Spirit",[11447]="Mushgog",[11448]="Gordok Warlock",[11450]="Gordok Reaver",[11451]="Wildspawn Satyr",[11452]="Wildspawn Rogue",[11453]="Wildspawn Trickster",[11454]="Wildspawn Betrayer",[11455]="Wildspawn Felsworn",[11456]="Wildspawn Shadowstalker",[11457]="Wildspawn Hellcaller",[11458]="Petrified Treant",[11459]="Ironbark Protector",[11460]="Alzzin's Minion",[11461]="Warpwood Guardian",[11462]="Warpwood Treant",[11464]="Warpwood Tangler",[11465]="Warpwood Stomper",[11466]="Highborne Summoner",[11467]="Tsu'zee",[11469]="Eldreth Seether",[11470]="Eldreth Sorcerer",[11471]="Eldreth Apparition",[11472]="Eldreth Spirit",[11473]="Eldreth Spectre",[11475]="Eldreth Phantasm",[11476]="Skeletal Highborne",[11477]="Rotting Highborne",[11480]="Arcane Aberration",[11483]="Mana Remnant",[11484]="Residual Monstrosity",[11486]="Prince Tortheldrin",[11487]="Magister Kalendris",[11488]="Illyanna Ravenoak",[11489]="Tendris Warpwood",[11490]="Zevrim Thornhoof",[11491]="Old Ironbark",[11492]="Alzzin the Wildshaper",[11496]="Immol'thar",[11497]="The Razza",[11498]="Skarr the Broken",[11499]="[UNUSED] Commander Gormaul",[11501]="King Gordok",[11502]="Ragnaros",[11516]="Timbermaw Warder",[11517]="Oggleflint",[11518]="Jergosh the Invoker",[11519]="Bazzalan",[11520]="Taragaman the Hungerer",[11521]="Kodo Apparition",[11536]="Quartermaster Miranda Breechlock",[11537]="TEST GEAR PALADIN",[11538]="TEST GEAR WARRIOR",[11539]="TEST GEAR HUNTER",[11540]="TEST GEAR MAGE",[11541]="TEST GEAR WARLOCK",[11542]="TEST GEAR DRUID",[11543]="TEST GEAR SHAMAN",[11544]="TEST GEAR PRIEST",[11545]="TEST GEAR ROGUE",[11546]="Jack Sterling",[11548]="Loh'atu",[11551]="Necrofiend",[11552]="Timbermaw Mystic",[11553]="Timbermaw Woodbender",[11554]="Grazle",[11555]="Gorn One Eye",[11556]="Salfa",[11557]="Meilosh",[11558]="Kernda",[11559]="Outcast Necromancer",[11560]="Magrami Spectre",[11561]="Undead Ravager",[11562]="Drysnap Crawler",[11563]="Drysnap Pincer",[11564]="Gizelton Caravan Kodo",[11576]="Whirlwind Ripper",[11577]="Whirlwind Stormwalker",[11578]="Whirlwind Shredder",[11582]="Scholomance Dark Summoner",[11583]="Nefarian",[11596]="Smeed Scrabblescrew",[11598]="Risen Guardian",[11600]="Irondeep Shaman",[11602]="Irondeep Skullthumper",[11603]="Whitewhisker Digger",[11604]="Whitewhisker Geomancer",[11605]="Whitewhisker Overseer",[11608]="Bardu Sharpeye",[11609]="Alexia Ironknife",[11610]="Kirsta Deepshadow",[11611]="Cavalier Durgen",[11613]="Huntsman Radley",[11614]="Bloodshot",[11615]="Mickey Levine",[11616]="Nathaniel Dumah",[11620]="Spectral Marauder",[11621]="Spectral Corpse",[11622]="Rattlegore",[11623]="Scourge Summoning Crystal",[11624]="Taiga Wisemane",[11625]="Cork Gizelton",[11626]="Rigger Gizelton",[11627]="Tamed Kodo",[11629]="Jessica Redpath",[11636]="Servant of Weldon Barov",[11637]="Servant of Alexi Barov",[11656]="Warsong Peon",[11657]="Morloch",[11658]="Molten Giant",[11659]="Molten Destroyer",[11661]="Flamewaker",[11662]="Flamewaker Priest",[11663]="Flamewaker Healer",[11664]="Flamewaker Elite",[11665]="Lava Annihilator",[11666]="Firewalker",[11667]="Flameguard",[11668]="Firelord",[11669]="Flame Imp",[11671]="Core Hound",[11672]="Core Rager",[11673]="Core Hound",[11675]="Snowblind Windcaller",[11677]="Taskmaster Snivvle",[11678]="Snowblind Ambusher",[11680]="Horde Scout",[11681]="Warsong Logger",[11682]="Warsong Grunt",[11683]="Warsong Shaman",[11684]="Goblin Deforester",[11685]="Maraudine Priest",[11686]="Ghostly Raider",[11687]="Ghostly Marauder",[11688]="Cursed Centaur",[11689]="Brown Kodo",[11690]="Gnarlpine Instigator",[11696]="Chal Fairwind",[11697]="Mannoroc Lasher",[11698]="Hive'Ashi Stinger",[11699]="Varian Wrynn",[11700]="Sarin Starlight",[11701]="Mor'vek",[11702]="Arin'sor",[11703]="Graw Cornerstone",[11704]="Kriss Goldenlight",[11705]="Rayan Dawnrisen",[11706]="Adon",[11707]="Joy Ar'nareth",[11708]="Coral Moongale",[11709]="Jareth Wildwoods",[11710]="Mirador",[11711]="Sentinel Aynasha",[11712]="Lilyn Darkriver",[11713]="Blackwood Tracker",[11714]="Marosh the Devious",[11715]="Talendria",[11716]="Celes Earthborne",[11717]="Bethan Bluewater",[11718]="Sar Browneye",[11720]="Loruk Foreststrider",[11721]="Hive'Ashi Worker",[11722]="Hive'Ashi Defender",[11723]="Hive'Ashi Sandstalker",[11724]="Hive'Ashi Swarmer",[11725]="Hive'Zora Waywatcher",[11726]="Hive'Zora Tunneler",[11727]="Hive'Zora Wasp",[11728]="Hive'Zora Reaver",[11729]="Hive'Zora Hive Sister",[11730]="Hive'Regal Ambusher",[11731]="Hive'Regal Burrower",[11732]="Hive'Regal Spitfire",[11733]="Hive'Regal Slavemaker",[11734]="Hive'Regal Hive Lord",[11735]="Stonelash Scorpid",[11736]="Stonelash Pincer",[11737]="Stonelash Flayer",[11738]="Sand Skitterer",[11739]="Rock Stalker",[11740]="Dredge Striker",[11741]="Dredge Crusher",[11744]="Dust Stormer",[11745]="Cyclone Warrior",[11746]="Desert Rumbler",[11747]="Desert Rager",[11748]="Samantha Swifthoof",[11749]="Feran Strongwind",[11750]="Ganoosh",[11751]="Rilan Howard",[11752]="Blaise Montgomery",[11753]="Gogo",[11754]="Meggi Peppinrocker",[11755]="Harlo Wigglesworth",[11756]="Quinn",[11757]="Umaron Stragarelm",[11758]="Andi Lynn",[11776]="Salome",[11777]="Shadowshard Rumbler",[11778]="Shadowshard Smasher",[11781]="Ambershard Crusher",[11782]="Ambershard Destroyer",[11783]="Theradrim Shardling",[11784]="Theradrim Guardian",[11785]="Ambereye Basilisk",[11786]="Ambereye Reaver",[11787]="Rock Borer",[11788]="Rock Worm",[11789]="Deep Borer",[11790]="Putridus Satyr",[11791]="Putridus Trickster",[11792]="Putridus Shadowstalker",[11793]="Celebrian Dryad",[11794]="Sister of Celebras",[11795]="Mylentha Riverbend",[11796]="Bessany Plainswind",[11797]="Moren Riverbend",[11798]="Bunthen Plainswind",[11799]="Tajarri",[11800]="Silva Fil'naveth",[11801]="Rabine Saturna",[11802]="Dendrite Starblaze",[11803]="Twilight Keeper Exeter",[11804]="Twilight Keeper Havunth",[11805]="Jarund Stoutstrider",[11806]="Sentinel Onaeya",[11807]="Tristane Shadowstone",[11808]="Grum Redbeard",[11810]="Howin Kindfeather",[11811]="Narain Soothfancy",[11812]="Claira Kindfeather",[11813]="Kerr Ironsight",[11814]="Kali Remik",[11815]="Voriya",[11816]="Una Ji'ro",[11817]="Krah'ranik",[11818]="Orik'ando",[11819]="Jory Zaga",[11820]="Locke Okarr",[11821]="Darn Talongrip",[11822]="Moonglade Warden",[11823]="Vark Battlescar",[11824]="Erik Felixe",[11825]="Paige Felixe",[11826]="Kristy Grant",[11827]="Kimberly Grant",[11828]="Kelly Grant",[11829]="Fahrak",[11830]="Hakkari Priest",[11831]="Hakkari Witch Doctor",[11832]="Keeper Remulos",[11833]="Rahauro",[11834]="Maur Grimtotem",[11835]="Theodore Griffs",[11836]="Captured Rabid Thistle Bear",[11837]="Wildpaw Shaman",[11838]="Wildpaw Mystic",[11839]="Wildpaw Brute",[11840]="Wildpaw Alpha",[11856]="Kaya Flathoof",[11857]="Makaba Flathoof",[11858]="Grundig Darkcloud",[11859]="Doomguard",[11860]="Maggran Earthbinder",[11861]="Mor'rogal",[11862]="Tsunaman",[11863]="Azore Aldamort",[11864]="Tammra Windfield",[11865]="Buliwyf Stonehand",[11866]="Ilyenia Moonfire",[11867]="Woo Ping",[11868]="Sayoc",[11869]="Ansekhwa",[11870]="Archibald",[11871]="Grinning Dog",[11872]="Myranda the Hag",[11873]="Spectral Attendant",[11874]="Masat T'andr",[11875]="Mortar Team Target Dummy",[11876]="Fel Spirit",[11877]="Roon Wildmane",[11878]="Nathanos Blightcaller",[11880]="Twilight Avenger",[11881]="Twilight Geolord",[11882]="Twilight Stonecaller",[11883]="Twilight Master",[11884]="Obi",[11885]="Blighthound",[11886]="Mercutio Filthgorger",[11887]="Crypt Robber",[11896]="Borelgore",[11897]="Duskwing",[11898]="Crusader Lord Valdelmar",[11899]="Shardi",[11900]="Brakkar",[11901]="Andruk",[11910]="Grimtotem Ruffian",[11911]="Grimtotem Mercenary",[11912]="Grimtotem Brute",[11913]="Grimtotem Sorcerer",[11914]="Gorehoof the Black",[11915]="Boulderslide Rock Keeper",[11916]="Imelda",[11917]="Boulderslide Geomancer",[11918]="Boulderslide Stonepounder",[11920]="Goggeroc",[11921]="Besseleth",[11936]="Artist Renfray",[11937]="Demon Portal Guardian",[11939]="Umber",[11940]="Merissa Stilwell",[11941]="Yori Crackhelm",[11942]="Orenthil Whisperwind",[11943]="Magga",[11944]="Vorn Skyseer",[11945]="Claire Willower",[11946]="Drek'Thar",[11947]="Captain Galvangar",[11948]="Vanndar Stormpike",[11949]="Captain Balinda Stonehearth",[11956]="Great Bear Spirit",[11957]="Great Cat Spirit",[11979]="Kim Bridenbecker",[11980]="Zuluhed the Whacked",[11981]="Flamegor",[11982]="Magmadar",[11983]="Firemaw",[11988]="Golemagg the Incinerator",[11994]="Rob Bridenbecker",[11996]="Ashley Bridenbecker",[11997]="Stormpike Herald",[11998]="Frostwolf Herald",[12017]="Broodlord Lashlayer",[12018]="Majordomo Executus",[12019]="Dargon",[12021]="Daeolyn Summerleaf",[12022]="Lorelae Wintersong",[12023]="Kharedon",[12024]="Meliri",[12025]="Malvor",[12026]="My'lanna",[12027]="Tukk",[12028]="Lah'Mawhani",[12029]="Narianna",[12030]="Malux",[12031]="Mai'Lahii",[12032]="Lui'Mala",[12033]="Wulan",[12034]="Koiter",[12036]="Grella Stonefist",[12037]="Ursol'lok",[12040]="Brannik Ironbelly",[12042]="Loganaar",[12043]="Kulwia",[12045]="Hae'Wilani",[12046]="Gor'marok the Ravager",[12047]="Stormpike Mountaineer",[12048]="Alliance Sentinel",[12050]="Stormpike Defender",[12051]="Frostwolf Legionnaire",[12052]="Frostwolf Warrior",[12053]="Frostwolf Guardian",[12056]="Baron Geddon",[12057]="Garr",[12076]="Magma Elemental",[12096]="Stormpike Quartermaster",[12097]="Frostwolf Quartermaster",[12098]="Sulfuron Harbinger",[12099]="Firesworn",[12100]="Lava Reaver",[12101]="Lava Surger",[12116]="Priestess of Elune",[12118]="Lucifron",[12119]="Flamewaker Protector",[12120]="Plagueland Termite",[12121]="Drakan",[12122]="Duros",[12123]="Reef Shark",[12124]="Great Shark",[12125]="Mammoth Shark",[12126]="Lord Tirion Fordring",[12127]="Stormpike Guardsman",[12128]="Crimson Elite",[12129]="Onyxian Warder",[12136]="Snurk Bucksquick",[12137]="Squibby Overspeck",[12138]="Lunaclaw",[12140]="Guardian of Elune",[12141]="Ice Totem",[12143]="Son of Flame",[12144]="Lunaclaw Spirit",[12148]="Riding Kodo (Teal)",[12149]="Gray Kodo",[12150]="Riding Kodo (Purple)",[12151]="Riding Kodo (Green)",[12152]="Voice of Elune",[12159]="Korrak the Bloodrager",[12160]="Shadowglen Sentinel",[12178]="Tortured Druid",[12179]="Tortured Sentinel",[12196]="Innkeeper Kaylisk",[12197]="Glordrum Steelbeard",[12198]="Martin Lindsey",[12199]="Shade of Ambermoon",[12201]="Princess Theradras",[12202]="Human Skull",[12203]="Landslide",[12204]="Spitelash Raider",[12205]="Spitelash Witch",[12206]="Primordial Behemoth",[12207]="Thessala Hydra",[12208]="Conquered Soul of the Blightcaller",[12216]="Poison Sprite",[12217]="Corruptor",[12218]="Vile Larva",[12219]="Barbed Lasher",[12220]="Constrictor Vine",[12221]="Noxious Slime",[12222]="Creeping Sludge",[12223]="Cavern Lurker",[12224]="Cavern Shambler",[12225]="Celebras the Cursed",[12236]="Lord Vyletongue",[12237]="Meshlok the Harvester",[12238]="Zaetar's Spirit",[12239]="Spirit of Gelk",[12240]="Spirit of Kolk",[12241]="Spirit of Magra",[12242]="Spirit of Maraudos",[12243]="Spirit of Veng",[12244]="Mark of Detonation (NW)",[12245]="Vendor-Tron 1000",[12246]="Super-Seller 680",[12247]="Scourge Structure",[12248]="Infiltrator Hameya",[12249]="Mark of Detonation (SW)",[12250]="Zaeldarr the Outcast",[12251]="Mark of Detonation (CLS)",[12252]="Mark of Detonation (CRS)",[12253]="Mark of Detonation (CSH)",[12254]="Mark of Detonation (NESH)",[12255]="Mark of Detonation (NE)",[12256]="Mark of Detonation (SE)",[12257]="Mechanical Yeti",[12258]="Razorlash",[12259]="Gehennas",[12261]="Infected Mossflayer",[12262]="Ziggurat Protector",[12263]="Slaughterhouse Protector",[12264]="Shazzrah",[12265]="Lava Spawn",[12277]="Melizza Brimbuzzle",[12296]="Sickly Gazelle",[12297]="Cured Gazelle",[12298]="Sickly Deer",[12299]="Cured Deer",[12319]="Burning Blade Toxicologist",[12320]="Burning Blade Crusher",[12321]="Stormscale Toxicologist",[12322]="Quel'Lithien Protector",[12336]="Brother Crowley",[12337]="Crimson Courier",[12338]="Shadowprey Guardian",[12339]="Demetria",[12340]="Drulzegar Skraghook",[12344]="Green Skeletal War Horse",[12346]="Emerald Riding Raptor",[12347]="Enraged Reef Crawler",[12348]="Ivory Raptor",[12349]="Turquoise Riding Raptor",[12350]="Violet Riding Raptor",[12351]="Dire Riding Wolf",[12352]="Scarlet Cavalier",[12353]="Timber Riding Wolf",[12354]="Brown Riding Kodo",[12355]="Gray Riding Kodo",[12358]="Riding Striped Frostsaber",[12359]="Riding Spotted Frostsaber",[12360]="Riding Striped Nightsaber",[12361]="Riding Nightsaber",[12362]="Riding Frostsaber",[12364]="Icy Blue Mechanostrider Mod A",[12366]="Unpainted Mechanostrider X",[12368]="White Mechanostrider Mod A",[12369]="Lord Kragaru",[12370]="Black Ram",[12371]="Frost Ram",[12374]="White Riding Ram Mount",[12377]="Wailing Spectre",[12378]="Damned Soul",[12379]="Unliving Caretaker",[12380]="Unliving Resident",[12381]="Ley Sprite",[12382]="Mana Sprite",[12383]="Nibbles",[12384]="Augustus the Touched",[12385]="Mortar Team Advanced Target Dummy",[12387]="Large Vile Slime",[12396]="Doomguard Commander",[12397]="Lord Kazzak",[12416]="Blackwing Legionnaire",[12418]="Gordok Hyena",[12419]="Lifelike Toad",[12420]="Blackwing Mage",[12422]="Death Talon Dragonspawn",[12423]="Guard Roberts",[12425]="Flint Shadowmore",[12426]="Masterwork Target Dummy",[12427]="Mountaineer Dolf",[12428]="Deathguard Kel",[12429]="Sentinel Shaya",[12430]="Grunt Kor'ja",[12431]="Gorefang",[12432]="Old Vicejaw",[12433]="Krethis the Shadowspinner",[12434]="Monster Generator (Blackwing)",[12435]="Razorgore the Untamed",[12457]="Blackwing Spellbinder",[12458]="Blackwing Taskmaster",[12459]="Blackwing Warlock",[12460]="Death Talon Wyrmguard",[12461]="Death Talon Overseer",[12463]="Death Talon Flamescale",[12464]="Death Talon Seether",[12465]="Death Talon Wyrmkin",[12467]="Death Talon Captain",[12468]="Death Talon Hatcher",[12473]="Arcanite Dragonling",[12474]="Emeraldon Boughguard",[12475]="Emeraldon Tree Warder",[12476]="Emeraldon Oracle",[12477]="Verdantine Boughguard",[12478]="Verdantine Oracle",[12479]="Verdantine Tree Warder",[12480]="Melris Malagan",[12481]="Justine Demalier",[12496]="Dreamtracker",[12497]="Dreamroarer",[12498]="Dreamstalker",[12557]="Grethok the Controller",[12576]="Grish Longrunner",[12577]="Jarrodenus",[12578]="Mishellena",[12579]="Bloodfury Ripper",[12580]="Reginald Windsor",[12581]="Mercutio",[12596]="Bibilfaz Featherwhistle",[12616]="Vhulgra",[12617]="Khaelyn Steelwing",[12636]="Georgia",[12656]="Thamarian",[12657]="Don Pompa",[12658]="Adam Lind",[12676]="Sharptalon",[12677]="Shadumbra",[12678]="Ursangous",[12696]="Senani Thunderheart",[12716]="Decedra Willham",[12717]="Muglash",[12718]="Gurda Ragescar",[12719]="Marukai",[12720]="Framnali",[12721]="Mitsuwa",[12722]="Vera Nightshade",[12723]="Har'alen",[12724]="Pixel",[12736]="Je'neu Sancrea",[12737]="Mastok Wrilehiss",[12738]="Nori Pridedrift",[12739]="Onyxia's Elite Guard",[12740]="Faustron",[12756]="Lady Onyxia",[12757]="Karang Amakkar",[12758]="Onyxia Trigger",[12759]="Tideress",[12776]="Hraug",[12777]="Captain Dirgehammer",[12778]="Lieutenant Rachel Vaccar",[12779]="Archmage Gaiman",[12780]="Sergeant Major Skyshadow",[12781]="Master Sergeant Biggins",[12782]="Captain O'Neal",[12783]="Lieutenant Karter",[12784]="Lieutenant Jackspring",[12785]="Sergeant Major Clate",[12786]="Guard Quine",[12787]="Guard Hammon",[12788]="Legionnaire Teena",[12789]="Blood Guard Hini'wana",[12790]="Advisor Willington",[12791]="Chieftain Earthbind",[12792]="Lady Palanseer",[12793]="Brave Stonehide",[12794]="Stone Guard Zarg",[12795]="First Sergeant Hola'mahi",[12796]="Raider Bork",[12797]="Grunt Korf",[12798]="Grunt Bek'rah",[12799]="Sergeant Ba'sha",[12800]="Chimaerok",[12801]="Arcane Chimaerok",[12802]="Chimaerok Devourer",[12803]="Lord Lakmaeran",[12805]="Officer Areyn",[12806]="Magmakin",[12807]="Greshka",[12816]="Xen'Zilla",[12818]="Ruul Snowhoof",[12836]="Wandering Protector",[12837]="Yama Snowhoof",[12856]="Ashenvale Outrunner",[12858]="Torek",[12859]="Splintertree Raider",[12860]="Duriel Moonfire",[12862]="Warsong Scout",[12863]="Warsong Runner",[12864]="Warsong Outrider",[12865]="Ambassador Malcin",[12866]="Myriam Moonsinger",[12867]="Kuray'bin",[12876]="Baron Aquanis",[12877]="Ertog Ragetusk",[12896]="Silverwing Sentinel",[12897]="Silverwing Warrior",[12898]="Phantim Illusion",[12899]="Axtroz",[12900]="Somnus",[12902]="Lorgus Jett",[12903]="Splintertree Guard",[12918]="Chief Murgut",[12919]="Nat Pagle",[12920]="Doctor Gregory Victor",[12921]="Enraged Foulweald",[12922]="Imp Minion",[12923]="Wounded Soldier",[12924]="Badly Injured Soldier",[12925]="Critically Injured Soldier",[12936]="Badly Injured Alliance Soldier",[12937]="Critically Injured Alliance Soldier",[12938]="Injured Alliance Soldier",[12939]="Doctor Gustaf VanHowzen",[12940]="Vorsha the Lasher",[12941]="Jase Farlane",[12942]="Leonard Porter",[12943]="Werg Thickblade",[12944]="Lokhtos Darkbargainer",[12956]="Zannok Hidepiercer",[12957]="Blimo Gadgetspring",[12958]="Gigget Zipcoil",[12959]="Nergal",[12960]="Christi Galvanis",[12961]="Kil'Hiwana",[12962]="Wik'Tar",[12976]="Kolkar Waylayer",[12977]="Kolkar Ambusher",[12996]="Mounted Ironforge Mountaineer",[12997]="Monty",[12998]="Dwarven Farmer",[12999]="World Invisible Trigger",[13000]="Gnome Engineer",[13016]="Deeprun Rat",[13017]="Enthralled Deeprun Rat",[13018]="Nipsy",[13019]="Burning Blade Seer",[13020]="Vaelastrasz the Corrupt",[13021]="Warpwood Crusher",[13022]="Whip Lasher",[13036]="Gordok Mastiff",[13076]="Dun Morogh Mountaineer",[13078]="Umi Thorson",[13079]="Keetar",[13080]="Irondeep Guard",[13081]="Irondeep Raider",[13082]="Milton Beats",[13084]="Bixi Wobblebonk",[13085]="Myrokos Silentform",[13086]="Aggi Rumblestomp",[13087]="Coldmine Invader",[13088]="Masha Swiftcut",[13089]="Coldmine Guard",[13096]="Coldmine Explorer",[13097]="Coldmine Surveyor",[13098]="Irondeep Surveyor",[13099]="Irondeep Explorer",[13116]="Alliance Spirit Guide",[13117]="Horde Spirit Guide",[13118]="Crimson Bodyguard",[13136]="Hive'Ashi Drone",[13137]="Lieutenant Rugba",[13138]="Lieutenant Spencer",[13139]="Commander Randolph",[13140]="Commander Dardosh",[13141]="Deeprot Stomper",[13142]="Deeprot Tangler",[13143]="Lieutenant Stronghoof",[13144]="Lieutenant Vol'talar",[13145]="Lieutenant Grummus",[13146]="Lieutenant Murp",[13147]="Lieutenant Lewis",[13148]="Flame of Ragnaros",[13152]="Commander Malgor",[13153]="Commander Mulfort",[13154]="Commander Louis Philips",[13157]="Makasgar",[13158]="Lieutenant Sanders",[13159]="James Clark",[13160]="Carrion Swarmer",[13161]="Aerie Gryphon",[13176]="Smith Regzar",[13177]="Vahgruk",[13178]="War Rider",[13179]="Wing Commander Guse",[13180]="Wing Commander Jeztor",[13181]="Wing Commander Mulverick",[13196]="Phase Lasher",[13197]="Fel Lash",[13216]="Gaelden Hammersmith",[13217]="Thanthaldis Snowgleam",[13218]="Grunnda Wolfheart",[13219]="Jorek Ironside",[13220]="Layo Starstrike",[13236]="Primalist Thurloga",[13256]="Lokholar the Ice Lord",[13257]="Murgot Deepforge",[13276]="Wildspawn Imp",[13277]="Dahne Pierce",[13278]="Duke Hydraxis",[13279]="Discordant Surge",[13280]="Hydrospawn",[13282]="Noxxion",[13283]="Lord Tony Romano",[13284]="Frostwolf Shaman",[13285]="Death Lash",[13296]="Lieutenant Largent",[13297]="Lieutenant Stouthandle",[13298]="Lieutenant Greywand",[13299]="Lieutenant Lonadin",[13300]="Lieutenant Mancuso",[13301]="Hive'Ashi Ambusher",[13316]="Coldmine Peon",[13317]="Coldmine Miner",[13318]="Commander Mortimer",[13319]="Commander Duffy",[13320]="Commander Karl Philips",[13321]="Small Frog",[13322]="Hydraxian Honor Guard",[13323]="Subterranean Diemetradon",[13324]="Seasoned Guardsman",[13325]="Seasoned Mountaineer",[13326]="Seasoned Defender",[13327]="Seasoned Sentinel",[13328]="Seasoned Guardian",[13329]="Seasoned Legionnaire",[13330]="Seasoned Warrior",[13331]="Veteran Defender",[13332]="Veteran Guardian",[13333]="Veteran Guardsman",[13334]="Veteran Legionnaire",[13335]="Veteran Mountaineer",[13336]="Veteran Sentinel",[13337]="Veteran Warrior",[13338]="Core Rat",[13358]="Stormpike Bowman",[13359]="Frostwolf Bowman",[13378]="Frostwolf Shredder Unit",[13396]="Irondeep Miner",[13397]="Irondeep Peon",[13416]="Stormpike Shredder Unit",[13417]="Sagorne Creststrider",[13418]="Kaymard Copperpinch",[13419]="Ivus the Forest Lord",[13420]="Penney Copperpinch",[13421]="Champion Guardian",[13422]="Champion Defender",[13424]="Champion Guardsman",[13425]="Champion Legionnaire",[13426]="Champion Mountaineer",[13427]="Champion Sentinel",[13429]="Nardstrum Copperpinch",[13430]="Jaycrue Copperpinch",[13431]="Whulwert Copperpinch",[13432]="Seersa Copperpinch",[13433]="Wulmort Jinglepocket",[13434]="Macey Jinglepocket",[13435]="Khole Jinglepocket",[13436]="Guchie Jinglepocket",[13437]="Wing Commander Ichman",[13438]="Wing Commander Slidore",[13439]="Wing Commander Vipore",[13440]="Frostwolf Wolf Rider",[13441]="Frostwolf Wolf Rider Commander",[13442]="Arch Druid Renferal",[13443]="Druid of the Grove",[13444]="Greatfather Winter",[13445]="Great-father Winter",[13446]="Field Marshal Teravaine",[13447]="Corporal Noreg Stormpike",[13448]="Sergeant Yazra Bloodsnarl",[13449]="Warmaster Garrick",[13456]="Noxxion's Spawn",[13476]="Zen'Balai",[13524]="Stormpike Commando",[13525]="Seasoned Commando",[13526]="Veteran Commando",[13527]="Champion Commando",[13529]="Seasoned Reaver",[13530]="Veteran Reaver",[13531]="Champion Reaver",[13533]="Spewed Larva",[13534]="Seasoned Coldmine Guard",[13535]="Veteran Coldmine Guard",[13536]="Champion Coldmine Guard",[13537]="Seasoned Coldmine Surveyor",[13538]="Veteran Coldmine Surveyor",[13539]="Champion Coldmine Surveyor",[13540]="Seasoned Irondeep Explorer",[13541]="Veteran Irondeep Explorer",[13542]="Champion Irondeep Explorer",[13543]="Seasoned Irondeep Raider",[13544]="Veteran Irondeep Raider",[13545]="Champion Irondeep Raider",[13546]="Seasoned Coldmine Explorer",[13547]="Veteran Coldmine Explorer",[13548]="Champion Coldmine Explorer",[13549]="Seasoned Coldmine Invader",[13550]="Veteran Coldmine Invader",[13551]="Champion Coldmine Invader",[13552]="Seasoned Irondeep Guard",[13553]="Veteran Irondeep Guard",[13554]="Champion Irondeep Guard",[13555]="Seasoned Irondeep Surveyor",[13556]="Veteran Irondeep Surveyor",[13557]="Champion Irondeep Surveyor",[13576]="Stormpike Ram Rider",[13577]="Stormpike Ram Rider Commander",[13596]="Rotgrip",[13597]="Frostwolf Explosives Expert",[13598]="Stormpike Explosives Expert",[13599]="Stolid Snapjaw",[13601]="Tinkerer Gizlock",[13602]="The Abominable Greench",[13616]="Frostwolf Stable Master",[13617]="Stormpike Stable Master",[13618]="Stabled Frostwolf",[13636]="Strange Snowman",[13656]="Willow",[13696]="Noxxious Scion",[13697]="Cavindra",[13698]="Keeper Marandis",[13699]="Selendra",[13716]="Celebras the Redeemed",[13717]="Centaur Pariah",[13718]="The Nameless Prophet",[13736]="Noxxious Essence",[13737]="Marandis' Sister",[13738]="Veng",[13739]="Maraudos",[13740]="Magra",[13741]="Gelk",[13742]="Kolk",[13743]="Corrupt Force of Nature",[13756]="PvP Graveyard Credit Marker",[13776]="Corporal Teeka Bloodsnarl",[13777]="Sergeant Durgen Stormpike",[13778]="PvP Tower Credit Marker",[13796]="PvP Mine Credit Marker",[13797]="Mountaineer Boombellow",[13798]="Jotek",[13816]="Prospector Stonehewer",[13817]="Voggah Deathgrip",[13836]="Burning Blade Nightmare",[13837]="Captured Stallion",[13839]="Royal Dreadguard",[13840]="Warmaster Laggrond",[13841]="Lieutenant Haggerdin",[13842]="Frostwolf Ambassador Rokhstrom",[13843]="Lieutenant Rotimer",[13876]="Mekgineer Trigger",[13896]="Scalebeard",[13916]="Dire Maul Crystal Totem",[13917]="Izzy Coppergrab",[13936]="Ravenholdt",[13959]="Alterac Yeti",[13976]="Tortured Drake",[13996]="Blackwing Technician",[14020]="Chromaggus",[14022]="Corrupted Red Whelp",[14023]="Corrupted Green Whelp",[14024]="Corrupted Blue Whelp",[14025]="Corrupted Bronze Whelp",[14026]="Trigger Guse",[14027]="Trigger Mulverick",[14028]="Trigger Jeztor",[14029]="Trigger Ichman",[14030]="Trigger Slidore",[14031]="Trigger Vipore",[14041]="Haggle",[14081]="Demon Portal",[14101]="Enraged Felguard",[14121]="Deeprun Diver",[14122]="Massive Geyser",[14123]="Steeljaw Snapper",[14143]="Ar'lia",[14162]="RaidMage",[14182]="Bounty Hunter Kolark",[14183]="Artilleryman Sheldonore",[14185]="Najak Hexxen",[14186]="Ravak Grimtotem",[14187]="Athramanis",[14188]="Dirk Swindle",[14221]="Gravis Slipknot",[14222]="Araga",[14223]="Cranky Benj",[14224]="7:XT",[14225]="Prince Kellen",[14226]="Kaskk",[14227]="Hissperak",[14228]="Giggler",[14229]="Accursed Slitherblade",[14230]="Burgle Eye",[14231]="Drogoth the Roamer",[14232]="Dart",[14233]="Ripscale",[14234]="Hayoc",[14235]="The Rot",[14236]="Lord Angler",[14237]="Oozeworm",[14241]="Ironbark the Redeemed",[14242]="[UNUSED] Sulhasa",[14261]="Blue Drakonid",[14262]="Green Drakonid",[14263]="Bronze Drakonid",[14264]="Red Drakonid",[14265]="Black Drakonid",[14266]="Shanda the Spinner",[14267]="Emogg the Crusher",[14268]="Lord Condar",[14269]="Seeker Aqualon",[14270]="Squiddic",[14271]="Ribchaser",[14272]="Snarlflare",[14273]="Boulderheart",[14275]="Tamra Stormpike",[14276]="Scargil",[14277]="Lady Zephris",[14278]="Ro'Bark",[14279]="Creepthess",[14280]="Big Samras",[14281]="Jimmy the Bleeder",[14282]="Frostwolf Bloodhound",[14283]="Stormpike Owl",[14284]="Stormpike Battleguard",[14285]="Frostwolf Battleguard",[14301]="Brinna Valanaar",[14302]="Chromatic Drakonid",[14303]="Petrified Guardian",[14304]="Kor'kron Elite",[14305]="Human Orphan",[14306]="Eskhandar",[14307]="Black Drakonid Spawner",[14308]="Ferra",[14309]="Red Drakonid Spawner",[14310]="Green Drakonid Spawner",[14311]="Bronze Drakonid Spawner",[14312]="Blue Drakonid Spawner",[14321]="Guard Fengus",[14322]="Stomper Kreeg",[14323]="Guard Slip'kik",[14324]="Cho'Rush the Observer",[14325]="Captain Kromcrush",[14326]="Guard Mol'dar",[14327]="Lethtendris",[14329]="Black War Wolf",[14330]="Black War Raptor",[14331]="Red Skeletal Warhorse",[14332]="Black War Steed",[14333]="Black War Kodo",[14334]="Black Battlestrider",[14335]="Black War Ram",[14336]="Black War Tiger",[14337]="Field Repair Bot 74A",[14338]="Knot Thimblejack",[14339]="Death Howl",[14340]="Alshirr Banebreath",[14342]="Ragepaw",[14343]="Olm the Wise",[14344]="Mongress",[14345]="The Ongar",[14347]="Highlord Demitrian",[14348]="Earthcaller Franzahl",[14349]="Pimgib",[14350]="Hydroling",[14351]="Gordok Bushwacker",[14353]="Mizzle the Crafty",[14354]="Pusillin",[14355]="Azj'Tordin",[14356]="Sawfin Frenzy",[14357]="Lake Thresher",[14358]="Shen'dralar Ancient",[14361]="Shen'dralar Wisp",[14362]="Thornling",[14363]="Thief Catcher Shadowdelve",[14364]="Shen'dralar Spirit",[14365]="Thief Catcher Farmountain",[14366]="Warpwood Spores",[14367]="Thief Catcher Thunderbrew",[14368]="Lorekeeper Lydros",[14369]="Shen'dralar Zealot",[14370]="Cadaverous Worm",[14371]="Shen'dralar Provisioner",[14372]="Winterfall Ambusher",[14373]="Sage Korolusk",[14374]="Scholar Runethorn",[14375]="Scout Stronghand",[14376]="Scout Manslayer",[14377]="Scout Tharr",[14378]="Huntress Skymane",[14379]="Huntress Ravenoak",[14380]="Huntress Leafrunner",[14381]="Lorekeeper Javon",[14382]="Lorekeeper Mykos",[14383]="Lorekeeper Kildrath",[14385]="Doomguard Minion",[14386]="Wandering Eye of Kilrogg",[14387]="Lothos Riftwaker",[14388]="Rogue Black Drake",[14389]="Netherwalker",[14390]="Expeditionary Mountaineer",[14392]="Overlord Runthak",[14393]="Expeditionary Priest",[14394]="Major Mattingly",[14395]="Griniblix the Spectator",[14396]="Eye of Immol'thar",[14397]="Mana Burst",[14398]="Eldreth Darter",[14399]="Arcane Torrent",[14400]="Arcane Feedback",[14401]="Master Elemental Shaper Krixix",[14402]="Seeker Cromwell",[14403]="Seeker Nahr",[14404]="Seeker Thompson",[14421]="Brown Prairie Dog",[14423]="Officer Jaxon",[14424]="Mirelow",[14425]="Gnawbone",[14426]="Harb Foulmountain",[14427]="Gibblesnik",[14428]="Uruson",[14429]="Grimmaw",[14430]="Duskstalker",[14431]="Fury Shelda",[14432]="Threggil",[14433]="Sludginn",[14434]="Alarm-o-Bot",[14435]="Prince Thunderaan",[14436]="Mor'zul Bloodbringer",[14437]="Gorzeeki Wildeyes",[14438]="Officer Pomeroy",[14439]="Officer Brady",[14440]="Hunter Sagewind",[14441]="Hunter Ragetotem",[14442]="Hunter Thunderhorn",[14443]="Doomguard Tap Trigger",[14444]="Orcish Orphan",[14445]="Lord Captain Wyrmak",[14446]="Fingat",[14447]="Gilmorian",[14448]="Molt Thorn",[14449]="Blackwing Orb Trigger",[14450]="Orphan Matron Nightingale",[14451]="Orphan Matron Battlewail",[14452]="Enslaved Doomguard Commander",[14453]="Orb of Domination",[14454]="The Windreaver",[14455]="Whirling Invader",[14456]="Blackwing Guardsman",[14457]="Princess Tempestria",[14458]="Watery Invader",[14459]="Nefarian's Troops",[14460]="Blazing Invader",[14461]="Baron Charr",[14462]="Thundering Invader",[14463]="Daio the Decrepit",[14464]="Avalanchion",[14465]="Alliance Battle Standard",[14466]="Horde Battle Standard",[14467]="Kroshius",[14469]="Niby the Almighty",[14470]="Impsy",[14471]="Setis",[14472]="Gretheer",[14473]="Lapress",[14474]="Zora",[14475]="Rex Ashil",[14476]="Krellack",[14477]="Grubthor",[14478]="Huricanian",[14479]="Twilight Lord Everun",[14480]="Alowicious Czervik",[14481]="Emmithue Smails",[14482]="Xorothian Imp",[14483]="Dread Guard",[14484]="Injured Peasant",[14485]="Plagued Peasant",[14486]="Scourge Footsoldier",[14487]="Gluggle",[14488]="Roloch",[14489]="Scourge Archer",[14490]="Rippa",[14491]="Kurmokk",[14492]="Verifonix",[14494]="Eris Havenfire",[14495]="Invisible Trigger One",[14496]="Stormwind Orphan",[14497]="Shellene",[14498]="Tosamina",[14499]="Horde Orphan",[14500]="J'eevee",[14502]="Xorothian Dreadsteed",[14503]="The Cleaner",[14504]="Dreadsteed Spirit",[14505]="Dreadsteed",[14506]="Lord Hel'nurath",[14507]="High Priest Venoxis",[14508]="Short John Mithril",[14509]="High Priest Thekal",[14510]="High Priestess Mar'li",[14511]="Shadowed Spirit",[14512]="Corrupted Spirit",[14513]="Malicious Spirit",[14514]="Banal Spirit",[14515]="High Priestess Arlokk",[14516]="Death Knight Darkreaver",[14517]="High Priestess Jeklik",[14518]="Aspect of Banality",[14519]="Aspect of Corruption",[14520]="Aspect of Malice",[14521]="Aspect of Shadow",[14522]="Ur'dan",[14523]="Ulathek",[14524]="Vartrus the Ancient",[14525]="Stoma the Ancient",[14526]="Hastat the Ancient",[14527]="Simone the Inconspicuous",[14528]="Precious",[14529]="Franklin the Friendly",[14530]="Solenor the Slayer",[14531]="Artorius the Amiable",[14532]="Razzashi Venombrood",[14533]="Simone the Seductress",[14534]="Klinfran the Crazed",[14535]="Artorius the Doombringer",[14536]="Nelson the Nice",[14538]="Precious the Devourer",[14539]="Swift Timber Wolf",[14540]="Swift Brown Wolf",[14541]="Swift Gray Wolf",[14542]="Great White Kodo",[14543]="Swift Olive Raptor",[14544]="Swift Orange Raptor",[14545]="Swift Blue Raptor",[14546]="Swift Brown Ram",[14547]="Swift White Ram",[14548]="Swift Gray Ram",[14549]="Great Brown Kodo",[14550]="Great Gray Kodo",[14551]="Swift Yellow Mechanostrider",[14552]="Swift White Mechanostrider",[14553]="Swift Green Mechanostrider",[14555]="Swift Mistsaber",[14556]="Swift Frostsaber",[14557]="Swift Dawnsaber",[14558]="Purple Skeletal Warhorse",[14559]="Swift Palomino",[14560]="Swift White Steed",[14561]="Swift Brown Steed",[14563]="Swift Red Mechanostrider",[14564]="Terrordale Spirit",[14565]="Charger",[14566]="Ancient Equine Spirit",[14567]="Derotain Mudsipper",[14568]="Darkreaver's Fallen Charger",[14581]="Sergeant Thunderhorn",[14601]="Ebonroc",[14602]="Swift Stormsaber",[14603]="Zapped Shore Strider",[14604]="Zapped Land Walker",[14605]="Bone Construct",[14621]="Overseer Maltorius",[14622]="Thorium Brotherhood Lookout",[14623]="Warsong Gulch Battlemaster",[14624]="Master Smith Burninate",[14625]="Overseer Oilfist",[14626]="Taskmaster Scrange",[14627]="Hansel Heavyhands",[14628]="Evonice Sootsmoker",[14629]="Loggerhead Snapjaw",[14630]="Leatherback Snapjaw",[14631]="Olive Snapjaw",[14632]="Hawksbill Snapjaw",[14633]="Albino Snapjaw",[14634]="Lookout Captain Lolo Longstriker",[14635]="Sleepy Dark Iron Worker",[14636]="Chambermaid Pillaclencher",[14637]="Zorbin Fandazzle",[14638]="Zapped Wave Strider",[14639]="Zapped Deep Strider",[14640]="Zapped Cliff Giant",[14645]="Warsong Gulch Herald",[14646]="Stratholme Trigger",[14661]="Stinglasher",[14662]="Corrupted Fire Nova Totem V",[14663]="Corrupted Stoneskin Totem VI",[14664]="Corrupted Healing Stream Totem V",[14666]="Corrupted Windfury Totem III",[14667]="Corrupted Totem",[14668]="Corrupted Infernal",[14682]="Sever",[14684]="Balzaphon",[14686]="Lady Falther'ess",[14688]="Prince Sandoval",[14690]="Revanchion",[14693]="Scorn",[14695]="Lord Blackwood",[14697]="Lumbering Horror",[14715]="Silverwing Elite",[14717]="Horde Elite",[14718]="Horde Laborer",[14720]="High Overlord Saurfang",[14721]="Field Marshal Afrasiabi",[14722]="Clavicus Knavingham",[14723]="Mistina Steelshield",[14724]="Bubulo Acerbus",[14725]="Raedon Duskstriker",[14726]="Rashona Straglash",[14727]="Vehena",[14728]="Rumstag Proudstrider",[14729]="Ralston Farnsley",[14730]="Revantusk Watcher",[14731]="Lard",[14732]="PvP CTF Credit Marker",[14733]="Sentinel Farsong",[14734]="Revantusk Drummer",[14736]="Primal Torntusk",[14737]="Smith Slagtree",[14738]="Otho Moji'ko",[14739]="Mystic Yayo'jin",[14740]="Katoom the Angler",[14741]="Huntsman Markhor",[14742]="Zap Farflinger",[14743]="Jhordy Lapforge",[14744]="Frostwolf Howler",[14745]="Stormpike Battle Charger",[14748]="Vilebranch Kidnapper",[14750]="Gurubashi Bat Rider",[14751]="Frostwolf Battle Standard",[14752]="Stormpike Battle Standard",[14753]="Illiyana Moonblaze",[14754]="Kelm Hargunth",[14755]="Tiny Green Dragon",[14756]="Tiny Red Dragon",[14757]="Elder Torntusk",[14758]="Zul'Gurub Trigger",[14761]="Creeping Doom",[14762]="Dun Baldar North Marshal",[14763]="Dun Baldar South Marshal",[14764]="Icewing Marshal",[14765]="Stonehearth Marshal",[14766]="Iceblood Marshal",[14767]="Tower Point Marshal",[14768]="East Frostwolf Marshal",[14769]="West Frostwolf Marshal",[14770]="Dun Baldar North Warmaster",[14771]="Dun Baldar South Warmaster",[14772]="East Frostwolf Warmaster",[14773]="Iceblood Warmaster",[14774]="Icewing Warmaster",[14775]="Stonehearth Warmaster",[14776]="Tower Point Warmaster",[14777]="West Frostwolf Warmaster",[14781]="Captain Shatterskull",[14821]="Razzashi Raptor",[14822]="Sayge",[14823]="Silas Darkmoon",[14825]="Withered Mistress",[14826]="Sacrificed Troll",[14827]="Burth",[14828]="Gelvas Grimegate",[14829]="Yebb Neblegear",[14830]="Unkillable Test Dummy 60 Warrior",[14832]="Kerri Hicks",[14833]="Chronos",[14834]="Hakkar",[14841]="Rinling",[14842]="Melnan Darkstone",[14843]="Kruban Darkblade",[14844]="Sylannia",[14845]="Stamp Thunderhorn",[14846]="Lhara",[14847]="Professor Thaddeus Paleo",[14848]="Herald",[14849]="Darkmoon Carnie",[14850]="Gruk",[14857]="Erk",[14859]="Guard Taruc",[14860]="Flik",[14861]="Blood Steward of Kirtonos",[14862]="Emissary Roman'khan",[14864]="Khaz Modan Ram",[14865]="Felinni",[14866]="Flik's Frog",[14867]="Jubjub",[14868]="Hornsley",[14869]="Pygmy Cockatrice",[14871]="Morja",[14872]="Trok",[14873]="Okla",[14874]="Karu",[14875]="Molthor",[14876]="Zandalar Headshrinker",[14878]="Jubling",[14879]="Arathi Basin Battlemaster",[14880]="Razzashi Skitterer",[14881]="Spider",[14882]="Atal'ai Mistress",[14883]="Voodoo Slave",[14884]="Parasitic Serpent",[14885]="Jonathan LeCraft",[14887]="Ysondre",[14888]="Lethon",[14889]="Emeriss",[14890]="Taerar",[14892]="Fang",[14893]="Guard Kurall",[14894]="Swarm of bees",[14901]="Peon",[14902]="Jin'rokh the Breaker",[14903]="Al'tabim the All-Seeing",[14904]="Maywiki of Zuldazar",[14905]="Falthir the Sightless",[14908]="Mogg",[14909]="Pooka",[14910]="Exzhal",[14911]="Zandalar Enforcer",[14912]="Captured Hakkari Zealot",[14921]="Rin'wosho the Trader",[14942]="Kartra Bloodsnarl",[14943]="Guse's War Rider",[14944]="Jeztor's War Rider",[14945]="Mulverick's War Rider",[14946]="Slidore's Gryphon",[14947]="Ichman's Gryphon",[14948]="Vipore's Gryphon",[14961]="Mirvyna Jinglepocket",[14962]="Dillord Copperpinch",[14963]="Gapp Jinglepocket",[14964]="Hecht Copperpinch",[14965]="Frenzied Bloodseeker Bat",[14981]="Elfarran",[14982]="Lylandris",[14983]="Field Marshal Oslight",[14984]="Sergeant Maclear",[14986]="Shade of Jin'do",[14987]="Powerful Healing Ward",[14988]="Ohgan",[14989]="Poisonous Cloud",[14990]="Defilers Envoy",[14991]="League of Arathor Emissary",[14994]="Zandalarian Event Generator",[15006]="Deze Snowbane",[15007]="Sir Malory Wheeler",[15008]="Lady Hoteshem",[15009]="Voodoo Spirit",[15010]="Jungle Toad",[15011]="Wagner Hammerstrike",[15012]="Javnir Nashak",[15021]="Deathmaster Dwire",[15022]="Deathstalker Mortis",[15041]="Spawn of Mar'li",[15042]="Zanza the Restless",[15043]="Zulian Crocolisk",[15045]="Arathi Farmer",[15046]="Forsaken Farmer",[15047]="Gurubashi",[15061]="Spirit of Jin'do",[15062]="Arathi Lumberjack",[15063]="Arathi Blacksmith",[15064]="Forsaken Blacksmith",[15065]="Lady",[15066]="Cleo",[15067]="Zulian Stalker",[15068]="Zulian Guardian",[15069]="Heart of Hakkar",[15070]="Vinchaxa",[15071]="Underfoot",[15072]="Spike",[15073]="Pat's Hellfire Guy",[15074]="Arathi Miner",[15075]="Forsaken Miner",[15076]="Zandalarian Emissary",[15077]="Riggle Bassbait",[15078]="Jang",[15079]="Fishbot 5000",[15080]="Servant of the Hand",[15082]="Gri'lek",[15083]="Hazza'rah",[15084]="Renataki",[15085]="Wushoolay",[15086]="Arathi Stablehand",[15087]="Forsaken Stablehand",[15088]="Booty Bay Elite",[15089]="Forsaken Lumberjack",[15090]="Swift Razzashi Raptor",[15091]="Zul'Gurub Panther Trigger",[15101]="Zulian Prowler",[15102]="Silverwing Emissary",[15103]="Stormpike Emissary",[15104]="Swift Zulian Tiger",[15105]="Warsong Envoy",[15106]="Frostwolf Envoy",[15107]="Arathi Horse",[15108]="Forsaken Horse",[15111]="Mad Servant",[15112]="Brain Wash Totem",[15113]="Honored Hero",[15114]="Gahz'ranka",[15115]="Honored Ancestor",[15116]="Grinkle",[15117]="Chained Spirit",[15119]="Barrus",[15122]="Gahz'ranka Dead",[15124]="Targot Jinglepocket",[15125]="Kosco Copperpinch",[15126]="Rutherford Twing",[15127]="Samuel Hawke",[15128]="Defiler Elite",[15130]="League of Arathor Elite",[15131]="Qeeju",[15136]="Hammerfall Elite",[15137]="Menethil Elite",[15138]="Silverpine Elite",[15140]="Pat's Splash Guy",[15141]="Portal of Madness",[15146]="Mad Voidwalker",[15162]="Scarlet Inquisitor",[15163]="Nightmare Illusion",[15164]="Mulgore Trigger",[15165]="Haughty Modiste",[15168]="Vile Scarab",[15169]="Ralo'shan the Eternal Watcher",[15170]="Rutgar Glyphshaper",[15171]="Frankal Stonebridge",[15172]="Glibb",[15174]="Calandrath",[15175]="Khur Hornstriker",[15176]="Vargus",[15177]="Cloud Skydancer",[15178]="Runk Windtamer",[15179]="Mishta",[15180]="Baristolth of the Shifting Sands",[15181]="Commander Mar'alith",[15182]="Vish Kozus",[15183]="Geologist Larksbane",[15184]="Cenarion Hold Infantry",[15185]="Brood of Nozdormu",[15186]="Murky",[15187]="Cenarion Emissary Jademoon",[15188]="Cenarion Emissary Blackhoof",[15189]="Beetix Ficklespragg",[15190]="Noggle Ficklespragg",[15191]="Windcaller Proudhorn",[15192]="Anachronos",[15193]="The Banshee Queen",[15194]="Hermit Ortell",[15195]="Wickerman Guardian",[15196]="Deathclasp",[15197]="Darkcaller Yanka",[15198]="Blackwing",[15199]="Sergeant Hartman",[15200]="Twilight Keeper Mayna",[15201]="Twilight Flamereaver",[15202]="Vyral the Vile",[15203]="Prince Skaldrenox",[15204]="High Marshal Whirlaxis",[15205]="Baron Kazum",[15206]="The Duke of Cynders",[15207]="The Duke of Fathoms",[15208]="The Duke of Shards",[15209]="Crimson Templar",[15211]="Azure Templar",[15212]="Hoary Templar",[15213]="Twilight Overlord",[15214]="Invisible Stalker",[15215]="Mistress Natalia Mar'alith",[15218]="Darkmoon Faire Cannon",[15220]="The Duke of Zephyrs",[15221]="Frankal Invisible Trigger",[15222]="Rutgar Invisible Trigger",[15224]="Dream Fog",[15229]="Vekniss Soldier",[15230]="Vekniss Warrior",[15233]="Vekniss Guardian",[15235]="Vekniss Stinger",[15236]="Vekniss Wasp",[15240]="Vekniss Hive Crawler",[15241]="Gryphon Rider Guard",[15242]="Bat Rider Guard",[15246]="Qiraji Mindslayer",[15247]="Qiraji Brainwasher",[15249]="Qiraji Lasher",[15250]="Qiraji Slayer",[15252]="Qiraji Champion",[15260]="Demented Druid Spirit",[15261]="Spirit Shade",[15262]="Obsidian Eradicator",[15263]="The Prophet Skeram",[15264]="Anubisath Sentinel",[15270]="Huum Wildmane",[15271]="Tender",[15273]="Arcane Wraith",[15274]="Mana Wyrm",[15275]="Emperor Vek'nilash",[15276]="Emperor Vek'lor",[15277]="Anubisath Defender",[15278]="Magistrix Erona",[15279]="Julia Sunstriker",[15280]="Jesthenis Sunstriker",[15281]="Lanthan Perilon",[15282]="Aurel Goldleaf",[15283]="Summoner Teli'Larien",[15284]="Matron Arena",[15285]="Pathstalker Kariel",[15286]="Xil'xix",[15287]="Shara Sunwing",[15288]="Aluntir",[15289]="Raelis Dawnstar",[15290]="Arakis",[15291]="Jainthess Thelryn",[15292]="Faraden Thelryn",[15293]="Aendel Windspear",[15294]="Feral Tender",[15295]="Well Watcher Solanian",[15296]="Arcanist Ithanas",[15297]="Arcanist Helion",[15298]="Tainted Arcane Wraith",[15299]="Viscidus",[15300]="Vekniss Drone",[15301]="Outrunner Alarion",[15302]="Shade of Taerar",[15303]="Maxima Blastenheimer",[15304]="Ancient Mana Spring Totem",[15305]="Lord Skwol",[15306]="Bor Wildmane",[15307]="Earthen Templar",[15308]="Twilight Prophet",[15309]="Spoops",[15310]="Jesper",[15311]="Anubisath Warder",[15312]="Obsidian Nullifier",[15314]="Moonkin (Druid - Tauren)",[15315]="Mylini Frostmoon",[15316]="Qiraji Scarab",[15317]="Qiraji Scorpion",[15318]="Hive'Zara Drone",[15319]="Hive'Zara Collector",[15320]="Hive'Zara Soldier",[15323]="Hive'Zara Sandstalker",[15324]="Qiraji Gladiator",[15325]="Hive'Zara Wasp",[15327]="Hive'Zara Stinger",[15328]="Steam Tank",[15333]="Silicate Feeder",[15334]="Giant Eye Tentacle",[15335]="Flesh Hunter",[15336]="Hive'Zara Tail Lasher",[15338]="Obsidian Destroyer",[15339]="Ossirian the Unscarred",[15340]="Moam",[15341]="General Rajaxx",[15343]="Qiraji Swarmguard",[15344]="Swarmguard Needler",[15348]="Kurinnaxx",[15350]="Horde Warbringer",[15351]="Alliance Brigadier General",[15352]="Greater Earth Elemental",[15353]="Katrina Shimmerstar",[15354]="Rachelle Gothena",[15355]="Anubisath Guardian",[15356]="Blue Baby Murloc",[15357]="Purple Baby Murloc",[15358]="Lurky",[15359]="Pink Baby Murloc",[15360]="Green Baby Murloc",[15361]="Murki",[15362]="Malfurion Stormrage",[15363]="Totem of Spirits",[15366]="Springpaw Cub",[15367]="Felendren the Banished",[15368]="Tonk Mine",[15369]="Ayamiss the Hunter",[15370]="Buru the Gorger",[15371]="Sunstrider Guardian",[15372]="Springpaw Lynx",[15378]="Merithra of the Dream",[15379]="Caelestrasz",[15380]="Arygos",[15381]="Anachronos the Ancient",[15382]="Fandral Staghelm",[15383]="Sergeant Stonebrow",[15384]="OLDWorld Trigger (DO NOT DELETE)",[15385]="Colonel Zerran",[15386]="Major Yeggeth",[15387]="Qiraji Warrior",[15388]="Major Pakkon",[15389]="Captain Drenn",[15390]="Captain Xurrem",[15391]="Captain Qeez",[15392]="Captain Tuubid",[15393]="[UNUSED] Ruins Qiraji Gladiator Named 7",[15395]="Nafien",[15397]="Marniel Amberlight",[15398]="Larianna Riverwind",[15399]="Lieutenant Dawnrunner",[15400]="Arathel Sunforge",[15401]="Ley-Keeper Velania",[15402]="Apprentice Mirveda",[15403]="Aeldon Sunbrand",[15404]="Velendris Whitemorn",[15405]="Ley-Keeper Caidanis",[15406]="Ven'jashi",[15407]="Chieftain Zul'Marosh",[15408]="Spearcrafter Otembe",[15409]="Old Whitebark",[15414]="Qiraji Wasp",[15415]="Southshore Stink Bomb Counter",[15416]="Ranger Jaela",[15417]="Velan Brightoak",[15418]="Magister Jaronis",[15419]="Kania",[15420]="Prospector Anvilward",[15421]="Qiraji Drone",[15422]="Qiraji Tank",[15423]="Kaldorei Infantry",[15424]="Anubisath Conqueror",[15426]="Ahn'Qiraj Trigger",[15428]="Sand Vortex",[15429]="Disgusting Oozeling",[15430]="Earth Elemental Totem",[15431]="Corporal Carnes",[15432]="Dame Twinbraid",[15433]="Innkeeper Delaniel",[15434]="Private Draxlegauge",[15437]="Master Nightsong",[15438]="Greater Fire Elemental",[15439]="Fire Elemental Totem",[15440]="Captain Blackanvil",[15441]="Ironforge Brigade Rifleman",[15442]="Ironforge Brigade Footman",[15443]="Janela Stouthammer",[15444]="Arcanist Nozzlespring",[15445]="Sergeant Major Germaine",[15446]="Bonnie Stoneflayer",[15447]="Wrath of Air Totem",[15448]="Private Porter",[15449]="Hive'Zora Abomination",[15450]="Marta Finespindle",[15451]="Sentinel Silversky",[15452]="Nurse Stonefield",[15453]="Keeper Moonshade",[15454]="Anachronos Quest Trigger Invisible",[15455]="Slicky Gastronome",[15456]="Sarah Sadwhistle",[15457]="Huntress Swiftriver",[15458]="Commander Stronghammer",[15459]="Miner Cromwell",[15460]="Grunt Maug",[15461]="Shrieker Scarab",[15462]="Spitting Scarab",[15463]="Grace of Air Totem III",[15464]="Strength of Earth Totem V",[15466]="Minion of Omen",[15467]="Omen",[15468]="Sunstrider Mana Tap Counter",[15469]="Senior Sergeant T'kelah",[15470]="Stoneskin Totem VII",[15471]="Lieutenant General Andorov",[15473]="Kaldorei Elite",[15474]="Stoneskin Totem VIII",[15475]="Beetle",[15476]="Scorpion",[15477]="Herbalist Proudfeather",[15478]="Stoneclaw Totem VII",[15479]="Strength of Earth Totem VI",[15480]="Searing Totem VII",[15481]="Spirit of Azuregos",[15482]="Fire Nova Totem VI",[15484]="Magma Totem V",[15485]="Flametongue Totem V",[15486]="Frost Resistance Totem IV",[15487]="Fire Resistance Totem IV",[15488]="Healing Stream Totem VI",[15489]="Mana Spring Totem V",[15490]="Nature Resistance Totem IV",[15491]="Eranikus Tyrant of the Dream",[15492]="Windwall Totem IV",[15493]="Marsilla Dawnstar",[15494]="Yasmine Teli'Larien",[15495]="Nighthaven Defender",[15496]="Windfury Totem IV",[15497]="Windfury Totem V",[15498]="Windcaller Yessendra",[15499]="Warden Haro",[15500]="Keyl Swiftclaw",[15501]="Aleinia",[15502]="Andorgos",[15503]="Kandrostrasz",[15504]="Vethsera",[15505]="Canal Frenzy",[15508]="Batrider Pele'keiki",[15509]="Princess Huhuran",[15510]="Fankriss the Unyielding",[15511]="Lord Kri",[15512]="Apothecary Jezel",[15513]="Ranger Sallina",[15514]="Buru Egg",[15515]="Skinner Jamani",[15516]="Battleguard Sartura",[15517]="Ouro",[15520]="O'Reily",[15521]="Hive'Zara Hatchling",[15522]="Sergeant Umala",[15524]="Temporary Reindeer",[15525]="Doctor Serratus",[15526]="Meridith the Mermaiden",[15527]="Mana Fiend",[15528]="Healer Longrunner",[15529]="Lady Callow",[15532]="Stoneguard Clayhoof",[15533]="Bloodguard Rawtar",[15534]="Fisherman Lin'do",[15535]="Chief Sharpclaw",[15537]="Anubisath Warrior",[15538]="Anubisath Swarmguard",[15539]="General Zog",[15540]="Windcaller Kaldon",[15541]="Twilight Marauder Morna",[15542]="Twilight Marauder",[15543]="Princess Yauj",[15544]="Vem",[15545]="Cenarion Outrider",[15546]="Hive'Zara Swarmer",[15547]="Spectral Charger",[15548]="Spectral Stallion",[15549]="Elder Morndeep",[15550]="Attumen the Huntsman",[15551]="Spectral Stable Hand",[15552]="Doctor Weavil",[15553]="Doctor Weavil's Flying Machine",[15554]="Number Two",[15555]="Hive'Zara Larva",[15556]="Elder Splitrock",[15557]="Elder Rumblerock",[15558]="Elder Silvervein",[15559]="Elder Highpeak",[15560]="Elder Stonefort",[15561]="Elder Obsidian",[15562]="Elder Hammershout",[15563]="Elder Bellowrage",[15564]="Elder Darkcore",[15565]="Elder Stormbrow",[15566]="Elder Snowcrown",[15567]="Elder Ironband",[15568]="Elder Graveborn",[15569]="Elder Goldwell",[15570]="Elder Primestone",[15571]="Maws",[15572]="Elder Runetotem",[15573]="Elder Ragetotem",[15574]="Elder Stonespire",[15575]="Elder Bloodhoof",[15576]="Elder Winterhoof",[15577]="Elder Skychaser",[15578]="Elder Wildmane",[15579]="Elder Darkhorn",[15580]="Elder Ezra Wheathoof",[15581]="Elder Grimtotem",[15582]="Elder Windtotem",[15583]="Elder Thunderhorn",[15584]="Elder Skyseer",[15585]="Elder Dawnstrider",[15586]="Elder Dreamseer",[15587]="Elder Mistwalker",[15588]="Elder High Mountain",[15589]="Eye of C'Thun",[15590]="Ossirian Crystal Trigger",[15591]="Minion of Weavil",[15592]="Elder Windrun",[15593]="Elder Starsong",[15594]="Elder Moonstrike",[15595]="Elder Bladeleaf",[15596]="Elder Starglade",[15597]="Elder Moonwarden",[15598]="Elder Bladeswift",[15599]="Elder Bladesing",[15600]="Elder Skygleam",[15601]="Elder Starweave",[15602]="Elder Meadowrun",[15603]="Elder Nightwind",[15604]="Elder Morningdew",[15605]="Elder Riversong",[15606]="Elder Brightspear",[15607]="Elder Farwhisper",[15608]="Medivh",[15609]="Cenarion Scout Landion",[15610]="Cenarion Scout Azenel",[15611]="Cenarion Scout Jalia",[15612]="Krug Skullsplit",[15613]="Merok Longstride",[15614]="J.D. Shadesong",[15615]="Shadow Priestess Shai",[15616]="Orgrimmar Legion Grunt",[15617]="Orgrimmar Legion Axe Thrower",[15620]="Hive'Regal Hunter-Killer",[15621]="Yauj Brood",[15622]="Vekniss Borer",[15623]="Xandivious",[15624]="Forest Wisp",[15625]="Twilight Corrupter",[15628]="Eranikus the Redeemed",[15629]="Nightmare Phantasm",[15630]="Spawn of Fankriss",[15631]="Spotlight",[15633]="Tyrande",[15634]="Priestess of the Moon",[15635]="Eversong Tender",[15636]="Eversong Green Keeper",[15637]="Withered Green Keeper",[15638]="Arcane Patroller",[15641]="Amani Axe Thrower",[15642]="Amani Shadowpriest",[15643]="Amani Berserker",[15644]="Wretched Urchin",[15645]="Wretched Thug",[15647]="Mana Stalker",[15648]="Manawraith",[15649]="Feral Dragonhawk Hatchling",[15650]="Crazed Dragonhawk",[15651]="Springpaw Stalker",[15652]="Elder Springpaw",[15654]="Plaguebone Pillager",[15655]="Rotlimb Cannibal",[15656]="Angershade",[15657]="Darkwraith",[15658]="Rotlimb Marauder",[15659]="Auctioneer Jaxon",[15661]="Baby Shark",[15663]="War Effort Volunteer",[15664]="Metzen the Reindeer",[15665]="Mounted Reindeer",[15666]="Blue Qiraji Battle Tank",[15667]="Glob of Viscidus",[15668]="Grimscale Murloc",[15669]="Grimscale Oracle",[15670]="Grimscale Forager",[15675]="Auctioneer Stockton",[15676]="Auctioneer Yarly",[15677]="Auctioneer Graves",[15678]="Auctioneer Silva'las",[15679]="Auctioneer Cazarez",[15681]="Auctioneer O'reely",[15682]="Auctioneer Cain",[15683]="Auctioneer Naxxremis",[15684]="Auctioneer Tricket",[15685]="Southsea Kidnapper",[15686]="Auctioneer Rhyker",[15687]="Moroes",[15688]="Terestian Illhoof",[15689]="Netherspite",[15690]="Prince Malchezaar",[15691]="The Curator",[15692]="Dark Iron Kidnapper",[15693]="Jonathan the Revelator",[15694]="Stormwind Reveler",[15695]="Vek Twins Trigger",[15696]="War Effort Recruit",[15698]="Father Winter's Helper",[15699]="Tranquil Mechanical Yeti",[15700]="Warlord Gorchuk",[15701]="Field Marshal Snowfall",[15702]="Senior Sergeant Taiga",[15703]="Senior Sergeant Grimsford",[15704]="Senior Sergeant Kai'jin",[15705]="Winter's Little Helper",[15706]="Winter Reindeer",[15707]="Master Sergeant Fizzlebolt",[15708]="Master Sergeant Maclure",[15709]="Master Sergeant Moonshadow",[15710]="Tiny Snowman",[15711]="Black Qiraji Battle Tank",[15712]="Dirt Mound",[15714]="Yellow Qiraji Battle Tank",[15715]="Green Qiraji Battle Tank",[15716]="Red Qiraji Battle Tank",[15718]="Ouro Scarab",[15719]="Thunder Bluff Reveler",[15720]="Timbermaw Ancestor",[15721]="Mechanical Greench",[15722]="Squire Leoren Mal'derath",[15723]="Booty Bay Reveler",[15724]="Drunken Bruiser",[15725]="Claw Tentacle",[15726]="Eye Tentacle",[15727]="C'Thun",[15728]="Giant Claw Tentacle",[15730]="Pat's Snowcloud Guy",[15731]="Darnassus Commendation Officer",[15732]="Wonderform Operator",[15733]="Gnomeregan Commendation Officer",[15734]="Ironforge Commendation Officer",[15735]="Stormwind Commendation Officer",[15736]="Orgrimmar Commendation Officer",[15737]="Darkspear Commendation Officer",[15738]="Undercity Commendation Officer",[15739]="Thunder Bluff Commendation Officer",[15740]="Colossus of Zora",[15741]="Colossus of Regal",[15742]="Colossus of Ashi",[15743]="Colossal Anubisath Warbringer",[15744]="Imperial Qiraji Destroyer",[15745]="Greatfather Winter's Helper",[15746]="Great-father Winter's Helper",[15747]="Qiraji Captain",[15748]="Lesser Anubisath Warbringer",[15749]="Lesser Silithid Flayer",[15750]="Qiraji Major",[15751]="Anubisath Warbringer",[15752]="Silithid Flayer",[15753]="Qiraji Brigadier General",[15754]="Greater Anubisath Warbringer",[15756]="Greater Silithid Flayer",[15757]="Qiraji Lieutenant General",[15758]="Supreme Anubisath Warbringer",[15759]="Supreme Silithid Flayer",[15760]="Winter Reveler",[15761]="Officer Vu'Shalay",[15762]="Officer Lunalight",[15763]="Officer Porterhouse",[15764]="Officer Ironbeard",[15765]="Officer Redblade",[15766]="Officer Maloof",[15767]="Officer Thunderstrider",[15768]="Officer Gothena",[15769]="Resonating Crystal",[15770]="Greater Resonating Crystal",[15771]="Major Resonating Crystal",[15778]="Mouth Tentacle Mount Visual",[15780]="Human Male Winter Reveler",[15781]="Human Female Winter Reveler",[15787]="Goblin Female Winter Reveler",[15797]="Colossus Researcher Sophia",[15798]="Colossus Researcher Nestor",[15799]="Colossus Researcher Eazel",[15800]="Exit Trigger",[15801]="GONG BOY DND DNR",[15802]="Flesh Tentacle",[15803]="Tranquil Air Totem",[15804]="Lesser Resonating Crystal",[15805]="Minor Resonating Crystal",[15806]="Qiraji Lieutenant",[15807]="Minor Anubisath Warbringer",[15808]="Minor Silithid Flayer",[15810]="Eroded Anubisath Warbringer",[15811]="Faltering Silithid Flayer",[15812]="Qiraji Officer",[15813]="Qiraji Officer Zod",[15814]="Qiraji Lieutenant Jo-rel",[15815]="Qiraji Captain Ka'ark",[15816]="Qiraji Major He'al-ie",[15817]="Qiraji Brigadier General Pax-lish",[15818]="Lieutenant General Nokhor",[15839]="Might of Kalimdor Grunt",[15840]="Might of Kalimdor Sergeant",[15841]="Might of Kalimdor Lieutenant",[15842]="Might of Kalimdor Mage",[15843]="Might of Kalimdor Priest",[15844]="Might of Kalimdor Restorer",[15845]="Might of Kalimdor Captain",[15846]="Might of Kalimdor Archer",[15847]="Might of Kalimdor Shaman",[15848]="Might of Kalimdor Infantry",[15849]="Might of Kalimdor Druid",[15850]="Might of Kalimdor Skirmisher",[15851]="Might of Kalimdor Marshal",[15852]="Orgrimmar Elite Shieldguard",[15853]="Orgrimmar Elite Infantryman",[15854]="Orgrimmar Elite Cavalryman",[15855]="Tauren Rifleman",[15856]="Tauren Primalist",[15857]="Stormwind Cavalryman",[15858]="Stormwind Infantry",[15859]="Stormwind Archmage",[15860]="Kaldorei Marksman",[15861]="Ironforge Infantryman",[15862]="Ironforge Cavalryman",[15863]="Darkspear Shaman",[15864]="Valadar Starsong",[15865]="Might of Kalimdor Major",[15866]="Commander Lynore Windstryke",[15867]="Might of Kalimdor Archmage",[15868]="Highlord Leoric Von Zeldig",[15869]="Malagav the Tactician",[15870]="Duke August Foehammer",[15871]="Elder Bronzebeard",[15872]="Pat's Firework Cluster Guy (BLUE)",[15873]="Pat's Firework Cluster Guy (RED)",[15874]="Pat's Firework Cluster Guy (GREEN)",[15878]="Warcaller Finster",[15879]="Pat's Firework Guy - BLUE",[15880]="Pat's Firework Guy - GREEN",[15882]="Pat's Firework Guy - RED",[15883]="Pat's Firework Guy - YELLOW",[15884]="Pat's Firework Guy - WHITE",[15885]="Pat's Firework Guy - BLUE BIG",[15886]="Pat's Firework Guy - GREEN BIG",[15887]="Pat's Firework Guy - PURPLE BIG",[15888]="Pat's Firework Guy - RED BIG",[15889]="Pat's Firework Guy - WHITE BIG",[15890]="Pat's Firework Guy - YELLOW BIG",[15891]="Lunar Festival Herald",[15892]="Lunar Festival Emissary",[15893]="Lunar Firework Credit Marker",[15894]="Lunar Cluster Credit Marker",[15895]="Lunar Festival Harbinger",[15896]="C'Thun Portal",[15897]="Large Spotlight",[15898]="Lunar Festival Vendor",[15901]="Vanquished Tentacle",[15902]="Giant Spotlight",[15903]="Sergeant Carnes",[15904]="Tentacle Portal",[15905]="Darnassus Reveler",[15906]="Ironforge Reveler",[15907]="Undercity Reveler",[15908]="Orgrimmar Reveler",[15909]="Fariel Starsong",[15910]="Giant Tentacle Portal",[15911]="Pat's Firework Cluster Guy (BLUE BIG)",[15912]="Pat's Firework Cluster Guy (GREEN BIG)",[15914]="Pat's Firework Cluster Guy (RED BIG)",[15917]="Lunar Festival Reveler",[15918]="Pat's Firework Cluster Guy (ELUNE)",[15919]="Jade Owl",[15920]="Hathvelion Sungaze",[15921]="Captain Kelisendra",[15923]="Golden Hare",[15924]="Apprentice Loralthalis",[15925]="Toxic Slime",[15926]="Black Pearl Panther",[15927]="Truesilver Crab",[15928]="Thaddius",[15929]="Stalagg",[15930]="Feugen",[15931]="Grobbulus",[15932]="Gluth",[15933]="Poison Cloud",[15934]="Hive'Zara Hornet",[15935]="Truesilver Boar",[15936]="Heigan the Unclean",[15937]="Mmmrrrggglll",[15938]="Eversong Ranger",[15939]="Ranger Degolien",[15940]="Ranger Selron",[15941]="Apprentice Ralen",[15942]="Ranger Sareyn",[15944]="Ruby Serpent",[15945]="Apprentice Meledor",[15946]="Apprentice Veya",[15948]="Emerald Owl",[15949]="Thaelis the Hungerer",[15950]="Grimscale Seer",[15951]="Magister Duskwither",[15952]="Maexxna",[15953]="Grand Widow Faerlina",[15954]="Noth the Plaguebringer",[15955]="Black Diamond Crab",[15956]="Anub'Rekhan",[15957]="Ouro Spawner",[15958]="Gharsul the Remorseless",[15959]="Dark Iron Scorpid",[15961]="Lunar Festival Sentinel",[15962]="Vekniss Hatchling",[15963]="The Master's Eye",[15964]="Buru Egg Trigger",[15965]="Duskwither Apprentice",[15966]="Mana Serpent",[15967]="Ether Fiend",[15968]="Darnassian Scout",[15969]="Groundskeeper Wyllithen",[15970]="Instructor Antheol",[15971]="Silvermoon Apprentice",[15972]="Alterac Valley Battlemaster",[15974]="Dread Creeper",[15975]="Carrion Spinner",[15976]="Venom Stalker",[15977]="Poisonous Skitterer",[15978]="Crypt Reaver",[15979]="Tomb Horror",[15980]="Naxxramas Cultist",[15981]="Naxxramas Acolyte",[15984]="Sartura's Royal Guard",[15989]="Sapphiron",[15990]="Kel'Thuzad",[15991]="Lady Dena Kennedy",[16001]="Aldris Fourclouds",[16002]="Colara Dean",[16003]="Deathguard Tor",[16004]="Elenia Haydon",[16005]="Lieutenant Jocryn Heldric",[16006]="InCombat Trigger",[16007]="Orok Deathbane",[16008]="Temma of the Wells",[16009]="Tormek Stoneriver",[16011]="Loatheb",[16012]="Mokvar",[16013]="Deliana",[16014]="Mux Manascrambler",[16015]="Vi'el",[16016]="Anthion Harmon",[16017]="Patchwork Golem",[16018]="Bile Retcher",[16019]="Boorana Thunderhoof",[16020]="Mad Scientist",[16021]="Living Monstrosity",[16022]="Surgical Assistant",[16024]="Embalming Slime",[16025]="Stitched Giant",[16027]="Living Poison",[16028]="Patchwerk",[16029]="Sludge Belcher",[16030]="Maggot",[16031]="Ysida Harmon",[16032]="Falrin Treeshaper",[16033]="Bodley",[16034]="Plague Beast",[16036]="Frenzied Bat",[16037]="Plagued Bat",[16042]="Lord Valthalak",[16043]="Magma Lord Bokk",[16044]="Mor Grayhoof Trigger",[16045]="Isalien Trigger",[16046]="Jarien and Sothos Trigger",[16047]="Kormok Trigger",[16048]="Lord Valthalak Trigger",[16049]="Lefty",[16050]="Rotfang",[16051]="Snokh Blackspine",[16052]="Malgen Longspear",[16053]="Korv",[16054]="Rezznik",[16055]="Va'jashni",[16056]="Diseased Maggot",[16057]="Rotting Maggot",[16058]="Volida",[16059]="Theldren",[16060]="Gothik the Harvester",[16061]="Instructor Razuvious",[16062]="Highlord Mograine",[16063]="Sir Zeliek",[16064]="Thane Korth'azz",[16065]="Lady Blaumeux",[16066]="Spectral Assassin",[16067]="Deathcharger Steed",[16068]="Larva",[16069]="Gurky",[16070]="Garel Redrock",[16072]="Tidelord Rrurgaz",[16073]="Spirit of Lord Valthalak",[16075]="Kwee Q. Peddlefeet",[16076]="Tharl Stonebleeder",[16078]="Unkillable Fixed Damage Test Dummy",[16079]="Theldren Trigger",[16080]="Mor Grayhoof",[16082]="Naxxramas Trigger",[16085]="Peddlefeet",[16089]="Omar the Test Dragon",[16090]="Rousch",[16091]="Dirk Thunderwood",[16092]="Silithis Teleporter",[16093]="Spectral Stalker",[16094]="Durik",[16095]="Gnashjaw",[16096]="Steamwheedle Bruiser",[16097]="Isalien",[16098]="Empyrean",[16100]="Ysida's Trigger",[16101]="Jarien",[16102]="Sothos",[16103]="Spirit of Jarien",[16104]="Spirit of Sothos",[16105]="Aristan Mottar",[16106]="Evert Sorisam",[16107]="Apothecary Staffron Lerent",[16108]="Fenstad Argyle",[16109]="Mara Rennick",[16110]="Annalise Lerent",[16111]="Love Fool",[16112]="Crusade Commander Korfax",[16113]="Father Inigo Montoy",[16114]="Scarlet Commander Marjhan",[16115]="Crusade Commander Eligor Dawnbringer",[16116]="Archmage Angela Dosantos",[16117]="Plagued Swine",[16118]="Kormok",[16119]="Bone Minion",[16120]="Bone Mage",[16121]="Mortar",[16123]="Gremnik Rizzlesprang",[16124]="Unrelenting Trainee",[16125]="Unrelenting Death Knight",[16126]="Unrelenting Rider",[16127]="Spectral Trainee",[16128]="Rhonin",[16129]="Shadow Fissure",[16131]="Rohan the Assassin",[16132]="Huntsman Leopold",[16133]="Mataus the Wrathcaster",[16134]="Rimblat Earthshatter",[16135]="Rayne",[16136]="Necrotic Shard",[16137]="Naxxramas Military Sub-Boss Trigger",[16139]="Cenarion Hold Reservist",[16141]="Ghoul Berserker",[16142]="Bile Sludge",[16143]="Shadow of Doom",[16144]="Lord Saltheril",[16145]="Death Knight Captain",[16146]="Death Knight",[16147]="Elisara Sunstriker",[16148]="Spectral Death Knight",[16149]="Spectral Horse",[16150]="Spectral Rider",[16151]="Midnight",[16152]="Attumen the Huntsman",[16153]="Berthold",[16154]="Risen Squire",[16156]="Dark Touched Warrior",[16157]="Doom Touched Warrior",[16158]="Death Touched Warrior",[16159]="Calliard",[16160]="Magistrix Eredania",[16161]="Arcanist Sheynathren",[16162]="Wretched Hooligan",[16163]="Death Knight Cavalier",[16164]="Shade of Naxxramas",[16165]="Necro Knight",[16166]="Theldren Kill Credit",[16167]="Bony Construct",[16168]="Stoneskin Gargoyle",[16169]="Hastings",[16170]="Coldmist Stalker",[16171]="Coldmist Widow",[16172]="Damaged Necrotic Shard",[16173]="Shadowbat",[16174]="Greater Shadowbat",[16175]="Vampiric Shadowbat",[16176]="Shadowbeast",[16177]="Dreadbeast",[16178]="Phase Hound",[16179]="Hyakiss the Lurker",[16180]="Shadikith the Glider",[16181]="Rokad the Ravager",[16183]="Courier Dawnstrider",[16184]="Nerubian Overseer",[16185]="Anathos",[16186]="Vara",[16187]="Quartermaster Lymel",[16189]="Skymaster Sunwing",[16191]="Sathren Azuredawn",[16192]="Skymistress Gloaming",[16193]="Skeletal Smith",[16194]="Unholy Axe",[16196]="Apothecary Thedra",[16197]="Arcanist Vandril",[16198]="Apothecary Renzithen",[16199]="Magister Darenis",[16200]="Deathstalker Rathiel",[16201]="Geranis Whitemorn",[16202]="Farstrider Sedina",[16203]="Ranger Vynna",[16204]="Magister Idonis",[16205]="Magistrix Aminel",[16206]="Apprentice Varnis",[16208]="Apothecary Enith",[16209]="Ranger Vedoran",[16210]="Magistrix Landra Dawnstrider",[16211]="Naxxramas Combat Dummy",[16212]="Dispatch Commander Metz",[16213]="Ranger Lethvalin",[16215]="Unholy Staff",[16216]="Unholy Swords",[16217]="Lieutenant Tomathren",[16218]="Tesla Coil",[16219]="Ranger Valanna",[16220]="Captain Helios",[16221]="Silvermoon Guardian",[16222]="Silvermoon City Guardian",[16224]="Rathis Tomber",[16225]="Pack Mule",[16226]="Guard Didier",[16227]="Bragok",[16228]="Argent Dawn Infantry",[16229]="Injured Argent Dawn Infantry",[16230]="Cultist Engineer",[16231]="Dame Auriferous",[16232]="Caravan Mule",[16236]="Eye Stalk",[16237]="Magister Sylastor",[16238]="Night Elf Ambusher",[16239]="Magister Kaendris",[16240]="Arcanist Janeda",[16241]="Argent Recruiter",[16242]="Tranquillien Scout",[16243]="Plague Slime",[16244]="Infectious Ghoul",[16245]="Luzran",[16246]="Knucklerot",[16247]="Borgoth the Bloodletter",[16248]="Jurion the Deceiver",[16249]="Masophet the Black",[16250]="Mirdoran the Fallen",[16251]="Deathstalker Maltendis",[16252]="High Executor Mavren",[16253]="Master Chef Mouldier",[16254]="Field Marshal Chambers",[16255]="Argent Scout",[16256]="Jessica Chambers",[16257]="Geron",[16258]="Farsil",[16259]="Sheri",[16260]="Areyn",[16261]="Sathiel",[16262]="Landraelanis",[16263]="Paelarin",[16264]="Winaestra",[16266]="Celoenus",[16267]="Daestra",[16268]="Eralan",[16269]="Garridel",[16270]="Hannovia",[16271]="Telenus",[16272]="Kanaria",[16273]="Mathreyn",[16274]="Narina",[16275]="Noellene",[16276]="Ponaris",[16277]="Quarelestra",[16278]="Sathein",[16279]="Tannaria",[16280]="Perascamin",[16281]="Keeper of the Rolls",[16283]="Packmaster Stonebruiser",[16284]="Argent Medic",[16285]="Argent Emissary",[16286]="Spore",[16287]="Ambassador Sunsorrow",[16288]="Advisor Sorrelon",[16289]="Advisor Valwyn",[16290]="Irradiated Slime",[16291]="Magister Quallestis",[16292]="Aquantion",[16293]="Apprentice Shatharia",[16294]="Aldaron the Reckless",[16295]="Ranger Lilatha",[16297]="Mutated Grub",[16298]="Spectral Soldier",[16299]="Skeletal Shocktrooper",[16300]="Risen Creeper",[16301]="Risen Hungerer",[16302]="Risen Stalker",[16303]="Dreadbone Skeleton",[16304]="Arcane Devourer",[16305]="Dreadbone Sentinel",[16306]="Scourge Invasion Minion spawner Ghost/Ghoul",[16307]="Deathcage Scryer",[16308]="Deathcage Sorcerer",[16309]="Gangled Cannibal",[16310]="Mana Shifter",[16311]="Phantasmal Watcher",[16313]="Nerubis Guard",[16314]="Fallen Ranger",[16315]="Deatholme Acolyte",[16316]="Stonewing Tracker",[16317]="Deatholme Necromancer",[16318]="Deatholme Darkmage",[16319]="Nerubis Centurion",[16320]="Eye of Dar'Khan",[16321]="Wailer",[16322]="Gangled Flesheater",[16323]="Phantasmal Seeker",[16324]="Stonewing Slayer",[16325]="Quel'dorei Ghost",[16326]="Quel'dorei Wraith",[16327]="Ravening Apparition",[16328]="Vengeful Apparition",[16329]="Dar'Khan Drathir",[16330]="Sentinel Spy"} \ No newline at end of file +id_to_npc = {[3]="Flesh Eater",[6]="Kobold Vermin",[19]="Benny Questgiver",[29]="Kanrethad",[30]="Forest Spider",[31]="Furbolg",[36]="Harvest Golem",[38]="Defias Thug",[40]="Kobold Miner",[43]="Mine Spider",[46]="Murloc Forager",[48]="Skeletal Warrior",[49]="Lesser Succubus",[54]="Corina Steele",[55]="Mean Ed the Blacksmith",[60]="Ruklar the Trapper",[61]="Thuros Lightfingers",[62]="Gug Fatcandle",[65]="Peasant Woman",[66]="Tharynn Bouden",[67]="[UNUSED] Marlon Darnik",[68]="Stormwind City Guard",[69]="Diseased Timber Wolf",[70]="[UNUSED] Lower Class Citizen",[71]="Rankist",[72]="[UNUSED] Antaris the Trader",[73]="Veraina the Apothecary",[74]="Kurran Steele",[75]="[UNUSED] Vashaum Nightwither",[78]="Janos Hammerknuckle",[79]="Narg the Taskmaster",[80]="Kobold Laborer",[81]="[UNUSED] Luglar the Clogger",[82]="Crazy Leonetti",[89]="Infernal",[90]="Sea Giant",[92]="Rock Elemental",[93]="Centaur",[94]="Cutpurse",[95]="Defias Smuggler",[97]="Riverpaw Runt",[98]="Riverpaw Taskmaster",[99]="Morgaine the Sly",[100]="Gruff Swiftbite",[102]="Bronze Dragonspawn",[103]="Garrick Padfoot",[105]="Tall Strider",[106]="Kodo Beast",[107]="Raptor",[108]="Green Dragonspawn",[109]="White Dragonspawn",[111]="Priest",[112]="Priestess",[113]="Stonetusk Boar",[114]="Harvest Watcher",[115]="Harvest Reaper",[116]="Bandit",[117]="Riverpaw Gnoll",[118]="Prowler",[119]="Longsnout",[120]="Forest Stalker",[121]="Defias Pathstalker",[122]="Defias Highwayman",[123]="Riverpaw Mongrel",[124]="Riverpaw Brute",[125]="Riverpaw Overseer",[126]="Murloc Coastrunner",[127]="Murloc Tidehunter",[128]="Angry Programmer Tweedle Dee",[129]="Angry Programmer Tweedle Dum",[130]="Programmer Vendor",[149]="[UNUSED] Small Black Dragon Whelp",[150]="[UNUSED] Brother Milius",[151]="Brog Hamfist",[152]="Brother Danil",[153]="Bethina",[154]="Greater Fleshripper",[157]="Goretusk",[161]="[UNUSED] Ander the Monk",[165]="[UNUSED] Small Child",[167]="Morhan Coppertongue",[171]="Murloc Warrior",[190]="Dermot Johns",[193]="Blue Dragonspawn",[196]="Eagan Peltskinner",[197]="Marshal McBride",[198]="Khelden Bremen",[199]="Young Fleshripper",[202]="Rotting Horror",[203]="Skeletal Mage",[204]="[UNUSED] Cackle Flamebone",[205]="Nightbane Dark Runner",[206]="Nightbane Vile Fang",[210]="Bone Chewer",[212]="Splinter Fist Warrior",[213]="Starving Dire Wolf",[215]="Defias Night Runner",[217]="Venom Web Spider",[218]="Grave Robber",[222]="Nillen Andemar",[223]="Dan Golthas",[225]="Gavin Gnarltree",[226]="Morg Gnarltree",[227]="Mabel Solaj",[228]="Avette Fellwood",[232]="Farmer Ray",[233]="Farmer Saldean",[234]="Marshal Gryan Stoutmantle",[235]="Salma Saldean",[237]="Farmer Furlbrow",[238]="Verna Furlbrow",[239]="Grimbooze Thunderbrew",[240]="Marshal Dughan",[243]="[UNUSED] Greeby Mudwhisker TEST",[244]="Ma Stonefield",[247]="Billy Maclure",[248]="Gramma Stonefield",[250]="Pa Maclure",[251]="Maybell Maclure",[252]="Tommy Joe Stonefield",[253]="William Pestle",[255]="Gerard Tiller",[257]="Kobold Worker",[258]="Joshua Maclure",[261]="Guard Thomas",[263]="Lord Ello Ebonlocke",[264]="Commander Althea Ebonlocke",[265]="Madame Eva",[266]="Wiley the Black",[267]="Clerk Daltry",[268]="Sirra Von'Indi",[269]="Role Dreuger",[270]="Councilman Millstipe",[271]="Ambassador Berrybuck",[272]="Chef Grual",[273]="Tavernkeep Smitts",[274]="Barkeep Hann",[275]="Whit Wantmal",[276]="Viktori Prism'Antras",[277]="Roberto Pupellyverbos",[278]="Sara Timberlain",[279]="Morgan Pestle",[280]="Placeholder - Jasperlode Mine",[284]="Brown Horse",[285]="Murloc",[287]="Placeholder - Darkhollow Mine",[288]="Jitters",[289]="Abercrombie",[290]="Placeholder - Fargodeep Mine",[291]="Placeholder Chest of Drawers",[294]="Marshal Haggard",[295]="Innkeeper Farley",[296]="[UNUSED] Goodmother Jans",[297]="Caretaker Folsom",[299]="Young Wolf",[300]="Zzarc' Vul",[302]="Blind Mary",[304]="Felsteed",[305]="White Stallion",[306]="Palomino",[307]="Pinto",[308]="Black Stallion",[311]="Sven Yorgen",[313]="Theocritus",[314]="Eliza",[315]="Stalvan Mistmantle",[319]="[UNUSED] Brother Benthas",[325]="Hogan Ference",[327]="Goldtooth",[328]="Zaldimar Wefhellt",[329]="Earth Elemental",[330]="Princess",[331]="Maginor Dumas",[332]="Master Mathias Shaw",[334]="Gath'Ilzogg",[335]="Singe",[338]="Mazen Mac'Nadir",[339]="[UNUSED] Helgor the Pugilist",[340]="Kendor Kabonka",[341]="Foreman Oslow",[342]="Martie Jainrose",[343]="Chef Breanna",[344]="Magistrate Solomon",[345]="Bellygrub",[346]="Barkeep Daniels",[347]="Grizzle Halfmane",[348]="Zem Leeward",[349]="Corporal Keeshan",[351]="Peasant",[352]="Dungar Longdrink",[353]="Antonia Dart",[356]="Black Wolf",[358]="Timber Wolf",[359]="Riding Wolf (Winter)",[365]="Scott's Flying Mount",[372]="Karm Ironquill",[374]="Cog Glitzspinner",[375]="Priestess Anetta",[376]="High Priestess Laurena",[377]="Priestess Josetta",[379]="Darcy Parker",[381]="Dockmaster Baren",[382]="Marshal Marris",[383]="Jason Mathers",[384]="Katie Hunter",[385]="Horse",[390]="Porcine Entourage",[391]="Old Murk-Eye",[392]="Captain Grayson",[395]="Markus",[397]="Grand Magus Doane",[399]="Boy - placeholder 05",[412]="Stitches",[415]="Verner Osgood",[416]="Imp",[417]="Felhunter",[422]="Murloc Flesheater",[423]="Redridge Mongrel",[424]="Redridge Poacher",[426]="Redridge Brute",[428]="Dire Condor",[429]="Shadowhide Darkweaver",[430]="Redridge Mystic",[431]="Shadowhide Slayer",[432]="Shadowhide Brute",[433]="Shadowhide Gnoll",[434]="Rabid Shadowhide Gnoll",[435]="Blackrock Champion",[436]="Blackrock Shadowcaster",[437]="Blackrock Renegade",[440]="Blackrock Grunt",[441]="Black Dragon Whelp",[442]="Tarantula",[445]="Redridge Alpha",[446]="Redridge Basher",[448]="Hogger",[449]="Defias Knuckleduster",[450]="Defias Renegade Mage",[452]="Riverpaw Bandit",[453]="Riverpaw Mystic",[454]="Young Goretusk",[456]="Murloc Minor Oracle",[458]="Murloc Hunter",[459]="Drusilla La Salle",[460]="Alamar Grimm",[461]="Demisette Cloyce",[462]="Vultros",[464]="Watch Captain Parker",[465]="Barkeep Dobbins",[466]="General Marcus Jonathan",[467]="The Defias Traitor",[468]="Town Crier",[469]="Lieutenant Doren",[471]="Mother Fang",[472]="Fedfennel",[473]="Morgan the Collector",[474]="Rogue Wizard",[475]="Kobold Tunneler",[476]="Kobold Geomancer",[478]="Riverpaw Outrunner",[480]="Rusty Harvest Golem",[481]="Defias Footpad",[482]="Elling Trias",[483]="Elaine Trias",[485]="Blackrock Outrunner",[486]="Tharil'zun",[487]="Protector Bialon",[488]="Protector Weaver",[489]="Protector Dutfield",[490]="Protector Gariel",[491]="Quartermaster Lewis",[494]="Watcher Bukouris",[495]="Watcher Keefer",[499]="Watcher Paige",[500]="Riverpaw Scout",[501]="Riverpaw Herbalist",[502]="Benny Blaanco",[503]="Lord Malathrom",[504]="Defias Trapper",[505]="Greater Tarantula",[506]="Sergeant Brashclaw",[507]="Fenros",[509]="[UNUSED] Long Fang",[510]="Water Elemental",[511]="Insane Ghoul",[513]="Murloc Netter",[514]="Smith Argus",[515]="Murloc Raider",[517]="Murloc Oracle",[518]="Yowler",[519]="Slark",[520]="Brack",[521]="Lupos",[522]="Mor'Ladim",[523]="Thor",[524]="Rockhide Boar",[525]="Mangy Wolf",[531]="Skeletal Fiend",[533]="Nightbane Shadow Weaver",[534]="Nefaru",[539]="Pygmy Venom Web Spider",[543]="Nalesette Wildbringer",[544]="Murloc Nightcrawler",[545]="Murloc Tidecaller",[547]="Great Goretusk",[548]="Murloc Minor Tidecaller",[550]="Defias Messenger",[565]="Rabid Dire Wolf",[568]="Shadowhide Warrior",[569]="Green Recluse",[570]="Brain Eater",[572]="Leprithus",[573]="Foe Reaper 4000",[574]="Naraxis",[575]="Fire Elemental",[576]="Watcher Ladimore",[578]="Murloc Scout",[579]="Shadowhide Assassin",[580]="Redridge Drudger",[582]="Old Blanchy",[583]="Ambusher",[584]="Kazon",[587]="Bloodscalp Warrior",[588]="Bloodscalp Scout",[589]="Defias Pillager",[590]="Defias Looter",[594]="Defias Henchman",[595]="Bloodscalp Hunter",[596]="Brainwashed Noble",[597]="Bloodscalp Berserker",[598]="Defias Miner",[599]="Marisa du'Paige",[603]="Grimtooth",[604]="Plague Spreader",[612]="[UNUSED] Rabid Mrs. Whipple",[615]="Blackrock Tracker",[616]="Chatter",[619]="Defias Conjurer",[620]="Chicken",[622]="Goblin Engineer",[623]="Skeletal Miner",[624]="Undead Excavator",[625]="Undead Dynamiter",[626]="Foreman Thistlenettle",[628]="Black Ravager",[633]="Elaine Carevin",[634]="Defias Overseer",[636]="Defias Blackguard",[639]="Edwin VanCleef",[641]="Goblin Woodcarver",[642]="Sneed's Shredder",[643]="Sneed",[644]="Rhahk'Zor",[645]="Cookie",[646]="Mr. Smite",[647]="Captain Greenskin",[648]="Bridge Worker Trent",[649]="Bridge Worker Dmitri",[650]="Bridge Worker Jess",[651]="Bridge Worker Daniel",[652]="Bridge Worker Matthew",[653]="Bridge Worker Alex",[656]="Wilder Thistlenettle",[657]="Defias Pirate",[658]="Sten Stoutarm",[659]="El Pollo Grande",[660]="Bloodscalp Witch Doctor",[661]="Jonathan Carevin",[663]="Calor",[664]="Benjamin Carevin",[667]="Skullsplitter Warrior",[669]="Skullsplitter Hunter",[670]="Skullsplitter Witch Doctor",[671]="Bloodscalp Headhunter",[672]="Skullsplitter Spiritchaser",[674]="Venture Co. Strip Miner",[675]="Venture Co. Foreman",[676]="Venture Co. Surveyor",[677]="Venture Co. Tinkerer",[678]="Mosh'Ogg Mauler",[679]="Mosh'Ogg Shaman",[680]="Mosh'Ogg Lord",[681]="Young Stranglethorn Tiger",[682]="Stranglethorn Tiger",[683]="Young Panther",[684]="Shadowmaw Panther",[685]="Stranglethorn Raptor",[686]="Lashtail Raptor",[687]="Jungle Stalker",[688]="Stone Maw Basilisk",[689]="Crystal Spine Basilisk",[690]="Cold Eye Basilisk",[691]="Lesser Water Elemental",[694]="Bloodscalp Axe Thrower",[696]="Skullsplitter Axe Thrower",[697]="Bloodscalp Shaman",[698]="Bloodscalp Tiger",[699]="Bloodscalp Beastmaster",[701]="Bloodscalp Mystic",[702]="Bloodscalp Scavenger",[703]="General Fangore",[704]="Ragged Timber Wolf",[705]="Ragged Young Wolf",[706]="Frostmane Troll Whelp",[707]="Rockjaw Trogg",[708]="Small Crag Boar",[709]="Mosh'Ogg Warmonger",[710]="Mosh'Ogg Spellcrafter",[711]="Ardo Dirtpaw",[712]="Redridge Thrasher",[713]="Balir Frosthammer",[714]="Talin Keeneye",[715]="Hemet Nesingwary Jr.",[716]="Barnil Stonepot",[717]="Ajeck Rouack",[718]="Sir S. J. Erlgadin",[721]="Rabbit",[723]="Mosh'Ogg Butcher",[724]="Burly Rockjaw Trogg",[727]="Ironforge Mountaineer",[728]="Bhag'thera",[729]="Sin'Dall",[730]="Tethis",[731]="King Bangalash",[732]="Murloc Lurker",[733]="Sergeant Yohwa",[734]="Corporal Bluth",[735]="Murloc Streamrunner",[736]="Panther",[737]="Kebok",[738]="Private Thorsen",[739]="Brother Nimetz",[740]="Adolescent Whelp",[741]="Dreaming Whelp",[742]="Green Wyrmkin",[743]="Wyrmkin Dreamwalker",[744]="Green Scalebane",[745]="Scalebane Captain",[746]="Elder Dragonkin",[747]="Marsh Murloc",[750]="Marsh Inkspewer",[751]="Marsh Flesheater",[752]="Marsh Oracle",[754]="Rebel Watchman",[755]="Lost One Mudlurker",[756]="Skullsplitter Panther",[757]="Lost One Fisherman",[759]="Lost One Hunter",[760]="Lost One Muckdweller",[761]="Lost One Seer",[762]="Lost One Riftseeker",[763]="Lost One Chieftain",[764]="Swampwalker",[765]="Swampwalker Elder",[766]="Tangled Horror",[767]="Swamp Jaguar",[768]="Shadow Panther",[769]="Deathstrike Tarantula",[770]="Corporal Kaleb",[771]="Commander Felstrom",[772]="Stranglethorn Tigress",[773]="Krazek",[775]="Kurzen's Agent",[777]="Amy Davenport",[780]="Skullsplitter Mystic",[781]="Skullsplitter Headhunter",[782]="Skullsplitter Scout",[783]="Skullsplitter Berserker",[784]="Skullsplitter Beastmaster",[785]="Skeletal Warder",[786]="Grelin Whitebeard",[787]="Skeletal Healer",[789]="Kimberly Hiett",[790]="Karen Taylor",[791]="Lindsay Ashlock",[793]="Kara Adams",[794]="Matt",[795]="Mark",[796]="Joshua",[797]="Bo",[798]="Solomon",[799]="Kevin",[800]="Kyle",[801]="Eric",[802]="Jay",[804]="Dana",[805]="Cameron",[806]="John",[807]="Lisa",[808]="Grik'nir the Cold",[810]="Aaron",[811]="Jose",[812]="Alma Jainrose",[813]="Colonel Kurzen",[814]="Sergeant Malthus",[815]="Bookie Herod",[818]="Mai'Zoth",[819]="Servant of Ilgalar",[820]="Scout Riell",[821]="Captain Danuvin",[822]="Young Forest Bear",[823]="Sergeant Willem",[824]="Defias Digger",[826]="Watcher Jan",[827]="Watcher Mocarski",[828]="Watcher Petras",[829]="Adlin Pridedrift",[830]="Sand Crawler",[831]="Sea Crawler",[832]="Unbound Cyclone",[833]="Coyote Packleader",[834]="Coyote",[836]="Durnan Furcutter",[837]="Branstock Khalder",[840]="Watcher Backus",[842]="Lumberjack",[843]="Gina MacGregor",[844]="Antonio Perelli",[846]="Rotten Ghoul",[847]="Nathan",[848]="Madison",[849]="Rachel",[850]="Erin",[851]="Hannah",[852]="Feral Spirit",[853]="Coldridge Mountaineer",[854]="Young Jungle Stalker",[855]="Young Stranglethorn Raptor",[856]="Young Lashtail Raptor",[857]="Donal Osgood",[858]="Sorrow Spinner",[859]="Guard Berton",[861]="Stonard Scout",[862]="Stonard Explorer",[863]="Stonard Hunter",[864]="Stonard Orc",[865]="Stonard Wayfinder",[866]="Stonard Grunt",[867]="Stonard Cartographer",[868]="Stonard Shaman",[869]="Protector Dorana",[870]="Protector Deni",[871]="Saltscale Warrior",[873]="Saltscale Oracle",[874]="Protector Korelor",[875]="Saltscale Tide Lord",[876]="Protector Leick",[877]="Saltscale Forager",[878]="Scout Galiaan",[879]="Saltscale Hunter",[880]="Erlan Drudgemoor",[881]="Surena Caledon",[883]="Deer",[885]="Watcher Keller",[886]="Watcher Hartin",[887]="Watcher Jordan",[888]="Watcher Dodds",[889]="Splinter Fist Ogre",[890]="Fawn",[891]="Splinter Fist Fire Weaver",[892]="Splinter Fist Taskmaster",[893]="Lars",[894]="Homer Stonefield",[895]="Thorgas Grimson",[896]="Veldan Lightfoot",[898]="Nightbane Worgen",[900]="Bailiff Conacher",[903]="Guard Howe",[905]="Sharptooth Frenzy",[906]="Maximillian Crowe",[907]="Keras Wolfheart",[908]="Flora Silverwind",[909]="Defias Night Blade",[910]="Defias Enchanter",[911]="Llane Beshere",[912]="Thran Khorman",[913]="Lyria Du Lac",[914]="Ander Germaine",[915]="Jorik Kerridan",[916]="Solm Hargrin",[917]="Keryn Sylvius",[918]="Osborne the Night Man",[920]="Nightbane Tainted One",[921]="Venture Co. Lumberjack",[922]="Silt Crawler",[923]="Young Black Ravager",[925]="Brother Sammuel",[926]="Bromos Grummner",[927]="Brother Wilhelm",[928]="Lord Grayson Shadowbreaker",[930]="Black Widow Hatchling",[931]="Ariena Stormfeather",[932]="Guard Ashlock",[933]="Guard Hiett",[934]="Guard Clarke",[935]="Guard Pearce",[936]="Guard Adams",[937]="Kurzen Jungle Fighter",[938]="Kurzen Commando",[939]="Kurzen Elite",[940]="Kurzen Medicine Man",[941]="Kurzen Headshrinker",[942]="Kurzen Witch Doctor",[943]="Kurzen Wrangler",[944]="Marryk Nurribit",[945]="Rybrad Coldbank",[946]="Frostmane Novice",[947]="Rohh the Silent",[948]="Rotted One",[949]="Carrion Recluse",[950]="Swamp Talker",[951]="Brother Paxton",[952]="Brother Neals",[954]="Kat Sampson",[955]="Sergeant De Vries",[956]="Dorin Songblade",[957]="Dane Lindgren",[958]="Dawn Brightstar",[959]="Morley Eberlein",[960]="Gunder Thornbush",[963]="Deputy Rainer",[976]="Kurzen War Tiger",[977]="Kurzen War Panther",[978]="Kurzen Subchief",[979]="Kurzen Shadow Hunter",[980]="Grimnal",[981]="Hartash",[982]="Thultash",[983]="Thultazor",[984]="Thralosh",[985]="Malosh",[986]="Haromm",[987]="Ogromm",[988]="Kartosh",[989]="Banalash",[999]="Watcher Royce",[1000]="Watcher Blomberg",[1001]="Watcher Hutchins",[1007]="Mosshide Gnoll",[1008]="Mosshide Mongrel",[1009]="Mosshide Mistweaver",[1010]="Mosshide Fenrunner",[1011]="Mosshide Trapper",[1012]="Mosshide Brute",[1013]="Mosshide Mystic",[1014]="Mosshide Alpha",[1015]="Highland Raptor",[1016]="Highland Lashtail",[1017]="Highland Scytheclaw",[1018]="Highland Razormaw",[1019]="Elder Razormaw",[1020]="Mottled Raptor",[1021]="Mottled Screecher",[1022]="Mottled Scytheclaw",[1023]="Mottled Razormaw",[1024]="Bluegill Murloc",[1025]="Bluegill Puddlejumper",[1026]="Bluegill Forager",[1027]="Bluegill Warrior",[1028]="Bluegill Muckdweller",[1029]="Bluegill Oracle",[1030]="Black Slime",[1031]="Crimson Ooze",[1032]="Black Ooze",[1033]="Monstrous Ooze",[1034]="Dragonmaw Raider",[1035]="Dragonmaw Swamprunner",[1036]="Dragonmaw Centurion",[1037]="Dragonmaw Battlemaster",[1038]="Dragonmaw Shadowwarder",[1039]="Fen Dweller",[1040]="Fen Creeper",[1041]="Fen Lord",[1042]="Red Whelp",[1043]="Lost Whelp",[1044]="Flamesnorting Whelp",[1045]="Red Dragonspawn",[1046]="Red Wyrmkin",[1047]="Red Scalebane",[1048]="Scalebane Lieutenant",[1049]="Wyrmkin Firebrand",[1050]="Scalebane Royal Guard",[1051]="Dark Iron Dwarf",[1052]="Dark Iron Saboteur",[1053]="Dark Iron Tunneler",[1054]="Dark Iron Demolitionist",[1057]="Dragonmaw Bonewarder",[1059]="Ana'thek the Cruel",[1060]="Mogh the Undying",[1061]="Gan'zulah",[1062]="Nezzliok the Dire",[1063]="Jade",[1064]="Grom'gol Grunt",[1065]="Riverpaw Shaman",[1068]="Gorn",[1069]="Crimson Whelp",[1070]="Deputy Feldon",[1071]="Longbraid the Grim",[1072]="Roggo Harlbarrow",[1073]="Ashlan Stonesmirk",[1074]="Motley Garmason",[1075]="Rhag Garmason",[1076]="Merrin Rockweaver",[1077]="Prospector Whelgar",[1078]="Ormer Ironbraid",[1081]="Mire Lord",[1082]="Sawtooth Crocolisk",[1083]="Murloc Shorestriker",[1084]="Young Sawtooth Crocolisk",[1085]="Elder Stranglethorn Tiger",[1087]="Sawtooth Snapper",[1088]="Monstrous Crawler",[1089]="Mountaineer Cobbleflint",[1090]="Mountaineer Wallbang",[1091]="Mountaineer Gravelgaw",[1092]="Captain Rugelfuss",[1093]="Chief Engineer Hinderweir VII",[1094]="Venture Co. Miner",[1095]="Venture Co. Workboss",[1096]="Venture Co. Geologist",[1097]="Venture Co. Mechanic",[1098]="Watcher Merant",[1099]="Watcher Gelwin",[1100]="Watcher Selkin",[1101]="Watcher Thayer",[1103]="Eldrin",[1104]="Grundel Harkin",[1105]="Jern Hornhelm",[1106]="Lost One Cook",[1108]="Mistvale Gorilla",[1109]="Fleshripper",[1110]="Skeletal Raider",[1111]="Leech Stalker",[1112]="Leech Widow",[1114]="Jungle Thunderer",[1115]="Rockjaw Skullthumper",[1116]="Rockjaw Ambusher",[1117]="Rockjaw Bonesnapper",[1118]="Rockjaw Backbreaker",[1119]="Hammerspine",[1120]="Frostmane Troll",[1121]="Frostmane Snowstrider",[1122]="Frostmane Hideskinner",[1123]="Frostmane Headhunter",[1124]="Frostmane Shadowcaster",[1125]="Crag Boar",[1126]="Large Crag Boar",[1127]="Elder Crag Boar",[1128]="Young Black Bear",[1129]="Black Bear",[1130]="Bjarn",[1131]="Winter Wolf",[1132]="Timber",[1133]="Starving Winter Wolf",[1134]="Young Wendigo",[1135]="Wendigo",[1137]="Edan the Howler",[1138]="Snow Tracker Wolf",[1139]="Magistrate Bluntnose",[1140]="Razormaw Matriarch",[1141]="Angus Stern",[1142]="Mosh'Ogg Brute",[1144]="Mosh'Ogg Witch Doctor",[1146]="Vharr",[1147]="Hragran",[1148]="Nerrist",[1149]="Uthok",[1150]="River Crocolisk",[1151]="Saltwater Crocolisk",[1152]="Snapjaw Crocolisk",[1153]="Torren Squarejaw",[1154]="Marek Ironheart",[1155]="Kelt Thomasin",[1156]="Vyrin Swiftwind",[1157]="Cursed Sailor",[1158]="Cursed Marine",[1159]="First Mate Snellig",[1160]="Captain Halyndor",[1161]="Stonesplinter Trogg",[1162]="Stonesplinter Scout",[1163]="Stonesplinter Skullthumper",[1164]="Stonesplinter Bonesnapper",[1165]="Stonesplinter Geomancer",[1166]="Stonesplinter Seer",[1167]="Stonesplinter Digger",[1169]="Dark Iron Insurgent",[1172]="Tunnel Rat Vermin",[1173]="Tunnel Rat Scout",[1174]="Tunnel Rat Geomancer",[1175]="Tunnel Rat Digger",[1176]="Tunnel Rat Forager",[1177]="Tunnel Rat Surveyor",[1178]="Mo'grosh Ogre",[1179]="Mo'grosh Enforcer",[1180]="Mo'grosh Brute",[1181]="Mo'grosh Shaman",[1182]="Brother Anton",[1183]="Mo'grosh Mystic",[1184]="Cliff Lurker",[1185]="Wood Lurker",[1186]="Black Bear",[1187]="Daryl the Youngling",[1188]="Grizzled Black Bear",[1189]="Black Bear Patriarch",[1190]="Mountain Boar",[1191]="Mangy Mountain Boar",[1192]="Elder Mountain Boar",[1193]="Loch Frenzy",[1194]="Mountain Buzzard",[1195]="Forest Lurker",[1196]="Ice Claw Bear",[1197]="Stonesplinter Shaman",[1198]="Rallic Finn",[1199]="Juvenile Snow Leopard",[1200]="Morbent Fel",[1201]="Snow Leopard",[1202]="Tunnel Rat Kobold",[1203]="Watcher Sarys",[1204]="Watcher Corwin",[1205]="Grawmug",[1206]="Gnasher",[1207]="Brawler",[1210]="Chok'sul",[1211]="Leper Gnome",[1212]="Bishop Farthing",[1213]="Godric Rothgar",[1214]="Aldren Cordon",[1215]="Alchemist Mallory",[1216]="Shore Crawler",[1217]="Glorin Steelbrow",[1218]="Herbalist Pomeroy",[1222]="Dark Iron Sapper",[1224]="Young Threshadon",[1225]="Ol' Sooty",[1226]="Maxan Anvol",[1227]="Rygal Rocknell",[1228]="Magis Sparkmantle",[1229]="Granis Swiftaxe",[1230]="[UNUSED] Lexin Haze",[1231]="Grif Wildheart",[1232]="Azar Stronghammer",[1233]="[UNUSED] Shaethis Darkoak",[1234]="Hogral Bakkan",[1236]="Kobold Digger",[1237]="Kazan Mogosh",[1238]="Gamili Frosthide",[1239]="First Mate Fitzsimmons",[1240]="Boran Ironclink",[1241]="Tognus Flintfire",[1242]="Karl Boran",[1243]="Hegnar Rumbleshot",[1244]="Rethiel the Greenwarden",[1245]="Kogan Forgestone",[1246]="Vosur Brakthel",[1247]="Innkeeper Belm",[1249]="Quartermaster Hudson",[1250]="Drake Lindgren",[1251]="Splinter Fist Firemonger",[1252]="Senir Whitebeard",[1253]="Father Gavin",[1254]="Foreman Stonebrow",[1255]="Prospector Gehn",[1256]="Quarrymaster Thesten",[1257]="Keldric Boucher",[1258]="Black Ravager Mastiff",[1259]="Gobbler",[1260]="Great Father Arctikus",[1261]="Veron Amberstill",[1263]="Yarlyn Amberstill",[1265]="Rudra Amberstill",[1266]="Tundra MacGrann",[1267]="Ragnar Thunderbrew",[1268]="Ozzie Togglevolt",[1269]="Razzle Sprysprocket",[1270]="Fetid Corpse",[1271]="Old Icebeard",[1273]="Grawn Thromwyn",[1274]="Senator Barin Redstone",[1275]="Kyra Boucher",[1276]="Mountaineer Brokk",[1277]="Mountaineer Ganin",[1278]="Mountaineer Stenn",[1279]="Mountaineer Flint",[1280]="Mountaineer Droken",[1281]="Mountaineer Zaren",[1282]="Mountaineer Veek",[1283]="Mountaineer Kalmir",[1284]="Archbishop Benedictus",[1285]="Thurman Mullby",[1286]="Edna Mullby",[1287]="Marda Weller",[1289]="Gunther Weller",[1291]="Carla Granger",[1292]="Maris Granger",[1293]="Ambo Cash",[1294]="Aldric Moore",[1295]="Lara Moore",[1296]="Felder Stover",[1297]="Lina Stover",[1298]="Frederick Stover",[1299]="Lisbeth Schneider",[1300]="Lawrence Schneider",[1301]="Julia Gallina",[1302]="Bernard Gump",[1303]="Felicia Gump",[1304]="Darian Singh",[1305]="Jarel Moor",[1307]="Charys Yserian",[1308]="Owen Vaughn",[1309]="Wynne Larson",[1310]="Evan Larson",[1311]="Joachim Brenlow",[1312]="Ardwyn Cailen",[1313]="Maria Lumere",[1314]="Duncan Cullen",[1315]="Allan Hafgan",[1316]="Adair Gilroy",[1317]="Lucan Cordell",[1318]="Jessara Cordell",[1319]="Bryan Cross",[1320]="Seoman Griffith",[1321]="Alyssa Griffith",[1322]="Maxton Strang",[1323]="Osric Strang",[1324]="Heinrich Stone",[1325]="Jasper Fel",[1326]="Sloan McCoy",[1327]="Reese Langston",[1328]="Elly Langston",[1329]="Mountaineer Naarh",[1330]="Mountaineer Tyraw",[1331]="Mountaineer Luxst",[1332]="Mountaineer Morran",[1333]="Gerik Koen",[1334]="Mountaineer Hammerfall",[1335]="Mountaineer Yuttha",[1336]="Mountaineer Zwarn",[1337]="Mountaineer Gwarth",[1338]="Mountaineer Dalk",[1339]="Mayda Thane",[1340]="Mountaineer Kadrell",[1341]="Wilhelm Strang",[1342]="Mountaineer Rockgar",[1343]="Mountaineer Stormpike",[1344]="Prospector Ironband",[1345]="Magmar Fellhew",[1346]="Georgio Bolero",[1347]="Alexandra Bolero",[1348]="Gregory Ardus",[1349]="Agustus Moulaine",[1350]="Theresa Moulaine",[1351]="Brother Cassius",[1352]="Fluffy",[1353]="Sarltooth",[1354]="Apprentice Soren",[1355]="Cook Ghilm",[1356]="Prospector Stormpike",[1358]="Miner Grothor",[1360]="Miner Grumnal",[1362]="Gothor Brumn",[1364]="Balgaras the Foul",[1365]="Goli Krumn",[1366]="Adam",[1367]="Billy",[1368]="Justin",[1370]="Brandon",[1371]="Roman",[1373]="Jarven Thunderbrew",[1374]="Rejold Barleybrew",[1375]="Marleth Barleybrew",[1376]="Beldin Steelgrill",[1377]="Pilot Stonegear",[1378]="Pilot Bellowfiz",[1379]="Miran",[1380]="Saean",[1381]="Krakk",[1382]="Mudduk",[1383]="Snarl",[1385]="Brawn",[1386]="Rogvar",[1387]="Thysta",[1388]="Vagash",[1393]="Berserk Trogg",[1395]="Ol' Beasley",[1397]="Frostmane Seer",[1398]="Boss Galgosh",[1399]="Magosh",[1400]="Wetlands Crocolisk",[1402]="Topper McNabb",[1404]="Kragg",[1405]="Morris Lawry",[1407]="Sranda",[1410]="Firewing Bloodwarder",[1411]="Ian Strom",[1412]="Squirrel",[1413]="Janey Anship",[1414]="Lisan Pierce",[1415]="Suzanne",[1416]="Grimand Elmore",[1417]="Young Wetlands Crocolisk",[1418]="Bluegill Raider",[1419]="Fizzles",[1420]="Toad",[1421]="Private Merle",[1422]="Corporal Sethman",[1423]="Stormwind Guard",[1424]="Master Digger",[1425]="Kubb",[1426]="Riverpaw Miner",[1427]="Harlan Bagley",[1428]="Rema Schneider",[1429]="Thurman Schneider",[1430]="Tomas",[1431]="Suzetta Gallina",[1432]="Renato Gallina",[1433]="Corbett Schneider",[1434]="Menethil Sentry",[1435]="Zardeth of the Black Claw",[1436]="Watcher Cutford",[1437]="Thomas Booker",[1439]="Lord Baurles K. Wishock",[1440]="Milton Sheaf",[1441]="Brak Durnad",[1442]="Helgrum the Swift",[1443]="Fel'zerul",[1444]="Brother Kristoff",[1445]="Jesse Halloran",[1446]="Regina Halloran",[1447]="Gimlok Rumdnul",[1448]="Neal Allen",[1449]="Witch Doctor Unbagwa",[1450]="Brahnmar",[1451]="Camerick Jongleur",[1452]="Gruham Rumdnul",[1453]="Dewin Shimmerdawn",[1454]="Jennabink Powerseam",[1456]="Kersok Prond",[1457]="Samor Festivus",[1458]="Telurinon Moonshadow",[1459]="Naela Trance",[1460]="Unger Statforth",[1461]="Murndan Derth",[1462]="Edwina Monzor",[1463]="Falkan Armonis",[1464]="Innkeeper Helbrek",[1465]="Drac Roughcut",[1466]="Gretta Finespindle",[1469]="Vrok Blunderblast",[1470]="Ghak Healtouch",[1471]="Jannos Ironwill",[1472]="Morgg Stormshot",[1473]="Kali Healtouch",[1474]="Rann Flamespinner",[1475]="Menethil Guard",[1476]="Hargin Mundar",[1477]="Christoph Faral",[1478]="Aedis Brom",[1479]="Timothy Clark",[1480]="Caitlin Grassman",[1481]="Bart Tidewater",[1482]="Andrea Halloran",[1483]="Murphy West",[1484]="Derina Rumdnul",[1487]="Splinter Fist Enslaver",[1488]="Zanzil Zombie",[1489]="Zanzil Hunter",[1490]="Zanzil Witch Doctor",[1491]="Zanzil Naga",[1492]="Gorlash",[1493]="Mok'rash the Cleaver",[1494]="Negolash",[1495]="Deathguard Linnea",[1496]="Deathguard Dillinger",[1497]="Gunther Arcanus",[1498]="Bethor Iceshard",[1499]="Magistrate Sevren",[1500]="Coleman Farthing",[1501]="Mindless Zombie",[1502]="Wretched Ghoul",[1504]="Young Night Web Spider",[1505]="Night Web Spider",[1506]="Scarlet Convert",[1507]="Scarlet Initiate",[1508]="Young Scavenger",[1509]="Ragged Scavenger",[1511]="Enraged Silverback Gorilla",[1512]="Duskbat",[1513]="Mangy Duskbat",[1514]="Mokk the Savage",[1515]="Executor Zygand",[1516]="Konda",[1518]="Apothecary Johaan",[1519]="Deathguard Simmer",[1520]="Rattlecage Soldier",[1521]="Gretchen Dedmar",[1522]="Darkeye Bonecaster",[1523]="Cracked Skull Soldier",[1525]="Rotting Dead",[1526]="Ravaged Corpse",[1527]="Hungering Dead",[1528]="Shambling Horror",[1529]="Bleeding Horror",[1530]="Rotting Ancestor",[1531]="Lost Soul",[1532]="Wandering Spirit",[1533]="Tormented Spirit",[1534]="Wailing Ancestor",[1535]="Scarlet Warrior",[1536]="Scarlet Missionary",[1537]="Scarlet Zealot",[1538]="Scarlet Friar",[1539]="Scarlet Neophyte",[1540]="Scarlet Vanguard",[1541]="Vile Fin Murloc",[1543]="Vile Fin Puddlejumper",[1544]="Vile Fin Minor Oracle",[1545]="Vile Fin Muckdweller",[1546]="[UNUSED] Kegnar Thraln",[1547]="Decrepit Darkhound",[1548]="Cursed Darkhound",[1549]="Ravenous Darkhound",[1550]="Thrashtail Basilisk",[1551]="Ironjaw Basilisk",[1552]="Scale Belly",[1553]="Greater Duskbat",[1554]="Vampiric Duskbat",[1555]="Vicious Night Web Spider",[1557]="Elder Mistvale Gorilla",[1558]="Silverback Patriarch",[1559]="King Mukla",[1560]="Yvette Farthing",[1561]="Bloodsail Raider",[1562]="Bloodsail Mage",[1563]="Bloodsail Swashbuckler",[1564]="Bloodsail Warlock",[1565]="Bloodsail Sea Dog",[1568]="Undertaker Mordo",[1569]="Shadow Priest Sarvis",[1570]="Executor Arren",[1571]="Shellei Brondir",[1572]="Thorgrum Borrelson",[1573]="Gryth Thurden",[1574]="Mage 1",[1575]="Mage 5",[1629]="Priest 20",[1632]="Adele Fielder",[1642]="Northshire Guard",[1645]="Quartermaster Hicks",[1646]="Baros Alexston",[1650]="Terry Palin",[1651]="Lee Brown",[1652]="Deathguard Burgess",[1653]="Bloodsail Elder Magus",[1654]="Gregor Agamand",[1655]="Nissa Agamand",[1656]="Thurman Agamand",[1657]="Devlin Agamand",[1658]="Captain Dargol",[1660]="Scarlet Bodyguard",[1661]="Novice Elreth",[1662]="Captain Perrine",[1663]="Dextren Ward",[1664]="Captain Vachon",[1665]="Captain Melrache",[1666]="Kam Deepfury",[1667]="Meven Korgal",[1668]="William MacGregor",[1669]="Defias Profiteer",[1670]="Mike Miller",[1671]="Lamar Veisilli",[1672]="Lohgan Eva",[1673]="Alyssa Eva",[1674]="Rot Hide Gnoll",[1675]="Rot Hide Mongrel",[1676]="Finbus Geargrind",[1678]="Vernon Hale",[1679]="Avarus Kharag",[1680]="Matthew Hooper",[1681]="Brock Stoneseeker",[1682]="Yanni Stoutheart",[1683]="Warg Deepwater",[1684]="Khara Deepwater",[1685]="Xandar Goodbeard",[1686]="Irene Sureshot",[1687]="Cliff Hadin",[1688]="Night Web Matriarch",[1689]="Scarred Crag Boar",[1690]="Thrawn Boltar",[1691]="Kreg Bilmn",[1692]="Golorn Frostbeard",[1693]="Loch Crocolisk",[1694]="Loslor Rudge",[1695]="Rendow",[1696]="Targorr the Dread",[1697]="Keeg Gibn",[1698]="Frast Dokner",[1699]="Gremlock Pilsnor",[1700]="Paxton Ganter",[1701]="Dank Drizzlecut",[1702]="Bronk Guzzlegear",[1703]="Uthrar Threx",[1706]="Prisoner",[1707]="Defias Captive",[1708]="Defias Inmate",[1711]="Convict",[1713]="Elder Shadowmaw Panther",[1715]="Insurgent",[1716]="Bazil Thredd",[1717]="Hamhock",[1718]="Rockjaw Raider",[1719]="Warden Thelwater",[1720]="Bruegal Ironknuckle",[1721]="Nikova Raskol",[1725]="Defias Watchman",[1726]="Defias Magician",[1727]="Defias Worker",[1729]="Defias Evoker",[1731]="Goblin Craftsman",[1732]="Defias Squallshaper",[1733]="Zggi",[1735]="Deathguard Abraham",[1736]="Deathguard Randolph",[1737]="Deathguard Oliver",[1738]="Deathguard Terrence",[1739]="Deathguard Phillip",[1740]="Deathguard Saltain",[1741]="Deathguard Bartrand",[1742]="Deathguard Bartholomew",[1743]="Deathguard Lawrence",[1744]="Deathguard Mort",[1745]="Deathguard Morris",[1746]="Deathguard Cyrus",[1747]="Anduin Wrynn",[1748]="Highlord Bolvar Fordragon",[1749]="Lady Katrana Prestor",[1750]="Grand Admiral Jes-Tereth",[1751]="Mithras Ironhill",[1752]="Caledra Dawnbreeze",[1753]="Maggot Eye",[1754]="Lord Gregor Lescovar",[1755]="Marzon the Silent Blade",[1756]="Stormwind Royal Guard",[1757]="Mega Rabbit",[1763]="Gilnid",[1764]="Greater Feral Spirit",[1765]="Worg",[1766]="Rabid Worg",[1767]="Vile Fin Shredder",[1768]="Vile Fin Tidehunter",[1769]="Moonrage Whitescalp",[1770]="Moonrage Darkrunner",[1772]="Rot Hide Gladerunner",[1773]="Rot Hide Mystic",[1775]="Zun'dartha",[1776]="Magtoor",[1777]="Dakk Blunderblast",[1778]="Ferocious Grizzled Bear",[1779]="Moonrage Glutton",[1780]="Skitterweb Striker",[1781]="Skitterweb Lurker",[1782]="Moonrage Darksoul",[1783]="Skeletal Flayer",[1784]="Skeletal Sorcerer",[1785]="Skeletal Terror",[1787]="Skeletal Executioner",[1788]="Skeletal Warlord",[1789]="Skeletal Acolyte",[1791]="Slavering Ghoul",[1793]="Rotting Ghoul",[1794]="Soulless Ghoul",[1795]="Searing Ghoul",[1796]="Freezing Ghoul",[1797]="Giant Rabid Bear",[1800]="Cold Wraith",[1801]="Blood Wraith",[1802]="Hungering Wraith",[1804]="Wailing Death",[1805]="Flesh Golem",[1806]="Vile Slime",[1808]="Devouring Ooze",[1809]="Carrion Vulture",[1812]="Rotting Behemoth",[1813]="Decaying Horror",[1815]="Diseased Black Bear",[1816]="Diseased Grizzly",[1817]="Diseased Wolf",[1821]="Carrion Lurker",[1822]="Venom Mist Lurker",[1824]="Plague Lurker",[1826]="Scarlet Mage",[1827]="Scarlet Sentinel",[1831]="Scarlet Hunter",[1832]="Scarlet Magus",[1833]="Scarlet Knight",[1834]="Scarlet Paladin",[1835]="Scarlet Invoker",[1836]="Scarlet Cavalier",[1837]="Scarlet Judge",[1838]="Scarlet Interrogator",[1839]="Scarlet High Clerist",[1840]="Grand Inquisitor Isillien",[1841]="Scarlet Executioner",[1842]="Highlord Taelan Fordring",[1843]="Foreman Jerris",[1844]="Foreman Marcrid",[1845]="High Protector Tarsen",[1846]="High Protector Lorik",[1847]="Foulmane",[1848]="Lord Maldazzar",[1849]="Dreadwhisper",[1850]="Putridius",[1851]="The Husk",[1852]="Araj the Summoner",[1853]="Darkmaster Gandling",[1854]="High Priest Thel'danis",[1855]="Tirion Fordring",[1860]="Voidwalker",[1863]="Succubus",[1865]="Ravenclaw Raider",[1866]="Ravenclaw Slave",[1867]="Dalaran Apprentice",[1868]="Ravenclaw Servant",[1869]="Ravenclaw Champion",[1870]="Hand of Ravenclaw",[1871]="Eliza's Guard",[1872]="Tharek Blackstone",[1880]="Berte",[1883]="Scarlet Worker",[1884]="Scarlet Lumberjack",[1885]="Scarlet Smith",[1888]="Ambermill Watcher",[1889]="Ambermill Witchalok",[1890]="Rattlecage Skeleton",[1891]="Pyrewood Watcher",[1892]="Moonrage Watcher",[1893]="Moonrage Sentry",[1894]="Pyrewood Sentry",[1895]="Pyrewood Elder",[1896]="Moonrage Elder",[1901]="Kelstrum Stonebreaker",[1907]="Naga Explorer",[1908]="Vile Fin Oracle",[1909]="Vile Fin Lakestalker",[1910]="Muad",[1911]="Deeb",[1912]="Ambermill Protector",[1913]="Ambermill Warder",[1914]="Ambermill Mage",[1915]="Ambermill Conjuror",[1916]="Stephen Bhartec",[1917]="Daniel Ulfman",[1918]="Karrel Grayves",[1919]="Samuel Fipps",[1920]="Dalaran Spellscribe",[1921]="Combat Dummy",[1922]="Gray Forest Wolf",[1923]="Bloodsnout Worg",[1924]="Moonrage Bloodhowler",[1931]="Captured Scarlet Zealot",[1933]="Sheep",[1934]="Tirisfal Farmer",[1935]="Tirisfal Farmhand",[1936]="Farmer Solliden",[1937]="Apothecary Renferrel",[1938]="Dalar Dawnweaver",[1939]="Rot Hide Brute",[1940]="Rot Hide Plague Weaver",[1941]="Rot Hide Graverobber",[1942]="Rot Hide Savage",[1943]="Raging Rot Hide",[1944]="Rot Hide Bruiser",[1946]="Lillith Nefara",[1947]="Thule Ravenclaw",[1948]="Snarlmane",[1949]="Servant of Azora",[1950]="Rane Yorick",[1951]="Quinn Yorick",[1952]="High Executor Hadrec",[1953]="Lake Skulker",[1954]="Elder Lake Skulker",[1955]="Lake Creeper",[1956]="Elder Lake Creeper",[1957]="Vile Fin Shorecreeper",[1958]="Vile Fin Tidecaller",[1959]="Mountaineer Barleybrew",[1960]="Pilot Hammerfoot",[1961]="Mangeclaw",[1963]="Vidra Hearthstove",[1964]="Treant",[1965]="Mountaineer Thalos",[1971]="Ivar the Foul",[1972]="Grimson the Pale",[1973]="Ravenclaw Guardian",[1974]="Ravenclaw Drudger",[1975]="Eastvale Lumberjack",[1976]="Stormwind City Patroller",[1977]="Senator Mehr Stonehallow",[1978]="Deathstalker Erland",[1981]="Dark Iron Ambusher",[1983]="Nightlash",[1984]="Young Thistle Boar",[1985]="Thistle Boar",[1986]="Webwood Spider",[1988]="Grell",[1989]="Grellkin",[1992]="Tarindrella",[1993]="Greenpaw",[1994]="Githyiss the Vile",[1995]="Strigid Owl",[1996]="Strigid Screecher",[1997]="Strigid Hunter",[1998]="Webwood Lurker",[1999]="Webwood Venomfang",[2000]="Webwood Silkspinner",[2001]="Giant Webwood Spider",[2002]="Rascal Sprite",[2003]="Shadow Sprite",[2004]="Dark Sprite",[2005]="Vicious Grell",[2006]="Gnarlpine Ursa",[2007]="Gnarlpine Gardener",[2008]="Gnarlpine Warrior",[2009]="Gnarlpine Shaman",[2010]="Gnarlpine Defender",[2011]="Gnarlpine Augur",[2012]="Gnarlpine Pathfinder",[2013]="Gnarlpine Avenger",[2014]="Gnarlpine Totemic",[2015]="Bloodfeather Harpy",[2017]="Bloodfeather Rogue",[2018]="Bloodfeather Sorceress",[2019]="Bloodfeather Fury",[2020]="Bloodfeather Wind Witch",[2021]="Bloodfeather Matriarch",[2022]="Timberling",[2025]="Timberling Bark Ripper",[2027]="Timberling Trampler",[2029]="Timberling Mire Beast",[2030]="Elder Timberling",[2031]="Young Nightsaber",[2032]="Mangy Nightsaber",[2033]="Elder Nightsaber",[2034]="Feral Nightsaber",[2038]="Lord Melenas",[2039]="Ursal the Mauler",[2041]="Ancient Protector",[2042]="Nightsaber",[2043]="Nightsaber Stalker",[2044]="Forlorn Spirit",[2046]="Andrew Krighton",[2050]="Raleigh Andrean",[2053]="Haggard Refugee",[2054]="Sickly Refugee",[2055]="Master Apothecary Faranell",[2056]="Ravenclaw Apparition",[2057]="Huldar",[2058]="Deathstalker Faerleia",[2060]="Councilman Smithers",[2061]="Councilman Thatcher",[2062]="Councilman Hendricks",[2063]="Councilman Wilhelm",[2064]="Councilman Hartin",[2065]="Councilman Cooper",[2066]="Councilman Higarth",[2067]="Councilman Brunswick",[2068]="Lord Mayor Morrison",[2069]="Moonstalker",[2070]="Moonstalker Runt",[2071]="Moonstalker Matriarch",[2077]="Melithar Staghelm",[2078]="Athridas Bearmantle",[2079]="Ilthalaine",[2080]="Denalan",[2081]="Sentinel Kyra Starsong",[2082]="Gilshalan Windwalker",[2083]="Syral Bladeleaf",[2084]="Natheril Raincaller",[2086]="Valstag Ironjaw",[2089]="Giant Wetlands Crocolisk",[2090]="Ma'ruk Wyrmscale",[2091]="Chieftain Nek'rosh",[2092]="Pilot Longbeard",[2093]="Einar Stonegrip",[2094]="James Halloran",[2096]="Tarrel Rockweaver",[2097]="Harlo Barnaby",[2098]="Ram",[2099]="Maiden's Virtue Crewman",[2102]="Dragonmaw Grunt",[2103]="Dragonmaw Scout",[2104]="Captain Stoutfist",[2105]="Mountaineer Dokkin",[2106]="Apothecary Berard",[2107]="Gaerolas Talvethren",[2108]="Garneg Charskull",[2110]="Black Rat",[2111]="Sida",[2112]="Farrin Daris",[2113]="Archibald Kava",[2114]="Faruza",[2115]="Joshua Kien",[2116]="Blacksmith Rand",[2117]="Harold Raims",[2118]="Abigail Shiel",[2119]="Dannal Stern",[2120]="Archmage Ataeric",[2121]="Shadow Priest Allister",[2122]="David Trias",[2123]="Dark Cleric Duesten",[2124]="Isabella",[2126]="Maximillion",[2127]="Rupert Boch",[2128]="Cain Firesong",[2129]="Dark Cleric Beryl",[2130]="Marion Call",[2131]="Austil de Mon",[2132]="Carolai Anise",[2134]="Mrs. Winters",[2135]="Abe Winters",[2136]="Oliver Dwor",[2137]="Eliza Callen",[2140]="Edwin Harly",[2142]="Watcher Callahan",[2149]="Dark Iron Raider",[2150]="Zenn Foulhoof",[2151]="Moon Priestess Amara",[2152]="Gnarlpine Ambusher",[2153]="Terl Arakor",[2155]="Sentinel Shayla Nightbreeze",[2156]="Cracked Golem",[2157]="Stone Behemoth",[2158]="Gravelflint Scout",[2159]="Gravelflint Bonesnapper",[2160]="Gravelflint Geomancer",[2162]="Agal",[2163]="Thistle Bear",[2164]="Rabid Thistle Bear",[2165]="Grizzled Thistle Bear",[2166]="Oakenscowl",[2167]="Blackwood Pathfinder",[2168]="Blackwood Warrior",[2169]="Blackwood Totemic",[2170]="Blackwood Ursa",[2171]="Blackwood Shaman",[2172]="Strider Clutchmother",[2173]="Reef Frenzy",[2174]="Coastal Frenzy",[2175]="Shadowclaw",[2176]="Cursed Highborne",[2177]="Writhing Highborne",[2178]="Wailing Highborne",[2179]="Stormscale Wave Rider",[2180]="Stormscale Siren",[2181]="Stormscale Myrmidon",[2182]="Stormscale Sorceress",[2183]="Stormscale Warrior",[2184]="Lady Moongazer",[2185]="Darkshore Thresher",[2186]="Carnivous the Breaker",[2187]="Elder Darkshore Thresher",[2188]="Deep Sea Threshadon",[2189]="Vile Sprite",[2190]="Wild Grell",[2191]="Licillin",[2192]="Firecaller Radison",[2198]="Crier Goodman",[2201]="Greymist Raider",[2202]="Greymist Coastrunner",[2203]="Greymist Seer",[2204]="Greymist Netter",[2205]="Greymist Warrior",[2206]="Greymist Hunter",[2207]="Greymist Oracle",[2208]="Greymist Tidehunter",[2209]="Deathguard Gavin",[2210]="Deathguard Royann",[2211]="Captured Mountaineer",[2212]="Deth'ryll Satyr",[2214]="Deathstalker Lesh",[2215]="High Executor Darthalia",[2216]="Apothecary Lydon",[2225]="Zora Guthrek",[2226]="Karos Razok",[2227]="Sharlindra",[2228]="Lieutenant Farren Orinelle",[2229]="Krusk",[2230]="Umpi",[2231]="Pygmy Tide Crawler",[2232]="Tide Crawler",[2233]="Encrusted Tide Crawler",[2234]="Young Reef Crawler",[2235]="Reef Crawler",[2236]="Raging Reef Crawler",[2237]="Moonstalker Sire",[2238]="Tog'thar",[2239]="Drull",[2240]="Syndicate Footpad",[2241]="Syndicate Thief",[2242]="Syndicate Spy",[2243]="Syndicate Sentry",[2244]="Syndicate Shadow Mage",[2245]="Syndicate Saboteur",[2246]="Syndicate Assassin",[2247]="Syndicate Enforcer",[2248]="Cave Yeti",[2249]="Ferocious Yeti",[2250]="Mountain Yeti",[2251]="Giant Yeti",[2252]="Crushridge Ogre",[2253]="Crushridge Brute",[2254]="Crushridge Mauler",[2255]="Crushridge Mage",[2256]="Crushridge Enforcer",[2257]="Mug'thol",[2258]="Maggarrak",[2260]="Syndicate Rogue",[2261]="Syndicate Watchman",[2263]="Marshal Redpath",[2264]="Hillsbrad Tailor",[2265]="Hillsbrad Apprentice Blacksmith",[2266]="Hillsbrad Farmer",[2267]="Hillsbrad Peasant",[2268]="Hillsbrad Footman",[2269]="Hillsbrad Miner",[2270]="Hillsbrad Sentry",[2271]="Dalaran Shield Guard",[2272]="Dalaran Theurgist",[2274]="Stanley",[2275]="Enraged Stanley",[2276]="Magistrate Henry Maleb",[2277]="Loremaster Dibbs",[2278]="Melisara",[2283]="Ravenclaw Regent",[2284]="Captured Farmer",[2285]="Count Remington Ridgewell",[2287]="Crushridge Warmonger",[2299]="Borgus Stoutarm",[2302]="Aethalas",[2303]="Lyranne Feathersong",[2304]="Captain Ironhill",[2305]="Foreman Bonds",[2306]="Baron Vardus",[2307]="Caretaker Caice",[2308]="Andrew Brownell",[2309]="Thomas Arlento",[2310]="Jamie Nore",[2311]="Doreen Beltis",[2314]="Sahvan Bloodshadow",[2315]="Maquell Ebonwood",[2316]="Gol'dir",[2317]="Elysa",[2318]="Argus Shadow Mage",[2319]="Syndicate Wizard",[2320]="Nagaz",[2321]="Foreststrider Fledgling",[2322]="Foreststrider",[2323]="Giant Foreststrider",[2324]="Blackwood Windtalker",[2326]="Thamner Pol",[2327]="Shaina Fuller",[2329]="Michelle Belle",[2330]="Karlee Chaddis",[2331]="Paige Chaddis",[2332]="Valdred Moray",[2333]="Henchman Valik",[2334]="Event Generator 001",[2335]="Magistrate Burnside",[2336]="Dark Strand Fanatic",[2337]="Dark Strand Voidcaller",[2338]="Twilight Disciple",[2339]="Twilight Thug",[2344]="Dun Garok Mountaineer",[2345]="Dun Garok Rifleman",[2346]="Dun Garok Priest",[2347]="Wild Gryphon",[2348]="Elder Moss Creeper",[2349]="Domesticated Creeper",[2350]="Forest Creeper",[2351]="Gray Bear",[2352]="Innkeeper Anderson",[2354]="Vicious Gray Bear",[2356]="Elder Gray Bear",[2357]="Merideth Carlson",[2358]="Dalaran Summoner",[2359]="Elemental Slave",[2360]="Hillsbrad Farmhand",[2361]="Tamara Armstrong",[2362]="Hemmit Armstrong",[2363]="Apprentice Honeywell",[2364]="Neema",[2365]="Bront Coldcleave",[2366]="Barkeep Kelly",[2367]="Donald Rabonne",[2368]="Daggerspine Shorestalker",[2369]="Daggerspine Shorehunter",[2370]="Daggerspine Screamer",[2371]="Daggerspine Siren",[2372]="Mudsnout Gnoll",[2373]="Mudsnout Shaman",[2374]="Torn Fin Muckdweller",[2375]="Torn Fin Coastrunner",[2376]="Torn Fin Oracle",[2377]="Torn Fin Tidehunter",[2378]="Kundric Zanden",[2379]="Caretaker Smithers",[2380]="Nandar Branson",[2381]="Micha Yance",[2382]="Darren Malvew",[2383]="Lindea Rabonne",[2384]="Starving Mountain Lion",[2385]="Foothill Stalker",[2386]="Alliance Guard",[2387]="Hillsbrad Councilman",[2388]="Innkeeper Shay",[2389]="Zarise",[2390]="Aranae Venomblood",[2391]="Serge Hinott",[2392]="Delia Verana",[2393]="Christoph Jeffcoat",[2394]="Mallen Swain",[2395]="Vinna Wayne",[2396]="Hans Zandin",[2397]="Derak Nightfall",[2398]="Tara Coldgaze",[2399]="Daryl Stack",[2400]="Craig Hewitt",[2401]="Kayren Soothallow",[2402]="Shara Blazen",[2403]="Farmer Getz",[2404]="Blacksmith Verringtan",[2405]="Tarren Mill Deathguard",[2406]="Mountain Lion",[2407]="Hulking Mountain Lion",[2408]="Snapjaw",[2409]="Felicia Maline",[2410]="Magus Wordeen Voidglare",[2411]="Ricter",[2412]="Alina",[2413]="Dermot",[2414]="Kegan Darkmar",[2415]="Warden Belamoore",[2416]="Crushridge Plunderer",[2417]="Grel'borg the Miser",[2418]="Deathguard Samsa",[2419]="Deathguard Humbert",[2420]="Targ",[2421]="Muckrake",[2422]="Glommus",[2423]="Lord Aliden Perenolde",[2424]="Guild Banker",[2425]="Varimathras",[2427]="Jailor Eston",[2428]="Jailor Marlgen",[2429]="Novice Thaivand",[2430]="Chef Jessen",[2431]="Jailor Borhuin",[2432]="Darla Harris",[2433]="Helcular's Remains",[2434]="Shadowy Assassin",[2435]="Southshore Crier",[2436]="Farmer Kent",[2437]="Keeper Bel'varil",[2438]="Bartolo Ginsetti",[2439]="Major Samuelson",[2440]="Drunken Footpad",[2442]="Cow",[2447]="Narillasanz",[2448]="Clerk Horrace Whitesteed",[2449]="Citizen Wilkes",[2450]="Miner Hackett",[2451]="Farmer Kalaba",[2452]="Skhowl",[2453]="Lo'Grosh",[2455]="Olivia Burnside",[2456]="Newton Burnside",[2457]="John Burnside",[2458]="Randolph Montague",[2459]="Mortimer Montague",[2460]="Barnum Stonemantle",[2461]="Bailey Stonemantle",[2462]="Flesh Eating Worm",[2464]="Commander Aggro'gosh",[2465]="Far Seer Mok'thardin",[2466]="Mountaineer Grugelm",[2468]="Mountaineer Thar",[2469]="Mountaineer Rharen",[2470]="Watcher Fraizer",[2473]="Granistad",[2474]="Kurdros",[2475]="Sloth",[2476]="Gosh-Haldir",[2477]="Gradok",[2478]="Haren Swifthoof",[2479]="Sludge",[2480]="Bro'kin",[2481]="Bliztik",[2482]="Zarena Cromwind",[2483]="Jaquilina Dramet",[2485]="Larimaine Purdue",[2486]="Fin Fizracket",[2487]="Fleet Master Seahorn",[2488]="Deeg",[2489]="Milstaff Stormeye",[2490]="First Mate Crazz",[2491]="Whiskey Slim",[2492]="Lexington Mortaim",[2493]="Dizzy One-Eye",[2494]="Privateer Bloads",[2495]="Drizzlik",[2496]="Baron Revilgaz",[2497]="Nimboya",[2498]="Crank Fizzlebub",[2499]="Markel Smythe",[2500]="Captain Hecklebury Smotts",[2503]="Hillsbrad Foreman",[2504]="Donyal Tovald",[2505]="Saltwater Snapjaw",[2506]="Mountaineer Harn",[2507]="Mountaineer Uthan",[2508]="Mountaineer Wuar",[2509]="Mountaineer Cragg",[2510]="Mountaineer Ozmok",[2511]="Mountaineer Bludd",[2512]="Mountaineer Roghan",[2513]="Mountaineer Janha",[2514]="Mountaineer Modax",[2515]="Mountaineer Fazgard",[2516]="Mountaineer Kamdar",[2517]="Mountaineer Langarr",[2518]="Mountaineer Swarth",[2519]="Kin'weelay",[2520]="Remote-Controlled Golem",[2521]="Skymane Gorilla",[2522]="Jaguero Stalker",[2523]="Searing Totem",[2524]="Mountaineer Haggis",[2525]="Mountaineer Barn",[2526]="Mountaineer Morlic",[2527]="Mountaineer Angst",[2528]="Mountaineer Haggil",[2529]="Son of Arugal",[2530]="Yenniku",[2531]="Minion of Doane",[2532]="Donna",[2533]="William",[2534]="Zanzil the Outcast",[2536]="Jon-Jon the Crow",[2540]="Ambermill Serpent",[2541]="Lord Sakrasis",[2542]="Catelyn the Blade",[2543]="Archmage Ansirem Runeweaver",[2544]="Southern Sand Crawler",[2546]="Fleet Master Firallon",[2547]="Ironpatch",[2548]="Captain Keelhaul",[2549]="Garr Salthoof",[2550]="Captain Stillwater",[2551]="Brutus",[2552]="Witherbark Troll",[2553]="Witherbark Shadowcaster",[2554]="Witherbark Axe Thrower",[2555]="Witherbark Witch Doctor",[2556]="Witherbark Headhunter",[2557]="Witherbark Shadow Hunter",[2558]="Witherbark Berserker",[2559]="Highland Strider",[2560]="Highland Thrasher",[2561]="Highland Fleshstalker",[2562]="Boulderfist Ogre",[2563]="Plains Creeper",[2564]="Boulderfist Enforcer",[2565]="Giant Plains Creeper",[2566]="Boulderfist Brute",[2567]="Boulderfist Magus",[2569]="Boulderfist Mauler",[2570]="Boulderfist Shaman",[2571]="Boulderfist Lord",[2572]="Drywhisker Kobold",[2573]="Drywhisker Surveyor",[2574]="Drywhisker Digger",[2575]="Dark Iron Supplier",[2577]="Dark Iron Shadowcaster",[2578]="Young Mesa Buzzard",[2579]="Mesa Buzzard",[2580]="Elder Mesa Buzzard",[2581]="Dabyrie Militia",[2582]="Dabyrie Laborer",[2583]="Stromgarde Troll Hunter",[2584]="Stromgarde Defender",[2585]="Stromgarde Soldier",[2586]="Syndicate Highwayman",[2587]="Syndicate Pathstalker",[2588]="Syndicate Prowler",[2589]="Syndicate Mercenary",[2590]="Syndicate Conjuror",[2591]="Syndicate Magus",[2592]="Rumbling Exile",[2594]="Sprogger",[2595]="Daggerspine Raider",[2596]="Daggerspine Sorceress",[2597]="Lord Falconcrest",[2598]="Darbel Montrose",[2599]="Otto",[2600]="Singer",[2601]="Foulbelly",[2602]="Ruul Onestone",[2603]="Kovork",[2604]="Molok the Crusher",[2605]="Zalas Witherbark",[2606]="Nimar the Slayer",[2607]="Prince Galen Trollbane",[2608]="Commander Amaren",[2609]="Geomancer Flintdagger",[2610]="Shakes O'Breen",[2611]="Fozruk",[2612]="Lieutenant Valorcall",[2614]="Air Force Alarm Bot (Alliance)",[2615]="Air Force Alarm Bot (Horde)",[2616]="Privateer Groy",[2618]="Hammerfall Peon",[2619]="Hammerfall Grunt",[2620]="Prairie Dog",[2621]="Hammerfall Guardian",[2622]="Sly Garrett",[2623]="Spirit of Old",[2624]="Gazban",[2625]="Viznik Goldgrubber",[2626]="Old Man Heming",[2627]="Grarnik Goodstitch",[2628]="Dalaran Worker",[2630]="Earthbind Totem",[2634]="Princess Poobah",[2635]="Elder Snapjaw Crocolisk",[2636]="Blackwater Deckhand",[2637]="Syndicate Bomb",[2638]="Syndicate Spectre",[2639]="Vilebranch Axe Thrower",[2640]="Vilebranch Witch Doctor",[2641]="Vilebranch Headhunter",[2642]="Vilebranch Shadowcaster",[2643]="Vilebranch Berserker",[2644]="Vilebranch Hideskinner",[2645]="Vilebranch Shadow Hunter",[2646]="Vilebranch Blood Drinker",[2647]="Vilebranch Soul Eater",[2648]="Vilebranch Aman'zasi Guard",[2649]="Witherbark Scalper",[2650]="Witherbark Zealot",[2651]="Witherbark Hideskinner",[2652]="Witherbark Venomblood",[2653]="Witherbark Sadist",[2654]="Witherbark Caller",[2655]="Green Sludge",[2656]="Jade Ooze",[2657]="Trained Razorbeak",[2658]="Razorbeak Gryphon",[2659]="Razorbeak Skylord",[2663]="Narkk",[2664]="Kelsey Yance",[2667]="Ward of Laze",[2668]="Danielle Zipstitch",[2669]="Sheri Zipstitch",[2670]="Xizk Goodstitch",[2671]="Mechanical Squirrel",[2672]="Cowardly Crosby",[2673]="Target Dummy",[2674]="Advanced Target Dummy",[2675]="Explosive Sheep",[2676]="Compact Harvest Reaper",[2678]="Mechanical Dragonling",[2679]="Wenna Silkbeard",[2680]="Vilebranch Wolf Pup",[2681]="Vilebranch Raiding Wolf",[2682]="Fradd Swiftgear",[2683]="Namdo Bizzfizzle",[2684]="Rizz Loosebolt",[2685]="Mazk Snipeshot",[2686]="Witherbark Broodguard",[2687]="Gnaz Blunderflame",[2688]="Ruppo Zipcoil",[2691]="Highvale Outrunner",[2692]="Highvale Scout",[2693]="Highvale Marksman",[2694]="Highvale Ranger",[2695]="Sara Balloo",[2696]="Foggy MacKreel",[2697]="Clyde Ranthal",[2698]="George Candarte",[2699]="Rikqiz",[2700]="Captain Nials",[2701]="Dustbelcher Ogre",[2703]="Zengu",[2704]="Hanashi",[2705]="Brewmeister Bilger",[2706]="Tor'gan",[2707]="Shadra",[2708]="Archmage Malin",[2711]="Phin Odelic",[2712]="Quae",[2713]="Kinelory",[2714]="Forsaken Courier",[2715]="Dustbelcher Brute",[2716]="Dustbelcher Wyrmhunter",[2717]="Dustbelcher Mauler",[2718]="Dustbelcher Shaman",[2719]="Dustbelcher Lord",[2720]="Dustbelcher Ogre Mage",[2721]="Forsaken Bodyguard",[2723]="Stone Golem",[2725]="Scalding Whelp",[2726]="Scorched Guardian",[2727]="Crag Coyote",[2728]="Feral Crag Coyote",[2729]="Elder Crag Coyote",[2730]="Rabid Crag Coyote",[2731]="Ridge Stalker",[2732]="Ridge Huntress",[2733]="Apothecary Jorell",[2734]="Ridge Stalker Patriarch",[2735]="Lesser Rock Elemental",[2736]="Greater Rock Elemental",[2737]="Durtham Greldon",[2738]="Stromgarde Cavalryman",[2739]="Shadowforge Tunneler",[2740]="Shadowforge Darkweaver",[2742]="Shadowforge Chanter",[2743]="Shadowforge Warrior",[2744]="Shadowforge Commander",[2745]="Ambassador Infernus",[2748]="Archaedas",[2749]="Barricade",[2751]="War Golem",[2752]="Rumbler",[2753]="Barnabus",[2754]="Anathemus",[2755]="Myzrael",[2757]="Blacklash",[2759]="Hematus",[2760]="Burning Exile",[2761]="Cresting Exile",[2762]="Thundering Exile",[2763]="Thenan",[2764]="Sleeby",[2765]="Znort",[2766]="Lolo the Lookout",[2767]="First Mate Nilzlix",[2768]="Professor Phizzlethorpe",[2769]="Captain Steelgut",[2770]="Tallow",[2771]="Drum Fel",[2772]="Korin Fel",[2773]="Or'Kalar",[2774]="Doctor Draxlegauge",[2775]="Daggerspine Marauder",[2776]="Vengeful Surge",[2778]="Deckhand Moishe",[2779]="Prince Nazjak",[2780]="Caretaker Nevlin",[2781]="Caretaker Weston",[2782]="Caretaker Alaric",[2783]="Marez Cowl",[2784]="King Magni Bronzebeard",[2785]="Theldurin the Lost",[2786]="Gerrig Bonegrip",[2787]="Zaruk",[2788]="Apprentice Kryten",[2789]="Skuerto",[2790]="Grand Mason Marblesten",[2791]="Enraged Rock Elemental",[2792]="Gor'mul",[2793]="Kor'gresh Coldrage",[2794]="Summoned Guardian",[2796]="Faelyssa",[2797]="Hovrak Gutrender",[2798]="Pand Stonebinder",[2799]="Lucian Fenner",[2801]="Tresa MacGregor",[2802]="Susan Tillinghast",[2803]="Malygen",[2804]="Kurden Bloodclaw",[2805]="Deneb Walker",[2806]="Bale",[2808]="Vikki Lonsav",[2810]="Hammon Karwn",[2812]="Drovnar Strongbrew",[2814]="Narj Deepslice",[2816]="Androd Fadran",[2817]="Rigglefuzz",[2818]="Slagg",[2819]="Tunkk",[2820]="Graud",[2821]="Keena",[2829]="Starving Buzzard",[2830]="Parched Buzzard",[2831]="Giant Buzzard",[2832]="Nixxrax Fillamug",[2834]="Myizz Luckycatch",[2835]="Cedrik Prose",[2836]="Brikk Keencraft",[2837]="Jaxin Chong",[2838]="Crazk Sparks",[2839]="Haren Kanmae",[2840]="Kizz Bluntstrike",[2842]="Wigcik",[2843]="Jutak",[2844]="Hurklor",[2845]="Fargon Mortalak",[2846]="Blixrez Goodstitch",[2847]="Jansen Underwood",[2848]="Glyx Brewright",[2849]="Qixdi Goodstitch",[2850]="Broken Tooth",[2851]="Urda",[2852]="Enslaved Druid of the Talon",[2853]="Freed Druid of the Talon",[2855]="Snang",[2856]="Angrun",[2857]="Thund",[2858]="Gringer",[2859]="Gyll",[2860]="Sigrun Ironhew",[2861]="Gorrik",[2870]="[UNUSED] Henria Derth",[2876]="Grunenstur Balindom",[2878]="Peria Lamenur",[2879]="Karrina Mekenda",[2880]="[UNUSED] Hurom Juggendolf",[2881]="Durdek Karrin",[2887]="Prismatic Exile",[2888]="Garek",[2892]="Stonevault Seer",[2893]="Stonevault Bonesnapper",[2894]="Stonevault Shaman",[2906]="Dustbelcher Warrior",[2907]="Dustbelcher Mystic",[2908]="Grawl",[2909]="Hammertoe Grez",[2910]="Prospector Ryedol",[2911]="Archaeologist Flagongut",[2912]="Chief Archaeologist Greywhisker",[2913]="Archaeologist Hollee",[2914]="Snake",[2915]="Hammertoe's Spirit",[2916]="Historian Karnik",[2917]="Prospector Remtravel",[2918]="Advisor Belgrum",[2919]="Fam'retor Guardian",[2920]="Lucien Tosselwrench",[2921]="Lotwil Veriatus",[2922]="Servo",[2923]="Mangy Silvermane",[2924]="Silvermane Wolf",[2925]="Silvermane Howler",[2926]="Silvermane Stalker",[2927]="Vicious Owlbeast",[2928]="Primitive Owlbeast",[2929]="Savage Owlbeast",[2930]="Sentinel Glynda Nal'Shea",[2931]="Zaricotl",[2932]="Magregan Deepshadow",[2934]="Keeper Bel'dugur",[2937]="Dagun the Ravenous",[2941]="Lanie Reed",[2943]="Ransin Donner",[2944]="Boss Tho'grun",[2945]="Murdaloc",[2946]="Puppet of Helcular",[2947]="Harken Windtotem",[2948]="Mull Thunderhorn",[2949]="Palemane Tanner",[2950]="Palemane Skinner",[2951]="Palemane Poacher",[2952]="Bristleback Invaders",[2953]="Bristleback Shaman",[2954]="Bristleback Battleboar",[2955]="Plainstrider",[2956]="Adult Plainstrider",[2957]="Elder Plainstrider",[2958]="Prairie Wolf",[2959]="Prairie Stalker",[2960]="Prairie Wolf Alpha",[2961]="Mountain Cougar",[2962]="Windfury Harpy",[2963]="Windfury Wind Witch",[2964]="Windfury Sorceress",[2965]="Windfury Matriarch",[2966]="Young Battleboar",[2967]="Galak Centaur",[2968]="Galak Outrunner",[2969]="Wiry Swoop",[2970]="Swoop",[2971]="Taloned Swoop",[2972]="Kodo Calf",[2973]="Kodo Bull",[2974]="Kodo Matriarch",[2975]="Venture Co. Hireling",[2976]="Venture Co. Laborer",[2977]="Venture Co. Taskmaster",[2978]="Venture Co. Worker",[2979]="Venture Co. Supervisor",[2980]="Grull Hawkwind",[2981]="Chief Hawkwind",[2982]="Seer Graytongue",[2983]="The Plains Vision",[2984]="Seer Wiserunner",[2985]="Ruul Eagletalon",[2986]="Dorn Plainstalker",[2987]="Eyahn Eagletalon",[2988]="Morin Cloudstalker",[2989]="Bael'dun Digger",[2990]="Bael'dun Appraiser",[2991]="Greatmother Hawkwind",[2992]="Healing Ward V",[2993]="Baine Bloodhoof",[2994]="Ancestral Spirit",[2995]="Tal",[2996]="Torn",[2997]="Jyn Stonehoof",[2998]="Karn Stonehoof",[2999]="Taur Stonehoof",[3000]="Gibbert",[3001]="Brek Stonehoof",[3002]="Kurm Stonehoof",[3003]="Fyr Mistrunner",[3004]="Tepa",[3005]="Mahu",[3007]="Una",[3008]="Mak",[3009]="Bena Winterhoof",[3010]="Mani Winterhoof",[3011]="Teg Dawnstrider",[3012]="Nata Dawnstrider",[3013]="Komin Winterhoof",[3014]="Nida Winterhoof",[3015]="Kuna Thunderhorn",[3016]="Tand",[3017]="Nan Mistrunner",[3018]="Hogor Thunderhoof",[3019]="Delgo Ragetotem",[3020]="Etu Ragetotem",[3021]="Kard Ragetotem",[3022]="Sunn Ragetotem",[3023]="Sura Wildmane",[3024]="Tah Winterhoof",[3025]="Kaga Mistrunner",[3026]="Aska Mistrunner",[3027]="Naal Mistrunner",[3028]="Kah Mistrunner",[3029]="Sewa Mistrunner",[3030]="Siln Skychaser",[3031]="Tigor Skychaser",[3032]="Beram Skychaser",[3033]="Turak Runetotem",[3034]="Sheal Runetotem",[3035]="Flatland Cougar",[3036]="Kym Wildmane",[3037]="Sheza Wildmane",[3038]="Kary Thunderhorn",[3039]="Holt Thunderhorn",[3040]="Urek Thunderhorn",[3041]="Torm Ragetotem",[3042]="Sark Ragetotem",[3043]="Ker Ragetotem",[3044]="Miles Welsh",[3045]="Malakai Cross",[3046]="Father Cobb",[3047]="Archmage Shymm",[3048]="Ursyn Ghull",[3049]="Thurston Xane",[3050]="Veren Tallstrider",[3051]="Supervisor Fizsprocket",[3052]="Skorn Whitecloud",[3053]="Synge",[3054]="Zarlman Two-Moons",[3055]="Maur Raincaller",[3056]="Ghost Howl",[3057]="Cairne Bloodhoof",[3058]="Arra'chea",[3059]="Harutt Thunderhorn",[3060]="Gart Mistrunner",[3061]="Lanka Farshot",[3062]="Meela Dawnstrider",[3063]="Krang Stonehoof",[3064]="Gennia Runetotem",[3065]="Yaw Sharpmane",[3066]="Narm Skychaser",[3067]="Pyall Silentstride",[3068]="Mazzranache",[3069]="Chaw Stronghide",[3072]="Kawnie Softbreeze",[3073]="Marjak Keenblade",[3074]="Varia Hardhide",[3075]="Bronk Steelrage",[3076]="Moorat Longstride",[3077]="Mahnott Roughwound",[3078]="Kennah Hawkseye",[3079]="Varg Windwhisper",[3080]="Harant Ironbrace",[3081]="Wunna Darkmane",[3083]="Honor Guard",[3084]="Bluffwatcher",[3085]="Gloria Femmel",[3086]="Gretchen Vogel",[3087]="Crystal Boughman",[3088]="Henry Chapal",[3089]="Sherman Femmel",[3090]="Gerald Crawley",[3091]="Franklin Hamar",[3092]="Tagain",[3093]="Grod",[3094]="Unseen",[3095]="Fela",[3096]="Captured Servant of Azora",[3097]="Bernard Brubaker",[3098]="Mottled Boar",[3099]="Dire Mottled Boar",[3100]="Elder Mottled Boar",[3101]="Vile Familiar",[3102]="Felstalker",[3103]="Makrura Clacker",[3104]="Makrura Shellhide",[3105]="Makrura Snapclaw",[3106]="Surf Crawler",[3107]="Mature Surf Crawler",[3108]="Encrusted Surf Crawler",[3110]="Dreadmaw Crocolisk",[3111]="Razormane Quilboar",[3112]="Razormane Scout",[3113]="Razormane Dustrunner",[3114]="Razormane Battleguard",[3115]="Dustwind Harpy",[3116]="Dustwind Pillager",[3117]="Dustwind Savage",[3118]="Dustwind Storm Witch",[3119]="Kolkar Drudge",[3120]="Kolkar Outrunner",[3121]="Durotar Tiger",[3122]="Bloodtalon Taillasher",[3123]="Bloodtalon Scythemaw",[3124]="Scorpid Worker",[3125]="Clattering Scorpid",[3126]="Armored Scorpid",[3127]="Venomtail Scorpid",[3128]="Kul Tiras Sailor",[3129]="Kul Tiras Marine",[3130]="Thunder Lizard",[3131]="Lightning Hide",[3133]="Herble Baubbletump",[3134]="Kzixx",[3135]="Malissa",[3136]="Clarise Gnarltree",[3137]="Matt Johnson",[3138]="Scott Carevin",[3139]="Gar'Thok",[3140]="Lar Prowltusk",[3141]="Makrura Elder",[3142]="Orgnil Soulscar",[3143]="Gornek",[3144]="Eitrigg",[3145]="Zureetha Fargaze",[3147]="Furl Scornbrow",[3149]="Nez'raz",[3150]="Hin Denburg",[3153]="Frang",[3154]="Jen'shan",[3155]="Rwag",[3156]="Nartok",[3157]="Shikrik",[3158]="Duokna",[3159]="Kzan Thornslash",[3160]="Huklah",[3161]="Rarc",[3162]="Burdrak Harglhelm",[3163]="Uhgar",[3164]="Jark",[3165]="Ghrawt",[3166]="Cutac",[3167]="Wuark",[3168]="Flakk",[3169]="Tarshaw Jaggedscar",[3170]="Kaplak",[3171]="Thotar",[3172]="Dhugru Gorelust",[3173]="Swart",[3174]="Dwukk",[3175]="Krunn",[3177]="Turuk Amberstill",[3178]="Stuart Fleming",[3179]="Harold Riggs",[3180]="Dark Iron Entrepreneur",[3181]="Fremal Doohickey",[3182]="Junder Brokk",[3183]="Yarrog Baneshadow",[3184]="Miao'zan",[3185]="Mishiki",[3186]="K'waii",[3187]="Tai'tasi",[3188]="Master Gadrin",[3189]="Kor'ghan",[3190]="Rhinag",[3191]="Cook Torka",[3192]="Lieutenant Benedict",[3193]="Misha Tor'kren",[3194]="Vel'rin Fang",[3195]="Burning Blade Thug",[3196]="Burning Blade Neophyte",[3197]="Burning Blade Fanatic",[3198]="Burning Blade Apprentice",[3199]="Burning Blade Cultist",[3203]="Fizzle Darkclaw",[3204]="Gazz'uz",[3205]="Zalazane",[3206]="Voodoo Troll",[3207]="Hexed Troll",[3208]="Margoz",[3209]="Brave Windfeather",[3210]="Brave Proudsnout",[3211]="Brave Lightninghorn",[3212]="Brave Ironhorn",[3213]="Brave Running Wolf",[3214]="Brave Greathoof",[3215]="Brave Strongbash",[3216]="Neeru Fireblade",[3217]="Brave Dawneagle",[3218]="Brave Swiftwind",[3219]="Brave Leaping Deer",[3220]="Brave Darksky",[3221]="Brave Rockhorn",[3222]="Brave Wildrunner",[3223]="Brave Rainchaser",[3224]="Brave Cloudmane",[3225]="Corrupted Mottled Boar",[3226]="Corrupted Scorpid",[3227]="Corrupted Bloodtalon Scythemaw",[3228]="Corrupted Surf Crawler",[3230]="Nazgrel",[3231]="Corrupted Dreadmaw Crocolisk",[3232]="Bristleback Interloper",[3233]="Lorekeeper Raintotem",[3234]="Lost Barrens Kodo",[3235]="Greater Barrens Kodo",[3236]="Barrens Kodo",[3237]="Wooly Kodo",[3238]="Stormhide",[3239]="Thunderhead",[3240]="Stormsnout",[3241]="Savannah Patriarch",[3242]="Zhevra Runner",[3243]="Savannah Highmane",[3244]="Greater Plainstrider",[3245]="Ornery Plainstrider",[3246]="Fleeting Plainstrider",[3247]="Thunderhawk Hatchling",[3248]="Barrens Giraffe",[3249]="Greater Thunderhawk",[3250]="Silithid Creeper",[3251]="Silithid Grub",[3252]="Silithid Swarmer",[3253]="Silithid Harvester",[3254]="Sunscale Lashtail",[3255]="Sunscale Screecher",[3256]="Sunscale Scytheclaw",[3257]="Ishamuhale",[3258]="Bristleback Hunter",[3260]="Bristleback Water Seeker",[3261]="Bristleback Thornweaver",[3263]="Bristleback Geomancer",[3265]="Razormane Hunter",[3266]="Razormane Defender",[3267]="Razormane Plunderer",[3268]="Razormane Thornweaver",[3269]="Razormane Geomancer",[3270]="Elder Mystic Razorsnout",[3271]="Razormane Mystic",[3272]="Kolkar Wrangler",[3273]="Kolkar Stormer",[3274]="Kolkar Pack Runner",[3275]="Kolkar Marauder",[3276]="Witchwing Harpy",[3277]="Witchwing Roguefeather",[3278]="Witchwing Slayer",[3279]="Witchwing Ambusher",[3280]="Witchwing Windcaller",[3281]="Sarkoth",[3282]="Venture Co. Mercenary",[3283]="Venture Co. Enforcer",[3284]="Venture Co. Drudger",[3285]="Venture Co. Peon",[3286]="Venture Co. Overseer",[3287]="Hana'zua",[3289]="Spirit of Minshina",[3290]="Deek Fizzlebizz",[3291]="Greishan Ironstove",[3292]="Brewmaster Drohn",[3293]="Rezlak",[3294]="Ophek",[3295]="Sludge Anomaly",[3296]="Orgrimmar Grunt",[3297]="Sen'jin Watcher",[3298]="Gabrielle Chase",[3300]="Adder",[3301]="Morgan Ladimore",[3304]="Master Vornal",[3305]="Grisha",[3306]="Keldas",[3309]="Karus",[3310]="Doras",[3312]="Olvia",[3313]="Trak'gen",[3314]="Urtharo",[3315]="Tor'phan",[3316]="Handor",[3317]="Ollanus",[3318]="Koma",[3319]="Sana",[3320]="Soran",[3321]="Morgum",[3322]="Kaja",[3323]="Horthus",[3324]="Grol'dar",[3325]="Mirket",[3326]="Zevrost",[3327]="Gest",[3328]="Ormok",[3329]="Kor'jus",[3330]="Muragus",[3331]="Kareth",[3332]="Lumak",[3333]="Shankys",[3334]="Rekkul",[3335]="Hagrus",[3336]="Takrin Pathseeker",[3337]="Kargal Battlescar",[3338]="Sergra Darkthorn",[3339]="Captain Thalo'thas Brightsun",[3341]="Gann Stonespire",[3342]="Shan'ti",[3343]="Grelkor",[3344]="Kardris Dreamseeker",[3345]="Godan",[3346]="Kithas",[3347]="Yelmak",[3348]="Kor'geld",[3349]="Ukra'nor",[3350]="Asoran",[3351]="Magenius",[3352]="Ormak Grimshot",[3353]="Grezz Ragefist",[3354]="Sorek",[3355]="Saru Steelfury",[3356]="Sumi",[3357]="Makaru",[3358]="Gorina",[3359]="Kiro",[3360]="Koru",[3361]="Shoma",[3362]="Ogunaro Wolfrunner",[3363]="Magar",[3364]="Borya",[3365]="Karolek",[3366]="Tamar",[3367]="Felika",[3368]="Borstan",[3369]="Gotri",[3370]="Urtrun Clanbringer",[3371]="Tamaro",[3372]="Sarlek",[3373]="Arnok",[3374]="Bael'dun Excavator",[3375]="Bael'dun Foreman",[3376]="Bael'dun Soldier",[3377]="Bael'dun Rifleman",[3378]="Bael'dun Officer",[3379]="Burning Blade Bruiser",[3380]="Burning Blade Acolyte",[3381]="Southsea Brigand",[3382]="Southsea Cannoneer",[3383]="Southsea Cutthroat",[3384]="Southsea Privateer",[3385]="Theramore Marine",[3386]="Theramore Preserver",[3387]="Jorn Skyseer",[3388]="Mahren Skyseer",[3389]="Regthar Deathgate",[3390]="Apothecary Helbrim",[3391]="Gazlowe",[3392]="Prospector Khazgorm",[3393]="Captain Fairmount",[3394]="Barak Kodobane",[3395]="Verog the Dervish",[3396]="Hezrul Bloodmark",[3397]="Kolkar Bloodcharger",[3398]="Gesharahan",[3399]="Zamja",[3400]="Xen'to",[3401]="Shenthul",[3402]="Zando'zan",[3403]="Sian'tsu",[3404]="Jandi",[3405]="Zeal'aya",[3406]="Xor'juul",[3407]="Sian'dur",[3408]="Zel'mak",[3409]="Zendo'jian",[3410]="Jin'sora",[3411]="Denni'ka",[3412]="Nogg",[3413]="Sovik",[3414]="General Twinbraid",[3415]="Savannah Huntress",[3416]="Savannah Matriarch",[3417]="Living Flame",[3418]="Kirge Sternhorn",[3419]="Apothecary Zamah",[3421]="Feegly the Exiled",[3424]="Thunderhawk Cloudscraper",[3425]="Savannah Prowler",[3426]="Zhevra Charger",[3428]="Korran",[3429]="Thork",[3430]="Mangletooth",[3431]="Grenthar",[3432]="Mankrik",[3433]="Tatternack Steelforge",[3434]="Nak",[3435]="Lok Orcbane",[3436]="Kuz",[3438]="Kreenig Snarlsnout",[3439]="Wizzlecrank's Shredder",[3441]="Melor Stonehoof",[3442]="Sputtervalve",[3443]="Grub",[3444]="Dig Rat",[3445]="Supervisor Lugwizzle",[3446]="Mebok Mizzyrix",[3447]="Pawe Mistrunner",[3448]="Tonga Runetotem",[3449]="Darsok Swiftdagger",[3450]="Defias Companion",[3451]="Pilot Wizzlecrank",[3452]="Serena Bloodfeather",[3453]="Wharfmaster Dizzywig",[3454]="Cannoneer Smythe",[3455]="Cannoneer Whessan",[3456]="Razormane Pathfinder",[3457]="Razormane Stalker",[3458]="Razormane Seer",[3459]="Razormane Warfrenzy",[3461]="Oasis Snapjaw",[3462]="Elder Barrens Giraffe",[3463]="Wandering Barrens Giraffe",[3464]="Gazrog",[3465]="Gilthares Firebough",[3466]="Zhevra Courser",[3467]="Baron Longshore",[3468]="Ancient of Lore",[3469]="Ancient of War",[3470]="Rathorian",[3471]="Tinkerer Sniggles",[3472]="Washte Pawne",[3473]="Owatanka",[3474]="Lakota'mani",[3475]="Echeyakee",[3476]="Isha Awak",[3477]="Hraq",[3478]="Traugh",[3479]="Nargal Deatheye",[3480]="Moorane Hearthgrain",[3481]="Barg",[3482]="Tari'qa",[3483]="Jahan Hawkwing",[3484]="Kil'hala",[3485]="Wrahk",[3486]="Halija Whitestrider",[3487]="Kalyimah Stormcloud",[3488]="Uthrok",[3489]="Zargh",[3490]="Hula'mahi",[3491]="Ironzar",[3492]="Vexspindle",[3493]="Grazlix",[3494]="Tinkerwiz",[3495]="Gagsprocket",[3496]="Fuzruckle",[3497]="Kilxx",[3498]="Jazzik",[3499]="Ranik",[3500]="Tarhus",[3501]="Horde Guard",[3502]="Ratchet Bruiser",[3503]="Silithid Protector",[3504]="Gil",[3505]="Pat",[3507]="Andi",[3508]="Mikey",[3509]="Geoff",[3510]="Twain",[3511]="Steven",[3512]="Jimmy",[3513]="Miss Danna",[3514]="Tenaron Stormgrip",[3515]="Corithras Moonrage",[3516]="Arch Druid Fandral Staghelm",[3517]="Rellian Greenspyre",[3518]="Thomas Miller",[3519]="Sentinel Arynia Cloudsbreak",[3520]="Ol' Emma",[3521]="Ak'Zeloth",[3522]="Constance Brisboise",[3523]="Bowen Brisboise",[3524]="Spirit Wolf",[3527]="Healing Stream Totem",[3528]="Pyrewood Armorer",[3529]="Moonrage Armorer",[3530]="Pyrewood Tailor",[3531]="Moonrage Tailor",[3532]="Pyrewood Leatherworker",[3533]="Moonrage Leatherworker",[3534]="Wallace the Blind",[3535]="Blackmoss the Fetid",[3536]="Kris Legace",[3537]="Zixil",[3538]="Overwatch Mark I",[3539]="Ott",[3540]="Hal McAllister",[3541]="Sarah Raycroft",[3542]="Jaysin Lanyda",[3543]="Robert Aebischer",[3544]="Jason Lemieux",[3545]="Claude Erksine",[3546]="Bernie Heisten",[3547]="Hamlin Atkins",[3548]="Selina Weston",[3549]="Shelene Rhobart",[3550]="Martine Tramblay",[3551]="Patrice Dwyer",[3552]="Alexandre Lefevre",[3553]="Sebastian Meloche",[3554]="Andrea Boynton",[3555]="Johan Focht",[3556]="Andrew Hilbert",[3557]="Guillaume Sorouy",[3560]="Healing Ward",[3561]="Kyrai",[3562]="Alaindia",[3566]="Flatland Prowler",[3567]="Tallonkai Swiftroot",[3568]="Mist",[3569]="Bogling",[3570]="Cleansed Timberling",[3571]="Teldrassil Sentinel",[3572]="Zizzek",[3573]="Mana Spring Totem",[3577]="Ambermill Brewmaster",[3578]="Ambermill Miner",[3579]="Stoneclaw Totem",[3580]="Crafticus Rabbitus",[3581]="Sewer Beast",[3582]="Aman",[3583]="Barithras Moonshade",[3584]="Therylune",[3585]="Therysil",[3586]="Miner Johnson",[3587]="Lyrai",[3588]="Khardan Proudblade",[3589]="Keina",[3590]="Janna Brightmoon",[3591]="Freja Nightwing",[3592]="Andiss",[3593]="Alyissia",[3594]="Frahun Shadewhisper",[3595]="Shanda",[3596]="Ayanna Everstride",[3597]="Mardant Strongoak",[3598]="Kyra Windblade",[3599]="Jannok Breezesong",[3600]="Laurna Morninglight",[3601]="Dazalar",[3602]="Kal",[3603]="Cyndra Kindwhisper",[3604]="Malorne Bladeleaf",[3605]="Nadyia Maneweaver",[3606]="Alanna Raveneye",[3607]="Androl Oakhand",[3608]="Aldia",[3609]="Shalomon",[3610]="Jeena Featherbow",[3611]="Brannol Eaglemoon",[3612]="Sinda",[3613]="Meri Ironweave",[3614]="Narret Shadowgrove",[3615]="Devrak",[3616]="Onu",[3617]="Lordaeron Citizen",[3619]="Ghost Saber",[3620]="Harruk",[3621]="Kurll",[3622]="Grokor",[3624]="Zudd",[3625]="Rarck",[3626]="Jenn Langston",[3627]="Erich Lohan",[3628]="Steven Lohan",[3629]="David Langston",[3630]="Deviate Coiler",[3631]="Deviate Stinglash",[3632]="Deviate Creeper",[3633]="Deviate Slayer",[3634]="Deviate Stalker",[3636]="Deviate Ravager",[3637]="Deviate Guardian",[3638]="Devouring Ectoplasm",[3639]="Sentinel Tysha Moonblade",[3640]="Evolving Ectoplasm",[3641]="Deviate Lurker",[3644]="Cerellean Whiteclaw",[3649]="Thundris Windweaver",[3650]="Asterion",[3652]="Trigore the Lasher",[3653]="Kresh",[3654]="Mutanus the Devourer",[3655]="Mad Magglish",[3657]="Sentinel Elissa Starbreeze",[3658]="Lizzarik",[3659]="Jorb",[3660]="Athrikus Narassin",[3661]="Balthule Shadowstrike",[3662]="Delmanis the Hated",[3663]="Delgren the Purifier",[3664]="Ilkrud Magthrull",[3665]="Crane Operator Bigglefuzz",[3666]="Wizbang Cranktoggle",[3667]="Anaya Dawnrunner",[3669]="Lord Cobrahn",[3670]="Lord Pythas",[3671]="Lady Anacondra",[3672]="Boahn",[3673]="Lord Serpentis",[3674]="Skum",[3678]="Muyoh",[3679]="Naralex",[3680]="Serpentbloom Snake",[3681]="Wisp",[3682]="Vrang Wildgore",[3683]="Kiknikle",[3684]="Pizznukle",[3685]="Harb Clawhoof",[3688]="Reban Freerunner",[3689]="Laer Stepperunner",[3690]="Kar Stormsinger",[3691]="Raene Wolfrunner",[3692]="Volcor",[3693]="Terenthis",[3694]="Sentinel Selarin",[3695]="Grimclaw",[3696]="Ran Bloodtooth",[3698]="Bolyun",[3700]="Jadenvis Seawatcher",[3701]="Tharnariun Treetender",[3702]="Alanndarian Nightsong",[3703]="Krulmoo Fullmoon",[3704]="Mahani",[3705]="Gahroot",[3706]="Tai'jin",[3707]="Ken'jai",[3708]="Gruna",[3711]="Wrathtail Myrmidon",[3712]="Wrathtail Razortail",[3713]="Wrathtail Wave Rider",[3715]="Wrathtail Sea Witch",[3717]="Wrathtail Sorceress",[3721]="Mystlash Hydra",[3722]="Mystlash Flayer",[3725]="Dark Strand Cultist",[3727]="Dark Strand Enforcer",[3728]="Dark Strand Adept",[3730]="Dark Strand Excavator",[3732]="Forsaken Seeker",[3733]="Forsaken Herbalist",[3734]="Orc Overseer",[3735]="Apothecary Falthis",[3736]="Darkslayer Mordenthal",[3737]="Saltspittle Puddlejumper",[3739]="Saltspittle Warrior",[3740]="Saltspittle Muckdweller",[3742]="Saltspittle Oracle",[3743]="Foulweald Warrior",[3745]="Foulweald Pathfinder",[3746]="Foulweald Den Watcher",[3748]="Foulweald Shaman",[3749]="Foulweald Ursa",[3750]="Foulweald Totemic",[3752]="Xavian Rogue",[3754]="Xavian Betrayer",[3755]="Xavian Felsworn",[3757]="Xavian Hellcaller",[3758]="Felmusk Satyr",[3759]="Felmusk Rogue",[3762]="Felmusk Felsworn",[3763]="Felmusk Shadowstalker",[3765]="Bleakheart Satyr",[3767]="Bleakheart Trickster",[3770]="Bleakheart Shadowstalker",[3771]="Bleakheart Hellcaller",[3772]="Lesser Felguard",[3773]="Akkrilus",[3774]="Felslayer",[3779]="Syurana",[3780]="Singed Shambler",[3781]="Shadethicket Wood Shaper",[3782]="Shadethicket Stone Mover",[3783]="Shadethicket Raincaller",[3784]="Shadethicket Bark Ripper",[3789]="Terrowulf Fleshripper",[3791]="Terrowulf Shadow Weaver",[3792]="Terrowulf Packlord",[3794]="Druid of the Talon",[3795]="Druid of the Claw",[3797]="Cenarion Protector",[3799]="Severed Druid",[3801]="Severed Sleeper",[3802]="Severed Dreamer",[3803]="Severed Keeper",[3804]="Forsaken Intruder",[3806]="Forsaken Infiltrator",[3807]="Forsaken Assassin",[3808]="Forsaken Dark Stalker",[3809]="Ashenvale Bear",[3810]="Elder Ashenvale Bear",[3811]="Giant Ashenvale Bear",[3812]="Clattering Crawler",[3814]="Spined Crawler",[3815]="Blink Dragon",[3816]="Wild Buck",[3817]="Shadowhorn Stag",[3818]="Elder Shadowhorn Stag",[3819]="Wildthorn Stalker",[3820]="Wildthorn Venomspitter",[3821]="Wildthorn Lurker",[3823]="Ghostpaw Runner",[3824]="Ghostpaw Howler",[3825]="Ghostpaw Alpha",[3831]="[UNUSED] Ancient Guardian",[3833]="Cenarion Vindicator",[3834]="Crazed Ancient",[3835]="Biletoad",[3836]="Mountaineer Pebblebitty",[3838]="Vesprystus",[3840]="Druid of the Fang",[3841]="Teldira Moonfeather",[3842]="Brombar Higgleby",[3843]="Anaya",[3844]="Healing Ward IV",[3845]="Shindrell Swiftfire",[3846]="Talen",[3847]="Orendil Broadleaf",[3848]="Kayneth Stillwind",[3849]="Deathstalker Adamant",[3850]="Sorcerer Ashcrombe",[3851]="Shadowfang Whitescalp",[3853]="Shadowfang Moonwalker",[3854]="Shadowfang Wolfguard",[3855]="Shadowfang Darksoul",[3857]="Shadowfang Glutton",[3859]="Shadowfang Ragetooth",[3861]="Bleak Worg",[3862]="Slavering Worg",[3863]="Lupine Horror",[3864]="Fel Steed",[3865]="Shadow Charger",[3866]="Vile Bat",[3868]="Blood Seeker",[3869]="Lesser Gargoyle",[3870]="Stone Sleeper",[3872]="Deathsworn Captain",[3873]="Tormented Officer",[3875]="Haunted Servitor",[3877]="Wailing Guardsman",[3879]="Dark Strand Assassin",[3880]="Sentinel Melyria Frostshadow",[3881]="Grimtak",[3882]="Zlagk",[3883]="Moodan Sungrain",[3884]="Jhawna Oatwind",[3885]="Sentinel Velene Starstrike",[3886]="Razorclaw the Butcher",[3887]="Baron Silverlaine",[3888]="Korra",[3890]="Brakgul Deathbringer",[3891]="Teronis' Corpse",[3892]="Relara Whitemoon",[3893]="Forsaken Scout",[3894]="Pelturas Whitemoon",[3897]="Krolg",[3898]="Aligar the Tormentor",[3899]="Balizar the Umbrage",[3900]="Caedakar the Vicious",[3901]="Illiyana",[3902]="Searing Totem II",[3903]="Searing Totem III",[3904]="Searing Totem IV",[3906]="Healing Stream Totem II",[3907]="Healing Stream Totem III",[3908]="Healing Stream Totem IV",[3909]="Healing Stream Totem V",[3911]="Stoneclaw Totem II",[3912]="Stoneclaw Totem III",[3913]="Stoneclaw Totem IV",[3914]="Rethilgore",[3915]="Dagri",[3916]="Shael'dryn",[3917]="Befouled Water Elemental",[3919]="Withered Ancient",[3920]="Anilia",[3921]="Thistlefur Ursa",[3922]="Thistlefur Totemic",[3923]="Thistlefur Den Watcher",[3924]="Thistlefur Shaman",[3925]="Thistlefur Avenger",[3926]="Thistlefur Pathfinder",[3927]="Wolf Master Nandos",[3928]="Rotting Slime",[3931]="Shadethicket Oracle",[3932]="Bloodtooth Guard",[3933]="Hai'zan",[3934]="Innkeeper Boorand Plainswind",[3935]="Toddrick",[3936]="Shandris Feathermoon",[3937]="Kira Songshine",[3939]="Razormane Wolf",[3940]="Taneel Darkwood",[3941]="Uthil Mooncall",[3942]="Mavoris Cloudsbreak",[3943]="Ruuzel",[3944]="Wrathtail Priestess",[3945]="Caravaneer Ruzzgot",[3946]="Velinde Starsong",[3947]="Goblin Shipbuilder",[3948]="Honni Goldenoat",[3950]="Minor Water Guardian",[3951]="Bhaldaran Ravenshade",[3952]="Aeolynn",[3953]="Tandaan Lightmane",[3954]="Dalria",[3955]="Shandrina",[3956]="Harklan Moongrove",[3957]="Jainay Featherbreeze",[3958]="Lardan",[3959]="Nantar",[3960]="Ulthaan",[3961]="Maliynn",[3962]="Haljan Oakheart",[3963]="Danlaar Nightstride",[3964]="Kylanna",[3965]="Cylania Rootstalker",[3967]="Aayndia Floralwind",[3968]="Sentry Totem",[3969]="Fahran Silentblade",[3970]="Llana",[3974]="Houndmaster Loksey",[3975]="Herod",[3976]="Scarlet Commander Mograine",[3977]="High Inquisitor Whitemane",[3978]="Sage Truthseeker",[3979]="Librarian Mae Paledust",[3980]="Raleigh the Devout",[3981]="Vorrel Sengutz",[3982]="Monika Sengutz",[3983]="Interrogator Vishas",[3984]="Nancy Vishas",[3985]="Grandpa Vishas",[3986]="Sarilus Foulborne",[3987]="Dal Bloodclaw",[3988]="Venture Co. Operator",[3989]="Venture Co. Logger",[3991]="Venture Co. Deforester",[3992]="Venture Co. Holdout",[3993]="Venture Co. Machine Smith",[3994]="Keeper Albagorm",[3995]="Witch Doctor Jin'Zil",[3996]="Faldreas Goeth'Shael",[3998]="Windshear Vermin",[3999]="Windshear Digger",[4001]="Windshear Tunnel Rat",[4002]="Windshear Stonecutter",[4003]="Windshear Geomancer",[4004]="Windshear Overlord",[4005]="Deepmoss Creeper",[4006]="Deepmoss Webspinner",[4007]="Deepmoss Venomspitter",[4008]="Cliff Stormer",[4009]="Raging Cliff Stormer",[4011]="Young Pridewing",[4012]="Pridewing Wyvern",[4013]="Pridewing Skyhunter",[4014]="Pridewing Consort",[4015]="Pridewing Patriarch",[4016]="Fey Dragon",[4017]="Wily Fey Dragon",[4018]="Antlered Courser",[4019]="Great Courser",[4020]="Sap Beast",[4021]="Corrupted Sap Beast",[4022]="Bloodfury Harpy",[4023]="Bloodfury Roguefeather",[4024]="Bloodfury Slayer",[4025]="Bloodfury Ambusher",[4026]="Bloodfury Windcaller",[4027]="Bloodfury Storm Witch",[4028]="Charred Ancient",[4029]="Blackened Ancient",[4030]="Vengeful Ancient",[4031]="Fledgling Chimaera",[4032]="Young Chimaera",[4034]="Enraged Stone Spirit",[4035]="Furious Stone Spirit",[4036]="Rogue Flame Spirit",[4037]="Burning Ravager",[4038]="Burning Destroyer",[4040]="Cave Stalker",[4041]="Scorched Basilisk",[4042]="Singed Basilisk",[4043]="Galthuk",[4044]="Blackened Basilisk",[4046]="Magatha Grimtotem",[4047]="Zor Lonetree",[4048]="Falfindel Waywarder",[4049]="Seereth Stonebreak",[4050]="Cenarion Caretaker",[4051]="Cenarion Botanist",[4052]="Cenarion Druid",[4053]="Daughter of Cenarius",[4054]="Laughing Sister",[4056]="Mirkfallon Keeper",[4057]="Son of Cenarius",[4059]="Forest Spirit",[4061]="Mirkfallon Dryad",[4062]="Dark Iron Bombardier",[4063]="Feeboz",[4064]="Blackrock Scout",[4065]="Blackrock Sentry",[4066]="Nal'taszar",[4067]="Twilight Runner",[4068]="Serpent Messenger",[4070]="Venture Co. Builder",[4072]="Prisoner of Jin'Zil",[4073]="XT:4",[4074]="XT:9",[4075]="Rat",[4076]="Roach",[4077]="Gaxim Rustfizzle",[4078]="Collin Mauren",[4079]="Sentinel Thenysil",[4080]="Kaela Shadowspear",[4081]="Lomac Gearstrip",[4082]="Grawnal",[4083]="Jeeda",[4084]="Chylina",[4085]="Nizzik",[4086]="Veenix",[4087]="Arias'ta Bladesinger",[4088]="Elanaria",[4089]="Sildanair",[4090]="Astarii Starseeker",[4091]="Jandria",[4092]="Lariia",[4093]="[Deprecated for 4.x]Galak Wrangler",[4094]="[Deprecated for 4.x]Galak Scout",[4095]="Galak Mauler",[4096]="[Deprecated for 4.x]Galak Windchaser",[4097]="Galak Stormer",[4099]="Galak Marauder",[4100]="Screeching Harpy",[4101]="Screeching Roguefeather",[4104]="Screeching Windcaller",[4107]="Highperch Wyvern",[4109]="Highperch Consort",[4110]="Highperch Patriarch",[4111]="Gravelsnout Kobold",[4112]="Gravelsnout Vermin",[4113]="Gravelsnout Digger",[4114]="Gravelsnout Forager",[4116]="Gravelsnout Surveyor",[4117]="Cloud Serpent",[4118]="Venomous Cloud Serpent",[4119]="Elder Cloud Serpent",[4120]="Thundering Boulderkin",[4124]="Needles Cougar",[4126]="Crag Stalker",[4127]="Hecklefang Hyena",[4128]="Hecklefang Stalker",[4129]="Hecklefang Snarler",[4130]="[Deprecated for 4.x]Silithid Searcher",[4131]="[Deprecated for 4.x]Silithid Invader",[4132]="Krkk'kx",[4133]="[Deprecated for 4.x]Silithid Hive Drone",[4138]="Jeen'ra Nightrunner",[4139]="Scorpid Terror",[4140]="Scorpid Reaver",[4142]="[Deprecated for 4.x]Sparkleshell Tortoise",[4143]="Sparkleshell Snapper",[4144]="Sparkleshell Borer",[4146]="Jocaste",[4147]="[Deprecated for 4.x]Saltstone Basilisk",[4150]="[Deprecated for 4.x]Saltstone Gazer",[4151]="[Deprecated for 4.x]Saltstone Crystalhide",[4154]="Salt Flats Scavenger",[4155]="Idriana",[4156]="Astaia",[4158]="Salt Flats Vulture",[4159]="Me'lynn",[4160]="Ainethil",[4161]="Lysheana",[4163]="Syurna",[4164]="Cylania",[4165]="Elissa Dumas",[4166]="Gazelle",[4167]="Dendrythis",[4168]="Elynna",[4169]="Jaeana",[4170]="Ellandrieth",[4171]="Merelyssa",[4172]="Anadyia",[4173]="Landria",[4175]="Vinasia",[4177]="Melea",[4180]="Ealyshia Dewwhisper",[4181]="Fyrenna",[4182]="Dalmond",[4183]="Naram Longclaw",[4184]="Geenia Sunshadow",[4185]="Shaldyn",[4186]="Mavralyn",[4187]="Harlon Thornguard",[4188]="Illyanie",[4189]="Valdaron",[4190]="Kyndri",[4191]="Allyndia",[4192]="Taldan",[4193]="Grondal Moonbreeze",[4194]="Ullanna",[4195]="Tiyani",[4196]="Silithid Swarm",[4197]="Ken'zigla",[4198]="Braelyn Firehand",[4200]="Laird",[4201]="Ziz Fizziks",[4202]="Gerenzo Wrenchwhistle",[4203]="Ariyell Skyshadow",[4204]="Firodren Mooncaller",[4205]="Dorion",[4208]="Lairn",[4209]="Garryeth",[4210]="Alegorn",[4211]="Dannelor",[4212]="Telonis",[4213]="Taladan",[4214]="Erion Shadewhisper",[4215]="Anishar",[4216]="Chardryn",[4217]="Mathrengyl Bearwalker",[4218]="Denatharion",[4219]="Fylerian Nightwing",[4220]="Cyroen",[4221]="Talaelar",[4222]="Voloren",[4223]="Fyldan",[4225]="Saenorion",[4226]="Ulthir",[4228]="Vaean",[4229]="Mythrin'dir",[4230]="Yldan",[4231]="Kieran",[4232]="Glorandiir",[4233]="Mythidan",[4234]="Andrus",[4235]="Turian",[4236]="Cyridan",[4240]="Caynrus",[4241]="Mydrannul",[4242]="Frostsaber Companion",[4243]="Nightshade",[4244]="Shadow",[4248]="Pesterhide Hyena",[4249]="Pesterhide Snarler",[4250]="Galak Packhound",[4251]="Goblin Racer",[4252]="Gnome Racer",[4254]="Geofram Bouldertoe",[4255]="Brogus Thunderbrew",[4256]="Golnir Bouldertoe",[4257]="Lana Thunderbrew",[4258]="Bengus Deepforge",[4259]="Thurgrum Deepforge",[4260]="Venture Co. Shredder",[4262]="Darnassus Sentinel",[4263]="Deepmoss Hatchling",[4264]="Deepmoss Matriarch",[4265]="Nyoma",[4266]="Danlyia",[4267]="Daelyshia",[4269]="Chestnut Mare",[4270]="Riding Wolf (Red)",[4271]="Dire Wolf",[4272]="Brown Wolf",[4273]="Keeper Ordanus",[4274]="Fenrus the Devourer",[4275]="Archmage Arugal",[4276]="Piznik",[4277]="Eye of Kilrogg",[4278]="Commander Springvale",[4279]="Odo the Blindwatcher",[4280]="Scarlet Preserver",[4281]="Scarlet Scout",[4282]="Scarlet Magician",[4283]="Scarlet Sentry",[4284]="Scarlet Augur",[4285]="Scarlet Disciple",[4286]="Scarlet Soldier",[4287]="Scarlet Gallant",[4288]="Scarlet Beastmaster",[4289]="Scarlet Evoker",[4290]="Scarlet Guardsman",[4291]="Scarlet Diviner",[4292]="Scarlet Protector",[4293]="Scarlet Scryer",[4294]="Scarlet Sorcerer",[4295]="Scarlet Myrmidon",[4296]="Scarlet Adept",[4297]="Scarlet Conjuror",[4298]="Scarlet Defender",[4299]="Scarlet Chaplain",[4300]="Scarlet Wizard",[4301]="Scarlet Centurion",[4302]="Scarlet Champion",[4303]="Scarlet Abbot",[4304]="Scarlet Tracking Hound",[4305]="Kriggon Talsone",[4306]="Scarlet Torturer",[4307]="Heldan Galesong",[4308]="Unfettered Spirit",[4309]="Gorm Grimtotem",[4310]="Cor Grimtotem",[4311]="Holgar Stormaxe",[4312]="Tharm",[4314]="Gorkas",[4316]="Kolkar Packhound",[4317]="Nyse",[4319]="Thyssiana",[4320]="Caelyb",[4321]="Baldruc",[4323]="Searing Hatchling",[4324]="Searing Whelp",[4328]="Firemane Scalebane",[4329]="Firemane Scout",[4331]="Firemane Ash Tail",[4334]="Firemane Flamecaller",[4339]="Brimgore",[4341]="Drywallow Crocolisk",[4342]="Drywallow Vicejaw",[4343]="Drywallow Snapper",[4344]="Mottled Drywallow Crocolisk",[4345]="Drywallow Daggermaw",[4346]="Noxious Flayer",[4347]="Noxious Reaver",[4348]="Noxious Shredder",[4351]="Bloodfen Raptor",[4352]="Bloodfen Screecher",[4355]="Bloodfen Scytheclaw",[4356]="Bloodfen Razormaw",[4357]="Bloodfen Lashtail",[4358]="Mirefin Puddlejumper",[4359]="Mirefin Murloc",[4360]="Mirefin Warrior",[4361]="Mirefin Muckdweller",[4362]="Mirefin Coastrunner",[4363]="Mirefin Oracle",[4364]="Strashaz Warrior",[4366]="Strashaz Serpent Guard",[4368]="Strashaz Myrmidon",[4370]="Strashaz Sorceress",[4371]="Strashaz Siren",[4374]="Strashaz Hydra",[4376]="Darkmist Spider",[4377]="Darkmist Hatchling",[4378]="Darkmist Recluse",[4379]="Darkmist Silkspinner",[4380]="Darkmist Widow",[4382]="Withervine Creeper",[4385]="Withervine Rager",[4386]="Withervine Bark Ripper",[4387]="Withervine Mire Beast",[4388]="Young Murk Thresher",[4389]="Murk Thresher",[4390]="Elder Murk Thresher",[4391]="Swamp Ooze",[4392]="Corrosive Swamp Ooze",[4393]="Acidic Swamp Ooze",[4394]="Bubbling Swamp Ooze",[4396]="Mudrock Tortoise",[4397]="Mudrock Spikeshell",[4398]="Mudrock Burrower",[4399]="Mudrock Borer",[4400]="Mudrock Snapjaw",[4401]="Muckshell Clacker",[4402]="Muckshell Snapclaw",[4403]="Muckshell Pincer",[4404]="Muckshell Scrabbler",[4405]="Muckshell Razorclaw",[4407]="Teloren",[4409]="Gatekeeper Kordurus",[4411]="Darkfang Lurker",[4412]="Darkfang Creeper",[4413]="Darkfang Spider",[4414]="Darkfang Venomspitter",[4415]="Giant Darkfang Spider",[4416]="Defias Strip Miner",[4417]="Defias Taskmaster",[4418]="Defias Wizard",[4419]="Race Master Kronkrider",[4420]="Overlord Ramtusk",[4421]="Charlga Razorflank",[4422]="Agathelos the Raging",[4423]="Darnassian Protector",[4424]="Aggem Thorncurse",[4425]="Blind Hunter",[4427]="Ward Guardian",[4428]="Death Speaker Jargba",[4429]="Goblin Pit Crewman",[4430]="Gnome Pit Crewman",[4435]="Razorfen Warrior",[4436]="Razorfen Quilguard",[4437]="Razorfen Warden",[4438]="Razorfen Spearhide",[4440]="Razorfen Totemic",[4442]="Razorfen Defender",[4444]="Deathstalker Vincent",[4449]="Crazzle Sprysprocket",[4450]="Rugfizzle",[4451]="Auld Stonespire",[4452]="Kravel Koalbeard",[4453]="Wizzle Brassbolts",[4454]="Fizzle Brassbolts",[4455]="Red Jack Flint",[4456]="Fiora Longears",[4457]="Murkgill Forager",[4458]="Murkgill Hunter",[4459]="Murkgill Oracle",[4460]="Murkgill Coldbringer",[4461]="Murkgill Warrior",[4462]="Blackrock Hunter",[4463]="Blackrock Summoner",[4464]="Blackrock Gladiator",[4465]="Vilebranch Warrior",[4466]="Vilebranch Scalper",[4467]="Vilebranch Soothsayer",[4468]="Jade Sludge",[4469]="Emerald Ooze",[4472]="Haunting Vision",[4474]="Rotting Cadaver",[4475]="Blighted Zombie",[4479]="Fardel Dabyrie",[4480]="Kenata Dabyrie",[4481]="Marcel Dabyrie",[4483]="Moktar Krin",[4484]="Feero Ironhand",[4485]="Belgrom Rockmaul",[4486]="Genavie Callow",[4488]="Parqual Fintallas",[4489]="Braug Dimspirit",[4490]="Grenka Bloodscreech",[4493]="Scarlet Avenger",[4494]="Scarlet Spellbinder",[4495]="Gnome Pit Boss",[4496]="Goblin Pit Boss",[4497]="Captain Quirk",[4498]="Maurin Bonesplitter",[4499]="Rok'Alim the Pounder",[4500]="Overlord Mok'Morokk",[4501]="Draz'Zilb",[4502]="Tharg",[4503]="Mudcrush Durtfeet",[4504]="Frostmaw",[4505]="Bloodsail Deckhand",[4506]="Bloodsail Swabby",[4507]="Daisy",[4508]="Willix the Importer",[4509]="Sargath",[4510]="Heralath Fallowbrook",[4511]="Agam'ar",[4512]="Rotting Agam'ar",[4514]="Raging Agam'ar",[4515]="Death's Head Acolyte",[4516]="Death's Head Adept",[4517]="Death's Head Priest",[4518]="Death's Head Sage",[4519]="Death's Head Seer",[4520]="Razorfen Geomancer",[4521]="Treshala Fallowbrook",[4522]="Razorfen Dustweaver",[4523]="Razorfen Groundshaker",[4525]="Razorfen Earthbreaker",[4526]="Wind Howler",[4528]="Stone Rumbler",[4530]="Razorfen Handler",[4531]="Razorfen Beast Trainer",[4532]="Razorfen Beastmaster",[4534]="Tamed Hyena",[4535]="Tamed Battleboar",[4538]="Kraul Bat",[4539]="Greater Kraul Bat",[4540]="Scarlet Monk",[4541]="Blood of Agamaggan",[4542]="High Inquisitor Fairbanks",[4543]="Bloodmage Thalnos",[4544]="Krueg Skullsplitter",[4545]="Nag'zehn",[4546]="Bor'zehn",[4547]="Tarkreu Shadowstalker",[4548]="Steelsnap",[4549]="William Montague",[4550]="Ophelia Montague",[4551]="Michael Garrett",[4552]="Eunice Burch",[4553]="Ronald Burch",[4554]="Tawny Grisette",[4555]="Eleanor Rusk",[4556]="Gordon Wendham",[4557]="Louis Warren",[4558]="Lauren Newcomb",[4559]="Timothy Weldon",[4560]="Walter Ellingson",[4561]="Daniel Bartlett",[4562]="Thomas Mordan",[4563]="Kaal Soulreaper",[4564]="Luther Pickman",[4565]="Richard Kerwin",[4566]="Kaelystia Hatebringer",[4567]="Pierce Shackleton",[4568]="Anastasia Hartwell",[4569]="Charles Seaton",[4570]="Sydney Upton",[4571]="Morley Bates",[4572]="Silas Zimmer",[4573]="Armand Cromwell",[4574]="Lizbeth Cromwell",[4575]="Hannah Akeley",[4576]="Josef Gregorian",[4577]="Millie Gregorian",[4578]="Josephine Lister",[4580]="Lucille Castleton",[4581]="Salazar Bloch",[4582]="Carolyn Ward",[4583]="Miles Dexter",[4584]="Gregory Charles",[4585]="Ezekiel Graves",[4586]="Graham Van Talen",[4587]="Elizabeth Van Talen",[4588]="Arthur Moore",[4589]="Joseph Moore",[4590]="Jonathan Chambers",[4591]="Mary Edras",[4592]="Nathaniel Steenwick",[4593]="Christoph Walker",[4594]="Angela Curthas",[4595]="Baltus Fowler",[4596]="James Van Brunt",[4597]="Samuel Van Brunt",[4598]="Brom Killian",[4599]="Sarah Killian",[4600]="Geoffrey Hartwell",[4601]="Francis Eliot",[4602]="Benijah Fenner",[4603]="Nicholas Atwood",[4604]="Abigail Sawyer",[4605]="Basil Frye",[4606]="Aelthalyste",[4607]="Father Lankester",[4608]="Father Lazarus",[4609]="Doctor Marsh",[4610]="Algernon",[4611]="Doctor Herbert Halsey",[4612]="Boyle",[4613]="Christopher Drakul",[4614]="Martha Alliestar",[4615]="Katrina Alliestar",[4616]="Lavinia Crowe",[4617]="Thaddeus Webb",[4618]="Martek the Exiled",[4619]="Geltharis",[4620]="Fobeed",[4623]="Quilguard Champion",[4624]="Booty Bay Bruiser",[4625]="Death's Head Ward Keeper",[4627]="Arugal's Voidwalker",[4629]="Trackmaster Zherin",[4630]="Pozzik",[4631]="Wharfmaster Lozgil",[4632]="Kolkar Centaur",[4633]="Kolkar Scout",[4634]="Kolkar Mauler",[4635]="Kolkar Windchaser",[4636]="Kolkar Battle Lord",[4637]="Kolkar Destroyer",[4638]="Magram Scout",[4639]="Magram Outrunner",[4640]="Magram Wrangler",[4641]="Magram Windchaser",[4642]="Magram Stormer",[4643]="Magram Pack Runner",[4644]="Magram Marauder",[4645]="Magram Mauler",[4646]="Gelkis Outrunner",[4647]="Gelkis Scout",[4648]="Gelkis Stamper",[4649]="Gelkis Windchaser",[4651]="Gelkis Earthcaller",[4652]="Gelkis Mauler",[4653]="Gelkis Marauder",[4654]="Maraudine Scout",[4655]="Maraudine Wrangler",[4656]="Maraudine Mauler",[4657]="Maraudine Windchaser",[4658]="Maraudine Stormer",[4659]="Maraudine Marauder",[4660]="Maraudine Bonepaw",[4661]="Gelkis Rumbler",[4662]="Magram Bonepaw",[4663]="Burning Blade Augur",[4664]="Burning Blade Reaver",[4665]="Burning Blade Adept",[4666]="Burning Blade Felsworn",[4667]="Burning Blade Shadowmage",[4668]="Burning Blade Summoner",[4670]="Hatefury Rogue",[4671]="Hatefury Trickster",[4672]="Hatefury Felsworn",[4673]="Hatefury Betrayer",[4674]="Hatefury Shadowstalker",[4675]="Hatefury Hellcaller",[4676]="Lesser Infernal",[4677]="Doomwarder",[4678]="Mana Eater",[4679]="Nether Maiden",[4680]="Doomwarder Captain",[4681]="Mage Hunter",[4682]="Nether Sister",[4684]="Nether Sorceress",[4685]="Ley Hunter",[4686]="Deepstrider Giant",[4687]="Deepstrider Searcher",[4688]="Bonepaw Hyena",[4689]="Starving Bonepaw",[4690]="Rabid Bonepaw",[4692]="Dread Swoop",[4693]="Dread Flyer",[4694]="Dread Ripper",[4695]="Carrion Horror",[4696]="Scorpashi Snapper",[4697]="Scorpashi Lasher",[4699]="Scorpashi Venomlash",[4700]="Aged Kodo",[4701]="Dying Kodo",[4702]="Ancient Kodo",[4705]="Burning Blade Invoker",[4706]="Razzeric",[4707]="Zuzubee",[4708]="Shreev",[4709]="Zamek",[4710]="Gray Ram",[4711]="Slitherblade Naga",[4712]="Slitherblade Sorceress",[4713]="Slitherblade Warrior",[4714]="Slitherblade Myrmidon",[4715]="Slitherblade Razortail",[4716]="Slitherblade Tidehunter",[4718]="Slitherblade Oracle",[4719]="Slitherblade Sea Witch",[4720]="Rizzle Brassbolts",[4721]="Zangen Stonehoof",[4722]="Rau Cliffrunner",[4723]="Foreman Cozzle",[4726]="Raging Thunder Lizard",[4727]="Elder Thunder Lizard",[4728]="Gritjaw Basilisk",[4729]="Hulking Gritjaw Basilisk",[4730]="Lelanai",[4731]="Zachariah Post",[4732]="Randal Hunter",[4752]="Kildar",[4753]="Jartsam",[4772]="Ultham Ironhorn",[4773]="Velma Warnam",[4775]="Felicia Doan",[4777]="White Ram",[4778]="Riding Ram (Blue)",[4779]="Brown Ram",[4780]="Riding Ram (Black)",[4781]="Snufflenose Gopher",[4782]="Truk Wildbeard",[4783]="Dawnwatcher Selgorm",[4784]="Argent Guard Manados",[4785]="Illusionary Nightmare",[4786]="Dawnwatcher Shaedlass",[4787]="Scout Thaelrid",[4788]="Fallenroot Satyr",[4789]="Fallenroot Rogue",[4791]="Nazeer Bloodpike",[4794]="Morgan Stern",[4795]="Force of Nature",[4798]="Fallenroot Shadowstalker",[4799]="Fallenroot Hellcaller",[4802]="Blackfathom Tide Priestess",[4803]="Blackfathom Oracle",[4805]="Blackfathom Sea Witch",[4807]="Blackfathom Myrmidon",[4809]="Twilight Acolyte",[4810]="Twilight Reaver",[4811]="Twilight Aquamancer",[4812]="Twilight Loreseeker",[4813]="Twilight Shadowmage",[4814]="Twilight Elementalist",[4815]="Murkshallow Snapclaw",[4818]="Blindlight Murloc",[4819]="Blindlight Muckdweller",[4820]="Blindlight Oracle",[4821]="Skittering Crustacean",[4822]="Snapping Crustacean",[4823]="Barbed Crustacean",[4824]="Aku'mai Fisher",[4825]="Aku'mai Snapjaw",[4827]="Deep Pool Threshfin",[4829]="Aku'mai",[4830]="Old Serra'kis",[4831]="Lady Sarevess",[4832]="Twilight Lord Kelris",[4834]="Theramore Infiltrator",[4841]="Deadmire",[4842]="Earthcaller Halmgar",[4844]="Shadowforge Surveyor",[4845]="Shadowforge Ruffian",[4846]="Shadowforge Digger",[4847]="Shadowforge Relic Hunter",[4848]="Shadowforge Darkcaster",[4849]="Shadowforge Archaeologist",[4850]="Stonevault Cave Lurker",[4851]="Stonevault Rockchewer",[4852]="Stonevault Oracle",[4853]="Stonevault Geomancer",[4854]="Grimlok",[4855]="Stonevault Brawler",[4856]="Stonevault Cave Hunter",[4857]="Stone Keeper",[4860]="Stone Steward",[4861]="Shrike Bat",[4863]="Jadespine Basilisk",[4872]="Obsidian Golem",[4875]="Turhaw",[4876]="Jawn Highmesa",[4877]="Jandia",[4878]="Montarr",[4879]="Ogg'marr",[4883]="Krak",[4884]="Zulrg",[4885]="Gregor MacVince",[4886]="Hans Weston",[4887]="Ghamoo-Ra",[4888]="Marie Holdston",[4889]="Torq Ironblast",[4890]="Piter Verance",[4891]="Dwane Wertle",[4892]="Jensen Farran",[4893]="Bartender Lillian",[4894]="Craig Nollward",[4895]="Smiling Jim",[4896]="Charity Mipsy",[4897]="Helenia Olden",[4898]="Brant Jasperbloom",[4899]="Uma Bartulm",[4900]="Alchemist Narett",[4901]="Sara Pierce",[4902]="Mikal Pierce",[4921]="Guard Byron",[4922]="Guard Edward",[4923]="Guard Jarad",[4924]="Combat Master Criton",[4926]="Krog",[4941]="Caz Twosprocket",[4943]="Mosarn",[4944]="Captain Garran Vimes",[4945]="Goblin Drag Car",[4946]="Gnome Drag Car",[4947]="Theramore Lieutenant",[4948]="Adjutant Tesoran",[4949]="Thrall",[4950]="Spot",[4951]="Theramore Practicing Guard",[4952]="Theramore Combat Dummy",[4953]="Moccasin",[4954]="Uttnar",[4955]="Theramore Archery Target 1",[4958]="Haunting Spirit",[4959]="Jorgen",[4960]="Bishop DeLavey",[4961]="Dashel Stonefist",[4963]="Mikhail",[4964]="Commander Samaul",[4965]="Pained",[4966]="Private Hendel",[4967]="Archmage Tervosh",[4968]="Lady Jaina Proudmoore",[4969]="Old Town Thug",[4971]="Slim's Friend",[4972]="Kagoro",[4973]="Guard Lasiter",[4974]="Aldwin Laughlin",[4975]="Theramore Archery Target 2",[4977]="Murkshallow Softshell",[4978]="Aku'mai Servant",[4979]="Theramore Guard",[4980]="Paval Reethe",[4981]="Ben Trias",[4982]="Thomas",[4983]="Ogron",[4984]="Argos Nightwhisper",[4992]="World Warrior Trainer",[4995]="Stockade Guard",[4996]="Injured Stockade Guard",[5042]="Nurse Lillian",[5043]="Defias Rioter",[5044]="Theramore Skirmisher",[5045]="Private Hallan",[5046]="Lieutenant Caldwell",[5047]="Ellaercia",[5048]="Deviate Adder",[5049]="Lyesa Steelbrow",[5052]="Edward Remington",[5053]="Deviate Crocolisk",[5054]="Krumn",[5055]="Deviate Lasher",[5056]="Deviate Dreadfang",[5057]="Theramore Deserter",[5058]="Wolfguard Worg",[5060]="World Banker",[5081]="Connor Rivers",[5082]="Vincent Hyal",[5083]="Paymaster Lendry",[5085]="Sentry Point Guard",[5086]="Captain Wymor",[5087]="Do'gol",[5088]="Falgran Hastil",[5089]="Balos Jacken",[5090]="Combat Master Szigeti",[5091]="Guard Kahil",[5092]="Guard Lana",[5093]="Guard Narrisha",[5094]="Guard Tark",[5095]="Captain Andrews",[5096]="Captain Thomas",[5097]="Lupine Delusion",[5099]="Soleil Stonemantle",[5100]="Fillius Fizzlespinner",[5101]="Bryllia Ironbrand",[5102]="Dolman Steelfury",[5103]="Grenil Steelfury",[5106]="Bromiir Ormsen",[5107]="Mangorn Flinthammer",[5108]="Raena Flinthammer",[5109]="Myra Tyrngaarde",[5110]="Barim Jurgenstaad",[5111]="Innkeeper Firebrew",[5112]="Gwenna Firebrew",[5113]="Kelv Sternhammer",[5114]="Bilban Tosslespanner",[5115]="Daera Brightspear",[5116]="Olmin Burningbeard",[5117]="Regnus Thundergranite",[5118]="Brogun Stoneshield",[5119]="Hegnar Swiftaxe",[5120]="Brenwyn Wintersteel",[5121]="Kelomir Ironhand",[5122]="Skolmin Goldfury",[5123]="Bretta Goldfury",[5124]="Sognar Cliffbeard",[5125]="Dolkin Craghelm",[5126]="Olthran Craghelm",[5127]="Fimble Finespindle",[5128]="Bombus Finespindle",[5129]="Lissyphus Finespindle",[5130]="Jondor Steelbrow",[5132]="Pithwick",[5133]="Harick Boulderdrum",[5134]="Jonivera Farmountain",[5135]="Svalbrad Farmountain",[5137]="Reyna Stonebranch",[5138]="Gwina Stonebranch",[5139]="Kurdrum Barleybeard",[5140]="Edris Barleybeard",[5141]="Theodrus Frostbeard",[5142]="Braenna Flintcrag",[5143]="Toldren Deepiron",[5144]="Bink",[5145]="Juli Stormkettle",[5146]="Nittlebur Sparkfizzle",[5147]="Valgar Highforge",[5148]="Beldruk Doombrow",[5149]="Brandur Ironhammer",[5150]="Nissa Firestone",[5151]="Ginny Longberry",[5152]="Bingus",[5153]="Jormund Stonebrow",[5154]="Poranna Snowbraid",[5155]="Ingrys Stonebrow",[5156]="Maeva Snowbraid",[5157]="Gimble Thistlefuzz",[5158]="Tilli Thistlefuzz",[5159]="Daryl Riknussun",[5160]="Emrul Riknussun",[5161]="Grimnur Stonebrand",[5162]="Tansy Puddlefizz",[5163]="Burbik Gearspanner",[5164]="Grumnus Steelshaper",[5165]="Hulfdan Blackbeard",[5166]="Ormyr Flinteye",[5167]="Fenthwick",[5169]="Tynnus Venomsprout",[5170]="Hjoldir Stoneblade",[5171]="Thistleheart",[5172]="Briarthorn",[5173]="Alexander Calder",[5174]="Springspindle Fizzlegear",[5175]="Gearcutter Cogspinner",[5177]="Tally Berryfizz",[5178]="Soolie Berryfizz",[5184]="Theramore Sentry",[5185]="Hammerhead Shark",[5186]="Basking Shark",[5188]="Garyl",[5189]="Thrumn",[5190]="Merill Pleasance",[5191]="Shalumon",[5193]="Rebecca Laughlin",[5194]="Black Riding Wolf",[5195]="Brown Riding Wolf",[5196]="Gray Riding Wolf",[5197]="Red Riding Wolf",[5198]="Arctic Riding Wolf",[5199]="Medic Tamberlyn",[5200]="Medic Helaina",[5202]="Archery Target",[5204]="Apothecary Zinge",[5224]="Murk Slitherer",[5225]="Murk Spitter",[5226]="Murk Worm",[5228]="Saturated Ooze",[5229]="Gordunni Ogre",[5232]="Gordunni Brute",[5234]="Gordunni Mauler",[5235]="Fungal Ooze",[5236]="Gordunni Shaman",[5237]="Gordunni Ogre Mage",[5238]="Gordunni Battlemaster",[5239]="Gordunni Mage-Lord",[5240]="Gordunni Warlock",[5241]="Gordunni Warlord",[5243]="Cursed Atal'ai",[5244]="Zukk'ash Stinger",[5245]="Zukk'ash Wasp",[5246]="Zukk'ash Worker",[5247]="Zukk'ash Tunneler",[5249]="Woodpaw Mongrel",[5251]="Woodpaw Trapper",[5253]="Woodpaw Brute",[5254]="Woodpaw Mystic",[5255]="Woodpaw Reaver",[5256]="Atal'ai Warrior",[5258]="Woodpaw Alpha",[5259]="Atal'ai Witch Doctor",[5260]="Groddoc Ape",[5261]="Enthralled Atal'ai",[5262]="Groddoc Thunderer",[5263]="Mummified Atal'ai",[5267]="Unliving Atal'ai",[5268]="Ironfur Bear",[5269]="Atal'ai Priest",[5270]="Atal'ai Corpse Eater",[5271]="Atal'ai Deathwalker",[5272]="Grizzled Ironfur Bear",[5273]="Atal'ai High Priest",[5274]="Ironfur Patriarch",[5276]="Sprite Dragon",[5277]="Nightmare Scalebane",[5278]="Sprite Darter",[5280]="Nightmare Wyrmkin",[5283]="Nightmare Wanderer",[5286]="Longtooth Runner",[5287]="Longtooth Howler",[5288]="Rabid Longtooth",[5291]="Hakkari Frostwing",[5292]="Feral Scar Yeti",[5293]="Hulking Feral Scar",[5295]="Enraged Feral Scar",[5296]="Rage Scar Yeti",[5297]="Elder Rage Scar",[5299]="Ferocious Rage Scar",[5300]="Frayfeather Hippogryph",[5304]="Frayfeather Stagwing",[5305]="Frayfeather Skystormer",[5306]="Frayfeather Patriarch",[5307]="Vale Screecher",[5308]="Rogue Vale Screecher",[5312]="Lethlas",[5314]="Phantim",[5317]="Jademir Oracle",[5319]="Jademir Tree Warder",[5320]="Jademir Boughguard",[5327]="Coast Crawl Snapclaw",[5328]="Coast Crawl Deepseer",[5331]="Hatecrest Warrior",[5332]="Hatecrest Wave Rider",[5333]="Hatecrest Serpent Guard",[5334]="Hatecrest Myrmidon",[5335]="Hatecrest Screamer",[5336]="Hatecrest Sorceress",[5337]="Hatecrest Siren",[5343]="Lady Szallah",[5345]="Diamond Head",[5346]="Bloodroar the Stalker",[5347]="Antilus the Soarer",[5348]="Dreamwatcher Forktongue",[5349]="Arash-ethis",[5350]="Qirot",[5352]="Old Grizzlegut",[5353]="Itharius",[5354]="Gnarl Leafbrother",[5355]="Firewing Defender",[5356]="Snarler",[5357]="Land Walker",[5358]="Cliff Giant",[5359]="Shore Strider",[5360]="Deep Strider",[5361]="Wave Strider",[5362]="Northspring Harpy",[5363]="Northspring Roguefeather",[5364]="Northspring Slayer",[5366]="Northspring Windcaller",[5384]="Brohann Caskbelly",[5385]="Watcher Mahar Ba",[5386]="Acolyte Dellis",[5387]="High Explorer Magellas",[5388]="Ingo Woolybush",[5389]="Prospector Gunstan",[5390]="Sage Palerunner",[5391]="Galen Goodward",[5392]="Yarr Hammerstone",[5393]="Quartermaster Lungertz",[5394]="Neeka Bloodscar",[5395]="Felgur Twocuts",[5396]="Captain Pentigast",[5397]="Uthek the Wise",[5398]="Warug",[5399]="Veyzhak the Cannibal",[5400]="Zekkis",[5401]="Kazkaz the Unholy",[5402]="Khan Hratha",[5403]="Riding White Stallion",[5407]="Nightmare",[5409]="Harvester Swarm",[5411]="Krinkle Goodsteel",[5412]="Gurda Wildmane",[5413]="Furen Longbeard",[5414]="Apothecary Faustin",[5416]="Infiltrator Marksen",[5418]="Deathstalker Zraedus",[5419]="Glasshide Basilisk",[5420]="Glasshide Gazer",[5421]="Glasshide Petrifier",[5422]="Scorpid Hunter",[5423]="Scorpid Tail Lasher",[5424]="Scorpid Dunestalker",[5425]="Starving Blisterpaw",[5426]="Blisterpaw Hyena",[5427]="Rabid Blisterpaw",[5428]="Roc",[5429]="Fire Roc",[5430]="Searing Roc",[5431]="Surf Glider",[5432]="Giant Surf Glider",[5434]="Coral Shark",[5435]="Sand Shark",[5441]="Hazzali Wasp",[5450]="Hazzali Stinger",[5451]="Hazzali Swarmer",[5452]="Hazzali Worker",[5453]="Hazzali Tunneler",[5454]="Hazzali Sandreaver",[5455]="Centipaar Wasp",[5456]="Centipaar Stinger",[5457]="Centipaar Swarmer",[5458]="Centipaar Worker",[5459]="Centipaar Tunneler",[5460]="Centipaar Sandreaver",[5461]="Sea Elemental",[5462]="Sea Spray",[5464]="Watchmaster Sorigal",[5465]="Land Rager",[5466]="Coast Strider",[5467]="Deep Dweller",[5469]="Dune Smasher",[5470]="Raging Dune Smasher",[5471]="Dunemaul Ogre",[5472]="Dunemaul Enforcer",[5473]="Dunemaul Ogre Mage",[5474]="Dunemaul Brute",[5475]="Dunemaul Warlock",[5476]="Watcher Biggs",[5477]="Noboru the Cudgel",[5479]="Wu Shen",[5480]="Ilsa Corbin",[5481]="Thistleshrub Dew Collector",[5482]="Stephen Ryback",[5483]="Erika Tate",[5484]="Brother Benjamin",[5485]="Thistleshrub Rootshaper",[5489]="Brother Joshua",[5490]="Gnarled Thistleshrub",[5491]="Arthur the Faithful",[5492]="Katherine the Pure",[5493]="Arnold Leland",[5494]="Catherine Leland",[5495]="Ursula Deline",[5496]="Sandahl",[5497]="Jennea Cannon",[5498]="Elsharin",[5499]="Lilyssia Nightbreeze",[5500]="Tel'Athir",[5501]="Kaerbrus",[5502]="Shylamiir",[5503]="Eldraeith",[5504]="Sheldras Moontree",[5505]="Theridran",[5506]="Maldryn",[5508]="Strumner Flintheel",[5509]="Kathrum Axehand",[5510]="Thulman Flintcrag",[5511]="Therum Deepforge",[5512]="Kaita Deepforge",[5513]="Gelman Stonehand",[5514]="Brooke Stonebraid",[5515]="Einris Brightspear",[5516]="Ulfir Ironbeard",[5517]="Thorfin Stoneshield",[5518]="Lilliam Sparkspindle",[5519]="Billibub Cogspinner",[5520]="Spackle Thornberry",[5523]="War Party Kodo",[5524]="Caravan Watcher",[5525]="Caravan Packhorse",[5543]="Clarice Foster",[5546]="Grunt Zuul",[5547]="Grunt Tharlak",[5564]="Simon Tanner",[5565]="Jillian Tanner",[5566]="Tannysa",[5567]="Sellandus",[5568]="Captured Leper Gnome",[5569]="Fizzlebang Booms",[5570]="Bruuk Barleybeard",[5591]="Dar",[5592]="Tok'Kar",[5593]="Katar",[5594]="Alchemist Pestlezugg",[5595]="Ironforge Guard",[5597]="Grunt Komak",[5598]="Atal'ai Exile",[5599]="Kon Yelloweyes",[5600]="Khan Dez'hepah",[5601]="Khan Jehn",[5602]="Khan Shaka",[5603]="Grunt Mojka",[5605]="Tisa Martine",[5606]="Goma",[5607]="Roger",[5608]="Jamin",[5609]="Zazo",[5610]="Kozish",[5611]="Barkeep Morag",[5612]="Gimrizz Shadowcog",[5613]="Doyo'da",[5614]="Sarok",[5615]="Wastewander Rogue",[5616]="Wastewander Thief",[5617]="Wastewander Shadow Mage",[5618]="Wastewander Bandit",[5620]="Bartender Wental",[5622]="Ongeku",[5623]="Wastewander Assassin",[5624]="Undercity Guardian",[5629]="Theramore Commando",[5634]="Rhapsody Shindigger",[5635]="Falstad Wildhammer",[5636]="Gryphon Master Talonaxe",[5637]="Roetten Stonehammer",[5638]="Kreldig Ungor",[5639]="Craven Drok",[5640]="Keldran",[5641]="Takata Steelblade",[5642]="Vahlarriel Demonslayer",[5643]="Tyranis Malem",[5644]="Dalinda Malem",[5645]="Sandfury Hideskinner",[5646]="Sandfury Axe Thrower",[5647]="Sandfury Firecaller",[5648]="Sandfury Shadowcaster",[5649]="Sandfury Blood Drinker",[5650]="Sandfury Witch Doctor",[5651]="Patrick Garrett",[5652]="Undercity Practice Dummy",[5653]="Tyler",[5654]="Edward",[5655]="Robert Gossom",[5656]="Richard Van Brunt",[5657]="Marla Fowler",[5658]="Chloe Curthas",[5659]="Andrew Hartwell",[5660]="Riley Walker",[5661]="Brother Malach",[5662]="Sergeant Houser",[5663]="Travist Bosk",[5664]="Eldin Partridge",[5665]="Alyssa Blaye",[5666]="Gunther's Visage",[5667]="Venya Marthand",[5668]="Mattie Alred",[5669]="Helena Atwood",[5670]="Edrick Killian",[5674]="Practice Target",[5675]="Carendin Halgar",[5676]="Summoned Voidwalker",[5677]="Summoned Succubus",[5679]="Lysta Bancroft",[5680]="Male Human Captive",[5681]="Female Human Captive",[5682]="Dalin Forgewright",[5683]="Comar Villard",[5685]="Captive Ghoul",[5686]="Captive Zombie",[5687]="Captive Abomination",[5688]="Innkeeper Renee",[5690]="Clyde Kellen",[5691]="Dalin Forgewright Projection",[5692]="Comar Villard Projection",[5693]="Godrick Farsan",[5694]="High Sorcerer Andromath",[5695]="Vance Undergloom",[5696]="Gerard Abernathy",[5697]="Theresa",[5698]="Joanna Whitehall",[5699]="Leona Tharpe",[5700]="Samantha Shackleton",[5701]="Selina Pickman",[5702]="Jezelle Pruitt",[5703]="Winifred Kerwin",[5704]="Adrian Bartlett",[5705]="Victor Bartholomew",[5706]="Davitt Hickson",[5707]="Reginald Grimsford",[5708]="Spawn of Hakkar",[5709]="Shade of Eranikus",[5710]="Jammal'an the Prophet",[5711]="Ogom the Wretched",[5712]="Zolo",[5713]="Gasher",[5714]="Loro",[5715]="Hukku",[5716]="Zul'Lor",[5717]="Mijan",[5718]="Rothos",[5719]="Morphaz",[5720]="Weaver",[5721]="Dreamscythe",[5722]="Hazzas",[5723]="Warug's Target Dummy",[5724]="Ageron Kargal",[5725]="Deathguard Lundmark",[5726]="Jezelle's Felhunter",[5727]="Jezelle's Felsteed",[5728]="Jezelle's Succubus",[5729]="Jezelle's Voidwalker",[5730]="Jezelle's Imp",[5731]="Apothecary Vallia",[5732]="Apothecary Katrina",[5733]="Apothecary Lycanus",[5734]="Apothecary Keever",[5735]="Caged Human Female",[5736]="Caged Human Male",[5738]="Caged Dwarf Male",[5739]="Caged Squirrel",[5741]="Caged Rabbit",[5742]="Caged Toad",[5743]="Caged Sheep",[5744]="Cedric Stumpel",[5747]="Hepzibah Sedgewick",[5748]="Killian Sanatha",[5749]="Kayla Smithe",[5750]="Gina Lang",[5752]="Corporal Melkins",[5753]="Martha Strain",[5754]="Zane Bradford",[5755]="Deviate Viper",[5756]="Deviate Venomwing",[5757]="Lilly",[5758]="Leo Sarn",[5759]="Nurse Neela",[5760]="Lord Azrethoc",[5761]="Deviate Shambler",[5762]="Deviate Moccasin",[5763]="Nightmare Ectoplasm",[5765]="Ruzan",[5766]="Savannah Cub",[5767]="Nalpak",[5768]="Ebru",[5769]="Arch Druid Hamuul Runetotem",[5770]="Nara Wildmane",[5771]="Jugkar Grim'rod",[5772]="Lord Azrethoc's Image",[5773]="Jugkar Grim'rod's Image",[5774]="Riding Wolf",[5775]="Verdan the Everliving",[5779]="Summoned Viper",[5780]="Cloned Ectoplasm",[5781]="Silithid Creeper Egg",[5782]="Crildor",[5783]="Kalldan Felmoon",[5784]="Waldor",[5785]="Sister Hatelash",[5786]="Snagglespear",[5787]="Enforcer Emilgund",[5788]="Gelgann Direforge",[5792]="Drag Master Miglen",[5797]="Aean Swiftriver",[5798]="Thora Feathermoon",[5799]="Hannah Bladeleaf",[5800]="Marcus Bel",[5806]="Treant Ally",[5807]="The Rake",[5808]="Warlord Kolkanis",[5809]="Sergeant Curtis",[5810]="Uzzek",[5811]="Kamari",[5812]="Tumi",[5814]="Innkeeper Thulbek",[5815]="Kurgul",[5816]="Katis",[5817]="Shimra",[5819]="Mirelle Tremayne",[5820]="Gillian Moore",[5821]="Sheldon Von Croy",[5822]="Felweaver Scornn",[5823]="Death Flayer",[5824]="Captain Flat Tusk",[5826]="Geolord Mottle",[5827]="Brontus",[5828]="Humar the Pridelord",[5829]="Snort the Heckler",[5830]="Sister Rathtalon",[5831]="Swiftmane",[5832]="Thunderstomp",[5833]="Margol the Rager",[5834]="Azzere the Skyblade",[5835]="Foreman Grills",[5836]="Engineer Whirleygig",[5837]="Stonearm",[5838]="Brokespear",[5839]="Dark Iron Geologist",[5840]="Dark Iron Steamsmith",[5841]="Rocklance",[5842]="Takk the Leaper",[5843]="Slave Worker",[5844]="Dark Iron Slaver",[5846]="Dark Iron Taskmaster",[5847]="Heggin Stonewhisker",[5848]="Malgin Barleybrew",[5849]="Digger Flameforge",[5850]="Blazing Elemental",[5851]="Captain Gerogg Hammertoe",[5852]="Inferno Elemental",[5853]="Tempered War Golem",[5854]="Heavy War Golem",[5855]="Magma Elemental",[5856]="Glassweb Spider",[5857]="Searing Lava Spider",[5858]="Greater Lava Spider",[5859]="Hagg Taurenbane",[5860]="Twilight Dark Shaman",[5861]="Twilight Fire Guard",[5862]="Twilight Geomancer",[5863]="Geopriest Gukk'rok",[5864]="Swinegart Spearhide",[5865]="Dishu",[5868]="Evil Squirrel",[5870]="Krond",[5871]="Larhka",[5873]="Stoneskin Totem",[5874]="Strength of Earth Totem",[5875]="Gan'rul Bloodeye",[5878]="Thun'grim Firegaze",[5879]="Fire Nova Totem",[5880]="Un'Thuwa",[5881]="Cursed Sycamore",[5882]="Pephredo",[5883]="Enyo",[5884]="Mai'ah",[5885]="Deino",[5886]="Gwyn Farrow",[5887]="Canaga Earthcaller",[5888]="Seer Ravenfeather",[5889]="Mesa Earth Spirit",[5890]="Redrock Earth Spirit",[5891]="Minor Manifestation of Earth",[5892]="Searn Firewarder",[5893]="Minor Manifestation of Fire",[5894]="Corrupt Minor Manifestation of Water",[5895]="Minor Manifestation of Water",[5896]="Fire Spirit",[5897]="Corrupt Water Spirit",[5898]="Air Spirit",[5899]="Brine",[5900]="Telf Joolam",[5901]="Islen Waterseer",[5902]="Minor Manifestation of Air",[5903]="Nyx Bloodrage",[5905]="Prate Cloudseer",[5906]="Xanis Flameweaver",[5907]="Kranal Fiss",[5908]="Grunt Dogran",[5909]="Cazul",[5910]="Zankaja",[5911]="Grunt Logmar",[5912]="Deviate Faerie Dragon",[5913]="Tremor Totem",[5914]="Deviate Nightmare",[5915]="Brother Ravenoak",[5916]="Sentinel Amarassan",[5917]="Clara Charles",[5919]="Stoneskin Totem II",[5920]="Stoneskin Totem III",[5921]="Strength of Earth Totem II",[5922]="Strength of Earth Totem III",[5923]="Poison Cleansing Totem",[5924]="Cleansing Totem",[5925]="Grounding Totem",[5926]="Frost Resistance Totem",[5927]="Elemental Resistance Totem",[5928]="Sorrow Wing",[5929]="Magma Totem",[5930]="Sister Riven",[5931]="Foreman Rigger",[5932]="Taskmaster Whipfang",[5933]="Achellios the Banished",[5934]="Heartrazor",[5935]="Ironeye the Invincible",[5936]="Orca",[5937]="Vile Sting",[5938]="Uthan Stillwater",[5939]="Vira Younghoof",[5940]="Harn Longcast",[5941]="Lau'Tiki",[5942]="Zansoa",[5943]="Rawrk",[5944]="Yonada",[5945]="Owl Companion",[5950]="Flametongue Totem",[5951]="Hare",[5952]="Den Grunt",[5953]="Razor Hill Grunt",[5955]="Tooga",[5957]="Birgitte Cranston",[5958]="Thuul",[5963]="World Tauren Male Druid Trainer",[5974]="Dreadmaul Ogre",[5975]="Dreadmaul Ogre Mage",[5976]="Dreadmaul Brute",[5977]="Dreadmaul Mauler",[5978]="Dreadmaul Warlock",[5979]="Wretched Lost One",[5981]="Portal Seeker",[5982]="Black Slayer",[5983]="Bonepicker Felfeeder",[5984]="Starving Snickerfang",[5985]="Snickerfang Hyena",[5988]="Scorpok Stinger",[5990]="Redstone Basilisk",[5991]="Redstone Crystalhide",[5992]="Ashmane Boar",[5993]="Helboar",[5994]="Zayus",[5996]="Nethergarde Miner",[5997]="Nethergarde Engineer",[5998]="Nethergarde Foreman",[5999]="Nethergarde Soldier",[6000]="Nethergarde Cleric",[6001]="Nethergarde Analyst",[6002]="Nethergarde Riftwatcher",[6003]="Nethergarde Officer",[6004]="Shadowsworn Ritualist",[6005]="Shadowsworn Thug",[6006]="Shadowsworn Adept",[6007]="Shadowsworn Enforcer",[6008]="Shadowsworn Warlock",[6009]="Shadowsworn Dreadweaver",[6010]="Felhound",[6011]="Felguard Sentry",[6012]="Flametongue Totem II",[6013]="Wayward Buzzard",[6014]="X'yera",[6015]="Torta",[6016]="Elemental Protection Totem",[6017]="Lava Spout Totem",[6018]="Ur'kyo",[6019]="Hornizz Brimbuzzle",[6020]="Slimeshell Makrura",[6021]="Boar Spirit",[6026]="Breyk",[6027]="Kitha",[6028]="Burkrum",[6030]="Thorvald Deepforge",[6031]="Tormus Deepforge",[6033]="Lake Frenzy",[6034]="Lotherias",[6035]="Razorfen Stalker",[6047]="Aqua Guardian",[6066]="Earthgrab Totem",[6068]="Warug's Bodyguard",[6069]="Maraudine Khan Guard",[6070]="Maraudine Khan Advisor",[6071]="Legion Hound",[6072]="Diathorus the Seeker",[6073]="Searing Infernal",[6074]="Striped Frostsaber",[6075]="Emerald Raptor",[6076]="Riding Tallstrider (Ivory)",[6086]="Auberdine Sentinel",[6087]="Astranaar Sentinel",[6089]="Harry Burlguard",[6090]="Bartleby",[6091]="Dellylah",[6093]="Dead-Tooth Jack",[6094]="Byancie",[6107]="Shade",[6109]="Azuregos",[6110]="Fire Nova Totem II",[6111]="Fire Nova Totem III",[6112]="Windfury Totem",[6113]="Vejrek",[6114]="Muren Stormpike",[6115]="Roaming Felguard",[6116]="Highborne Apparition",[6117]="Highborne Lichling",[6118]="Varo'then's Ghost",[6119]="Tog Rustsprocket",[6120]="Lago Blackwrench",[6121]="Remen Marcot",[6122]="Gakin the Darkbinder",[6123]="Dark Iron Spy",[6124]="Captain Beld",[6125]="Haldarr Satyr",[6126]="Haldarr Trickster",[6127]="Haldarr Felsworn",[6128]="Vorlus Vilehoof",[6129]="Draconic Magelord",[6130]="Blue Scalebane",[6131]="Draconic Mageweaver",[6132]="Razorfen Servitor",[6133]="Shade of Elura",[6134]="Lord Arkkoroc",[6135]="Arkkoran Clacker",[6136]="Arkkoran Muckdweller",[6137]="Arkkoran Pincer",[6138]="Arkkoran Oracle",[6139]="Highperch Soarer",[6140]="Hetaera",[6141]="Pridewing Soarer",[6142]="Mathiel",[6143]="Servant of Arkkoroc",[6144]="Son of Arkkoroc",[6145]="School of Fish",[6146]="Cliff Breaker",[6147]="Cliff Thunderer",[6148]="Cliff Walker",[6166]="Yorus Barleybrew",[6167]="Chimaera Matriarch",[6168]="Roogug",[6169]="Klockmort Spannerspan",[6170]="Gutspill",[6171]="Duthorian Rall",[6172]="Henze Faulk",[6173]="Gazin Tenorm",[6174]="Stephanie Turner",[6175]="John Turner",[6176]="Bath'rah the Windwatcher",[6177]="Narm Faulk",[6178]="Muiredon Battleforge",[6179]="Tiza Battleforge",[6180]="Defias Raider",[6181]="Jordan Stilwell",[6182]="Daphne Stilwell",[6184]="Timbermaw Pathfinder",[6185]="Timbermaw Warrior",[6186]="Timbermaw Totemic",[6187]="Timbermaw Den Watcher",[6188]="Timbermaw Shaman",[6189]="Timbermaw Ursa",[6190]="Spitelash Warrior",[6193]="Spitelash Screamer",[6194]="Spitelash Serpent Guard",[6195]="Spitelash Siren",[6196]="Spitelash Myrmidon",[6198]="Blood Elf Surveyor",[6199]="Blood Elf Reclaimer",[6200]="Legashi Satyr",[6201]="Legashi Rogue",[6202]="Legashi Hellcaller",[6206]="Caverndeep Burrower",[6207]="Caverndeep Ambusher",[6208]="Caverndeep Invader",[6209]="Caverndeep Looter",[6210]="Caverndeep Pillager",[6211]="Caverndeep Reaver",[6212]="Dark Iron Agent",[6213]="Irradiated Invader",[6215]="Chomper",[6218]="Irradiated Slime",[6219]="Corrosive Lurker",[6220]="Irradiated Horror",[6221]="Addled Leper",[6222]="Leprous Technician",[6223]="Leprous Defender",[6224]="Leprous Machinesmith",[6225]="Mechano-Tank",[6226]="Mechano-Flamewalker",[6227]="Mechano-Frostwalker",[6228]="Dark Iron Ambassador",[6229]="Crowd Pummeler 9-60",[6230]="Peacekeeper Security Suit",[6231]="Techbot",[6232]="Arcane Nullifier X-21",[6233]="Mechanized Sentry",[6234]="Mechanized Guardian",[6235]="Electrocutioner 6000",[6236]="Klannoc Macleod",[6237]="Stockade Archer",[6238]="Big Will",[6239]="Cyclonian",[6240]="Affray Challenger",[6241]="Bailor Stonehand",[6243]="Gelihast",[6244]="Takar the Seer",[6245]="Anathera",[6246]="Latherion",[6247]="Doan Karhan",[6248]="Twiggy Flathead",[6249]="Affray Spectator",[6250]="Crawler",[6251]="Strahad Farsan",[6252]="Acolyte Magaz",[6253]="Acolyte Fenrick",[6254]="Acolyte Wytula",[6266]="Menara Voidrender",[6267]="Acolyte Porena",[6268]="Summoned Felhunter",[6271]="Mouse",[6272]="Innkeeper Janene",[6286]="Zarrin",[6287]="Radnaal Maneweaver",[6288]="Jayla",[6289]="Rand Rhobart",[6290]="Yonn Deepcut",[6291]="Balthus Stoneflayer",[6292]="Eladriel",[6293]="Jorah Annison",[6294]="Krom Stoutarm",[6295]="Wilma Ranthal",[6297]="Kurdram Stonehammer",[6298]="Thelgrum Stonehammer",[6299]="Delfrum Flintbeard",[6300]="Elisa Steelhand",[6301]="Gorbold Steelhand",[6306]="Helene Peltskinner",[6328]="Dannie Fizzwizzle",[6329]="Irradiated Pillager",[6347]="Young Wavethrasher",[6348]="Wavethrasher",[6349]="Great Wavethrasher",[6350]="Makrinni Razorclaw",[6351]="Storm Bay Oracle",[6352]="Coralshell Lurker",[6366]="Kurzen Mindslave",[6367]="Donni Anthania",[6368]="Cat",[6369]="Coralshell Tortoise",[6370]="Makrinni Scrabbler",[6371]="Storm Bay Warrior",[6372]="Makrinni Snapclaw",[6373]="Dane Winslow",[6374]="Cylina Darkheart",[6375]="Thunderhead Hippogryph",[6376]="Wren Darkspring",[6377]="Thunderhead Stagwing",[6378]="Thunderhead Skystormer",[6379]="Thunderhead Patriarch",[6380]="Thunderhead Consort",[6382]="Jubahl Corpseseeker",[6386]="Ward of Zanzil",[6387]="Dranh",[6388]="Zanzil Skeleton",[6389]="Deathguard Podrig",[6390]="Ulag the Cleaver",[6391]="Holdout Warrior",[6392]="Holdout Medic",[6393]="Henen Ragetotem",[6394]="Ruga Ragetotem",[6395]="Sergeant Rutger",[6407]="Holdout Technician",[6408]="Ula'elek",[6410]="Orm Stonehoof",[6411]="Velora Nitely",[6412]="Skeleton",[6426]="Anguished Dead",[6427]="Haunting Phantasm",[6446]="Therzok",[6466]="Gamon",[6467]="Mennet Carkad",[6486]="Black Skeletal Horse",[6487]="Arcanist Doan",[6488]="Fallen Champion",[6489]="Ironspine",[6490]="Azshir the Sleepless",[6491]="Spirit Healer",[6492]="Rift Spawn",[6493]="Illusionary Phantasm",[6494]="Tazan",[6495]="Riznek",[6496]="Brivelthwerp",[6497]="Astor Hadren",[6498]="Devilsaur",[6499]="Ironhide Devilsaur",[6500]="Tyrant Devilsaur",[6501]="Stegodon",[6502]="Plated Stegodon",[6503]="Spiked Stegodon",[6504]="Thunderstomp Stegodon",[6505]="Ravasaur",[6506]="Ravasaur Runner",[6507]="Ravasaur Hunter",[6508]="Venomhide Ravasaur",[6509]="Bloodpetal Lasher",[6510]="Bloodpetal Flayer",[6511]="Bloodpetal Thresher",[6512]="Bloodpetal Trapper",[6513]="Un'Goro Stomper",[6514]="Un'Goro Gorilla",[6516]="Un'Goro Thunderer",[6517]="Tar Beast",[6518]="Tar Lurker",[6519]="Tar Lord",[6520]="Scorching Elemental",[6521]="Living Blaze",[6522]="Andron Gant",[6523]="Dark Iron Rifleman",[6527]="Tar Creeper",[6546]="Tabetha",[6547]="Suffering Victim",[6548]="Magus Tirth",[6549]="Demon of the Orb",[6550]="Mana Surge",[6551]="Gorishi Wasp",[6552]="Gorishi Worker",[6553]="Gorishi Reaver",[6554]="Gorishi Stinger",[6555]="Gorishi Tunneler",[6556]="Muculent Ooze",[6557]="Primal Ooze",[6559]="Glutinous Ooze",[6560]="Stone Guardian",[6566]="Estelle Gendry",[6567]="Ghok'kah",[6568]="Vizzklick",[6569]="Gnoarn",[6570]="Fenwick Thatros",[6573]="Travel Form (Druid)",[6574]="Jun'ha",[6575]="Scarlet Trainee",[6576]="Brienna Starglow",[6577]="Bingles Blastenheimer",[6579]="Shoni the Shilent",[6581]="Ravasaur Matriarch",[6582]="Clutchmother Zavas",[6583]="Gruff",[6584]="King Mosh",[6585]="Uhk'loc",[6586]="Rokar Bladeshadow",[6606]="Overseer Glibby",[6607]="Harroc",[6646]="Monnos the Elder",[6647]="Magister Hawkhelm",[6648]="Antilos",[6649]="Lady Sesspira",[6650]="General Fangferror",[6651]="Gatekeeper Rageroar",[6652]="Master Feardred",[6653]="Huge Toad",[6667]="Gelkak Gyromast",[6668]="Lord Cyrik Blackforge",[6669]="The Threshwackonator 4100",[6670]="Westfall Woodworker",[6706]="Baritanas Skyriver",[6707]="Fahrad",[6726]="Thalon",[6727]="Innkeeper Brianna",[6728]="Narnie",[6729]="Morridune",[6730]="Jinky Twizzlefixxit",[6731]="Harlown Darkweave",[6732]="Amie Pierce",[6733]="Stonevault Basher",[6734]="Innkeeper Hearthstove",[6735]="Innkeeper Saelienne",[6736]="Innkeeper Keldamyr",[6737]="Innkeeper Shaussiy",[6738]="Innkeeper Kimlya",[6739]="Innkeeper Bates",[6740]="Innkeeper Allison",[6741]="Innkeeper Norman",[6746]="Innkeeper Pala",[6747]="Innkeeper Kauth",[6748]="Water Spirit",[6749]="Erma",[6766]="Ravenholdt Guard",[6768]="Lord Jorach Ravenholdt",[6771]="Ravenholdt Assassin",[6774]="Falkhaan Isenstrider",[6775]="Antur Fallow",[6776]="Magrin Rivermane",[6777]="Zan Shivsproket",[6778]="Melika Isenstrider",[6779]="Smudge Thunderwood",[6780]="Porthannius",[6781]="Melarith",[6782]="Hands Springsprocket",[6784]="Calvin Montague",[6785]="Ratslin Maime",[6786]="Ukor",[6787]="Yelnagi Blackarm",[6788]="Den Mother",[6789]="Thistle Cub",[6790]="Innkeeper Trelayne",[6791]="Innkeeper Wiley",[6806]="Tannok Frosthammer",[6807]="Innkeeper Skindle",[6826]="Talvash del Kissel",[6827]="Shore Crab",[6846]="Dockmaster",[6866]="Bodyguard",[6867]="Tracking Hound",[6868]="Jarkal Mossmeld",[6886]="Onin MacHammar",[6887]="Yalda",[6906]="Baelog",[6908]="Olaf",[6909]="Sethir the Ancient",[6910]="Revelosh",[6911]="Minion of Sethir",[6912]="Remains of a Paladin",[6913]="Lost One Rift Traveler",[6927]="Dockworker",[6928]="Innkeeper Grosk",[6929]="Innkeeper Gryshka",[6930]="Innkeeper Karakul",[6932]="Swamp Spirit",[6966]="Lucius",[6986]="Dran Droffers",[6987]="Malton Droffers",[7007]="Tiev Mordune",[7009]="Arantir",[7010]="Zilzibin Drumlore",[7011]="Earthen Rocksmasher",[7012]="Earthen Sculptor",[7013]="Blackrock Guard",[7015]="Flagglemurk the Cruel",[7016]="Lady Vespira",[7017]="Lord Sinslayer",[7022]="Venomlash Scorpid",[7023]="Obsidian Sentinel",[7024]="Agent Kearnen",[7025]="Blackrock Soldier",[7026]="Blackrock Sorcerer",[7027]="Blackrock Slayer",[7028]="Blackrock Warlock",[7029]="Blackrock Battlemaster",[7030]="Shadowforge Geologist",[7031]="Obsidian Elemental",[7032]="Greater Obsidian Elemental",[7033]="Firegut Ogre",[7034]="Firegut Ogre Mage",[7035]="Firegut Brute",[7036]="Thaurissan Spy",[7037]="Thaurissan Firewalker",[7038]="Thaurissan Agent",[7039]="War Reaver",[7040]="Black Dragonspawn",[7041]="Black Wyrmkin",[7042]="Flamescale Dragonspawn",[7043]="Flamescale Wyrmkin",[7044]="Black Drake",[7045]="Scalding Drake",[7046]="Searscale Drake",[7047]="Black Broodling",[7048]="Scalding Broodling",[7049]="Flamescale Broodling",[7050]="Defias Drone",[7051]="Malformed Defias Drone",[7052]="Defias Tower Patroller",[7053]="Klaven Mortwake",[7055]="Blackrock Worg",[7056]="Defias Tower Sentry",[7057]="Digmaster Shovelphlange",[7067]="Venture Co. Drone",[7068]="Condemned Acolyte",[7069]="Condemned Monk",[7070]="Condemned Cleric",[7071]="Cursed Paladin",[7072]="Cursed Justicar",[7075]="Writhing Mage",[7076]="Earthen Guardian",[7077]="Earthen Hallshaper",[7078]="Cleft Scorpid",[7079]="Viscous Fallout",[7086]="Cursed Ooze",[7087]="Killian Hagey",[7088]="Thuwd",[7089]="Mooranta",[7091]="Shadowforge Ambusher",[7092]="Tainted Ooze",[7093]="Vile Ooze",[7097]="Ironbeak Owl",[7098]="Ironbeak Screecher",[7099]="Ironbeak Hunter",[7100]="Warpwood Moss Flayer",[7101]="Warpwood Shredder",[7104]="Dessecus",[7105]="Jadefire Satyr",[7106]="Jadefire Rogue",[7107]="Jadefire Trickster",[7108]="Jadefire Betrayer",[7109]="Jadefire Felsworn",[7110]="Jadefire Shadowstalker",[7111]="Jadefire Hellcaller",[7112]="Jaedenar Cultist",[7113]="Jaedenar Guardian",[7114]="Jaedenar Enforcer",[7115]="Jaedenar Adept",[7118]="Jaedenar Darkweaver",[7120]="Jaedenar Warlock",[7125]="Jaedenar Hound",[7126]="Jaedenar Hunter",[7132]="Toxic Horror",[7135]="Infernal Bodyguard",[7136]="Infernal Sentry",[7137]="Immolatus",[7138]="Irontree Wanderer",[7139]="Irontree Stomper",[7149]="Withered Protector",[7153]="Deadwood Warrior",[7154]="Deadwood Gardener",[7155]="Deadwood Pathfinder",[7156]="Deadwood Den Watcher",[7157]="Deadwood Avenger",[7158]="Deadwood Shaman",[7161]="Wrenix the Wretched",[7166]="Wrenix's Gizmotronic Apparatus",[7167]="Polly",[7168]="Polly",[7170]="Thragomm",[7172]="Lore Keeper of Norgannon",[7175]="Stonevault Ambusher",[7206]="Ancient Stone Keeper",[7207]="Doc Mixilpixil",[7208]="Noarm",[7209]="Obsidian Shard",[7226]="Sand Storm",[7228]="Ironaya",[7230]="Shayis Steelfury",[7231]="Kelgruk Bloodaxe",[7232]="Borgus Steelhand",[7233]="Taskmaster Fizzule",[7234]="Ferocitas the Dream Eater",[7235]="Gnarlpine Mystic",[7246]="Sandfury Shadowhunter",[7247]="Sandfury Soul Eater",[7266]="Ember",[7267]="Chief Ukorz Sandscalp",[7268]="Sandfury Guardian",[7269]="Scarab",[7270]="Sandfury Zombie",[7271]="Witch Doctor Zum'rah",[7272]="Theka the Martyr",[7273]="Gahz'rilla",[7274]="Sandfury Executioner",[7275]="Shadowpriest Sezz'ziz",[7276]="Zul'Farrak Dead Hero",[7286]="Zul'Farrak Zombie",[7287]="Foreman Silixiz",[7288]="Grand Foreman Puzik Gallywix",[7290]="Shadowforge Sharpshooter",[7291]="Galgann Firehammer",[7292]="Dinita Stonemantle",[7293]="[UNUSED] Drayl",[7294]="Shim'la",[7295]="Shailiea",[7296]="Corand",[7297]="Gothard Winslow",[7298]="Demnul Farmountain",[7307]="Venture Co. Lookout",[7308]="Venture Co. Patroller",[7309]="Earthen Custodian",[7310]="Mutated Venture Co. Drone",[7311]="Uthel'nay",[7312]="Dink",[7313]="Priestess A'moora",[7315]="Darnath Bladesinger",[7316]="Sister Aquinne",[7317]="Oben Rageclaw",[7318]="Rageclaw",[7319]="Lady Sathrah",[7320]="Stonevault Mauler",[7321]="Stonevault Flameweaver",[7322]="Riding Tiger (Black)",[7323]="Winstone Wolfe",[7324]="Simone Cantrell",[7325]="Master Kang",[7327]="Withered Warrior",[7328]="Withered Reaver",[7329]="Withered Quilguard",[7332]="Withered Spearhide",[7333]="Withered Battle Boar",[7334]="Battle Boar Horror",[7335]="Death's Head Geomancer",[7337]="Death's Head Necromancer",[7340]="Skeletal Shadowcaster",[7341]="Skeletal Frostweaver",[7342]="Skeletal Summoner",[7343]="Splinterbone Skeleton",[7344]="Splinterbone Warrior",[7345]="Splinterbone Captain",[7346]="Splinterbone Centurion",[7347]="Boneflayer Ghoul",[7348]="Thorn Eater Ghoul",[7349]="Tomb Fiend",[7351]="Tomb Reaver",[7352]="Frozen Soul",[7353]="Freezing Spirit",[7354]="Ragglesnout",[7355]="Tuten'kash",[7356]="Plaguemaw the Rotting",[7357]="Mordresh Fire Eye",[7358]="Amnennar the Coldbringer",[7360]="Dun Garok Soldier",[7361]="Grubbis",[7363]="Kum'isha the Collector",[7364]="Flawless Draenethyst Sphere",[7365]="Flawless Draenethyst Fragment",[7366]="Stoneskin Totem IV",[7367]="Stoneskin Totem V",[7368]="Stoneskin Totem VI",[7369]="Deadwind Brute",[7370]="Restless Shade",[7371]="Deadwind Mauler",[7372]="Deadwind Warlock",[7376]="Sky Shadow",[7379]="Deadwind Ogre Mage",[7380]="Siamese Cat",[7381]="Silver Tabby Cat",[7382]="Orange Tabby Cat",[7383]="Black Tabby Cat",[7384]="Cornish Rex Cat",[7385]="Bombay Cat",[7386]="White Kitten",[7387]="Green Wing Macaw",[7388]="Cockatoo",[7389]="Senegal",[7390]="Cockatiel",[7391]="Hyacinth Macaw",[7392]="Prairie Chicken",[7393]="White Plymouth Rock",[7394]="Ancona Chicken",[7395]="Cockroach",[7396]="Earthen Stonebreaker",[7397]="Earthen Stonecarver",[7398]="Stoneclaw Totem V",[7399]="Stoneclaw Totem VI",[7400]="Searing Totem V",[7401]="Draenei Refugee",[7402]="Searing Totem VI",[7403]="Strength of Earth Totem IV",[7404]="[UNUSED]Galak Flame Guard",[7405]="Deadly Cleft Scorpid",[7406]="Oglethorpe Obnoticus",[7407]="Chief Engineer Bilgewhizzle",[7408]="Spigot Operator Luglunket",[7409]="Faltering Draenethyst Sphere",[7410]="Thelman Slatefist",[7411]="Spirit of Sathrah",[7412]="Frost Resistance Totem II",[7413]="Frost Resistance Totem III",[7414]="Mana Spring Totem II",[7415]="Mana Spring Totem III",[7416]="Mana Spring Totem IV",[7423]="Flametongue Totem III",[7424]="Fire Resistance Totem II",[7425]="Fire Resistance Totem III",[7427]="Taim Ragetotem",[7428]="Frostmaul Giant",[7429]="Frostmaul Preserver",[7430]="Young Frostsaber",[7431]="Frostsaber",[7432]="Frostsaber Stalker",[7433]="Frostsaber Huntress",[7434]="Frostsaber Pride Watcher",[7435]="Cobalt Wyrmkin",[7436]="Cobalt Scalebane",[7437]="Cobalt Mageweaver",[7438]="Winterfall Ursa",[7439]="Winterfall Shaman",[7440]="Winterfall Den Watcher",[7441]="Winterfall Totemic",[7442]="Winterfall Pathfinder",[7443]="Shardtooth Mauler",[7444]="Shardtooth Bear",[7445]="Elder Shardtooth",[7446]="Rabid Shardtooth",[7447]="Fledgling Chillwind",[7448]="Chillwind Chimaera",[7449]="Chillwind Ravager",[7450]="Ragged Owlbeast",[7451]="Raging Owlbeast",[7452]="Crazed Owlbeast",[7453]="Moontouched Owlbeast",[7454]="Berserk Owlbeast",[7455]="Winterspring Owl",[7456]="Winterspring Screecher",[7457]="Rogue Ice Thistle",[7458]="Ice Thistle Yeti",[7459]="Ice Thistle Matriarch",[7460]="Ice Thistle Patriarch",[7461]="Hederine Initiate",[7462]="Hederine Manastalker",[7463]="Hederine Slayer",[7464]="Magma Totem II",[7465]="Magma Totem III",[7466]="Magma Totem IV",[7467]="Nature Resistance Totem",[7468]="Nature Resistance Totem II",[7469]="Nature Resistance Totem III",[7483]="Windfury Totem II",[7484]="Windfury Totem III",[7485]="Nargatt",[7486]="Grace of Air Totem",[7487]="Grace of Air Totem II",[7489]="Silverpine Deathguard",[7505]="Bloodmage Drazial",[7506]="Bloodmage Lynnore",[7507]="Brown Snake",[7508]="Black Kingsnake",[7523]="Suffering Highborne",[7524]="Anguished Highborne",[7527]="Goblin Land Mine",[7543]="Dark Whelpling",[7544]="Crimson Whelpling",[7545]="Emerald Whelpling",[7546]="Bronze Whelpling",[7547]="Azure Whelpling",[7548]="Faeling",[7549]="Tree Frog",[7550]="Wood Frog",[7551]="Dart Frog",[7552]="Island Frog",[7553]="Great Horned Owl",[7554]="Snowy Owl",[7555]="Hawk Owl",[7556]="Eagle Owl",[7558]="Cottontail Rabbit",[7559]="Spotted Rabbit",[7560]="Snowshoe Rabbit",[7561]="Albino Snake",[7563]="Blue Racer",[7564]="Marin Noggenfogger",[7566]="Scarlet Snake",[7567]="Crimson Snake",[7568]="Ribbon Snake",[7569]="Green Water Snake",[7570]="Elven Wisp",[7572]="Fallen Hero of the Horde",[7583]="Sprinkle",[7584]="Wandering Forest Walker",[7603]="Leprous Assistant",[7604]="Sergeant Bly",[7605]="Raven",[7606]="Oro Eyegouge",[7607]="Weegli Blastfuse",[7608]="Murta Grimgut",[7623]="Dispatch Commander Ruag",[7643]="Bengor",[7664]="Razelikh the Defiler",[7665]="Grol the Destroyer",[7666]="Archmage Allistarj",[7667]="Lady Sevine",[7668]="Servant of Razelikh",[7669]="Servant of Grol",[7670]="Servant of Allistarj",[7671]="Servant of Sevine",[7683]="Alessandro Luca",[7684]="Riding Tiger (Yellow)",[7686]="Riding Tiger (Red)",[7687]="Spotted Frostsaber",[7690]="Striped Nightsaber",[7704]="Riding Raptor (Crimson)",[7706]="Riding Raptor (Ivory)",[7707]="Turquoise Raptor",[7708]="Violet Raptor",[7709]="Riding Tallstrider (Brown)",[7710]="Riding Tallstrider (Gray)",[7711]="Riding Tallstrider (Pink)",[7712]="Riding Tallstrider (Purple)",[7713]="Riding Tallstrider (Turquoise)",[7714]="Byula",[7724]="Senior Surveyor Fizzledowser",[7725]="Grimtotem Raider",[7726]="Grimtotem Naturalist",[7727]="Grimtotem Shaman",[7728]="Kirith the Damned",[7729]="Spirit of Kirith",[7730]="Stonetalon Grunt",[7731]="Innkeeper Jayka",[7732]="Dupe Bug",[7733]="Innkeeper Fizzgrimble",[7734]="Ilifar",[7735]="Felcular",[7736]="Innkeeper Shyria",[7737]="Innkeeper Greul",[7738]="Burning Servant",[7739]="Red Mechanostrider",[7740]="Gracina Spiritmight",[7744]="Innkeeper Thulfram",[7749]="Blue Mechanostrider",[7750]="Corporal Thund Splithoof",[7763]="Curgle Cranklehop",[7764]="Troyas Moonbreeze",[7765]="Rockbiter",[7766]="Tyrion",[7767]="Witherbark Felhunter",[7768]="Witherbark Bloodling",[7769]="Hazzali Parasite",[7770]="Winkey",[7771]="Marvon Rivetseeker",[7772]="Kalin Windflight",[7773]="Marli Wishrunner",[7774]="Shay Leafrunner",[7775]="Gregan Brewspewer",[7776]="Talo Thornhoof",[7777]="Rok Orhan",[7778]="Doran Steelwing",[7779]="Priestess Tyriona",[7780]="Rin'ji",[7783]="Loramus Thalipedes",[7784]="Homing Robot OOX-17/TN",[7785]="Ward of Zum'rah",[7786]="Skeleton of Zum'rah",[7787]="Sandfury Slave",[7788]="Sandfury Drudge",[7789]="Sandfury Cretin",[7790]="Orokk Omosh",[7792]="Aturk the Anvil",[7793]="Ox",[7794]="McGavan",[7795]="Hydromancer Velratha",[7796]="Nekrum Gutchewer",[7797]="Ruuzlu",[7798]="Hank the Hammer",[7799]="Gimblethorn",[7800]="Mekgineer Thermaplugg",[7801]="Gilveradin Sunchaser",[7802]="Galvan the Ancient",[7803]="Scorpid Duneburrower",[7804]="Trenton Lighthammer",[7805]="Wastewander Scofflaw",[7806]="Homing Robot OOX-09/HL",[7807]="Homing Robot OOX-22/FE",[7808]="Marauding Owlbeast",[7809]="Vilebranch Ambusher",[7823]="Bera Stonehammer",[7824]="Bulkrek Ragefist",[7825]="Oran Snakewrithe",[7826]="Ambassador Ardalan",[7843]="Gnomeregan Evacuee",[7844]="Fire Nova Totem IV",[7845]="Fire Nova Totem V",[7846]="Teremus the Devourer",[7847]="Caliph Scorpidsting",[7848]="Lurking Feral Scar",[7849]="Mobile Alert System",[7850]="Kernobee",[7851]="Nethergarde Elite",[7852]="Pratt McGrubben",[7853]="Scooty",[7854]="Jangdor Swiftstrider",[7855]="Southsea Pirate",[7856]="Southsea Freebooter",[7857]="Southsea Dock Worker",[7858]="Southsea Swashbuckler",[7863]="Dream Vision",[7864]="Lingering Highborne",[7865]="Wildhammer Sentry",[7866]="Peter Galen",[7867]="Thorkaf Dragoneye",[7868]="Sarah Tanner",[7869]="Brumn Winterhoof",[7870]="Caryssia Moonhunter",[7871]="Se'Jib",[7872]="Death's Head Cultist",[7873]="Razorfen Battleguard",[7874]="Razorfen Thornweaver",[7875]="Hadoken Swiftstrider",[7876]="Tran'rek",[7877]="Latronicus Moonspear",[7878]="Vestia Moonspear",[7879]="Quintis Jonespyre",[7880]="Ginro Hearthkindle",[7881]="Stoley",[7882]="Security Chief Bilgewhizzle",[7883]="Andre Firebeard",[7884]="Fraggar Thundermantle",[7885]="Spitelash Battlemaster",[7886]="Spitelash Enchantress",[7895]="Ambassador Bloodrage",[7897]="Alarm-a-bomb 2600",[7898]="Pirate treasure trigger mob",[7899]="Treasure Hunting Pirate",[7900]="Angelas Moonbreeze",[7901]="Treasure Hunting Swashbuckler",[7902]="Treasure Hunting Buccaneer",[7903]="Jewel",[7904]="Jacob",[7907]="Daryn Lightwind",[7915]="Walking Bomb",[7916]="Erelas Ambersky",[7917]="Brother Sarno",[7918]="Stone Watcher of Norgannon",[7936]="Lyon Mountainheart",[7937]="High Tinker Mekkatorque",[7939]="Feathermoon Sentinel",[7940]="Darnall",[7941]="Mardrack Greenwell",[7942]="Faralorn",[7943]="Harklane",[7944]="Tinkmaster Overspark",[7945]="Savanne",[7946]="Brannock",[7947]="Vivianna",[7948]="Kylanna Windwhisper",[7949]="Xylinnia Starshine",[7950]="Master Mechanic Castpipe",[7951]="Zas'Tysh",[7952]="Zjolnir",[7953]="Xar'Ti",[7954]="Binjy Featherwhistle",[7955]="Milli Featherwhistle",[7956]="Kindal Moonweaver",[7957]="Jer'kai Moonweaver",[7975]="Camp Narache Brave",[7976]="Thalgus Thunderfist",[7977]="Gammerita",[7978]="Bimble Longberry",[7980]="Deathguard Elite",[7995]="Vile Priestess Hexx",[7996]="Qiaga the Keeper",[7997]="Captured Sprite Darter",[7998]="Blastmaster Emi Shortfuse",[7999]="Tyrande Whisperwind",[8015]="Ashenvale Sentinel",[8016]="Barrens Guard",[8017]="Sen'jin Guardian",[8018]="Guthrum Thunderfist",[8019]="Fyldren Moonfeather",[8020]="Shyn",[8021]="Orwin Gizzmick",[8022]="Thadius Grimshade",[8023]="Sharpbeak",[8024]="Sharpbeak's Father",[8025]="Sharpbeak's Mother",[8026]="Thyn'tel Bladeweaver",[8035]="Dark Iron Land Mine",[8055]="Thelsamar Mountaineer",[8075]="Edana Hatetalon",[8095]="Sul'lithuz Sandcrawler",[8096]="Westfall Brigade Guard",[8115]="Witch Doctor Uzer'i",[8116]="Ziggle Sparks",[8117]="Wizbang Booms",[8118]="Lillian Singh",[8119]="Zikkel",[8120]="Sul'lithuz Abomination",[8121]="Jaxxil Sparks",[8122]="Kizzak Sparks",[8123]="Rickle Goldgrubber",[8124]="Qizzik",[8125]="Dirge Quikcleave",[8126]="Nixx Sprocketspring",[8127]="Antu'sul",[8128]="Pikkle",[8129]="Wrinkle Goodsteel",[8130]="Sul'lithuz Hatchling",[8131]="Blizrik Buckshot",[8136]="Lord Shalzaru",[8137]="Gikkix",[8138]="Sul'lithuz Broodling",[8139]="Jabbey",[8140]="Brother Karman",[8141]="Captain Evencane",[8142]="Jannos Lighthoof",[8143]="Loorana",[8144]="Kulleg Stonehorn",[8145]="Sheendra Tallgrass",[8146]="Ruw",[8147]="Camp Mojache Brave",[8149]="Sul'lithuz Warder",[8150]="Janet Hommers",[8151]="Nijel's Point Guard",[8152]="Harnor",[8153]="Narv Hidecrafter",[8154]="Ghost Walker Brave",[8155]="Kargath Grunt",[8156]="Servant of Antu'sul",[8157]="Logannas",[8158]="Bronk",[8159]="Worb Strongstitch",[8160]="Nioma",[8161]="Harggan",[8176]="Gharash",[8177]="Rartar",[8178]="Nina Lightbrew",[8179]="Greater Healing Ward",[8196]="Occulus",[8197]="Chronalis",[8198]="Tick",[8199]="Warleader Krazzilak",[8200]="Jin'Zallah the Sandbringer",[8201]="Omgorn the Lost",[8202]="Cyclok the Mad",[8203]="Kregg Keelhaul",[8204]="Soriid the Devourer",[8205]="Haarka the Ravenous",[8207]="Emberwing",[8208]="Murderous Blisterpaw",[8210]="Razortalon",[8211]="Old Cliff Jumper",[8212]="The Reak",[8213]="Ironback",[8214]="Jalinde Summerdrake",[8215]="Grimungous",[8216]="Retherokk the Berserker",[8217]="Mith'rethis the Enchanter",[8218]="Witherheart the Stalker",[8219]="Zul'arek Hatefowler",[8236]="Muck Frenzy",[8256]="Curator Thorius",[8257]="Oozeling",[8276]="Soaring Razorbeak",[8277]="Rekk'tilac",[8278]="Smoldar",[8279]="Faulty War Golem",[8280]="Shleipnarr",[8281]="Scald",[8282]="Highlord Mastrogonde",[8283]="Slave Master Blackheart",[8284]="Dorius Stonetender",[8296]="Mojo the Twisted",[8297]="Magronos the Unyielding",[8298]="Akubar the Seer",[8299]="Spiteflayer",[8300]="Ravage",[8301]="Clack the Reaver",[8302]="Deatheye",[8303]="Grunter",[8304]="Dreadscorn",[8305]="Kixxle",[8306]="Duhng",[8307]="Tarban Hearthgrain",[8308]="Alenndaar Lapidaar",[8309]="Carlo Aurelius",[8310]="Watcher Wollpert",[8311]="Slime Maggot",[8317]="Atal'ai Deathwalker's Spirit",[8318]="Atal'ai Slave",[8319]="Nightmare Whelp",[8320]="Sprok",[8324]="Atal'ai Skeleton",[8336]="Hakkari Sapper",[8337]="Dark Iron Steelshifter",[8338]="Dark Iron Marksman",[8356]="Chesmu",[8357]="Atepa",[8358]="Hewa",[8359]="Ahanu",[8360]="Elki",[8361]="Chepi",[8362]="Kuruk",[8363]="Shadi Mistrunner",[8364]="Pakwa",[8376]="Mechanical Chicken",[8378]="Alexandra Blazen",[8379]="Archmage Xylem",[8380]="Captain Vanessa Beltis",[8381]="Lindros",[8382]="Patrick Mills",[8383]="Master Wood",[8384]="Deep Lurker",[8385]="Mura Runetotem",[8386]="Horizon Scout Crewman",[8387]="Horizon Scout First Mate",[8388]="Horizon Scout Cook",[8389]="Horizon Scout Engineer",[8390]="Chemist Cuely",[8391]="Lathoric the Black",[8392]="Pilot Xiggs Fuselighter",[8393]="Thersa Windsong",[8394]="Roland Geardabbler",[8395]="Sanath Lim-yo",[8396]="Sentinel Dalia Sunblade",[8397]="Sentinel Keldara Sunblade",[8398]="Ohanko",[8399]="Nyrill",[8400]="Obsidion",[8401]="Halpa",[8402]="Enslaved Archaeologist",[8403]="Jeremiah Payson",[8404]="Xan'tish",[8405]="Ogtinc",[8408]="Warlord Krellian",[8409]="Caravan Master Tset",[8416]="Felix Whindlebolt",[8417]="Dying Archaeologist",[8418]="Falla Sagewind",[8419]="Twilight Idolater",[8420]="Kim'jael",[8421]="Dorius",[8436]="Zamael Lunthistle",[8437]="Hakkari Minion",[8438]="Hakkari Bloodkeeper",[8439]="Nilith Lokrav",[8440]="Shade of Hakkar",[8441]="Raze",[8442]="Shadowsilk Poacher",[8443]="Avatar of Hakkar",[8444]="Trade Master Kovic",[8446]="Xiggs Fuselighter's Flyingmachine",[8447]="Clunk",[8477]="Skeletal Servant",[8478]="Second Mate Shandril",[8479]="Kalaran Windblade",[8480]="Kalaran the Deceiver",[8496]="Liv Rizzlefix",[8497]="Nightmare Suppressor",[8503]="Gibblewilt",[8504]="Dark Iron Sentry",[8506]="Eranikus the Chained",[8507]="Tymor",[8508]="Gretta Ganter",[8509]="Squire Maltrake",[8510]="Atal'ai Totem",[8516]="Belnistrasz",[8517]="Xiggs Fuselighter",[8518]="Rynthariel the Keymaster",[8519]="Blighted Surge",[8520]="Plague Ravager",[8521]="Blighted Horror",[8522]="Plague Monstrosity",[8523]="Scourge Soldier",[8524]="Cursed Mage",[8525]="Scourge Warder",[8526]="Dark Caster",[8527]="Scourge Guard",[8528]="Dread Weaver",[8529]="Scourge Champion",[8530]="Cannibal Ghoul",[8531]="Gibbering Ghoul",[8532]="Diseased Flayer",[8534]="Putrid Gargoyle",[8535]="Putrid Shrieker",[8537]="Interloper",[8538]="Unseen Servant",[8539]="Eyeless Watcher",[8540]="Torn Screamer",[8541]="Hate Shrieker",[8542]="Death Singer",[8543]="Stitched Horror",[8544]="Gangled Golem",[8545]="Stitched Golem",[8546]="Dark Adept",[8547]="Death Cultist",[8548]="Vile Tutor",[8550]="Shadowmage",[8551]="Dark Summoner",[8553]="Necromancer",[8554]="Chief Sharptusk Thornmantle",[8555]="Crypt Stalker",[8556]="Crypt Walker",[8557]="Crypt Horror",[8558]="Crypt Slayer",[8560]="Mossflayer Scout",[8561]="Mossflayer Shadowhunter",[8562]="Mossflayer Cannibal",[8563]="Wretched Woodsman",[8564]="Wretched Ranger",[8565]="Wretched Pathstrider",[8566]="Dark Iron Lookout",[8567]="Glutton",[8576]="Ag'tor Bloodfist",[8578]="Magus Rimtori",[8579]="Yeh'kinya",[8580]="Atal'alarion",[8581]="Blood Elf Defender",[8582]="Kadrak",[8583]="Dirania Silvershine",[8584]="Iverron",[8585]="Frost Spectre",[8586]="Haggrum Bloodfist",[8587]="Jediga",[8588]="Umbranse the Spiritspeaker",[8596]="Plaguehound Runt",[8597]="Plaguehound",[8598]="Frenzied Plaguehound",[8600]="Plaguebat",[8601]="Noxious Plaguebat",[8602]="Monstrous Plaguebat",[8603]="Carrion Grub",[8605]="Carrion Devourer",[8606]="Living Decay",[8607]="Rotting Sludge",[8608]="Angered Infernal",[8609]="Alexandra Constantine",[8610]="Kroum",[8611]="Idol Room Spawner",[8612]="Screecher Spirit",[8615]="Mithril Dragonling",[8616]="Infernal Servant",[8617]="Zalashji",[8636]="Morta'gya the Keeper",[8637]="Dark Iron Watchman",[8656]="Hukku's Voidwalker",[8657]="Hukku's Succubus",[8658]="Hukku's Imp",[8659]="Jes'rimon",[8660]="The Evalcharr",[8661]="Auctioneer Beardo",[8662]="Idol Oven Fire Target",[8664]="Sunwalker Saern",[8665]="Shylenai",[8666]="Lil Timmy",[8667]="Gusting Vortex",[8668]="Felhound Tracker",[8669]="Auctioneer Tolon",[8670]="Auctioneer Chilton",[8671]="Auctioneer Buckler",[8672]="Auctioneer Leeka",[8673]="Auctioneer Thathung",[8674]="Auctioneer Stampi",[8675]="Felbeast",[8677]="World Goblin Engineering Trainer",[8678]="Jubie Gadgetspring",[8679]="Knaz Blunderflame",[8681]="Outfitter Eric",[8696]="Henry Stern",[8716]="Dreadlord",[8717]="Felguard Elite",[8718]="Manahound",[8719]="Auctioneer Fitch",[8720]="Auctioneer Redmuse",[8721]="Auctioneer Epitwee",[8722]="Auctioneer Gullem",[8723]="Auctioneer Golothas",[8724]="Auctioneer Wabang",[8736]="Buzzek Bracketswing",[8737]="Linken",[8738]="Vazario Linkgrease",[8756]="Raytaf",[8757]="Shahiar",[8758]="Zaman",[8759]="Mosshoof Runner",[8760]="Mosshoof Stag",[8761]="Mosshoof Courser",[8762]="Timberweb Recluse",[8763]="Mistwing Rogue",[8764]="Mistwing Ravager",[8766]="Forest Ooze",[8767]="Sah'rhee",[8776]="Emerald Dragon Whelp",[8816]="Deathly Usher",[8836]="Battle Chicken",[8837]="Muck Splash",[8856]="Tyrion's Spybot",[8876]="Sandfury Acolyte",[8877]="Sandfury Zealot",[8878]="Muuran",[8879]="Royal Historian Archesonus",[8881]="Riding Ram",[8882]="Riding Tiger",[8883]="Riding Horse",[8884]="Skeletal Mount",[8885]="Riding Raptor",[8886]="Deviate Python",[8887]="A tormented voice",[8888]="Franclorn Forgewright",[8889]="Anvilrage Overseer",[8890]="Anvilrage Warden",[8891]="Anvilrage Guardsman",[8892]="Anvilrage Footman",[8893]="Anvilrage Soldier",[8894]="Anvilrage Medic",[8895]="Anvilrage Officer",[8896]="Shadowforge Peasant",[8897]="Doomforge Craftsman",[8898]="Anvilrage Marshal",[8899]="Doomforge Dragoon",[8900]="Doomforge Arcanasmith",[8901]="Anvilrage Reservist",[8902]="Shadowforge Citizen",[8903]="Anvilrage Captain",[8904]="Shadowforge Senator",[8905]="Warbringer Construct",[8906]="Ragereaver Golem",[8907]="Wrath Hammer Construct",[8908]="Molten War Golem",[8909]="Fireguard",[8910]="Blazing Fireguard",[8911]="Fireguard Destroyer",[8912]="Twilight's Hammer Torturer",[8913]="Twilight Emissary",[8914]="Twilight Bodyguard",[8915]="Twilight's Hammer Ambassador",[8916]="Arena Spectator",[8917]="Quarry Slave",[8920]="Weapon Technician",[8921]="Bloodhound",[8922]="Bloodhound Mastiff",[8923]="Panzor the Invincible",[8924]="The Behemoth",[8925]="Dredge Worm",[8926]="Deep Stinger",[8927]="Dark Screecher",[8928]="Burrowing Thundersnout",[8929]="Princess Moira Bronzebeard",[8931]="Innkeeper Heather",[8932]="Borer Beetle",[8933]="Cave Creeper",[8934]="Christopher Hewen",[8937]="Pet Bomb",[8956]="Angerclaw Bear",[8957]="Angerclaw Grizzly",[8958]="Angerclaw Mauler",[8959]="Felpaw Wolf",[8960]="Felpaw Scavenger",[8961]="Felpaw Ravager",[8962]="Nida",[8963]="Effsee",[8964]="Blackrock Drake",[8965]="Shawn",[8976]="Hematos",[8977]="Krom'Grul",[8978]="Thauris Balgarr",[8979]="Gruklash",[8980]="Firegut Captain",[8981]="Malfunctioning Reaver",[8982]="Ironhand Guardian",[8983]="Golem Lord Argelmach",[8996]="Voidwalker Minion",[8997]="Gershala Nightwhisper",[9016]="Bael'Gar",[9017]="Lord Incendius",[9018]="High Interrogator Gerstahn",[9019]="Emperor Dagran Thaurissan",[9020]="Commander Gor'shak",[9021]="Kharan Mighthammer",[9022]="Dughal Stormwing",[9023]="Marshal Windsor",[9024]="Pyromancer Loregrain",[9025]="Lord Roccor",[9026]="Overmaster Pyron",[9027]="Gorosh the Dervish",[9028]="Grizzle",[9029]="Eviscerator",[9030]="Ok'thor the Breaker",[9031]="Anub'shiah",[9032]="Hedrum the Creeper",[9033]="General Angerforge",[9034]="Hate'rel",[9035]="Anger'rel",[9036]="Vile'rel",[9037]="Gloom'rel",[9038]="Seeth'rel",[9039]="Doom'rel",[9040]="Dope'rel",[9041]="Warder Stilgiss",[9042]="Verek",[9043]="Scarshield Grunt",[9044]="Scarshield Sentry",[9045]="Scarshield Acolyte",[9046]="Scarshield Quartermaster",[9047]="Jenal",[9056]="Fineous Darkvire",[9076]="Ghede",[9077]="Warlord Goretooth",[9078]="Shadowmage Vivian Lagrave",[9079]="Hierophant Theodora Mulvadania",[9080]="Lexlort",[9081]="Galamav the Marksman",[9082]="Thal'trak Proudtusk",[9083]="Razal'blade",[9084]="Thunderheart",[9085]="Initiate Amakkar",[9086]="Grunt Gargal",[9087]="Bashana Runetotem",[9096]="Rage Talon Dragonspawn",[9097]="Scarshield Legionnaire",[9098]="Scarshield Spellbinder",[9099]="Sraaz",[9116]="Eridan Bluewind",[9117]="J.D. Collie",[9118]="Larion",[9119]="Muigin",[9136]="Sha'ni Proudtusk",[9156]="Ambassador Flamelash",[9157]="Bloodpetal Pest",[9158]="Warhorse",[9162]="Young Diemetradon",[9163]="Diemetradon",[9164]="Elder Diemetradon",[9165]="Fledgling Pterrordax",[9166]="Pterrordax",[9167]="Frenzied Pterrordax",[9176]="Gorlop",[9177]="Oralius",[9178]="Burning Spirit",[9179]="Jazzrik",[9196]="Highlord Omokk",[9197]="Spirestone Battle Mage",[9198]="Spirestone Mystic",[9199]="Spirestone Enforcer",[9200]="Spirestone Reaver",[9201]="Spirestone Ogre Magus",[9216]="Spirestone Warlord",[9217]="Spirestone Lord Magus",[9218]="Spirestone Battle Lord",[9219]="Spirestone Butcher",[9236]="Shadow Hunter Vosh'gajin",[9237]="War Master Voone",[9238]="Quentin",[9239]="Smolderthorn Mystic",[9240]="Smolderthorn Shadow Priest",[9241]="Smolderthorn Headhunter",[9256]="Farm Chicken",[9257]="Scarshield Warlock",[9258]="Scarshield Raider",[9259]="Firebrand Grunt",[9260]="Firebrand Legionnaire",[9261]="Firebrand Darkweaver",[9262]="Firebrand Invoker",[9263]="Firebrand Dreadweaver",[9264]="Firebrand Pyromancer",[9265]="Smolderthorn Shadow Hunter",[9266]="Smolderthorn Witch Doctor",[9267]="Smolderthorn Axe Thrower",[9268]="Smolderthorn Berserker",[9269]="Smolderthorn Seer",[9270]="Williden Marshal",[9271]="Hol'anyee Marshal",[9272]="Spark Nilminer",[9273]="Petra Grossen",[9274]="Dadanga",[9296]="Milly Osworth",[9297]="Enraged Wyvern",[9298]="Donova Snowden",[9299]="Gaeriyan",[9316]="Wenikee Boltbucket",[9317]="Rilli Greasygob",[9318]="Incendosaur",[9319]="Houndmaster Grebmar",[9336]="Boss Copperplug",[9356]="Innkeeper Shul'kar",[9376]="Blazerunner",[9377]="Swirling Vortex",[9396]="Ground Pounder",[9397]="Unearthed Fossil",[9398]="Twilight's Hammer Executioner",[9416]="Scarshield Worg",[9436]="Spawn of Bael'Gar",[9437]="Dark Keeper Vorfalk",[9438]="Dark Keeper Bethek",[9439]="Dark Keeper Uggel",[9441]="Dark Keeper Zimrel",[9442]="Dark Keeper Ofgut",[9443]="Dark Keeper Pelver",[9445]="Dark Guard",[9447]="Scarlet Warder",[9448]="Scarlet Praetorian",[9449]="Scarlet Cleric",[9450]="Scarlet Curate",[9451]="Scarlet Archmage",[9452]="Scarlet Enchanter",[9453]="Aquementas",[9454]="Xavathras",[9456]="Warlord Krom'zar",[9457]="Horde Defender",[9458]="Horde Axe Thrower",[9459]="Cyrus Therepentous",[9460]="Gadgetzan Bruiser",[9461]="Frenzied Black Drake",[9462]="Chieftain Bloodmaw",[9464]="Overlord Ror",[9465]="Golhine the Hooded",[9467]="Miblon Snarltooth",[9476]="Watchman Doomgrip",[9477]="Cloned Ooze",[9496]="Gorishi Egg",[9498]="Gorishi Grub",[9499]="Plugger Spazzring",[9500]="Mistress Nagmara",[9501]="Innkeeper Adegwa",[9502]="Phalanx",[9503]="Private Rocknot",[9516]="Lord Banehollow",[9517]="Shadow Lord Fel'dan",[9518]="Rakaiah",[9520]="Grark Lorkrub",[9521]="Enraged Felbat",[9522]="Blackrock Ambusher",[9523]="Kolkar Stormseer",[9524]="Kolkar Invader",[9525]="Freewind Brave",[9526]="Enraged Gryphon",[9527]="Enraged Hippogryph",[9528]="Arathandris Silversky",[9529]="Maybess Riverbreeze",[9536]="Maxwort Uberglint",[9537]="Hurley Blackbreath",[9538]="High Executioner Nuzrak",[9539]="Shadow of Lexlort",[9540]="Enohar Thunderbrew",[9541]="Blackbreath Crony",[9542]="Franclorn's Spirit",[9543]="Ribbly Screwspigot",[9544]="Yuka Screwspigot",[9545]="Grim Patron",[9546]="Raschal the Courier",[9547]="Guzzling Patron",[9548]="Cawind Trueaim",[9549]="Borand",[9550]="Furmund",[9551]="Starn",[9552]="Zanara",[9553]="Nadia Vernon",[9554]="Hammered Patron",[9555]="Mu'uta",[9556]="Felhound Minion",[9558]="Grimble",[9559]="Grizzlowe",[9560]="Marshal Maxwell",[9561]="Jalinda Sprig",[9562]="Helendis Riverhorn",[9563]="Ragged John",[9564]="Frezza",[9565]="Mayara Brightwing",[9566]="Zapetta",[9568]="Overlord Wyrmthalak",[9580]="Orgrimmar Talent Master",[9582]="Undercity Talent Master",[9583]="Bloodaxe Veteran",[9584]="Jalane Ayrole",[9596]="Bannok Grimaxe",[9598]="Arei",[9600]="Parrot",[9601]="Treant Spirit",[9602]="Hahk'Zor",[9604]="Gorgon'och",[9605]="Blackrock Raider",[9616]="Laris Geardawdle",[9618]="Karna Remtravel",[9619]="Torwa Pathfinder",[9620]="Dreka'Sur",[9621]="Gargantuan Ooze",[9622]="U'cha",[9623]="A-Me 01",[9636]="Kireena",[9637]="Scorching Totem",[9656]="Pet Bombling",[9657]="Lil' Smoky",[9658]="Distract Test",[9659]="Unkillable Test Dummy",[9660]="Agnar Beastamer",[9662]="Sprite Darter Hatchling",[9676]="Tink Sprocketwhistle",[9677]="Ograbisi",[9678]="Shill Dinger",[9679]="Tobias Seecher",[9680]="Crest Killer",[9681]="Jaz",[9682]="Marshal Reginald Windsor",[9683]="Lar'korwi Mate",[9684]="Lar'korwi",[9687]="Windwall Totem",[9688]="Windwall Totem II",[9689]="Windwall Totem III",[9690]="Ember Worg",[9691]="Venomtip Scorpid",[9692]="Bloodaxe Raider",[9693]="Bloodaxe Evoker",[9694]="Slavering Ember Worg",[9695]="Deathlash Scorpid",[9696]="Bloodaxe Worg",[9697]="Giant Ember Worg",[9698]="Firetail Scorpid",[9699]="Fire Beetle",[9700]="Lava Crab",[9701]="Spire Scorpid",[9705]="Illusionary Dreamwatcher",[9706]="Yorba Screwspigot",[9707]="Scarshield Portal",[9708]="Burning Imp",[9716]="Bloodaxe Warmonger",[9717]="Bloodaxe Summoner",[9718]="Ghok Bashguud",[9736]="Quartermaster Zigris",[9776]="Flamekin Spitter",[9777]="Flamekin Sprite",[9778]="Flamekin Torcher",[9779]="Flamekin Rager",[9796]="Galgar",[9816]="Pyroguard Emberseer",[9817]="Blackhand Dreadweaver",[9818]="Blackhand Summoner",[9819]="Blackhand Veteran",[9836]="Mathredis Firestar",[9856]="Auctioneer Grimful",[9857]="Auctioneer Grizzlin",[9858]="Auctioneer Kresky",[9859]="Auctioneer Lympkin",[9860]="Salia",[9861]="Moora",[9862]="Jaedenar Legionnaire",[9876]="Locheed",[9877]="Prince Xavalis",[9878]="Entropic Beast",[9879]="Entropic Horror",[9916]="Jarquia",[9936]="Corrupted Kitten",[9937]="Common Kitten",[9938]="Magmus",[9956]="Shadowforge Flame Keeper",[9976]="Tharlidun",[9977]="Sylista",[9978]="Wesley",[9979]="Sarah Goode",[9980]="Shelby Stoneflint",[9981]="Sikwa",[9982]="Penny",[9983]="Kelsuwa",[9984]="Ulbrek Firehand",[9985]="Laziphus",[9986]="Shyrka Wolfrunner",[9987]="Shoja'my",[9988]="Xon'cha",[9989]="Lina Hearthstove",[9990]="Lanti'gah",[9996]="Winna Hazzard",[9997]="Spraggle Frock",[9998]="Shizzle",[9999]="Ringo",[10000]="Arugal",[10016]="Tainted Rat",[10017]="Tainted Cockroach",[10036]="Brackenwall Enforcer",[10037]="Lakeshire Guard",[10038]="Night Watch Guard",[10040]="Gorishi Hive Guard",[10041]="Gorishi Hive Queen",[10042]="Corrupted Saber",[10043]="Ribbly's Crony",[10045]="Kirk Maxwell",[10046]="Bethaine Flinthammer",[10047]="Michael",[10048]="Gereck",[10049]="Hekkru",[10050]="Seikwa",[10051]="Seriadne",[10052]="Maluressian",[10053]="Anya Maulray",[10054]="Bulrug",[10055]="Morganus",[10056]="Alassin",[10057]="Theodore Mont Claire",[10058]="Greth",[10059]="Antarius",[10060]="Grimestack",[10061]="Killium Bouldertoe",[10062]="Steven Black",[10063]="Reggifuz",[10076]="High Priestess of Thaurissan",[10077]="Deathmaw",[10078]="Terrorspark",[10079]="Brave Moonhorn",[10080]="Sandarr Dunereaver",[10081]="Dustwraith",[10082]="Zerillis",[10083]="Rage Talon Flamescale",[10085]="Jaelysia",[10086]="Hesuwa Thunderhorn",[10088]="Xao'tsu",[10089]="Silvaria",[10090]="Belia Thundergranite",[10096]="High Justice Grimstone",[10116]="Slave",[10117]="Tortured Slave",[10118]="Nessa Shadowsong",[10119]="Volchan",[10120]="Vault Warder",[10136]="Chemist Fuely",[10157]="Moonkin Oracle",[10158]="Moonkin",[10159]="Young Moonkin",[10160]="Raging Moonkin",[10161]="Rookery Whelp",[10162]="Lord Victor Nefarius",[10176]="Kaltunk",[10177]="Spire Scarab",[10179]="Riding MechaStrider (Black)",[10180]="Unpainted Mechanostrider",[10181]="Lady Sylvanas Windrunner",[10182]="Rokaro",[10183]="Moonflare Totem",[10184]="Onyxia",[10196]="General Colbatann",[10197]="Mezzir the Howler",[10198]="Kashoch the Reaver",[10199]="Grizzle Snowpaw",[10200]="Rak'shiri",[10201]="Lady Hederine",[10202]="Azurous",[10204]="Misha",[10216]="Gubber Blump",[10217]="Flame Buffet Totem",[10218]="Superior Healing Ward",[10219]="Gwennyth Bly'Leggonde",[10220]="Halycon",[10221]="Bloodaxe Worg Pup",[10257]="Bijou",[10258]="Rookery Guardian",[10259]="Worg Pup",[10260]="Kibler",[10261]="Burning Felhound",[10262]="Opus",[10263]="Burning Felguard",[10264]="Solakar Flamewreath",[10266]="Ug'thok",[10267]="Tinkee Steamboil",[10268]="Gizrul the Slavener",[10276]="Rotgath Stonebeard",[10277]="Groum Stonebeard",[10278]="Thrag Stonehoof",[10290]="Captured Felwood Ooze",[10293]="Dulciea Frostmoon",[10296]="Vaelan",[10299]="Acride",[10300]="Ranshalla",[10301]="Jaron Stoneshaper",[10302]="Krakle",[10303]="Storm Shadowhoof",[10304]="Aurora Skycaller",[10305]="Umi Rumplesnicker",[10306]="Trull Failbane",[10307]="Witch Doctor Mau'ari",[10316]="Blackhand Incarcerator",[10317]="Blackhand Elite",[10318]="Blackhand Assassin",[10319]="Blackhand Iron Guard",[10321]="Emberstrife",[10322]="Riding Tiger (White)",[10323]="Murkdeep",[10339]="Gyth",[10340]="Vaelastrasz the Red",[10356]="Bayne",[10357]="Ressan the Needler",[10358]="Fellicent's Shade",[10359]="Sri'skulk",[10360]="Kergul Bloodaxe",[10361]="Gruul Darkblade",[10363]="General Drakkisath",[10364]="Yaelika Farclaw",[10366]="Rage Talon Dragon Guard",[10367]="Shrye Ragefist",[10369]="Trayexir",[10370]="[UNUSED] Xur'gyl",[10371]="Rage Talon Captain",[10372]="Rage Talon Fire Tongue",[10373]="Xabraxxis",[10374]="Spire Spider",[10375]="Spire Spiderling",[10376]="Crystal Fang",[10377]="Elu",[10378]="Omusa Thunderhorn",[10379]="Altsoba Ragetotem",[10380]="Sanuye Runetotem",[10381]="Ravaged Cadaver",[10382]="Mangled Cadaver",[10383]="Broken Cadaver",[10384]="Spectral Citizen",[10385]="Ghostly Citizen",[10387]="Vengeful Phantom",[10388]="Spiteful Phantom",[10389]="Wrath Phantom",[10390]="Skeletal Guardian",[10391]="Skeletal Berserker",[10393]="Skul",[10394]="Black Guard Sentry",[10398]="Thuzadin Shadowcaster",[10399]="Thuzadin Acolyte",[10400]="Thuzadin Necromancer",[10404]="Pustulating Horror",[10405]="Plague Ghoul",[10406]="Ghoul Ravener",[10407]="Fleshflayer Ghoul",[10408]="Rockwing Gargoyle",[10409]="Rockwing Screecher",[10411]="Eye of Naxxramas",[10412]="Crypt Crawler",[10413]="Crypt Beast",[10414]="Patchwork Horror",[10415]="Ash'ari Crystal",[10416]="Bile Spewer",[10417]="Venom Belcher",[10418]="Risen Guardsman",[10419]="Risen Conjuror",[10420]="Risen Initiate",[10421]="Crimson Defender",[10422]="Crimson Sorcerer",[10423]="Crimson Priest",[10424]="Risen Gallant",[10425]="Crimson Battle Mage",[10426]="Crimson Inquisitor",[10427]="Pao'ka Swiftmountain",[10428]="Motega Firemane",[10429]="Warchief Rend Blackhand",[10430]="The Beast",[10431]="Gregor Greystone",[10432]="Vectus",[10433]="Marduk Blackpool",[10435]="Magistrate Barthilas",[10436]="Baroness Anastari",[10437]="Nerub'enkan",[10438]="Maleki the Pallid",[10439]="Ramstein the Gorger",[10440]="Baron Rivendare",[10441]="Plagued Rat",[10442]="Chromatic Whelp",[10445]="Selina Dourman",[10447]="Chromatic Dragonspawn",[10455]="Binny Springblade",[10456]="Prynne",[10460]="Prospector Ironboot",[10461]="Plagued Insect",[10463]="Shrieking Banshee",[10464]="Wailing Banshee",[10467]="Mana Tide Totem",[10468]="Felnok Steelspring",[10469]="Scholomance Adept",[10470]="Scholomance Neophyte",[10471]="Scholomance Acolyte",[10472]="Scholomance Occultist",[10475]="Scholomance Student",[10476]="Scholomance Necrolyte",[10477]="Scholomance Necromancer",[10478]="Splintered Skeleton",[10479]="Skulking Corpse",[10480]="Unstable Corpse",[10481]="Reanimated Corpse",[10482]="Risen Lackey",[10485]="Risen Aberration",[10486]="Risen Warrior",[10487]="Risen Protector",[10488]="Risen Construct",[10489]="Risen Guard",[10491]="Risen Bonewarder",[10495]="Diseased Ghoul",[10497]="Ragged Ghoul",[10498]="Spectral Tutor",[10499]="Spectral Researcher",[10500]="Spectral Teacher",[10502]="Lady Illucia Barov",[10503]="Jandice Barov",[10504]="Lord Alexei Barov",[10505]="Instructor Malicia",[10506]="Kirtonos the Herald",[10507]="The Ravenian",[10508]="Ras Frostwhisper",[10509]="Jed Runewatcher",[10516]="The Unforgiven",[10536]="Plagued Maggot",[10537]="Cliffwatcher Longhorn",[10538]="Vaelastrasz",[10539]="Hagar Lightninghoof",[10540]="Vol'jin",[10541]="Krakle's Thermometer",[10556]="Lazy Peon",[10557]="Flametongue Totem IV",[10558]="Hearthsinger Forresten",[10559]="Lady Vespia",[10577]="Crypt Scarab",[10578]="Bom'bay",[10580]="Fetid Zombie",[10581]="Young Arikara",[10582]="Dog",[10583]="Gryfe",[10584]="Urok Doomhowl",[10596]="Mother Smolderweb",[10598]="Smolderweb Hatchling",[10599]="Hulfnar Stonetotem",[10600]="Thontek Rumblehoof",[10601]="Urok Enforcer",[10602]="Urok Ogre Magus",[10603]="Hallucination",[10604]="Huntress Nhemai",[10605]="Scarlet Medic",[10606]="Huntress Yaeliura",[10608]="Scarlet Priest",[10610]="Angus",[10611]="Shorty",[10612]="Guard Wachabe",[10616]="Supervisor Raelen",[10617]="Galak Messenger",[10618]="Rivern Frostwind",[10619]="Glacier",[10636]="Pack Kodo",[10637]="Malyfous Darkhammer",[10638]="Kanati Greycloud",[10639]="Rorgish Jowl",[10640]="Oakpaw",[10641]="Branch Snapper",[10642]="Eck'alom",[10643]="Mugglefin",[10644]="Mist Howler",[10645]="Thalia Amberhide",[10646]="Lakota Windsong",[10647]="Prince Raze",[10648]="Xavaric",[10656]="Guardian Felhunter",[10657]="Corrupted Cat",[10658]="Winna's Kitten",[10659]="Cobalt Whelp",[10660]="Cobalt Broodling",[10661]="Spell Eater",[10662]="Spellmaw",[10663]="Manaclaw",[10664]="Scryer",[10665]="Junior Apothecary Holland",[10666]="Gordo",[10667]="Chromie",[10668]="Beaten Corpse",[10676]="Raider Jhash",[10678]="Plagued Hatchling",[10680]="Summoned Blackhand Dreadweaver",[10681]="Summoned Blackhand Veteran",[10682]="Raider Kerr",[10683]="Rookery Hatcher",[10684]="Remorseful Highborne",[10685]="Swine",[10696]="Refuge Pointe Defender",[10697]="Bile Slime",[10698]="Summoned Zombie",[10699]="Carrion Scarab",[10716]="Belfry Bat",[10717]="Temporal Parasite",[10718]="Shahram",[10719]="Herald of Thrall",[10720]="Galak Assassin",[10721]="Novice Warrior",[10737]="Shy-Rotam",[10738]="High Chief Winterfall",[10739]="Mulgris Deepriver",[10740]="Awbee",[10741]="Sian-Rotam",[10742]="Blackhand Dragon Handler",[10756]="Scalding Elemental",[10757]="Boiling Elemental",[10758]="Grimtotem Bandit",[10759]="Grimtotem Stomper",[10760]="Grimtotem Geomancer",[10761]="Grimtotem Reaver",[10762]="Blackhand Thug",[10776]="Finkle Einhorn",[10778]="Janice Felstone",[10779]="Infected Squirrel",[10780]="Infected Deer",[10781]="Royal Overseer Bauhaus",[10782]="Royal Factor Bathrilor",[10785]="Orb of Deception (Tauren Male)",[10799]="Warosh",[10800]="Warosh the Redeemed",[10801]="Jabbering Ghoul",[10802]="Hitah'ya the Keeper",[10803]="Rifleman Wheeler",[10804]="Rifleman Middlecamp",[10805]="Spotter Klemmy",[10806]="Ursius",[10807]="Brumeran",[10808]="Timmy the Cruel",[10809]="Stonespine",[10811]="Instructor Galford",[10812]="Grand Crusader Dathrohan",[10813]="Balnazzar",[10814]="Chromatic Elite Guard",[10816]="Wandering Skeleton",[10817]="Duggan Wildhammer",[10818]="Death Knight Soulbearer",[10819]="Baron Bloodbane",[10820]="Duke Ragereaver",[10821]="Hed'mush the Rotting",[10822]="Warlord Thresh'jin",[10823]="Zul'Brin Warpbranch",[10824]="Ranger Lord Hawkspear",[10825]="Gish the Unmoving",[10826]="Lord Darkscythe",[10827]="Deathspeaker Selendre",[10828]="High General Abbendis",[10836]="Farmer Dalson",[10837]="High Executor Derrington",[10838]="Commander Ashlam Valorfist",[10839]="Argent Officer Garush",[10840]="Argent Officer Pureheart",[10856]="Argent Quartermaster Hasana",[10857]="Argent Quartermaster Lightspark",[10876]="Undead Scarab",[10877]="Courier Hammerfall",[10878]="Herald Moonstalker",[10879]="Harbinger Balthazad",[10880]="Warcaller Gorlach",[10881]="Bluff Runner Windstrider",[10882]="[Deprecated for 4.x]Arikara",[10896]="Arnak Grimtotem",[10897]="Sindrayl",[10899]="Goraluk Anvilcrack",[10901]="Lorekeeper Polkelt",[10902]="Andorhal Tower One",[10903]="Andorhal Tower Two",[10904]="Andorhal Tower Three",[10905]="Andorhal Tower Four",[10916]="Winterfall Runner",[10917]="Aurius",[10918]="Lorax",[10919]="Shatterspear Troll",[10920]="Kelek Skykeeper",[10921]="Taronn Redfeather",[10922]="Greta Mosshoof",[10923]="Tenell Leafrunner",[10924]="Ivy Leafrunner",[10925]="Rotting Worm",[10926]="Pamela Redpath",[10927]="Marlene Redpath",[10928]="Succubus Minion",[10929]="Haleh",[10930]="Dargh Trueaim",[10936]="Joseph Redpath",[10937]="Captain Redpath",[10938]="Redpath the Corrupted",[10939]="Marduk the Black",[10940]="Ghost of the Past",[10941]="Wizlo Bearingshiner",[10942]="Nessy",[10943]="Decrepit Guardian",[10944]="Davil Lightfire",[10945]="Davil Crokford",[10946]="Horgus the Ravager",[10947]="Darrowshire Betrayer",[10948]="Darrowshire Defender",[10949]="Silver Hand Disciple",[10950]="Redpath Militia",[10951]="Marauding Corpse",[10952]="Marauding Skeleton",[10953]="Servant of Horgus",[10954]="Bloodletter",[10955]="Summoned Water Elemental",[10956]="Naga Siren",[10976]="Jeziba",[10977]="Quixxil",[10978]="Legacki",[10979]="Scarlet Hound",[10980]="Umi's Mechanical Yeti",[10981]="Frostwolf",[10982]="Whitewhisker Vermin",[10986]="Snowblind Harpy",[10987]="Irondeep Trogg",[10988]="Kodo Spirit",[10990]="Alterac Ram",[10991]="Wildpaw Gnoll",[10992]="Enraged Panther",[10993]="Twizwick Sprocketgrind",[10996]="Fallen Hero",[10997]="Cannon Master Willey",[11016]="Captured Arko'narin",[11017]="Roxxik",[11018]="Arko'narin",[11019]="Jessir Moonbow",[11020]="Remains of Trey Lightforge",[11021]="Winterspring Frostsaber",[11022]="Alexi Barov",[11023]="Weldon Barov",[11024]="Della",[11025]="Mukdrak",[11026]="Sprite Jumpsprocket",[11027]="Illusory Wraith",[11028]="Jemma Quikswitch",[11029]="Trixie Quikswitch",[11030]="Mindless Undead",[11031]="Franklin Lloyd",[11032]="Commander Malor",[11033]="Smokey LaRue",[11034]="Lord Maxwell Tyrosus",[11035]="Betina Bigglezink",[11036]="Leonid Barthalomew the Revered",[11037]="Jenna Lemkenilli",[11038]="Caretaker Alen",[11039]="Duke Nicholas Zverenhoff",[11040]="Watcher Brownell",[11041]="Milla Fairancora",[11042]="Sylvanna Forestmoon",[11043]="Crimson Monk",[11044]="Doctor Martin Felben",[11046]="Whuut",[11047]="Kray",[11048]="Victor Ward",[11049]="Rhiannon Davis",[11050]="Trianna",[11051]="Vhan",[11052]="Timothy Worthington",[11053]="High Priestess MacDonnell",[11054]="Crimson Rifleman",[11055]="Shadow Priestess Vandis",[11056]="Alchemist Arbington",[11057]="Apothecary Dithers",[11058]="Fras Siabi",[11063]="Carlin Redpath",[11064]="Darrowshire Spirit",[11065]="Thonys Pillarstone",[11066]="Jhag",[11067]="Malcomb Wynn",[11068]="Betty Quin",[11069]="Jenova Stoneshield",[11070]="Lalina Summermoon",[11071]="Mot Dawnstrider",[11072]="Kitta Firewind",[11073]="Annora",[11074]="Hgarth",[11075]="Cauldron Lord Bilemaw",[11076]="Cauldron Lord Razarch",[11077]="Cauldron Lord Malvinious",[11078]="Cauldron Lord Soulwrath",[11079]="Wynd Nightchaser",[11081]="Faldron",[11082]="Stratholme Courier",[11083]="Darianna",[11084]="Tarn",[11096]="Randal Worth",[11097]="Drakk Stonehand",[11098]="Hahrana Ironhide",[11099]="Argent Guard",[11100]="Mana Tide Totem II",[11101]="Mana Tide Totem III",[11102]="Argent Rider",[11103]="Innkeeper Lyshaerya",[11104]="Shelgrayn",[11105]="Aboda",[11106]="Innkeeper Sikewa",[11116]="Innkeeper Abeqwa",[11117]="Awenasa",[11118]="Innkeeper Vizzie",[11119]="Azzleby",[11120]="Risen Hammersmith",[11121]="Black Guard Swordsmith",[11122]="Restless Soul",[11136]="Freed Soul",[11137]="Xai'ander",[11138]="Maethrya",[11139]="Yugrek",[11140]="Egan",[11141]="Spirit of Trey Lightforge",[11142]="Undead Postman",[11143]="Postmaster Malown",[11145]="Myolor Sunderfury",[11146]="Ironus Coldsteel",[11147]="Green Mechanostrider",[11152]="The Scourge Cauldron",[11153]="Red Skeletal Horse",[11154]="Blue Skeletal Horse",[11155]="Brown Skeletal Horse",[11156]="Green Skeletal Warhorse",[11176]="Krathok Moltenfist",[11177]="Okothos Ironrager",[11178]="Borgosh Corebender",[11180]="Bloodvenom Post Brave",[11181]="Shi'alune",[11182]="Nixxrak",[11183]="Blixxrak",[11184]="Wixxrak",[11185]="Xizzer Fizzbolt",[11186]="Lunnix Sprocketslip",[11187]="Himmik",[11188]="Evie Whirlbrew",[11189]="Qia",[11190]="Everlook Bruiser",[11191]="Lilith the Lithe",[11192]="Kilram",[11193]="Seril Scourgebane",[11194]="Argent Defender",[11196]="Shatterspear Drummer",[11197]="Mindless Skeleton",[11198]="Broken Exile",[11199]="Crimson Cannon",[11200]="Summoned Skeleton",[11216]="Eva Sarkhoff",[11217]="Lucien Sarkhoff",[11218]="Kerlonian Evershade",[11219]="Liladris Moonriver",[11236]="Blood Parrot",[11256]="Manifestation of Water",[11257]="Scholomance Handler",[11258]="Frail Skeleton",[11259]="Nataka Longhorn",[11260]="Northshire Peasant",[11261]="Doctor Theolen Krastinov",[11262]="Onyxian Whelp",[11263]="Spectral Projection",[11276]="Azshara Sentinel",[11277]="Caer Darrow Citizen",[11278]="Magnus Frostwake",[11279]="Caer Darrow Guardsman",[11280]="Caer Darrow Cannoneer",[11281]="Caer Darrow Horseman",[11282]="Melia",[11283]="Sammy",[11284]="Dark Shade",[11285]="Rory",[11286]="Magistrate Marduke",[11287]="Baker Masterson",[11288]="Spectral Betrayer",[11289]="Spectral Defender",[11290]="Mossflayer Zombie",[11291]="Unliving Mossflayer",[11296]="Darrowshire Poltergeist",[11316]="Joseph Dirte",[11317]="Jinar'Zillen",[11318]="Ragefire Trogg",[11319]="Ragefire Shaman",[11320]="Earthborer",[11321]="Molten Elemental",[11322]="Searing Blade Cultist",[11323]="Searing Blade Enforcer",[11324]="Searing Blade Warlock",[11325]="Panda Cub",[11326]="Mini Diablo",[11327]="Zergling",[11328]="Eastvale Peasant",[11338]="Hakkari Shadowcaster",[11339]="Hakkari Shadow Hunter",[11340]="Hakkari Blood Priest",[11346]="Hakkari Oracle",[11347]="Zealot Lor'Khan",[11348]="Zealot Zath",[11350]="Gurubashi Axe Thrower",[11351]="Gurubashi Headhunter",[11352]="Gurubashi Berserker",[11353]="Gurubashi Blood Drinker",[11355]="Gurubashi Warrior",[11356]="Gurubashi Champion",[11357]="Son of Hakkar",[11359]="Soulflayer",[11360]="Zulian Cub",[11361]="Zulian Tiger",[11365]="Zulian Panther",[11368]="Bloodseeker Bat",[11370]="Razzashi Broodwidow",[11371]="Razzashi Serpent",[11372]="Razzashi Adder",[11373]="Razzashi Cobra",[11374]="Hooktooth Frenzy",[11378]="Foreman Thazz'ril",[11380]="Jin'do the Hexxer",[11382]="Bloodlord Mandokir",[11383]="High Priestess Hai'watna",[11387]="Sandfury Speaker",[11388]="Witherbark Speaker",[11389]="Bloodscalp Speaker",[11390]="Skullsplitter Speaker",[11391]="Vilebranch Speaker",[11397]="Nara Meideros",[11401]="Priestess Alathea",[11406]="High Priest Rohan",[11407]="Var'jun",[11438]="Bibbly F'utzbuckle",[11439]="Illusion of Jandice Barov",[11440]="Gordok Enforcer",[11441]="Gordok Brute",[11442]="Gordok Mauler",[11443]="Gordok Ogre-Mage",[11444]="Gordok Mage-Lord",[11445]="Gordok Captain",[11446]="Gordok Spirit",[11447]="Mushgog",[11448]="Gordok Warlock",[11450]="Gordok Reaver",[11451]="Wildspawn Satyr",[11452]="Wildspawn Rogue",[11453]="Wildspawn Trickster",[11454]="Wildspawn Betrayer",[11455]="Wildspawn Felsworn",[11456]="Wildspawn Shadowstalker",[11457]="Wildspawn Hellcaller",[11458]="Petrified Treant",[11459]="Ironbark Protector",[11460]="Alzzin's Minion",[11461]="Warpwood Guardian",[11462]="Warpwood Treant",[11464]="Warpwood Tangler",[11465]="Warpwood Stomper",[11466]="Highborne Summoner",[11467]="Tsu'zee",[11469]="Eldreth Seether",[11470]="Eldreth Sorcerer",[11471]="Eldreth Apparition",[11472]="Eldreth Spirit",[11473]="Eldreth Spectre",[11475]="Eldreth Phantasm",[11476]="Skeletal Highborne",[11477]="Rotting Highborne",[11480]="Arcane Aberration",[11483]="Mana Remnant",[11484]="Residual Monstrosity",[11486]="Prince Tortheldrin",[11487]="Magister Kalendris",[11488]="Illyanna Ravenoak",[11489]="Tendris Warpwood",[11490]="Zevrim Thornhoof",[11491]="Old Ironbark",[11492]="Alzzin the Wildshaper",[11496]="Immol'thar",[11497]="The Razza",[11498]="Skarr the Broken",[11499]="[UNUSED] Commander Gormaul",[11501]="King Gordok",[11502]="Ragnaros",[11516]="Timbermaw Warder",[11517]="Oggleflint",[11518]="Jergosh the Invoker",[11519]="Bazzalan",[11520]="Taragaman the Hungerer",[11521]="Kodo Apparition",[11536]="Quartermaster Miranda Breechlock",[11537]="TEST GEAR PALADIN",[11538]="TEST GEAR WARRIOR",[11539]="TEST GEAR HUNTER",[11540]="TEST GEAR MAGE",[11541]="TEST GEAR WARLOCK",[11542]="TEST GEAR DRUID",[11543]="TEST GEAR SHAMAN",[11544]="TEST GEAR PRIEST",[11545]="TEST GEAR ROGUE",[11546]="Jack Sterling",[11548]="Loh'atu",[11551]="Necrofiend",[11552]="Timbermaw Mystic",[11553]="Timbermaw Woodbender",[11554]="Grazle",[11555]="Gorn One Eye",[11556]="Salfa",[11557]="Meilosh",[11558]="Kernda",[11559]="Outcast Necromancer",[11560]="Magrami Spectre",[11561]="Undead Ravager",[11562]="Drysnap Crawler",[11563]="Drysnap Pincer",[11564]="Gizelton Caravan Kodo",[11576]="Whirlwind Ripper",[11577]="Whirlwind Stormwalker",[11578]="Whirlwind Shredder",[11582]="Scholomance Dark Summoner",[11583]="Nefarian",[11596]="Smeed Scrabblescrew",[11598]="Risen Guardian",[11600]="Irondeep Shaman",[11602]="Irondeep Skullthumper",[11603]="Whitewhisker Digger",[11604]="Whitewhisker Geomancer",[11605]="Whitewhisker Overseer",[11608]="Bardu Sharpeye",[11609]="Alexia Ironknife",[11610]="Kirsta Deepshadow",[11611]="Cavalier Durgen",[11613]="Huntsman Radley",[11614]="Bloodshot",[11615]="Mickey Levine",[11616]="Nathaniel Dumah",[11620]="Spectral Marauder",[11621]="Spectral Corpse",[11622]="Rattlegore",[11623]="Scourge Summoning Crystal",[11624]="Taiga Wisemane",[11625]="Cork Gizelton",[11626]="Rigger Gizelton",[11627]="Tamed Kodo",[11629]="Jessica Redpath",[11636]="Servant of Weldon Barov",[11637]="Servant of Alexi Barov",[11656]="Warsong Peon",[11657]="Morloch",[11658]="Molten Giant",[11659]="Molten Destroyer",[11661]="Flamewaker",[11662]="Flamewaker Priest",[11663]="Flamewaker Healer",[11664]="Flamewaker Elite",[11665]="Lava Annihilator",[11666]="Firewalker",[11667]="Flameguard",[11668]="Firelord",[11669]="Flame Imp",[11671]="Core Hound",[11672]="Core Rager",[11673]="Core Hound",[11675]="Snowblind Windcaller",[11677]="Taskmaster Snivvle",[11678]="Snowblind Ambusher",[11680]="Horde Scout",[11681]="Warsong Logger",[11682]="Warsong Grunt",[11683]="Warsong Shaman",[11684]="Goblin Deforester",[11685]="Maraudine Priest",[11686]="Ghostly Raider",[11687]="Ghostly Marauder",[11688]="Cursed Centaur",[11689]="Brown Kodo",[11690]="Gnarlpine Instigator",[11696]="Chal Fairwind",[11697]="Mannoroc Lasher",[11698]="Hive'Ashi Stinger",[11699]="Varian Wrynn",[11700]="Sarin Starlight",[11701]="Mor'vek",[11702]="Arin'sor",[11703]="Graw Cornerstone",[11704]="Kriss Goldenlight",[11705]="Rayan Dawnrisen",[11706]="Adon",[11707]="Joy Ar'nareth",[11708]="Coral Moongale",[11709]="Jareth Wildwoods",[11710]="Mirador",[11711]="Sentinel Aynasha",[11712]="Lilyn Darkriver",[11713]="Blackwood Tracker",[11714]="Marosh the Devious",[11715]="Talendria",[11716]="Celes Earthborne",[11717]="Bethan Bluewater",[11718]="Sar Browneye",[11720]="Loruk Foreststrider",[11721]="Hive'Ashi Worker",[11722]="Hive'Ashi Defender",[11723]="Hive'Ashi Sandstalker",[11724]="Hive'Ashi Swarmer",[11725]="Hive'Zora Waywatcher",[11726]="Hive'Zora Tunneler",[11727]="Hive'Zora Wasp",[11728]="Hive'Zora Reaver",[11729]="Hive'Zora Hive Sister",[11730]="Hive'Regal Ambusher",[11731]="Hive'Regal Burrower",[11732]="Hive'Regal Spitfire",[11733]="Hive'Regal Slavemaker",[11734]="Hive'Regal Hive Lord",[11735]="Stonelash Scorpid",[11736]="Stonelash Pincer",[11737]="Stonelash Flayer",[11738]="Sand Skitterer",[11739]="Rock Stalker",[11740]="Dredge Striker",[11741]="Dredge Crusher",[11744]="Dust Stormer",[11745]="Cyclone Warrior",[11746]="Desert Rumbler",[11747]="Desert Rager",[11748]="Samantha Swifthoof",[11749]="Feran Strongwind",[11750]="Ganoosh",[11751]="Rilan Howard",[11752]="Blaise Montgomery",[11753]="Gogo",[11754]="Meggi Peppinrocker",[11755]="Harlo Wigglesworth",[11756]="Quinn",[11757]="Umaron Stragarelm",[11758]="Andi Lynn",[11776]="Salome",[11777]="Shadowshard Rumbler",[11778]="Shadowshard Smasher",[11781]="Ambershard Crusher",[11782]="Ambershard Destroyer",[11783]="Theradrim Shardling",[11784]="Theradrim Guardian",[11785]="Ambereye Basilisk",[11786]="Ambereye Reaver",[11787]="Rock Borer",[11788]="Rock Worm",[11789]="Deep Borer",[11790]="Putridus Satyr",[11791]="Putridus Trickster",[11792]="Putridus Shadowstalker",[11793]="Celebrian Dryad",[11794]="Sister of Celebras",[11795]="Mylentha Riverbend",[11796]="Bessany Plainswind",[11797]="Moren Riverbend",[11798]="Bunthen Plainswind",[11799]="Tajarri",[11800]="Silva Fil'naveth",[11801]="Rabine Saturna",[11802]="Dendrite Starblaze",[11803]="Twilight Keeper Exeter",[11804]="Twilight Keeper Havunth",[11805]="Jarund Stoutstrider",[11806]="Sentinel Onaeya",[11807]="Tristane Shadowstone",[11808]="Grum Redbeard",[11810]="Howin Kindfeather",[11811]="Narain Soothfancy",[11812]="Claira Kindfeather",[11813]="Kerr Ironsight",[11814]="Kali Remik",[11815]="Voriya",[11816]="Una Ji'ro",[11817]="Krah'ranik",[11818]="Orik'ando",[11819]="Jory Zaga",[11820]="Locke Okarr",[11821]="Darn Talongrip",[11822]="Moonglade Warden",[11823]="Vark Battlescar",[11824]="Erik Felixe",[11825]="Paige Felixe",[11826]="Kristy Grant",[11827]="Kimberly Grant",[11828]="Kelly Grant",[11829]="Fahrak",[11830]="Hakkari Priest",[11831]="Hakkari Witch Doctor",[11832]="Keeper Remulos",[11833]="Rahauro",[11834]="Maur Grimtotem",[11835]="Theodore Griffs",[11836]="Captured Rabid Thistle Bear",[11837]="Wildpaw Shaman",[11838]="Wildpaw Mystic",[11839]="Wildpaw Brute",[11840]="Wildpaw Alpha",[11856]="Kaya Flathoof",[11857]="Makaba Flathoof",[11858]="Grundig Darkcloud",[11859]="Doomguard",[11860]="Maggran Earthbinder",[11861]="Mor'rogal",[11862]="Tsunaman",[11863]="Azore Aldamort",[11864]="Tammra Windfield",[11865]="Buliwyf Stonehand",[11866]="Ilyenia Moonfire",[11867]="Woo Ping",[11868]="Sayoc",[11869]="Ansekhwa",[11870]="Archibald",[11871]="Grinning Dog",[11872]="Myranda the Hag",[11873]="Spectral Attendant",[11874]="Masat T'andr",[11875]="Mortar Team Target Dummy",[11876]="Fel Spirit",[11877]="Roon Wildmane",[11878]="Nathanos Blightcaller",[11880]="Twilight Avenger",[11881]="Twilight Geolord",[11882]="Twilight Stonecaller",[11883]="Twilight Master",[11884]="Obi",[11885]="Blighthound",[11886]="Mercutio Filthgorger",[11887]="Crypt Robber",[11896]="Borelgore",[11897]="Duskwing",[11898]="Crusader Lord Valdelmar",[11899]="Shardi",[11900]="Brakkar",[11901]="Andruk",[11910]="Grimtotem Ruffian",[11911]="Grimtotem Mercenary",[11912]="Grimtotem Brute",[11913]="Grimtotem Sorcerer",[11914]="Gorehoof the Black",[11915]="Boulderslide Rock Keeper",[11916]="Imelda",[11917]="Boulderslide Geomancer",[11918]="Boulderslide Stonepounder",[11920]="Goggeroc",[11921]="Besseleth",[11936]="Artist Renfray",[11937]="Demon Portal Guardian",[11939]="Umber",[11940]="Merissa Stilwell",[11941]="Yori Crackhelm",[11942]="Orenthil Whisperwind",[11943]="Magga",[11944]="Vorn Skyseer",[11945]="Claire Willower",[11946]="Drek'Thar",[11947]="Captain Galvangar",[11948]="Vanndar Stormpike",[11949]="Captain Balinda Stonehearth",[11956]="Great Bear Spirit",[11957]="Great Cat Spirit",[11979]="Kim Bridenbecker",[11980]="Zuluhed the Whacked",[11981]="Flamegor",[11982]="Magmadar",[11983]="Firemaw",[11988]="Golemagg the Incinerator",[11994]="Rob Bridenbecker",[11996]="Ashley Bridenbecker",[11997]="Stormpike Herald",[11998]="Frostwolf Herald",[12017]="Broodlord Lashlayer",[12018]="Majordomo Executus",[12019]="Dargon",[12021]="Daeolyn Summerleaf",[12022]="Lorelae Wintersong",[12023]="Kharedon",[12024]="Meliri",[12025]="Malvor",[12026]="My'lanna",[12027]="Tukk",[12028]="Lah'Mawhani",[12029]="Narianna",[12030]="Malux",[12031]="Mai'Lahii",[12032]="Lui'Mala",[12033]="Wulan",[12034]="Koiter",[12036]="Grella Stonefist",[12037]="Ursol'lok",[12040]="Brannik Ironbelly",[12042]="Loganaar",[12043]="Kulwia",[12045]="Hae'Wilani",[12046]="Gor'marok the Ravager",[12047]="Stormpike Mountaineer",[12048]="Alliance Sentinel",[12050]="Stormpike Defender",[12051]="Frostwolf Legionnaire",[12052]="Frostwolf Warrior",[12053]="Frostwolf Guardian",[12056]="Baron Geddon",[12057]="Garr",[12076]="Magma Elemental",[12096]="Stormpike Quartermaster",[12097]="Frostwolf Quartermaster",[12098]="Sulfuron Harbinger",[12099]="Firesworn",[12100]="Lava Reaver",[12101]="Lava Surger",[12116]="Priestess of Elune",[12118]="Lucifron",[12119]="Flamewaker Protector",[12120]="Plagueland Termite",[12121]="Drakan",[12122]="Duros",[12123]="Reef Shark",[12124]="Great Shark",[12125]="Mammoth Shark",[12126]="Lord Tirion Fordring",[12127]="Stormpike Guardsman",[12128]="Crimson Elite",[12129]="Onyxian Warder",[12136]="Snurk Bucksquick",[12137]="Squibby Overspeck",[12138]="Lunaclaw",[12140]="Guardian of Elune",[12141]="Ice Totem",[12143]="Son of Flame",[12144]="Lunaclaw Spirit",[12148]="Riding Kodo (Teal)",[12149]="Gray Kodo",[12150]="Riding Kodo (Purple)",[12151]="Riding Kodo (Green)",[12152]="Voice of Elune",[12159]="Korrak the Bloodrager",[12160]="Shadowglen Sentinel",[12178]="Tortured Druid",[12179]="Tortured Sentinel",[12196]="Innkeeper Kaylisk",[12197]="Glordrum Steelbeard",[12198]="Martin Lindsey",[12199]="Shade of Ambermoon",[12201]="Princess Theradras",[12202]="Human Skull",[12203]="Landslide",[12204]="Spitelash Raider",[12205]="Spitelash Witch",[12206]="Primordial Behemoth",[12207]="Thessala Hydra",[12208]="Conquered Soul of the Blightcaller",[12216]="Poison Sprite",[12217]="Corruptor",[12218]="Vile Larva",[12219]="Barbed Lasher",[12220]="Constrictor Vine",[12221]="Noxious Slime",[12222]="Creeping Sludge",[12223]="Cavern Lurker",[12224]="Cavern Shambler",[12225]="Celebras the Cursed",[12236]="Lord Vyletongue",[12237]="Meshlok the Harvester",[12238]="Zaetar's Spirit",[12239]="Spirit of Gelk",[12240]="Spirit of Kolk",[12241]="Spirit of Magra",[12242]="Spirit of Maraudos",[12243]="Spirit of Veng",[12244]="Mark of Detonation (NW)",[12245]="Vendor-Tron 1000",[12246]="Super-Seller 680",[12247]="Scourge Structure",[12248]="Infiltrator Hameya",[12249]="Mark of Detonation (SW)",[12250]="Zaeldarr the Outcast",[12251]="Mark of Detonation (CLS)",[12252]="Mark of Detonation (CRS)",[12253]="Mark of Detonation (CSH)",[12254]="Mark of Detonation (NESH)",[12255]="Mark of Detonation (NE)",[12256]="Mark of Detonation (SE)",[12257]="Mechanical Yeti",[12258]="Razorlash",[12259]="Gehennas",[12261]="Infected Mossflayer",[12262]="Ziggurat Protector",[12263]="Slaughterhouse Protector",[12264]="Shazzrah",[12265]="Lava Spawn",[12277]="Melizza Brimbuzzle",[12296]="Sickly Gazelle",[12297]="Cured Gazelle",[12298]="Sickly Deer",[12299]="Cured Deer",[12319]="Burning Blade Toxicologist",[12320]="Burning Blade Crusher",[12321]="Stormscale Toxicologist",[12322]="Quel'Lithien Protector",[12336]="Brother Crowley",[12337]="Crimson Courier",[12338]="Shadowprey Guardian",[12339]="Demetria",[12340]="Drulzegar Skraghook",[12344]="Green Skeletal War Horse",[12346]="Emerald Riding Raptor",[12347]="Enraged Reef Crawler",[12348]="Ivory Raptor",[12349]="Turquoise Riding Raptor",[12350]="Violet Riding Raptor",[12351]="Dire Riding Wolf",[12352]="Scarlet Cavalier",[12353]="Timber Riding Wolf",[12354]="Brown Riding Kodo",[12355]="Gray Riding Kodo",[12358]="Riding Striped Frostsaber",[12359]="Riding Spotted Frostsaber",[12360]="Riding Striped Nightsaber",[12361]="Riding Nightsaber",[12362]="Riding Frostsaber",[12364]="Icy Blue Mechanostrider Mod A",[12366]="Unpainted Mechanostrider X",[12368]="White Mechanostrider Mod A",[12369]="Lord Kragaru",[12370]="Black Ram",[12371]="Frost Ram",[12374]="White Riding Ram Mount",[12377]="Wailing Spectre",[12378]="Damned Soul",[12379]="Unliving Caretaker",[12380]="Unliving Resident",[12381]="Ley Sprite",[12382]="Mana Sprite",[12383]="Nibbles",[12384]="Augustus the Touched",[12385]="Mortar Team Advanced Target Dummy",[12387]="Large Vile Slime",[12396]="Doomguard Commander",[12397]="Lord Kazzak",[12416]="Blackwing Legionnaire",[12418]="Gordok Hyena",[12419]="Lifelike Toad",[12420]="Blackwing Mage",[12422]="Death Talon Dragonspawn",[12423]="Guard Roberts",[12425]="Flint Shadowmore",[12426]="Masterwork Target Dummy",[12427]="Mountaineer Dolf",[12428]="Deathguard Kel",[12429]="Sentinel Shaya",[12430]="Grunt Kor'ja",[12431]="Gorefang",[12432]="Old Vicejaw",[12433]="Krethis the Shadowspinner",[12434]="Monster Generator (Blackwing)",[12435]="Razorgore the Untamed",[12457]="Blackwing Spellbinder",[12458]="Blackwing Taskmaster",[12459]="Blackwing Warlock",[12460]="Death Talon Wyrmguard",[12461]="Death Talon Overseer",[12463]="Death Talon Flamescale",[12464]="Death Talon Seether",[12465]="Death Talon Wyrmkin",[12467]="Death Talon Captain",[12468]="Death Talon Hatcher",[12473]="Arcanite Dragonling",[12474]="Emeraldon Boughguard",[12475]="Emeraldon Tree Warder",[12476]="Emeraldon Oracle",[12477]="Verdantine Boughguard",[12478]="Verdantine Oracle",[12479]="Verdantine Tree Warder",[12480]="Melris Malagan",[12481]="Justine Demalier",[12496]="Dreamtracker",[12497]="Dreamroarer",[12498]="Dreamstalker",[12557]="Grethok the Controller",[12576]="Grish Longrunner",[12577]="Jarrodenus",[12578]="Mishellena",[12579]="Bloodfury Ripper",[12580]="Reginald Windsor",[12581]="Mercutio",[12596]="Bibilfaz Featherwhistle",[12616]="Vhulgra",[12617]="Khaelyn Steelwing",[12636]="Georgia",[12656]="Thamarian",[12657]="Don Pompa",[12658]="Adam Lind",[12676]="Sharptalon",[12677]="Shadumbra",[12678]="Ursangous",[12696]="Senani Thunderheart",[12716]="Decedra Willham",[12717]="Muglash",[12718]="Gurda Ragescar",[12719]="Marukai",[12720]="Framnali",[12721]="Mitsuwa",[12722]="Vera Nightshade",[12723]="Har'alen",[12724]="Pixel",[12736]="Je'neu Sancrea",[12737]="Mastok Wrilehiss",[12738]="Nori Pridedrift",[12739]="Onyxia's Elite Guard",[12740]="Faustron",[12756]="Lady Onyxia",[12757]="Karang Amakkar",[12758]="Onyxia Trigger",[12759]="Tideress",[12776]="Hraug",[12777]="Captain Dirgehammer",[12778]="Lieutenant Rachel Vaccar",[12779]="Archmage Gaiman",[12780]="Sergeant Major Skyshadow",[12781]="Master Sergeant Biggins",[12782]="Captain O'Neal",[12783]="Lieutenant Karter",[12784]="Lieutenant Jackspring",[12785]="Sergeant Major Clate",[12786]="Guard Quine",[12787]="Guard Hammon",[12788]="Legionnaire Teena",[12789]="Blood Guard Hini'wana",[12790]="Advisor Willington",[12791]="Chieftain Earthbind",[12792]="Lady Palanseer",[12793]="Brave Stonehide",[12794]="Stone Guard Zarg",[12795]="First Sergeant Hola'mahi",[12796]="Raider Bork",[12797]="Grunt Korf",[12798]="Grunt Bek'rah",[12799]="Sergeant Ba'sha",[12800]="Chimaerok",[12801]="Arcane Chimaerok",[12802]="Chimaerok Devourer",[12803]="Lord Lakmaeran",[12805]="Officer Areyn",[12806]="Magmakin",[12807]="Greshka",[12816]="Xen'Zilla",[12818]="Ruul Snowhoof",[12836]="Wandering Protector",[12837]="Yama Snowhoof",[12856]="Ashenvale Outrunner",[12858]="Torek",[12859]="Splintertree Raider",[12860]="Duriel Moonfire",[12862]="Warsong Scout",[12863]="Warsong Runner",[12864]="Warsong Outrider",[12865]="Ambassador Malcin",[12866]="Myriam Moonsinger",[12867]="Kuray'bin",[12876]="Baron Aquanis",[12877]="Ertog Ragetusk",[12896]="Silverwing Sentinel",[12897]="Silverwing Warrior",[12898]="Phantim Illusion",[12899]="Axtroz",[12900]="Somnus",[12902]="Lorgus Jett",[12903]="Splintertree Guard",[12918]="Chief Murgut",[12919]="Nat Pagle",[12920]="Doctor Gregory Victor",[12921]="Enraged Foulweald",[12922]="Imp Minion",[12923]="Wounded Soldier",[12924]="Badly Injured Soldier",[12925]="Critically Injured Soldier",[12936]="Badly Injured Alliance Soldier",[12937]="Critically Injured Alliance Soldier",[12938]="Injured Alliance Soldier",[12939]="Doctor Gustaf VanHowzen",[12940]="Vorsha the Lasher",[12941]="Jase Farlane",[12942]="Leonard Porter",[12943]="Werg Thickblade",[12944]="Lokhtos Darkbargainer",[12956]="Zannok Hidepiercer",[12957]="Blimo Gadgetspring",[12958]="Gigget Zipcoil",[12959]="Nergal",[12960]="Christi Galvanis",[12961]="Kil'Hiwana",[12962]="Wik'Tar",[12976]="Kolkar Waylayer",[12977]="Kolkar Ambusher",[12996]="Mounted Ironforge Mountaineer",[12997]="Monty",[12998]="Dwarven Farmer",[12999]="World Invisible Trigger",[13000]="Gnome Engineer",[13016]="Deeprun Rat",[13017]="Enthralled Deeprun Rat",[13018]="Nipsy",[13019]="Burning Blade Seer",[13020]="Vaelastrasz the Corrupt",[13021]="Warpwood Crusher",[13022]="Whip Lasher",[13036]="Gordok Mastiff",[13076]="Dun Morogh Mountaineer",[13078]="Umi Thorson",[13079]="Keetar",[13080]="Irondeep Guard",[13081]="Irondeep Raider",[13082]="Milton Beats",[13084]="Bixi Wobblebonk",[13085]="Myrokos Silentform",[13086]="Aggi Rumblestomp",[13087]="Coldmine Invader",[13088]="Masha Swiftcut",[13089]="Coldmine Guard",[13096]="Coldmine Explorer",[13097]="Coldmine Surveyor",[13098]="Irondeep Surveyor",[13099]="Irondeep Explorer",[13116]="Alliance Spirit Guide",[13117]="Horde Spirit Guide",[13118]="Crimson Bodyguard",[13136]="Hive'Ashi Drone",[13137]="Lieutenant Rugba",[13138]="Lieutenant Spencer",[13139]="Commander Randolph",[13140]="Commander Dardosh",[13141]="Deeprot Stomper",[13142]="Deeprot Tangler",[13143]="Lieutenant Stronghoof",[13144]="Lieutenant Vol'talar",[13145]="Lieutenant Grummus",[13146]="Lieutenant Murp",[13147]="Lieutenant Lewis",[13148]="Flame of Ragnaros",[13152]="Commander Malgor",[13153]="Commander Mulfort",[13154]="Commander Louis Philips",[13157]="Makasgar",[13158]="Lieutenant Sanders",[13159]="James Clark",[13160]="Carrion Swarmer",[13161]="Aerie Gryphon",[13176]="Smith Regzar",[13177]="Vahgruk",[13178]="War Rider",[13179]="Wing Commander Guse",[13180]="Wing Commander Jeztor",[13181]="Wing Commander Mulverick",[13196]="Phase Lasher",[13197]="Fel Lash",[13216]="Gaelden Hammersmith",[13217]="Thanthaldis Snowgleam",[13218]="Grunnda Wolfheart",[13219]="Jorek Ironside",[13220]="Layo Starstrike",[13236]="Primalist Thurloga",[13256]="Lokholar the Ice Lord",[13257]="Murgot Deepforge",[13276]="Wildspawn Imp",[13277]="Dahne Pierce",[13278]="Duke Hydraxis",[13279]="Discordant Surge",[13280]="Hydrospawn",[13282]="Noxxion",[13283]="Lord Tony Romano",[13284]="Frostwolf Shaman",[13285]="Death Lash",[13296]="Lieutenant Largent",[13297]="Lieutenant Stouthandle",[13298]="Lieutenant Greywand",[13299]="Lieutenant Lonadin",[13300]="Lieutenant Mancuso",[13301]="Hive'Ashi Ambusher",[13316]="Coldmine Peon",[13317]="Coldmine Miner",[13318]="Commander Mortimer",[13319]="Commander Duffy",[13320]="Commander Karl Philips",[13321]="Small Frog",[13322]="Hydraxian Honor Guard",[13323]="Subterranean Diemetradon",[13324]="Seasoned Guardsman",[13325]="Seasoned Mountaineer",[13326]="Seasoned Defender",[13327]="Seasoned Sentinel",[13328]="Seasoned Guardian",[13329]="Seasoned Legionnaire",[13330]="Seasoned Warrior",[13331]="Veteran Defender",[13332]="Veteran Guardian",[13333]="Veteran Guardsman",[13334]="Veteran Legionnaire",[13335]="Veteran Mountaineer",[13336]="Veteran Sentinel",[13337]="Veteran Warrior",[13338]="Core Rat",[13358]="Stormpike Bowman",[13359]="Frostwolf Bowman",[13378]="Frostwolf Shredder Unit",[13396]="Irondeep Miner",[13397]="Irondeep Peon",[13416]="Stormpike Shredder Unit",[13417]="Sagorne Creststrider",[13418]="Kaymard Copperpinch",[13419]="Ivus the Forest Lord",[13420]="Penney Copperpinch",[13421]="Champion Guardian",[13422]="Champion Defender",[13424]="Champion Guardsman",[13425]="Champion Legionnaire",[13426]="Champion Mountaineer",[13427]="Champion Sentinel",[13429]="Nardstrum Copperpinch",[13430]="Jaycrue Copperpinch",[13431]="Whulwert Copperpinch",[13432]="Seersa Copperpinch",[13433]="Wulmort Jinglepocket",[13434]="Macey Jinglepocket",[13435]="Khole Jinglepocket",[13436]="Guchie Jinglepocket",[13437]="Wing Commander Ichman",[13438]="Wing Commander Slidore",[13439]="Wing Commander Vipore",[13440]="Frostwolf Wolf Rider",[13441]="Frostwolf Wolf Rider Commander",[13442]="Arch Druid Renferal",[13443]="Druid of the Grove",[13444]="Greatfather Winter",[13445]="Great-father Winter",[13446]="Field Marshal Teravaine",[13447]="Corporal Noreg Stormpike",[13448]="Sergeant Yazra Bloodsnarl",[13449]="Warmaster Garrick",[13456]="Noxxion's Spawn",[13476]="Zen'Balai",[13524]="Stormpike Commando",[13525]="Seasoned Commando",[13526]="Veteran Commando",[13527]="Champion Commando",[13529]="Seasoned Reaver",[13530]="Veteran Reaver",[13531]="Champion Reaver",[13533]="Spewed Larva",[13534]="Seasoned Coldmine Guard",[13535]="Veteran Coldmine Guard",[13536]="Champion Coldmine Guard",[13537]="Seasoned Coldmine Surveyor",[13538]="Veteran Coldmine Surveyor",[13539]="Champion Coldmine Surveyor",[13540]="Seasoned Irondeep Explorer",[13541]="Veteran Irondeep Explorer",[13542]="Champion Irondeep Explorer",[13543]="Seasoned Irondeep Raider",[13544]="Veteran Irondeep Raider",[13545]="Champion Irondeep Raider",[13546]="Seasoned Coldmine Explorer",[13547]="Veteran Coldmine Explorer",[13548]="Champion Coldmine Explorer",[13549]="Seasoned Coldmine Invader",[13550]="Veteran Coldmine Invader",[13551]="Champion Coldmine Invader",[13552]="Seasoned Irondeep Guard",[13553]="Veteran Irondeep Guard",[13554]="Champion Irondeep Guard",[13555]="Seasoned Irondeep Surveyor",[13556]="Veteran Irondeep Surveyor",[13557]="Champion Irondeep Surveyor",[13576]="Stormpike Ram Rider",[13577]="Stormpike Ram Rider Commander",[13596]="Rotgrip",[13597]="Frostwolf Explosives Expert",[13598]="Stormpike Explosives Expert",[13599]="Stolid Snapjaw",[13601]="Tinkerer Gizlock",[13602]="The Abominable Greench",[13616]="Frostwolf Stable Master",[13617]="Stormpike Stable Master",[13618]="Stabled Frostwolf",[13636]="Strange Snowman",[13656]="Willow",[13696]="Noxxious Scion",[13697]="Cavindra",[13698]="Keeper Marandis",[13699]="Selendra",[13716]="Celebras the Redeemed",[13717]="Centaur Pariah",[13718]="The Nameless Prophet",[13736]="Noxxious Essence",[13737]="Marandis' Sister",[13738]="Veng",[13739]="Maraudos",[13740]="Magra",[13741]="Gelk",[13742]="Kolk",[13743]="Corrupt Force of Nature",[13756]="PvP Graveyard Credit Marker",[13776]="Corporal Teeka Bloodsnarl",[13777]="Sergeant Durgen Stormpike",[13778]="PvP Tower Credit Marker",[13796]="PvP Mine Credit Marker",[13797]="Mountaineer Boombellow",[13798]="Jotek",[13816]="Prospector Stonehewer",[13817]="Voggah Deathgrip",[13836]="Burning Blade Nightmare",[13837]="Captured Stallion",[13839]="Royal Dreadguard",[13840]="Warmaster Laggrond",[13841]="Lieutenant Haggerdin",[13842]="Frostwolf Ambassador Rokhstrom",[13843]="Lieutenant Rotimer",[13876]="Mekgineer Trigger",[13896]="Scalebeard",[13916]="Dire Maul Crystal Totem",[13917]="Izzy Coppergrab",[13936]="Ravenholdt",[13959]="Alterac Yeti",[13976]="Tortured Drake",[13996]="Blackwing Technician",[14020]="Chromaggus",[14022]="Corrupted Red Whelp",[14023]="Corrupted Green Whelp",[14024]="Corrupted Blue Whelp",[14025]="Corrupted Bronze Whelp",[14026]="Trigger Guse",[14027]="Trigger Mulverick",[14028]="Trigger Jeztor",[14029]="Trigger Ichman",[14030]="Trigger Slidore",[14031]="Trigger Vipore",[14041]="Haggle",[14081]="Demon Portal",[14101]="Enraged Felguard",[14121]="Deeprun Diver",[14122]="Massive Geyser",[14123]="Steeljaw Snapper",[14143]="Ar'lia",[14162]="RaidMage",[14182]="Bounty Hunter Kolark",[14183]="Artilleryman Sheldonore",[14185]="Najak Hexxen",[14186]="Ravak Grimtotem",[14187]="Athramanis",[14188]="Dirk Swindle",[14221]="Gravis Slipknot",[14222]="Araga",[14223]="Cranky Benj",[14224]="7:XT",[14225]="Prince Kellen",[14226]="Kaskk",[14227]="Hissperak",[14228]="Giggler",[14229]="Accursed Slitherblade",[14230]="Burgle Eye",[14231]="Drogoth the Roamer",[14232]="Dart",[14233]="Ripscale",[14234]="Hayoc",[14235]="The Rot",[14236]="Lord Angler",[14237]="Oozeworm",[14241]="Ironbark the Redeemed",[14242]="[UNUSED] Sulhasa",[14261]="Blue Drakonid",[14262]="Green Drakonid",[14263]="Bronze Drakonid",[14264]="Red Drakonid",[14265]="Black Drakonid",[14266]="Shanda the Spinner",[14267]="Emogg the Crusher",[14268]="Lord Condar",[14269]="Seeker Aqualon",[14270]="Squiddic",[14271]="Ribchaser",[14272]="Snarlflare",[14273]="Boulderheart",[14275]="Tamra Stormpike",[14276]="Scargil",[14277]="Lady Zephris",[14278]="Ro'Bark",[14279]="Creepthess",[14280]="Big Samras",[14281]="Jimmy the Bleeder",[14282]="Frostwolf Bloodhound",[14283]="Stormpike Owl",[14284]="Stormpike Battleguard",[14285]="Frostwolf Battleguard",[14301]="Brinna Valanaar",[14302]="Chromatic Drakonid",[14303]="Petrified Guardian",[14304]="Kor'kron Elite",[14305]="Human Orphan",[14306]="Eskhandar",[14307]="Black Drakonid Spawner",[14308]="Ferra",[14309]="Red Drakonid Spawner",[14310]="Green Drakonid Spawner",[14311]="Bronze Drakonid Spawner",[14312]="Blue Drakonid Spawner",[14321]="Guard Fengus",[14322]="Stomper Kreeg",[14323]="Guard Slip'kik",[14324]="Cho'Rush the Observer",[14325]="Captain Kromcrush",[14326]="Guard Mol'dar",[14327]="Lethtendris",[14329]="Black War Wolf",[14330]="Black War Raptor",[14331]="Red Skeletal Warhorse",[14332]="Black War Steed",[14333]="Black War Kodo",[14334]="Black Battlestrider",[14335]="Black War Ram",[14336]="Black War Tiger",[14337]="Field Repair Bot 74A",[14338]="Knot Thimblejack",[14339]="Death Howl",[14340]="Alshirr Banebreath",[14342]="Ragepaw",[14343]="Olm the Wise",[14344]="Mongress",[14345]="The Ongar",[14347]="Highlord Demitrian",[14348]="Earthcaller Franzahl",[14349]="Pimgib",[14350]="Hydroling",[14351]="Gordok Bushwacker",[14353]="Mizzle the Crafty",[14354]="Pusillin",[14355]="Azj'Tordin",[14356]="Sawfin Frenzy",[14357]="Lake Thresher",[14358]="Shen'dralar Ancient",[14361]="Shen'dralar Wisp",[14362]="Thornling",[14363]="Thief Catcher Shadowdelve",[14364]="Shen'dralar Spirit",[14365]="Thief Catcher Farmountain",[14366]="Warpwood Spores",[14367]="Thief Catcher Thunderbrew",[14368]="Lorekeeper Lydros",[14369]="Shen'dralar Zealot",[14370]="Cadaverous Worm",[14371]="Shen'dralar Provisioner",[14372]="Winterfall Ambusher",[14373]="Sage Korolusk",[14374]="Scholar Runethorn",[14375]="Scout Stronghand",[14376]="Scout Manslayer",[14377]="Scout Tharr",[14378]="Huntress Skymane",[14379]="Huntress Ravenoak",[14380]="Huntress Leafrunner",[14381]="Lorekeeper Javon",[14382]="Lorekeeper Mykos",[14383]="Lorekeeper Kildrath",[14385]="Doomguard Minion",[14386]="Wandering Eye of Kilrogg",[14387]="Lothos Riftwaker",[14388]="Rogue Black Drake",[14389]="Netherwalker",[14390]="Expeditionary Mountaineer",[14392]="Overlord Runthak",[14393]="Expeditionary Priest",[14394]="Major Mattingly",[14395]="Griniblix the Spectator",[14396]="Eye of Immol'thar",[14397]="Mana Burst",[14398]="Eldreth Darter",[14399]="Arcane Torrent",[14400]="Arcane Feedback",[14401]="Master Elemental Shaper Krixix",[14402]="Seeker Cromwell",[14403]="Seeker Nahr",[14404]="Seeker Thompson",[14421]="Brown Prairie Dog",[14423]="Officer Jaxon",[14424]="Mirelow",[14425]="Gnawbone",[14426]="Harb Foulmountain",[14427]="Gibblesnik",[14428]="Uruson",[14429]="Grimmaw",[14430]="Duskstalker",[14431]="Fury Shelda",[14432]="Threggil",[14433]="Sludginn",[14434]="Alarm-o-Bot",[14435]="Prince Thunderaan",[14436]="Mor'zul Bloodbringer",[14437]="Gorzeeki Wildeyes",[14438]="Officer Pomeroy",[14439]="Officer Brady",[14440]="Hunter Sagewind",[14441]="Hunter Ragetotem",[14442]="Hunter Thunderhorn",[14443]="Doomguard Tap Trigger",[14444]="Orcish Orphan",[14445]="Lord Captain Wyrmak",[14446]="Fingat",[14447]="Gilmorian",[14448]="Molt Thorn",[14449]="Blackwing Orb Trigger",[14450]="Orphan Matron Nightingale",[14451]="Orphan Matron Battlewail",[14452]="Enslaved Doomguard Commander",[14453]="Orb of Domination",[14454]="The Windreaver",[14455]="Whirling Invader",[14456]="Blackwing Guardsman",[14457]="Princess Tempestria",[14458]="Watery Invader",[14459]="Nefarian's Troops",[14460]="Blazing Invader",[14461]="Baron Charr",[14462]="Thundering Invader",[14463]="Daio the Decrepit",[14464]="Avalanchion",[14465]="Alliance Battle Standard",[14466]="Horde Battle Standard",[14467]="Kroshius",[14469]="Niby the Almighty",[14470]="Impsy",[14471]="Setis",[14472]="Gretheer",[14473]="Lapress",[14474]="Zora",[14475]="Rex Ashil",[14476]="Krellack",[14477]="Grubthor",[14478]="Huricanian",[14479]="Twilight Lord Everun",[14480]="Alowicious Czervik",[14481]="Emmithue Smails",[14482]="Xorothian Imp",[14483]="Dread Guard",[14484]="Injured Peasant",[14485]="Plagued Peasant",[14486]="Scourge Footsoldier",[14487]="Gluggle",[14488]="Roloch",[14489]="Scourge Archer",[14490]="Rippa",[14491]="Kurmokk",[14492]="Verifonix",[14494]="Eris Havenfire",[14495]="Invisible Trigger One",[14496]="Stormwind Orphan",[14497]="Shellene",[14498]="Tosamina",[14499]="Horde Orphan",[14500]="J'eevee",[14502]="Xorothian Dreadsteed",[14503]="The Cleaner",[14504]="Dreadsteed Spirit",[14505]="Dreadsteed",[14506]="Lord Hel'nurath",[14507]="High Priest Venoxis",[14508]="Short John Mithril",[14509]="High Priest Thekal",[14510]="High Priestess Mar'li",[14511]="Shadowed Spirit",[14512]="Corrupted Spirit",[14513]="Malicious Spirit",[14514]="Banal Spirit",[14515]="High Priestess Arlokk",[14516]="Death Knight Darkreaver",[14517]="High Priestess Jeklik",[14518]="Aspect of Banality",[14519]="Aspect of Corruption",[14520]="Aspect of Malice",[14521]="Aspect of Shadow",[14522]="Ur'dan",[14523]="Ulathek",[14524]="Vartrus the Ancient",[14525]="Stoma the Ancient",[14526]="Hastat the Ancient",[14527]="Simone the Inconspicuous",[14528]="Precious",[14529]="Franklin the Friendly",[14530]="Solenor the Slayer",[14531]="Artorius the Amiable",[14532]="Razzashi Venombrood",[14533]="Simone the Seductress",[14534]="Klinfran the Crazed",[14535]="Artorius the Doombringer",[14536]="Nelson the Nice",[14538]="Precious the Devourer",[14539]="Swift Timber Wolf",[14540]="Swift Brown Wolf",[14541]="Swift Gray Wolf",[14542]="Great White Kodo",[14543]="Swift Olive Raptor",[14544]="Swift Orange Raptor",[14545]="Swift Blue Raptor",[14546]="Swift Brown Ram",[14547]="Swift White Ram",[14548]="Swift Gray Ram",[14549]="Great Brown Kodo",[14550]="Great Gray Kodo",[14551]="Swift Yellow Mechanostrider",[14552]="Swift White Mechanostrider",[14553]="Swift Green Mechanostrider",[14555]="Swift Mistsaber",[14556]="Swift Frostsaber",[14557]="Swift Dawnsaber",[14558]="Purple Skeletal Warhorse",[14559]="Swift Palomino",[14560]="Swift White Steed",[14561]="Swift Brown Steed",[14563]="Swift Red Mechanostrider",[14564]="Terrordale Spirit",[14565]="Charger",[14566]="Ancient Equine Spirit",[14567]="Derotain Mudsipper",[14568]="Darkreaver's Fallen Charger",[14581]="Sergeant Thunderhorn",[14601]="Ebonroc",[14602]="Swift Stormsaber",[14603]="Zapped Shore Strider",[14604]="Zapped Land Walker",[14605]="Bone Construct",[14621]="Overseer Maltorius",[14622]="Thorium Brotherhood Lookout",[14623]="Warsong Gulch Battlemaster",[14624]="Master Smith Burninate",[14625]="Overseer Oilfist",[14626]="Taskmaster Scrange",[14627]="Hansel Heavyhands",[14628]="Evonice Sootsmoker",[14629]="Loggerhead Snapjaw",[14630]="Leatherback Snapjaw",[14631]="Olive Snapjaw",[14632]="Hawksbill Snapjaw",[14633]="Albino Snapjaw",[14634]="Lookout Captain Lolo Longstriker",[14635]="Sleepy Dark Iron Worker",[14636]="Chambermaid Pillaclencher",[14637]="Zorbin Fandazzle",[14638]="Zapped Wave Strider",[14639]="Zapped Deep Strider",[14640]="Zapped Cliff Giant",[14645]="Warsong Gulch Herald",[14646]="Stratholme Trigger",[14661]="Stinglasher",[14662]="Corrupted Fire Nova Totem V",[14663]="Corrupted Stoneskin Totem VI",[14664]="Corrupted Healing Stream Totem V",[14666]="Corrupted Windfury Totem III",[14667]="Corrupted Totem",[14668]="Corrupted Infernal",[14682]="Sever",[14684]="Balzaphon",[14686]="Lady Falther'ess",[14688]="Prince Sandoval",[14690]="Revanchion",[14693]="Scorn",[14695]="Lord Blackwood",[14697]="Lumbering Horror",[14715]="Silverwing Elite",[14717]="Horde Elite",[14718]="Horde Laborer",[14720]="High Overlord Saurfang",[14721]="Field Marshal Afrasiabi",[14722]="Clavicus Knavingham",[14723]="Mistina Steelshield",[14724]="Bubulo Acerbus",[14725]="Raedon Duskstriker",[14726]="Rashona Straglash",[14727]="Vehena",[14728]="Rumstag Proudstrider",[14729]="Ralston Farnsley",[14730]="Revantusk Watcher",[14731]="Lard",[14732]="PvP CTF Credit Marker",[14733]="Sentinel Farsong",[14734]="Revantusk Drummer",[14736]="Primal Torntusk",[14737]="Smith Slagtree",[14738]="Otho Moji'ko",[14739]="Mystic Yayo'jin",[14740]="Katoom the Angler",[14741]="Huntsman Markhor",[14742]="Zap Farflinger",[14743]="Jhordy Lapforge",[14744]="Frostwolf Howler",[14745]="Stormpike Battle Charger",[14748]="Vilebranch Kidnapper",[14750]="Gurubashi Bat Rider",[14751]="Frostwolf Battle Standard",[14752]="Stormpike Battle Standard",[14753]="Illiyana Moonblaze",[14754]="Kelm Hargunth",[14755]="Tiny Green Dragon",[14756]="Tiny Red Dragon",[14757]="Elder Torntusk",[14758]="Zul'Gurub Trigger",[14761]="Creeping Doom",[14762]="Dun Baldar North Marshal",[14763]="Dun Baldar South Marshal",[14764]="Icewing Marshal",[14765]="Stonehearth Marshal",[14766]="Iceblood Marshal",[14767]="Tower Point Marshal",[14768]="East Frostwolf Marshal",[14769]="West Frostwolf Marshal",[14770]="Dun Baldar North Warmaster",[14771]="Dun Baldar South Warmaster",[14772]="East Frostwolf Warmaster",[14773]="Iceblood Warmaster",[14774]="Icewing Warmaster",[14775]="Stonehearth Warmaster",[14776]="Tower Point Warmaster",[14777]="West Frostwolf Warmaster",[14781]="Captain Shatterskull",[14821]="Razzashi Raptor",[14822]="Sayge",[14823]="Silas Darkmoon",[14825]="Withered Mistress",[14826]="Sacrificed Troll",[14827]="Burth",[14828]="Gelvas Grimegate",[14829]="Yebb Neblegear",[14830]="Unkillable Test Dummy 60 Warrior",[14832]="Kerri Hicks",[14833]="Chronos",[14834]="Hakkar",[14841]="Rinling",[14842]="Melnan Darkstone",[14843]="Kruban Darkblade",[14844]="Sylannia",[14845]="Stamp Thunderhorn",[14846]="Lhara",[14847]="Professor Thaddeus Paleo",[14848]="Herald",[14849]="Darkmoon Carnie",[14850]="Gruk",[14857]="Erk",[14859]="Guard Taruc",[14860]="Flik",[14861]="Blood Steward of Kirtonos",[14862]="Emissary Roman'khan",[14864]="Khaz Modan Ram",[14865]="Felinni",[14866]="Flik's Frog",[14867]="Jubjub",[14868]="Hornsley",[14869]="Pygmy Cockatrice",[14871]="Morja",[14872]="Trok",[14873]="Okla",[14874]="Karu",[14875]="Molthor",[14876]="Zandalar Headshrinker",[14878]="Jubling",[14879]="Arathi Basin Battlemaster",[14880]="Razzashi Skitterer",[14881]="Spider",[14882]="Atal'ai Mistress",[14883]="Voodoo Slave",[14884]="Parasitic Serpent",[14885]="Jonathan LeCraft",[14887]="Ysondre",[14888]="Lethon",[14889]="Emeriss",[14890]="Taerar",[14892]="Fang",[14893]="Guard Kurall",[14894]="Swarm of bees",[14901]="Peon",[14902]="Jin'rokh the Breaker",[14903]="Al'tabim the All-Seeing",[14904]="Maywiki of Zuldazar",[14905]="Falthir the Sightless",[14908]="Mogg",[14909]="Pooka",[14910]="Exzhal",[14911]="Zandalar Enforcer",[14912]="Captured Hakkari Zealot",[14921]="Rin'wosho the Trader",[14942]="Kartra Bloodsnarl",[14943]="Guse's War Rider",[14944]="Jeztor's War Rider",[14945]="Mulverick's War Rider",[14946]="Slidore's Gryphon",[14947]="Ichman's Gryphon",[14948]="Vipore's Gryphon",[14961]="Mirvyna Jinglepocket",[14962]="Dillord Copperpinch",[14963]="Gapp Jinglepocket",[14964]="Hecht Copperpinch",[14965]="Frenzied Bloodseeker Bat",[14981]="Elfarran",[14982]="Lylandris",[14983]="Field Marshal Oslight",[14984]="Sergeant Maclear",[14986]="Shade of Jin'do",[14987]="Powerful Healing Ward",[14988]="Ohgan",[14989]="Poisonous Cloud",[14990]="Defilers Envoy",[14991]="League of Arathor Emissary",[14994]="Zandalarian Event Generator",[15006]="Deze Snowbane",[15007]="Sir Malory Wheeler",[15008]="Lady Hoteshem",[15009]="Voodoo Spirit",[15010]="Jungle Toad",[15011]="Wagner Hammerstrike",[15012]="Javnir Nashak",[15021]="Deathmaster Dwire",[15022]="Deathstalker Mortis",[15041]="Spawn of Mar'li",[15042]="Zanza the Restless",[15043]="Zulian Crocolisk",[15045]="Arathi Farmer",[15046]="Forsaken Farmer",[15047]="Gurubashi",[15061]="Spirit of Jin'do",[15062]="Arathi Lumberjack",[15063]="Arathi Blacksmith",[15064]="Forsaken Blacksmith",[15065]="Lady",[15066]="Cleo",[15067]="Zulian Stalker",[15068]="Zulian Guardian",[15069]="Heart of Hakkar",[15070]="Vinchaxa",[15071]="Underfoot",[15072]="Spike",[15073]="Pat's Hellfire Guy",[15074]="Arathi Miner",[15075]="Forsaken Miner",[15076]="Zandalarian Emissary",[15077]="Riggle Bassbait",[15078]="Jang",[15079]="Fishbot 5000",[15080]="Servant of the Hand",[15082]="Gri'lek",[15083]="Hazza'rah",[15084]="Renataki",[15085]="Wushoolay",[15086]="Arathi Stablehand",[15087]="Forsaken Stablehand",[15088]="Booty Bay Elite",[15089]="Forsaken Lumberjack",[15090]="Swift Razzashi Raptor",[15091]="Zul'Gurub Panther Trigger",[15101]="Zulian Prowler",[15102]="Silverwing Emissary",[15103]="Stormpike Emissary",[15104]="Swift Zulian Tiger",[15105]="Warsong Envoy",[15106]="Frostwolf Envoy",[15107]="Arathi Horse",[15108]="Forsaken Horse",[15111]="Mad Servant",[15112]="Brain Wash Totem",[15113]="Honored Hero",[15114]="Gahz'ranka",[15115]="Honored Ancestor",[15116]="Grinkle",[15117]="Chained Spirit",[15119]="Barrus",[15122]="Gahz'ranka Dead",[15124]="Targot Jinglepocket",[15125]="Kosco Copperpinch",[15126]="Rutherford Twing",[15127]="Samuel Hawke",[15128]="Defiler Elite",[15130]="League of Arathor Elite",[15131]="Qeeju",[15136]="Hammerfall Elite",[15137]="Menethil Elite",[15138]="Silverpine Elite",[15140]="Pat's Splash Guy",[15141]="Portal of Madness",[15146]="Mad Voidwalker",[15162]="Scarlet Inquisitor",[15163]="Nightmare Illusion",[15164]="Mulgore Trigger",[15165]="Haughty Modiste",[15168]="Vile Scarab",[15169]="Ralo'shan the Eternal Watcher",[15170]="Rutgar Glyphshaper",[15171]="Frankal Stonebridge",[15172]="Glibb",[15174]="Calandrath",[15175]="Khur Hornstriker",[15176]="Vargus",[15177]="Cloud Skydancer",[15178]="Runk Windtamer",[15179]="Mishta",[15180]="Baristolth of the Shifting Sands",[15181]="Commander Mar'alith",[15182]="Vish Kozus",[15183]="Geologist Larksbane",[15184]="Cenarion Hold Infantry",[15185]="Brood of Nozdormu",[15186]="Murky",[15187]="Cenarion Emissary Jademoon",[15188]="Cenarion Emissary Blackhoof",[15189]="Beetix Ficklespragg",[15190]="Noggle Ficklespragg",[15191]="Windcaller Proudhorn",[15192]="Anachronos",[15193]="The Banshee Queen",[15194]="Hermit Ortell",[15195]="Wickerman Guardian",[15196]="Deathclasp",[15197]="Darkcaller Yanka",[15198]="Blackwing",[15199]="Sergeant Hartman",[15200]="Twilight Keeper Mayna",[15201]="Twilight Flamereaver",[15202]="Vyral the Vile",[15203]="Prince Skaldrenox",[15204]="High Marshal Whirlaxis",[15205]="Baron Kazum",[15206]="The Duke of Cynders",[15207]="The Duke of Fathoms",[15208]="The Duke of Shards",[15209]="Crimson Templar",[15211]="Azure Templar",[15212]="Hoary Templar",[15213]="Twilight Overlord",[15214]="Invisible Stalker",[15215]="Mistress Natalia Mar'alith",[15218]="Darkmoon Faire Cannon",[15220]="The Duke of Zephyrs",[15221]="Frankal Invisible Trigger",[15222]="Rutgar Invisible Trigger",[15224]="Dream Fog",[15229]="Vekniss Soldier",[15230]="Vekniss Warrior",[15233]="Vekniss Guardian",[15235]="Vekniss Stinger",[15236]="Vekniss Wasp",[15240]="Vekniss Hive Crawler",[15241]="Gryphon Rider Guard",[15242]="Bat Rider Guard",[15246]="Qiraji Mindslayer",[15247]="Qiraji Brainwasher",[15249]="Qiraji Lasher",[15250]="Qiraji Slayer",[15252]="Qiraji Champion",[15260]="Demented Druid Spirit",[15261]="Spirit Shade",[15262]="Obsidian Eradicator",[15263]="The Prophet Skeram",[15264]="Anubisath Sentinel",[15270]="Huum Wildmane",[15271]="Tender",[15273]="Arcane Wraith",[15274]="Mana Wyrm",[15275]="Emperor Vek'nilash",[15276]="Emperor Vek'lor",[15277]="Anubisath Defender",[15278]="Magistrix Erona",[15279]="Julia Sunstriker",[15280]="Jesthenis Sunstriker",[15281]="Lanthan Perilon",[15282]="Aurel Goldleaf",[15283]="Summoner Teli'Larien",[15284]="Matron Arena",[15285]="Pathstalker Kariel",[15286]="Xil'xix",[15287]="Shara Sunwing",[15288]="Aluntir",[15289]="Raelis Dawnstar",[15290]="Arakis",[15291]="Jainthess Thelryn",[15292]="Faraden Thelryn",[15293]="Aendel Windspear",[15294]="Feral Tender",[15295]="Well Watcher Solanian",[15296]="Arcanist Ithanas",[15297]="Arcanist Helion",[15298]="Tainted Arcane Wraith",[15299]="Viscidus",[15300]="Vekniss Drone",[15301]="Outrunner Alarion",[15302]="Shade of Taerar",[15303]="Maxima Blastenheimer",[15304]="Ancient Mana Spring Totem",[15305]="Lord Skwol",[15306]="Bor Wildmane",[15307]="Earthen Templar",[15308]="Twilight Prophet",[15309]="Spoops",[15310]="Jesper",[15311]="Anubisath Warder",[15312]="Obsidian Nullifier",[15314]="Moonkin (Druid - Tauren)",[15315]="Mylini Frostmoon",[15316]="Qiraji Scarab",[15317]="Qiraji Scorpion",[15318]="Hive'Zara Drone",[15319]="Hive'Zara Collector",[15320]="Hive'Zara Soldier",[15323]="Hive'Zara Sandstalker",[15324]="Qiraji Gladiator",[15325]="Hive'Zara Wasp",[15327]="Hive'Zara Stinger",[15328]="Steam Tank",[15333]="Silicate Feeder",[15334]="Giant Eye Tentacle",[15335]="Flesh Hunter",[15336]="Hive'Zara Tail Lasher",[15338]="Obsidian Destroyer",[15339]="Ossirian the Unscarred",[15340]="Moam",[15341]="General Rajaxx",[15343]="Qiraji Swarmguard",[15344]="Swarmguard Needler",[15348]="Kurinnaxx",[15350]="Horde Warbringer",[15351]="Alliance Brigadier General",[15352]="Greater Earth Elemental",[15353]="Katrina Shimmerstar",[15354]="Rachelle Gothena",[15355]="Anubisath Guardian",[15356]="Blue Baby Murloc",[15357]="Purple Baby Murloc",[15358]="Lurky",[15359]="Pink Baby Murloc",[15360]="Green Baby Murloc",[15361]="Murki",[15362]="Malfurion Stormrage",[15363]="Totem of Spirits",[15366]="Springpaw Cub",[15367]="Felendren the Banished",[15368]="Tonk Mine",[15369]="Ayamiss the Hunter",[15370]="Buru the Gorger",[15371]="Sunstrider Guardian",[15372]="Springpaw Lynx",[15378]="Merithra of the Dream",[15379]="Caelestrasz",[15380]="Arygos",[15381]="Anachronos the Ancient",[15382]="Fandral Staghelm",[15383]="Sergeant Stonebrow",[15384]="OLDWorld Trigger (DO NOT DELETE)",[15385]="Colonel Zerran",[15386]="Major Yeggeth",[15387]="Qiraji Warrior",[15388]="Major Pakkon",[15389]="Captain Drenn",[15390]="Captain Xurrem",[15391]="Captain Qeez",[15392]="Captain Tuubid",[15393]="[UNUSED] Ruins Qiraji Gladiator Named 7",[15395]="Nafien",[15397]="Marniel Amberlight",[15398]="Larianna Riverwind",[15399]="Lieutenant Dawnrunner",[15400]="Arathel Sunforge",[15401]="Ley-Keeper Velania",[15402]="Apprentice Mirveda",[15403]="Aeldon Sunbrand",[15404]="Velendris Whitemorn",[15405]="Ley-Keeper Caidanis",[15406]="Ven'jashi",[15407]="Chieftain Zul'Marosh",[15408]="Spearcrafter Otembe",[15409]="Old Whitebark",[15414]="Qiraji Wasp",[15415]="Southshore Stink Bomb Counter",[15416]="Ranger Jaela",[15417]="Velan Brightoak",[15418]="Magister Jaronis",[15419]="Kania",[15420]="Prospector Anvilward",[15421]="Qiraji Drone",[15422]="Qiraji Tank",[15423]="Kaldorei Infantry",[15424]="Anubisath Conqueror",[15426]="Ahn'Qiraj Trigger",[15428]="Sand Vortex",[15429]="Disgusting Oozeling",[15430]="Earth Elemental Totem",[15431]="Corporal Carnes",[15432]="Dame Twinbraid",[15433]="Innkeeper Delaniel",[15434]="Private Draxlegauge",[15437]="Master Nightsong",[15438]="Greater Fire Elemental",[15439]="Fire Elemental Totem",[15440]="Captain Blackanvil",[15441]="Ironforge Brigade Rifleman",[15442]="Ironforge Brigade Footman",[15443]="Janela Stouthammer",[15444]="Arcanist Nozzlespring",[15445]="Sergeant Major Germaine",[15446]="Bonnie Stoneflayer",[15447]="Wrath of Air Totem",[15448]="Private Porter",[15449]="Hive'Zora Abomination",[15450]="Marta Finespindle",[15451]="Sentinel Silversky",[15452]="Nurse Stonefield",[15453]="Keeper Moonshade",[15454]="Anachronos Quest Trigger Invisible",[15455]="Slicky Gastronome",[15456]="Sarah Sadwhistle",[15457]="Huntress Swiftriver",[15458]="Commander Stronghammer",[15459]="Miner Cromwell",[15460]="Grunt Maug",[15461]="Shrieker Scarab",[15462]="Spitting Scarab",[15463]="Grace of Air Totem III",[15464]="Strength of Earth Totem V",[15466]="Minion of Omen",[15467]="Omen",[15468]="Sunstrider Mana Tap Counter",[15469]="Senior Sergeant T'kelah",[15470]="Stoneskin Totem VII",[15471]="Lieutenant General Andorov",[15473]="Kaldorei Elite",[15474]="Stoneskin Totem VIII",[15475]="Beetle",[15476]="Scorpion",[15477]="Herbalist Proudfeather",[15478]="Stoneclaw Totem VII",[15479]="Strength of Earth Totem VI",[15480]="Searing Totem VII",[15481]="Spirit of Azuregos",[15482]="Fire Nova Totem VI",[15484]="Magma Totem V",[15485]="Flametongue Totem V",[15486]="Frost Resistance Totem IV",[15487]="Fire Resistance Totem IV",[15488]="Healing Stream Totem VI",[15489]="Mana Spring Totem V",[15490]="Nature Resistance Totem IV",[15491]="Eranikus Tyrant of the Dream",[15492]="Windwall Totem IV",[15493]="Marsilla Dawnstar",[15494]="Yasmine Teli'Larien",[15495]="Nighthaven Defender",[15496]="Windfury Totem IV",[15497]="Windfury Totem V",[15498]="Windcaller Yessendra",[15499]="Warden Haro",[15500]="Keyl Swiftclaw",[15501]="Aleinia",[15502]="Andorgos",[15503]="Kandrostrasz",[15504]="Vethsera",[15505]="Canal Frenzy",[15508]="Batrider Pele'keiki",[15509]="Princess Huhuran",[15510]="Fankriss the Unyielding",[15511]="Lord Kri",[15512]="Apothecary Jezel",[15513]="Ranger Sallina",[15514]="Buru Egg",[15515]="Skinner Jamani",[15516]="Battleguard Sartura",[15517]="Ouro",[15520]="O'Reily",[15521]="Hive'Zara Hatchling",[15522]="Sergeant Umala",[15524]="Temporary Reindeer",[15525]="Doctor Serratus",[15526]="Meridith the Mermaiden",[15527]="Mana Fiend",[15528]="Healer Longrunner",[15529]="Lady Callow",[15532]="Stoneguard Clayhoof",[15533]="Bloodguard Rawtar",[15534]="Fisherman Lin'do",[15535]="Chief Sharpclaw",[15537]="Anubisath Warrior",[15538]="Anubisath Swarmguard",[15539]="General Zog",[15540]="Windcaller Kaldon",[15541]="Twilight Marauder Morna",[15542]="Twilight Marauder",[15543]="Princess Yauj",[15544]="Vem",[15545]="Cenarion Outrider",[15546]="Hive'Zara Swarmer",[15547]="Spectral Charger",[15548]="Spectral Stallion",[15549]="Elder Morndeep",[15550]="Attumen the Huntsman",[15551]="Spectral Stable Hand",[15552]="Doctor Weavil",[15553]="Doctor Weavil's Flying Machine",[15554]="Number Two",[15555]="Hive'Zara Larva",[15556]="Elder Splitrock",[15557]="Elder Rumblerock",[15558]="Elder Silvervein",[15559]="Elder Highpeak",[15560]="Elder Stonefort",[15561]="Elder Obsidian",[15562]="Elder Hammershout",[15563]="Elder Bellowrage",[15564]="Elder Darkcore",[15565]="Elder Stormbrow",[15566]="Elder Snowcrown",[15567]="Elder Ironband",[15568]="Elder Graveborn",[15569]="Elder Goldwell",[15570]="Elder Primestone",[15571]="Maws",[15572]="Elder Runetotem",[15573]="Elder Ragetotem",[15574]="Elder Stonespire",[15575]="Elder Bloodhoof",[15576]="Elder Winterhoof",[15577]="Elder Skychaser",[15578]="Elder Wildmane",[15579]="Elder Darkhorn",[15580]="Elder Ezra Wheathoof",[15581]="Elder Grimtotem",[15582]="Elder Windtotem",[15583]="Elder Thunderhorn",[15584]="Elder Skyseer",[15585]="Elder Dawnstrider",[15586]="Elder Dreamseer",[15587]="Elder Mistwalker",[15588]="Elder High Mountain",[15589]="Eye of C'Thun",[15590]="Ossirian Crystal Trigger",[15591]="Minion of Weavil",[15592]="Elder Windrun",[15593]="Elder Starsong",[15594]="Elder Moonstrike",[15595]="Elder Bladeleaf",[15596]="Elder Starglade",[15597]="Elder Moonwarden",[15598]="Elder Bladeswift",[15599]="Elder Bladesing",[15600]="Elder Skygleam",[15601]="Elder Starweave",[15602]="Elder Meadowrun",[15603]="Elder Nightwind",[15604]="Elder Morningdew",[15605]="Elder Riversong",[15606]="Elder Brightspear",[15607]="Elder Farwhisper",[15608]="Medivh",[15609]="Cenarion Scout Landion",[15610]="Cenarion Scout Azenel",[15611]="Cenarion Scout Jalia",[15612]="Krug Skullsplit",[15613]="Merok Longstride",[15614]="J.D. Shadesong",[15615]="Shadow Priestess Shai",[15616]="Orgrimmar Legion Grunt",[15617]="Orgrimmar Legion Axe Thrower",[15620]="Hive'Regal Hunter-Killer",[15621]="Yauj Brood",[15622]="Vekniss Borer",[15623]="Xandivious",[15624]="Forest Wisp",[15625]="Twilight Corrupter",[15628]="Eranikus the Redeemed",[15629]="Nightmare Phantasm",[15630]="Spawn of Fankriss",[15631]="Spotlight",[15633]="Tyrande",[15634]="Priestess of the Moon",[15635]="Eversong Tender",[15636]="Eversong Green Keeper",[15637]="Withered Green Keeper",[15638]="Arcane Patroller",[15641]="Amani Axe Thrower",[15642]="Amani Shadowpriest",[15643]="Amani Berserker",[15644]="Wretched Urchin",[15645]="Wretched Thug",[15647]="Mana Stalker",[15648]="Manawraith",[15649]="Feral Dragonhawk Hatchling",[15650]="Crazed Dragonhawk",[15651]="Springpaw Stalker",[15652]="Elder Springpaw",[15654]="Plaguebone Pillager",[15655]="Rotlimb Cannibal",[15656]="Angershade",[15657]="Darkwraith",[15658]="Rotlimb Marauder",[15659]="Auctioneer Jaxon",[15661]="Baby Shark",[15663]="War Effort Volunteer",[15664]="Metzen the Reindeer",[15665]="Mounted Reindeer",[15666]="Blue Qiraji Battle Tank",[15667]="Glob of Viscidus",[15668]="Grimscale Murloc",[15669]="Grimscale Oracle",[15670]="Grimscale Forager",[15675]="Auctioneer Stockton",[15676]="Auctioneer Yarly",[15677]="Auctioneer Graves",[15678]="Auctioneer Silva'las",[15679]="Auctioneer Cazarez",[15681]="Auctioneer O'reely",[15682]="Auctioneer Cain",[15683]="Auctioneer Naxxremis",[15684]="Auctioneer Tricket",[15685]="Southsea Kidnapper",[15686]="Auctioneer Rhyker",[15687]="Moroes",[15688]="Terestian Illhoof",[15689]="Netherspite",[15690]="Prince Malchezaar",[15691]="The Curator",[15692]="Dark Iron Kidnapper",[15693]="Jonathan the Revelator",[15694]="Stormwind Reveler",[15695]="Vek Twins Trigger",[15696]="War Effort Recruit",[15698]="Father Winter's Helper",[15699]="Tranquil Mechanical Yeti",[15700]="Warlord Gorchuk",[15701]="Field Marshal Snowfall",[15702]="Senior Sergeant Taiga",[15703]="Senior Sergeant Grimsford",[15704]="Senior Sergeant Kai'jin",[15705]="Winter's Little Helper",[15706]="Winter Reindeer",[15707]="Master Sergeant Fizzlebolt",[15708]="Master Sergeant Maclure",[15709]="Master Sergeant Moonshadow",[15710]="Tiny Snowman",[15711]="Black Qiraji Battle Tank",[15712]="Dirt Mound",[15714]="Yellow Qiraji Battle Tank",[15715]="Green Qiraji Battle Tank",[15716]="Red Qiraji Battle Tank",[15718]="Ouro Scarab",[15719]="Thunder Bluff Reveler",[15720]="Timbermaw Ancestor",[15721]="Mechanical Greench",[15722]="Squire Leoren Mal'derath",[15723]="Booty Bay Reveler",[15724]="Drunken Bruiser",[15725]="Claw Tentacle",[15726]="Eye Tentacle",[15727]="C'Thun",[15728]="Giant Claw Tentacle",[15730]="Pat's Snowcloud Guy",[15731]="Darnassus Commendation Officer",[15732]="Wonderform Operator",[15733]="Gnomeregan Commendation Officer",[15734]="Ironforge Commendation Officer",[15735]="Stormwind Commendation Officer",[15736]="Orgrimmar Commendation Officer",[15737]="Darkspear Commendation Officer",[15738]="Undercity Commendation Officer",[15739]="Thunder Bluff Commendation Officer",[15740]="Colossus of Zora",[15741]="Colossus of Regal",[15742]="Colossus of Ashi",[15743]="Colossal Anubisath Warbringer",[15744]="Imperial Qiraji Destroyer",[15745]="Greatfather Winter's Helper",[15746]="Great-father Winter's Helper",[15747]="Qiraji Captain",[15748]="Lesser Anubisath Warbringer",[15749]="Lesser Silithid Flayer",[15750]="Qiraji Major",[15751]="Anubisath Warbringer",[15752]="Silithid Flayer",[15753]="Qiraji Brigadier General",[15754]="Greater Anubisath Warbringer",[15756]="Greater Silithid Flayer",[15757]="Qiraji Lieutenant General",[15758]="Supreme Anubisath Warbringer",[15759]="Supreme Silithid Flayer",[15760]="Winter Reveler",[15761]="Officer Vu'Shalay",[15762]="Officer Lunalight",[15763]="Officer Porterhouse",[15764]="Officer Ironbeard",[15765]="Officer Redblade",[15766]="Officer Maloof",[15767]="Officer Thunderstrider",[15768]="Officer Gothena",[15769]="Resonating Crystal",[15770]="Greater Resonating Crystal",[15771]="Major Resonating Crystal",[15778]="Mouth Tentacle Mount Visual",[15780]="Human Male Winter Reveler",[15781]="Human Female Winter Reveler",[15787]="Goblin Female Winter Reveler",[15797]="Colossus Researcher Sophia",[15798]="Colossus Researcher Nestor",[15799]="Colossus Researcher Eazel",[15800]="Exit Trigger",[15801]="GONG BOY DND DNR",[15802]="Flesh Tentacle",[15803]="Tranquil Air Totem",[15804]="Lesser Resonating Crystal",[15805]="Minor Resonating Crystal",[15806]="Qiraji Lieutenant",[15807]="Minor Anubisath Warbringer",[15808]="Minor Silithid Flayer",[15810]="Eroded Anubisath Warbringer",[15811]="Faltering Silithid Flayer",[15812]="Qiraji Officer",[15813]="Qiraji Officer Zod",[15814]="Qiraji Lieutenant Jo-rel",[15815]="Qiraji Captain Ka'ark",[15816]="Qiraji Major He'al-ie",[15817]="Qiraji Brigadier General Pax-lish",[15818]="Lieutenant General Nokhor",[15839]="Might of Kalimdor Grunt",[15840]="Might of Kalimdor Sergeant",[15841]="Might of Kalimdor Lieutenant",[15842]="Might of Kalimdor Mage",[15843]="Might of Kalimdor Priest",[15844]="Might of Kalimdor Restorer",[15845]="Might of Kalimdor Captain",[15846]="Might of Kalimdor Archer",[15847]="Might of Kalimdor Shaman",[15848]="Might of Kalimdor Infantry",[15849]="Might of Kalimdor Druid",[15850]="Might of Kalimdor Skirmisher",[15851]="Might of Kalimdor Marshal",[15852]="Orgrimmar Elite Shieldguard",[15853]="Orgrimmar Elite Infantryman",[15854]="Orgrimmar Elite Cavalryman",[15855]="Tauren Rifleman",[15856]="Tauren Primalist",[15857]="Stormwind Cavalryman",[15858]="Stormwind Infantry",[15859]="Stormwind Archmage",[15860]="Kaldorei Marksman",[15861]="Ironforge Infantryman",[15862]="Ironforge Cavalryman",[15863]="Darkspear Shaman",[15864]="Valadar Starsong",[15865]="Might of Kalimdor Major",[15866]="Commander Lynore Windstryke",[15867]="Might of Kalimdor Archmage",[15868]="Highlord Leoric Von Zeldig",[15869]="Malagav the Tactician",[15870]="Duke August Foehammer",[15871]="Elder Bronzebeard",[15872]="Pat's Firework Cluster Guy (BLUE)",[15873]="Pat's Firework Cluster Guy (RED)",[15874]="Pat's Firework Cluster Guy (GREEN)",[15878]="Warcaller Finster",[15879]="Pat's Firework Guy - BLUE",[15880]="Pat's Firework Guy - GREEN",[15882]="Pat's Firework Guy - RED",[15883]="Pat's Firework Guy - YELLOW",[15884]="Pat's Firework Guy - WHITE",[15885]="Pat's Firework Guy - BLUE BIG",[15886]="Pat's Firework Guy - GREEN BIG",[15887]="Pat's Firework Guy - PURPLE BIG",[15888]="Pat's Firework Guy - RED BIG",[15889]="Pat's Firework Guy - WHITE BIG",[15890]="Pat's Firework Guy - YELLOW BIG",[15891]="Lunar Festival Herald",[15892]="Lunar Festival Emissary",[15893]="Lunar Firework Credit Marker",[15894]="Lunar Cluster Credit Marker",[15895]="Lunar Festival Harbinger",[15896]="C'Thun Portal",[15897]="Large Spotlight",[15898]="Lunar Festival Vendor",[15901]="Vanquished Tentacle",[15902]="Giant Spotlight",[15903]="Sergeant Carnes",[15904]="Tentacle Portal",[15905]="Darnassus Reveler",[15906]="Ironforge Reveler",[15907]="Undercity Reveler",[15908]="Orgrimmar Reveler",[15909]="Fariel Starsong",[15910]="Giant Tentacle Portal",[15911]="Pat's Firework Cluster Guy (BLUE BIG)",[15912]="Pat's Firework Cluster Guy (GREEN BIG)",[15914]="Pat's Firework Cluster Guy (RED BIG)",[15917]="Lunar Festival Reveler",[15918]="Pat's Firework Cluster Guy (ELUNE)",[15919]="Jade Owl",[15920]="Hathvelion Sungaze",[15921]="Captain Kelisendra",[15923]="Golden Hare",[15924]="Apprentice Loralthalis",[15925]="Toxic Slime",[15926]="Black Pearl Panther",[15927]="Truesilver Crab",[15928]="Thaddius",[15929]="Stalagg",[15930]="Feugen",[15931]="Grobbulus",[15932]="Gluth",[15933]="Poison Cloud",[15934]="Hive'Zara Hornet",[15935]="Truesilver Boar",[15936]="Heigan the Unclean",[15937]="Mmmrrrggglll",[15938]="Eversong Ranger",[15939]="Ranger Degolien",[15940]="Ranger Selron",[15941]="Apprentice Ralen",[15942]="Ranger Sareyn",[15944]="Ruby Serpent",[15945]="Apprentice Meledor",[15946]="Apprentice Veya",[15948]="Emerald Owl",[15949]="Thaelis the Hungerer",[15950]="Grimscale Seer",[15951]="Magister Duskwither",[15952]="Maexxna",[15953]="Grand Widow Faerlina",[15954]="Noth the Plaguebringer",[15955]="Black Diamond Crab",[15956]="Anub'Rekhan",[15957]="Ouro Spawner",[15958]="Gharsul the Remorseless",[15959]="Dark Iron Scorpid",[15961]="Lunar Festival Sentinel",[15962]="Vekniss Hatchling",[15963]="The Master's Eye",[15964]="Buru Egg Trigger",[15965]="Duskwither Apprentice",[15966]="Mana Serpent",[15967]="Ether Fiend",[15968]="Darnassian Scout",[15969]="Groundskeeper Wyllithen",[15970]="Instructor Antheol",[15971]="Silvermoon Apprentice",[15972]="Alterac Valley Battlemaster",[15974]="Dread Creeper",[15975]="Carrion Spinner",[15976]="Venom Stalker",[15977]="Poisonous Skitterer",[15978]="Crypt Reaver",[15979]="Tomb Horror",[15980]="Naxxramas Cultist",[15981]="Naxxramas Acolyte",[15984]="Sartura's Royal Guard",[15989]="Sapphiron",[15990]="Kel'Thuzad",[15991]="Lady Dena Kennedy",[16001]="Aldris Fourclouds",[16002]="Colara Dean",[16003]="Deathguard Tor",[16004]="Elenia Haydon",[16005]="Lieutenant Jocryn Heldric",[16006]="InCombat Trigger",[16007]="Orok Deathbane",[16008]="Temma of the Wells",[16009]="Tormek Stoneriver",[16011]="Loatheb",[16012]="Mokvar",[16013]="Deliana",[16014]="Mux Manascrambler",[16015]="Vi'el",[16016]="Anthion Harmon",[16017]="Patchwork Golem",[16018]="Bile Retcher",[16019]="Boorana Thunderhoof",[16020]="Mad Scientist",[16021]="Living Monstrosity",[16022]="Surgical Assistant",[16024]="Embalming Slime",[16025]="Stitched Giant",[16027]="Living Poison",[16028]="Patchwerk",[16029]="Sludge Belcher",[16030]="Maggot",[16031]="Ysida Harmon",[16032]="Falrin Treeshaper",[16033]="Bodley",[16034]="Plague Beast",[16036]="Frenzied Bat",[16037]="Plagued Bat",[16042]="Lord Valthalak",[16043]="Magma Lord Bokk",[16044]="Mor Grayhoof Trigger",[16045]="Isalien Trigger",[16046]="Jarien and Sothos Trigger",[16047]="Kormok Trigger",[16048]="Lord Valthalak Trigger",[16049]="Lefty",[16050]="Rotfang",[16051]="Snokh Blackspine",[16052]="Malgen Longspear",[16053]="Korv",[16054]="Rezznik",[16055]="Va'jashni",[16056]="Diseased Maggot",[16057]="Rotting Maggot",[16058]="Volida",[16059]="Theldren",[16060]="Gothik the Harvester",[16061]="Instructor Razuvious",[16062]="Highlord Mograine",[16063]="Sir Zeliek",[16064]="Thane Korth'azz",[16065]="Lady Blaumeux",[16066]="Spectral Assassin",[16067]="Deathcharger Steed",[16068]="Larva",[16069]="Gurky",[16070]="Garel Redrock",[16072]="Tidelord Rrurgaz",[16073]="Spirit of Lord Valthalak",[16075]="Kwee Q. Peddlefeet",[16076]="Tharl Stonebleeder",[16078]="Unkillable Fixed Damage Test Dummy",[16079]="Theldren Trigger",[16080]="Mor Grayhoof",[16082]="Naxxramas Trigger",[16085]="Peddlefeet",[16089]="Omar the Test Dragon",[16090]="Rousch",[16091]="Dirk Thunderwood",[16092]="Silithis Teleporter",[16093]="Spectral Stalker",[16094]="Durik",[16095]="Gnashjaw",[16096]="Steamwheedle Bruiser",[16097]="Isalien",[16098]="Empyrean",[16100]="Ysida's Trigger",[16101]="Jarien",[16102]="Sothos",[16103]="Spirit of Jarien",[16104]="Spirit of Sothos",[16105]="Aristan Mottar",[16106]="Evert Sorisam",[16107]="Apothecary Staffron Lerent",[16108]="Fenstad Argyle",[16109]="Mara Rennick",[16110]="Annalise Lerent",[16111]="Love Fool",[16112]="Crusade Commander Korfax",[16113]="Father Inigo Montoy",[16114]="Scarlet Commander Marjhan",[16115]="Crusade Commander Eligor Dawnbringer",[16116]="Archmage Angela Dosantos",[16117]="Plagued Swine",[16118]="Kormok",[16119]="Bone Minion",[16120]="Bone Mage",[16121]="Mortar",[16123]="Gremnik Rizzlesprang",[16124]="Unrelenting Trainee",[16125]="Unrelenting Death Knight",[16126]="Unrelenting Rider",[16127]="Spectral Trainee",[16128]="Rhonin",[16129]="Shadow Fissure",[16131]="Rohan the Assassin",[16132]="Huntsman Leopold",[16133]="Mataus the Wrathcaster",[16134]="Rimblat Earthshatter",[16135]="Rayne",[16136]="Necrotic Shard",[16137]="Naxxramas Military Sub-Boss Trigger",[16139]="Cenarion Hold Reservist",[16141]="Ghoul Berserker",[16142]="Bile Sludge",[16143]="Shadow of Doom",[16144]="Lord Saltheril",[16145]="Death Knight Captain",[16146]="Death Knight",[16147]="Elisara Sunstriker",[16148]="Spectral Death Knight",[16149]="Spectral Horse",[16150]="Spectral Rider",[16151]="Midnight",[16152]="Attumen the Huntsman",[16153]="Berthold",[16154]="Risen Squire",[16156]="Dark Touched Warrior",[16157]="Doom Touched Warrior",[16158]="Death Touched Warrior",[16159]="Calliard",[16160]="Magistrix Eredania",[16161]="Arcanist Sheynathren",[16162]="Wretched Hooligan",[16163]="Death Knight Cavalier",[16164]="Shade of Naxxramas",[16165]="Necro Knight",[16166]="Theldren Kill Credit",[16167]="Bony Construct",[16168]="Stoneskin Gargoyle",[16169]="Hastings",[16170]="Coldmist Stalker",[16171]="Coldmist Widow",[16172]="Damaged Necrotic Shard",[16173]="Shadowbat",[16174]="Greater Shadowbat",[16175]="Vampiric Shadowbat",[16176]="Shadowbeast",[16177]="Dreadbeast",[16178]="Phase Hound",[16179]="Hyakiss the Lurker",[16180]="Shadikith the Glider",[16181]="Rokad the Ravager",[16183]="Courier Dawnstrider",[16184]="Nerubian Overseer",[16185]="Anathos",[16186]="Vara",[16187]="Quartermaster Lymel",[16189]="Skymaster Sunwing",[16191]="Sathren Azuredawn",[16192]="Skymistress Gloaming",[16193]="Skeletal Smith",[16194]="Unholy Axe",[16196]="Apothecary Thedra",[16197]="Arcanist Vandril",[16198]="Apothecary Renzithen",[16199]="Magister Darenis",[16200]="Deathstalker Rathiel",[16201]="Geranis Whitemorn",[16202]="Farstrider Sedina",[16203]="Ranger Vynna",[16204]="Magister Idonis",[16205]="Magistrix Aminel",[16206]="Apprentice Varnis",[16208]="Apothecary Enith",[16209]="Ranger Vedoran",[16210]="Magistrix Landra Dawnstrider",[16211]="Naxxramas Combat Dummy",[16212]="Dispatch Commander Metz",[16213]="Ranger Lethvalin",[16215]="Unholy Staff",[16216]="Unholy Swords",[16217]="Lieutenant Tomathren",[16218]="Tesla Coil",[16219]="Ranger Valanna",[16220]="Captain Helios",[16221]="Silvermoon Guardian",[16222]="Silvermoon City Guardian",[16224]="Rathis Tomber",[16225]="Pack Mule",[16226]="Guard Didier",[16227]="Bragok",[16228]="Argent Dawn Infantry",[16229]="Injured Argent Dawn Infantry",[16230]="Cultist Engineer",[16231]="Dame Auriferous",[16232]="Caravan Mule",[16236]="Eye Stalk",[16237]="Magister Sylastor",[16238]="Night Elf Ambusher",[16239]="Magister Kaendris",[16240]="Arcanist Janeda",[16241]="Argent Recruiter",[16242]="Tranquillien Scout",[16243]="Plague Slime",[16244]="Infectious Ghoul",[16245]="Luzran",[16246]="Knucklerot",[16247]="Borgoth the Bloodletter",[16248]="Jurion the Deceiver",[16249]="Masophet the Black",[16250]="Mirdoran the Fallen",[16251]="Deathstalker Maltendis",[16252]="High Executor Mavren",[16253]="Master Chef Mouldier",[16254]="Field Marshal Chambers",[16255]="Argent Scout",[16256]="Jessica Chambers",[16257]="Geron",[16258]="Farsil",[16259]="Sheri",[16260]="Areyn",[16261]="Sathiel",[16262]="Landraelanis",[16263]="Paelarin",[16264]="Winaestra",[16266]="Celoenus",[16267]="Daestra",[16268]="Eralan",[16269]="Garridel",[16270]="Hannovia",[16271]="Telenus",[16272]="Kanaria",[16273]="Mathreyn",[16274]="Narina",[16275]="Noellene",[16276]="Ponaris",[16277]="Quarelestra",[16278]="Sathein",[16279]="Tannaria",[16280]="Perascamin",[16281]="Keeper of the Rolls",[16283]="Packmaster Stonebruiser",[16284]="Argent Medic",[16285]="Argent Emissary",[16286]="Spore",[16287]="Ambassador Sunsorrow",[16288]="Advisor Sorrelon",[16289]="Advisor Valwyn",[16290]="Irradiated Slime",[16291]="Magister Quallestis",[16292]="Aquantion",[16293]="Apprentice Shatharia",[16294]="Aldaron the Reckless",[16295]="Ranger Lilatha",[16297]="Mutated Grub",[16298]="Spectral Soldier",[16299]="Skeletal Shocktrooper",[16300]="Risen Creeper",[16301]="Risen Hungerer",[16302]="Risen Stalker",[16303]="Dreadbone Skeleton",[16304]="Arcane Devourer",[16305]="Dreadbone Sentinel",[16306]="Scourge Invasion Minion spawner Ghost/Ghoul",[16307]="Deathcage Scryer",[16308]="Deathcage Sorcerer",[16309]="Gangled Cannibal",[16310]="Mana Shifter",[16311]="Phantasmal Watcher",[16313]="Nerubis Guard",[16314]="Fallen Ranger",[16315]="Deatholme Acolyte",[16316]="Stonewing Tracker",[16317]="Deatholme Necromancer",[16318]="Deatholme Darkmage",[16319]="Nerubis Centurion",[16320]="Eye of Dar'Khan",[16321]="Wailer",[16322]="Gangled Flesheater",[16323]="Phantasmal Seeker",[16324]="Stonewing Slayer",[16325]="Quel'dorei Ghost",[16326]="Quel'dorei Wraith",[16327]="Ravening Apparition",[16328]="Vengeful Apparition",[16329]="Dar'Khan Drathir",[16330]="Sentinel Spy",[12794]="Stone Guard Zarg",[12794]="Stone Guard Zarg",[18525]="G'eras",[19044]="Gruul the Dragonkiller",[15690]="Prince Malchezaar",[12795]="First Sergeant Hola'mahi",[12784]="Lieutenant Jackspring",[18831]="High King Maulgar",[12785]="Sergeant Major Clate",[17225]="Nightbane",[22917]="Illidan Stormrage",[17257]="Magtheridon",[17798]="Warlord Kalithresh",[12792]="Lady Palanseer",[17711]="Doomwalker",[21432]="Almaador",[1448]="Neal Allen",[16808]="Warchief Kargath Bladefist",[17942]="Quagmirran",[16117]="Plagued Swine",[17904]="Fedryen Swiftspear",[15687]="Moroes",[9298]="Donova Snowden",[12777]="Captain Dirgehammer",[18708]="Murmur",[19220]="Pathaleon the Calculator",[18728]="Doom Lord Kazzak",[19331]="Quartermaster Enuril",[17199]="Ravager Specimen",[21643]="Alurmi",[15689]="Netherspite",[21655]="Nakodu",[17527]="Enraged Ravager",[16152]="Attumen the Huntsman",[4229]="Mythrin'dir",[22123]="Rip-Blade Ravager",[17377]="Keli'dan the Breaker",[17881]="Aeonus",[19622]="Kael'thas Sunstrider",[12919]="Nat Pagle",[18096]="Epoch Hunter",[19321]="Quartermaster Endarin",[10738]="High Chief Winterfall",[18473]="Talon King Ikiss",[17308]="Omor the Unscarred",[17977]="Warp Splinter",[25315]="Kil'jaeden",[4561]="Daniel Bartlett",[15691]="The Curator",[17306]="Watchkeeper Gargolmar",[23381]="Tydormu",[4877]="Jandia",[17657]="Logistics Officer Ulrike",[16524]="Shade of Aran",[16181]="Rokad the Ravager",[15688]="Terestian Illhoof",[2626]="Old Man Heming",[12022]="Lorelae Wintersong",[17585]="Quartermaster Urgronn",[16457]="Maiden of Virtue",[21212]="Lady Vashj",[17252]="Felguard",[27722]="Drolig Blastpipe",[18733]="Fel Reaver",[17381]="The Maker",[23489]="Drake Dealer Hurlunk",[17870]="Angered Nether-wraith",[16812]="Barnes",[17941]="Mennu the Betrayer",[20912]="Harbinger Skyriss",[17380]="Broggok",[1666]="Kam Deepfury",[18960]="Rungor",[17882]="The Black Stalker",[23035]="Anzu",[18373]="Exarch Maladaar",[20242]="Karaaz",[12793]="Brave Stonehide",[14754]="Kelm Hargunth",[18341]="Pandemonius",[17968]="Archimonde",[17537]="Vazruden",[14753]="Illiyana Moonblaze",[12781]="Master Sergeant Biggins",[16807]="Grand Warlock Nethekurse",[644]="Rhahk'Zor",[20241]="Provisioner Nasela",[3914]="Rethilgore",[19778]="Farii",[18382]="Mycah",[22930]="Yor",[20791]="Iorioa",[22037]="Smith Gorlunk",[18667]="Blackheart the Inciter",[18371]="Shirrak the Dead Watcher",[22113]="Mordenai",[14581]="Sergeant Thunderhorn",[18105]="Ghaz'an",[16932]="Razorfang Hatchling",[6906]="Baelog",[4424]="Aggem Thorncurse",[8137]="Gikkix",[21838]="Terokk",[20240]="Trader Narasu",[18775]="Lebowski",[18772]="Hama",[17423]="Harbinger Mikolaas",[13219]="Jekyll Flandring",[19516]="Void Reaver",[18731]="Ambassador Hellmaw",[18344]="Nexus-Prince Shaffar",[18756]="Haris Pilton",[19514]="Al'ar",[3671]="Lady Anacondra",[20885]="Dalliah the Doomsayer",[23385]="Simon Unit",[20500]="Olrokk",[15989]="Sapphiron",[22213]="Gidge Spellweaver",[13217]="Thanthaldis Snowgleam",[7867]="Thorkaf Dragoneye",[20511]="Ilsa Blusterbrew",[17909]="Lauranna Thar'well",[12782]="Captain O'Neal",[10435]="Magistrate Barthilas",[13216]="Gaelden Hammersmith",[19775]="Kalinda",[21217]="The Lurker Below",[19052]="Lorokeem",[6487]="Arcanist Doan",[23863]="Zul'jin",[22208]="Nasmara Moonsong",[18990]="Burko",[18911]="Juno Dufrain",[10920]="Kelek Skykeeper",[3977]="High Inquisitor Whitemane",[20616]="Asuur",[19189]="Quillfang Skitterer",[20807]="Inscriber Saalyn",[17770]="Hungarfen",[21215]="Leotheras the Blind",[17521]="The Big Bad Wolf",[18478]="Avatar of the Martyred",[18584]="Sal'salabim",[24664]="Kael'thas Sunstrider",[3954]="Dalria",[18166]="Khadgar",[27668]="Ontok Shatterhorn",[20080]="Galgrom",[18343]="Tavarok",[15126]="Rutherford Twing",[18805]="High Astromancer Solarian",[18411]="Durn the Hungerer",[16819]="Force Commander Danath Trollbane",[9938]="Magmus",[17880]="Temporus",[22212]="Andrion Darkspinner",[17975]="High Botanist Freywinn",[15550]="Attumen the Huntsman",[18749]="Dalinna",[20097]="Nula the Butcher",[19252]="High Enchanter Bardolan",[3976]="Scarlet Commander Mograine",[19004]="Vodesiin",[22871]="Teron Gorefiend",[18467]="Dreadfang Widow",[15127]="Samuel Hawke",[21216]="Hydross the Unstable",[15990]="Kel'Thuzad",[639]="Edwin VanCleef",[18338]="Highlord Kruul",[3983]="Interrogator Vishas",[15501]="Aleinia",[16246]="Knucklerot",[11878]="Nathanos Blightcaller",[17301]="Shattered Hand Executioner",[2381]="Micha Yance",[12043]="Kulwia",[16097]="Isalien",[12796]="Raider Bork",[18168]="The Crone",[18773]="Johan Barnes",[18802]="Alchemist Gribble",[21465]="David Wayne",[18753]="Felannia",[22323]="Incandescent Fel Spark",[19942]="Agent Proudwell",[19284]="Invading Felguard",[11189]="Qia",[17808]="Anetheron",[25741]="M'uru",[16934]="Quillfang Ravager",[18472]="Darkweaver Syth",[16179]="Hyakiss the Lurker",[25032]="Eldara Dawnrunner",[7866]="Peter Galen",[24882]="Brutallus",[21213]="Morogrim Tidewalker",[8836]="Battle Chicken",[17991]="Rokmar the Crackler",[12783]="Lieutenant Karter",[2810]="Hammon Karwn",[3673]="Lord Serpentis",[17826]="Swamplord Musel'ek",[20096]="Uriku",[20124]="Kradu Grimblade",[7441]="Winterfall Totemic",[4275]="Archmage Arugal",[14567]="Derotain Mudsipper",[19213]="Eiin",[642]="Sneed's Shredder",[3670]="Lord Pythas",[19662]="Aaron Hollman",[3975]="Herod",[20749]="Scalewing Serpent",[17796]="Mekgineer Steamrigger",[22947]="Mother Shahraz",[12201]="Princess Theradras",[22242]="Bash'ir Spell-Thief",[13218]="Grunnda Wolfheart",[18531]="Magistrix Fyalenn",[21214]="Fathom-Lord Karathress",[2805]="Deneb Walker",[18751]="Kalaen",[16809]="Warbringer O'mrogg",[4421]="Charlga Razorflank",[18697]="Chief Engineer Lorthander",[4542]="High Inquisitor Fairbanks",[20278]="Vixton Pinchwhistle",[2748]="Archaedas",[16588]="Apothecary Antonivich",[19191]="Arazzius the Cruel",[17613]="Archmage Alturus",[18774]="Tatiana",[17534]="Julianne",[5992]="Ashmane Boar",[18752]="Zebig",[18180]="Hemet Nesingwary",[20136]="Sunfury Researcher",[23026]="Twilight Serpent",[19063]="Hamanar",[19663]="Madame Ruby",[21183]="Oronok Torn-heart",[27703]="Ysuria",[19952]="Bloodmaul Geomancer",[19837]="Daga Ramba",[4752]="Kildar",[6546]="Tabetha",[3653]="Kresh",[17536]="Nazan",[17558]="Caza'rez",[12380]="Unliving Resident",[25038]="Felmyst",[22898]="Supremus",[20510]="Brunn Flamebeard",[23872]="Coren Direbrew",[19298]="Warbringer Arix'Amal",[17842]="Azgalor",[18732]="Grandmaster Vorpil",[6908]="Olaf",[21061]="Enraged Fire Spirit",[731]="King Bangalash",[18853]="Sunfury Bloodwarder",[9019]="Emperor Dagran Thaurissan",[19219]="Mechano-Lord Capacitus",[10184]="Onyxia",[4543]="Bloodmage Thalnos",[24393]="The Rokk",[19221]="Nethermancer Sepethrea",[18537]="Adyen the Lightwarden",[5828]="Humar the Pridelord",[19349]="Thornfang Ravager",[7868]="Sarah Tanner",[22310]="Storming Wind-Ripper",[10440]="Baron Rivendare",[8125]="Dirge Quikcleave",[17637]="Mack Diver",[16933]="Razorfang Ravager",[20514]="Searing Elemental",[21302]="Shadow Council Warlock",[22948]="Gurtogg Bloodboil",[7800]="Mekgineer Thermaplugg",[3654]="Mutanus the Devourer",[20886]="Wrath-Scryer Soccothrates",[23054]="Kael'thas Sunstrider",[16583]="Rohok",[17797]="Hydromancer Thespia",[7232]="Borgus Steelhand",[17518]="Ythyar",[24850]="Kalecgos",[9736]="Quartermaster Zigris",[17767]="Rage Winterchill",[16180]="Shadikith the Glider",[17591]="Blood Elf Bandit",[7869]="Brumn Winterhoof",[20084]="Image of Nexus-Prince Haramad",[11191]="Lilith the Lithe",[18867]="Mana Seeker",[18877]="Nether Drake",[4420]="Overlord Ramtusk",[4494]="Scarlet Spellbinder",[1285]="Thurman Mullby",[12225]="Celebras the Cursed",[17533]="Romulo",[6109]="Azuregos",[11178]="Borgosh Corebender",[21060]="Enraged Air Spirit",[19227]="Griftah",[18257]="Gutripper",[17848]="Lieutenant Drake",[16151]="Midnight",[13476]="Balai Lok'Wein",[19074]="Skreah",[18695]="Ambassador Jerrikar",[19521]="Arrond",[16773]="Handiir",[23163]="Gezzarak the Huntress",[3955]="Shandrina",[11492]="Alzzin the Wildshaper",[19296]="Innkeeper Biribi",[14436]="Mor'zul Bloodbringer",[18484]="Wind Trader Lathrai",[7870]="Caryssia Moonhunter",[16816]="Echo of Medivh",[20880]="Eredar Deathbringer",[3974]="Houndmaster Loksey",[22311]="Raging Fire-Soul",[19772]="Spirit Sage Gartok",[23029]="Talonsworn Forest-Rager",[21905]="Veynna Dawnstar",[17879]="Chrono Lord Deja",[24560]="Priestess Delrissa",[15608]="Medivh",[15179]="Mishta",[18776]="Rorelien",[25976]="Theremis",[7267]="Chief Ukorz Sandscalp",[9041]="Warder Stilgiss",[18255]="Apprentice Darius",[22924]="Arthorn Windsong",[18779]="Hurnak Grimmord",[9636]="Kireena",[23007]="Paulsta'ats",[14921]="Rin'wosho the Trader",[5709]="Shade of Eranikus",[4422]="Agathelos the Raging",[7358]="Amnennar the Coldbringer",[11519]="Bazzalan",[21906]="Kelara",[3230]="Nazgrel",[7947]="Vivianna",[5775]="Verdan the Everliving",[9237]="War Master Voone",[18481]="A'dal",[20914]="Aalun",[23428]="Jho'nass",[19186]="Kylene",[4730]="Lelanai",[6168]="Roogug",[7456]="Winterspring Screecher",[20494]="Dama Wildmane",[18005]="Haalrun",[18747]="Krugosh",[18866]="Mageslayer",[19184]="Mildred Fletcher",[25580]="Old Man Barlo",[9451]="Scarlet Archmage",[3313]="Trak'gen",[10429]="Warchief Rend Blackhand",[7273]="Gahz'rilla",[9033]="General Angerforge",[9025]="Lord Roccor",[12236]="Lord Vyletongue",[4887]="Ghamoo-ra",[4897]="Helenia Olden",[19232]="Innkeeper Haelthol",[17634]="K. Lee Smallfry",[15419]="Kania",[2664]="Kelsey Yance",[18203]="Murkblood Raider",[7871]="Se'Jib",[643]="Sneed",[12379]="Unliving Caretaker",[17841]="Ysiel Windsinger",[4278]="Commander Springvale",[4274]="Fenrus the Devourer",[17980]="Laj",[4279]="Odo the Blindwatcher",[12258]="Razorlash",[7272]="Theka the Martyr",[2850]="Broken Tooth",[21466]="Harbinger Skyriss",[16640]="Keelen Sheets",[12377]="Wailing Spectre",[3887]="Baron Silverlaine",[17535]="Dorothee",[25840]="Entropius",[5491]="Arthur the Faithful",[12378]="Damned Soul",[1286]="Edna Mullby",[10363]="General Drakkisath",[23367]="Grella",[23128]="Master Pyreanor",[17862]="Captain Skarloc",[24239]="Hex Lord Malacrass",[22887]="High Warlord Naj'entus",[17888]="Kaz'rogal",[7275]="Shadowpriest Sezz'ziz",[24744]="Vexallus",[4829]="Aku'mai",[23386]="Gan'arg Analyzer",[416]="Imp",[19880]="Nether-Stalker Khay'ji",[21981]="Overseer Nuaar",[9816]="Pyroguard Emberseer",[4732]="Randal Hunter",[16826]="Sid Limbardi",[4832]="Twilight Lord Kelris",[3886]="Razorclaw the Butcher",[3927]="Wolf Master Nandos",[20870]="Zereketh the Unbound",[17204]="Farseer Nobundo",[7432]="Frostsaber Stalker",[4831]="Lady Sarevess",[8126]="Nixx Sprocketspring",[9018]="High Interrogator Gerstahn",[18940]="Nutral",[21315]="Ruul the Darkener",[19773]="Spirit Sage Zran",[10811]="Archivist Galford",[8983]="Golem Lord Argelmach",[9319]="Houndmaster Grebmar",[11035]="Betina Bigglezink",[9696]="Bloodaxe Worg",[20028]="Doba",[23008]="Ethereum Jailor",[1763]="Gilnid",[11146]="Ironus Coldsteel",[18261]="Lantresor of the Blade",[23326]="Nethermine Ravager",[18530]="Voren'thal the Seer",[9031]="Anub'shiah",[8443]="Avatar of Hakkar",[647]="Captain Greenskin",[20448]="Commander Ameer",[17008]="Gul'dan",[18777]="Jelena Nightsky",[10506]="Kirtonos the Herald",[21956]="Rema",[18464]="Warp Stalker",[20916]="Xerintha Ravenoak",[10813]="Balnazzar",[21797]="Ancient Shadowmoon Spirit",[18423]="Cho'war the Pillager",[18015]="Gambarinka",[21004]="Lesser Nether Drake",[27705]="Lorrin Foxfire",[20772]="Netherock",[10430]="The Beast",[20130]="Andormu",[17512]="Arred",[26352]="Big Zokk Torquewrench",[21180]="Demon Hunter Initiate",[27721]="Drelik Blastpipe",[20604]="Dugiru",[17923]="Fahssn",[19373]="Mari Stonehand",[7370]="Restless Shade",[25977]="Yrma",[22427]="Zarevhi",[9016]="Bael'Gar",[15727]="C'Thun",[13596]="Rotgrip",[21454]="Ashtongue Warrior",[3546]="Bernie Heisten",[6498]="Devilsaur",[18471]="Gurgthock",[2681]="Vilebranch Raiding Wolf",[18334]="Wild Elekk",[10436]="Baroness Anastari",[25165]="Lady Sacrolash",[13282]="Noxxion",[18398]="Brokentoe",[17132]="Clefthoof Bull",[18466]="Dreadfang Lurker",[21123]="Felsworn Scalewing",[20808]="Inscriber Veredis",[20332]="Nether Dragon",[14847]="Professor Thaddeus Paleo",[6231]="Techbot",[23426]="The Illidari Council",[18875]="Zaxxis Raider",[17976]="Commander Sarannis",[13601]="Tinkerer Gizlock",[7271]="Witch Doctor Zum'rah",[345]="Bellygrub",[2803]="Malygen",[18864]="Mana Wraith",[16274]="Narina",[4830]="Old Serra'kis",[16280]="Perascamin",[16528]="Provisioner Vredigar",[16729]="Refik",[23449]="Yuula",[15511]="Lord Kri",[11583]="Nefarian",[18417]="Altruis the Sufferer",[18991]="Aresella",[91914]="Auction House",[19554]="Dimensius the All-Devouring",[12939]="Doctor Gustaf VanHowzen",[832]="Dust Devil",[21784]="Ghostrider of Karabor",[8139]="Jabbey",[7231]="Kelgruk Bloodaxe",[7357]="Mordresh Fire Eye",[1148]="Nerrist",[7846]="Teremus the Devourer",[15510]="Fankriss the Unyielding",[25166]="Grand Warlock Alythess",[12203]="Landslide",[15192]="Anachronos",[18258]="Bach'lor",[16681]="Champion Bachi",[21050]="Enraged Earth Spirit",[25176]="Grikkin Copperspring",[18835]="Kiggler the Crazed",[5465]="Land Rager",[18750]="Shimmerscale Eel",[19350]="Thornfang Venomspitter",[6229]="Crowd Pummeler 9-60",[22950]="High Nethermancer Zerevor",[11502]="Ragnaros",[17978]="Thorngrin the Tender",[20613]="Arodis Sunblade",[645]="Cookie",[4428]="Death Speaker Jargba",[19684]="Haggard War Veteran",[25099]="Jonathan Garrett",[19575]="Qiff",[14509]="High Priest Thekal",[7795]="Hydromancer Velratha",[3669]="Lord Cobrahn",[15340]="Moam",[9568]="Overlord Wyrmthalak",[23579]="Brogg",[19784]="Coilskar Cobra",[3619]="Ghost Saber",[20555]="Goc",[5993]="Helboar",[16621]="Ileda",[12941]="Jase Farlane",[18832]="Krosh Firehand",[16249]="Masophet the Black",[16641]="Melaris",[16851]="Mirren Longbeard",[19755]="Mo'arg Weaponsmith",[646]="Mr. Smite",[11536]="Quartermaster Miranda Breechlock",[21728]="Skettis Surger",[18408]="Warden Moi'bff Jill",[17884]="Watcher Jhang",[6235]="Electrocutioner 6000",[9027]="Gorosh the Dervish",[9028]="Grizzle",[9032]="Hedrum the Creeper",[17546]="Roar",[18596]="Arcanist Adyria",[18497]="Auchenai Monk",[3123]="Bloodtalon Scythemaw",[18127]="Bog Lord",[17136]="Boulderfist Warrior",[16624]="Gelanthis",[10339]="Gyth",[1493]="Mok'rash",[23363]="Sahaak",[11737]="Stonelash Flayer",[11520]="Taragaman the Hungerer",[18672]="Thomas Yance",[18407]="Warden Bullrok",[10916]="Winterfall Runner",[10808]="Timmy the Cruel",[18581]="Alliance Field Scout",[27667]="Anwehu",[16585]="Cookie One-Eye",[4218]="Denatharion",[6243]="Gelihast",[2821]="Keena",[11176]="Krathok Moltenfist",[3436]="Kuz",[10502]="Lady Illucia Barov",[24868]="Niobe Whizzlespark",[16275]="Noellene",[20673]="Swiftwing Shredder",[17584]="Torallius the Pack Handler",[9017]="Lord Incendius",[7023]="Obsidian Sentinel",[15339]="Ossirian the Unscarred",[6910]="Revelosh",[3674]="Skum",[16646]="Alamma",[16705]="Altaa",[19042]="Leeli Longhaggle",[1317]="Lucan Cordell",[12805]="Officer Areyn",[18693]="Speaker Mar'grom",[17131]="Talbuk Thorngrazer",[17307]="Vazruden the Herald",[21801]="Vhel'kur",[18011]="Zurai",[23574]="Akil'zon",[8127]="Antu'sul",[20923]="Blood Guard Porung",[7291]="Galgann Firehammer",[4854]="Grimlok",[9537]="Hurley Blackbreath",[19940]="Apex",[5493]="Arnold Leland",[18771]="Brumman",[23324]="Crazed Murkblood Miner",[1853]="Darkmaster Gandling",[18987]="Gaston",[15194]="Hermit Ortell",[23139]="Overlord Mor'ghor",[10741]="Sian-Rotam",[19038]="Supply Officer Mills",[24688]="Wretched Skulker",[16782]="Yatheon",[7057]="Digmaster Shovelphlange",[7361]="Grubbis",[9499]="Plugger Spazzring",[10439]="Ramstein the Gorger",[8580]="Atal'alarion",[16973]="Bonestripper Vulture",[20981]="Dealer Najeeb",[21042]="Dire Raven",[1346]="Georgio Bolero",[12197]="Glordrum Steelbeard",[1842]="Highlord Taelan Fordring",[18670]="Ironjaw",[16388]="Koren",[12944]="Lokhtos Darkbargainer",[16829]="Magus Zabraxis",[16253]="Master Chef Mouldier",[23051]="Monstrous Kaliri",[19201]="Mountain Gronn",[22357]="Reth'hedron the Subduer",[4499]="Rok'Alim the Pounder",[21864]="Scorchshell Pincer",[14890]="Taerar",[66]="Tharynn Bouden",[17578]="Training Dummy",[14026]="Trigger Guse",[21979]="Val'zareq the Conqueror",[17894]="Windcaller Claw",[9196]="Highlord Omokk",[7796]="Nekrum Gutchewer",[10584]="Urok Doomhowl",[7079]="Viscous Fallout",[15306]="Bor Wildmane",[21032]="Dreadwing",[20407]="Farseer Umbrua",[10812]="Grand Crusader Dathrohan",[11518]="Jergosh the Invoker",[11036]="Leonid Barthalomew the Revered",[12397]="Lord Kazzak",[23140]="Taskmaster Varkule Dragonbreath",[25139]="[PH] Bri's Test NPC",[9156]="Ambassador Flamelash",[7206]="Ancient Stone Keeper",[22181]="Aether Ray",[10917]="Aurius",[18836]="Blindeye the Seer",[18089]="Bloodscale Slavedriver",[20986]="Dealer Tariq",[5885]="Deino",[7445]="Elder Shardtooth",[18898]="Explodyne Fizzlespurt",[16290]="Fallout Slime",[4329]="Firemane Scout",[16823]="Humphry",[4614]="Martha Alliestar",[17468]="Prophet Velen",[22100]="Scorpid Bonecrawler",[20634]="Scythetooth Raptor",[23230]="Shartuul",[25046]="Smith Hauthaa",[11033]="Smokey LaRue",[10267]="Tinkee Steamboil",[22298]="Vile Fire-Soul",[12033]="Wulan",[15516]="Battleguard Sartura",[23420]="Essence of Anger",[22841]="Shade of Akama",[17547]="Tinhead",[11073]="Annora",[19540]="Asarnan",[989]="Banalash",[18988]="Baxter",[1716]="Bazil Thredd",[20138]="Culuthas",[19678]="Fantei",[24780]="Field Repair Bot 110G",[15079]="Fishbot 5000",[18265]="Gezhe",[17717]="Knight-Lord Bloodvalor",[16802]="Lor'themar Theron",[12902]="Lorgus Jett",[3499]="Ranik",[14031]="Trigger Vipore",[22429]="Vekax",[921]="Venture Co. Lumberjack",[18124]="Withered Giant",[23578]="Jan'alai",[10438]="Maleki the Pallid",[17582]="-",[23267]="Arvoar the Rapacious",[23391]="Bash'ir",[17269]="Bleeding Hollow Darkcaster",[17014]="Collapsing Voidwalker",[3110]="Dreadmaw Crocolisk",[17885]="Earthbinder Rayge",[7572]="Fallen Hero of the Horde",[16657]="Feera",[8567]="Glutton",[2351]="Gray Bear",[12042]="Loganaar",[16042]="Lord Valthalak",[16755]="Lunaraa",[17157]="Shattered Rumbler",[19707]="Sunfury Archer",[15206]="The Duke of Cynders",[7132]="Toxic Horror",[3692]="Volcor",[7442]="Winterfall Pathfinder",[18858]="Wrathbringer",[17830]="Zelemar the Wrathful",[7952]="Zjolnir",[9056]="Fineous Darkvire",[7228]="Ironaya",[11032]="Malor the Zealous",[9543]="Ribbly Screwspigot",[9236]="Shadow Hunter Vosh'gajin",[10516]="The Unforgiven",[21700]="Akama",[2806]="Bale",[12876]="Baron Aquanis",[19536]="Dealer Jadyan",[23572]="Drazzit Dripvalve",[19796]="Eclipsion Archmage",[18723]="Erozion",[7433]="Frostsaber Huntress",[7097]="Ironbeak Owl",[7109]="Jadefire Felsworn",[4753]="Jartsam",[5286]="Longtooth Runner",[14368]="Lorekeeper Lydros",[3362]="Ogunaro Wolfrunner",[23159]="Okuno",[4158]="Salt Flats Vulture",[14682]="Sever",[10737]="Shy-Rotam",[18882]="Sundered Thunderer",[17205]="Temper",[1855]="Tirion Fordring",[1460]="Unger Statforth",[4731]="Zachariah Post",[10997]="Cannon Master Willey",[5710]="Jammal'an the Prophet",[10437]="Nerub'enkan",[17543]="Strawman",[2966]="Battleboar",[16663]="Belil",[1720]="Bruegal Ironknuckle",[15174]="Calandrath",[2393]="Christoph Jeffcoat",[19187]="Darmari",[15307]="Earthen Templar",[2611]="Fozruk",[22408]="Furious Nether-wraith",[154]="Greater Fleshripper",[10096]="High Justice Grimstone",[5353]="Itharius",[10503]="Jandice Barov",[26089]="Kayri",[16245]="Luzran",[20159]="Magister Aledis",[1696]="Targorr the Dread",[17359]="Tel'athion the Impure",[18870]="Voidshrieker",[18064]="Warmaul Shaman",[24222]="Windy Cloud",[7440]="Winterfall Den Watcher",[5721]="Dreamscythe",[11501]="King Gordok",[16943]="Cyber-Rage Forgelord",[14889]="Emeriss",[23100]="Flawless Arcane Elemental",[5713]="Gasher",[23873]="Goreclaw the Ravenous",[547]="Great Goretusk",[15350]="Horde Warbringer",[16118]="Kormok",[14846]="Lhara",[17160]="Living Cyclone",[3332]="Lumak",[25042]="Magisters' Terrace - Scryer Quest Bunny",[11278]="Magnus Frostwake",[18212]="Mudfin Frenzy",[2447]="Narillasanz",[14389]="Netherwalker",[11517]="Oggleflint",[20215]="Pentatharon",[10200]="Rak'shiri",[14822]="Sayge",[18683]="Voidhunter Yar",[19401]="Wing Commander Brack",[10220]="Halycon",[9030]="Ok'thor the Breaker",[7797]="Ruuzlu",[15263]="The Prophet Skeram",[3032]="Beram Skychaser",[18983]="Blackfang Tarantula",[18817]="Chief Researcher Kartos",[10667]="Chromie",[18461]="Dampscale Basilisk",[16329]="Dar'Khan Drathir",[1103]="Eldrin",[12097]="Frostwolf Quartermaster",[18834]="Olm the Summoner",[7996]="Qiaga the Keeper",[14693]="Scorn",[18597]="Sha'nir",[14358]="Shen'dralar Ancient",[3494]="Tinkerwiz",[18262]="Unkor the Ruthless",[17150]="Vir'aani Arcanist",[18465]="Warp Hunter",[15498]="Windcaller Yessendra",[16813]="Wravien",[15114]="Gahz'ranka",[9024]="Pyromancer Loregrain",[17548]="Tito",[5594]="Alchemist Pestlezugg",[4425]="Blind Hunter",[17271]="Bonechewer Destroyer",[5163]="Burbik Gearspanner",[5494]="Catherine Leland",[18205]="Clefthoof",[17961]="Coilfang Enchantress",[24980]="Crystal Ward",[4507]="Daisy",[17952]="Darkwater Crocolisk",[5159]="Daryl Riknussun",[12920]="Doctor Gregory Victor",[21195]="Domesticated Felboar",[3100]="Elder Mottled Boar",[18062]="Enraged Crusher",[21860]="Exarch Onaala",[21350]="Gronn-Priest",[17441]="Gurf",[715]="Hemet Nesingwary Jr.",[23437]="Indormi",[23281]="Insidion",[6382]="Jubahl Corpseseeker",[23165]="Karrog",[7363]="Kum'isha the Collector",[15305]="Lord Skwol",[22832]="Morthis Whisperwing",[680]="Mosh'Ogg Lord",[7356]="Plaguemaw the Rotting",[10477]="Scholomance Necromancer",[729]="Sin'Dall",[19935]="Soridormi",[21515]="Trachela",[14324]="Cho'Rush the Observer",[11496]="Immol'thar",[8929]="Princess Moira Bronzebeard",[5173]="Alexander Calder",[23995]="Axle",[25059]="Ayren Cloudbreaker",[6490]="Azshir the Sleepless",[15180]="Baristolth of the Shifting Sands",[6176]="Bath'rah the Windwatcher",[23286]="Black Blood of Draenor",[16644]="Botanist Nathera",[19383]="Captured Gnome",[15184]="Cenarion Hold Infantry",[18694]="Collidus the Warp-Watcher",[19538]="Dealer Senzik",[11741]="Dredge Crusher",[18538]="Ishanah",[17148]="Kil'sorrow Deathsworn",[6201]="Legashi Rogue",[3363]="Magar",[391]="Old Murk-Eye",[21499]="Overseer Ripsaw",[9166]="Pterrordax",[8177]="Rartar",[21984]="Rexxar",[22932]="Sai'kkal the Elder",[7669]="Servant of Grol",[21804]="Skettis Kaliri",[20207]="Sunfury Bowman",[21483]="Tasaldan",[5807]="The Rake",[5955]="Tooga",[17212]="Tuluun",[21251]="Underbog Colossus",[22949]="Gathios the Shatterer",[15348]="Kurinnaxx",[16011]="Loatheb",[10596]="Mother Smolderweb",[15954]="Noth the Plaguebringer",[15517]="Ouro",[21485]="Aldraan",[15351]="Alliance Brigadier General",[21402]="Anchorite Ceyla",[16952]="Anger Guard",[18754]="Barim Spilthoof",[7954]="Binjy Featherwhistle",[19995]="Bladespire Brute",[16810]="Bonechewer Backbreaker",[21662]="Cabal Tomb-Raider",[3225]="Corrupted Mottled Boar",[17158]="Dust Howler",[15652]="Elder Springpaw",[21059]="Enraged Water Spirit",[10617]="Galak Messenger",[3345]="Godan",[16229]="Injured Argent Dawn Infantry",[7107]="Jadefire Trickster",[19539]="Jazdalaad",[10509]="Jed Runewatcher",[3344]="Kardris Dreamseeker",[340]="Kendor Kabonka",[2784]="King Magni Bronzebeard",[23396]="Krixel Pinchwhistle",[11286]="Magistrate Marduke",[4461]="Murkgill Warrior",[13417]="Sagorne Creststrider",[871]="Saltscale Warrior",[18333]="Shadrek",[20142]="Steward of Time",[19576]="Xyrol",[9029]="Eviscerator",[14834]="Hakkar",[11380]="Jin'do the Hexxer",[15952]="Maexxna",[16080]="Mor Grayhoof",[12435]="Razorgore the Untamed",[4568]="Anastasia Hartwell",[18253]="Archmage Leryda",[4787]="Argent Guard Thaelrid",[3535]="Blackmoss the Fetid",[21451]="Bone Wastes - Event Trigger A",[19183]="Clefthoof Calf",[19768]="Coilskar Siren",[21469]="Daranelle",[16638]="Deynna",[18698]="Ever-Core the Punisher",[3056]="Ghost Howl",[5940]="Harn Longcast",[9862]="Jaedenar Legionnaire",[6200]="Legashi Satyr",[21174]="Magtheridon",[20618]="Mana Invader",[7771]="Marvon Rivetseeker",[21814]="Nether Drake Egg Bunny",[7406]="Oglethorpe Obnoticus",[10460]="Prospector Ironboot",[10508]="Ras Frostwhisper",[11622]="Rattlegore",[21311]="Rokgah Bloodgrip",[14488]="Roloch",[17414]="Shadowmoon Technician",[23789]="Smolderwing",[17159]="Storm Rager",[18881]="Sundered Rumbler",[6244]="Takar the Seer",[19254]="Warlord Dar'toon",[15732]="Wonderform Operator",[16061]="Instructor Razuvious",[23576]="Nalorakk",[18897]="King Dond",[9660]="Agnar Beastamer",[7505]="Bloodmage Drazial",[20779]="Congealed Void Horror",[21179]="Demon Hunter Supplicant",[21024]="Earthmender Torlok",[5297]="Elder Rage Scar",[18482]="Empoor",[8418]="Falla Sagewind",[23127]="Farseer Javad",[7735]="Felcular",[2249]="Ferocious Yeti",[18678]="Fulgorge",[17129]="Greater Windroc",[1717]="Hamhock",[18564]="Horde Field Scout",[10924]="Ivy Leafrunner"} diff --git a/id_to_npc_tbc.lua b/id_to_npc_tbc.lua new file mode 100644 index 00000000..e69de29b diff --git a/npc_to_id_classic.lua b/npc_to_id_classic.lua index 08fef6fa..0d399965 100644 --- a/npc_to_id_classic.lua +++ b/npc_to_id_classic.lua @@ -1 +1 @@ -npc_to_id = {["Flesh Eater"]=3,["Kobold Vermin"]=6,["Benny Questgiver"]=19,["Kanrethad"]=29,["Forest Spider"]=30,["Furbolg"]=31,["Harvest Golem"]=36,["Defias Thug"]=38,["Kobold Miner"]=40,["Mine Spider"]=43,["Murloc Forager"]=46,["Skeletal Warrior"]=48,["Lesser Succubus"]=49,["Corina Steele"]=54,["Mean Ed the Blacksmith"]=55,["Ruklar the Trapper"]=60,["Thuros Lightfingers"]=61,["Gug Fatcandle"]=62,["Peasant Woman"]=65,["Tharynn Bouden"]=66,["[UNUSED] Marlon Darnik"]=67,["Stormwind City Guard"]=68,["Diseased Timber Wolf"]=69,["[UNUSED] Lower Class Citizen"]=70,["Rankist"]=71,["[UNUSED] Antaris the Trader"]=72,["Veraina the Apothecary"]=73,["Kurran Steele"]=74,["[UNUSED] Vashaum Nightwither"]=75,["Janos Hammerknuckle"]=78,["Narg the Taskmaster"]=79,["Kobold Laborer"]=80,["[UNUSED] Luglar the Clogger"]=81,["Crazy Leonetti"]=82,["Infernal"]=89,["Sea Giant"]=90,["Rock Elemental"]=92,["Centaur"]=93,["Cutpurse"]=94,["Defias Smuggler"]=95,["Riverpaw Runt"]=97,["Riverpaw Taskmaster"]=98,["Morgaine the Sly"]=99,["Gruff Swiftbite"]=100,["Bronze Dragonspawn"]=102,["Garrick Padfoot"]=103,["Tall Strider"]=105,["Kodo Beast"]=106,["Raptor"]=107,["Green Dragonspawn"]=108,["White Dragonspawn"]=109,["Priest"]=111,["Priestess"]=112,["Stonetusk Boar"]=113,["Harvest Watcher"]=114,["Harvest Reaper"]=115,["Bandit"]=116,["Riverpaw Gnoll"]=117,["Prowler"]=118,["Longsnout"]=119,["Forest Stalker"]=120,["Defias Pathstalker"]=121,["Defias Highwayman"]=122,["Riverpaw Mongrel"]=123,["Riverpaw Brute"]=124,["Riverpaw Overseer"]=125,["Murloc Coastrunner"]=126,["Murloc Tidehunter"]=127,["Angry Programmer Tweedle Dee"]=128,["Angry Programmer Tweedle Dum"]=129,["Programmer Vendor"]=130,["[UNUSED] Small Black Dragon Whelp"]=149,["[UNUSED] Brother Milius"]=150,["Brog Hamfist"]=151,["Brother Danil"]=152,["Bethina"]=153,["Greater Fleshripper"]=154,["Goretusk"]=157,["[UNUSED] Ander the Monk"]=161,["[UNUSED] Small Child"]=165,["Morhan Coppertongue"]=167,["Murloc Warrior"]=171,["Dermot Johns"]=190,["Blue Dragonspawn"]=193,["Eagan Peltskinner"]=196,["Marshal McBride"]=197,["Khelden Bremen"]=198,["Young Fleshripper"]=199,["Rotting Horror"]=202,["Skeletal Mage"]=203,["[UNUSED] Cackle Flamebone"]=204,["Nightbane Dark Runner"]=205,["Nightbane Vile Fang"]=206,["Bone Chewer"]=210,["Splinter Fist Warrior"]=212,["Starving Dire Wolf"]=213,["Defias Night Runner"]=215,["Venom Web Spider"]=217,["Grave Robber"]=218,["Nillen Andemar"]=222,["Dan Golthas"]=223,["Gavin Gnarltree"]=225,["Morg Gnarltree"]=226,["Mabel Solaj"]=227,["Avette Fellwood"]=228,["Farmer Ray"]=232,["Farmer Saldean"]=233,["Marshal Gryan Stoutmantle"]=234,["Salma Saldean"]=235,["Farmer Furlbrow"]=237,["Verna Furlbrow"]=238,["Grimbooze Thunderbrew"]=239,["Marshal Dughan"]=240,["[UNUSED] Greeby Mudwhisker TEST"]=243,["Ma Stonefield"]=244,["Billy Maclure"]=247,["Gramma Stonefield"]=248,["Pa Maclure"]=250,["Maybell Maclure"]=251,["Tommy Joe Stonefield"]=252,["William Pestle"]=253,["Gerard Tiller"]=255,["Kobold Worker"]=257,["Joshua Maclure"]=258,["Guard Thomas"]=261,["Lord Ello Ebonlocke"]=263,["Commander Althea Ebonlocke"]=264,["Madame Eva"]=265,["Wiley the Black"]=266,["Clerk Daltry"]=267,["Sirra Von'Indi"]=268,["Role Dreuger"]=269,["Councilman Millstipe"]=270,["Ambassador Berrybuck"]=271,["Chef Grual"]=272,["Tavernkeep Smitts"]=273,["Barkeep Hann"]=274,["Whit Wantmal"]=275,["Viktori Prism'Antras"]=276,["Roberto Pupellyverbos"]=277,["Sara Timberlain"]=278,["Morgan Pestle"]=279,["Placeholder - Jasperlode Mine"]=280,["Brown Horse"]=284,["Murloc"]=285,["Placeholder - Darkhollow Mine"]=287,["Jitters"]=288,["Abercrombie"]=289,["Placeholder - Fargodeep Mine"]=290,["Placeholder Chest of Drawers"]=291,["Marshal Haggard"]=294,["Innkeeper Farley"]=295,["[UNUSED] Goodmother Jans"]=296,["Caretaker Folsom"]=297,["Young Wolf"]=299,["Zzarc' Vul"]=300,["Blind Mary"]=302,["Felsteed"]=304,["White Stallion"]=305,["Palomino"]=306,["Pinto"]=307,["Black Stallion"]=308,["Sven Yorgen"]=311,["Theocritus"]=313,["Eliza"]=314,["Stalvan Mistmantle"]=315,["[UNUSED] Brother Benthas"]=319,["Hogan Ference"]=325,["Goldtooth"]=327,["Zaldimar Wefhellt"]=328,["Earth Elemental"]=329,["Princess"]=330,["Maginor Dumas"]=331,["Master Mathias Shaw"]=332,["Gath'Ilzogg"]=334,["Singe"]=335,["Mazen Mac'Nadir"]=338,["[UNUSED] Helgor the Pugilist"]=339,["Kendor Kabonka"]=340,["Foreman Oslow"]=341,["Martie Jainrose"]=342,["Chef Breanna"]=343,["Magistrate Solomon"]=344,["Bellygrub"]=345,["Barkeep Daniels"]=346,["Grizzle Halfmane"]=347,["Zem Leeward"]=348,["Corporal Keeshan"]=349,["Peasant"]=351,["Dungar Longdrink"]=352,["Antonia Dart"]=353,["Black Wolf"]=356,["Timber Wolf"]=358,["Riding Wolf (Winter)"]=359,["Scott's Flying Mount"]=365,["Karm Ironquill"]=372,["Cog Glitzspinner"]=374,["Priestess Anetta"]=375,["High Priestess Laurena"]=376,["Priestess Josetta"]=377,["Darcy Parker"]=379,["Dockmaster Baren"]=381,["Marshal Marris"]=382,["Jason Mathers"]=383,["Katie Hunter"]=384,["Horse"]=385,["Porcine Entourage"]=390,["Old Murk-Eye"]=391,["Captain Grayson"]=392,["Markus"]=395,["Grand Magus Doane"]=397,["Boy - placeholder 05"]=399,["Stitches"]=412,["Verner Osgood"]=415,["Imp"]=416,["Felhunter"]=417,["Murloc Flesheater"]=422,["Redridge Mongrel"]=423,["Redridge Poacher"]=424,["Redridge Brute"]=426,["Dire Condor"]=428,["Shadowhide Darkweaver"]=429,["Redridge Mystic"]=430,["Shadowhide Slayer"]=431,["Shadowhide Brute"]=432,["Shadowhide Gnoll"]=433,["Rabid Shadowhide Gnoll"]=434,["Blackrock Champion"]=435,["Blackrock Shadowcaster"]=436,["Blackrock Renegade"]=437,["Blackrock Grunt"]=440,["Black Dragon Whelp"]=441,["Tarantula"]=442,["Redridge Alpha"]=445,["Redridge Basher"]=446,["Hogger"]=448,["Defias Knuckleduster"]=449,["Defias Renegade Mage"]=450,["Riverpaw Bandit"]=452,["Riverpaw Mystic"]=453,["Young Goretusk"]=454,["Murloc Minor Oracle"]=456,["Murloc Hunter"]=458,["Drusilla La Salle"]=459,["Alamar Grimm"]=460,["Demisette Cloyce"]=461,["Vultros"]=462,["Watch Captain Parker"]=464,["Barkeep Dobbins"]=465,["General Marcus Jonathan"]=466,["The Defias Traitor"]=467,["Town Crier"]=468,["Lieutenant Doren"]=469,["Mother Fang"]=471,["Fedfennel"]=472,["Morgan the Collector"]=473,["Rogue Wizard"]=474,["Kobold Tunneler"]=475,["Kobold Geomancer"]=476,["Riverpaw Outrunner"]=478,["Rusty Harvest Golem"]=480,["Defias Footpad"]=481,["Elling Trias"]=482,["Elaine Trias"]=483,["Blackrock Outrunner"]=485,["Tharil'zun"]=486,["Protector Bialon"]=487,["Protector Weaver"]=488,["Protector Dutfield"]=489,["Protector Gariel"]=490,["Quartermaster Lewis"]=491,["Watcher Bukouris"]=494,["Watcher Keefer"]=495,["Watcher Paige"]=499,["Riverpaw Scout"]=500,["Riverpaw Herbalist"]=501,["Benny Blaanco"]=502,["Lord Malathrom"]=503,["Defias Trapper"]=504,["Greater Tarantula"]=505,["Sergeant Brashclaw"]=506,["Fenros"]=507,["[UNUSED] Long Fang"]=509,["Water Elemental"]=510,["Insane Ghoul"]=511,["Murloc Netter"]=513,["Smith Argus"]=514,["Murloc Raider"]=515,["Murloc Oracle"]=517,["Yowler"]=518,["Slark"]=519,["Brack"]=520,["Lupos"]=521,["Mor'Ladim"]=522,["Thor"]=523,["Rockhide Boar"]=524,["Mangy Wolf"]=525,["Skeletal Fiend"]=531,["Nightbane Shadow Weaver"]=533,["Nefaru"]=534,["Pygmy Venom Web Spider"]=539,["Nalesette Wildbringer"]=543,["Murloc Nightcrawler"]=544,["Murloc Tidecaller"]=545,["Great Goretusk"]=547,["Murloc Minor Tidecaller"]=548,["Defias Messenger"]=550,["Rabid Dire Wolf"]=565,["Shadowhide Warrior"]=568,["Green Recluse"]=569,["Brain Eater"]=570,["Leprithus"]=572,["Foe Reaper 4000"]=573,["Naraxis"]=574,["Fire Elemental"]=575,["Watcher Ladimore"]=576,["Murloc Scout"]=578,["Shadowhide Assassin"]=579,["Redridge Drudger"]=580,["Old Blanchy"]=582,["Ambusher"]=583,["Kazon"]=584,["Bloodscalp Warrior"]=587,["Bloodscalp Scout"]=588,["Defias Pillager"]=589,["Defias Looter"]=590,["Defias Henchman"]=594,["Bloodscalp Hunter"]=595,["Brainwashed Noble"]=596,["Bloodscalp Berserker"]=597,["Defias Miner"]=598,["Marisa du'Paige"]=599,["Grimtooth"]=603,["Plague Spreader"]=604,["[UNUSED] Rabid Mrs. Whipple"]=612,["Blackrock Tracker"]=615,["Chatter"]=616,["Defias Conjurer"]=619,["Chicken"]=620,["Goblin Engineer"]=622,["Skeletal Miner"]=623,["Undead Excavator"]=624,["Undead Dynamiter"]=625,["Foreman Thistlenettle"]=626,["Black Ravager"]=628,["Elaine Carevin"]=633,["Defias Overseer"]=634,["Defias Blackguard"]=636,["Edwin VanCleef"]=639,["Goblin Woodcarver"]=641,["Sneed's Shredder"]=642,["Sneed"]=643,["Rhahk'Zor"]=644,["Cookie"]=645,["Mr. Smite"]=646,["Captain Greenskin"]=647,["Bridge Worker Trent"]=648,["Bridge Worker Dmitri"]=649,["Bridge Worker Jess"]=650,["Bridge Worker Daniel"]=651,["Bridge Worker Matthew"]=652,["Bridge Worker Alex"]=653,["Wilder Thistlenettle"]=656,["Defias Pirate"]=657,["Sten Stoutarm"]=658,["El Pollo Grande"]=659,["Bloodscalp Witch Doctor"]=660,["Jonathan Carevin"]=661,["Calor"]=663,["Benjamin Carevin"]=664,["Skullsplitter Warrior"]=667,["Skullsplitter Hunter"]=669,["Skullsplitter Witch Doctor"]=670,["Bloodscalp Headhunter"]=671,["Skullsplitter Spiritchaser"]=672,["Venture Co. Strip Miner"]=674,["Venture Co. Foreman"]=675,["Venture Co. Surveyor"]=676,["Venture Co. Tinkerer"]=677,["Mosh'Ogg Mauler"]=678,["Mosh'Ogg Shaman"]=679,["Mosh'Ogg Lord"]=680,["Young Stranglethorn Tiger"]=681,["Stranglethorn Tiger"]=682,["Young Panther"]=683,["Shadowmaw Panther"]=684,["Stranglethorn Raptor"]=685,["Lashtail Raptor"]=686,["Jungle Stalker"]=687,["Stone Maw Basilisk"]=688,["Crystal Spine Basilisk"]=689,["Cold Eye Basilisk"]=690,["Lesser Water Elemental"]=691,["Bloodscalp Axe Thrower"]=694,["Skullsplitter Axe Thrower"]=696,["Bloodscalp Shaman"]=697,["Bloodscalp Tiger"]=698,["Bloodscalp Beastmaster"]=699,["Bloodscalp Mystic"]=701,["Bloodscalp Scavenger"]=702,["General Fangore"]=703,["Ragged Timber Wolf"]=704,["Ragged Young Wolf"]=705,["Frostmane Troll Whelp"]=706,["Rockjaw Trogg"]=707,["Small Crag Boar"]=708,["Mosh'Ogg Warmonger"]=709,["Mosh'Ogg Spellcrafter"]=710,["Ardo Dirtpaw"]=711,["Redridge Thrasher"]=712,["Balir Frosthammer"]=713,["Talin Keeneye"]=714,["Hemet Nesingwary Jr."]=715,["Barnil Stonepot"]=716,["Ajeck Rouack"]=717,["Sir S. J. Erlgadin"]=718,["Rabbit"]=721,["Mosh'Ogg Butcher"]=723,["Burly Rockjaw Trogg"]=724,["Ironforge Mountaineer"]=727,["Bhag'thera"]=728,["Sin'Dall"]=729,["Tethis"]=730,["King Bangalash"]=731,["Murloc Lurker"]=732,["Sergeant Yohwa"]=733,["Corporal Bluth"]=734,["Murloc Streamrunner"]=735,["Panther"]=736,["Kebok"]=737,["Private Thorsen"]=738,["Brother Nimetz"]=739,["Adolescent Whelp"]=740,["Dreaming Whelp"]=741,["Green Wyrmkin"]=742,["Wyrmkin Dreamwalker"]=743,["Green Scalebane"]=744,["Scalebane Captain"]=745,["Elder Dragonkin"]=746,["Marsh Murloc"]=747,["Marsh Inkspewer"]=750,["Marsh Flesheater"]=751,["Marsh Oracle"]=752,["Rebel Watchman"]=754,["Lost One Mudlurker"]=755,["Skullsplitter Panther"]=756,["Lost One Fisherman"]=757,["Lost One Hunter"]=759,["Lost One Muckdweller"]=760,["Lost One Seer"]=761,["Lost One Riftseeker"]=762,["Lost One Chieftain"]=763,["Swampwalker"]=764,["Swampwalker Elder"]=765,["Tangled Horror"]=766,["Swamp Jaguar"]=767,["Shadow Panther"]=768,["Deathstrike Tarantula"]=769,["Corporal Kaleb"]=770,["Commander Felstrom"]=771,["Stranglethorn Tigress"]=772,["Krazek"]=773,["Kurzen's Agent"]=775,["Amy Davenport"]=777,["Skullsplitter Mystic"]=780,["Skullsplitter Headhunter"]=781,["Skullsplitter Scout"]=782,["Skullsplitter Berserker"]=783,["Skullsplitter Beastmaster"]=784,["Skeletal Warder"]=785,["Grelin Whitebeard"]=786,["Skeletal Healer"]=787,["Kimberly Hiett"]=789,["Karen Taylor"]=790,["Lindsay Ashlock"]=791,["Kara Adams"]=793,["Matt"]=794,["Mark"]=795,["Joshua"]=796,["Bo"]=797,["Solomon"]=798,["Kevin"]=799,["Kyle"]=800,["Eric"]=801,["Jay"]=802,["Dana"]=804,["Cameron"]=805,["John"]=806,["Lisa"]=807,["Grik'nir the Cold"]=808,["Aaron"]=810,["Jose"]=811,["Alma Jainrose"]=812,["Colonel Kurzen"]=813,["Sergeant Malthus"]=814,["Bookie Herod"]=815,["Mai'Zoth"]=818,["Servant of Ilgalar"]=819,["Scout Riell"]=820,["Captain Danuvin"]=821,["Young Forest Bear"]=822,["Sergeant Willem"]=823,["Defias Digger"]=824,["Watcher Jan"]=826,["Watcher Mocarski"]=827,["Watcher Petras"]=828,["Adlin Pridedrift"]=829,["Sand Crawler"]=830,["Sea Crawler"]=831,["Unbound Cyclone"]=832,["Coyote Packleader"]=833,["Coyote"]=834,["Durnan Furcutter"]=836,["Branstock Khalder"]=837,["Watcher Backus"]=840,["Lumberjack"]=842,["Gina MacGregor"]=843,["Antonio Perelli"]=844,["Rotten Ghoul"]=846,["Nathan"]=847,["Madison"]=848,["Rachel"]=849,["Erin"]=850,["Hannah"]=851,["Feral Spirit"]=852,["Coldridge Mountaineer"]=853,["Young Jungle Stalker"]=854,["Young Stranglethorn Raptor"]=855,["Young Lashtail Raptor"]=856,["Donal Osgood"]=857,["Sorrow Spinner"]=858,["Guard Berton"]=859,["Stonard Scout"]=861,["Stonard Explorer"]=862,["Stonard Hunter"]=863,["Stonard Orc"]=864,["Stonard Wayfinder"]=865,["Stonard Grunt"]=866,["Stonard Cartographer"]=867,["Stonard Shaman"]=868,["Protector Dorana"]=869,["Protector Deni"]=870,["Saltscale Warrior"]=871,["Saltscale Oracle"]=873,["Protector Korelor"]=874,["Saltscale Tide Lord"]=875,["Protector Leick"]=876,["Saltscale Forager"]=877,["Scout Galiaan"]=878,["Saltscale Hunter"]=879,["Erlan Drudgemoor"]=880,["Surena Caledon"]=881,["Deer"]=883,["Watcher Keller"]=885,["Watcher Hartin"]=886,["Watcher Jordan"]=887,["Watcher Dodds"]=888,["Splinter Fist Ogre"]=889,["Fawn"]=890,["Splinter Fist Fire Weaver"]=891,["Splinter Fist Taskmaster"]=892,["Lars"]=893,["Homer Stonefield"]=894,["Thorgas Grimson"]=895,["Veldan Lightfoot"]=896,["Nightbane Worgen"]=898,["Bailiff Conacher"]=900,["Guard Howe"]=903,["Sharptooth Frenzy"]=905,["Maximillian Crowe"]=906,["Keras Wolfheart"]=907,["Flora Silverwind"]=908,["Defias Night Blade"]=909,["Defias Enchanter"]=910,["Llane Beshere"]=911,["Thran Khorman"]=912,["Lyria Du Lac"]=913,["Ander Germaine"]=914,["Jorik Kerridan"]=915,["Solm Hargrin"]=916,["Keryn Sylvius"]=917,["Osborne the Night Man"]=918,["Nightbane Tainted One"]=920,["Venture Co. Lumberjack"]=921,["Silt Crawler"]=922,["Young Black Ravager"]=923,["Brother Sammuel"]=925,["Bromos Grummner"]=926,["Brother Wilhelm"]=927,["Lord Grayson Shadowbreaker"]=928,["Black Widow Hatchling"]=930,["Ariena Stormfeather"]=931,["Guard Ashlock"]=932,["Guard Hiett"]=933,["Guard Clarke"]=934,["Guard Pearce"]=935,["Guard Adams"]=936,["Kurzen Jungle Fighter"]=937,["Kurzen Commando"]=938,["Kurzen Elite"]=939,["Kurzen Medicine Man"]=940,["Kurzen Headshrinker"]=941,["Kurzen Witch Doctor"]=942,["Kurzen Wrangler"]=943,["Marryk Nurribit"]=944,["Rybrad Coldbank"]=945,["Frostmane Novice"]=946,["Rohh the Silent"]=947,["Rotted One"]=948,["Carrion Recluse"]=949,["Swamp Talker"]=950,["Brother Paxton"]=951,["Brother Neals"]=952,["Kat Sampson"]=954,["Sergeant De Vries"]=955,["Dorin Songblade"]=956,["Dane Lindgren"]=957,["Dawn Brightstar"]=958,["Morley Eberlein"]=959,["Gunder Thornbush"]=960,["Deputy Rainer"]=963,["Kurzen War Tiger"]=976,["Kurzen War Panther"]=977,["Kurzen Subchief"]=978,["Kurzen Shadow Hunter"]=979,["Grimnal"]=980,["Hartash"]=981,["Thultash"]=982,["Thultazor"]=983,["Thralosh"]=984,["Malosh"]=985,["Haromm"]=986,["Ogromm"]=987,["Kartosh"]=988,["Banalash"]=989,["Watcher Royce"]=999,["Watcher Blomberg"]=1000,["Watcher Hutchins"]=1001,["Mosshide Gnoll"]=1007,["Mosshide Mongrel"]=1008,["Mosshide Mistweaver"]=1009,["Mosshide Fenrunner"]=1010,["Mosshide Trapper"]=1011,["Mosshide Brute"]=1012,["Mosshide Mystic"]=1013,["Mosshide Alpha"]=1014,["Highland Raptor"]=1015,["Highland Lashtail"]=1016,["Highland Scytheclaw"]=1017,["Highland Razormaw"]=1018,["Elder Razormaw"]=1019,["Mottled Raptor"]=1020,["Mottled Screecher"]=1021,["Mottled Scytheclaw"]=1022,["Mottled Razormaw"]=1023,["Bluegill Murloc"]=1024,["Bluegill Puddlejumper"]=1025,["Bluegill Forager"]=1026,["Bluegill Warrior"]=1027,["Bluegill Muckdweller"]=1028,["Bluegill Oracle"]=1029,["Black Slime"]=1030,["Crimson Ooze"]=1031,["Black Ooze"]=1032,["Monstrous Ooze"]=1033,["Dragonmaw Raider"]=1034,["Dragonmaw Swamprunner"]=1035,["Dragonmaw Centurion"]=1036,["Dragonmaw Battlemaster"]=1037,["Dragonmaw Shadowwarder"]=1038,["Fen Dweller"]=1039,["Fen Creeper"]=1040,["Fen Lord"]=1041,["Red Whelp"]=1042,["Lost Whelp"]=1043,["Flamesnorting Whelp"]=1044,["Red Dragonspawn"]=1045,["Red Wyrmkin"]=1046,["Red Scalebane"]=1047,["Scalebane Lieutenant"]=1048,["Wyrmkin Firebrand"]=1049,["Scalebane Royal Guard"]=1050,["Dark Iron Dwarf"]=1051,["Dark Iron Saboteur"]=1052,["Dark Iron Tunneler"]=1053,["Dark Iron Demolitionist"]=1054,["Dragonmaw Bonewarder"]=1057,["Ana'thek the Cruel"]=1059,["Mogh the Undying"]=1060,["Gan'zulah"]=1061,["Nezzliok the Dire"]=1062,["Jade"]=1063,["Grom'gol Grunt"]=1064,["Riverpaw Shaman"]=1065,["Gorn"]=1068,["Crimson Whelp"]=1069,["Deputy Feldon"]=1070,["Longbraid the Grim"]=1071,["Roggo Harlbarrow"]=1072,["Ashlan Stonesmirk"]=1073,["Motley Garmason"]=1074,["Rhag Garmason"]=1075,["Merrin Rockweaver"]=1076,["Prospector Whelgar"]=1077,["Ormer Ironbraid"]=1078,["Mire Lord"]=1081,["Sawtooth Crocolisk"]=1082,["Murloc Shorestriker"]=1083,["Young Sawtooth Crocolisk"]=1084,["Elder Stranglethorn Tiger"]=1085,["Sawtooth Snapper"]=1087,["Monstrous Crawler"]=1088,["Mountaineer Cobbleflint"]=1089,["Mountaineer Wallbang"]=1090,["Mountaineer Gravelgaw"]=1091,["Captain Rugelfuss"]=1092,["Chief Engineer Hinderweir VII"]=1093,["Venture Co. Miner"]=1094,["Venture Co. Workboss"]=1095,["Venture Co. Geologist"]=1096,["Venture Co. Mechanic"]=1097,["Watcher Merant"]=1098,["Watcher Gelwin"]=1099,["Watcher Selkin"]=1100,["Watcher Thayer"]=1101,["Eldrin"]=1103,["Grundel Harkin"]=1104,["Jern Hornhelm"]=1105,["Lost One Cook"]=1106,["Mistvale Gorilla"]=1108,["Fleshripper"]=1109,["Skeletal Raider"]=1110,["Leech Stalker"]=1111,["Leech Widow"]=1112,["Jungle Thunderer"]=1114,["Rockjaw Skullthumper"]=1115,["Rockjaw Ambusher"]=1116,["Rockjaw Bonesnapper"]=1117,["Rockjaw Backbreaker"]=1118,["Hammerspine"]=1119,["Frostmane Troll"]=1120,["Frostmane Snowstrider"]=1121,["Frostmane Hideskinner"]=1122,["Frostmane Headhunter"]=1123,["Frostmane Shadowcaster"]=1124,["Crag Boar"]=1125,["Large Crag Boar"]=1126,["Elder Crag Boar"]=1127,["Young Black Bear"]=1128,["Black Bear"]=1129,["Bjarn"]=1130,["Winter Wolf"]=1131,["Timber"]=1132,["Starving Winter Wolf"]=1133,["Young Wendigo"]=1134,["Wendigo"]=1135,["Edan the Howler"]=1137,["Snow Tracker Wolf"]=1138,["Magistrate Bluntnose"]=1139,["Razormaw Matriarch"]=1140,["Angus Stern"]=1141,["Mosh'Ogg Brute"]=1142,["Mosh'Ogg Witch Doctor"]=1144,["Vharr"]=1146,["Hragran"]=1147,["Nerrist"]=1148,["Uthok"]=1149,["River Crocolisk"]=1150,["Saltwater Crocolisk"]=1151,["Snapjaw Crocolisk"]=1152,["Torren Squarejaw"]=1153,["Marek Ironheart"]=1154,["Kelt Thomasin"]=1155,["Vyrin Swiftwind"]=1156,["Cursed Sailor"]=1157,["Cursed Marine"]=1158,["First Mate Snellig"]=1159,["Captain Halyndor"]=1160,["Stonesplinter Trogg"]=1161,["Stonesplinter Scout"]=1162,["Stonesplinter Skullthumper"]=1163,["Stonesplinter Bonesnapper"]=1164,["Stonesplinter Geomancer"]=1165,["Stonesplinter Seer"]=1166,["Stonesplinter Digger"]=1167,["Dark Iron Insurgent"]=1169,["Tunnel Rat Vermin"]=1172,["Tunnel Rat Scout"]=1173,["Tunnel Rat Geomancer"]=1174,["Tunnel Rat Digger"]=1175,["Tunnel Rat Forager"]=1176,["Tunnel Rat Surveyor"]=1177,["Mo'grosh Ogre"]=1178,["Mo'grosh Enforcer"]=1179,["Mo'grosh Brute"]=1180,["Mo'grosh Shaman"]=1181,["Brother Anton"]=1182,["Mo'grosh Mystic"]=1183,["Cliff Lurker"]=1184,["Wood Lurker"]=1185,["Black Bear"]=1186,["Daryl the Youngling"]=1187,["Grizzled Black Bear"]=1188,["Black Bear Patriarch"]=1189,["Mountain Boar"]=1190,["Mangy Mountain Boar"]=1191,["Elder Mountain Boar"]=1192,["Loch Frenzy"]=1193,["Mountain Buzzard"]=1194,["Forest Lurker"]=1195,["Ice Claw Bear"]=1196,["Stonesplinter Shaman"]=1197,["Rallic Finn"]=1198,["Juvenile Snow Leopard"]=1199,["Morbent Fel"]=1200,["Snow Leopard"]=1201,["Tunnel Rat Kobold"]=1202,["Watcher Sarys"]=1203,["Watcher Corwin"]=1204,["Grawmug"]=1205,["Gnasher"]=1206,["Brawler"]=1207,["Chok'sul"]=1210,["Leper Gnome"]=1211,["Bishop Farthing"]=1212,["Godric Rothgar"]=1213,["Aldren Cordon"]=1214,["Alchemist Mallory"]=1215,["Shore Crawler"]=1216,["Glorin Steelbrow"]=1217,["Herbalist Pomeroy"]=1218,["Dark Iron Sapper"]=1222,["Young Threshadon"]=1224,["Ol' Sooty"]=1225,["Maxan Anvol"]=1226,["Rygal Rocknell"]=1227,["Magis Sparkmantle"]=1228,["Granis Swiftaxe"]=1229,["[UNUSED] Lexin Haze"]=1230,["Grif Wildheart"]=1231,["Azar Stronghammer"]=1232,["[UNUSED] Shaethis Darkoak"]=1233,["Hogral Bakkan"]=1234,["Kobold Digger"]=1236,["Kazan Mogosh"]=1237,["Gamili Frosthide"]=1238,["First Mate Fitzsimmons"]=1239,["Boran Ironclink"]=1240,["Tognus Flintfire"]=1241,["Karl Boran"]=1242,["Hegnar Rumbleshot"]=1243,["Rethiel the Greenwarden"]=1244,["Kogan Forgestone"]=1245,["Vosur Brakthel"]=1246,["Innkeeper Belm"]=1247,["Quartermaster Hudson"]=1249,["Drake Lindgren"]=1250,["Splinter Fist Firemonger"]=1251,["Senir Whitebeard"]=1252,["Father Gavin"]=1253,["Foreman Stonebrow"]=1254,["Prospector Gehn"]=1255,["Quarrymaster Thesten"]=1256,["Keldric Boucher"]=1257,["Black Ravager Mastiff"]=1258,["Gobbler"]=1259,["Great Father Arctikus"]=1260,["Veron Amberstill"]=1261,["Yarlyn Amberstill"]=1263,["Rudra Amberstill"]=1265,["Tundra MacGrann"]=1266,["Ragnar Thunderbrew"]=1267,["Ozzie Togglevolt"]=1268,["Razzle Sprysprocket"]=1269,["Fetid Corpse"]=1270,["Old Icebeard"]=1271,["Grawn Thromwyn"]=1273,["Senator Barin Redstone"]=1274,["Kyra Boucher"]=1275,["Mountaineer Brokk"]=1276,["Mountaineer Ganin"]=1277,["Mountaineer Stenn"]=1278,["Mountaineer Flint"]=1279,["Mountaineer Droken"]=1280,["Mountaineer Zaren"]=1281,["Mountaineer Veek"]=1282,["Mountaineer Kalmir"]=1283,["Archbishop Benedictus"]=1284,["Thurman Mullby"]=1285,["Edna Mullby"]=1286,["Marda Weller"]=1287,["Gunther Weller"]=1289,["Carla Granger"]=1291,["Maris Granger"]=1292,["Ambo Cash"]=1293,["Aldric Moore"]=1294,["Lara Moore"]=1295,["Felder Stover"]=1296,["Lina Stover"]=1297,["Frederick Stover"]=1298,["Lisbeth Schneider"]=1299,["Lawrence Schneider"]=1300,["Julia Gallina"]=1301,["Bernard Gump"]=1302,["Felicia Gump"]=1303,["Darian Singh"]=1304,["Jarel Moor"]=1305,["Charys Yserian"]=1307,["Owen Vaughn"]=1308,["Wynne Larson"]=1309,["Evan Larson"]=1310,["Joachim Brenlow"]=1311,["Ardwyn Cailen"]=1312,["Maria Lumere"]=1313,["Duncan Cullen"]=1314,["Allan Hafgan"]=1315,["Adair Gilroy"]=1316,["Lucan Cordell"]=1317,["Jessara Cordell"]=1318,["Bryan Cross"]=1319,["Seoman Griffith"]=1320,["Alyssa Griffith"]=1321,["Maxton Strang"]=1322,["Osric Strang"]=1323,["Heinrich Stone"]=1324,["Jasper Fel"]=1325,["Sloan McCoy"]=1326,["Reese Langston"]=1327,["Elly Langston"]=1328,["Mountaineer Naarh"]=1329,["Mountaineer Tyraw"]=1330,["Mountaineer Luxst"]=1331,["Mountaineer Morran"]=1332,["Gerik Koen"]=1333,["Mountaineer Hammerfall"]=1334,["Mountaineer Yuttha"]=1335,["Mountaineer Zwarn"]=1336,["Mountaineer Gwarth"]=1337,["Mountaineer Dalk"]=1338,["Mayda Thane"]=1339,["Mountaineer Kadrell"]=1340,["Wilhelm Strang"]=1341,["Mountaineer Rockgar"]=1342,["Mountaineer Stormpike"]=1343,["Prospector Ironband"]=1344,["Magmar Fellhew"]=1345,["Georgio Bolero"]=1346,["Alexandra Bolero"]=1347,["Gregory Ardus"]=1348,["Agustus Moulaine"]=1349,["Theresa Moulaine"]=1350,["Brother Cassius"]=1351,["Fluffy"]=1352,["Sarltooth"]=1353,["Apprentice Soren"]=1354,["Cook Ghilm"]=1355,["Prospector Stormpike"]=1356,["Miner Grothor"]=1358,["Miner Grumnal"]=1360,["Gothor Brumn"]=1362,["Balgaras the Foul"]=1364,["Goli Krumn"]=1365,["Adam"]=1366,["Billy"]=1367,["Justin"]=1368,["Brandon"]=1370,["Roman"]=1371,["Jarven Thunderbrew"]=1373,["Rejold Barleybrew"]=1374,["Marleth Barleybrew"]=1375,["Beldin Steelgrill"]=1376,["Pilot Stonegear"]=1377,["Pilot Bellowfiz"]=1378,["Miran"]=1379,["Saean"]=1380,["Krakk"]=1381,["Mudduk"]=1382,["Snarl"]=1383,["Brawn"]=1385,["Rogvar"]=1386,["Thysta"]=1387,["Vagash"]=1388,["Berserk Trogg"]=1393,["Ol' Beasley"]=1395,["Frostmane Seer"]=1397,["Boss Galgosh"]=1398,["Magosh"]=1399,["Wetlands Crocolisk"]=1400,["Topper McNabb"]=1402,["Kragg"]=1404,["Morris Lawry"]=1405,["Sranda"]=1407,["Firewing Bloodwarder"]=1410,["Ian Strom"]=1411,["Squirrel"]=1412,["Janey Anship"]=1413,["Lisan Pierce"]=1414,["Suzanne"]=1415,["Grimand Elmore"]=1416,["Young Wetlands Crocolisk"]=1417,["Bluegill Raider"]=1418,["Fizzles"]=1419,["Toad"]=1420,["Private Merle"]=1421,["Corporal Sethman"]=1422,["Stormwind Guard"]=1423,["Master Digger"]=1424,["Kubb"]=1425,["Riverpaw Miner"]=1426,["Harlan Bagley"]=1427,["Rema Schneider"]=1428,["Thurman Schneider"]=1429,["Tomas"]=1430,["Suzetta Gallina"]=1431,["Renato Gallina"]=1432,["Corbett Schneider"]=1433,["Menethil Sentry"]=1434,["Zardeth of the Black Claw"]=1435,["Watcher Cutford"]=1436,["Thomas Booker"]=1437,["Lord Baurles K. Wishock"]=1439,["Milton Sheaf"]=1440,["Brak Durnad"]=1441,["Helgrum the Swift"]=1442,["Fel'zerul"]=1443,["Brother Kristoff"]=1444,["Jesse Halloran"]=1445,["Regina Halloran"]=1446,["Gimlok Rumdnul"]=1447,["Neal Allen"]=1448,["Witch Doctor Unbagwa"]=1449,["Brahnmar"]=1450,["Camerick Jongleur"]=1451,["Gruham Rumdnul"]=1452,["Dewin Shimmerdawn"]=1453,["Jennabink Powerseam"]=1454,["Kersok Prond"]=1456,["Samor Festivus"]=1457,["Telurinon Moonshadow"]=1458,["Naela Trance"]=1459,["Unger Statforth"]=1460,["Murndan Derth"]=1461,["Edwina Monzor"]=1462,["Falkan Armonis"]=1463,["Innkeeper Helbrek"]=1464,["Drac Roughcut"]=1465,["Gretta Finespindle"]=1466,["Vrok Blunderblast"]=1469,["Ghak Healtouch"]=1470,["Jannos Ironwill"]=1471,["Morgg Stormshot"]=1472,["Kali Healtouch"]=1473,["Rann Flamespinner"]=1474,["Menethil Guard"]=1475,["Hargin Mundar"]=1476,["Christoph Faral"]=1477,["Aedis Brom"]=1478,["Timothy Clark"]=1479,["Caitlin Grassman"]=1480,["Bart Tidewater"]=1481,["Andrea Halloran"]=1482,["Murphy West"]=1483,["Derina Rumdnul"]=1484,["Splinter Fist Enslaver"]=1487,["Zanzil Zombie"]=1488,["Zanzil Hunter"]=1489,["Zanzil Witch Doctor"]=1490,["Zanzil Naga"]=1491,["Gorlash"]=1492,["Mok'rash the Cleaver"]=1493,["Negolash"]=1494,["Deathguard Linnea"]=1495,["Deathguard Dillinger"]=1496,["Gunther Arcanus"]=1497,["Bethor Iceshard"]=1498,["Magistrate Sevren"]=1499,["Coleman Farthing"]=1500,["Mindless Zombie"]=1501,["Wretched Ghoul"]=1502,["Young Night Web Spider"]=1504,["Night Web Spider"]=1505,["Scarlet Convert"]=1506,["Scarlet Initiate"]=1507,["Young Scavenger"]=1508,["Ragged Scavenger"]=1509,["Enraged Silverback Gorilla"]=1511,["Duskbat"]=1512,["Mangy Duskbat"]=1513,["Mokk the Savage"]=1514,["Executor Zygand"]=1515,["Konda"]=1516,["Apothecary Johaan"]=1518,["Deathguard Simmer"]=1519,["Rattlecage Soldier"]=1520,["Gretchen Dedmar"]=1521,["Darkeye Bonecaster"]=1522,["Cracked Skull Soldier"]=1523,["Rotting Dead"]=1525,["Ravaged Corpse"]=1526,["Hungering Dead"]=1527,["Shambling Horror"]=1528,["Bleeding Horror"]=1529,["Rotting Ancestor"]=1530,["Lost Soul"]=1531,["Wandering Spirit"]=1532,["Tormented Spirit"]=1533,["Wailing Ancestor"]=1534,["Scarlet Warrior"]=1535,["Scarlet Missionary"]=1536,["Scarlet Zealot"]=1537,["Scarlet Friar"]=1538,["Scarlet Neophyte"]=1539,["Scarlet Vanguard"]=1540,["Vile Fin Murloc"]=1541,["Vile Fin Puddlejumper"]=1543,["Vile Fin Minor Oracle"]=1544,["Vile Fin Muckdweller"]=1545,["[UNUSED] Kegnar Thraln"]=1546,["Decrepit Darkhound"]=1547,["Cursed Darkhound"]=1548,["Ravenous Darkhound"]=1549,["Thrashtail Basilisk"]=1550,["Ironjaw Basilisk"]=1551,["Scale Belly"]=1552,["Greater Duskbat"]=1553,["Vampiric Duskbat"]=1554,["Vicious Night Web Spider"]=1555,["Elder Mistvale Gorilla"]=1557,["Silverback Patriarch"]=1558,["King Mukla"]=1559,["Yvette Farthing"]=1560,["Bloodsail Raider"]=1561,["Bloodsail Mage"]=1562,["Bloodsail Swashbuckler"]=1563,["Bloodsail Warlock"]=1564,["Bloodsail Sea Dog"]=1565,["Undertaker Mordo"]=1568,["Shadow Priest Sarvis"]=1569,["Executor Arren"]=1570,["Shellei Brondir"]=1571,["Thorgrum Borrelson"]=1572,["Gryth Thurden"]=1573,["Mage 1"]=1574,["Mage 5"]=1575,["Priest 20"]=1629,["Adele Fielder"]=1632,["Northshire Guard"]=1642,["Quartermaster Hicks"]=1645,["Baros Alexston"]=1646,["Terry Palin"]=1650,["Lee Brown"]=1651,["Deathguard Burgess"]=1652,["Bloodsail Elder Magus"]=1653,["Gregor Agamand"]=1654,["Nissa Agamand"]=1655,["Thurman Agamand"]=1656,["Devlin Agamand"]=1657,["Captain Dargol"]=1658,["Scarlet Bodyguard"]=1660,["Novice Elreth"]=1661,["Captain Perrine"]=1662,["Dextren Ward"]=1663,["Captain Vachon"]=1664,["Captain Melrache"]=1665,["Kam Deepfury"]=1666,["Meven Korgal"]=1667,["William MacGregor"]=1668,["Defias Profiteer"]=1669,["Mike Miller"]=1670,["Lamar Veisilli"]=1671,["Lohgan Eva"]=1672,["Alyssa Eva"]=1673,["Rot Hide Gnoll"]=1674,["Rot Hide Mongrel"]=1675,["Finbus Geargrind"]=1676,["Vernon Hale"]=1678,["Avarus Kharag"]=1679,["Matthew Hooper"]=1680,["Brock Stoneseeker"]=1681,["Yanni Stoutheart"]=1682,["Warg Deepwater"]=1683,["Khara Deepwater"]=1684,["Xandar Goodbeard"]=1685,["Irene Sureshot"]=1686,["Cliff Hadin"]=1687,["Night Web Matriarch"]=1688,["Scarred Crag Boar"]=1689,["Thrawn Boltar"]=1690,["Kreg Bilmn"]=1691,["Golorn Frostbeard"]=1692,["Loch Crocolisk"]=1693,["Loslor Rudge"]=1694,["Rendow"]=1695,["Targorr the Dread"]=1696,["Keeg Gibn"]=1697,["Frast Dokner"]=1698,["Gremlock Pilsnor"]=1699,["Paxton Ganter"]=1700,["Dank Drizzlecut"]=1701,["Bronk Guzzlegear"]=1702,["Uthrar Threx"]=1703,["Prisoner"]=1706,["Defias Captive"]=1707,["Defias Inmate"]=1708,["Convict"]=1711,["Elder Shadowmaw Panther"]=1713,["Insurgent"]=1715,["Bazil Thredd"]=1716,["Hamhock"]=1717,["Rockjaw Raider"]=1718,["Warden Thelwater"]=1719,["Bruegal Ironknuckle"]=1720,["Nikova Raskol"]=1721,["Defias Watchman"]=1725,["Defias Magician"]=1726,["Defias Worker"]=1727,["Defias Evoker"]=1729,["Goblin Craftsman"]=1731,["Defias Squallshaper"]=1732,["Zggi"]=1733,["Deathguard Abraham"]=1735,["Deathguard Randolph"]=1736,["Deathguard Oliver"]=1737,["Deathguard Terrence"]=1738,["Deathguard Phillip"]=1739,["Deathguard Saltain"]=1740,["Deathguard Bartrand"]=1741,["Deathguard Bartholomew"]=1742,["Deathguard Lawrence"]=1743,["Deathguard Mort"]=1744,["Deathguard Morris"]=1745,["Deathguard Cyrus"]=1746,["Anduin Wrynn"]=1747,["Highlord Bolvar Fordragon"]=1748,["Lady Katrana Prestor"]=1749,["Grand Admiral Jes-Tereth"]=1750,["Mithras Ironhill"]=1751,["Caledra Dawnbreeze"]=1752,["Maggot Eye"]=1753,["Lord Gregor Lescovar"]=1754,["Marzon the Silent Blade"]=1755,["Stormwind Royal Guard"]=1756,["Mega Rabbit"]=1757,["Gilnid"]=1763,["Greater Feral Spirit"]=1764,["Worg"]=1765,["Rabid Worg"]=1766,["Vile Fin Shredder"]=1767,["Vile Fin Tidehunter"]=1768,["Moonrage Whitescalp"]=1769,["Moonrage Darkrunner"]=1770,["Rot Hide Gladerunner"]=1772,["Rot Hide Mystic"]=1773,["Zun'dartha"]=1775,["Magtoor"]=1776,["Dakk Blunderblast"]=1777,["Ferocious Grizzled Bear"]=1778,["Moonrage Glutton"]=1779,["Skitterweb Striker"]=1780,["Skitterweb Lurker"]=1781,["Moonrage Darksoul"]=1782,["Skeletal Flayer"]=1783,["Skeletal Sorcerer"]=1784,["Skeletal Terror"]=1785,["Skeletal Executioner"]=1787,["Skeletal Warlord"]=1788,["Skeletal Acolyte"]=1789,["Slavering Ghoul"]=1791,["Rotting Ghoul"]=1793,["Soulless Ghoul"]=1794,["Searing Ghoul"]=1795,["Freezing Ghoul"]=1796,["Giant Rabid Bear"]=1797,["Cold Wraith"]=1800,["Blood Wraith"]=1801,["Hungering Wraith"]=1802,["Wailing Death"]=1804,["Flesh Golem"]=1805,["Vile Slime"]=1806,["Devouring Ooze"]=1808,["Carrion Vulture"]=1809,["Rotting Behemoth"]=1812,["Decaying Horror"]=1813,["Diseased Black Bear"]=1815,["Diseased Grizzly"]=1816,["Diseased Wolf"]=1817,["Carrion Lurker"]=1821,["Venom Mist Lurker"]=1822,["Plague Lurker"]=1824,["Scarlet Mage"]=1826,["Scarlet Sentinel"]=1827,["Scarlet Hunter"]=1831,["Scarlet Magus"]=1832,["Scarlet Knight"]=1833,["Scarlet Paladin"]=1834,["Scarlet Invoker"]=1835,["Scarlet Cavalier"]=1836,["Scarlet Judge"]=1837,["Scarlet Interrogator"]=1838,["Scarlet High Clerist"]=1839,["Grand Inquisitor Isillien"]=1840,["Scarlet Executioner"]=1841,["Highlord Taelan Fordring"]=1842,["Foreman Jerris"]=1843,["Foreman Marcrid"]=1844,["High Protector Tarsen"]=1845,["High Protector Lorik"]=1846,["Foulmane"]=1847,["Lord Maldazzar"]=1848,["Dreadwhisper"]=1849,["Putridius"]=1850,["The Husk"]=1851,["Araj the Summoner"]=1852,["Darkmaster Gandling"]=1853,["High Priest Thel'danis"]=1854,["Tirion Fordring"]=1855,["Voidwalker"]=1860,["Succubus"]=1863,["Ravenclaw Raider"]=1865,["Ravenclaw Slave"]=1866,["Dalaran Apprentice"]=1867,["Ravenclaw Servant"]=1868,["Ravenclaw Champion"]=1869,["Hand of Ravenclaw"]=1870,["Eliza's Guard"]=1871,["Tharek Blackstone"]=1872,["Berte"]=1880,["Scarlet Worker"]=1883,["Scarlet Lumberjack"]=1884,["Scarlet Smith"]=1885,["Ambermill Watcher"]=1888,["Ambermill Witchalok"]=1889,["Rattlecage Skeleton"]=1890,["Pyrewood Watcher"]=1891,["Moonrage Watcher"]=1892,["Moonrage Sentry"]=1893,["Pyrewood Sentry"]=1894,["Pyrewood Elder"]=1895,["Moonrage Elder"]=1896,["Kelstrum Stonebreaker"]=1901,["Naga Explorer"]=1907,["Vile Fin Oracle"]=1908,["Vile Fin Lakestalker"]=1909,["Muad"]=1910,["Deeb"]=1911,["Ambermill Protector"]=1912,["Ambermill Warder"]=1913,["Ambermill Mage"]=1914,["Ambermill Conjuror"]=1915,["Stephen Bhartec"]=1916,["Daniel Ulfman"]=1917,["Karrel Grayves"]=1918,["Samuel Fipps"]=1919,["Dalaran Spellscribe"]=1920,["Combat Dummy"]=1921,["Gray Forest Wolf"]=1922,["Bloodsnout Worg"]=1923,["Moonrage Bloodhowler"]=1924,["Captured Scarlet Zealot"]=1931,["Sheep"]=1933,["Tirisfal Farmer"]=1934,["Tirisfal Farmhand"]=1935,["Farmer Solliden"]=1936,["Apothecary Renferrel"]=1937,["Dalar Dawnweaver"]=1938,["Rot Hide Brute"]=1939,["Rot Hide Plague Weaver"]=1940,["Rot Hide Graverobber"]=1941,["Rot Hide Savage"]=1942,["Raging Rot Hide"]=1943,["Rot Hide Bruiser"]=1944,["Lillith Nefara"]=1946,["Thule Ravenclaw"]=1947,["Snarlmane"]=1948,["Servant of Azora"]=1949,["Rane Yorick"]=1950,["Quinn Yorick"]=1951,["High Executor Hadrec"]=1952,["Lake Skulker"]=1953,["Elder Lake Skulker"]=1954,["Lake Creeper"]=1955,["Elder Lake Creeper"]=1956,["Vile Fin Shorecreeper"]=1957,["Vile Fin Tidecaller"]=1958,["Mountaineer Barleybrew"]=1959,["Pilot Hammerfoot"]=1960,["Mangeclaw"]=1961,["Vidra Hearthstove"]=1963,["Treant"]=1964,["Mountaineer Thalos"]=1965,["Ivar the Foul"]=1971,["Grimson the Pale"]=1972,["Ravenclaw Guardian"]=1973,["Ravenclaw Drudger"]=1974,["Eastvale Lumberjack"]=1975,["Stormwind City Patroller"]=1976,["Senator Mehr Stonehallow"]=1977,["Deathstalker Erland"]=1978,["Dark Iron Ambusher"]=1981,["Nightlash"]=1983,["Young Thistle Boar"]=1984,["Thistle Boar"]=1985,["Webwood Spider"]=1986,["Grell"]=1988,["Grellkin"]=1989,["Tarindrella"]=1992,["Greenpaw"]=1993,["Githyiss the Vile"]=1994,["Strigid Owl"]=1995,["Strigid Screecher"]=1996,["Strigid Hunter"]=1997,["Webwood Lurker"]=1998,["Webwood Venomfang"]=1999,["Webwood Silkspinner"]=2000,["Giant Webwood Spider"]=2001,["Rascal Sprite"]=2002,["Shadow Sprite"]=2003,["Dark Sprite"]=2004,["Vicious Grell"]=2005,["Gnarlpine Ursa"]=2006,["Gnarlpine Gardener"]=2007,["Gnarlpine Warrior"]=2008,["Gnarlpine Shaman"]=2009,["Gnarlpine Defender"]=2010,["Gnarlpine Augur"]=2011,["Gnarlpine Pathfinder"]=2012,["Gnarlpine Avenger"]=2013,["Gnarlpine Totemic"]=2014,["Bloodfeather Harpy"]=2015,["Bloodfeather Rogue"]=2017,["Bloodfeather Sorceress"]=2018,["Bloodfeather Fury"]=2019,["Bloodfeather Wind Witch"]=2020,["Bloodfeather Matriarch"]=2021,["Timberling"]=2022,["Timberling Bark Ripper"]=2025,["Timberling Trampler"]=2027,["Timberling Mire Beast"]=2029,["Elder Timberling"]=2030,["Young Nightsaber"]=2031,["Mangy Nightsaber"]=2032,["Elder Nightsaber"]=2033,["Feral Nightsaber"]=2034,["Lord Melenas"]=2038,["Ursal the Mauler"]=2039,["Ancient Protector"]=2041,["Nightsaber"]=2042,["Nightsaber Stalker"]=2043,["Forlorn Spirit"]=2044,["Andrew Krighton"]=2046,["Raleigh Andrean"]=2050,["Haggard Refugee"]=2053,["Sickly Refugee"]=2054,["Master Apothecary Faranell"]=2055,["Ravenclaw Apparition"]=2056,["Huldar"]=2057,["Deathstalker Faerleia"]=2058,["Councilman Smithers"]=2060,["Councilman Thatcher"]=2061,["Councilman Hendricks"]=2062,["Councilman Wilhelm"]=2063,["Councilman Hartin"]=2064,["Councilman Cooper"]=2065,["Councilman Higarth"]=2066,["Councilman Brunswick"]=2067,["Lord Mayor Morrison"]=2068,["Moonstalker"]=2069,["Moonstalker Runt"]=2070,["Moonstalker Matriarch"]=2071,["Melithar Staghelm"]=2077,["Athridas Bearmantle"]=2078,["Ilthalaine"]=2079,["Denalan"]=2080,["Sentinel Kyra Starsong"]=2081,["Gilshalan Windwalker"]=2082,["Syral Bladeleaf"]=2083,["Natheril Raincaller"]=2084,["Valstag Ironjaw"]=2086,["Giant Wetlands Crocolisk"]=2089,["Ma'ruk Wyrmscale"]=2090,["Chieftain Nek'rosh"]=2091,["Pilot Longbeard"]=2092,["Einar Stonegrip"]=2093,["James Halloran"]=2094,["Tarrel Rockweaver"]=2096,["Harlo Barnaby"]=2097,["Ram"]=2098,["Maiden's Virtue Crewman"]=2099,["Dragonmaw Grunt"]=2102,["Dragonmaw Scout"]=2103,["Captain Stoutfist"]=2104,["Mountaineer Dokkin"]=2105,["Apothecary Berard"]=2106,["Gaerolas Talvethren"]=2107,["Garneg Charskull"]=2108,["Black Rat"]=2110,["Sida"]=2111,["Farrin Daris"]=2112,["Archibald Kava"]=2113,["Faruza"]=2114,["Joshua Kien"]=2115,["Blacksmith Rand"]=2116,["Harold Raims"]=2117,["Abigail Shiel"]=2118,["Dannal Stern"]=2119,["Archmage Ataeric"]=2120,["Shadow Priest Allister"]=2121,["David Trias"]=2122,["Dark Cleric Duesten"]=2123,["Isabella"]=2124,["Maximillion"]=2126,["Rupert Boch"]=2127,["Cain Firesong"]=2128,["Dark Cleric Beryl"]=2129,["Marion Call"]=2130,["Austil de Mon"]=2131,["Carolai Anise"]=2132,["Mrs. Winters"]=2134,["Abe Winters"]=2135,["Oliver Dwor"]=2136,["Eliza Callen"]=2137,["Edwin Harly"]=2140,["Watcher Callahan"]=2142,["Dark Iron Raider"]=2149,["Zenn Foulhoof"]=2150,["Moon Priestess Amara"]=2151,["Gnarlpine Ambusher"]=2152,["Terl Arakor"]=2153,["Sentinel Shayla Nightbreeze"]=2155,["Cracked Golem"]=2156,["Stone Behemoth"]=2157,["Gravelflint Scout"]=2158,["Gravelflint Bonesnapper"]=2159,["Gravelflint Geomancer"]=2160,["Agal"]=2162,["Thistle Bear"]=2163,["Rabid Thistle Bear"]=2164,["Grizzled Thistle Bear"]=2165,["Oakenscowl"]=2166,["Blackwood Pathfinder"]=2167,["Blackwood Warrior"]=2168,["Blackwood Totemic"]=2169,["Blackwood Ursa"]=2170,["Blackwood Shaman"]=2171,["Strider Clutchmother"]=2172,["Reef Frenzy"]=2173,["Coastal Frenzy"]=2174,["Shadowclaw"]=2175,["Cursed Highborne"]=2176,["Writhing Highborne"]=2177,["Wailing Highborne"]=2178,["Stormscale Wave Rider"]=2179,["Stormscale Siren"]=2180,["Stormscale Myrmidon"]=2181,["Stormscale Sorceress"]=2182,["Stormscale Warrior"]=2183,["Lady Moongazer"]=2184,["Darkshore Thresher"]=2185,["Carnivous the Breaker"]=2186,["Elder Darkshore Thresher"]=2187,["Deep Sea Threshadon"]=2188,["Vile Sprite"]=2189,["Wild Grell"]=2190,["Licillin"]=2191,["Firecaller Radison"]=2192,["Crier Goodman"]=2198,["Greymist Raider"]=2201,["Greymist Coastrunner"]=2202,["Greymist Seer"]=2203,["Greymist Netter"]=2204,["Greymist Warrior"]=2205,["Greymist Hunter"]=2206,["Greymist Oracle"]=2207,["Greymist Tidehunter"]=2208,["Deathguard Gavin"]=2209,["Deathguard Royann"]=2210,["Captured Mountaineer"]=2211,["Deth'ryll Satyr"]=2212,["Deathstalker Lesh"]=2214,["High Executor Darthalia"]=2215,["Apothecary Lydon"]=2216,["Zora Guthrek"]=2225,["Karos Razok"]=2226,["Sharlindra"]=2227,["Lieutenant Farren Orinelle"]=2228,["Krusk"]=2229,["Umpi"]=2230,["Pygmy Tide Crawler"]=2231,["Tide Crawler"]=2232,["Encrusted Tide Crawler"]=2233,["Young Reef Crawler"]=2234,["Reef Crawler"]=2235,["Raging Reef Crawler"]=2236,["Moonstalker Sire"]=2237,["Tog'thar"]=2238,["Drull"]=2239,["Syndicate Footpad"]=2240,["Syndicate Thief"]=2241,["Syndicate Spy"]=2242,["Syndicate Sentry"]=2243,["Syndicate Shadow Mage"]=2244,["Syndicate Saboteur"]=2245,["Syndicate Assassin"]=2246,["Syndicate Enforcer"]=2247,["Cave Yeti"]=2248,["Ferocious Yeti"]=2249,["Mountain Yeti"]=2250,["Giant Yeti"]=2251,["Crushridge Ogre"]=2252,["Crushridge Brute"]=2253,["Crushridge Mauler"]=2254,["Crushridge Mage"]=2255,["Crushridge Enforcer"]=2256,["Mug'thol"]=2257,["Maggarrak"]=2258,["Syndicate Rogue"]=2260,["Syndicate Watchman"]=2261,["Marshal Redpath"]=2263,["Hillsbrad Tailor"]=2264,["Hillsbrad Apprentice Blacksmith"]=2265,["Hillsbrad Farmer"]=2266,["Hillsbrad Peasant"]=2267,["Hillsbrad Footman"]=2268,["Hillsbrad Miner"]=2269,["Hillsbrad Sentry"]=2270,["Dalaran Shield Guard"]=2271,["Dalaran Theurgist"]=2272,["Stanley"]=2274,["Enraged Stanley"]=2275,["Magistrate Henry Maleb"]=2276,["Loremaster Dibbs"]=2277,["Melisara"]=2278,["Ravenclaw Regent"]=2283,["Captured Farmer"]=2284,["Count Remington Ridgewell"]=2285,["Crushridge Warmonger"]=2287,["Borgus Stoutarm"]=2299,["Aethalas"]=2302,["Lyranne Feathersong"]=2303,["Captain Ironhill"]=2304,["Foreman Bonds"]=2305,["Baron Vardus"]=2306,["Caretaker Caice"]=2307,["Andrew Brownell"]=2308,["Thomas Arlento"]=2309,["Jamie Nore"]=2310,["Doreen Beltis"]=2311,["Sahvan Bloodshadow"]=2314,["Maquell Ebonwood"]=2315,["Gol'dir"]=2316,["Elysa"]=2317,["Argus Shadow Mage"]=2318,["Syndicate Wizard"]=2319,["Nagaz"]=2320,["Foreststrider Fledgling"]=2321,["Foreststrider"]=2322,["Giant Foreststrider"]=2323,["Blackwood Windtalker"]=2324,["Thamner Pol"]=2326,["Shaina Fuller"]=2327,["Michelle Belle"]=2329,["Karlee Chaddis"]=2330,["Paige Chaddis"]=2331,["Valdred Moray"]=2332,["Henchman Valik"]=2333,["Event Generator 001"]=2334,["Magistrate Burnside"]=2335,["Dark Strand Fanatic"]=2336,["Dark Strand Voidcaller"]=2337,["Twilight Disciple"]=2338,["Twilight Thug"]=2339,["Dun Garok Mountaineer"]=2344,["Dun Garok Rifleman"]=2345,["Dun Garok Priest"]=2346,["Wild Gryphon"]=2347,["Elder Moss Creeper"]=2348,["Domesticated Creeper"]=2349,["Forest Creeper"]=2350,["Gray Bear"]=2351,["Innkeeper Anderson"]=2352,["Vicious Gray Bear"]=2354,["Elder Gray Bear"]=2356,["Merideth Carlson"]=2357,["Dalaran Summoner"]=2358,["Elemental Slave"]=2359,["Hillsbrad Farmhand"]=2360,["Tamara Armstrong"]=2361,["Hemmit Armstrong"]=2362,["Apprentice Honeywell"]=2363,["Neema"]=2364,["Bront Coldcleave"]=2365,["Barkeep Kelly"]=2366,["Donald Rabonne"]=2367,["Daggerspine Shorestalker"]=2368,["Daggerspine Shorehunter"]=2369,["Daggerspine Screamer"]=2370,["Daggerspine Siren"]=2371,["Mudsnout Gnoll"]=2372,["Mudsnout Shaman"]=2373,["Torn Fin Muckdweller"]=2374,["Torn Fin Coastrunner"]=2375,["Torn Fin Oracle"]=2376,["Torn Fin Tidehunter"]=2377,["Kundric Zanden"]=2378,["Caretaker Smithers"]=2379,["Nandar Branson"]=2380,["Micha Yance"]=2381,["Darren Malvew"]=2382,["Lindea Rabonne"]=2383,["Starving Mountain Lion"]=2384,["Foothill Stalker"]=2385,["Alliance Guard"]=2386,["Hillsbrad Councilman"]=2387,["Innkeeper Shay"]=2388,["Zarise"]=2389,["Aranae Venomblood"]=2390,["Serge Hinott"]=2391,["Delia Verana"]=2392,["Christoph Jeffcoat"]=2393,["Mallen Swain"]=2394,["Vinna Wayne"]=2395,["Hans Zandin"]=2396,["Derak Nightfall"]=2397,["Tara Coldgaze"]=2398,["Daryl Stack"]=2399,["Craig Hewitt"]=2400,["Kayren Soothallow"]=2401,["Shara Blazen"]=2402,["Farmer Getz"]=2403,["Blacksmith Verringtan"]=2404,["Tarren Mill Deathguard"]=2405,["Mountain Lion"]=2406,["Hulking Mountain Lion"]=2407,["Snapjaw"]=2408,["Felicia Maline"]=2409,["Magus Wordeen Voidglare"]=2410,["Ricter"]=2411,["Alina"]=2412,["Dermot"]=2413,["Kegan Darkmar"]=2414,["Warden Belamoore"]=2415,["Crushridge Plunderer"]=2416,["Grel'borg the Miser"]=2417,["Deathguard Samsa"]=2418,["Deathguard Humbert"]=2419,["Targ"]=2420,["Muckrake"]=2421,["Glommus"]=2422,["Lord Aliden Perenolde"]=2423,["Guild Banker"]=2424,["Varimathras"]=2425,["Jailor Eston"]=2427,["Jailor Marlgen"]=2428,["Novice Thaivand"]=2429,["Chef Jessen"]=2430,["Jailor Borhuin"]=2431,["Darla Harris"]=2432,["Helcular's Remains"]=2433,["Shadowy Assassin"]=2434,["Southshore Crier"]=2435,["Farmer Kent"]=2436,["Keeper Bel'varil"]=2437,["Bartolo Ginsetti"]=2438,["Major Samuelson"]=2439,["Drunken Footpad"]=2440,["Cow"]=2442,["Narillasanz"]=2447,["Clerk Horrace Whitesteed"]=2448,["Citizen Wilkes"]=2449,["Miner Hackett"]=2450,["Farmer Kalaba"]=2451,["Skhowl"]=2452,["Lo'Grosh"]=2453,["Olivia Burnside"]=2455,["Newton Burnside"]=2456,["John Burnside"]=2457,["Randolph Montague"]=2458,["Mortimer Montague"]=2459,["Barnum Stonemantle"]=2460,["Bailey Stonemantle"]=2461,["Flesh Eating Worm"]=2462,["Commander Aggro'gosh"]=2464,["Far Seer Mok'thardin"]=2465,["Mountaineer Grugelm"]=2466,["Mountaineer Thar"]=2468,["Mountaineer Rharen"]=2469,["Watcher Fraizer"]=2470,["Granistad"]=2473,["Kurdros"]=2474,["Sloth"]=2475,["Gosh-Haldir"]=2476,["Gradok"]=2477,["Haren Swifthoof"]=2478,["Sludge"]=2479,["Bro'kin"]=2480,["Bliztik"]=2481,["Zarena Cromwind"]=2482,["Jaquilina Dramet"]=2483,["Larimaine Purdue"]=2485,["Fin Fizracket"]=2486,["Fleet Master Seahorn"]=2487,["Deeg"]=2488,["Milstaff Stormeye"]=2489,["First Mate Crazz"]=2490,["Whiskey Slim"]=2491,["Lexington Mortaim"]=2492,["Dizzy One-Eye"]=2493,["Privateer Bloads"]=2494,["Drizzlik"]=2495,["Baron Revilgaz"]=2496,["Nimboya"]=2497,["Crank Fizzlebub"]=2498,["Markel Smythe"]=2499,["Captain Hecklebury Smotts"]=2500,["Hillsbrad Foreman"]=2503,["Donyal Tovald"]=2504,["Saltwater Snapjaw"]=2505,["Mountaineer Harn"]=2506,["Mountaineer Uthan"]=2507,["Mountaineer Wuar"]=2508,["Mountaineer Cragg"]=2509,["Mountaineer Ozmok"]=2510,["Mountaineer Bludd"]=2511,["Mountaineer Roghan"]=2512,["Mountaineer Janha"]=2513,["Mountaineer Modax"]=2514,["Mountaineer Fazgard"]=2515,["Mountaineer Kamdar"]=2516,["Mountaineer Langarr"]=2517,["Mountaineer Swarth"]=2518,["Kin'weelay"]=2519,["Remote-Controlled Golem"]=2520,["Skymane Gorilla"]=2521,["Jaguero Stalker"]=2522,["Searing Totem"]=2523,["Mountaineer Haggis"]=2524,["Mountaineer Barn"]=2525,["Mountaineer Morlic"]=2526,["Mountaineer Angst"]=2527,["Mountaineer Haggil"]=2528,["Son of Arugal"]=2529,["Yenniku"]=2530,["Minion of Doane"]=2531,["Donna"]=2532,["William"]=2533,["Zanzil the Outcast"]=2534,["Jon-Jon the Crow"]=2536,["Ambermill Serpent"]=2540,["Lord Sakrasis"]=2541,["Catelyn the Blade"]=2542,["Archmage Ansirem Runeweaver"]=2543,["Southern Sand Crawler"]=2544,["Fleet Master Firallon"]=2546,["Ironpatch"]=2547,["Captain Keelhaul"]=2548,["Garr Salthoof"]=2549,["Captain Stillwater"]=2550,["Brutus"]=2551,["Witherbark Troll"]=2552,["Witherbark Shadowcaster"]=2553,["Witherbark Axe Thrower"]=2554,["Witherbark Witch Doctor"]=2555,["Witherbark Headhunter"]=2556,["Witherbark Shadow Hunter"]=2557,["Witherbark Berserker"]=2558,["Highland Strider"]=2559,["Highland Thrasher"]=2560,["Highland Fleshstalker"]=2561,["Boulderfist Ogre"]=2562,["Plains Creeper"]=2563,["Boulderfist Enforcer"]=2564,["Giant Plains Creeper"]=2565,["Boulderfist Brute"]=2566,["Boulderfist Magus"]=2567,["Boulderfist Mauler"]=2569,["Boulderfist Shaman"]=2570,["Boulderfist Lord"]=2571,["Drywhisker Kobold"]=2572,["Drywhisker Surveyor"]=2573,["Drywhisker Digger"]=2574,["Dark Iron Supplier"]=2575,["Dark Iron Shadowcaster"]=2577,["Young Mesa Buzzard"]=2578,["Mesa Buzzard"]=2579,["Elder Mesa Buzzard"]=2580,["Dabyrie Militia"]=2581,["Dabyrie Laborer"]=2582,["Stromgarde Troll Hunter"]=2583,["Stromgarde Defender"]=2584,["Stromgarde Soldier"]=2585,["Syndicate Highwayman"]=2586,["Syndicate Pathstalker"]=2587,["Syndicate Prowler"]=2588,["Syndicate Mercenary"]=2589,["Syndicate Conjuror"]=2590,["Syndicate Magus"]=2591,["Rumbling Exile"]=2592,["Sprogger"]=2594,["Daggerspine Raider"]=2595,["Daggerspine Sorceress"]=2596,["Lord Falconcrest"]=2597,["Darbel Montrose"]=2598,["Otto"]=2599,["Singer"]=2600,["Foulbelly"]=2601,["Ruul Onestone"]=2602,["Kovork"]=2603,["Molok the Crusher"]=2604,["Zalas Witherbark"]=2605,["Nimar the Slayer"]=2606,["Prince Galen Trollbane"]=2607,["Commander Amaren"]=2608,["Geomancer Flintdagger"]=2609,["Shakes O'Breen"]=2610,["Fozruk"]=2611,["Lieutenant Valorcall"]=2612,["Air Force Alarm Bot (Alliance)"]=2614,["Air Force Alarm Bot (Horde)"]=2615,["Privateer Groy"]=2616,["Hammerfall Peon"]=2618,["Hammerfall Grunt"]=2619,["Prairie Dog"]=2620,["Hammerfall Guardian"]=2621,["Sly Garrett"]=2622,["Spirit of Old"]=2623,["Gazban"]=2624,["Viznik Goldgrubber"]=2625,["Old Man Heming"]=2626,["Grarnik Goodstitch"]=2627,["Dalaran Worker"]=2628,["Earthbind Totem"]=2630,["Princess Poobah"]=2634,["Elder Snapjaw Crocolisk"]=2635,["Blackwater Deckhand"]=2636,["Syndicate Bomb"]=2637,["Syndicate Spectre"]=2638,["Vilebranch Axe Thrower"]=2639,["Vilebranch Witch Doctor"]=2640,["Vilebranch Headhunter"]=2641,["Vilebranch Shadowcaster"]=2642,["Vilebranch Berserker"]=2643,["Vilebranch Hideskinner"]=2644,["Vilebranch Shadow Hunter"]=2645,["Vilebranch Blood Drinker"]=2646,["Vilebranch Soul Eater"]=2647,["Vilebranch Aman'zasi Guard"]=2648,["Witherbark Scalper"]=2649,["Witherbark Zealot"]=2650,["Witherbark Hideskinner"]=2651,["Witherbark Venomblood"]=2652,["Witherbark Sadist"]=2653,["Witherbark Caller"]=2654,["Green Sludge"]=2655,["Jade Ooze"]=2656,["Trained Razorbeak"]=2657,["Razorbeak Gryphon"]=2658,["Razorbeak Skylord"]=2659,["Narkk"]=2663,["Kelsey Yance"]=2664,["Ward of Laze"]=2667,["Danielle Zipstitch"]=2668,["Sheri Zipstitch"]=2669,["Xizk Goodstitch"]=2670,["Mechanical Squirrel"]=2671,["Cowardly Crosby"]=2672,["Target Dummy"]=2673,["Advanced Target Dummy"]=2674,["Explosive Sheep"]=2675,["Compact Harvest Reaper"]=2676,["Mechanical Dragonling"]=2678,["Wenna Silkbeard"]=2679,["Vilebranch Wolf Pup"]=2680,["Vilebranch Raiding Wolf"]=2681,["Fradd Swiftgear"]=2682,["Namdo Bizzfizzle"]=2683,["Rizz Loosebolt"]=2684,["Mazk Snipeshot"]=2685,["Witherbark Broodguard"]=2686,["Gnaz Blunderflame"]=2687,["Ruppo Zipcoil"]=2688,["Highvale Outrunner"]=2691,["Highvale Scout"]=2692,["Highvale Marksman"]=2693,["Highvale Ranger"]=2694,["Sara Balloo"]=2695,["Foggy MacKreel"]=2696,["Clyde Ranthal"]=2697,["George Candarte"]=2698,["Rikqiz"]=2699,["Captain Nials"]=2700,["Dustbelcher Ogre"]=2701,["Zengu"]=2703,["Hanashi"]=2704,["Brewmeister Bilger"]=2705,["Tor'gan"]=2706,["Shadra"]=2707,["Archmage Malin"]=2708,["Phin Odelic"]=2711,["Quae"]=2712,["Kinelory"]=2713,["Forsaken Courier"]=2714,["Dustbelcher Brute"]=2715,["Dustbelcher Wyrmhunter"]=2716,["Dustbelcher Mauler"]=2717,["Dustbelcher Shaman"]=2718,["Dustbelcher Lord"]=2719,["Dustbelcher Ogre Mage"]=2720,["Forsaken Bodyguard"]=2721,["Stone Golem"]=2723,["Scalding Whelp"]=2725,["Scorched Guardian"]=2726,["Crag Coyote"]=2727,["Feral Crag Coyote"]=2728,["Elder Crag Coyote"]=2729,["Rabid Crag Coyote"]=2730,["Ridge Stalker"]=2731,["Ridge Huntress"]=2732,["Apothecary Jorell"]=2733,["Ridge Stalker Patriarch"]=2734,["Lesser Rock Elemental"]=2735,["Greater Rock Elemental"]=2736,["Durtham Greldon"]=2737,["Stromgarde Cavalryman"]=2738,["Shadowforge Tunneler"]=2739,["Shadowforge Darkweaver"]=2740,["Shadowforge Chanter"]=2742,["Shadowforge Warrior"]=2743,["Shadowforge Commander"]=2744,["Ambassador Infernus"]=2745,["Archaedas"]=2748,["Barricade"]=2749,["War Golem"]=2751,["Rumbler"]=2752,["Barnabus"]=2753,["Anathemus"]=2754,["Myzrael"]=2755,["Blacklash"]=2757,["Hematus"]=2759,["Burning Exile"]=2760,["Cresting Exile"]=2761,["Thundering Exile"]=2762,["Thenan"]=2763,["Sleeby"]=2764,["Znort"]=2765,["Lolo the Lookout"]=2766,["First Mate Nilzlix"]=2767,["Professor Phizzlethorpe"]=2768,["Captain Steelgut"]=2769,["Tallow"]=2770,["Drum Fel"]=2771,["Korin Fel"]=2772,["Or'Kalar"]=2773,["Doctor Draxlegauge"]=2774,["Daggerspine Marauder"]=2775,["Vengeful Surge"]=2776,["Deckhand Moishe"]=2778,["Prince Nazjak"]=2779,["Caretaker Nevlin"]=2780,["Caretaker Weston"]=2781,["Caretaker Alaric"]=2782,["Marez Cowl"]=2783,["King Magni Bronzebeard"]=2784,["Theldurin the Lost"]=2785,["Gerrig Bonegrip"]=2786,["Zaruk"]=2787,["Apprentice Kryten"]=2788,["Skuerto"]=2789,["Grand Mason Marblesten"]=2790,["Enraged Rock Elemental"]=2791,["Gor'mul"]=2792,["Kor'gresh Coldrage"]=2793,["Summoned Guardian"]=2794,["Faelyssa"]=2796,["Hovrak Gutrender"]=2797,["Pand Stonebinder"]=2798,["Lucian Fenner"]=2799,["Tresa MacGregor"]=2801,["Susan Tillinghast"]=2802,["Malygen"]=2803,["Kurden Bloodclaw"]=2804,["Deneb Walker"]=2805,["Bale"]=2806,["Vikki Lonsav"]=2808,["Hammon Karwn"]=2810,["Drovnar Strongbrew"]=2812,["Narj Deepslice"]=2814,["Androd Fadran"]=2816,["Rigglefuzz"]=2817,["Slagg"]=2818,["Tunkk"]=2819,["Graud"]=2820,["Keena"]=2821,["Starving Buzzard"]=2829,["Parched Buzzard"]=2830,["Giant Buzzard"]=2831,["Nixxrax Fillamug"]=2832,["Myizz Luckycatch"]=2834,["Cedrik Prose"]=2835,["Brikk Keencraft"]=2836,["Jaxin Chong"]=2837,["Crazk Sparks"]=2838,["Haren Kanmae"]=2839,["Kizz Bluntstrike"]=2840,["Wigcik"]=2842,["Jutak"]=2843,["Hurklor"]=2844,["Fargon Mortalak"]=2845,["Blixrez Goodstitch"]=2846,["Jansen Underwood"]=2847,["Glyx Brewright"]=2848,["Qixdi Goodstitch"]=2849,["Broken Tooth"]=2850,["Urda"]=2851,["Enslaved Druid of the Talon"]=2852,["Freed Druid of the Talon"]=2853,["Snang"]=2855,["Angrun"]=2856,["Thund"]=2857,["Gringer"]=2858,["Gyll"]=2859,["Sigrun Ironhew"]=2860,["Gorrik"]=2861,["[UNUSED] Henria Derth"]=2870,["Grunenstur Balindom"]=2876,["Peria Lamenur"]=2878,["Karrina Mekenda"]=2879,["[UNUSED] Hurom Juggendolf"]=2880,["Durdek Karrin"]=2881,["Prismatic Exile"]=2887,["Garek"]=2888,["Stonevault Seer"]=2892,["Stonevault Bonesnapper"]=2893,["Stonevault Shaman"]=2894,["Dustbelcher Warrior"]=2906,["Dustbelcher Mystic"]=2907,["Grawl"]=2908,["Hammertoe Grez"]=2909,["Prospector Ryedol"]=2910,["Archaeologist Flagongut"]=2911,["Chief Archaeologist Greywhisker"]=2912,["Archaeologist Hollee"]=2913,["Snake"]=2914,["Hammertoe's Spirit"]=2915,["Historian Karnik"]=2916,["Prospector Remtravel"]=2917,["Advisor Belgrum"]=2918,["Fam'retor Guardian"]=2919,["Lucien Tosselwrench"]=2920,["Lotwil Veriatus"]=2921,["Servo"]=2922,["Mangy Silvermane"]=2923,["Silvermane Wolf"]=2924,["Silvermane Howler"]=2925,["Silvermane Stalker"]=2926,["Vicious Owlbeast"]=2927,["Primitive Owlbeast"]=2928,["Savage Owlbeast"]=2929,["Sentinel Glynda Nal'Shea"]=2930,["Zaricotl"]=2931,["Magregan Deepshadow"]=2932,["Keeper Bel'dugur"]=2934,["Dagun the Ravenous"]=2937,["Lanie Reed"]=2941,["Ransin Donner"]=2943,["Boss Tho'grun"]=2944,["Murdaloc"]=2945,["Puppet of Helcular"]=2946,["Harken Windtotem"]=2947,["Mull Thunderhorn"]=2948,["Palemane Tanner"]=2949,["Palemane Skinner"]=2950,["Palemane Poacher"]=2951,["Bristleback Invaders"]=2952,["Bristleback Shaman"]=2953,["Bristleback Battleboar"]=2954,["Plainstrider"]=2955,["Adult Plainstrider"]=2956,["Elder Plainstrider"]=2957,["Prairie Wolf"]=2958,["Prairie Stalker"]=2959,["Prairie Wolf Alpha"]=2960,["Mountain Cougar"]=2961,["Windfury Harpy"]=2962,["Windfury Wind Witch"]=2963,["Windfury Sorceress"]=2964,["Windfury Matriarch"]=2965,["Young Battleboar"]=2966,["Galak Centaur"]=2967,["Galak Outrunner"]=2968,["Wiry Swoop"]=2969,["Swoop"]=2970,["Taloned Swoop"]=2971,["Kodo Calf"]=2972,["Kodo Bull"]=2973,["Kodo Matriarch"]=2974,["Venture Co. Hireling"]=2975,["Venture Co. Laborer"]=2976,["Venture Co. Taskmaster"]=2977,["Venture Co. Worker"]=2978,["Venture Co. Supervisor"]=2979,["Grull Hawkwind"]=2980,["Chief Hawkwind"]=2981,["Seer Graytongue"]=2982,["The Plains Vision"]=2983,["Seer Wiserunner"]=2984,["Ruul Eagletalon"]=2985,["Dorn Plainstalker"]=2986,["Eyahn Eagletalon"]=2987,["Morin Cloudstalker"]=2988,["Bael'dun Digger"]=2989,["Bael'dun Appraiser"]=2990,["Greatmother Hawkwind"]=2991,["Healing Ward V"]=2992,["Baine Bloodhoof"]=2993,["Ancestral Spirit"]=2994,["Tal"]=2995,["Torn"]=2996,["Jyn Stonehoof"]=2997,["Karn Stonehoof"]=2998,["Taur Stonehoof"]=2999,["Gibbert"]=3000,["Brek Stonehoof"]=3001,["Kurm Stonehoof"]=3002,["Fyr Mistrunner"]=3003,["Tepa"]=3004,["Mahu"]=3005,["Una"]=3007,["Mak"]=3008,["Bena Winterhoof"]=3009,["Mani Winterhoof"]=3010,["Teg Dawnstrider"]=3011,["Nata Dawnstrider"]=3012,["Komin Winterhoof"]=3013,["Nida Winterhoof"]=3014,["Kuna Thunderhorn"]=3015,["Tand"]=3016,["Nan Mistrunner"]=3017,["Hogor Thunderhoof"]=3018,["Delgo Ragetotem"]=3019,["Etu Ragetotem"]=3020,["Kard Ragetotem"]=3021,["Sunn Ragetotem"]=3022,["Sura Wildmane"]=3023,["Tah Winterhoof"]=3024,["Kaga Mistrunner"]=3025,["Aska Mistrunner"]=3026,["Naal Mistrunner"]=3027,["Kah Mistrunner"]=3028,["Sewa Mistrunner"]=3029,["Siln Skychaser"]=3030,["Tigor Skychaser"]=3031,["Beram Skychaser"]=3032,["Turak Runetotem"]=3033,["Sheal Runetotem"]=3034,["Flatland Cougar"]=3035,["Kym Wildmane"]=3036,["Sheza Wildmane"]=3037,["Kary Thunderhorn"]=3038,["Holt Thunderhorn"]=3039,["Urek Thunderhorn"]=3040,["Torm Ragetotem"]=3041,["Sark Ragetotem"]=3042,["Ker Ragetotem"]=3043,["Miles Welsh"]=3044,["Malakai Cross"]=3045,["Father Cobb"]=3046,["Archmage Shymm"]=3047,["Ursyn Ghull"]=3048,["Thurston Xane"]=3049,["Veren Tallstrider"]=3050,["Supervisor Fizsprocket"]=3051,["Skorn Whitecloud"]=3052,["Synge"]=3053,["Zarlman Two-Moons"]=3054,["Maur Raincaller"]=3055,["Ghost Howl"]=3056,["Cairne Bloodhoof"]=3057,["Arra'chea"]=3058,["Harutt Thunderhorn"]=3059,["Gart Mistrunner"]=3060,["Lanka Farshot"]=3061,["Meela Dawnstrider"]=3062,["Krang Stonehoof"]=3063,["Gennia Runetotem"]=3064,["Yaw Sharpmane"]=3065,["Narm Skychaser"]=3066,["Pyall Silentstride"]=3067,["Mazzranache"]=3068,["Chaw Stronghide"]=3069,["Kawnie Softbreeze"]=3072,["Marjak Keenblade"]=3073,["Varia Hardhide"]=3074,["Bronk Steelrage"]=3075,["Moorat Longstride"]=3076,["Mahnott Roughwound"]=3077,["Kennah Hawkseye"]=3078,["Varg Windwhisper"]=3079,["Harant Ironbrace"]=3080,["Wunna Darkmane"]=3081,["Honor Guard"]=3083,["Bluffwatcher"]=3084,["Gloria Femmel"]=3085,["Gretchen Vogel"]=3086,["Crystal Boughman"]=3087,["Henry Chapal"]=3088,["Sherman Femmel"]=3089,["Gerald Crawley"]=3090,["Franklin Hamar"]=3091,["Tagain"]=3092,["Grod"]=3093,["Unseen"]=3094,["Fela"]=3095,["Captured Servant of Azora"]=3096,["Bernard Brubaker"]=3097,["Mottled Boar"]=3098,["Dire Mottled Boar"]=3099,["Elder Mottled Boar"]=3100,["Vile Familiar"]=3101,["Felstalker"]=3102,["Makrura Clacker"]=3103,["Makrura Shellhide"]=3104,["Makrura Snapclaw"]=3105,["Surf Crawler"]=3106,["Mature Surf Crawler"]=3107,["Encrusted Surf Crawler"]=3108,["Dreadmaw Crocolisk"]=3110,["Razormane Quilboar"]=3111,["Razormane Scout"]=3112,["Razormane Dustrunner"]=3113,["Razormane Battleguard"]=3114,["Dustwind Harpy"]=3115,["Dustwind Pillager"]=3116,["Dustwind Savage"]=3117,["Dustwind Storm Witch"]=3118,["Kolkar Drudge"]=3119,["Kolkar Outrunner"]=3120,["Durotar Tiger"]=3121,["Bloodtalon Taillasher"]=3122,["Bloodtalon Scythemaw"]=3123,["Scorpid Worker"]=3124,["Clattering Scorpid"]=3125,["Armored Scorpid"]=3126,["Venomtail Scorpid"]=3127,["Kul Tiras Sailor"]=3128,["Kul Tiras Marine"]=3129,["Thunder Lizard"]=3130,["Lightning Hide"]=3131,["Herble Baubbletump"]=3133,["Kzixx"]=3134,["Malissa"]=3135,["Clarise Gnarltree"]=3136,["Matt Johnson"]=3137,["Scott Carevin"]=3138,["Gar'Thok"]=3139,["Lar Prowltusk"]=3140,["Makrura Elder"]=3141,["Orgnil Soulscar"]=3142,["Gornek"]=3143,["Eitrigg"]=3144,["Zureetha Fargaze"]=3145,["Furl Scornbrow"]=3147,["Nez'raz"]=3149,["Hin Denburg"]=3150,["Frang"]=3153,["Jen'shan"]=3154,["Rwag"]=3155,["Nartok"]=3156,["Shikrik"]=3157,["Duokna"]=3158,["Kzan Thornslash"]=3159,["Huklah"]=3160,["Rarc"]=3161,["Burdrak Harglhelm"]=3162,["Uhgar"]=3163,["Jark"]=3164,["Ghrawt"]=3165,["Cutac"]=3166,["Wuark"]=3167,["Flakk"]=3168,["Tarshaw Jaggedscar"]=3169,["Kaplak"]=3170,["Thotar"]=3171,["Dhugru Gorelust"]=3172,["Swart"]=3173,["Dwukk"]=3174,["Krunn"]=3175,["Turuk Amberstill"]=3177,["Stuart Fleming"]=3178,["Harold Riggs"]=3179,["Dark Iron Entrepreneur"]=3180,["Fremal Doohickey"]=3181,["Junder Brokk"]=3182,["Yarrog Baneshadow"]=3183,["Miao'zan"]=3184,["Mishiki"]=3185,["K'waii"]=3186,["Tai'tasi"]=3187,["Master Gadrin"]=3188,["Kor'ghan"]=3189,["Rhinag"]=3190,["Cook Torka"]=3191,["Lieutenant Benedict"]=3192,["Misha Tor'kren"]=3193,["Vel'rin Fang"]=3194,["Burning Blade Thug"]=3195,["Burning Blade Neophyte"]=3196,["Burning Blade Fanatic"]=3197,["Burning Blade Apprentice"]=3198,["Burning Blade Cultist"]=3199,["Fizzle Darkclaw"]=3203,["Gazz'uz"]=3204,["Zalazane"]=3205,["Voodoo Troll"]=3206,["Hexed Troll"]=3207,["Margoz"]=3208,["Brave Windfeather"]=3209,["Brave Proudsnout"]=3210,["Brave Lightninghorn"]=3211,["Brave Ironhorn"]=3212,["Brave Running Wolf"]=3213,["Brave Greathoof"]=3214,["Brave Strongbash"]=3215,["Neeru Fireblade"]=3216,["Brave Dawneagle"]=3217,["Brave Swiftwind"]=3218,["Brave Leaping Deer"]=3219,["Brave Darksky"]=3220,["Brave Rockhorn"]=3221,["Brave Wildrunner"]=3222,["Brave Rainchaser"]=3223,["Brave Cloudmane"]=3224,["Corrupted Mottled Boar"]=3225,["Corrupted Scorpid"]=3226,["Corrupted Bloodtalon Scythemaw"]=3227,["Corrupted Surf Crawler"]=3228,["Nazgrel"]=3230,["Corrupted Dreadmaw Crocolisk"]=3231,["Bristleback Interloper"]=3232,["Lorekeeper Raintotem"]=3233,["Lost Barrens Kodo"]=3234,["Greater Barrens Kodo"]=3235,["Barrens Kodo"]=3236,["Wooly Kodo"]=3237,["Stormhide"]=3238,["Thunderhead"]=3239,["Stormsnout"]=3240,["Savannah Patriarch"]=3241,["Zhevra Runner"]=3242,["Savannah Highmane"]=3243,["Greater Plainstrider"]=3244,["Ornery Plainstrider"]=3245,["Fleeting Plainstrider"]=3246,["Thunderhawk Hatchling"]=3247,["Barrens Giraffe"]=3248,["Greater Thunderhawk"]=3249,["Silithid Creeper"]=3250,["Silithid Grub"]=3251,["Silithid Swarmer"]=3252,["Silithid Harvester"]=3253,["Sunscale Lashtail"]=3254,["Sunscale Screecher"]=3255,["Sunscale Scytheclaw"]=3256,["Ishamuhale"]=3257,["Bristleback Hunter"]=3258,["Bristleback Water Seeker"]=3260,["Bristleback Thornweaver"]=3261,["Bristleback Geomancer"]=3263,["Razormane Hunter"]=3265,["Razormane Defender"]=3266,["Razormane Plunderer"]=3267,["Razormane Thornweaver"]=3268,["Razormane Geomancer"]=3269,["Elder Mystic Razorsnout"]=3270,["Razormane Mystic"]=3271,["Kolkar Wrangler"]=3272,["Kolkar Stormer"]=3273,["Kolkar Pack Runner"]=3274,["Kolkar Marauder"]=3275,["Witchwing Harpy"]=3276,["Witchwing Roguefeather"]=3277,["Witchwing Slayer"]=3278,["Witchwing Ambusher"]=3279,["Witchwing Windcaller"]=3280,["Sarkoth"]=3281,["Venture Co. Mercenary"]=3282,["Venture Co. Enforcer"]=3283,["Venture Co. Drudger"]=3284,["Venture Co. Peon"]=3285,["Venture Co. Overseer"]=3286,["Hana'zua"]=3287,["Spirit of Minshina"]=3289,["Deek Fizzlebizz"]=3290,["Greishan Ironstove"]=3291,["Brewmaster Drohn"]=3292,["Rezlak"]=3293,["Ophek"]=3294,["Sludge Anomaly"]=3295,["Orgrimmar Grunt"]=3296,["Sen'jin Watcher"]=3297,["Gabrielle Chase"]=3298,["Adder"]=3300,["Morgan Ladimore"]=3301,["Master Vornal"]=3304,["Grisha"]=3305,["Keldas"]=3306,["Karus"]=3309,["Doras"]=3310,["Olvia"]=3312,["Trak'gen"]=3313,["Urtharo"]=3314,["Tor'phan"]=3315,["Handor"]=3316,["Ollanus"]=3317,["Koma"]=3318,["Sana"]=3319,["Soran"]=3320,["Morgum"]=3321,["Kaja"]=3322,["Horthus"]=3323,["Grol'dar"]=3324,["Mirket"]=3325,["Zevrost"]=3326,["Gest"]=3327,["Ormok"]=3328,["Kor'jus"]=3329,["Muragus"]=3330,["Kareth"]=3331,["Lumak"]=3332,["Shankys"]=3333,["Rekkul"]=3334,["Hagrus"]=3335,["Takrin Pathseeker"]=3336,["Kargal Battlescar"]=3337,["Sergra Darkthorn"]=3338,["Captain Thalo'thas Brightsun"]=3339,["Gann Stonespire"]=3341,["Shan'ti"]=3342,["Grelkor"]=3343,["Kardris Dreamseeker"]=3344,["Godan"]=3345,["Kithas"]=3346,["Yelmak"]=3347,["Kor'geld"]=3348,["Ukra'nor"]=3349,["Asoran"]=3350,["Magenius"]=3351,["Ormak Grimshot"]=3352,["Grezz Ragefist"]=3353,["Sorek"]=3354,["Saru Steelfury"]=3355,["Sumi"]=3356,["Makaru"]=3357,["Gorina"]=3358,["Kiro"]=3359,["Koru"]=3360,["Shoma"]=3361,["Ogunaro Wolfrunner"]=3362,["Magar"]=3363,["Borya"]=3364,["Karolek"]=3365,["Tamar"]=3366,["Felika"]=3367,["Borstan"]=3368,["Gotri"]=3369,["Urtrun Clanbringer"]=3370,["Tamaro"]=3371,["Sarlek"]=3372,["Arnok"]=3373,["Bael'dun Excavator"]=3374,["Bael'dun Foreman"]=3375,["Bael'dun Soldier"]=3376,["Bael'dun Rifleman"]=3377,["Bael'dun Officer"]=3378,["Burning Blade Bruiser"]=3379,["Burning Blade Acolyte"]=3380,["Southsea Brigand"]=3381,["Southsea Cannoneer"]=3382,["Southsea Cutthroat"]=3383,["Southsea Privateer"]=3384,["Theramore Marine"]=3385,["Theramore Preserver"]=3386,["Jorn Skyseer"]=3387,["Mahren Skyseer"]=3388,["Regthar Deathgate"]=3389,["Apothecary Helbrim"]=3390,["Gazlowe"]=3391,["Prospector Khazgorm"]=3392,["Captain Fairmount"]=3393,["Barak Kodobane"]=3394,["Verog the Dervish"]=3395,["Hezrul Bloodmark"]=3396,["Kolkar Bloodcharger"]=3397,["Gesharahan"]=3398,["Zamja"]=3399,["Xen'to"]=3400,["Shenthul"]=3401,["Zando'zan"]=3402,["Sian'tsu"]=3403,["Jandi"]=3404,["Zeal'aya"]=3405,["Xor'juul"]=3406,["Sian'dur"]=3407,["Zel'mak"]=3408,["Zendo'jian"]=3409,["Jin'sora"]=3410,["Denni'ka"]=3411,["Nogg"]=3412,["Sovik"]=3413,["General Twinbraid"]=3414,["Savannah Huntress"]=3415,["Savannah Matriarch"]=3416,["Living Flame"]=3417,["Kirge Sternhorn"]=3418,["Apothecary Zamah"]=3419,["Feegly the Exiled"]=3421,["Thunderhawk Cloudscraper"]=3424,["Savannah Prowler"]=3425,["Zhevra Charger"]=3426,["Korran"]=3428,["Thork"]=3429,["Mangletooth"]=3430,["Grenthar"]=3431,["Mankrik"]=3432,["Tatternack Steelforge"]=3433,["Nak"]=3434,["Lok Orcbane"]=3435,["Kuz"]=3436,["Kreenig Snarlsnout"]=3438,["Wizzlecrank's Shredder"]=3439,["Melor Stonehoof"]=3441,["Sputtervalve"]=3442,["Grub"]=3443,["Dig Rat"]=3444,["Supervisor Lugwizzle"]=3445,["Mebok Mizzyrix"]=3446,["Pawe Mistrunner"]=3447,["Tonga Runetotem"]=3448,["Darsok Swiftdagger"]=3449,["Defias Companion"]=3450,["Pilot Wizzlecrank"]=3451,["Serena Bloodfeather"]=3452,["Wharfmaster Dizzywig"]=3453,["Cannoneer Smythe"]=3454,["Cannoneer Whessan"]=3455,["Razormane Pathfinder"]=3456,["Razormane Stalker"]=3457,["Razormane Seer"]=3458,["Razormane Warfrenzy"]=3459,["Oasis Snapjaw"]=3461,["Elder Barrens Giraffe"]=3462,["Wandering Barrens Giraffe"]=3463,["Gazrog"]=3464,["Gilthares Firebough"]=3465,["Zhevra Courser"]=3466,["Baron Longshore"]=3467,["Ancient of Lore"]=3468,["Ancient of War"]=3469,["Rathorian"]=3470,["Tinkerer Sniggles"]=3471,["Washte Pawne"]=3472,["Owatanka"]=3473,["Lakota'mani"]=3474,["Echeyakee"]=3475,["Isha Awak"]=3476,["Hraq"]=3477,["Traugh"]=3478,["Nargal Deatheye"]=3479,["Moorane Hearthgrain"]=3480,["Barg"]=3481,["Tari'qa"]=3482,["Jahan Hawkwing"]=3483,["Kil'hala"]=3484,["Wrahk"]=3485,["Halija Whitestrider"]=3486,["Kalyimah Stormcloud"]=3487,["Uthrok"]=3488,["Zargh"]=3489,["Hula'mahi"]=3490,["Ironzar"]=3491,["Vexspindle"]=3492,["Grazlix"]=3493,["Tinkerwiz"]=3494,["Gagsprocket"]=3495,["Fuzruckle"]=3496,["Kilxx"]=3497,["Jazzik"]=3498,["Ranik"]=3499,["Tarhus"]=3500,["Horde Guard"]=3501,["Ratchet Bruiser"]=3502,["Silithid Protector"]=3503,["Gil"]=3504,["Pat"]=3505,["Andi"]=3507,["Mikey"]=3508,["Geoff"]=3509,["Twain"]=3510,["Steven"]=3511,["Jimmy"]=3512,["Miss Danna"]=3513,["Tenaron Stormgrip"]=3514,["Corithras Moonrage"]=3515,["Arch Druid Fandral Staghelm"]=3516,["Rellian Greenspyre"]=3517,["Thomas Miller"]=3518,["Sentinel Arynia Cloudsbreak"]=3519,["Ol' Emma"]=3520,["Ak'Zeloth"]=3521,["Constance Brisboise"]=3522,["Bowen Brisboise"]=3523,["Spirit Wolf"]=3524,["Healing Stream Totem"]=3527,["Pyrewood Armorer"]=3528,["Moonrage Armorer"]=3529,["Pyrewood Tailor"]=3530,["Moonrage Tailor"]=3531,["Pyrewood Leatherworker"]=3532,["Moonrage Leatherworker"]=3533,["Wallace the Blind"]=3534,["Blackmoss the Fetid"]=3535,["Kris Legace"]=3536,["Zixil"]=3537,["Overwatch Mark I"]=3538,["Ott"]=3539,["Hal McAllister"]=3540,["Sarah Raycroft"]=3541,["Jaysin Lanyda"]=3542,["Robert Aebischer"]=3543,["Jason Lemieux"]=3544,["Claude Erksine"]=3545,["Bernie Heisten"]=3546,["Hamlin Atkins"]=3547,["Selina Weston"]=3548,["Shelene Rhobart"]=3549,["Martine Tramblay"]=3550,["Patrice Dwyer"]=3551,["Alexandre Lefevre"]=3552,["Sebastian Meloche"]=3553,["Andrea Boynton"]=3554,["Johan Focht"]=3555,["Andrew Hilbert"]=3556,["Guillaume Sorouy"]=3557,["Healing Ward"]=3560,["Kyrai"]=3561,["Alaindia"]=3562,["Flatland Prowler"]=3566,["Tallonkai Swiftroot"]=3567,["Mist"]=3568,["Bogling"]=3569,["Cleansed Timberling"]=3570,["Teldrassil Sentinel"]=3571,["Zizzek"]=3572,["Mana Spring Totem"]=3573,["Ambermill Brewmaster"]=3577,["Ambermill Miner"]=3578,["Stoneclaw Totem"]=3579,["Crafticus Rabbitus"]=3580,["Sewer Beast"]=3581,["Aman"]=3582,["Barithras Moonshade"]=3583,["Therylune"]=3584,["Therysil"]=3585,["Miner Johnson"]=3586,["Lyrai"]=3587,["Khardan Proudblade"]=3588,["Keina"]=3589,["Janna Brightmoon"]=3590,["Freja Nightwing"]=3591,["Andiss"]=3592,["Alyissia"]=3593,["Frahun Shadewhisper"]=3594,["Shanda"]=3595,["Ayanna Everstride"]=3596,["Mardant Strongoak"]=3597,["Kyra Windblade"]=3598,["Jannok Breezesong"]=3599,["Laurna Morninglight"]=3600,["Dazalar"]=3601,["Kal"]=3602,["Cyndra Kindwhisper"]=3603,["Malorne Bladeleaf"]=3604,["Nadyia Maneweaver"]=3605,["Alanna Raveneye"]=3606,["Androl Oakhand"]=3607,["Aldia"]=3608,["Shalomon"]=3609,["Jeena Featherbow"]=3610,["Brannol Eaglemoon"]=3611,["Sinda"]=3612,["Meri Ironweave"]=3613,["Narret Shadowgrove"]=3614,["Devrak"]=3615,["Onu"]=3616,["Lordaeron Citizen"]=3617,["Ghost Saber"]=3619,["Harruk"]=3620,["Kurll"]=3621,["Grokor"]=3622,["Zudd"]=3624,["Rarck"]=3625,["Jenn Langston"]=3626,["Erich Lohan"]=3627,["Steven Lohan"]=3628,["David Langston"]=3629,["Deviate Coiler"]=3630,["Deviate Stinglash"]=3631,["Deviate Creeper"]=3632,["Deviate Slayer"]=3633,["Deviate Stalker"]=3634,["Deviate Ravager"]=3636,["Deviate Guardian"]=3637,["Devouring Ectoplasm"]=3638,["Sentinel Tysha Moonblade"]=3639,["Evolving Ectoplasm"]=3640,["Deviate Lurker"]=3641,["Cerellean Whiteclaw"]=3644,["Thundris Windweaver"]=3649,["Asterion"]=3650,["Trigore the Lasher"]=3652,["Kresh"]=3653,["Mutanus the Devourer"]=3654,["Mad Magglish"]=3655,["Sentinel Elissa Starbreeze"]=3657,["Lizzarik"]=3658,["Jorb"]=3659,["Athrikus Narassin"]=3660,["Balthule Shadowstrike"]=3661,["Delmanis the Hated"]=3662,["Delgren the Purifier"]=3663,["Ilkrud Magthrull"]=3664,["Crane Operator Bigglefuzz"]=3665,["Wizbang Cranktoggle"]=3666,["Anaya Dawnrunner"]=3667,["Lord Cobrahn"]=3669,["Lord Pythas"]=3670,["Lady Anacondra"]=3671,["Boahn"]=3672,["Lord Serpentis"]=3673,["Skum"]=3674,["Muyoh"]=3678,["Naralex"]=3679,["Serpentbloom Snake"]=3680,["Wisp"]=3681,["Vrang Wildgore"]=3682,["Kiknikle"]=3683,["Pizznukle"]=3684,["Harb Clawhoof"]=3685,["Reban Freerunner"]=3688,["Laer Stepperunner"]=3689,["Kar Stormsinger"]=3690,["Raene Wolfrunner"]=3691,["Volcor"]=3692,["Terenthis"]=3693,["Sentinel Selarin"]=3694,["Grimclaw"]=3695,["Ran Bloodtooth"]=3696,["Bolyun"]=3698,["Jadenvis Seawatcher"]=3700,["Tharnariun Treetender"]=3701,["Alanndarian Nightsong"]=3702,["Krulmoo Fullmoon"]=3703,["Mahani"]=3704,["Gahroot"]=3705,["Tai'jin"]=3706,["Ken'jai"]=3707,["Gruna"]=3708,["Wrathtail Myrmidon"]=3711,["Wrathtail Razortail"]=3712,["Wrathtail Wave Rider"]=3713,["Wrathtail Sea Witch"]=3715,["Wrathtail Sorceress"]=3717,["Mystlash Hydra"]=3721,["Mystlash Flayer"]=3722,["Dark Strand Cultist"]=3725,["Dark Strand Enforcer"]=3727,["Dark Strand Adept"]=3728,["Dark Strand Excavator"]=3730,["Forsaken Seeker"]=3732,["Forsaken Herbalist"]=3733,["Orc Overseer"]=3734,["Apothecary Falthis"]=3735,["Darkslayer Mordenthal"]=3736,["Saltspittle Puddlejumper"]=3737,["Saltspittle Warrior"]=3739,["Saltspittle Muckdweller"]=3740,["Saltspittle Oracle"]=3742,["Foulweald Warrior"]=3743,["Foulweald Pathfinder"]=3745,["Foulweald Den Watcher"]=3746,["Foulweald Shaman"]=3748,["Foulweald Ursa"]=3749,["Foulweald Totemic"]=3750,["Xavian Rogue"]=3752,["Xavian Betrayer"]=3754,["Xavian Felsworn"]=3755,["Xavian Hellcaller"]=3757,["Felmusk Satyr"]=3758,["Felmusk Rogue"]=3759,["Felmusk Felsworn"]=3762,["Felmusk Shadowstalker"]=3763,["Bleakheart Satyr"]=3765,["Bleakheart Trickster"]=3767,["Bleakheart Shadowstalker"]=3770,["Bleakheart Hellcaller"]=3771,["Lesser Felguard"]=3772,["Akkrilus"]=3773,["Felslayer"]=3774,["Syurana"]=3779,["Singed Shambler"]=3780,["Shadethicket Wood Shaper"]=3781,["Shadethicket Stone Mover"]=3782,["Shadethicket Raincaller"]=3783,["Shadethicket Bark Ripper"]=3784,["Terrowulf Fleshripper"]=3789,["Terrowulf Shadow Weaver"]=3791,["Terrowulf Packlord"]=3792,["Druid of the Talon"]=3794,["Druid of the Claw"]=3795,["Cenarion Protector"]=3797,["Severed Druid"]=3799,["Severed Sleeper"]=3801,["Severed Dreamer"]=3802,["Severed Keeper"]=3803,["Forsaken Intruder"]=3804,["Forsaken Infiltrator"]=3806,["Forsaken Assassin"]=3807,["Forsaken Dark Stalker"]=3808,["Ashenvale Bear"]=3809,["Elder Ashenvale Bear"]=3810,["Giant Ashenvale Bear"]=3811,["Clattering Crawler"]=3812,["Spined Crawler"]=3814,["Blink Dragon"]=3815,["Wild Buck"]=3816,["Shadowhorn Stag"]=3817,["Elder Shadowhorn Stag"]=3818,["Wildthorn Stalker"]=3819,["Wildthorn Venomspitter"]=3820,["Wildthorn Lurker"]=3821,["Ghostpaw Runner"]=3823,["Ghostpaw Howler"]=3824,["Ghostpaw Alpha"]=3825,["[UNUSED] Ancient Guardian"]=3831,["Cenarion Vindicator"]=3833,["Crazed Ancient"]=3834,["Biletoad"]=3835,["Mountaineer Pebblebitty"]=3836,["Vesprystus"]=3838,["Druid of the Fang"]=3840,["Teldira Moonfeather"]=3841,["Brombar Higgleby"]=3842,["Anaya"]=3843,["Healing Ward IV"]=3844,["Shindrell Swiftfire"]=3845,["Talen"]=3846,["Orendil Broadleaf"]=3847,["Kayneth Stillwind"]=3848,["Deathstalker Adamant"]=3849,["Sorcerer Ashcrombe"]=3850,["Shadowfang Whitescalp"]=3851,["Shadowfang Moonwalker"]=3853,["Shadowfang Wolfguard"]=3854,["Shadowfang Darksoul"]=3855,["Shadowfang Glutton"]=3857,["Shadowfang Ragetooth"]=3859,["Bleak Worg"]=3861,["Slavering Worg"]=3862,["Lupine Horror"]=3863,["Fel Steed"]=3864,["Shadow Charger"]=3865,["Vile Bat"]=3866,["Blood Seeker"]=3868,["Lesser Gargoyle"]=3869,["Stone Sleeper"]=3870,["Deathsworn Captain"]=3872,["Tormented Officer"]=3873,["Haunted Servitor"]=3875,["Wailing Guardsman"]=3877,["Dark Strand Assassin"]=3879,["Sentinel Melyria Frostshadow"]=3880,["Grimtak"]=3881,["Zlagk"]=3882,["Moodan Sungrain"]=3883,["Jhawna Oatwind"]=3884,["Sentinel Velene Starstrike"]=3885,["Razorclaw the Butcher"]=3886,["Baron Silverlaine"]=3887,["Korra"]=3888,["Brakgul Deathbringer"]=3890,["Teronis' Corpse"]=3891,["Relara Whitemoon"]=3892,["Forsaken Scout"]=3893,["Pelturas Whitemoon"]=3894,["Krolg"]=3897,["Aligar the Tormentor"]=3898,["Balizar the Umbrage"]=3899,["Caedakar the Vicious"]=3900,["Illiyana"]=3901,["Searing Totem II"]=3902,["Searing Totem III"]=3903,["Searing Totem IV"]=3904,["Healing Stream Totem II"]=3906,["Healing Stream Totem III"]=3907,["Healing Stream Totem IV"]=3908,["Healing Stream Totem V"]=3909,["Stoneclaw Totem II"]=3911,["Stoneclaw Totem III"]=3912,["Stoneclaw Totem IV"]=3913,["Rethilgore"]=3914,["Dagri"]=3915,["Shael'dryn"]=3916,["Befouled Water Elemental"]=3917,["Withered Ancient"]=3919,["Anilia"]=3920,["Thistlefur Ursa"]=3921,["Thistlefur Totemic"]=3922,["Thistlefur Den Watcher"]=3923,["Thistlefur Shaman"]=3924,["Thistlefur Avenger"]=3925,["Thistlefur Pathfinder"]=3926,["Wolf Master Nandos"]=3927,["Rotting Slime"]=3928,["Shadethicket Oracle"]=3931,["Bloodtooth Guard"]=3932,["Hai'zan"]=3933,["Innkeeper Boorand Plainswind"]=3934,["Toddrick"]=3935,["Shandris Feathermoon"]=3936,["Kira Songshine"]=3937,["Razormane Wolf"]=3939,["Taneel Darkwood"]=3940,["Uthil Mooncall"]=3941,["Mavoris Cloudsbreak"]=3942,["Ruuzel"]=3943,["Wrathtail Priestess"]=3944,["Caravaneer Ruzzgot"]=3945,["Velinde Starsong"]=3946,["Goblin Shipbuilder"]=3947,["Honni Goldenoat"]=3948,["Minor Water Guardian"]=3950,["Bhaldaran Ravenshade"]=3951,["Aeolynn"]=3952,["Tandaan Lightmane"]=3953,["Dalria"]=3954,["Shandrina"]=3955,["Harklan Moongrove"]=3956,["Jainay Featherbreeze"]=3957,["Lardan"]=3958,["Nantar"]=3959,["Ulthaan"]=3960,["Maliynn"]=3961,["Haljan Oakheart"]=3962,["Danlaar Nightstride"]=3963,["Kylanna"]=3964,["Cylania Rootstalker"]=3965,["Aayndia Floralwind"]=3967,["Sentry Totem"]=3968,["Fahran Silentblade"]=3969,["Llana"]=3970,["Houndmaster Loksey"]=3974,["Herod"]=3975,["Scarlet Commander Mograine"]=3976,["High Inquisitor Whitemane"]=3977,["Sage Truthseeker"]=3978,["Librarian Mae Paledust"]=3979,["Raleigh the Devout"]=3980,["Vorrel Sengutz"]=3981,["Monika Sengutz"]=3982,["Interrogator Vishas"]=3983,["Nancy Vishas"]=3984,["Grandpa Vishas"]=3985,["Sarilus Foulborne"]=3986,["Dal Bloodclaw"]=3987,["Venture Co. Operator"]=3988,["Venture Co. Logger"]=3989,["Venture Co. Deforester"]=3991,["Venture Co. Holdout"]=3992,["Venture Co. Machine Smith"]=3993,["Keeper Albagorm"]=3994,["Witch Doctor Jin'Zil"]=3995,["Faldreas Goeth'Shael"]=3996,["Windshear Vermin"]=3998,["Windshear Digger"]=3999,["Windshear Tunnel Rat"]=4001,["Windshear Stonecutter"]=4002,["Windshear Geomancer"]=4003,["Windshear Overlord"]=4004,["Deepmoss Creeper"]=4005,["Deepmoss Webspinner"]=4006,["Deepmoss Venomspitter"]=4007,["Cliff Stormer"]=4008,["Raging Cliff Stormer"]=4009,["Young Pridewing"]=4011,["Pridewing Wyvern"]=4012,["Pridewing Skyhunter"]=4013,["Pridewing Consort"]=4014,["Pridewing Patriarch"]=4015,["Fey Dragon"]=4016,["Wily Fey Dragon"]=4017,["Antlered Courser"]=4018,["Great Courser"]=4019,["Sap Beast"]=4020,["Corrupted Sap Beast"]=4021,["Bloodfury Harpy"]=4022,["Bloodfury Roguefeather"]=4023,["Bloodfury Slayer"]=4024,["Bloodfury Ambusher"]=4025,["Bloodfury Windcaller"]=4026,["Bloodfury Storm Witch"]=4027,["Charred Ancient"]=4028,["Blackened Ancient"]=4029,["Vengeful Ancient"]=4030,["Fledgling Chimaera"]=4031,["Young Chimaera"]=4032,["Enraged Stone Spirit"]=4034,["Furious Stone Spirit"]=4035,["Rogue Flame Spirit"]=4036,["Burning Ravager"]=4037,["Burning Destroyer"]=4038,["Cave Stalker"]=4040,["Scorched Basilisk"]=4041,["Singed Basilisk"]=4042,["Galthuk"]=4043,["Blackened Basilisk"]=4044,["Magatha Grimtotem"]=4046,["Zor Lonetree"]=4047,["Falfindel Waywarder"]=4048,["Seereth Stonebreak"]=4049,["Cenarion Caretaker"]=4050,["Cenarion Botanist"]=4051,["Cenarion Druid"]=4052,["Daughter of Cenarius"]=4053,["Laughing Sister"]=4054,["Mirkfallon Keeper"]=4056,["Son of Cenarius"]=4057,["Forest Spirit"]=4059,["Mirkfallon Dryad"]=4061,["Dark Iron Bombardier"]=4062,["Feeboz"]=4063,["Blackrock Scout"]=4064,["Blackrock Sentry"]=4065,["Nal'taszar"]=4066,["Twilight Runner"]=4067,["Serpent Messenger"]=4068,["Venture Co. Builder"]=4070,["Prisoner of Jin'Zil"]=4072,["XT:4"]=4073,["XT:9"]=4074,["Rat"]=4075,["Roach"]=4076,["Gaxim Rustfizzle"]=4077,["Collin Mauren"]=4078,["Sentinel Thenysil"]=4079,["Kaela Shadowspear"]=4080,["Lomac Gearstrip"]=4081,["Grawnal"]=4082,["Jeeda"]=4083,["Chylina"]=4084,["Nizzik"]=4085,["Veenix"]=4086,["Arias'ta Bladesinger"]=4087,["Elanaria"]=4088,["Sildanair"]=4089,["Astarii Starseeker"]=4090,["Jandria"]=4091,["Lariia"]=4092,["[Deprecated for 4.x]Galak Wrangler"]=4093,["[Deprecated for 4.x]Galak Scout"]=4094,["Galak Mauler"]=4095,["[Deprecated for 4.x]Galak Windchaser"]=4096,["Galak Stormer"]=4097,["Galak Marauder"]=4099,["Screeching Harpy"]=4100,["Screeching Roguefeather"]=4101,["Screeching Windcaller"]=4104,["Highperch Wyvern"]=4107,["Highperch Consort"]=4109,["Highperch Patriarch"]=4110,["Gravelsnout Kobold"]=4111,["Gravelsnout Vermin"]=4112,["Gravelsnout Digger"]=4113,["Gravelsnout Forager"]=4114,["Gravelsnout Surveyor"]=4116,["Cloud Serpent"]=4117,["Venomous Cloud Serpent"]=4118,["Elder Cloud Serpent"]=4119,["Thundering Boulderkin"]=4120,["Needles Cougar"]=4124,["Crag Stalker"]=4126,["Hecklefang Hyena"]=4127,["Hecklefang Stalker"]=4128,["Hecklefang Snarler"]=4129,["[Deprecated for 4.x]Silithid Searcher"]=4130,["[Deprecated for 4.x]Silithid Invader"]=4131,["Krkk'kx"]=4132,["[Deprecated for 4.x]Silithid Hive Drone"]=4133,["Jeen'ra Nightrunner"]=4138,["Scorpid Terror"]=4139,["Scorpid Reaver"]=4140,["[Deprecated for 4.x]Sparkleshell Tortoise"]=4142,["Sparkleshell Snapper"]=4143,["Sparkleshell Borer"]=4144,["Jocaste"]=4146,["[Deprecated for 4.x]Saltstone Basilisk"]=4147,["[Deprecated for 4.x]Saltstone Gazer"]=4150,["[Deprecated for 4.x]Saltstone Crystalhide"]=4151,["Salt Flats Scavenger"]=4154,["Idriana"]=4155,["Astaia"]=4156,["Salt Flats Vulture"]=4158,["Me'lynn"]=4159,["Ainethil"]=4160,["Lysheana"]=4161,["Syurna"]=4163,["Cylania"]=4164,["Elissa Dumas"]=4165,["Gazelle"]=4166,["Dendrythis"]=4167,["Elynna"]=4168,["Jaeana"]=4169,["Ellandrieth"]=4170,["Merelyssa"]=4171,["Anadyia"]=4172,["Landria"]=4173,["Vinasia"]=4175,["Melea"]=4177,["Ealyshia Dewwhisper"]=4180,["Fyrenna"]=4181,["Dalmond"]=4182,["Naram Longclaw"]=4183,["Geenia Sunshadow"]=4184,["Shaldyn"]=4185,["Mavralyn"]=4186,["Harlon Thornguard"]=4187,["Illyanie"]=4188,["Valdaron"]=4189,["Kyndri"]=4190,["Allyndia"]=4191,["Taldan"]=4192,["Grondal Moonbreeze"]=4193,["Ullanna"]=4194,["Tiyani"]=4195,["Silithid Swarm"]=4196,["Ken'zigla"]=4197,["Braelyn Firehand"]=4198,["Laird"]=4200,["Ziz Fizziks"]=4201,["Gerenzo Wrenchwhistle"]=4202,["Ariyell Skyshadow"]=4203,["Firodren Mooncaller"]=4204,["Dorion"]=4205,["Lairn"]=4208,["Garryeth"]=4209,["Alegorn"]=4210,["Dannelor"]=4211,["Telonis"]=4212,["Taladan"]=4213,["Erion Shadewhisper"]=4214,["Anishar"]=4215,["Chardryn"]=4216,["Mathrengyl Bearwalker"]=4217,["Denatharion"]=4218,["Fylerian Nightwing"]=4219,["Cyroen"]=4220,["Talaelar"]=4221,["Voloren"]=4222,["Fyldan"]=4223,["Saenorion"]=4225,["Ulthir"]=4226,["Vaean"]=4228,["Mythrin'dir"]=4229,["Yldan"]=4230,["Kieran"]=4231,["Glorandiir"]=4232,["Mythidan"]=4233,["Andrus"]=4234,["Turian"]=4235,["Cyridan"]=4236,["Caynrus"]=4240,["Mydrannul"]=4241,["Frostsaber Companion"]=4242,["Nightshade"]=4243,["Shadow"]=4244,["Pesterhide Hyena"]=4248,["Pesterhide Snarler"]=4249,["Galak Packhound"]=4250,["Goblin Racer"]=4251,["Gnome Racer"]=4252,["Geofram Bouldertoe"]=4254,["Brogus Thunderbrew"]=4255,["Golnir Bouldertoe"]=4256,["Lana Thunderbrew"]=4257,["Bengus Deepforge"]=4258,["Thurgrum Deepforge"]=4259,["Venture Co. Shredder"]=4260,["Darnassus Sentinel"]=4262,["Deepmoss Hatchling"]=4263,["Deepmoss Matriarch"]=4264,["Nyoma"]=4265,["Danlyia"]=4266,["Daelyshia"]=4267,["Chestnut Mare"]=4269,["Riding Wolf (Red)"]=4270,["Dire Wolf"]=4271,["Brown Wolf"]=4272,["Keeper Ordanus"]=4273,["Fenrus the Devourer"]=4274,["Archmage Arugal"]=4275,["Piznik"]=4276,["Eye of Kilrogg"]=4277,["Commander Springvale"]=4278,["Odo the Blindwatcher"]=4279,["Scarlet Preserver"]=4280,["Scarlet Scout"]=4281,["Scarlet Magician"]=4282,["Scarlet Sentry"]=4283,["Scarlet Augur"]=4284,["Scarlet Disciple"]=4285,["Scarlet Soldier"]=4286,["Scarlet Gallant"]=4287,["Scarlet Beastmaster"]=4288,["Scarlet Evoker"]=4289,["Scarlet Guardsman"]=4290,["Scarlet Diviner"]=4291,["Scarlet Protector"]=4292,["Scarlet Scryer"]=4293,["Scarlet Sorcerer"]=4294,["Scarlet Myrmidon"]=4295,["Scarlet Adept"]=4296,["Scarlet Conjuror"]=4297,["Scarlet Defender"]=4298,["Scarlet Chaplain"]=4299,["Scarlet Wizard"]=4300,["Scarlet Centurion"]=4301,["Scarlet Champion"]=4302,["Scarlet Abbot"]=4303,["Scarlet Tracking Hound"]=4304,["Kriggon Talsone"]=4305,["Scarlet Torturer"]=4306,["Heldan Galesong"]=4307,["Unfettered Spirit"]=4308,["Gorm Grimtotem"]=4309,["Cor Grimtotem"]=4310,["Holgar Stormaxe"]=4311,["Tharm"]=4312,["Gorkas"]=4314,["Kolkar Packhound"]=4316,["Nyse"]=4317,["Thyssiana"]=4319,["Caelyb"]=4320,["Baldruc"]=4321,["Searing Hatchling"]=4323,["Searing Whelp"]=4324,["Firemane Scalebane"]=4328,["Firemane Scout"]=4329,["Firemane Ash Tail"]=4331,["Firemane Flamecaller"]=4334,["Brimgore"]=4339,["Drywallow Crocolisk"]=4341,["Drywallow Vicejaw"]=4342,["Drywallow Snapper"]=4343,["Mottled Drywallow Crocolisk"]=4344,["Drywallow Daggermaw"]=4345,["Noxious Flayer"]=4346,["Noxious Reaver"]=4347,["Noxious Shredder"]=4348,["Bloodfen Raptor"]=4351,["Bloodfen Screecher"]=4352,["Bloodfen Scytheclaw"]=4355,["Bloodfen Razormaw"]=4356,["Bloodfen Lashtail"]=4357,["Mirefin Puddlejumper"]=4358,["Mirefin Murloc"]=4359,["Mirefin Warrior"]=4360,["Mirefin Muckdweller"]=4361,["Mirefin Coastrunner"]=4362,["Mirefin Oracle"]=4363,["Strashaz Warrior"]=4364,["Strashaz Serpent Guard"]=4366,["Strashaz Myrmidon"]=4368,["Strashaz Sorceress"]=4370,["Strashaz Siren"]=4371,["Strashaz Hydra"]=4374,["Darkmist Spider"]=4376,["Darkmist Hatchling"]=4377,["Darkmist Recluse"]=4378,["Darkmist Silkspinner"]=4379,["Darkmist Widow"]=4380,["Withervine Creeper"]=4382,["Withervine Rager"]=4385,["Withervine Bark Ripper"]=4386,["Withervine Mire Beast"]=4387,["Young Murk Thresher"]=4388,["Murk Thresher"]=4389,["Elder Murk Thresher"]=4390,["Swamp Ooze"]=4391,["Corrosive Swamp Ooze"]=4392,["Acidic Swamp Ooze"]=4393,["Bubbling Swamp Ooze"]=4394,["Mudrock Tortoise"]=4396,["Mudrock Spikeshell"]=4397,["Mudrock Burrower"]=4398,["Mudrock Borer"]=4399,["Mudrock Snapjaw"]=4400,["Muckshell Clacker"]=4401,["Muckshell Snapclaw"]=4402,["Muckshell Pincer"]=4403,["Muckshell Scrabbler"]=4404,["Muckshell Razorclaw"]=4405,["Teloren"]=4407,["Gatekeeper Kordurus"]=4409,["Darkfang Lurker"]=4411,["Darkfang Creeper"]=4412,["Darkfang Spider"]=4413,["Darkfang Venomspitter"]=4414,["Giant Darkfang Spider"]=4415,["Defias Strip Miner"]=4416,["Defias Taskmaster"]=4417,["Defias Wizard"]=4418,["Race Master Kronkrider"]=4419,["Overlord Ramtusk"]=4420,["Charlga Razorflank"]=4421,["Agathelos the Raging"]=4422,["Darnassian Protector"]=4423,["Aggem Thorncurse"]=4424,["Blind Hunter"]=4425,["Ward Guardian"]=4427,["Death Speaker Jargba"]=4428,["Goblin Pit Crewman"]=4429,["Gnome Pit Crewman"]=4430,["Razorfen Warrior"]=4435,["Razorfen Quilguard"]=4436,["Razorfen Warden"]=4437,["Razorfen Spearhide"]=4438,["Razorfen Totemic"]=4440,["Razorfen Defender"]=4442,["Deathstalker Vincent"]=4444,["Crazzle Sprysprocket"]=4449,["Rugfizzle"]=4450,["Auld Stonespire"]=4451,["Kravel Koalbeard"]=4452,["Wizzle Brassbolts"]=4453,["Fizzle Brassbolts"]=4454,["Red Jack Flint"]=4455,["Fiora Longears"]=4456,["Murkgill Forager"]=4457,["Murkgill Hunter"]=4458,["Murkgill Oracle"]=4459,["Murkgill Coldbringer"]=4460,["Murkgill Warrior"]=4461,["Blackrock Hunter"]=4462,["Blackrock Summoner"]=4463,["Blackrock Gladiator"]=4464,["Vilebranch Warrior"]=4465,["Vilebranch Scalper"]=4466,["Vilebranch Soothsayer"]=4467,["Jade Sludge"]=4468,["Emerald Ooze"]=4469,["Haunting Vision"]=4472,["Rotting Cadaver"]=4474,["Blighted Zombie"]=4475,["Fardel Dabyrie"]=4479,["Kenata Dabyrie"]=4480,["Marcel Dabyrie"]=4481,["Moktar Krin"]=4483,["Feero Ironhand"]=4484,["Belgrom Rockmaul"]=4485,["Genavie Callow"]=4486,["Parqual Fintallas"]=4488,["Braug Dimspirit"]=4489,["Grenka Bloodscreech"]=4490,["Scarlet Avenger"]=4493,["Scarlet Spellbinder"]=4494,["Gnome Pit Boss"]=4495,["Goblin Pit Boss"]=4496,["Captain Quirk"]=4497,["Maurin Bonesplitter"]=4498,["Rok'Alim the Pounder"]=4499,["Overlord Mok'Morokk"]=4500,["Draz'Zilb"]=4501,["Tharg"]=4502,["Mudcrush Durtfeet"]=4503,["Frostmaw"]=4504,["Bloodsail Deckhand"]=4505,["Bloodsail Swabby"]=4506,["Daisy"]=4507,["Willix the Importer"]=4508,["Sargath"]=4509,["Heralath Fallowbrook"]=4510,["Agam'ar"]=4511,["Rotting Agam'ar"]=4512,["Raging Agam'ar"]=4514,["Death's Head Acolyte"]=4515,["Death's Head Adept"]=4516,["Death's Head Priest"]=4517,["Death's Head Sage"]=4518,["Death's Head Seer"]=4519,["Razorfen Geomancer"]=4520,["Treshala Fallowbrook"]=4521,["Razorfen Dustweaver"]=4522,["Razorfen Groundshaker"]=4523,["Razorfen Earthbreaker"]=4525,["Wind Howler"]=4526,["Stone Rumbler"]=4528,["Razorfen Handler"]=4530,["Razorfen Beast Trainer"]=4531,["Razorfen Beastmaster"]=4532,["Tamed Hyena"]=4534,["Tamed Battleboar"]=4535,["Kraul Bat"]=4538,["Greater Kraul Bat"]=4539,["Scarlet Monk"]=4540,["Blood of Agamaggan"]=4541,["High Inquisitor Fairbanks"]=4542,["Bloodmage Thalnos"]=4543,["Krueg Skullsplitter"]=4544,["Nag'zehn"]=4545,["Bor'zehn"]=4546,["Tarkreu Shadowstalker"]=4547,["Steelsnap"]=4548,["William Montague"]=4549,["Ophelia Montague"]=4550,["Michael Garrett"]=4551,["Eunice Burch"]=4552,["Ronald Burch"]=4553,["Tawny Grisette"]=4554,["Eleanor Rusk"]=4555,["Gordon Wendham"]=4556,["Louis Warren"]=4557,["Lauren Newcomb"]=4558,["Timothy Weldon"]=4559,["Walter Ellingson"]=4560,["Daniel Bartlett"]=4561,["Thomas Mordan"]=4562,["Kaal Soulreaper"]=4563,["Luther Pickman"]=4564,["Richard Kerwin"]=4565,["Kaelystia Hatebringer"]=4566,["Pierce Shackleton"]=4567,["Anastasia Hartwell"]=4568,["Charles Seaton"]=4569,["Sydney Upton"]=4570,["Morley Bates"]=4571,["Silas Zimmer"]=4572,["Armand Cromwell"]=4573,["Lizbeth Cromwell"]=4574,["Hannah Akeley"]=4575,["Josef Gregorian"]=4576,["Millie Gregorian"]=4577,["Josephine Lister"]=4578,["Lucille Castleton"]=4580,["Salazar Bloch"]=4581,["Carolyn Ward"]=4582,["Miles Dexter"]=4583,["Gregory Charles"]=4584,["Ezekiel Graves"]=4585,["Graham Van Talen"]=4586,["Elizabeth Van Talen"]=4587,["Arthur Moore"]=4588,["Joseph Moore"]=4589,["Jonathan Chambers"]=4590,["Mary Edras"]=4591,["Nathaniel Steenwick"]=4592,["Christoph Walker"]=4593,["Angela Curthas"]=4594,["Baltus Fowler"]=4595,["James Van Brunt"]=4596,["Samuel Van Brunt"]=4597,["Brom Killian"]=4598,["Sarah Killian"]=4599,["Geoffrey Hartwell"]=4600,["Francis Eliot"]=4601,["Benijah Fenner"]=4602,["Nicholas Atwood"]=4603,["Abigail Sawyer"]=4604,["Basil Frye"]=4605,["Aelthalyste"]=4606,["Father Lankester"]=4607,["Father Lazarus"]=4608,["Doctor Marsh"]=4609,["Algernon"]=4610,["Doctor Herbert Halsey"]=4611,["Boyle"]=4612,["Christopher Drakul"]=4613,["Martha Alliestar"]=4614,["Katrina Alliestar"]=4615,["Lavinia Crowe"]=4616,["Thaddeus Webb"]=4617,["Martek the Exiled"]=4618,["Geltharis"]=4619,["Fobeed"]=4620,["Quilguard Champion"]=4623,["Booty Bay Bruiser"]=4624,["Death's Head Ward Keeper"]=4625,["Arugal's Voidwalker"]=4627,["Trackmaster Zherin"]=4629,["Pozzik"]=4630,["Wharfmaster Lozgil"]=4631,["Kolkar Centaur"]=4632,["Kolkar Scout"]=4633,["Kolkar Mauler"]=4634,["Kolkar Windchaser"]=4635,["Kolkar Battle Lord"]=4636,["Kolkar Destroyer"]=4637,["Magram Scout"]=4638,["Magram Outrunner"]=4639,["Magram Wrangler"]=4640,["Magram Windchaser"]=4641,["Magram Stormer"]=4642,["Magram Pack Runner"]=4643,["Magram Marauder"]=4644,["Magram Mauler"]=4645,["Gelkis Outrunner"]=4646,["Gelkis Scout"]=4647,["Gelkis Stamper"]=4648,["Gelkis Windchaser"]=4649,["Gelkis Earthcaller"]=4651,["Gelkis Mauler"]=4652,["Gelkis Marauder"]=4653,["Maraudine Scout"]=4654,["Maraudine Wrangler"]=4655,["Maraudine Mauler"]=4656,["Maraudine Windchaser"]=4657,["Maraudine Stormer"]=4658,["Maraudine Marauder"]=4659,["Maraudine Bonepaw"]=4660,["Gelkis Rumbler"]=4661,["Magram Bonepaw"]=4662,["Burning Blade Augur"]=4663,["Burning Blade Reaver"]=4664,["Burning Blade Adept"]=4665,["Burning Blade Felsworn"]=4666,["Burning Blade Shadowmage"]=4667,["Burning Blade Summoner"]=4668,["Hatefury Rogue"]=4670,["Hatefury Trickster"]=4671,["Hatefury Felsworn"]=4672,["Hatefury Betrayer"]=4673,["Hatefury Shadowstalker"]=4674,["Hatefury Hellcaller"]=4675,["Lesser Infernal"]=4676,["Doomwarder"]=4677,["Mana Eater"]=4678,["Nether Maiden"]=4679,["Doomwarder Captain"]=4680,["Mage Hunter"]=4681,["Nether Sister"]=4682,["Nether Sorceress"]=4684,["Ley Hunter"]=4685,["Deepstrider Giant"]=4686,["Deepstrider Searcher"]=4687,["Bonepaw Hyena"]=4688,["Starving Bonepaw"]=4689,["Rabid Bonepaw"]=4690,["Dread Swoop"]=4692,["Dread Flyer"]=4693,["Dread Ripper"]=4694,["Carrion Horror"]=4695,["Scorpashi Snapper"]=4696,["Scorpashi Lasher"]=4697,["Scorpashi Venomlash"]=4699,["Aged Kodo"]=4700,["Dying Kodo"]=4701,["Ancient Kodo"]=4702,["Burning Blade Invoker"]=4705,["Razzeric"]=4706,["Zuzubee"]=4707,["Shreev"]=4708,["Zamek"]=4709,["Gray Ram"]=4710,["Slitherblade Naga"]=4711,["Slitherblade Sorceress"]=4712,["Slitherblade Warrior"]=4713,["Slitherblade Myrmidon"]=4714,["Slitherblade Razortail"]=4715,["Slitherblade Tidehunter"]=4716,["Slitherblade Oracle"]=4718,["Slitherblade Sea Witch"]=4719,["Rizzle Brassbolts"]=4720,["Zangen Stonehoof"]=4721,["Rau Cliffrunner"]=4722,["Foreman Cozzle"]=4723,["Raging Thunder Lizard"]=4726,["Elder Thunder Lizard"]=4727,["Gritjaw Basilisk"]=4728,["Hulking Gritjaw Basilisk"]=4729,["Lelanai"]=4730,["Zachariah Post"]=4731,["Randal Hunter"]=4732,["Kildar"]=4752,["Jartsam"]=4753,["Ultham Ironhorn"]=4772,["Velma Warnam"]=4773,["Felicia Doan"]=4775,["White Ram"]=4777,["Riding Ram (Blue)"]=4778,["Brown Ram"]=4779,["Riding Ram (Black)"]=4780,["Snufflenose Gopher"]=4781,["Truk Wildbeard"]=4782,["Dawnwatcher Selgorm"]=4783,["Argent Guard Manados"]=4784,["Illusionary Nightmare"]=4785,["Dawnwatcher Shaedlass"]=4786,["Scout Thaelrid"]=4787,["Fallenroot Satyr"]=4788,["Fallenroot Rogue"]=4789,["Nazeer Bloodpike"]=4791,["Morgan Stern"]=4794,["Force of Nature"]=4795,["Fallenroot Shadowstalker"]=4798,["Fallenroot Hellcaller"]=4799,["Blackfathom Tide Priestess"]=4802,["Blackfathom Oracle"]=4803,["Blackfathom Sea Witch"]=4805,["Blackfathom Myrmidon"]=4807,["Twilight Acolyte"]=4809,["Twilight Reaver"]=4810,["Twilight Aquamancer"]=4811,["Twilight Loreseeker"]=4812,["Twilight Shadowmage"]=4813,["Twilight Elementalist"]=4814,["Murkshallow Snapclaw"]=4815,["Blindlight Murloc"]=4818,["Blindlight Muckdweller"]=4819,["Blindlight Oracle"]=4820,["Skittering Crustacean"]=4821,["Snapping Crustacean"]=4822,["Barbed Crustacean"]=4823,["Aku'mai Fisher"]=4824,["Aku'mai Snapjaw"]=4825,["Deep Pool Threshfin"]=4827,["Aku'mai"]=4829,["Old Serra'kis"]=4830,["Lady Sarevess"]=4831,["Twilight Lord Kelris"]=4832,["Theramore Infiltrator"]=4834,["Deadmire"]=4841,["Earthcaller Halmgar"]=4842,["Shadowforge Surveyor"]=4844,["Shadowforge Ruffian"]=4845,["Shadowforge Digger"]=4846,["Shadowforge Relic Hunter"]=4847,["Shadowforge Darkcaster"]=4848,["Shadowforge Archaeologist"]=4849,["Stonevault Cave Lurker"]=4850,["Stonevault Rockchewer"]=4851,["Stonevault Oracle"]=4852,["Stonevault Geomancer"]=4853,["Grimlok"]=4854,["Stonevault Brawler"]=4855,["Stonevault Cave Hunter"]=4856,["Stone Keeper"]=4857,["Stone Steward"]=4860,["Shrike Bat"]=4861,["Jadespine Basilisk"]=4863,["Obsidian Golem"]=4872,["Turhaw"]=4875,["Jawn Highmesa"]=4876,["Jandia"]=4877,["Montarr"]=4878,["Ogg'marr"]=4879,["Krak"]=4883,["Zulrg"]=4884,["Gregor MacVince"]=4885,["Hans Weston"]=4886,["Ghamoo-Ra"]=4887,["Marie Holdston"]=4888,["Torq Ironblast"]=4889,["Piter Verance"]=4890,["Dwane Wertle"]=4891,["Jensen Farran"]=4892,["Bartender Lillian"]=4893,["Craig Nollward"]=4894,["Smiling Jim"]=4895,["Charity Mipsy"]=4896,["Helenia Olden"]=4897,["Brant Jasperbloom"]=4898,["Uma Bartulm"]=4899,["Alchemist Narett"]=4900,["Sara Pierce"]=4901,["Mikal Pierce"]=4902,["Guard Byron"]=4921,["Guard Edward"]=4922,["Guard Jarad"]=4923,["Combat Master Criton"]=4924,["Krog"]=4926,["Caz Twosprocket"]=4941,["Mosarn"]=4943,["Captain Garran Vimes"]=4944,["Goblin Drag Car"]=4945,["Gnome Drag Car"]=4946,["Theramore Lieutenant"]=4947,["Adjutant Tesoran"]=4948,["Thrall"]=4949,["Spot"]=4950,["Theramore Practicing Guard"]=4951,["Theramore Combat Dummy"]=4952,["Moccasin"]=4953,["Uttnar"]=4954,["Theramore Archery Target 1"]=4955,["Haunting Spirit"]=4958,["Jorgen"]=4959,["Bishop DeLavey"]=4960,["Dashel Stonefist"]=4961,["Mikhail"]=4963,["Commander Samaul"]=4964,["Pained"]=4965,["Private Hendel"]=4966,["Archmage Tervosh"]=4967,["Lady Jaina Proudmoore"]=4968,["Old Town Thug"]=4969,["Slim's Friend"]=4971,["Kagoro"]=4972,["Guard Lasiter"]=4973,["Aldwin Laughlin"]=4974,["Theramore Archery Target 2"]=4975,["Murkshallow Softshell"]=4977,["Aku'mai Servant"]=4978,["Theramore Guard"]=4979,["Paval Reethe"]=4980,["Ben Trias"]=4981,["Thomas"]=4982,["Ogron"]=4983,["Argos Nightwhisper"]=4984,["World Warrior Trainer"]=4992,["Stockade Guard"]=4995,["Injured Stockade Guard"]=4996,["Nurse Lillian"]=5042,["Defias Rioter"]=5043,["Theramore Skirmisher"]=5044,["Private Hallan"]=5045,["Lieutenant Caldwell"]=5046,["Ellaercia"]=5047,["Deviate Adder"]=5048,["Lyesa Steelbrow"]=5049,["Edward Remington"]=5052,["Deviate Crocolisk"]=5053,["Krumn"]=5054,["Deviate Lasher"]=5055,["Deviate Dreadfang"]=5056,["Theramore Deserter"]=5057,["Wolfguard Worg"]=5058,["World Banker"]=5060,["Connor Rivers"]=5081,["Vincent Hyal"]=5082,["Paymaster Lendry"]=5083,["Sentry Point Guard"]=5085,["Captain Wymor"]=5086,["Do'gol"]=5087,["Falgran Hastil"]=5088,["Balos Jacken"]=5089,["Combat Master Szigeti"]=5090,["Guard Kahil"]=5091,["Guard Lana"]=5092,["Guard Narrisha"]=5093,["Guard Tark"]=5094,["Captain Andrews"]=5095,["Captain Thomas"]=5096,["Lupine Delusion"]=5097,["Soleil Stonemantle"]=5099,["Fillius Fizzlespinner"]=5100,["Bryllia Ironbrand"]=5101,["Dolman Steelfury"]=5102,["Grenil Steelfury"]=5103,["Bromiir Ormsen"]=5106,["Mangorn Flinthammer"]=5107,["Raena Flinthammer"]=5108,["Myra Tyrngaarde"]=5109,["Barim Jurgenstaad"]=5110,["Innkeeper Firebrew"]=5111,["Gwenna Firebrew"]=5112,["Kelv Sternhammer"]=5113,["Bilban Tosslespanner"]=5114,["Daera Brightspear"]=5115,["Olmin Burningbeard"]=5116,["Regnus Thundergranite"]=5117,["Brogun Stoneshield"]=5118,["Hegnar Swiftaxe"]=5119,["Brenwyn Wintersteel"]=5120,["Kelomir Ironhand"]=5121,["Skolmin Goldfury"]=5122,["Bretta Goldfury"]=5123,["Sognar Cliffbeard"]=5124,["Dolkin Craghelm"]=5125,["Olthran Craghelm"]=5126,["Fimble Finespindle"]=5127,["Bombus Finespindle"]=5128,["Lissyphus Finespindle"]=5129,["Jondor Steelbrow"]=5130,["Pithwick"]=5132,["Harick Boulderdrum"]=5133,["Jonivera Farmountain"]=5134,["Svalbrad Farmountain"]=5135,["Reyna Stonebranch"]=5137,["Gwina Stonebranch"]=5138,["Kurdrum Barleybeard"]=5139,["Edris Barleybeard"]=5140,["Theodrus Frostbeard"]=5141,["Braenna Flintcrag"]=5142,["Toldren Deepiron"]=5143,["Bink"]=5144,["Juli Stormkettle"]=5145,["Nittlebur Sparkfizzle"]=5146,["Valgar Highforge"]=5147,["Beldruk Doombrow"]=5148,["Brandur Ironhammer"]=5149,["Nissa Firestone"]=5150,["Ginny Longberry"]=5151,["Bingus"]=5152,["Jormund Stonebrow"]=5153,["Poranna Snowbraid"]=5154,["Ingrys Stonebrow"]=5155,["Maeva Snowbraid"]=5156,["Gimble Thistlefuzz"]=5157,["Tilli Thistlefuzz"]=5158,["Daryl Riknussun"]=5159,["Emrul Riknussun"]=5160,["Grimnur Stonebrand"]=5161,["Tansy Puddlefizz"]=5162,["Burbik Gearspanner"]=5163,["Grumnus Steelshaper"]=5164,["Hulfdan Blackbeard"]=5165,["Ormyr Flinteye"]=5166,["Fenthwick"]=5167,["Tynnus Venomsprout"]=5169,["Hjoldir Stoneblade"]=5170,["Thistleheart"]=5171,["Briarthorn"]=5172,["Alexander Calder"]=5173,["Springspindle Fizzlegear"]=5174,["Gearcutter Cogspinner"]=5175,["Tally Berryfizz"]=5177,["Soolie Berryfizz"]=5178,["Theramore Sentry"]=5184,["Hammerhead Shark"]=5185,["Basking Shark"]=5186,["Garyl"]=5188,["Thrumn"]=5189,["Merill Pleasance"]=5190,["Shalumon"]=5191,["Rebecca Laughlin"]=5193,["Black Riding Wolf"]=5194,["Brown Riding Wolf"]=5195,["Gray Riding Wolf"]=5196,["Red Riding Wolf"]=5197,["Arctic Riding Wolf"]=5198,["Medic Tamberlyn"]=5199,["Medic Helaina"]=5200,["Archery Target"]=5202,["Apothecary Zinge"]=5204,["Murk Slitherer"]=5224,["Murk Spitter"]=5225,["Murk Worm"]=5226,["Saturated Ooze"]=5228,["Gordunni Ogre"]=5229,["Gordunni Brute"]=5232,["Gordunni Mauler"]=5234,["Fungal Ooze"]=5235,["Gordunni Shaman"]=5236,["Gordunni Ogre Mage"]=5237,["Gordunni Battlemaster"]=5238,["Gordunni Mage-Lord"]=5239,["Gordunni Warlock"]=5240,["Gordunni Warlord"]=5241,["Cursed Atal'ai"]=5243,["Zukk'ash Stinger"]=5244,["Zukk'ash Wasp"]=5245,["Zukk'ash Worker"]=5246,["Zukk'ash Tunneler"]=5247,["Woodpaw Mongrel"]=5249,["Woodpaw Trapper"]=5251,["Woodpaw Brute"]=5253,["Woodpaw Mystic"]=5254,["Woodpaw Reaver"]=5255,["Atal'ai Warrior"]=5256,["Woodpaw Alpha"]=5258,["Atal'ai Witch Doctor"]=5259,["Groddoc Ape"]=5260,["Enthralled Atal'ai"]=5261,["Groddoc Thunderer"]=5262,["Mummified Atal'ai"]=5263,["Unliving Atal'ai"]=5267,["Ironfur Bear"]=5268,["Atal'ai Priest"]=5269,["Atal'ai Corpse Eater"]=5270,["Atal'ai Deathwalker"]=5271,["Grizzled Ironfur Bear"]=5272,["Atal'ai High Priest"]=5273,["Ironfur Patriarch"]=5274,["Sprite Dragon"]=5276,["Nightmare Scalebane"]=5277,["Sprite Darter"]=5278,["Nightmare Wyrmkin"]=5280,["Nightmare Wanderer"]=5283,["Longtooth Runner"]=5286,["Longtooth Howler"]=5287,["Rabid Longtooth"]=5288,["Hakkari Frostwing"]=5291,["Feral Scar Yeti"]=5292,["Hulking Feral Scar"]=5293,["Enraged Feral Scar"]=5295,["Rage Scar Yeti"]=5296,["Elder Rage Scar"]=5297,["Ferocious Rage Scar"]=5299,["Frayfeather Hippogryph"]=5300,["Frayfeather Stagwing"]=5304,["Frayfeather Skystormer"]=5305,["Frayfeather Patriarch"]=5306,["Vale Screecher"]=5307,["Rogue Vale Screecher"]=5308,["Lethlas"]=5312,["Phantim"]=5314,["Jademir Oracle"]=5317,["Jademir Tree Warder"]=5319,["Jademir Boughguard"]=5320,["Coast Crawl Snapclaw"]=5327,["Coast Crawl Deepseer"]=5328,["Hatecrest Warrior"]=5331,["Hatecrest Wave Rider"]=5332,["Hatecrest Serpent Guard"]=5333,["Hatecrest Myrmidon"]=5334,["Hatecrest Screamer"]=5335,["Hatecrest Sorceress"]=5336,["Hatecrest Siren"]=5337,["Lady Szallah"]=5343,["Diamond Head"]=5345,["Bloodroar the Stalker"]=5346,["Antilus the Soarer"]=5347,["Dreamwatcher Forktongue"]=5348,["Arash-ethis"]=5349,["Qirot"]=5350,["Old Grizzlegut"]=5352,["Itharius"]=5353,["Gnarl Leafbrother"]=5354,["Firewing Defender"]=5355,["Snarler"]=5356,["Land Walker"]=5357,["Cliff Giant"]=5358,["Shore Strider"]=5359,["Deep Strider"]=5360,["Wave Strider"]=5361,["Northspring Harpy"]=5362,["Northspring Roguefeather"]=5363,["Northspring Slayer"]=5364,["Northspring Windcaller"]=5366,["Brohann Caskbelly"]=5384,["Watcher Mahar Ba"]=5385,["Acolyte Dellis"]=5386,["High Explorer Magellas"]=5387,["Ingo Woolybush"]=5388,["Prospector Gunstan"]=5389,["Sage Palerunner"]=5390,["Galen Goodward"]=5391,["Yarr Hammerstone"]=5392,["Quartermaster Lungertz"]=5393,["Neeka Bloodscar"]=5394,["Felgur Twocuts"]=5395,["Captain Pentigast"]=5396,["Uthek the Wise"]=5397,["Warug"]=5398,["Veyzhak the Cannibal"]=5399,["Zekkis"]=5400,["Kazkaz the Unholy"]=5401,["Khan Hratha"]=5402,["Riding White Stallion"]=5403,["Nightmare"]=5407,["Harvester Swarm"]=5409,["Krinkle Goodsteel"]=5411,["Gurda Wildmane"]=5412,["Furen Longbeard"]=5413,["Apothecary Faustin"]=5414,["Infiltrator Marksen"]=5416,["Deathstalker Zraedus"]=5418,["Glasshide Basilisk"]=5419,["Glasshide Gazer"]=5420,["Glasshide Petrifier"]=5421,["Scorpid Hunter"]=5422,["Scorpid Tail Lasher"]=5423,["Scorpid Dunestalker"]=5424,["Starving Blisterpaw"]=5425,["Blisterpaw Hyena"]=5426,["Rabid Blisterpaw"]=5427,["Roc"]=5428,["Fire Roc"]=5429,["Searing Roc"]=5430,["Surf Glider"]=5431,["Giant Surf Glider"]=5432,["Coral Shark"]=5434,["Sand Shark"]=5435,["Hazzali Wasp"]=5441,["Hazzali Stinger"]=5450,["Hazzali Swarmer"]=5451,["Hazzali Worker"]=5452,["Hazzali Tunneler"]=5453,["Hazzali Sandreaver"]=5454,["Centipaar Wasp"]=5455,["Centipaar Stinger"]=5456,["Centipaar Swarmer"]=5457,["Centipaar Worker"]=5458,["Centipaar Tunneler"]=5459,["Centipaar Sandreaver"]=5460,["Sea Elemental"]=5461,["Sea Spray"]=5462,["Watchmaster Sorigal"]=5464,["Land Rager"]=5465,["Coast Strider"]=5466,["Deep Dweller"]=5467,["Dune Smasher"]=5469,["Raging Dune Smasher"]=5470,["Dunemaul Ogre"]=5471,["Dunemaul Enforcer"]=5472,["Dunemaul Ogre Mage"]=5473,["Dunemaul Brute"]=5474,["Dunemaul Warlock"]=5475,["Watcher Biggs"]=5476,["Noboru the Cudgel"]=5477,["Wu Shen"]=5479,["Ilsa Corbin"]=5480,["Thistleshrub Dew Collector"]=5481,["Stephen Ryback"]=5482,["Erika Tate"]=5483,["Brother Benjamin"]=5484,["Thistleshrub Rootshaper"]=5485,["Brother Joshua"]=5489,["Gnarled Thistleshrub"]=5490,["Arthur the Faithful"]=5491,["Katherine the Pure"]=5492,["Arnold Leland"]=5493,["Catherine Leland"]=5494,["Ursula Deline"]=5495,["Sandahl"]=5496,["Jennea Cannon"]=5497,["Elsharin"]=5498,["Lilyssia Nightbreeze"]=5499,["Tel'Athir"]=5500,["Kaerbrus"]=5501,["Shylamiir"]=5502,["Eldraeith"]=5503,["Sheldras Moontree"]=5504,["Theridran"]=5505,["Maldryn"]=5506,["Strumner Flintheel"]=5508,["Kathrum Axehand"]=5509,["Thulman Flintcrag"]=5510,["Therum Deepforge"]=5511,["Kaita Deepforge"]=5512,["Gelman Stonehand"]=5513,["Brooke Stonebraid"]=5514,["Einris Brightspear"]=5515,["Ulfir Ironbeard"]=5516,["Thorfin Stoneshield"]=5517,["Lilliam Sparkspindle"]=5518,["Billibub Cogspinner"]=5519,["Spackle Thornberry"]=5520,["War Party Kodo"]=5523,["Caravan Watcher"]=5524,["Caravan Packhorse"]=5525,["Clarice Foster"]=5543,["Grunt Zuul"]=5546,["Grunt Tharlak"]=5547,["Simon Tanner"]=5564,["Jillian Tanner"]=5565,["Tannysa"]=5566,["Sellandus"]=5567,["Captured Leper Gnome"]=5568,["Fizzlebang Booms"]=5569,["Bruuk Barleybeard"]=5570,["Dar"]=5591,["Tok'Kar"]=5592,["Katar"]=5593,["Alchemist Pestlezugg"]=5594,["Ironforge Guard"]=5595,["Grunt Komak"]=5597,["Atal'ai Exile"]=5598,["Kon Yelloweyes"]=5599,["Khan Dez'hepah"]=5600,["Khan Jehn"]=5601,["Khan Shaka"]=5602,["Grunt Mojka"]=5603,["Tisa Martine"]=5605,["Goma"]=5606,["Roger"]=5607,["Jamin"]=5608,["Zazo"]=5609,["Kozish"]=5610,["Barkeep Morag"]=5611,["Gimrizz Shadowcog"]=5612,["Doyo'da"]=5613,["Sarok"]=5614,["Wastewander Rogue"]=5615,["Wastewander Thief"]=5616,["Wastewander Shadow Mage"]=5617,["Wastewander Bandit"]=5618,["Bartender Wental"]=5620,["Ongeku"]=5622,["Wastewander Assassin"]=5623,["Undercity Guardian"]=5624,["Theramore Commando"]=5629,["Rhapsody Shindigger"]=5634,["Falstad Wildhammer"]=5635,["Gryphon Master Talonaxe"]=5636,["Roetten Stonehammer"]=5637,["Kreldig Ungor"]=5638,["Craven Drok"]=5639,["Keldran"]=5640,["Takata Steelblade"]=5641,["Vahlarriel Demonslayer"]=5642,["Tyranis Malem"]=5643,["Dalinda Malem"]=5644,["Sandfury Hideskinner"]=5645,["Sandfury Axe Thrower"]=5646,["Sandfury Firecaller"]=5647,["Sandfury Shadowcaster"]=5648,["Sandfury Blood Drinker"]=5649,["Sandfury Witch Doctor"]=5650,["Patrick Garrett"]=5651,["Undercity Practice Dummy"]=5652,["Tyler"]=5653,["Edward"]=5654,["Robert Gossom"]=5655,["Richard Van Brunt"]=5656,["Marla Fowler"]=5657,["Chloe Curthas"]=5658,["Andrew Hartwell"]=5659,["Riley Walker"]=5660,["Brother Malach"]=5661,["Sergeant Houser"]=5662,["Travist Bosk"]=5663,["Eldin Partridge"]=5664,["Alyssa Blaye"]=5665,["Gunther's Visage"]=5666,["Venya Marthand"]=5667,["Mattie Alred"]=5668,["Helena Atwood"]=5669,["Edrick Killian"]=5670,["Practice Target"]=5674,["Carendin Halgar"]=5675,["Summoned Voidwalker"]=5676,["Summoned Succubus"]=5677,["Lysta Bancroft"]=5679,["Male Human Captive"]=5680,["Female Human Captive"]=5681,["Dalin Forgewright"]=5682,["Comar Villard"]=5683,["Captive Ghoul"]=5685,["Captive Zombie"]=5686,["Captive Abomination"]=5687,["Innkeeper Renee"]=5688,["Clyde Kellen"]=5690,["Dalin Forgewright Projection"]=5691,["Comar Villard Projection"]=5692,["Godrick Farsan"]=5693,["High Sorcerer Andromath"]=5694,["Vance Undergloom"]=5695,["Gerard Abernathy"]=5696,["Theresa"]=5697,["Joanna Whitehall"]=5698,["Leona Tharpe"]=5699,["Samantha Shackleton"]=5700,["Selina Pickman"]=5701,["Jezelle Pruitt"]=5702,["Winifred Kerwin"]=5703,["Adrian Bartlett"]=5704,["Victor Bartholomew"]=5705,["Davitt Hickson"]=5706,["Reginald Grimsford"]=5707,["Spawn of Hakkar"]=5708,["Shade of Eranikus"]=5709,["Jammal'an the Prophet"]=5710,["Ogom the Wretched"]=5711,["Zolo"]=5712,["Gasher"]=5713,["Loro"]=5714,["Hukku"]=5715,["Zul'Lor"]=5716,["Mijan"]=5717,["Rothos"]=5718,["Morphaz"]=5719,["Weaver"]=5720,["Dreamscythe"]=5721,["Hazzas"]=5722,["Warug's Target Dummy"]=5723,["Ageron Kargal"]=5724,["Deathguard Lundmark"]=5725,["Jezelle's Felhunter"]=5726,["Jezelle's Felsteed"]=5727,["Jezelle's Succubus"]=5728,["Jezelle's Voidwalker"]=5729,["Jezelle's Imp"]=5730,["Apothecary Vallia"]=5731,["Apothecary Katrina"]=5732,["Apothecary Lycanus"]=5733,["Apothecary Keever"]=5734,["Caged Human Female"]=5735,["Caged Human Male"]=5736,["Caged Dwarf Male"]=5738,["Caged Squirrel"]=5739,["Caged Rabbit"]=5741,["Caged Toad"]=5742,["Caged Sheep"]=5743,["Cedric Stumpel"]=5744,["Hepzibah Sedgewick"]=5747,["Killian Sanatha"]=5748,["Kayla Smithe"]=5749,["Gina Lang"]=5750,["Corporal Melkins"]=5752,["Martha Strain"]=5753,["Zane Bradford"]=5754,["Deviate Viper"]=5755,["Deviate Venomwing"]=5756,["Lilly"]=5757,["Leo Sarn"]=5758,["Nurse Neela"]=5759,["Lord Azrethoc"]=5760,["Deviate Shambler"]=5761,["Deviate Moccasin"]=5762,["Nightmare Ectoplasm"]=5763,["Ruzan"]=5765,["Savannah Cub"]=5766,["Nalpak"]=5767,["Ebru"]=5768,["Arch Druid Hamuul Runetotem"]=5769,["Nara Wildmane"]=5770,["Jugkar Grim'rod"]=5771,["Lord Azrethoc's Image"]=5772,["Jugkar Grim'rod's Image"]=5773,["Riding Wolf"]=5774,["Verdan the Everliving"]=5775,["Summoned Viper"]=5779,["Cloned Ectoplasm"]=5780,["Silithid Creeper Egg"]=5781,["Crildor"]=5782,["Kalldan Felmoon"]=5783,["Waldor"]=5784,["Sister Hatelash"]=5785,["Snagglespear"]=5786,["Enforcer Emilgund"]=5787,["Gelgann Direforge"]=5788,["Drag Master Miglen"]=5792,["Aean Swiftriver"]=5797,["Thora Feathermoon"]=5798,["Hannah Bladeleaf"]=5799,["Marcus Bel"]=5800,["Treant Ally"]=5806,["The Rake"]=5807,["Warlord Kolkanis"]=5808,["Sergeant Curtis"]=5809,["Uzzek"]=5810,["Kamari"]=5811,["Tumi"]=5812,["Innkeeper Thulbek"]=5814,["Kurgul"]=5815,["Katis"]=5816,["Shimra"]=5817,["Mirelle Tremayne"]=5819,["Gillian Moore"]=5820,["Sheldon Von Croy"]=5821,["Felweaver Scornn"]=5822,["Death Flayer"]=5823,["Captain Flat Tusk"]=5824,["Geolord Mottle"]=5826,["Brontus"]=5827,["Humar the Pridelord"]=5828,["Snort the Heckler"]=5829,["Sister Rathtalon"]=5830,["Swiftmane"]=5831,["Thunderstomp"]=5832,["Margol the Rager"]=5833,["Azzere the Skyblade"]=5834,["Foreman Grills"]=5835,["Engineer Whirleygig"]=5836,["Stonearm"]=5837,["Brokespear"]=5838,["Dark Iron Geologist"]=5839,["Dark Iron Steamsmith"]=5840,["Rocklance"]=5841,["Takk the Leaper"]=5842,["Slave Worker"]=5843,["Dark Iron Slaver"]=5844,["Dark Iron Taskmaster"]=5846,["Heggin Stonewhisker"]=5847,["Malgin Barleybrew"]=5848,["Digger Flameforge"]=5849,["Blazing Elemental"]=5850,["Captain Gerogg Hammertoe"]=5851,["Inferno Elemental"]=5852,["Tempered War Golem"]=5853,["Heavy War Golem"]=5854,["Magma Elemental"]=5855,["Glassweb Spider"]=5856,["Searing Lava Spider"]=5857,["Greater Lava Spider"]=5858,["Hagg Taurenbane"]=5859,["Twilight Dark Shaman"]=5860,["Twilight Fire Guard"]=5861,["Twilight Geomancer"]=5862,["Geopriest Gukk'rok"]=5863,["Swinegart Spearhide"]=5864,["Dishu"]=5865,["Evil Squirrel"]=5868,["Krond"]=5870,["Larhka"]=5871,["Stoneskin Totem"]=5873,["Strength of Earth Totem"]=5874,["Gan'rul Bloodeye"]=5875,["Thun'grim Firegaze"]=5878,["Fire Nova Totem"]=5879,["Un'Thuwa"]=5880,["Cursed Sycamore"]=5881,["Pephredo"]=5882,["Enyo"]=5883,["Mai'ah"]=5884,["Deino"]=5885,["Gwyn Farrow"]=5886,["Canaga Earthcaller"]=5887,["Seer Ravenfeather"]=5888,["Mesa Earth Spirit"]=5889,["Redrock Earth Spirit"]=5890,["Minor Manifestation of Earth"]=5891,["Searn Firewarder"]=5892,["Minor Manifestation of Fire"]=5893,["Corrupt Minor Manifestation of Water"]=5894,["Minor Manifestation of Water"]=5895,["Fire Spirit"]=5896,["Corrupt Water Spirit"]=5897,["Air Spirit"]=5898,["Brine"]=5899,["Telf Joolam"]=5900,["Islen Waterseer"]=5901,["Minor Manifestation of Air"]=5902,["Nyx Bloodrage"]=5903,["Prate Cloudseer"]=5905,["Xanis Flameweaver"]=5906,["Kranal Fiss"]=5907,["Grunt Dogran"]=5908,["Cazul"]=5909,["Zankaja"]=5910,["Grunt Logmar"]=5911,["Deviate Faerie Dragon"]=5912,["Tremor Totem"]=5913,["Deviate Nightmare"]=5914,["Brother Ravenoak"]=5915,["Sentinel Amarassan"]=5916,["Clara Charles"]=5917,["Stoneskin Totem II"]=5919,["Stoneskin Totem III"]=5920,["Strength of Earth Totem II"]=5921,["Strength of Earth Totem III"]=5922,["Poison Cleansing Totem"]=5923,["Cleansing Totem"]=5924,["Grounding Totem"]=5925,["Frost Resistance Totem"]=5926,["Elemental Resistance Totem"]=5927,["Sorrow Wing"]=5928,["Magma Totem"]=5929,["Sister Riven"]=5930,["Foreman Rigger"]=5931,["Taskmaster Whipfang"]=5932,["Achellios the Banished"]=5933,["Heartrazor"]=5934,["Ironeye the Invincible"]=5935,["Orca"]=5936,["Vile Sting"]=5937,["Uthan Stillwater"]=5938,["Vira Younghoof"]=5939,["Harn Longcast"]=5940,["Lau'Tiki"]=5941,["Zansoa"]=5942,["Rawrk"]=5943,["Yonada"]=5944,["Owl Companion"]=5945,["Flametongue Totem"]=5950,["Hare"]=5951,["Den Grunt"]=5952,["Razor Hill Grunt"]=5953,["Tooga"]=5955,["Birgitte Cranston"]=5957,["Thuul"]=5958,["World Tauren Male Druid Trainer"]=5963,["Dreadmaul Ogre"]=5974,["Dreadmaul Ogre Mage"]=5975,["Dreadmaul Brute"]=5976,["Dreadmaul Mauler"]=5977,["Dreadmaul Warlock"]=5978,["Wretched Lost One"]=5979,["Portal Seeker"]=5981,["Black Slayer"]=5982,["Bonepicker Felfeeder"]=5983,["Starving Snickerfang"]=5984,["Snickerfang Hyena"]=5985,["Scorpok Stinger"]=5988,["Redstone Basilisk"]=5990,["Redstone Crystalhide"]=5991,["Ashmane Boar"]=5992,["Helboar"]=5993,["Zayus"]=5994,["Nethergarde Miner"]=5996,["Nethergarde Engineer"]=5997,["Nethergarde Foreman"]=5998,["Nethergarde Soldier"]=5999,["Nethergarde Cleric"]=6000,["Nethergarde Analyst"]=6001,["Nethergarde Riftwatcher"]=6002,["Nethergarde Officer"]=6003,["Shadowsworn Ritualist"]=6004,["Shadowsworn Thug"]=6005,["Shadowsworn Adept"]=6006,["Shadowsworn Enforcer"]=6007,["Shadowsworn Warlock"]=6008,["Shadowsworn Dreadweaver"]=6009,["Felhound"]=6010,["Felguard Sentry"]=6011,["Flametongue Totem II"]=6012,["Wayward Buzzard"]=6013,["X'yera"]=6014,["Torta"]=6015,["Elemental Protection Totem"]=6016,["Lava Spout Totem"]=6017,["Ur'kyo"]=6018,["Hornizz Brimbuzzle"]=6019,["Slimeshell Makrura"]=6020,["Boar Spirit"]=6021,["Breyk"]=6026,["Kitha"]=6027,["Burkrum"]=6028,["Thorvald Deepforge"]=6030,["Tormus Deepforge"]=6031,["Lake Frenzy"]=6033,["Lotherias"]=6034,["Razorfen Stalker"]=6035,["Aqua Guardian"]=6047,["Earthgrab Totem"]=6066,["Warug's Bodyguard"]=6068,["Maraudine Khan Guard"]=6069,["Maraudine Khan Advisor"]=6070,["Legion Hound"]=6071,["Diathorus the Seeker"]=6072,["Searing Infernal"]=6073,["Striped Frostsaber"]=6074,["Emerald Raptor"]=6075,["Riding Tallstrider (Ivory)"]=6076,["Auberdine Sentinel"]=6086,["Astranaar Sentinel"]=6087,["Harry Burlguard"]=6089,["Bartleby"]=6090,["Dellylah"]=6091,["Dead-Tooth Jack"]=6093,["Byancie"]=6094,["Shade"]=6107,["Azuregos"]=6109,["Fire Nova Totem II"]=6110,["Fire Nova Totem III"]=6111,["Windfury Totem"]=6112,["Vejrek"]=6113,["Muren Stormpike"]=6114,["Roaming Felguard"]=6115,["Highborne Apparition"]=6116,["Highborne Lichling"]=6117,["Varo'then's Ghost"]=6118,["Tog Rustsprocket"]=6119,["Lago Blackwrench"]=6120,["Remen Marcot"]=6121,["Gakin the Darkbinder"]=6122,["Dark Iron Spy"]=6123,["Captain Beld"]=6124,["Haldarr Satyr"]=6125,["Haldarr Trickster"]=6126,["Haldarr Felsworn"]=6127,["Vorlus Vilehoof"]=6128,["Draconic Magelord"]=6129,["Blue Scalebane"]=6130,["Draconic Mageweaver"]=6131,["Razorfen Servitor"]=6132,["Shade of Elura"]=6133,["Lord Arkkoroc"]=6134,["Arkkoran Clacker"]=6135,["Arkkoran Muckdweller"]=6136,["Arkkoran Pincer"]=6137,["Arkkoran Oracle"]=6138,["Highperch Soarer"]=6139,["Hetaera"]=6140,["Pridewing Soarer"]=6141,["Mathiel"]=6142,["Servant of Arkkoroc"]=6143,["Son of Arkkoroc"]=6144,["School of Fish"]=6145,["Cliff Breaker"]=6146,["Cliff Thunderer"]=6147,["Cliff Walker"]=6148,["Yorus Barleybrew"]=6166,["Chimaera Matriarch"]=6167,["Roogug"]=6168,["Klockmort Spannerspan"]=6169,["Gutspill"]=6170,["Duthorian Rall"]=6171,["Henze Faulk"]=6172,["Gazin Tenorm"]=6173,["Stephanie Turner"]=6174,["John Turner"]=6175,["Bath'rah the Windwatcher"]=6176,["Narm Faulk"]=6177,["Muiredon Battleforge"]=6178,["Tiza Battleforge"]=6179,["Defias Raider"]=6180,["Jordan Stilwell"]=6181,["Daphne Stilwell"]=6182,["Timbermaw Pathfinder"]=6184,["Timbermaw Warrior"]=6185,["Timbermaw Totemic"]=6186,["Timbermaw Den Watcher"]=6187,["Timbermaw Shaman"]=6188,["Timbermaw Ursa"]=6189,["Spitelash Warrior"]=6190,["Spitelash Screamer"]=6193,["Spitelash Serpent Guard"]=6194,["Spitelash Siren"]=6195,["Spitelash Myrmidon"]=6196,["Blood Elf Surveyor"]=6198,["Blood Elf Reclaimer"]=6199,["Legashi Satyr"]=6200,["Legashi Rogue"]=6201,["Legashi Hellcaller"]=6202,["Caverndeep Burrower"]=6206,["Caverndeep Ambusher"]=6207,["Caverndeep Invader"]=6208,["Caverndeep Looter"]=6209,["Caverndeep Pillager"]=6210,["Caverndeep Reaver"]=6211,["Dark Iron Agent"]=6212,["Irradiated Invader"]=6213,["Chomper"]=6215,["Irradiated Slime"]=6218,["Corrosive Lurker"]=6219,["Irradiated Horror"]=6220,["Addled Leper"]=6221,["Leprous Technician"]=6222,["Leprous Defender"]=6223,["Leprous Machinesmith"]=6224,["Mechano-Tank"]=6225,["Mechano-Flamewalker"]=6226,["Mechano-Frostwalker"]=6227,["Dark Iron Ambassador"]=6228,["Crowd Pummeler 9-60"]=6229,["Peacekeeper Security Suit"]=6230,["Techbot"]=6231,["Arcane Nullifier X-21"]=6232,["Mechanized Sentry"]=6233,["Mechanized Guardian"]=6234,["Electrocutioner 6000"]=6235,["Klannoc Macleod"]=6236,["Stockade Archer"]=6237,["Big Will"]=6238,["Cyclonian"]=6239,["Affray Challenger"]=6240,["Bailor Stonehand"]=6241,["Gelihast"]=6243,["Takar the Seer"]=6244,["Anathera"]=6245,["Latherion"]=6246,["Doan Karhan"]=6247,["Twiggy Flathead"]=6248,["Affray Spectator"]=6249,["Crawler"]=6250,["Strahad Farsan"]=6251,["Acolyte Magaz"]=6252,["Acolyte Fenrick"]=6253,["Acolyte Wytula"]=6254,["Menara Voidrender"]=6266,["Acolyte Porena"]=6267,["Summoned Felhunter"]=6268,["Mouse"]=6271,["Innkeeper Janene"]=6272,["Zarrin"]=6286,["Radnaal Maneweaver"]=6287,["Jayla"]=6288,["Rand Rhobart"]=6289,["Yonn Deepcut"]=6290,["Balthus Stoneflayer"]=6291,["Eladriel"]=6292,["Jorah Annison"]=6293,["Krom Stoutarm"]=6294,["Wilma Ranthal"]=6295,["Kurdram Stonehammer"]=6297,["Thelgrum Stonehammer"]=6298,["Delfrum Flintbeard"]=6299,["Elisa Steelhand"]=6300,["Gorbold Steelhand"]=6301,["Helene Peltskinner"]=6306,["Dannie Fizzwizzle"]=6328,["Irradiated Pillager"]=6329,["Young Wavethrasher"]=6347,["Wavethrasher"]=6348,["Great Wavethrasher"]=6349,["Makrinni Razorclaw"]=6350,["Storm Bay Oracle"]=6351,["Coralshell Lurker"]=6352,["Kurzen Mindslave"]=6366,["Donni Anthania"]=6367,["Cat"]=6368,["Coralshell Tortoise"]=6369,["Makrinni Scrabbler"]=6370,["Storm Bay Warrior"]=6371,["Makrinni Snapclaw"]=6372,["Dane Winslow"]=6373,["Cylina Darkheart"]=6374,["Thunderhead Hippogryph"]=6375,["Wren Darkspring"]=6376,["Thunderhead Stagwing"]=6377,["Thunderhead Skystormer"]=6378,["Thunderhead Patriarch"]=6379,["Thunderhead Consort"]=6380,["Jubahl Corpseseeker"]=6382,["Ward of Zanzil"]=6386,["Dranh"]=6387,["Zanzil Skeleton"]=6388,["Deathguard Podrig"]=6389,["Ulag the Cleaver"]=6390,["Holdout Warrior"]=6391,["Holdout Medic"]=6392,["Henen Ragetotem"]=6393,["Ruga Ragetotem"]=6394,["Sergeant Rutger"]=6395,["Holdout Technician"]=6407,["Ula'elek"]=6408,["Orm Stonehoof"]=6410,["Velora Nitely"]=6411,["Skeleton"]=6412,["Anguished Dead"]=6426,["Haunting Phantasm"]=6427,["Therzok"]=6446,["Gamon"]=6466,["Mennet Carkad"]=6467,["Black Skeletal Horse"]=6486,["Arcanist Doan"]=6487,["Fallen Champion"]=6488,["Ironspine"]=6489,["Azshir the Sleepless"]=6490,["Spirit Healer"]=6491,["Rift Spawn"]=6492,["Illusionary Phantasm"]=6493,["Tazan"]=6494,["Riznek"]=6495,["Brivelthwerp"]=6496,["Astor Hadren"]=6497,["Devilsaur"]=6498,["Ironhide Devilsaur"]=6499,["Tyrant Devilsaur"]=6500,["Stegodon"]=6501,["Plated Stegodon"]=6502,["Spiked Stegodon"]=6503,["Thunderstomp Stegodon"]=6504,["Ravasaur"]=6505,["Ravasaur Runner"]=6506,["Ravasaur Hunter"]=6507,["Venomhide Ravasaur"]=6508,["Bloodpetal Lasher"]=6509,["Bloodpetal Flayer"]=6510,["Bloodpetal Thresher"]=6511,["Bloodpetal Trapper"]=6512,["Un'Goro Stomper"]=6513,["Un'Goro Gorilla"]=6514,["Un'Goro Thunderer"]=6516,["Tar Beast"]=6517,["Tar Lurker"]=6518,["Tar Lord"]=6519,["Scorching Elemental"]=6520,["Living Blaze"]=6521,["Andron Gant"]=6522,["Dark Iron Rifleman"]=6523,["Tar Creeper"]=6527,["Tabetha"]=6546,["Suffering Victim"]=6547,["Magus Tirth"]=6548,["Demon of the Orb"]=6549,["Mana Surge"]=6550,["Gorishi Wasp"]=6551,["Gorishi Worker"]=6552,["Gorishi Reaver"]=6553,["Gorishi Stinger"]=6554,["Gorishi Tunneler"]=6555,["Muculent Ooze"]=6556,["Primal Ooze"]=6557,["Glutinous Ooze"]=6559,["Stone Guardian"]=6560,["Estelle Gendry"]=6566,["Ghok'kah"]=6567,["Vizzklick"]=6568,["Gnoarn"]=6569,["Fenwick Thatros"]=6570,["Travel Form (Druid)"]=6573,["Jun'ha"]=6574,["Scarlet Trainee"]=6575,["Brienna Starglow"]=6576,["Bingles Blastenheimer"]=6577,["Shoni the Shilent"]=6579,["Ravasaur Matriarch"]=6581,["Clutchmother Zavas"]=6582,["Gruff"]=6583,["King Mosh"]=6584,["Uhk'loc"]=6585,["Rokar Bladeshadow"]=6586,["Overseer Glibby"]=6606,["Harroc"]=6607,["Monnos the Elder"]=6646,["Magister Hawkhelm"]=6647,["Antilos"]=6648,["Lady Sesspira"]=6649,["General Fangferror"]=6650,["Gatekeeper Rageroar"]=6651,["Master Feardred"]=6652,["Huge Toad"]=6653,["Gelkak Gyromast"]=6667,["Lord Cyrik Blackforge"]=6668,["The Threshwackonator 4100"]=6669,["Westfall Woodworker"]=6670,["Baritanas Skyriver"]=6706,["Fahrad"]=6707,["Thalon"]=6726,["Innkeeper Brianna"]=6727,["Narnie"]=6728,["Morridune"]=6729,["Jinky Twizzlefixxit"]=6730,["Harlown Darkweave"]=6731,["Amie Pierce"]=6732,["Stonevault Basher"]=6733,["Innkeeper Hearthstove"]=6734,["Innkeeper Saelienne"]=6735,["Innkeeper Keldamyr"]=6736,["Innkeeper Shaussiy"]=6737,["Innkeeper Kimlya"]=6738,["Innkeeper Bates"]=6739,["Innkeeper Allison"]=6740,["Innkeeper Norman"]=6741,["Innkeeper Pala"]=6746,["Innkeeper Kauth"]=6747,["Water Spirit"]=6748,["Erma"]=6749,["Ravenholdt Guard"]=6766,["Lord Jorach Ravenholdt"]=6768,["Ravenholdt Assassin"]=6771,["Falkhaan Isenstrider"]=6774,["Antur Fallow"]=6775,["Magrin Rivermane"]=6776,["Zan Shivsproket"]=6777,["Melika Isenstrider"]=6778,["Smudge Thunderwood"]=6779,["Porthannius"]=6780,["Melarith"]=6781,["Hands Springsprocket"]=6782,["Calvin Montague"]=6784,["Ratslin Maime"]=6785,["Ukor"]=6786,["Yelnagi Blackarm"]=6787,["Den Mother"]=6788,["Thistle Cub"]=6789,["Innkeeper Trelayne"]=6790,["Innkeeper Wiley"]=6791,["Tannok Frosthammer"]=6806,["Innkeeper Skindle"]=6807,["Talvash del Kissel"]=6826,["Shore Crab"]=6827,["Dockmaster"]=6846,["Bodyguard"]=6866,["Tracking Hound"]=6867,["Jarkal Mossmeld"]=6868,["Onin MacHammar"]=6886,["Yalda"]=6887,["Baelog"]=6906,["Olaf"]=6908,["Sethir the Ancient"]=6909,["Revelosh"]=6910,["Minion of Sethir"]=6911,["Remains of a Paladin"]=6912,["Lost One Rift Traveler"]=6913,["Dockworker"]=6927,["Innkeeper Grosk"]=6928,["Innkeeper Gryshka"]=6929,["Innkeeper Karakul"]=6930,["Swamp Spirit"]=6932,["Lucius"]=6966,["Dran Droffers"]=6986,["Malton Droffers"]=6987,["Tiev Mordune"]=7007,["Arantir"]=7009,["Zilzibin Drumlore"]=7010,["Earthen Rocksmasher"]=7011,["Earthen Sculptor"]=7012,["Blackrock Guard"]=7013,["Flagglemurk the Cruel"]=7015,["Lady Vespira"]=7016,["Lord Sinslayer"]=7017,["Venomlash Scorpid"]=7022,["Obsidian Sentinel"]=7023,["Agent Kearnen"]=7024,["Blackrock Soldier"]=7025,["Blackrock Sorcerer"]=7026,["Blackrock Slayer"]=7027,["Blackrock Warlock"]=7028,["Blackrock Battlemaster"]=7029,["Shadowforge Geologist"]=7030,["Obsidian Elemental"]=7031,["Greater Obsidian Elemental"]=7032,["Firegut Ogre"]=7033,["Firegut Ogre Mage"]=7034,["Firegut Brute"]=7035,["Thaurissan Spy"]=7036,["Thaurissan Firewalker"]=7037,["Thaurissan Agent"]=7038,["War Reaver"]=7039,["Black Dragonspawn"]=7040,["Black Wyrmkin"]=7041,["Flamescale Dragonspawn"]=7042,["Flamescale Wyrmkin"]=7043,["Black Drake"]=7044,["Scalding Drake"]=7045,["Searscale Drake"]=7046,["Black Broodling"]=7047,["Scalding Broodling"]=7048,["Flamescale Broodling"]=7049,["Defias Drone"]=7050,["Malformed Defias Drone"]=7051,["Defias Tower Patroller"]=7052,["Klaven Mortwake"]=7053,["Blackrock Worg"]=7055,["Defias Tower Sentry"]=7056,["Digmaster Shovelphlange"]=7057,["Venture Co. Drone"]=7067,["Condemned Acolyte"]=7068,["Condemned Monk"]=7069,["Condemned Cleric"]=7070,["Cursed Paladin"]=7071,["Cursed Justicar"]=7072,["Writhing Mage"]=7075,["Earthen Guardian"]=7076,["Earthen Hallshaper"]=7077,["Cleft Scorpid"]=7078,["Viscous Fallout"]=7079,["Cursed Ooze"]=7086,["Killian Hagey"]=7087,["Thuwd"]=7088,["Mooranta"]=7089,["Shadowforge Ambusher"]=7091,["Tainted Ooze"]=7092,["Vile Ooze"]=7093,["Ironbeak Owl"]=7097,["Ironbeak Screecher"]=7098,["Ironbeak Hunter"]=7099,["Warpwood Moss Flayer"]=7100,["Warpwood Shredder"]=7101,["Dessecus"]=7104,["Jadefire Satyr"]=7105,["Jadefire Rogue"]=7106,["Jadefire Trickster"]=7107,["Jadefire Betrayer"]=7108,["Jadefire Felsworn"]=7109,["Jadefire Shadowstalker"]=7110,["Jadefire Hellcaller"]=7111,["Jaedenar Cultist"]=7112,["Jaedenar Guardian"]=7113,["Jaedenar Enforcer"]=7114,["Jaedenar Adept"]=7115,["Jaedenar Darkweaver"]=7118,["Jaedenar Warlock"]=7120,["Jaedenar Hound"]=7125,["Jaedenar Hunter"]=7126,["Toxic Horror"]=7132,["Infernal Bodyguard"]=7135,["Infernal Sentry"]=7136,["Immolatus"]=7137,["Irontree Wanderer"]=7138,["Irontree Stomper"]=7139,["Withered Protector"]=7149,["Deadwood Warrior"]=7153,["Deadwood Gardener"]=7154,["Deadwood Pathfinder"]=7155,["Deadwood Den Watcher"]=7156,["Deadwood Avenger"]=7157,["Deadwood Shaman"]=7158,["Wrenix the Wretched"]=7161,["Wrenix's Gizmotronic Apparatus"]=7166,["Polly"]=7167,["Polly"]=7168,["Thragomm"]=7170,["Lore Keeper of Norgannon"]=7172,["Stonevault Ambusher"]=7175,["Ancient Stone Keeper"]=7206,["Doc Mixilpixil"]=7207,["Noarm"]=7208,["Obsidian Shard"]=7209,["Sand Storm"]=7226,["Ironaya"]=7228,["Shayis Steelfury"]=7230,["Kelgruk Bloodaxe"]=7231,["Borgus Steelhand"]=7232,["Taskmaster Fizzule"]=7233,["Ferocitas the Dream Eater"]=7234,["Gnarlpine Mystic"]=7235,["Sandfury Shadowhunter"]=7246,["Sandfury Soul Eater"]=7247,["Ember"]=7266,["Chief Ukorz Sandscalp"]=7267,["Sandfury Guardian"]=7268,["Scarab"]=7269,["Sandfury Zombie"]=7270,["Witch Doctor Zum'rah"]=7271,["Theka the Martyr"]=7272,["Gahz'rilla"]=7273,["Sandfury Executioner"]=7274,["Shadowpriest Sezz'ziz"]=7275,["Zul'Farrak Dead Hero"]=7276,["Zul'Farrak Zombie"]=7286,["Foreman Silixiz"]=7287,["Grand Foreman Puzik Gallywix"]=7288,["Shadowforge Sharpshooter"]=7290,["Galgann Firehammer"]=7291,["Dinita Stonemantle"]=7292,["[UNUSED] Drayl"]=7293,["Shim'la"]=7294,["Shailiea"]=7295,["Corand"]=7296,["Gothard Winslow"]=7297,["Demnul Farmountain"]=7298,["Venture Co. Lookout"]=7307,["Venture Co. Patroller"]=7308,["Earthen Custodian"]=7309,["Mutated Venture Co. Drone"]=7310,["Uthel'nay"]=7311,["Dink"]=7312,["Priestess A'moora"]=7313,["Darnath Bladesinger"]=7315,["Sister Aquinne"]=7316,["Oben Rageclaw"]=7317,["Rageclaw"]=7318,["Lady Sathrah"]=7319,["Stonevault Mauler"]=7320,["Stonevault Flameweaver"]=7321,["Riding Tiger (Black)"]=7322,["Winstone Wolfe"]=7323,["Simone Cantrell"]=7324,["Master Kang"]=7325,["Withered Warrior"]=7327,["Withered Reaver"]=7328,["Withered Quilguard"]=7329,["Withered Spearhide"]=7332,["Withered Battle Boar"]=7333,["Battle Boar Horror"]=7334,["Death's Head Geomancer"]=7335,["Death's Head Necromancer"]=7337,["Skeletal Shadowcaster"]=7340,["Skeletal Frostweaver"]=7341,["Skeletal Summoner"]=7342,["Splinterbone Skeleton"]=7343,["Splinterbone Warrior"]=7344,["Splinterbone Captain"]=7345,["Splinterbone Centurion"]=7346,["Boneflayer Ghoul"]=7347,["Thorn Eater Ghoul"]=7348,["Tomb Fiend"]=7349,["Tomb Reaver"]=7351,["Frozen Soul"]=7352,["Freezing Spirit"]=7353,["Ragglesnout"]=7354,["Tuten'kash"]=7355,["Plaguemaw the Rotting"]=7356,["Mordresh Fire Eye"]=7357,["Amnennar the Coldbringer"]=7358,["Dun Garok Soldier"]=7360,["Grubbis"]=7361,["Kum'isha the Collector"]=7363,["Flawless Draenethyst Sphere"]=7364,["Flawless Draenethyst Fragment"]=7365,["Stoneskin Totem IV"]=7366,["Stoneskin Totem V"]=7367,["Stoneskin Totem VI"]=7368,["Deadwind Brute"]=7369,["Restless Shade"]=7370,["Deadwind Mauler"]=7371,["Deadwind Warlock"]=7372,["Sky Shadow"]=7376,["Deadwind Ogre Mage"]=7379,["Siamese Cat"]=7380,["Silver Tabby Cat"]=7381,["Orange Tabby Cat"]=7382,["Black Tabby Cat"]=7383,["Cornish Rex Cat"]=7384,["Bombay Cat"]=7385,["White Kitten"]=7386,["Green Wing Macaw"]=7387,["Cockatoo"]=7388,["Senegal"]=7389,["Cockatiel"]=7390,["Hyacinth Macaw"]=7391,["Prairie Chicken"]=7392,["White Plymouth Rock"]=7393,["Ancona Chicken"]=7394,["Cockroach"]=7395,["Earthen Stonebreaker"]=7396,["Earthen Stonecarver"]=7397,["Stoneclaw Totem V"]=7398,["Stoneclaw Totem VI"]=7399,["Searing Totem V"]=7400,["Draenei Refugee"]=7401,["Searing Totem VI"]=7402,["Strength of Earth Totem IV"]=7403,["[UNUSED]Galak Flame Guard"]=7404,["Deadly Cleft Scorpid"]=7405,["Oglethorpe Obnoticus"]=7406,["Chief Engineer Bilgewhizzle"]=7407,["Spigot Operator Luglunket"]=7408,["Faltering Draenethyst Sphere"]=7409,["Thelman Slatefist"]=7410,["Spirit of Sathrah"]=7411,["Frost Resistance Totem II"]=7412,["Frost Resistance Totem III"]=7413,["Mana Spring Totem II"]=7414,["Mana Spring Totem III"]=7415,["Mana Spring Totem IV"]=7416,["Flametongue Totem III"]=7423,["Fire Resistance Totem II"]=7424,["Fire Resistance Totem III"]=7425,["Taim Ragetotem"]=7427,["Frostmaul Giant"]=7428,["Frostmaul Preserver"]=7429,["Young Frostsaber"]=7430,["Frostsaber"]=7431,["Frostsaber Stalker"]=7432,["Frostsaber Huntress"]=7433,["Frostsaber Pride Watcher"]=7434,["Cobalt Wyrmkin"]=7435,["Cobalt Scalebane"]=7436,["Cobalt Mageweaver"]=7437,["Winterfall Ursa"]=7438,["Winterfall Shaman"]=7439,["Winterfall Den Watcher"]=7440,["Winterfall Totemic"]=7441,["Winterfall Pathfinder"]=7442,["Shardtooth Mauler"]=7443,["Shardtooth Bear"]=7444,["Elder Shardtooth"]=7445,["Rabid Shardtooth"]=7446,["Fledgling Chillwind"]=7447,["Chillwind Chimaera"]=7448,["Chillwind Ravager"]=7449,["Ragged Owlbeast"]=7450,["Raging Owlbeast"]=7451,["Crazed Owlbeast"]=7452,["Moontouched Owlbeast"]=7453,["Berserk Owlbeast"]=7454,["Winterspring Owl"]=7455,["Winterspring Screecher"]=7456,["Rogue Ice Thistle"]=7457,["Ice Thistle Yeti"]=7458,["Ice Thistle Matriarch"]=7459,["Ice Thistle Patriarch"]=7460,["Hederine Initiate"]=7461,["Hederine Manastalker"]=7462,["Hederine Slayer"]=7463,["Magma Totem II"]=7464,["Magma Totem III"]=7465,["Magma Totem IV"]=7466,["Nature Resistance Totem"]=7467,["Nature Resistance Totem II"]=7468,["Nature Resistance Totem III"]=7469,["Windfury Totem II"]=7483,["Windfury Totem III"]=7484,["Nargatt"]=7485,["Grace of Air Totem"]=7486,["Grace of Air Totem II"]=7487,["Silverpine Deathguard"]=7489,["Bloodmage Drazial"]=7505,["Bloodmage Lynnore"]=7506,["Brown Snake"]=7507,["Black Kingsnake"]=7508,["Suffering Highborne"]=7523,["Anguished Highborne"]=7524,["Goblin Land Mine"]=7527,["Dark Whelpling"]=7543,["Crimson Whelpling"]=7544,["Emerald Whelpling"]=7545,["Bronze Whelpling"]=7546,["Azure Whelpling"]=7547,["Faeling"]=7548,["Tree Frog"]=7549,["Wood Frog"]=7550,["Dart Frog"]=7551,["Island Frog"]=7552,["Great Horned Owl"]=7553,["Snowy Owl"]=7554,["Hawk Owl"]=7555,["Eagle Owl"]=7556,["Cottontail Rabbit"]=7558,["Spotted Rabbit"]=7559,["Snowshoe Rabbit"]=7560,["Albino Snake"]=7561,["Blue Racer"]=7563,["Marin Noggenfogger"]=7564,["Scarlet Snake"]=7566,["Crimson Snake"]=7567,["Ribbon Snake"]=7568,["Green Water Snake"]=7569,["Elven Wisp"]=7570,["Fallen Hero of the Horde"]=7572,["Sprinkle"]=7583,["Wandering Forest Walker"]=7584,["Leprous Assistant"]=7603,["Sergeant Bly"]=7604,["Raven"]=7605,["Oro Eyegouge"]=7606,["Weegli Blastfuse"]=7607,["Murta Grimgut"]=7608,["Dispatch Commander Ruag"]=7623,["Bengor"]=7643,["Razelikh the Defiler"]=7664,["Grol the Destroyer"]=7665,["Archmage Allistarj"]=7666,["Lady Sevine"]=7667,["Servant of Razelikh"]=7668,["Servant of Grol"]=7669,["Servant of Allistarj"]=7670,["Servant of Sevine"]=7671,["Alessandro Luca"]=7683,["Riding Tiger (Yellow)"]=7684,["Riding Tiger (Red)"]=7686,["Spotted Frostsaber"]=7687,["Striped Nightsaber"]=7690,["Riding Raptor (Crimson)"]=7704,["Riding Raptor (Ivory)"]=7706,["Turquoise Raptor"]=7707,["Violet Raptor"]=7708,["Riding Tallstrider (Brown)"]=7709,["Riding Tallstrider (Gray)"]=7710,["Riding Tallstrider (Pink)"]=7711,["Riding Tallstrider (Purple)"]=7712,["Riding Tallstrider (Turquoise)"]=7713,["Byula"]=7714,["Senior Surveyor Fizzledowser"]=7724,["Grimtotem Raider"]=7725,["Grimtotem Naturalist"]=7726,["Grimtotem Shaman"]=7727,["Kirith the Damned"]=7728,["Spirit of Kirith"]=7729,["Stonetalon Grunt"]=7730,["Innkeeper Jayka"]=7731,["Dupe Bug"]=7732,["Innkeeper Fizzgrimble"]=7733,["Ilifar"]=7734,["Felcular"]=7735,["Innkeeper Shyria"]=7736,["Innkeeper Greul"]=7737,["Burning Servant"]=7738,["Red Mechanostrider"]=7739,["Gracina Spiritmight"]=7740,["Innkeeper Thulfram"]=7744,["Blue Mechanostrider"]=7749,["Corporal Thund Splithoof"]=7750,["Curgle Cranklehop"]=7763,["Troyas Moonbreeze"]=7764,["Rockbiter"]=7765,["Tyrion"]=7766,["Witherbark Felhunter"]=7767,["Witherbark Bloodling"]=7768,["Hazzali Parasite"]=7769,["Winkey"]=7770,["Marvon Rivetseeker"]=7771,["Kalin Windflight"]=7772,["Marli Wishrunner"]=7773,["Shay Leafrunner"]=7774,["Gregan Brewspewer"]=7775,["Talo Thornhoof"]=7776,["Rok Orhan"]=7777,["Doran Steelwing"]=7778,["Priestess Tyriona"]=7779,["Rin'ji"]=7780,["Loramus Thalipedes"]=7783,["Homing Robot OOX-17/TN"]=7784,["Ward of Zum'rah"]=7785,["Skeleton of Zum'rah"]=7786,["Sandfury Slave"]=7787,["Sandfury Drudge"]=7788,["Sandfury Cretin"]=7789,["Orokk Omosh"]=7790,["Aturk the Anvil"]=7792,["Ox"]=7793,["McGavan"]=7794,["Hydromancer Velratha"]=7795,["Nekrum Gutchewer"]=7796,["Ruuzlu"]=7797,["Hank the Hammer"]=7798,["Gimblethorn"]=7799,["Mekgineer Thermaplugg"]=7800,["Gilveradin Sunchaser"]=7801,["Galvan the Ancient"]=7802,["Scorpid Duneburrower"]=7803,["Trenton Lighthammer"]=7804,["Wastewander Scofflaw"]=7805,["Homing Robot OOX-09/HL"]=7806,["Homing Robot OOX-22/FE"]=7807,["Marauding Owlbeast"]=7808,["Vilebranch Ambusher"]=7809,["Bera Stonehammer"]=7823,["Bulkrek Ragefist"]=7824,["Oran Snakewrithe"]=7825,["Ambassador Ardalan"]=7826,["Gnomeregan Evacuee"]=7843,["Fire Nova Totem IV"]=7844,["Fire Nova Totem V"]=7845,["Teremus the Devourer"]=7846,["Caliph Scorpidsting"]=7847,["Lurking Feral Scar"]=7848,["Mobile Alert System"]=7849,["Kernobee"]=7850,["Nethergarde Elite"]=7851,["Pratt McGrubben"]=7852,["Scooty"]=7853,["Jangdor Swiftstrider"]=7854,["Southsea Pirate"]=7855,["Southsea Freebooter"]=7856,["Southsea Dock Worker"]=7857,["Southsea Swashbuckler"]=7858,["Dream Vision"]=7863,["Lingering Highborne"]=7864,["Wildhammer Sentry"]=7865,["Peter Galen"]=7866,["Thorkaf Dragoneye"]=7867,["Sarah Tanner"]=7868,["Brumn Winterhoof"]=7869,["Caryssia Moonhunter"]=7870,["Se'Jib"]=7871,["Death's Head Cultist"]=7872,["Razorfen Battleguard"]=7873,["Razorfen Thornweaver"]=7874,["Hadoken Swiftstrider"]=7875,["Tran'rek"]=7876,["Latronicus Moonspear"]=7877,["Vestia Moonspear"]=7878,["Quintis Jonespyre"]=7879,["Ginro Hearthkindle"]=7880,["Stoley"]=7881,["Security Chief Bilgewhizzle"]=7882,["Andre Firebeard"]=7883,["Fraggar Thundermantle"]=7884,["Spitelash Battlemaster"]=7885,["Spitelash Enchantress"]=7886,["Ambassador Bloodrage"]=7895,["Alarm-a-bomb 2600"]=7897,["Pirate treasure trigger mob"]=7898,["Treasure Hunting Pirate"]=7899,["Angelas Moonbreeze"]=7900,["Treasure Hunting Swashbuckler"]=7901,["Treasure Hunting Buccaneer"]=7902,["Jewel"]=7903,["Jacob"]=7904,["Daryn Lightwind"]=7907,["Walking Bomb"]=7915,["Erelas Ambersky"]=7916,["Brother Sarno"]=7917,["Stone Watcher of Norgannon"]=7918,["Lyon Mountainheart"]=7936,["High Tinker Mekkatorque"]=7937,["Feathermoon Sentinel"]=7939,["Darnall"]=7940,["Mardrack Greenwell"]=7941,["Faralorn"]=7942,["Harklane"]=7943,["Tinkmaster Overspark"]=7944,["Savanne"]=7945,["Brannock"]=7946,["Vivianna"]=7947,["Kylanna Windwhisper"]=7948,["Xylinnia Starshine"]=7949,["Master Mechanic Castpipe"]=7950,["Zas'Tysh"]=7951,["Zjolnir"]=7952,["Xar'Ti"]=7953,["Binjy Featherwhistle"]=7954,["Milli Featherwhistle"]=7955,["Kindal Moonweaver"]=7956,["Jer'kai Moonweaver"]=7957,["Camp Narache Brave"]=7975,["Thalgus Thunderfist"]=7976,["Gammerita"]=7977,["Bimble Longberry"]=7978,["Deathguard Elite"]=7980,["Vile Priestess Hexx"]=7995,["Qiaga the Keeper"]=7996,["Captured Sprite Darter"]=7997,["Blastmaster Emi Shortfuse"]=7998,["Tyrande Whisperwind"]=7999,["Ashenvale Sentinel"]=8015,["Barrens Guard"]=8016,["Sen'jin Guardian"]=8017,["Guthrum Thunderfist"]=8018,["Fyldren Moonfeather"]=8019,["Shyn"]=8020,["Orwin Gizzmick"]=8021,["Thadius Grimshade"]=8022,["Sharpbeak"]=8023,["Sharpbeak's Father"]=8024,["Sharpbeak's Mother"]=8025,["Thyn'tel Bladeweaver"]=8026,["Dark Iron Land Mine"]=8035,["Thelsamar Mountaineer"]=8055,["Edana Hatetalon"]=8075,["Sul'lithuz Sandcrawler"]=8095,["Westfall Brigade Guard"]=8096,["Witch Doctor Uzer'i"]=8115,["Ziggle Sparks"]=8116,["Wizbang Booms"]=8117,["Lillian Singh"]=8118,["Zikkel"]=8119,["Sul'lithuz Abomination"]=8120,["Jaxxil Sparks"]=8121,["Kizzak Sparks"]=8122,["Rickle Goldgrubber"]=8123,["Qizzik"]=8124,["Dirge Quikcleave"]=8125,["Nixx Sprocketspring"]=8126,["Antu'sul"]=8127,["Pikkle"]=8128,["Wrinkle Goodsteel"]=8129,["Sul'lithuz Hatchling"]=8130,["Blizrik Buckshot"]=8131,["Lord Shalzaru"]=8136,["Gikkix"]=8137,["Sul'lithuz Broodling"]=8138,["Jabbey"]=8139,["Brother Karman"]=8140,["Captain Evencane"]=8141,["Jannos Lighthoof"]=8142,["Loorana"]=8143,["Kulleg Stonehorn"]=8144,["Sheendra Tallgrass"]=8145,["Ruw"]=8146,["Camp Mojache Brave"]=8147,["Sul'lithuz Warder"]=8149,["Janet Hommers"]=8150,["Nijel's Point Guard"]=8151,["Harnor"]=8152,["Narv Hidecrafter"]=8153,["Ghost Walker Brave"]=8154,["Kargath Grunt"]=8155,["Servant of Antu'sul"]=8156,["Logannas"]=8157,["Bronk"]=8158,["Worb Strongstitch"]=8159,["Nioma"]=8160,["Harggan"]=8161,["Gharash"]=8176,["Rartar"]=8177,["Nina Lightbrew"]=8178,["Greater Healing Ward"]=8179,["Occulus"]=8196,["Chronalis"]=8197,["Tick"]=8198,["Warleader Krazzilak"]=8199,["Jin'Zallah the Sandbringer"]=8200,["Omgorn the Lost"]=8201,["Cyclok the Mad"]=8202,["Kregg Keelhaul"]=8203,["Soriid the Devourer"]=8204,["Haarka the Ravenous"]=8205,["Emberwing"]=8207,["Murderous Blisterpaw"]=8208,["Razortalon"]=8210,["Old Cliff Jumper"]=8211,["The Reak"]=8212,["Ironback"]=8213,["Jalinde Summerdrake"]=8214,["Grimungous"]=8215,["Retherokk the Berserker"]=8216,["Mith'rethis the Enchanter"]=8217,["Witherheart the Stalker"]=8218,["Zul'arek Hatefowler"]=8219,["Muck Frenzy"]=8236,["Curator Thorius"]=8256,["Oozeling"]=8257,["Soaring Razorbeak"]=8276,["Rekk'tilac"]=8277,["Smoldar"]=8278,["Faulty War Golem"]=8279,["Shleipnarr"]=8280,["Scald"]=8281,["Highlord Mastrogonde"]=8282,["Slave Master Blackheart"]=8283,["Dorius Stonetender"]=8284,["Mojo the Twisted"]=8296,["Magronos the Unyielding"]=8297,["Akubar the Seer"]=8298,["Spiteflayer"]=8299,["Ravage"]=8300,["Clack the Reaver"]=8301,["Deatheye"]=8302,["Grunter"]=8303,["Dreadscorn"]=8304,["Kixxle"]=8305,["Duhng"]=8306,["Tarban Hearthgrain"]=8307,["Alenndaar Lapidaar"]=8308,["Carlo Aurelius"]=8309,["Watcher Wollpert"]=8310,["Slime Maggot"]=8311,["Atal'ai Deathwalker's Spirit"]=8317,["Atal'ai Slave"]=8318,["Nightmare Whelp"]=8319,["Sprok"]=8320,["Atal'ai Skeleton"]=8324,["Hakkari Sapper"]=8336,["Dark Iron Steelshifter"]=8337,["Dark Iron Marksman"]=8338,["Chesmu"]=8356,["Atepa"]=8357,["Hewa"]=8358,["Ahanu"]=8359,["Elki"]=8360,["Chepi"]=8361,["Kuruk"]=8362,["Shadi Mistrunner"]=8363,["Pakwa"]=8364,["Mechanical Chicken"]=8376,["Alexandra Blazen"]=8378,["Archmage Xylem"]=8379,["Captain Vanessa Beltis"]=8380,["Lindros"]=8381,["Patrick Mills"]=8382,["Master Wood"]=8383,["Deep Lurker"]=8384,["Mura Runetotem"]=8385,["Horizon Scout Crewman"]=8386,["Horizon Scout First Mate"]=8387,["Horizon Scout Cook"]=8388,["Horizon Scout Engineer"]=8389,["Chemist Cuely"]=8390,["Lathoric the Black"]=8391,["Pilot Xiggs Fuselighter"]=8392,["Thersa Windsong"]=8393,["Roland Geardabbler"]=8394,["Sanath Lim-yo"]=8395,["Sentinel Dalia Sunblade"]=8396,["Sentinel Keldara Sunblade"]=8397,["Ohanko"]=8398,["Nyrill"]=8399,["Obsidion"]=8400,["Halpa"]=8401,["Enslaved Archaeologist"]=8402,["Jeremiah Payson"]=8403,["Xan'tish"]=8404,["Ogtinc"]=8405,["Warlord Krellian"]=8408,["Caravan Master Tset"]=8409,["Felix Whindlebolt"]=8416,["Dying Archaeologist"]=8417,["Falla Sagewind"]=8418,["Twilight Idolater"]=8419,["Kim'jael"]=8420,["Dorius"]=8421,["Zamael Lunthistle"]=8436,["Hakkari Minion"]=8437,["Hakkari Bloodkeeper"]=8438,["Nilith Lokrav"]=8439,["Shade of Hakkar"]=8440,["Raze"]=8441,["Shadowsilk Poacher"]=8442,["Avatar of Hakkar"]=8443,["Trade Master Kovic"]=8444,["Xiggs Fuselighter's Flyingmachine"]=8446,["Clunk"]=8447,["Skeletal Servant"]=8477,["Second Mate Shandril"]=8478,["Kalaran Windblade"]=8479,["Kalaran the Deceiver"]=8480,["Liv Rizzlefix"]=8496,["Nightmare Suppressor"]=8497,["Gibblewilt"]=8503,["Dark Iron Sentry"]=8504,["Eranikus the Chained"]=8506,["Tymor"]=8507,["Gretta Ganter"]=8508,["Squire Maltrake"]=8509,["Atal'ai Totem"]=8510,["Belnistrasz"]=8516,["Xiggs Fuselighter"]=8517,["Rynthariel the Keymaster"]=8518,["Blighted Surge"]=8519,["Plague Ravager"]=8520,["Blighted Horror"]=8521,["Plague Monstrosity"]=8522,["Scourge Soldier"]=8523,["Cursed Mage"]=8524,["Scourge Warder"]=8525,["Dark Caster"]=8526,["Scourge Guard"]=8527,["Dread Weaver"]=8528,["Scourge Champion"]=8529,["Cannibal Ghoul"]=8530,["Gibbering Ghoul"]=8531,["Diseased Flayer"]=8532,["Putrid Gargoyle"]=8534,["Putrid Shrieker"]=8535,["Interloper"]=8537,["Unseen Servant"]=8538,["Eyeless Watcher"]=8539,["Torn Screamer"]=8540,["Hate Shrieker"]=8541,["Death Singer"]=8542,["Stitched Horror"]=8543,["Gangled Golem"]=8544,["Stitched Golem"]=8545,["Dark Adept"]=8546,["Death Cultist"]=8547,["Vile Tutor"]=8548,["Shadowmage"]=8550,["Dark Summoner"]=8551,["Necromancer"]=8553,["Chief Sharptusk Thornmantle"]=8554,["Crypt Stalker"]=8555,["Crypt Walker"]=8556,["Crypt Horror"]=8557,["Crypt Slayer"]=8558,["Mossflayer Scout"]=8560,["Mossflayer Shadowhunter"]=8561,["Mossflayer Cannibal"]=8562,["Wretched Woodsman"]=8563,["Wretched Ranger"]=8564,["Wretched Pathstrider"]=8565,["Dark Iron Lookout"]=8566,["Glutton"]=8567,["Ag'tor Bloodfist"]=8576,["Magus Rimtori"]=8578,["Yeh'kinya"]=8579,["Atal'alarion"]=8580,["Blood Elf Defender"]=8581,["Kadrak"]=8582,["Dirania Silvershine"]=8583,["Iverron"]=8584,["Frost Spectre"]=8585,["Haggrum Bloodfist"]=8586,["Jediga"]=8587,["Umbranse the Spiritspeaker"]=8588,["Plaguehound Runt"]=8596,["Plaguehound"]=8597,["Frenzied Plaguehound"]=8598,["Plaguebat"]=8600,["Noxious Plaguebat"]=8601,["Monstrous Plaguebat"]=8602,["Carrion Grub"]=8603,["Carrion Devourer"]=8605,["Living Decay"]=8606,["Rotting Sludge"]=8607,["Angered Infernal"]=8608,["Alexandra Constantine"]=8609,["Kroum"]=8610,["Idol Room Spawner"]=8611,["Screecher Spirit"]=8612,["Mithril Dragonling"]=8615,["Infernal Servant"]=8616,["Zalashji"]=8617,["Morta'gya the Keeper"]=8636,["Dark Iron Watchman"]=8637,["Hukku's Voidwalker"]=8656,["Hukku's Succubus"]=8657,["Hukku's Imp"]=8658,["Jes'rimon"]=8659,["The Evalcharr"]=8660,["Auctioneer Beardo"]=8661,["Idol Oven Fire Target"]=8662,["Sunwalker Saern"]=8664,["Shylenai"]=8665,["Lil Timmy"]=8666,["Gusting Vortex"]=8667,["Felhound Tracker"]=8668,["Auctioneer Tolon"]=8669,["Auctioneer Chilton"]=8670,["Auctioneer Buckler"]=8671,["Auctioneer Leeka"]=8672,["Auctioneer Thathung"]=8673,["Auctioneer Stampi"]=8674,["Felbeast"]=8675,["World Goblin Engineering Trainer"]=8677,["Jubie Gadgetspring"]=8678,["Knaz Blunderflame"]=8679,["Outfitter Eric"]=8681,["Henry Stern"]=8696,["Dreadlord"]=8716,["Felguard Elite"]=8717,["Manahound"]=8718,["Auctioneer Fitch"]=8719,["Auctioneer Redmuse"]=8720,["Auctioneer Epitwee"]=8721,["Auctioneer Gullem"]=8722,["Auctioneer Golothas"]=8723,["Auctioneer Wabang"]=8724,["Buzzek Bracketswing"]=8736,["Linken"]=8737,["Vazario Linkgrease"]=8738,["Raytaf"]=8756,["Shahiar"]=8757,["Zaman"]=8758,["Mosshoof Runner"]=8759,["Mosshoof Stag"]=8760,["Mosshoof Courser"]=8761,["Timberweb Recluse"]=8762,["Mistwing Rogue"]=8763,["Mistwing Ravager"]=8764,["Forest Ooze"]=8766,["Sah'rhee"]=8767,["Emerald Dragon Whelp"]=8776,["Deathly Usher"]=8816,["Battle Chicken"]=8836,["Muck Splash"]=8837,["Tyrion's Spybot"]=8856,["Sandfury Acolyte"]=8876,["Sandfury Zealot"]=8877,["Muuran"]=8878,["Royal Historian Archesonus"]=8879,["Riding Ram"]=8881,["Riding Tiger"]=8882,["Riding Horse"]=8883,["Skeletal Mount"]=8884,["Riding Raptor"]=8885,["Deviate Python"]=8886,["A tormented voice"]=8887,["Franclorn Forgewright"]=8888,["Anvilrage Overseer"]=8889,["Anvilrage Warden"]=8890,["Anvilrage Guardsman"]=8891,["Anvilrage Footman"]=8892,["Anvilrage Soldier"]=8893,["Anvilrage Medic"]=8894,["Anvilrage Officer"]=8895,["Shadowforge Peasant"]=8896,["Doomforge Craftsman"]=8897,["Anvilrage Marshal"]=8898,["Doomforge Dragoon"]=8899,["Doomforge Arcanasmith"]=8900,["Anvilrage Reservist"]=8901,["Shadowforge Citizen"]=8902,["Anvilrage Captain"]=8903,["Shadowforge Senator"]=8904,["Warbringer Construct"]=8905,["Ragereaver Golem"]=8906,["Wrath Hammer Construct"]=8907,["Molten War Golem"]=8908,["Fireguard"]=8909,["Blazing Fireguard"]=8910,["Fireguard Destroyer"]=8911,["Twilight's Hammer Torturer"]=8912,["Twilight Emissary"]=8913,["Twilight Bodyguard"]=8914,["Twilight's Hammer Ambassador"]=8915,["Arena Spectator"]=8916,["Quarry Slave"]=8917,["Weapon Technician"]=8920,["Bloodhound"]=8921,["Bloodhound Mastiff"]=8922,["Panzor the Invincible"]=8923,["The Behemoth"]=8924,["Dredge Worm"]=8925,["Deep Stinger"]=8926,["Dark Screecher"]=8927,["Burrowing Thundersnout"]=8928,["Princess Moira Bronzebeard"]=8929,["Innkeeper Heather"]=8931,["Borer Beetle"]=8932,["Cave Creeper"]=8933,["Christopher Hewen"]=8934,["Pet Bomb"]=8937,["Angerclaw Bear"]=8956,["Angerclaw Grizzly"]=8957,["Angerclaw Mauler"]=8958,["Felpaw Wolf"]=8959,["Felpaw Scavenger"]=8960,["Felpaw Ravager"]=8961,["Nida"]=8962,["Effsee"]=8963,["Blackrock Drake"]=8964,["Shawn"]=8965,["Hematos"]=8976,["Krom'Grul"]=8977,["Thauris Balgarr"]=8978,["Gruklash"]=8979,["Firegut Captain"]=8980,["Malfunctioning Reaver"]=8981,["Ironhand Guardian"]=8982,["Golem Lord Argelmach"]=8983,["Voidwalker Minion"]=8996,["Gershala Nightwhisper"]=8997,["Bael'Gar"]=9016,["Lord Incendius"]=9017,["High Interrogator Gerstahn"]=9018,["Emperor Dagran Thaurissan"]=9019,["Commander Gor'shak"]=9020,["Kharan Mighthammer"]=9021,["Dughal Stormwing"]=9022,["Marshal Windsor"]=9023,["Pyromancer Loregrain"]=9024,["Lord Roccor"]=9025,["Overmaster Pyron"]=9026,["Gorosh the Dervish"]=9027,["Grizzle"]=9028,["Eviscerator"]=9029,["Ok'thor the Breaker"]=9030,["Anub'shiah"]=9031,["Hedrum the Creeper"]=9032,["General Angerforge"]=9033,["Hate'rel"]=9034,["Anger'rel"]=9035,["Vile'rel"]=9036,["Gloom'rel"]=9037,["Seeth'rel"]=9038,["Doom'rel"]=9039,["Dope'rel"]=9040,["Warder Stilgiss"]=9041,["Verek"]=9042,["Scarshield Grunt"]=9043,["Scarshield Sentry"]=9044,["Scarshield Acolyte"]=9045,["Scarshield Quartermaster"]=9046,["Jenal"]=9047,["Fineous Darkvire"]=9056,["Ghede"]=9076,["Warlord Goretooth"]=9077,["Shadowmage Vivian Lagrave"]=9078,["Hierophant Theodora Mulvadania"]=9079,["Lexlort"]=9080,["Galamav the Marksman"]=9081,["Thal'trak Proudtusk"]=9082,["Razal'blade"]=9083,["Thunderheart"]=9084,["Initiate Amakkar"]=9085,["Grunt Gargal"]=9086,["Bashana Runetotem"]=9087,["Rage Talon Dragonspawn"]=9096,["Scarshield Legionnaire"]=9097,["Scarshield Spellbinder"]=9098,["Sraaz"]=9099,["Eridan Bluewind"]=9116,["J.D. Collie"]=9117,["Larion"]=9118,["Muigin"]=9119,["Sha'ni Proudtusk"]=9136,["Ambassador Flamelash"]=9156,["Bloodpetal Pest"]=9157,["Warhorse"]=9158,["Young Diemetradon"]=9162,["Diemetradon"]=9163,["Elder Diemetradon"]=9164,["Fledgling Pterrordax"]=9165,["Pterrordax"]=9166,["Frenzied Pterrordax"]=9167,["Gorlop"]=9176,["Oralius"]=9177,["Burning Spirit"]=9178,["Jazzrik"]=9179,["Highlord Omokk"]=9196,["Spirestone Battle Mage"]=9197,["Spirestone Mystic"]=9198,["Spirestone Enforcer"]=9199,["Spirestone Reaver"]=9200,["Spirestone Ogre Magus"]=9201,["Spirestone Warlord"]=9216,["Spirestone Lord Magus"]=9217,["Spirestone Battle Lord"]=9218,["Spirestone Butcher"]=9219,["Shadow Hunter Vosh'gajin"]=9236,["War Master Voone"]=9237,["Quentin"]=9238,["Smolderthorn Mystic"]=9239,["Smolderthorn Shadow Priest"]=9240,["Smolderthorn Headhunter"]=9241,["Farm Chicken"]=9256,["Scarshield Warlock"]=9257,["Scarshield Raider"]=9258,["Firebrand Grunt"]=9259,["Firebrand Legionnaire"]=9260,["Firebrand Darkweaver"]=9261,["Firebrand Invoker"]=9262,["Firebrand Dreadweaver"]=9263,["Firebrand Pyromancer"]=9264,["Smolderthorn Shadow Hunter"]=9265,["Smolderthorn Witch Doctor"]=9266,["Smolderthorn Axe Thrower"]=9267,["Smolderthorn Berserker"]=9268,["Smolderthorn Seer"]=9269,["Williden Marshal"]=9270,["Hol'anyee Marshal"]=9271,["Spark Nilminer"]=9272,["Petra Grossen"]=9273,["Dadanga"]=9274,["Milly Osworth"]=9296,["Enraged Wyvern"]=9297,["Donova Snowden"]=9298,["Gaeriyan"]=9299,["Wenikee Boltbucket"]=9316,["Rilli Greasygob"]=9317,["Incendosaur"]=9318,["Houndmaster Grebmar"]=9319,["Boss Copperplug"]=9336,["Innkeeper Shul'kar"]=9356,["Blazerunner"]=9376,["Swirling Vortex"]=9377,["Ground Pounder"]=9396,["Unearthed Fossil"]=9397,["Twilight's Hammer Executioner"]=9398,["Scarshield Worg"]=9416,["Spawn of Bael'Gar"]=9436,["Dark Keeper Vorfalk"]=9437,["Dark Keeper Bethek"]=9438,["Dark Keeper Uggel"]=9439,["Dark Keeper Zimrel"]=9441,["Dark Keeper Ofgut"]=9442,["Dark Keeper Pelver"]=9443,["Dark Guard"]=9445,["Scarlet Warder"]=9447,["Scarlet Praetorian"]=9448,["Scarlet Cleric"]=9449,["Scarlet Curate"]=9450,["Scarlet Archmage"]=9451,["Scarlet Enchanter"]=9452,["Aquementas"]=9453,["Xavathras"]=9454,["Warlord Krom'zar"]=9456,["Horde Defender"]=9457,["Horde Axe Thrower"]=9458,["Cyrus Therepentous"]=9459,["Gadgetzan Bruiser"]=9460,["Frenzied Black Drake"]=9461,["Chieftain Bloodmaw"]=9462,["Overlord Ror"]=9464,["Golhine the Hooded"]=9465,["Miblon Snarltooth"]=9467,["Watchman Doomgrip"]=9476,["Cloned Ooze"]=9477,["Gorishi Egg"]=9496,["Gorishi Grub"]=9498,["Plugger Spazzring"]=9499,["Mistress Nagmara"]=9500,["Innkeeper Adegwa"]=9501,["Phalanx"]=9502,["Private Rocknot"]=9503,["Lord Banehollow"]=9516,["Shadow Lord Fel'dan"]=9517,["Rakaiah"]=9518,["Grark Lorkrub"]=9520,["Enraged Felbat"]=9521,["Blackrock Ambusher"]=9522,["Kolkar Stormseer"]=9523,["Kolkar Invader"]=9524,["Freewind Brave"]=9525,["Enraged Gryphon"]=9526,["Enraged Hippogryph"]=9527,["Arathandris Silversky"]=9528,["Maybess Riverbreeze"]=9529,["Maxwort Uberglint"]=9536,["Hurley Blackbreath"]=9537,["High Executioner Nuzrak"]=9538,["Shadow of Lexlort"]=9539,["Enohar Thunderbrew"]=9540,["Blackbreath Crony"]=9541,["Franclorn's Spirit"]=9542,["Ribbly Screwspigot"]=9543,["Yuka Screwspigot"]=9544,["Grim Patron"]=9545,["Raschal the Courier"]=9546,["Guzzling Patron"]=9547,["Cawind Trueaim"]=9548,["Borand"]=9549,["Furmund"]=9550,["Starn"]=9551,["Zanara"]=9552,["Nadia Vernon"]=9553,["Hammered Patron"]=9554,["Mu'uta"]=9555,["Felhound Minion"]=9556,["Grimble"]=9558,["Grizzlowe"]=9559,["Marshal Maxwell"]=9560,["Jalinda Sprig"]=9561,["Helendis Riverhorn"]=9562,["Ragged John"]=9563,["Frezza"]=9564,["Mayara Brightwing"]=9565,["Zapetta"]=9566,["Overlord Wyrmthalak"]=9568,["Orgrimmar Talent Master"]=9580,["Undercity Talent Master"]=9582,["Bloodaxe Veteran"]=9583,["Jalane Ayrole"]=9584,["Bannok Grimaxe"]=9596,["Arei"]=9598,["Parrot"]=9600,["Treant Spirit"]=9601,["Hahk'Zor"]=9602,["Gorgon'och"]=9604,["Blackrock Raider"]=9605,["Laris Geardawdle"]=9616,["Karna Remtravel"]=9618,["Torwa Pathfinder"]=9619,["Dreka'Sur"]=9620,["Gargantuan Ooze"]=9621,["U'cha"]=9622,["A-Me 01"]=9623,["Kireena"]=9636,["Scorching Totem"]=9637,["Pet Bombling"]=9656,["Lil' Smoky"]=9657,["Distract Test"]=9658,["Unkillable Test Dummy"]=9659,["Agnar Beastamer"]=9660,["Sprite Darter Hatchling"]=9662,["Tink Sprocketwhistle"]=9676,["Ograbisi"]=9677,["Shill Dinger"]=9678,["Tobias Seecher"]=9679,["Crest Killer"]=9680,["Jaz"]=9681,["Marshal Reginald Windsor"]=9682,["Lar'korwi Mate"]=9683,["Lar'korwi"]=9684,["Windwall Totem"]=9687,["Windwall Totem II"]=9688,["Windwall Totem III"]=9689,["Ember Worg"]=9690,["Venomtip Scorpid"]=9691,["Bloodaxe Raider"]=9692,["Bloodaxe Evoker"]=9693,["Slavering Ember Worg"]=9694,["Deathlash Scorpid"]=9695,["Bloodaxe Worg"]=9696,["Giant Ember Worg"]=9697,["Firetail Scorpid"]=9698,["Fire Beetle"]=9699,["Lava Crab"]=9700,["Spire Scorpid"]=9701,["Illusionary Dreamwatcher"]=9705,["Yorba Screwspigot"]=9706,["Scarshield Portal"]=9707,["Burning Imp"]=9708,["Bloodaxe Warmonger"]=9716,["Bloodaxe Summoner"]=9717,["Ghok Bashguud"]=9718,["Quartermaster Zigris"]=9736,["Flamekin Spitter"]=9776,["Flamekin Sprite"]=9777,["Flamekin Torcher"]=9778,["Flamekin Rager"]=9779,["Galgar"]=9796,["Pyroguard Emberseer"]=9816,["Blackhand Dreadweaver"]=9817,["Blackhand Summoner"]=9818,["Blackhand Veteran"]=9819,["Mathredis Firestar"]=9836,["Auctioneer Grimful"]=9856,["Auctioneer Grizzlin"]=9857,["Auctioneer Kresky"]=9858,["Auctioneer Lympkin"]=9859,["Salia"]=9860,["Moora"]=9861,["Jaedenar Legionnaire"]=9862,["Locheed"]=9876,["Prince Xavalis"]=9877,["Entropic Beast"]=9878,["Entropic Horror"]=9879,["Jarquia"]=9916,["Corrupted Kitten"]=9936,["Common Kitten"]=9937,["Magmus"]=9938,["Shadowforge Flame Keeper"]=9956,["Tharlidun"]=9976,["Sylista"]=9977,["Wesley"]=9978,["Sarah Goode"]=9979,["Shelby Stoneflint"]=9980,["Sikwa"]=9981,["Penny"]=9982,["Kelsuwa"]=9983,["Ulbrek Firehand"]=9984,["Laziphus"]=9985,["Shyrka Wolfrunner"]=9986,["Shoja'my"]=9987,["Xon'cha"]=9988,["Lina Hearthstove"]=9989,["Lanti'gah"]=9990,["Winna Hazzard"]=9996,["Spraggle Frock"]=9997,["Shizzle"]=9998,["Ringo"]=9999,["Arugal"]=10000,["Tainted Rat"]=10016,["Tainted Cockroach"]=10017,["Brackenwall Enforcer"]=10036,["Lakeshire Guard"]=10037,["Night Watch Guard"]=10038,["Gorishi Hive Guard"]=10040,["Gorishi Hive Queen"]=10041,["Corrupted Saber"]=10042,["Ribbly's Crony"]=10043,["Kirk Maxwell"]=10045,["Bethaine Flinthammer"]=10046,["Michael"]=10047,["Gereck"]=10048,["Hekkru"]=10049,["Seikwa"]=10050,["Seriadne"]=10051,["Maluressian"]=10052,["Anya Maulray"]=10053,["Bulrug"]=10054,["Morganus"]=10055,["Alassin"]=10056,["Theodore Mont Claire"]=10057,["Greth"]=10058,["Antarius"]=10059,["Grimestack"]=10060,["Killium Bouldertoe"]=10061,["Steven Black"]=10062,["Reggifuz"]=10063,["High Priestess of Thaurissan"]=10076,["Deathmaw"]=10077,["Terrorspark"]=10078,["Brave Moonhorn"]=10079,["Sandarr Dunereaver"]=10080,["Dustwraith"]=10081,["Zerillis"]=10082,["Rage Talon Flamescale"]=10083,["Jaelysia"]=10085,["Hesuwa Thunderhorn"]=10086,["Xao'tsu"]=10088,["Silvaria"]=10089,["Belia Thundergranite"]=10090,["High Justice Grimstone"]=10096,["Slave"]=10116,["Tortured Slave"]=10117,["Nessa Shadowsong"]=10118,["Volchan"]=10119,["Vault Warder"]=10120,["Chemist Fuely"]=10136,["Moonkin Oracle"]=10157,["Moonkin"]=10158,["Young Moonkin"]=10159,["Raging Moonkin"]=10160,["Rookery Whelp"]=10161,["Lord Victor Nefarius"]=10162,["Kaltunk"]=10176,["Spire Scarab"]=10177,["Riding MechaStrider (Black)"]=10179,["Unpainted Mechanostrider"]=10180,["Lady Sylvanas Windrunner"]=10181,["Rokaro"]=10182,["Moonflare Totem"]=10183,["Onyxia"]=10184,["General Colbatann"]=10196,["Mezzir the Howler"]=10197,["Kashoch the Reaver"]=10198,["Grizzle Snowpaw"]=10199,["Rak'shiri"]=10200,["Lady Hederine"]=10201,["Azurous"]=10202,["Misha"]=10204,["Gubber Blump"]=10216,["Flame Buffet Totem"]=10217,["Superior Healing Ward"]=10218,["Gwennyth Bly'Leggonde"]=10219,["Halycon"]=10220,["Bloodaxe Worg Pup"]=10221,["Bijou"]=10257,["Rookery Guardian"]=10258,["Worg Pup"]=10259,["Kibler"]=10260,["Burning Felhound"]=10261,["Opus"]=10262,["Burning Felguard"]=10263,["Solakar Flamewreath"]=10264,["Ug'thok"]=10266,["Tinkee Steamboil"]=10267,["Gizrul the Slavener"]=10268,["Rotgath Stonebeard"]=10276,["Groum Stonebeard"]=10277,["Thrag Stonehoof"]=10278,["Captured Felwood Ooze"]=10290,["Dulciea Frostmoon"]=10293,["Vaelan"]=10296,["Acride"]=10299,["Ranshalla"]=10300,["Jaron Stoneshaper"]=10301,["Krakle"]=10302,["Storm Shadowhoof"]=10303,["Aurora Skycaller"]=10304,["Umi Rumplesnicker"]=10305,["Trull Failbane"]=10306,["Witch Doctor Mau'ari"]=10307,["Blackhand Incarcerator"]=10316,["Blackhand Elite"]=10317,["Blackhand Assassin"]=10318,["Blackhand Iron Guard"]=10319,["Emberstrife"]=10321,["Riding Tiger (White)"]=10322,["Murkdeep"]=10323,["Gyth"]=10339,["Vaelastrasz the Red"]=10340,["Bayne"]=10356,["Ressan the Needler"]=10357,["Fellicent's Shade"]=10358,["Sri'skulk"]=10359,["Kergul Bloodaxe"]=10360,["Gruul Darkblade"]=10361,["General Drakkisath"]=10363,["Yaelika Farclaw"]=10364,["Rage Talon Dragon Guard"]=10366,["Shrye Ragefist"]=10367,["Trayexir"]=10369,["[UNUSED] Xur'gyl"]=10370,["Rage Talon Captain"]=10371,["Rage Talon Fire Tongue"]=10372,["Xabraxxis"]=10373,["Spire Spider"]=10374,["Spire Spiderling"]=10375,["Crystal Fang"]=10376,["Elu"]=10377,["Omusa Thunderhorn"]=10378,["Altsoba Ragetotem"]=10379,["Sanuye Runetotem"]=10380,["Ravaged Cadaver"]=10381,["Mangled Cadaver"]=10382,["Broken Cadaver"]=10383,["Spectral Citizen"]=10384,["Ghostly Citizen"]=10385,["Vengeful Phantom"]=10387,["Spiteful Phantom"]=10388,["Wrath Phantom"]=10389,["Skeletal Guardian"]=10390,["Skeletal Berserker"]=10391,["Skul"]=10393,["Black Guard Sentry"]=10394,["Thuzadin Shadowcaster"]=10398,["Thuzadin Acolyte"]=10399,["Thuzadin Necromancer"]=10400,["Pustulating Horror"]=10404,["Plague Ghoul"]=10405,["Ghoul Ravener"]=10406,["Fleshflayer Ghoul"]=10407,["Rockwing Gargoyle"]=10408,["Rockwing Screecher"]=10409,["Eye of Naxxramas"]=10411,["Crypt Crawler"]=10412,["Crypt Beast"]=10413,["Patchwork Horror"]=10414,["Ash'ari Crystal"]=10415,["Bile Spewer"]=10416,["Venom Belcher"]=10417,["Risen Guardsman"]=10418,["Risen Conjuror"]=10419,["Risen Initiate"]=10420,["Crimson Defender"]=10421,["Crimson Sorcerer"]=10422,["Crimson Priest"]=10423,["Risen Gallant"]=10424,["Crimson Battle Mage"]=10425,["Crimson Inquisitor"]=10426,["Pao'ka Swiftmountain"]=10427,["Motega Firemane"]=10428,["Warchief Rend Blackhand"]=10429,["The Beast"]=10430,["Gregor Greystone"]=10431,["Vectus"]=10432,["Marduk Blackpool"]=10433,["Magistrate Barthilas"]=10435,["Baroness Anastari"]=10436,["Nerub'enkan"]=10437,["Maleki the Pallid"]=10438,["Ramstein the Gorger"]=10439,["Baron Rivendare"]=10440,["Plagued Rat"]=10441,["Chromatic Whelp"]=10442,["Selina Dourman"]=10445,["Chromatic Dragonspawn"]=10447,["Binny Springblade"]=10455,["Prynne"]=10456,["Prospector Ironboot"]=10460,["Plagued Insect"]=10461,["Shrieking Banshee"]=10463,["Wailing Banshee"]=10464,["Mana Tide Totem"]=10467,["Felnok Steelspring"]=10468,["Scholomance Adept"]=10469,["Scholomance Neophyte"]=10470,["Scholomance Acolyte"]=10471,["Scholomance Occultist"]=10472,["Scholomance Student"]=10475,["Scholomance Necrolyte"]=10476,["Scholomance Necromancer"]=10477,["Splintered Skeleton"]=10478,["Skulking Corpse"]=10479,["Unstable Corpse"]=10480,["Reanimated Corpse"]=10481,["Risen Lackey"]=10482,["Risen Aberration"]=10485,["Risen Warrior"]=10486,["Risen Protector"]=10487,["Risen Construct"]=10488,["Risen Guard"]=10489,["Risen Bonewarder"]=10491,["Diseased Ghoul"]=10495,["Ragged Ghoul"]=10497,["Spectral Tutor"]=10498,["Spectral Researcher"]=10499,["Spectral Teacher"]=10500,["Lady Illucia Barov"]=10502,["Jandice Barov"]=10503,["Lord Alexei Barov"]=10504,["Instructor Malicia"]=10505,["Kirtonos the Herald"]=10506,["The Ravenian"]=10507,["Ras Frostwhisper"]=10508,["Jed Runewatcher"]=10509,["The Unforgiven"]=10516,["Plagued Maggot"]=10536,["Cliffwatcher Longhorn"]=10537,["Vaelastrasz"]=10538,["Hagar Lightninghoof"]=10539,["Vol'jin"]=10540,["Krakle's Thermometer"]=10541,["Lazy Peon"]=10556,["Flametongue Totem IV"]=10557,["Hearthsinger Forresten"]=10558,["Lady Vespia"]=10559,["Crypt Scarab"]=10577,["Bom'bay"]=10578,["Fetid Zombie"]=10580,["Young Arikara"]=10581,["Dog"]=10582,["Gryfe"]=10583,["Urok Doomhowl"]=10584,["Mother Smolderweb"]=10596,["Smolderweb Hatchling"]=10598,["Hulfnar Stonetotem"]=10599,["Thontek Rumblehoof"]=10600,["Urok Enforcer"]=10601,["Urok Ogre Magus"]=10602,["Hallucination"]=10603,["Huntress Nhemai"]=10604,["Scarlet Medic"]=10605,["Huntress Yaeliura"]=10606,["Scarlet Priest"]=10608,["Angus"]=10610,["Shorty"]=10611,["Guard Wachabe"]=10612,["Supervisor Raelen"]=10616,["Galak Messenger"]=10617,["Rivern Frostwind"]=10618,["Glacier"]=10619,["Pack Kodo"]=10636,["Malyfous Darkhammer"]=10637,["Kanati Greycloud"]=10638,["Rorgish Jowl"]=10639,["Oakpaw"]=10640,["Branch Snapper"]=10641,["Eck'alom"]=10642,["Mugglefin"]=10643,["Mist Howler"]=10644,["Thalia Amberhide"]=10645,["Lakota Windsong"]=10646,["Prince Raze"]=10647,["Xavaric"]=10648,["Guardian Felhunter"]=10656,["Corrupted Cat"]=10657,["Winna's Kitten"]=10658,["Cobalt Whelp"]=10659,["Cobalt Broodling"]=10660,["Spell Eater"]=10661,["Spellmaw"]=10662,["Manaclaw"]=10663,["Scryer"]=10664,["Junior Apothecary Holland"]=10665,["Gordo"]=10666,["Chromie"]=10667,["Beaten Corpse"]=10668,["Raider Jhash"]=10676,["Plagued Hatchling"]=10678,["Summoned Blackhand Dreadweaver"]=10680,["Summoned Blackhand Veteran"]=10681,["Raider Kerr"]=10682,["Rookery Hatcher"]=10683,["Remorseful Highborne"]=10684,["Swine"]=10685,["Refuge Pointe Defender"]=10696,["Bile Slime"]=10697,["Summoned Zombie"]=10698,["Carrion Scarab"]=10699,["Belfry Bat"]=10716,["Temporal Parasite"]=10717,["Shahram"]=10718,["Herald of Thrall"]=10719,["Galak Assassin"]=10720,["Novice Warrior"]=10721,["Shy-Rotam"]=10737,["High Chief Winterfall"]=10738,["Mulgris Deepriver"]=10739,["Awbee"]=10740,["Sian-Rotam"]=10741,["Blackhand Dragon Handler"]=10742,["Scalding Elemental"]=10756,["Boiling Elemental"]=10757,["Grimtotem Bandit"]=10758,["Grimtotem Stomper"]=10759,["Grimtotem Geomancer"]=10760,["Grimtotem Reaver"]=10761,["Blackhand Thug"]=10762,["Finkle Einhorn"]=10776,["Janice Felstone"]=10778,["Infected Squirrel"]=10779,["Infected Deer"]=10780,["Royal Overseer Bauhaus"]=10781,["Royal Factor Bathrilor"]=10782,["Orb of Deception (Tauren Male)"]=10785,["Warosh"]=10799,["Warosh the Redeemed"]=10800,["Jabbering Ghoul"]=10801,["Hitah'ya the Keeper"]=10802,["Rifleman Wheeler"]=10803,["Rifleman Middlecamp"]=10804,["Spotter Klemmy"]=10805,["Ursius"]=10806,["Brumeran"]=10807,["Timmy the Cruel"]=10808,["Stonespine"]=10809,["Instructor Galford"]=10811,["Grand Crusader Dathrohan"]=10812,["Balnazzar"]=10813,["Chromatic Elite Guard"]=10814,["Wandering Skeleton"]=10816,["Duggan Wildhammer"]=10817,["Death Knight Soulbearer"]=10818,["Baron Bloodbane"]=10819,["Duke Ragereaver"]=10820,["Hed'mush the Rotting"]=10821,["Warlord Thresh'jin"]=10822,["Zul'Brin Warpbranch"]=10823,["Ranger Lord Hawkspear"]=10824,["Gish the Unmoving"]=10825,["Lord Darkscythe"]=10826,["Deathspeaker Selendre"]=10827,["High General Abbendis"]=10828,["Farmer Dalson"]=10836,["High Executor Derrington"]=10837,["Commander Ashlam Valorfist"]=10838,["Argent Officer Garush"]=10839,["Argent Officer Pureheart"]=10840,["Argent Quartermaster Hasana"]=10856,["Argent Quartermaster Lightspark"]=10857,["Undead Scarab"]=10876,["Courier Hammerfall"]=10877,["Herald Moonstalker"]=10878,["Harbinger Balthazad"]=10879,["Warcaller Gorlach"]=10880,["Bluff Runner Windstrider"]=10881,["[Deprecated for 4.x]Arikara"]=10882,["Arnak Grimtotem"]=10896,["Sindrayl"]=10897,["Goraluk Anvilcrack"]=10899,["Lorekeeper Polkelt"]=10901,["Andorhal Tower One"]=10902,["Andorhal Tower Two"]=10903,["Andorhal Tower Three"]=10904,["Andorhal Tower Four"]=10905,["Winterfall Runner"]=10916,["Aurius"]=10917,["Lorax"]=10918,["Shatterspear Troll"]=10919,["Kelek Skykeeper"]=10920,["Taronn Redfeather"]=10921,["Greta Mosshoof"]=10922,["Tenell Leafrunner"]=10923,["Ivy Leafrunner"]=10924,["Rotting Worm"]=10925,["Pamela Redpath"]=10926,["Marlene Redpath"]=10927,["Succubus Minion"]=10928,["Haleh"]=10929,["Dargh Trueaim"]=10930,["Joseph Redpath"]=10936,["Captain Redpath"]=10937,["Redpath the Corrupted"]=10938,["Marduk the Black"]=10939,["Ghost of the Past"]=10940,["Wizlo Bearingshiner"]=10941,["Nessy"]=10942,["Decrepit Guardian"]=10943,["Davil Lightfire"]=10944,["Davil Crokford"]=10945,["Horgus the Ravager"]=10946,["Darrowshire Betrayer"]=10947,["Darrowshire Defender"]=10948,["Silver Hand Disciple"]=10949,["Redpath Militia"]=10950,["Marauding Corpse"]=10951,["Marauding Skeleton"]=10952,["Servant of Horgus"]=10953,["Bloodletter"]=10954,["Summoned Water Elemental"]=10955,["Naga Siren"]=10956,["Jeziba"]=10976,["Quixxil"]=10977,["Legacki"]=10978,["Scarlet Hound"]=10979,["Umi's Mechanical Yeti"]=10980,["Frostwolf"]=10981,["Whitewhisker Vermin"]=10982,["Snowblind Harpy"]=10986,["Irondeep Trogg"]=10987,["Kodo Spirit"]=10988,["Alterac Ram"]=10990,["Wildpaw Gnoll"]=10991,["Enraged Panther"]=10992,["Twizwick Sprocketgrind"]=10993,["Fallen Hero"]=10996,["Cannon Master Willey"]=10997,["Captured Arko'narin"]=11016,["Roxxik"]=11017,["Arko'narin"]=11018,["Jessir Moonbow"]=11019,["Remains of Trey Lightforge"]=11020,["Winterspring Frostsaber"]=11021,["Alexi Barov"]=11022,["Weldon Barov"]=11023,["Della"]=11024,["Mukdrak"]=11025,["Sprite Jumpsprocket"]=11026,["Illusory Wraith"]=11027,["Jemma Quikswitch"]=11028,["Trixie Quikswitch"]=11029,["Mindless Undead"]=11030,["Franklin Lloyd"]=11031,["Commander Malor"]=11032,["Smokey LaRue"]=11033,["Lord Maxwell Tyrosus"]=11034,["Betina Bigglezink"]=11035,["Leonid Barthalomew the Revered"]=11036,["Jenna Lemkenilli"]=11037,["Caretaker Alen"]=11038,["Duke Nicholas Zverenhoff"]=11039,["Watcher Brownell"]=11040,["Milla Fairancora"]=11041,["Sylvanna Forestmoon"]=11042,["Crimson Monk"]=11043,["Doctor Martin Felben"]=11044,["Whuut"]=11046,["Kray"]=11047,["Victor Ward"]=11048,["Rhiannon Davis"]=11049,["Trianna"]=11050,["Vhan"]=11051,["Timothy Worthington"]=11052,["High Priestess MacDonnell"]=11053,["Crimson Rifleman"]=11054,["Shadow Priestess Vandis"]=11055,["Alchemist Arbington"]=11056,["Apothecary Dithers"]=11057,["Fras Siabi"]=11058,["Carlin Redpath"]=11063,["Darrowshire Spirit"]=11064,["Thonys Pillarstone"]=11065,["Jhag"]=11066,["Malcomb Wynn"]=11067,["Betty Quin"]=11068,["Jenova Stoneshield"]=11069,["Lalina Summermoon"]=11070,["Mot Dawnstrider"]=11071,["Kitta Firewind"]=11072,["Annora"]=11073,["Hgarth"]=11074,["Cauldron Lord Bilemaw"]=11075,["Cauldron Lord Razarch"]=11076,["Cauldron Lord Malvinious"]=11077,["Cauldron Lord Soulwrath"]=11078,["Wynd Nightchaser"]=11079,["Faldron"]=11081,["Stratholme Courier"]=11082,["Darianna"]=11083,["Tarn"]=11084,["Randal Worth"]=11096,["Drakk Stonehand"]=11097,["Hahrana Ironhide"]=11098,["Argent Guard"]=11099,["Mana Tide Totem II"]=11100,["Mana Tide Totem III"]=11101,["Argent Rider"]=11102,["Innkeeper Lyshaerya"]=11103,["Shelgrayn"]=11104,["Aboda"]=11105,["Innkeeper Sikewa"]=11106,["Innkeeper Abeqwa"]=11116,["Awenasa"]=11117,["Innkeeper Vizzie"]=11118,["Azzleby"]=11119,["Risen Hammersmith"]=11120,["Black Guard Swordsmith"]=11121,["Restless Soul"]=11122,["Freed Soul"]=11136,["Xai'ander"]=11137,["Maethrya"]=11138,["Yugrek"]=11139,["Egan"]=11140,["Spirit of Trey Lightforge"]=11141,["Undead Postman"]=11142,["Postmaster Malown"]=11143,["Myolor Sunderfury"]=11145,["Ironus Coldsteel"]=11146,["Green Mechanostrider"]=11147,["The Scourge Cauldron"]=11152,["Red Skeletal Horse"]=11153,["Blue Skeletal Horse"]=11154,["Brown Skeletal Horse"]=11155,["Green Skeletal Warhorse"]=11156,["Krathok Moltenfist"]=11176,["Okothos Ironrager"]=11177,["Borgosh Corebender"]=11178,["Bloodvenom Post Brave"]=11180,["Shi'alune"]=11181,["Nixxrak"]=11182,["Blixxrak"]=11183,["Wixxrak"]=11184,["Xizzer Fizzbolt"]=11185,["Lunnix Sprocketslip"]=11186,["Himmik"]=11187,["Evie Whirlbrew"]=11188,["Qia"]=11189,["Everlook Bruiser"]=11190,["Lilith the Lithe"]=11191,["Kilram"]=11192,["Seril Scourgebane"]=11193,["Argent Defender"]=11194,["Shatterspear Drummer"]=11196,["Mindless Skeleton"]=11197,["Broken Exile"]=11198,["Crimson Cannon"]=11199,["Summoned Skeleton"]=11200,["Eva Sarkhoff"]=11216,["Lucien Sarkhoff"]=11217,["Kerlonian Evershade"]=11218,["Liladris Moonriver"]=11219,["Blood Parrot"]=11236,["Manifestation of Water"]=11256,["Scholomance Handler"]=11257,["Frail Skeleton"]=11258,["Nataka Longhorn"]=11259,["Northshire Peasant"]=11260,["Doctor Theolen Krastinov"]=11261,["Onyxian Whelp"]=11262,["Spectral Projection"]=11263,["Azshara Sentinel"]=11276,["Caer Darrow Citizen"]=11277,["Magnus Frostwake"]=11278,["Caer Darrow Guardsman"]=11279,["Caer Darrow Cannoneer"]=11280,["Caer Darrow Horseman"]=11281,["Melia"]=11282,["Sammy"]=11283,["Dark Shade"]=11284,["Rory"]=11285,["Magistrate Marduke"]=11286,["Baker Masterson"]=11287,["Spectral Betrayer"]=11288,["Spectral Defender"]=11289,["Mossflayer Zombie"]=11290,["Unliving Mossflayer"]=11291,["Darrowshire Poltergeist"]=11296,["Joseph Dirte"]=11316,["Jinar'Zillen"]=11317,["Ragefire Trogg"]=11318,["Ragefire Shaman"]=11319,["Earthborer"]=11320,["Molten Elemental"]=11321,["Searing Blade Cultist"]=11322,["Searing Blade Enforcer"]=11323,["Searing Blade Warlock"]=11324,["Panda Cub"]=11325,["Mini Diablo"]=11326,["Zergling"]=11327,["Eastvale Peasant"]=11328,["Hakkari Shadowcaster"]=11338,["Hakkari Shadow Hunter"]=11339,["Hakkari Blood Priest"]=11340,["Hakkari Oracle"]=11346,["Zealot Lor'Khan"]=11347,["Zealot Zath"]=11348,["Gurubashi Axe Thrower"]=11350,["Gurubashi Headhunter"]=11351,["Gurubashi Berserker"]=11352,["Gurubashi Blood Drinker"]=11353,["Gurubashi Warrior"]=11355,["Gurubashi Champion"]=11356,["Son of Hakkar"]=11357,["Soulflayer"]=11359,["Zulian Cub"]=11360,["Zulian Tiger"]=11361,["Zulian Panther"]=11365,["Bloodseeker Bat"]=11368,["Razzashi Broodwidow"]=11370,["Razzashi Serpent"]=11371,["Razzashi Adder"]=11372,["Razzashi Cobra"]=11373,["Hooktooth Frenzy"]=11374,["Foreman Thazz'ril"]=11378,["Jin'do the Hexxer"]=11380,["Bloodlord Mandokir"]=11382,["High Priestess Hai'watna"]=11383,["Sandfury Speaker"]=11387,["Witherbark Speaker"]=11388,["Bloodscalp Speaker"]=11389,["Skullsplitter Speaker"]=11390,["Vilebranch Speaker"]=11391,["Nara Meideros"]=11397,["Priestess Alathea"]=11401,["High Priest Rohan"]=11406,["Var'jun"]=11407,["Bibbly F'utzbuckle"]=11438,["Illusion of Jandice Barov"]=11439,["Gordok Enforcer"]=11440,["Gordok Brute"]=11441,["Gordok Mauler"]=11442,["Gordok Ogre-Mage"]=11443,["Gordok Mage-Lord"]=11444,["Gordok Captain"]=11445,["Gordok Spirit"]=11446,["Mushgog"]=11447,["Gordok Warlock"]=11448,["Gordok Reaver"]=11450,["Wildspawn Satyr"]=11451,["Wildspawn Rogue"]=11452,["Wildspawn Trickster"]=11453,["Wildspawn Betrayer"]=11454,["Wildspawn Felsworn"]=11455,["Wildspawn Shadowstalker"]=11456,["Wildspawn Hellcaller"]=11457,["Petrified Treant"]=11458,["Ironbark Protector"]=11459,["Alzzin's Minion"]=11460,["Warpwood Guardian"]=11461,["Warpwood Treant"]=11462,["Warpwood Tangler"]=11464,["Warpwood Stomper"]=11465,["Highborne Summoner"]=11466,["Tsu'zee"]=11467,["Eldreth Seether"]=11469,["Eldreth Sorcerer"]=11470,["Eldreth Apparition"]=11471,["Eldreth Spirit"]=11472,["Eldreth Spectre"]=11473,["Eldreth Phantasm"]=11475,["Skeletal Highborne"]=11476,["Rotting Highborne"]=11477,["Arcane Aberration"]=11480,["Mana Remnant"]=11483,["Residual Monstrosity"]=11484,["Prince Tortheldrin"]=11486,["Magister Kalendris"]=11487,["Illyanna Ravenoak"]=11488,["Tendris Warpwood"]=11489,["Zevrim Thornhoof"]=11490,["Old Ironbark"]=11491,["Alzzin the Wildshaper"]=11492,["Immol'thar"]=11496,["The Razza"]=11497,["Skarr the Broken"]=11498,["[UNUSED] Commander Gormaul"]=11499,["King Gordok"]=11501,["Ragnaros"]=11502,["Timbermaw Warder"]=11516,["Oggleflint"]=11517,["Jergosh the Invoker"]=11518,["Bazzalan"]=11519,["Taragaman the Hungerer"]=11520,["Kodo Apparition"]=11521,["Quartermaster Miranda Breechlock"]=11536,["TEST GEAR PALADIN"]=11537,["TEST GEAR WARRIOR"]=11538,["TEST GEAR HUNTER"]=11539,["TEST GEAR MAGE"]=11540,["TEST GEAR WARLOCK"]=11541,["TEST GEAR DRUID"]=11542,["TEST GEAR SHAMAN"]=11543,["TEST GEAR PRIEST"]=11544,["TEST GEAR ROGUE"]=11545,["Jack Sterling"]=11546,["Loh'atu"]=11548,["Necrofiend"]=11551,["Timbermaw Mystic"]=11552,["Timbermaw Woodbender"]=11553,["Grazle"]=11554,["Gorn One Eye"]=11555,["Salfa"]=11556,["Meilosh"]=11557,["Kernda"]=11558,["Outcast Necromancer"]=11559,["Magrami Spectre"]=11560,["Undead Ravager"]=11561,["Drysnap Crawler"]=11562,["Drysnap Pincer"]=11563,["Gizelton Caravan Kodo"]=11564,["Whirlwind Ripper"]=11576,["Whirlwind Stormwalker"]=11577,["Whirlwind Shredder"]=11578,["Scholomance Dark Summoner"]=11582,["Nefarian"]=11583,["Smeed Scrabblescrew"]=11596,["Risen Guardian"]=11598,["Irondeep Shaman"]=11600,["Irondeep Skullthumper"]=11602,["Whitewhisker Digger"]=11603,["Whitewhisker Geomancer"]=11604,["Whitewhisker Overseer"]=11605,["Bardu Sharpeye"]=11608,["Alexia Ironknife"]=11609,["Kirsta Deepshadow"]=11610,["Cavalier Durgen"]=11611,["Huntsman Radley"]=11613,["Bloodshot"]=11614,["Mickey Levine"]=11615,["Nathaniel Dumah"]=11616,["Spectral Marauder"]=11620,["Spectral Corpse"]=11621,["Rattlegore"]=11622,["Scourge Summoning Crystal"]=11623,["Taiga Wisemane"]=11624,["Cork Gizelton"]=11625,["Rigger Gizelton"]=11626,["Tamed Kodo"]=11627,["Jessica Redpath"]=11629,["Servant of Weldon Barov"]=11636,["Servant of Alexi Barov"]=11637,["Warsong Peon"]=11656,["Morloch"]=11657,["Molten Giant"]=11658,["Molten Destroyer"]=11659,["Flamewaker"]=11661,["Flamewaker Priest"]=11662,["Flamewaker Healer"]=11663,["Flamewaker Elite"]=11664,["Lava Annihilator"]=11665,["Firewalker"]=11666,["Flameguard"]=11667,["Firelord"]=11668,["Flame Imp"]=11669,["Core Hound"]=11671,["Core Rager"]=11672,["Core Hound"]=11673,["Snowblind Windcaller"]=11675,["Taskmaster Snivvle"]=11677,["Snowblind Ambusher"]=11678,["Horde Scout"]=11680,["Warsong Logger"]=11681,["Warsong Grunt"]=11682,["Warsong Shaman"]=11683,["Goblin Deforester"]=11684,["Maraudine Priest"]=11685,["Ghostly Raider"]=11686,["Ghostly Marauder"]=11687,["Cursed Centaur"]=11688,["Brown Kodo"]=11689,["Gnarlpine Instigator"]=11690,["Chal Fairwind"]=11696,["Mannoroc Lasher"]=11697,["Hive'Ashi Stinger"]=11698,["Varian Wrynn"]=11699,["Sarin Starlight"]=11700,["Mor'vek"]=11701,["Arin'sor"]=11702,["Graw Cornerstone"]=11703,["Kriss Goldenlight"]=11704,["Rayan Dawnrisen"]=11705,["Adon"]=11706,["Joy Ar'nareth"]=11707,["Coral Moongale"]=11708,["Jareth Wildwoods"]=11709,["Mirador"]=11710,["Sentinel Aynasha"]=11711,["Lilyn Darkriver"]=11712,["Blackwood Tracker"]=11713,["Marosh the Devious"]=11714,["Talendria"]=11715,["Celes Earthborne"]=11716,["Bethan Bluewater"]=11717,["Sar Browneye"]=11718,["Loruk Foreststrider"]=11720,["Hive'Ashi Worker"]=11721,["Hive'Ashi Defender"]=11722,["Hive'Ashi Sandstalker"]=11723,["Hive'Ashi Swarmer"]=11724,["Hive'Zora Waywatcher"]=11725,["Hive'Zora Tunneler"]=11726,["Hive'Zora Wasp"]=11727,["Hive'Zora Reaver"]=11728,["Hive'Zora Hive Sister"]=11729,["Hive'Regal Ambusher"]=11730,["Hive'Regal Burrower"]=11731,["Hive'Regal Spitfire"]=11732,["Hive'Regal Slavemaker"]=11733,["Hive'Regal Hive Lord"]=11734,["Stonelash Scorpid"]=11735,["Stonelash Pincer"]=11736,["Stonelash Flayer"]=11737,["Sand Skitterer"]=11738,["Rock Stalker"]=11739,["Dredge Striker"]=11740,["Dredge Crusher"]=11741,["Dust Stormer"]=11744,["Cyclone Warrior"]=11745,["Desert Rumbler"]=11746,["Desert Rager"]=11747,["Samantha Swifthoof"]=11748,["Feran Strongwind"]=11749,["Ganoosh"]=11750,["Rilan Howard"]=11751,["Blaise Montgomery"]=11752,["Gogo"]=11753,["Meggi Peppinrocker"]=11754,["Harlo Wigglesworth"]=11755,["Quinn"]=11756,["Umaron Stragarelm"]=11757,["Andi Lynn"]=11758,["Salome"]=11776,["Shadowshard Rumbler"]=11777,["Shadowshard Smasher"]=11778,["Ambershard Crusher"]=11781,["Ambershard Destroyer"]=11782,["Theradrim Shardling"]=11783,["Theradrim Guardian"]=11784,["Ambereye Basilisk"]=11785,["Ambereye Reaver"]=11786,["Rock Borer"]=11787,["Rock Worm"]=11788,["Deep Borer"]=11789,["Putridus Satyr"]=11790,["Putridus Trickster"]=11791,["Putridus Shadowstalker"]=11792,["Celebrian Dryad"]=11793,["Sister of Celebras"]=11794,["Mylentha Riverbend"]=11795,["Bessany Plainswind"]=11796,["Moren Riverbend"]=11797,["Bunthen Plainswind"]=11798,["Tajarri"]=11799,["Silva Fil'naveth"]=11800,["Rabine Saturna"]=11801,["Dendrite Starblaze"]=11802,["Twilight Keeper Exeter"]=11803,["Twilight Keeper Havunth"]=11804,["Jarund Stoutstrider"]=11805,["Sentinel Onaeya"]=11806,["Tristane Shadowstone"]=11807,["Grum Redbeard"]=11808,["Howin Kindfeather"]=11810,["Narain Soothfancy"]=11811,["Claira Kindfeather"]=11812,["Kerr Ironsight"]=11813,["Kali Remik"]=11814,["Voriya"]=11815,["Una Ji'ro"]=11816,["Krah'ranik"]=11817,["Orik'ando"]=11818,["Jory Zaga"]=11819,["Locke Okarr"]=11820,["Darn Talongrip"]=11821,["Moonglade Warden"]=11822,["Vark Battlescar"]=11823,["Erik Felixe"]=11824,["Paige Felixe"]=11825,["Kristy Grant"]=11826,["Kimberly Grant"]=11827,["Kelly Grant"]=11828,["Fahrak"]=11829,["Hakkari Priest"]=11830,["Hakkari Witch Doctor"]=11831,["Keeper Remulos"]=11832,["Rahauro"]=11833,["Maur Grimtotem"]=11834,["Theodore Griffs"]=11835,["Captured Rabid Thistle Bear"]=11836,["Wildpaw Shaman"]=11837,["Wildpaw Mystic"]=11838,["Wildpaw Brute"]=11839,["Wildpaw Alpha"]=11840,["Kaya Flathoof"]=11856,["Makaba Flathoof"]=11857,["Grundig Darkcloud"]=11858,["Doomguard"]=11859,["Maggran Earthbinder"]=11860,["Mor'rogal"]=11861,["Tsunaman"]=11862,["Azore Aldamort"]=11863,["Tammra Windfield"]=11864,["Buliwyf Stonehand"]=11865,["Ilyenia Moonfire"]=11866,["Woo Ping"]=11867,["Sayoc"]=11868,["Ansekhwa"]=11869,["Archibald"]=11870,["Grinning Dog"]=11871,["Myranda the Hag"]=11872,["Spectral Attendant"]=11873,["Masat T'andr"]=11874,["Mortar Team Target Dummy"]=11875,["Fel Spirit"]=11876,["Roon Wildmane"]=11877,["Nathanos Blightcaller"]=11878,["Twilight Avenger"]=11880,["Twilight Geolord"]=11881,["Twilight Stonecaller"]=11882,["Twilight Master"]=11883,["Obi"]=11884,["Blighthound"]=11885,["Mercutio Filthgorger"]=11886,["Crypt Robber"]=11887,["Borelgore"]=11896,["Duskwing"]=11897,["Crusader Lord Valdelmar"]=11898,["Shardi"]=11899,["Brakkar"]=11900,["Andruk"]=11901,["Grimtotem Ruffian"]=11910,["Grimtotem Mercenary"]=11911,["Grimtotem Brute"]=11912,["Grimtotem Sorcerer"]=11913,["Gorehoof the Black"]=11914,["Boulderslide Rock Keeper"]=11915,["Imelda"]=11916,["Boulderslide Geomancer"]=11917,["Boulderslide Stonepounder"]=11918,["Goggeroc"]=11920,["Besseleth"]=11921,["Artist Renfray"]=11936,["Demon Portal Guardian"]=11937,["Umber"]=11939,["Merissa Stilwell"]=11940,["Yori Crackhelm"]=11941,["Orenthil Whisperwind"]=11942,["Magga"]=11943,["Vorn Skyseer"]=11944,["Claire Willower"]=11945,["Drek'Thar"]=11946,["Captain Galvangar"]=11947,["Vanndar Stormpike"]=11948,["Captain Balinda Stonehearth"]=11949,["Great Bear Spirit"]=11956,["Great Cat Spirit"]=11957,["Kim Bridenbecker"]=11979,["Zuluhed the Whacked"]=11980,["Flamegor"]=11981,["Magmadar"]=11982,["Firemaw"]=11983,["Golemagg the Incinerator"]=11988,["Rob Bridenbecker"]=11994,["Ashley Bridenbecker"]=11996,["Stormpike Herald"]=11997,["Frostwolf Herald"]=11998,["Broodlord Lashlayer"]=12017,["Majordomo Executus"]=12018,["Dargon"]=12019,["Daeolyn Summerleaf"]=12021,["Lorelae Wintersong"]=12022,["Kharedon"]=12023,["Meliri"]=12024,["Malvor"]=12025,["My'lanna"]=12026,["Tukk"]=12027,["Lah'Mawhani"]=12028,["Narianna"]=12029,["Malux"]=12030,["Mai'Lahii"]=12031,["Lui'Mala"]=12032,["Wulan"]=12033,["Koiter"]=12034,["Grella Stonefist"]=12036,["Ursol'lok"]=12037,["Brannik Ironbelly"]=12040,["Loganaar"]=12042,["Kulwia"]=12043,["Hae'Wilani"]=12045,["Gor'marok the Ravager"]=12046,["Stormpike Mountaineer"]=12047,["Alliance Sentinel"]=12048,["Stormpike Defender"]=12050,["Frostwolf Legionnaire"]=12051,["Frostwolf Warrior"]=12052,["Frostwolf Guardian"]=12053,["Baron Geddon"]=12056,["Garr"]=12057,["Magma Elemental"]=12076,["Stormpike Quartermaster"]=12096,["Frostwolf Quartermaster"]=12097,["Sulfuron Harbinger"]=12098,["Firesworn"]=12099,["Lava Reaver"]=12100,["Lava Surger"]=12101,["Priestess of Elune"]=12116,["Lucifron"]=12118,["Flamewaker Protector"]=12119,["Plagueland Termite"]=12120,["Drakan"]=12121,["Duros"]=12122,["Reef Shark"]=12123,["Great Shark"]=12124,["Mammoth Shark"]=12125,["Lord Tirion Fordring"]=12126,["Stormpike Guardsman"]=12127,["Crimson Elite"]=12128,["Onyxian Warder"]=12129,["Snurk Bucksquick"]=12136,["Squibby Overspeck"]=12137,["Lunaclaw"]=12138,["Guardian of Elune"]=12140,["Ice Totem"]=12141,["Son of Flame"]=12143,["Lunaclaw Spirit"]=12144,["Riding Kodo (Teal)"]=12148,["Gray Kodo"]=12149,["Riding Kodo (Purple)"]=12150,["Riding Kodo (Green)"]=12151,["Voice of Elune"]=12152,["Korrak the Bloodrager"]=12159,["Shadowglen Sentinel"]=12160,["Tortured Druid"]=12178,["Tortured Sentinel"]=12179,["Innkeeper Kaylisk"]=12196,["Glordrum Steelbeard"]=12197,["Martin Lindsey"]=12198,["Shade of Ambermoon"]=12199,["Princess Theradras"]=12201,["Human Skull"]=12202,["Landslide"]=12203,["Spitelash Raider"]=12204,["Spitelash Witch"]=12205,["Primordial Behemoth"]=12206,["Thessala Hydra"]=12207,["Conquered Soul of the Blightcaller"]=12208,["Poison Sprite"]=12216,["Corruptor"]=12217,["Vile Larva"]=12218,["Barbed Lasher"]=12219,["Constrictor Vine"]=12220,["Noxious Slime"]=12221,["Creeping Sludge"]=12222,["Cavern Lurker"]=12223,["Cavern Shambler"]=12224,["Celebras the Cursed"]=12225,["Lord Vyletongue"]=12236,["Meshlok the Harvester"]=12237,["Zaetar's Spirit"]=12238,["Spirit of Gelk"]=12239,["Spirit of Kolk"]=12240,["Spirit of Magra"]=12241,["Spirit of Maraudos"]=12242,["Spirit of Veng"]=12243,["Mark of Detonation (NW)"]=12244,["Vendor-Tron 1000"]=12245,["Super-Seller 680"]=12246,["Scourge Structure"]=12247,["Infiltrator Hameya"]=12248,["Mark of Detonation (SW)"]=12249,["Zaeldarr the Outcast"]=12250,["Mark of Detonation (CLS)"]=12251,["Mark of Detonation (CRS)"]=12252,["Mark of Detonation (CSH)"]=12253,["Mark of Detonation (NESH)"]=12254,["Mark of Detonation (NE)"]=12255,["Mark of Detonation (SE)"]=12256,["Mechanical Yeti"]=12257,["Razorlash"]=12258,["Gehennas"]=12259,["Infected Mossflayer"]=12261,["Ziggurat Protector"]=12262,["Slaughterhouse Protector"]=12263,["Shazzrah"]=12264,["Lava Spawn"]=12265,["Melizza Brimbuzzle"]=12277,["Sickly Gazelle"]=12296,["Cured Gazelle"]=12297,["Sickly Deer"]=12298,["Cured Deer"]=12299,["Burning Blade Toxicologist"]=12319,["Burning Blade Crusher"]=12320,["Stormscale Toxicologist"]=12321,["Quel'Lithien Protector"]=12322,["Brother Crowley"]=12336,["Crimson Courier"]=12337,["Shadowprey Guardian"]=12338,["Demetria"]=12339,["Drulzegar Skraghook"]=12340,["Green Skeletal War Horse"]=12344,["Emerald Riding Raptor"]=12346,["Enraged Reef Crawler"]=12347,["Ivory Raptor"]=12348,["Turquoise Riding Raptor"]=12349,["Violet Riding Raptor"]=12350,["Dire Riding Wolf"]=12351,["Scarlet Cavalier"]=12352,["Timber Riding Wolf"]=12353,["Brown Riding Kodo"]=12354,["Gray Riding Kodo"]=12355,["Riding Striped Frostsaber"]=12358,["Riding Spotted Frostsaber"]=12359,["Riding Striped Nightsaber"]=12360,["Riding Nightsaber"]=12361,["Riding Frostsaber"]=12362,["Icy Blue Mechanostrider Mod A"]=12364,["Unpainted Mechanostrider X"]=12366,["White Mechanostrider Mod A"]=12368,["Lord Kragaru"]=12369,["Black Ram"]=12370,["Frost Ram"]=12371,["White Riding Ram Mount"]=12374,["Wailing Spectre"]=12377,["Damned Soul"]=12378,["Unliving Caretaker"]=12379,["Unliving Resident"]=12380,["Ley Sprite"]=12381,["Mana Sprite"]=12382,["Nibbles"]=12383,["Augustus the Touched"]=12384,["Mortar Team Advanced Target Dummy"]=12385,["Large Vile Slime"]=12387,["Doomguard Commander"]=12396,["Lord Kazzak"]=12397,["Blackwing Legionnaire"]=12416,["Gordok Hyena"]=12418,["Lifelike Toad"]=12419,["Blackwing Mage"]=12420,["Death Talon Dragonspawn"]=12422,["Guard Roberts"]=12423,["Flint Shadowmore"]=12425,["Masterwork Target Dummy"]=12426,["Mountaineer Dolf"]=12427,["Deathguard Kel"]=12428,["Sentinel Shaya"]=12429,["Grunt Kor'ja"]=12430,["Gorefang"]=12431,["Old Vicejaw"]=12432,["Krethis the Shadowspinner"]=12433,["Monster Generator (Blackwing)"]=12434,["Razorgore the Untamed"]=12435,["Blackwing Spellbinder"]=12457,["Blackwing Taskmaster"]=12458,["Blackwing Warlock"]=12459,["Death Talon Wyrmguard"]=12460,["Death Talon Overseer"]=12461,["Death Talon Flamescale"]=12463,["Death Talon Seether"]=12464,["Death Talon Wyrmkin"]=12465,["Death Talon Captain"]=12467,["Death Talon Hatcher"]=12468,["Arcanite Dragonling"]=12473,["Emeraldon Boughguard"]=12474,["Emeraldon Tree Warder"]=12475,["Emeraldon Oracle"]=12476,["Verdantine Boughguard"]=12477,["Verdantine Oracle"]=12478,["Verdantine Tree Warder"]=12479,["Melris Malagan"]=12480,["Justine Demalier"]=12481,["Dreamtracker"]=12496,["Dreamroarer"]=12497,["Dreamstalker"]=12498,["Grethok the Controller"]=12557,["Grish Longrunner"]=12576,["Jarrodenus"]=12577,["Mishellena"]=12578,["Bloodfury Ripper"]=12579,["Reginald Windsor"]=12580,["Mercutio"]=12581,["Bibilfaz Featherwhistle"]=12596,["Vhulgra"]=12616,["Khaelyn Steelwing"]=12617,["Georgia"]=12636,["Thamarian"]=12656,["Don Pompa"]=12657,["Adam Lind"]=12658,["Sharptalon"]=12676,["Shadumbra"]=12677,["Ursangous"]=12678,["Senani Thunderheart"]=12696,["Decedra Willham"]=12716,["Muglash"]=12717,["Gurda Ragescar"]=12718,["Marukai"]=12719,["Framnali"]=12720,["Mitsuwa"]=12721,["Vera Nightshade"]=12722,["Har'alen"]=12723,["Pixel"]=12724,["Je'neu Sancrea"]=12736,["Mastok Wrilehiss"]=12737,["Nori Pridedrift"]=12738,["Onyxia's Elite Guard"]=12739,["Faustron"]=12740,["Lady Onyxia"]=12756,["Karang Amakkar"]=12757,["Onyxia Trigger"]=12758,["Tideress"]=12759,["Hraug"]=12776,["Captain Dirgehammer"]=12777,["Lieutenant Rachel Vaccar"]=12778,["Archmage Gaiman"]=12779,["Sergeant Major Skyshadow"]=12780,["Master Sergeant Biggins"]=12781,["Captain O'Neal"]=12782,["Lieutenant Karter"]=12783,["Lieutenant Jackspring"]=12784,["Sergeant Major Clate"]=12785,["Guard Quine"]=12786,["Guard Hammon"]=12787,["Legionnaire Teena"]=12788,["Blood Guard Hini'wana"]=12789,["Advisor Willington"]=12790,["Chieftain Earthbind"]=12791,["Lady Palanseer"]=12792,["Brave Stonehide"]=12793,["Stone Guard Zarg"]=12794,["First Sergeant Hola'mahi"]=12795,["Raider Bork"]=12796,["Grunt Korf"]=12797,["Grunt Bek'rah"]=12798,["Sergeant Ba'sha"]=12799,["Chimaerok"]=12800,["Arcane Chimaerok"]=12801,["Chimaerok Devourer"]=12802,["Lord Lakmaeran"]=12803,["Officer Areyn"]=12805,["Magmakin"]=12806,["Greshka"]=12807,["Xen'Zilla"]=12816,["Ruul Snowhoof"]=12818,["Wandering Protector"]=12836,["Yama Snowhoof"]=12837,["Ashenvale Outrunner"]=12856,["Torek"]=12858,["Splintertree Raider"]=12859,["Duriel Moonfire"]=12860,["Warsong Scout"]=12862,["Warsong Runner"]=12863,["Warsong Outrider"]=12864,["Ambassador Malcin"]=12865,["Myriam Moonsinger"]=12866,["Kuray'bin"]=12867,["Baron Aquanis"]=12876,["Ertog Ragetusk"]=12877,["Silverwing Sentinel"]=12896,["Silverwing Warrior"]=12897,["Phantim Illusion"]=12898,["Axtroz"]=12899,["Somnus"]=12900,["Lorgus Jett"]=12902,["Splintertree Guard"]=12903,["Chief Murgut"]=12918,["Nat Pagle"]=12919,["Doctor Gregory Victor"]=12920,["Enraged Foulweald"]=12921,["Imp Minion"]=12922,["Wounded Soldier"]=12923,["Badly Injured Soldier"]=12924,["Critically Injured Soldier"]=12925,["Badly Injured Alliance Soldier"]=12936,["Critically Injured Alliance Soldier"]=12937,["Injured Alliance Soldier"]=12938,["Doctor Gustaf VanHowzen"]=12939,["Vorsha the Lasher"]=12940,["Jase Farlane"]=12941,["Leonard Porter"]=12942,["Werg Thickblade"]=12943,["Lokhtos Darkbargainer"]=12944,["Zannok Hidepiercer"]=12956,["Blimo Gadgetspring"]=12957,["Gigget Zipcoil"]=12958,["Nergal"]=12959,["Christi Galvanis"]=12960,["Kil'Hiwana"]=12961,["Wik'Tar"]=12962,["Kolkar Waylayer"]=12976,["Kolkar Ambusher"]=12977,["Mounted Ironforge Mountaineer"]=12996,["Monty"]=12997,["Dwarven Farmer"]=12998,["World Invisible Trigger"]=12999,["Gnome Engineer"]=13000,["Deeprun Rat"]=13016,["Enthralled Deeprun Rat"]=13017,["Nipsy"]=13018,["Burning Blade Seer"]=13019,["Vaelastrasz the Corrupt"]=13020,["Warpwood Crusher"]=13021,["Whip Lasher"]=13022,["Gordok Mastiff"]=13036,["Dun Morogh Mountaineer"]=13076,["Umi Thorson"]=13078,["Keetar"]=13079,["Irondeep Guard"]=13080,["Irondeep Raider"]=13081,["Milton Beats"]=13082,["Bixi Wobblebonk"]=13084,["Myrokos Silentform"]=13085,["Aggi Rumblestomp"]=13086,["Coldmine Invader"]=13087,["Masha Swiftcut"]=13088,["Coldmine Guard"]=13089,["Coldmine Explorer"]=13096,["Coldmine Surveyor"]=13097,["Irondeep Surveyor"]=13098,["Irondeep Explorer"]=13099,["Alliance Spirit Guide"]=13116,["Horde Spirit Guide"]=13117,["Crimson Bodyguard"]=13118,["Hive'Ashi Drone"]=13136,["Lieutenant Rugba"]=13137,["Lieutenant Spencer"]=13138,["Commander Randolph"]=13139,["Commander Dardosh"]=13140,["Deeprot Stomper"]=13141,["Deeprot Tangler"]=13142,["Lieutenant Stronghoof"]=13143,["Lieutenant Vol'talar"]=13144,["Lieutenant Grummus"]=13145,["Lieutenant Murp"]=13146,["Lieutenant Lewis"]=13147,["Flame of Ragnaros"]=13148,["Commander Malgor"]=13152,["Commander Mulfort"]=13153,["Commander Louis Philips"]=13154,["Makasgar"]=13157,["Lieutenant Sanders"]=13158,["James Clark"]=13159,["Carrion Swarmer"]=13160,["Aerie Gryphon"]=13161,["Smith Regzar"]=13176,["Vahgruk"]=13177,["War Rider"]=13178,["Wing Commander Guse"]=13179,["Wing Commander Jeztor"]=13180,["Wing Commander Mulverick"]=13181,["Phase Lasher"]=13196,["Fel Lash"]=13197,["Gaelden Hammersmith"]=13216,["Thanthaldis Snowgleam"]=13217,["Grunnda Wolfheart"]=13218,["Jorek Ironside"]=13219,["Layo Starstrike"]=13220,["Primalist Thurloga"]=13236,["Lokholar the Ice Lord"]=13256,["Murgot Deepforge"]=13257,["Wildspawn Imp"]=13276,["Dahne Pierce"]=13277,["Duke Hydraxis"]=13278,["Discordant Surge"]=13279,["Hydrospawn"]=13280,["Noxxion"]=13282,["Lord Tony Romano"]=13283,["Frostwolf Shaman"]=13284,["Death Lash"]=13285,["Lieutenant Largent"]=13296,["Lieutenant Stouthandle"]=13297,["Lieutenant Greywand"]=13298,["Lieutenant Lonadin"]=13299,["Lieutenant Mancuso"]=13300,["Hive'Ashi Ambusher"]=13301,["Coldmine Peon"]=13316,["Coldmine Miner"]=13317,["Commander Mortimer"]=13318,["Commander Duffy"]=13319,["Commander Karl Philips"]=13320,["Small Frog"]=13321,["Hydraxian Honor Guard"]=13322,["Subterranean Diemetradon"]=13323,["Seasoned Guardsman"]=13324,["Seasoned Mountaineer"]=13325,["Seasoned Defender"]=13326,["Seasoned Sentinel"]=13327,["Seasoned Guardian"]=13328,["Seasoned Legionnaire"]=13329,["Seasoned Warrior"]=13330,["Veteran Defender"]=13331,["Veteran Guardian"]=13332,["Veteran Guardsman"]=13333,["Veteran Legionnaire"]=13334,["Veteran Mountaineer"]=13335,["Veteran Sentinel"]=13336,["Veteran Warrior"]=13337,["Core Rat"]=13338,["Stormpike Bowman"]=13358,["Frostwolf Bowman"]=13359,["Frostwolf Shredder Unit"]=13378,["Irondeep Miner"]=13396,["Irondeep Peon"]=13397,["Stormpike Shredder Unit"]=13416,["Sagorne Creststrider"]=13417,["Kaymard Copperpinch"]=13418,["Ivus the Forest Lord"]=13419,["Penney Copperpinch"]=13420,["Champion Guardian"]=13421,["Champion Defender"]=13422,["Champion Guardsman"]=13424,["Champion Legionnaire"]=13425,["Champion Mountaineer"]=13426,["Champion Sentinel"]=13427,["Nardstrum Copperpinch"]=13429,["Jaycrue Copperpinch"]=13430,["Whulwert Copperpinch"]=13431,["Seersa Copperpinch"]=13432,["Wulmort Jinglepocket"]=13433,["Macey Jinglepocket"]=13434,["Khole Jinglepocket"]=13435,["Guchie Jinglepocket"]=13436,["Wing Commander Ichman"]=13437,["Wing Commander Slidore"]=13438,["Wing Commander Vipore"]=13439,["Frostwolf Wolf Rider"]=13440,["Frostwolf Wolf Rider Commander"]=13441,["Arch Druid Renferal"]=13442,["Druid of the Grove"]=13443,["Greatfather Winter"]=13444,["Great-father Winter"]=13445,["Field Marshal Teravaine"]=13446,["Corporal Noreg Stormpike"]=13447,["Sergeant Yazra Bloodsnarl"]=13448,["Warmaster Garrick"]=13449,["Noxxion's Spawn"]=13456,["Zen'Balai"]=13476,["Stormpike Commando"]=13524,["Seasoned Commando"]=13525,["Veteran Commando"]=13526,["Champion Commando"]=13527,["Seasoned Reaver"]=13529,["Veteran Reaver"]=13530,["Champion Reaver"]=13531,["Spewed Larva"]=13533,["Seasoned Coldmine Guard"]=13534,["Veteran Coldmine Guard"]=13535,["Champion Coldmine Guard"]=13536,["Seasoned Coldmine Surveyor"]=13537,["Veteran Coldmine Surveyor"]=13538,["Champion Coldmine Surveyor"]=13539,["Seasoned Irondeep Explorer"]=13540,["Veteran Irondeep Explorer"]=13541,["Champion Irondeep Explorer"]=13542,["Seasoned Irondeep Raider"]=13543,["Veteran Irondeep Raider"]=13544,["Champion Irondeep Raider"]=13545,["Seasoned Coldmine Explorer"]=13546,["Veteran Coldmine Explorer"]=13547,["Champion Coldmine Explorer"]=13548,["Seasoned Coldmine Invader"]=13549,["Veteran Coldmine Invader"]=13550,["Champion Coldmine Invader"]=13551,["Seasoned Irondeep Guard"]=13552,["Veteran Irondeep Guard"]=13553,["Champion Irondeep Guard"]=13554,["Seasoned Irondeep Surveyor"]=13555,["Veteran Irondeep Surveyor"]=13556,["Champion Irondeep Surveyor"]=13557,["Stormpike Ram Rider"]=13576,["Stormpike Ram Rider Commander"]=13577,["Rotgrip"]=13596,["Frostwolf Explosives Expert"]=13597,["Stormpike Explosives Expert"]=13598,["Stolid Snapjaw"]=13599,["Tinkerer Gizlock"]=13601,["The Abominable Greench"]=13602,["Frostwolf Stable Master"]=13616,["Stormpike Stable Master"]=13617,["Stabled Frostwolf"]=13618,["Strange Snowman"]=13636,["Willow"]=13656,["Noxxious Scion"]=13696,["Cavindra"]=13697,["Keeper Marandis"]=13698,["Selendra"]=13699,["Celebras the Redeemed"]=13716,["Centaur Pariah"]=13717,["The Nameless Prophet"]=13718,["Noxxious Essence"]=13736,["Marandis' Sister"]=13737,["Veng"]=13738,["Maraudos"]=13739,["Magra"]=13740,["Gelk"]=13741,["Kolk"]=13742,["Corrupt Force of Nature"]=13743,["PvP Graveyard Credit Marker"]=13756,["Corporal Teeka Bloodsnarl"]=13776,["Sergeant Durgen Stormpike"]=13777,["PvP Tower Credit Marker"]=13778,["PvP Mine Credit Marker"]=13796,["Mountaineer Boombellow"]=13797,["Jotek"]=13798,["Prospector Stonehewer"]=13816,["Voggah Deathgrip"]=13817,["Burning Blade Nightmare"]=13836,["Captured Stallion"]=13837,["Royal Dreadguard"]=13839,["Warmaster Laggrond"]=13840,["Lieutenant Haggerdin"]=13841,["Frostwolf Ambassador Rokhstrom"]=13842,["Lieutenant Rotimer"]=13843,["Mekgineer Trigger"]=13876,["Scalebeard"]=13896,["Dire Maul Crystal Totem"]=13916,["Izzy Coppergrab"]=13917,["Ravenholdt"]=13936,["Alterac Yeti"]=13959,["Tortured Drake"]=13976,["Blackwing Technician"]=13996,["Chromaggus"]=14020,["Corrupted Red Whelp"]=14022,["Corrupted Green Whelp"]=14023,["Corrupted Blue Whelp"]=14024,["Corrupted Bronze Whelp"]=14025,["Trigger Guse"]=14026,["Trigger Mulverick"]=14027,["Trigger Jeztor"]=14028,["Trigger Ichman"]=14029,["Trigger Slidore"]=14030,["Trigger Vipore"]=14031,["Haggle"]=14041,["Demon Portal"]=14081,["Enraged Felguard"]=14101,["Deeprun Diver"]=14121,["Massive Geyser"]=14122,["Steeljaw Snapper"]=14123,["Ar'lia"]=14143,["RaidMage"]=14162,["Bounty Hunter Kolark"]=14182,["Artilleryman Sheldonore"]=14183,["Najak Hexxen"]=14185,["Ravak Grimtotem"]=14186,["Athramanis"]=14187,["Dirk Swindle"]=14188,["Gravis Slipknot"]=14221,["Araga"]=14222,["Cranky Benj"]=14223,["7:XT"]=14224,["Prince Kellen"]=14225,["Kaskk"]=14226,["Hissperak"]=14227,["Giggler"]=14228,["Accursed Slitherblade"]=14229,["Burgle Eye"]=14230,["Drogoth the Roamer"]=14231,["Dart"]=14232,["Ripscale"]=14233,["Hayoc"]=14234,["The Rot"]=14235,["Lord Angler"]=14236,["Oozeworm"]=14237,["Ironbark the Redeemed"]=14241,["[UNUSED] Sulhasa"]=14242,["Blue Drakonid"]=14261,["Green Drakonid"]=14262,["Bronze Drakonid"]=14263,["Red Drakonid"]=14264,["Black Drakonid"]=14265,["Shanda the Spinner"]=14266,["Emogg the Crusher"]=14267,["Lord Condar"]=14268,["Seeker Aqualon"]=14269,["Squiddic"]=14270,["Ribchaser"]=14271,["Snarlflare"]=14272,["Boulderheart"]=14273,["Tamra Stormpike"]=14275,["Scargil"]=14276,["Lady Zephris"]=14277,["Ro'Bark"]=14278,["Creepthess"]=14279,["Big Samras"]=14280,["Jimmy the Bleeder"]=14281,["Frostwolf Bloodhound"]=14282,["Stormpike Owl"]=14283,["Stormpike Battleguard"]=14284,["Frostwolf Battleguard"]=14285,["Brinna Valanaar"]=14301,["Chromatic Drakonid"]=14302,["Petrified Guardian"]=14303,["Kor'kron Elite"]=14304,["Human Orphan"]=14305,["Eskhandar"]=14306,["Black Drakonid Spawner"]=14307,["Ferra"]=14308,["Red Drakonid Spawner"]=14309,["Green Drakonid Spawner"]=14310,["Bronze Drakonid Spawner"]=14311,["Blue Drakonid Spawner"]=14312,["Guard Fengus"]=14321,["Stomper Kreeg"]=14322,["Guard Slip'kik"]=14323,["Cho'Rush the Observer"]=14324,["Captain Kromcrush"]=14325,["Guard Mol'dar"]=14326,["Lethtendris"]=14327,["Black War Wolf"]=14329,["Black War Raptor"]=14330,["Red Skeletal Warhorse"]=14331,["Black War Steed"]=14332,["Black War Kodo"]=14333,["Black Battlestrider"]=14334,["Black War Ram"]=14335,["Black War Tiger"]=14336,["Field Repair Bot 74A"]=14337,["Knot Thimblejack"]=14338,["Death Howl"]=14339,["Alshirr Banebreath"]=14340,["Ragepaw"]=14342,["Olm the Wise"]=14343,["Mongress"]=14344,["The Ongar"]=14345,["Highlord Demitrian"]=14347,["Earthcaller Franzahl"]=14348,["Pimgib"]=14349,["Hydroling"]=14350,["Gordok Bushwacker"]=14351,["Mizzle the Crafty"]=14353,["Pusillin"]=14354,["Azj'Tordin"]=14355,["Sawfin Frenzy"]=14356,["Lake Thresher"]=14357,["Shen'dralar Ancient"]=14358,["Shen'dralar Wisp"]=14361,["Thornling"]=14362,["Thief Catcher Shadowdelve"]=14363,["Shen'dralar Spirit"]=14364,["Thief Catcher Farmountain"]=14365,["Warpwood Spores"]=14366,["Thief Catcher Thunderbrew"]=14367,["Lorekeeper Lydros"]=14368,["Shen'dralar Zealot"]=14369,["Cadaverous Worm"]=14370,["Shen'dralar Provisioner"]=14371,["Winterfall Ambusher"]=14372,["Sage Korolusk"]=14373,["Scholar Runethorn"]=14374,["Scout Stronghand"]=14375,["Scout Manslayer"]=14376,["Scout Tharr"]=14377,["Huntress Skymane"]=14378,["Huntress Ravenoak"]=14379,["Huntress Leafrunner"]=14380,["Lorekeeper Javon"]=14381,["Lorekeeper Mykos"]=14382,["Lorekeeper Kildrath"]=14383,["Doomguard Minion"]=14385,["Wandering Eye of Kilrogg"]=14386,["Lothos Riftwaker"]=14387,["Rogue Black Drake"]=14388,["Netherwalker"]=14389,["Expeditionary Mountaineer"]=14390,["Overlord Runthak"]=14392,["Expeditionary Priest"]=14393,["Major Mattingly"]=14394,["Griniblix the Spectator"]=14395,["Eye of Immol'thar"]=14396,["Mana Burst"]=14397,["Eldreth Darter"]=14398,["Arcane Torrent"]=14399,["Arcane Feedback"]=14400,["Master Elemental Shaper Krixix"]=14401,["Seeker Cromwell"]=14402,["Seeker Nahr"]=14403,["Seeker Thompson"]=14404,["Brown Prairie Dog"]=14421,["Officer Jaxon"]=14423,["Mirelow"]=14424,["Gnawbone"]=14425,["Harb Foulmountain"]=14426,["Gibblesnik"]=14427,["Uruson"]=14428,["Grimmaw"]=14429,["Duskstalker"]=14430,["Fury Shelda"]=14431,["Threggil"]=14432,["Sludginn"]=14433,["Alarm-o-Bot"]=14434,["Prince Thunderaan"]=14435,["Mor'zul Bloodbringer"]=14436,["Gorzeeki Wildeyes"]=14437,["Officer Pomeroy"]=14438,["Officer Brady"]=14439,["Hunter Sagewind"]=14440,["Hunter Ragetotem"]=14441,["Hunter Thunderhorn"]=14442,["Doomguard Tap Trigger"]=14443,["Orcish Orphan"]=14444,["Lord Captain Wyrmak"]=14445,["Fingat"]=14446,["Gilmorian"]=14447,["Molt Thorn"]=14448,["Blackwing Orb Trigger"]=14449,["Orphan Matron Nightingale"]=14450,["Orphan Matron Battlewail"]=14451,["Enslaved Doomguard Commander"]=14452,["Orb of Domination"]=14453,["The Windreaver"]=14454,["Whirling Invader"]=14455,["Blackwing Guardsman"]=14456,["Princess Tempestria"]=14457,["Watery Invader"]=14458,["Nefarian's Troops"]=14459,["Blazing Invader"]=14460,["Baron Charr"]=14461,["Thundering Invader"]=14462,["Daio the Decrepit"]=14463,["Avalanchion"]=14464,["Alliance Battle Standard"]=14465,["Horde Battle Standard"]=14466,["Kroshius"]=14467,["Niby the Almighty"]=14469,["Impsy"]=14470,["Setis"]=14471,["Gretheer"]=14472,["Lapress"]=14473,["Zora"]=14474,["Rex Ashil"]=14475,["Krellack"]=14476,["Grubthor"]=14477,["Huricanian"]=14478,["Twilight Lord Everun"]=14479,["Alowicious Czervik"]=14480,["Emmithue Smails"]=14481,["Xorothian Imp"]=14482,["Dread Guard"]=14483,["Injured Peasant"]=14484,["Plagued Peasant"]=14485,["Scourge Footsoldier"]=14486,["Gluggle"]=14487,["Roloch"]=14488,["Scourge Archer"]=14489,["Rippa"]=14490,["Kurmokk"]=14491,["Verifonix"]=14492,["Eris Havenfire"]=14494,["Invisible Trigger One"]=14495,["Stormwind Orphan"]=14496,["Shellene"]=14497,["Tosamina"]=14498,["Horde Orphan"]=14499,["J'eevee"]=14500,["Xorothian Dreadsteed"]=14502,["The Cleaner"]=14503,["Dreadsteed Spirit"]=14504,["Dreadsteed"]=14505,["Lord Hel'nurath"]=14506,["High Priest Venoxis"]=14507,["Short John Mithril"]=14508,["High Priest Thekal"]=14509,["High Priestess Mar'li"]=14510,["Shadowed Spirit"]=14511,["Corrupted Spirit"]=14512,["Malicious Spirit"]=14513,["Banal Spirit"]=14514,["High Priestess Arlokk"]=14515,["Death Knight Darkreaver"]=14516,["High Priestess Jeklik"]=14517,["Aspect of Banality"]=14518,["Aspect of Corruption"]=14519,["Aspect of Malice"]=14520,["Aspect of Shadow"]=14521,["Ur'dan"]=14522,["Ulathek"]=14523,["Vartrus the Ancient"]=14524,["Stoma the Ancient"]=14525,["Hastat the Ancient"]=14526,["Simone the Inconspicuous"]=14527,["Precious"]=14528,["Franklin the Friendly"]=14529,["Solenor the Slayer"]=14530,["Artorius the Amiable"]=14531,["Razzashi Venombrood"]=14532,["Simone the Seductress"]=14533,["Klinfran the Crazed"]=14534,["Artorius the Doombringer"]=14535,["Nelson the Nice"]=14536,["Precious the Devourer"]=14538,["Swift Timber Wolf"]=14539,["Swift Brown Wolf"]=14540,["Swift Gray Wolf"]=14541,["Great White Kodo"]=14542,["Swift Olive Raptor"]=14543,["Swift Orange Raptor"]=14544,["Swift Blue Raptor"]=14545,["Swift Brown Ram"]=14546,["Swift White Ram"]=14547,["Swift Gray Ram"]=14548,["Great Brown Kodo"]=14549,["Great Gray Kodo"]=14550,["Swift Yellow Mechanostrider"]=14551,["Swift White Mechanostrider"]=14552,["Swift Green Mechanostrider"]=14553,["Swift Mistsaber"]=14555,["Swift Frostsaber"]=14556,["Swift Dawnsaber"]=14557,["Purple Skeletal Warhorse"]=14558,["Swift Palomino"]=14559,["Swift White Steed"]=14560,["Swift Brown Steed"]=14561,["Swift Red Mechanostrider"]=14563,["Terrordale Spirit"]=14564,["Charger"]=14565,["Ancient Equine Spirit"]=14566,["Derotain Mudsipper"]=14567,["Darkreaver's Fallen Charger"]=14568,["Sergeant Thunderhorn"]=14581,["Ebonroc"]=14601,["Swift Stormsaber"]=14602,["Zapped Shore Strider"]=14603,["Zapped Land Walker"]=14604,["Bone Construct"]=14605,["Overseer Maltorius"]=14621,["Thorium Brotherhood Lookout"]=14622,["Warsong Gulch Battlemaster"]=14623,["Master Smith Burninate"]=14624,["Overseer Oilfist"]=14625,["Taskmaster Scrange"]=14626,["Hansel Heavyhands"]=14627,["Evonice Sootsmoker"]=14628,["Loggerhead Snapjaw"]=14629,["Leatherback Snapjaw"]=14630,["Olive Snapjaw"]=14631,["Hawksbill Snapjaw"]=14632,["Albino Snapjaw"]=14633,["Lookout Captain Lolo Longstriker"]=14634,["Sleepy Dark Iron Worker"]=14635,["Chambermaid Pillaclencher"]=14636,["Zorbin Fandazzle"]=14637,["Zapped Wave Strider"]=14638,["Zapped Deep Strider"]=14639,["Zapped Cliff Giant"]=14640,["Warsong Gulch Herald"]=14645,["Stratholme Trigger"]=14646,["Stinglasher"]=14661,["Corrupted Fire Nova Totem V"]=14662,["Corrupted Stoneskin Totem VI"]=14663,["Corrupted Healing Stream Totem V"]=14664,["Corrupted Windfury Totem III"]=14666,["Corrupted Totem"]=14667,["Corrupted Infernal"]=14668,["Sever"]=14682,["Balzaphon"]=14684,["Lady Falther'ess"]=14686,["Prince Sandoval"]=14688,["Revanchion"]=14690,["Scorn"]=14693,["Lord Blackwood"]=14695,["Lumbering Horror"]=14697,["Silverwing Elite"]=14715,["Horde Elite"]=14717,["Horde Laborer"]=14718,["High Overlord Saurfang"]=14720,["Field Marshal Afrasiabi"]=14721,["Clavicus Knavingham"]=14722,["Mistina Steelshield"]=14723,["Bubulo Acerbus"]=14724,["Raedon Duskstriker"]=14725,["Rashona Straglash"]=14726,["Vehena"]=14727,["Rumstag Proudstrider"]=14728,["Ralston Farnsley"]=14729,["Revantusk Watcher"]=14730,["Lard"]=14731,["PvP CTF Credit Marker"]=14732,["Sentinel Farsong"]=14733,["Revantusk Drummer"]=14734,["Primal Torntusk"]=14736,["Smith Slagtree"]=14737,["Otho Moji'ko"]=14738,["Mystic Yayo'jin"]=14739,["Katoom the Angler"]=14740,["Huntsman Markhor"]=14741,["Zap Farflinger"]=14742,["Jhordy Lapforge"]=14743,["Frostwolf Howler"]=14744,["Stormpike Battle Charger"]=14745,["Vilebranch Kidnapper"]=14748,["Gurubashi Bat Rider"]=14750,["Frostwolf Battle Standard"]=14751,["Stormpike Battle Standard"]=14752,["Illiyana Moonblaze"]=14753,["Kelm Hargunth"]=14754,["Tiny Green Dragon"]=14755,["Tiny Red Dragon"]=14756,["Elder Torntusk"]=14757,["Zul'Gurub Trigger"]=14758,["Creeping Doom"]=14761,["Dun Baldar North Marshal"]=14762,["Dun Baldar South Marshal"]=14763,["Icewing Marshal"]=14764,["Stonehearth Marshal"]=14765,["Iceblood Marshal"]=14766,["Tower Point Marshal"]=14767,["East Frostwolf Marshal"]=14768,["West Frostwolf Marshal"]=14769,["Dun Baldar North Warmaster"]=14770,["Dun Baldar South Warmaster"]=14771,["East Frostwolf Warmaster"]=14772,["Iceblood Warmaster"]=14773,["Icewing Warmaster"]=14774,["Stonehearth Warmaster"]=14775,["Tower Point Warmaster"]=14776,["West Frostwolf Warmaster"]=14777,["Captain Shatterskull"]=14781,["Razzashi Raptor"]=14821,["Sayge"]=14822,["Silas Darkmoon"]=14823,["Withered Mistress"]=14825,["Sacrificed Troll"]=14826,["Burth"]=14827,["Gelvas Grimegate"]=14828,["Yebb Neblegear"]=14829,["Unkillable Test Dummy 60 Warrior"]=14830,["Kerri Hicks"]=14832,["Chronos"]=14833,["Hakkar"]=14834,["Rinling"]=14841,["Melnan Darkstone"]=14842,["Kruban Darkblade"]=14843,["Sylannia"]=14844,["Stamp Thunderhorn"]=14845,["Lhara"]=14846,["Professor Thaddeus Paleo"]=14847,["Herald"]=14848,["Darkmoon Carnie"]=14849,["Gruk"]=14850,["Erk"]=14857,["Guard Taruc"]=14859,["Flik"]=14860,["Blood Steward of Kirtonos"]=14861,["Emissary Roman'khan"]=14862,["Khaz Modan Ram"]=14864,["Felinni"]=14865,["Flik's Frog"]=14866,["Jubjub"]=14867,["Hornsley"]=14868,["Pygmy Cockatrice"]=14869,["Morja"]=14871,["Trok"]=14872,["Okla"]=14873,["Karu"]=14874,["Molthor"]=14875,["Zandalar Headshrinker"]=14876,["Jubling"]=14878,["Arathi Basin Battlemaster"]=14879,["Razzashi Skitterer"]=14880,["Spider"]=14881,["Atal'ai Mistress"]=14882,["Voodoo Slave"]=14883,["Parasitic Serpent"]=14884,["Jonathan LeCraft"]=14885,["Ysondre"]=14887,["Lethon"]=14888,["Emeriss"]=14889,["Taerar"]=14890,["Fang"]=14892,["Guard Kurall"]=14893,["Swarm of bees"]=14894,["Peon"]=14901,["Jin'rokh the Breaker"]=14902,["Al'tabim the All-Seeing"]=14903,["Maywiki of Zuldazar"]=14904,["Falthir the Sightless"]=14905,["Mogg"]=14908,["Pooka"]=14909,["Exzhal"]=14910,["Zandalar Enforcer"]=14911,["Captured Hakkari Zealot"]=14912,["Rin'wosho the Trader"]=14921,["Kartra Bloodsnarl"]=14942,["Guse's War Rider"]=14943,["Jeztor's War Rider"]=14944,["Mulverick's War Rider"]=14945,["Slidore's Gryphon"]=14946,["Ichman's Gryphon"]=14947,["Vipore's Gryphon"]=14948,["Mirvyna Jinglepocket"]=14961,["Dillord Copperpinch"]=14962,["Gapp Jinglepocket"]=14963,["Hecht Copperpinch"]=14964,["Frenzied Bloodseeker Bat"]=14965,["Elfarran"]=14981,["Lylandris"]=14982,["Field Marshal Oslight"]=14983,["Sergeant Maclear"]=14984,["Shade of Jin'do"]=14986,["Powerful Healing Ward"]=14987,["Ohgan"]=14988,["Poisonous Cloud"]=14989,["Defilers Envoy"]=14990,["League of Arathor Emissary"]=14991,["Zandalarian Event Generator"]=14994,["Deze Snowbane"]=15006,["Sir Malory Wheeler"]=15007,["Lady Hoteshem"]=15008,["Voodoo Spirit"]=15009,["Jungle Toad"]=15010,["Wagner Hammerstrike"]=15011,["Javnir Nashak"]=15012,["Deathmaster Dwire"]=15021,["Deathstalker Mortis"]=15022,["Spawn of Mar'li"]=15041,["Zanza the Restless"]=15042,["Zulian Crocolisk"]=15043,["Arathi Farmer"]=15045,["Forsaken Farmer"]=15046,["Gurubashi"]=15047,["Spirit of Jin'do"]=15061,["Arathi Lumberjack"]=15062,["Arathi Blacksmith"]=15063,["Forsaken Blacksmith"]=15064,["Lady"]=15065,["Cleo"]=15066,["Zulian Stalker"]=15067,["Zulian Guardian"]=15068,["Heart of Hakkar"]=15069,["Vinchaxa"]=15070,["Underfoot"]=15071,["Spike"]=15072,["Pat's Hellfire Guy"]=15073,["Arathi Miner"]=15074,["Forsaken Miner"]=15075,["Zandalarian Emissary"]=15076,["Riggle Bassbait"]=15077,["Jang"]=15078,["Fishbot 5000"]=15079,["Servant of the Hand"]=15080,["Gri'lek"]=15082,["Hazza'rah"]=15083,["Renataki"]=15084,["Wushoolay"]=15085,["Arathi Stablehand"]=15086,["Forsaken Stablehand"]=15087,["Booty Bay Elite"]=15088,["Forsaken Lumberjack"]=15089,["Swift Razzashi Raptor"]=15090,["Zul'Gurub Panther Trigger"]=15091,["Zulian Prowler"]=15101,["Silverwing Emissary"]=15102,["Stormpike Emissary"]=15103,["Swift Zulian Tiger"]=15104,["Warsong Envoy"]=15105,["Frostwolf Envoy"]=15106,["Arathi Horse"]=15107,["Forsaken Horse"]=15108,["Mad Servant"]=15111,["Brain Wash Totem"]=15112,["Honored Hero"]=15113,["Gahz'ranka"]=15114,["Honored Ancestor"]=15115,["Grinkle"]=15116,["Chained Spirit"]=15117,["Barrus"]=15119,["Gahz'ranka Dead"]=15122,["Targot Jinglepocket"]=15124,["Kosco Copperpinch"]=15125,["Rutherford Twing"]=15126,["Samuel Hawke"]=15127,["Defiler Elite"]=15128,["League of Arathor Elite"]=15130,["Qeeju"]=15131,["Hammerfall Elite"]=15136,["Menethil Elite"]=15137,["Silverpine Elite"]=15138,["Pat's Splash Guy"]=15140,["Portal of Madness"]=15141,["Mad Voidwalker"]=15146,["Scarlet Inquisitor"]=15162,["Nightmare Illusion"]=15163,["Mulgore Trigger"]=15164,["Haughty Modiste"]=15165,["Vile Scarab"]=15168,["Ralo'shan the Eternal Watcher"]=15169,["Rutgar Glyphshaper"]=15170,["Frankal Stonebridge"]=15171,["Glibb"]=15172,["Calandrath"]=15174,["Khur Hornstriker"]=15175,["Vargus"]=15176,["Cloud Skydancer"]=15177,["Runk Windtamer"]=15178,["Mishta"]=15179,["Baristolth of the Shifting Sands"]=15180,["Commander Mar'alith"]=15181,["Vish Kozus"]=15182,["Geologist Larksbane"]=15183,["Cenarion Hold Infantry"]=15184,["Brood of Nozdormu"]=15185,["Murky"]=15186,["Cenarion Emissary Jademoon"]=15187,["Cenarion Emissary Blackhoof"]=15188,["Beetix Ficklespragg"]=15189,["Noggle Ficklespragg"]=15190,["Windcaller Proudhorn"]=15191,["Anachronos"]=15192,["The Banshee Queen"]=15193,["Hermit Ortell"]=15194,["Wickerman Guardian"]=15195,["Deathclasp"]=15196,["Darkcaller Yanka"]=15197,["Blackwing"]=15198,["Sergeant Hartman"]=15199,["Twilight Keeper Mayna"]=15200,["Twilight Flamereaver"]=15201,["Vyral the Vile"]=15202,["Prince Skaldrenox"]=15203,["High Marshal Whirlaxis"]=15204,["Baron Kazum"]=15205,["The Duke of Cynders"]=15206,["The Duke of Fathoms"]=15207,["The Duke of Shards"]=15208,["Crimson Templar"]=15209,["Azure Templar"]=15211,["Hoary Templar"]=15212,["Twilight Overlord"]=15213,["Invisible Stalker"]=15214,["Mistress Natalia Mar'alith"]=15215,["Darkmoon Faire Cannon"]=15218,["The Duke of Zephyrs"]=15220,["Frankal Invisible Trigger"]=15221,["Rutgar Invisible Trigger"]=15222,["Dream Fog"]=15224,["Vekniss Soldier"]=15229,["Vekniss Warrior"]=15230,["Vekniss Guardian"]=15233,["Vekniss Stinger"]=15235,["Vekniss Wasp"]=15236,["Vekniss Hive Crawler"]=15240,["Gryphon Rider Guard"]=15241,["Bat Rider Guard"]=15242,["Qiraji Mindslayer"]=15246,["Qiraji Brainwasher"]=15247,["Qiraji Lasher"]=15249,["Qiraji Slayer"]=15250,["Qiraji Champion"]=15252,["Demented Druid Spirit"]=15260,["Spirit Shade"]=15261,["Obsidian Eradicator"]=15262,["The Prophet Skeram"]=15263,["Anubisath Sentinel"]=15264,["Huum Wildmane"]=15270,["Tender"]=15271,["Arcane Wraith"]=15273,["Mana Wyrm"]=15274,["Emperor Vek'nilash"]=15275,["Emperor Vek'lor"]=15276,["Anubisath Defender"]=15277,["Magistrix Erona"]=15278,["Julia Sunstriker"]=15279,["Jesthenis Sunstriker"]=15280,["Lanthan Perilon"]=15281,["Aurel Goldleaf"]=15282,["Summoner Teli'Larien"]=15283,["Matron Arena"]=15284,["Pathstalker Kariel"]=15285,["Xil'xix"]=15286,["Shara Sunwing"]=15287,["Aluntir"]=15288,["Raelis Dawnstar"]=15289,["Arakis"]=15290,["Jainthess Thelryn"]=15291,["Faraden Thelryn"]=15292,["Aendel Windspear"]=15293,["Feral Tender"]=15294,["Well Watcher Solanian"]=15295,["Arcanist Ithanas"]=15296,["Arcanist Helion"]=15297,["Tainted Arcane Wraith"]=15298,["Viscidus"]=15299,["Vekniss Drone"]=15300,["Outrunner Alarion"]=15301,["Shade of Taerar"]=15302,["Maxima Blastenheimer"]=15303,["Ancient Mana Spring Totem"]=15304,["Lord Skwol"]=15305,["Bor Wildmane"]=15306,["Earthen Templar"]=15307,["Twilight Prophet"]=15308,["Spoops"]=15309,["Jesper"]=15310,["Anubisath Warder"]=15311,["Obsidian Nullifier"]=15312,["Moonkin (Druid - Tauren)"]=15314,["Mylini Frostmoon"]=15315,["Qiraji Scarab"]=15316,["Qiraji Scorpion"]=15317,["Hive'Zara Drone"]=15318,["Hive'Zara Collector"]=15319,["Hive'Zara Soldier"]=15320,["Hive'Zara Sandstalker"]=15323,["Qiraji Gladiator"]=15324,["Hive'Zara Wasp"]=15325,["Hive'Zara Stinger"]=15327,["Steam Tank"]=15328,["Silicate Feeder"]=15333,["Giant Eye Tentacle"]=15334,["Flesh Hunter"]=15335,["Hive'Zara Tail Lasher"]=15336,["Obsidian Destroyer"]=15338,["Ossirian the Unscarred"]=15339,["Moam"]=15340,["General Rajaxx"]=15341,["Qiraji Swarmguard"]=15343,["Swarmguard Needler"]=15344,["Kurinnaxx"]=15348,["Horde Warbringer"]=15350,["Alliance Brigadier General"]=15351,["Greater Earth Elemental"]=15352,["Katrina Shimmerstar"]=15353,["Rachelle Gothena"]=15354,["Anubisath Guardian"]=15355,["Blue Baby Murloc"]=15356,["Purple Baby Murloc"]=15357,["Lurky"]=15358,["Pink Baby Murloc"]=15359,["Green Baby Murloc"]=15360,["Murki"]=15361,["Malfurion Stormrage"]=15362,["Totem of Spirits"]=15363,["Springpaw Cub"]=15366,["Felendren the Banished"]=15367,["Tonk Mine"]=15368,["Ayamiss the Hunter"]=15369,["Buru the Gorger"]=15370,["Sunstrider Guardian"]=15371,["Springpaw Lynx"]=15372,["Merithra of the Dream"]=15378,["Caelestrasz"]=15379,["Arygos"]=15380,["Anachronos the Ancient"]=15381,["Fandral Staghelm"]=15382,["Sergeant Stonebrow"]=15383,["OLDWorld Trigger (DO NOT DELETE)"]=15384,["Colonel Zerran"]=15385,["Major Yeggeth"]=15386,["Qiraji Warrior"]=15387,["Major Pakkon"]=15388,["Captain Drenn"]=15389,["Captain Xurrem"]=15390,["Captain Qeez"]=15391,["Captain Tuubid"]=15392,["[UNUSED] Ruins Qiraji Gladiator Named 7"]=15393,["Nafien"]=15395,["Marniel Amberlight"]=15397,["Larianna Riverwind"]=15398,["Lieutenant Dawnrunner"]=15399,["Arathel Sunforge"]=15400,["Ley-Keeper Velania"]=15401,["Apprentice Mirveda"]=15402,["Aeldon Sunbrand"]=15403,["Velendris Whitemorn"]=15404,["Ley-Keeper Caidanis"]=15405,["Ven'jashi"]=15406,["Chieftain Zul'Marosh"]=15407,["Spearcrafter Otembe"]=15408,["Old Whitebark"]=15409,["Qiraji Wasp"]=15414,["Southshore Stink Bomb Counter"]=15415,["Ranger Jaela"]=15416,["Velan Brightoak"]=15417,["Magister Jaronis"]=15418,["Kania"]=15419,["Prospector Anvilward"]=15420,["Qiraji Drone"]=15421,["Qiraji Tank"]=15422,["Kaldorei Infantry"]=15423,["Anubisath Conqueror"]=15424,["Ahn'Qiraj Trigger"]=15426,["Sand Vortex"]=15428,["Disgusting Oozeling"]=15429,["Earth Elemental Totem"]=15430,["Corporal Carnes"]=15431,["Dame Twinbraid"]=15432,["Innkeeper Delaniel"]=15433,["Private Draxlegauge"]=15434,["Master Nightsong"]=15437,["Greater Fire Elemental"]=15438,["Fire Elemental Totem"]=15439,["Captain Blackanvil"]=15440,["Ironforge Brigade Rifleman"]=15441,["Ironforge Brigade Footman"]=15442,["Janela Stouthammer"]=15443,["Arcanist Nozzlespring"]=15444,["Sergeant Major Germaine"]=15445,["Bonnie Stoneflayer"]=15446,["Wrath of Air Totem"]=15447,["Private Porter"]=15448,["Hive'Zora Abomination"]=15449,["Marta Finespindle"]=15450,["Sentinel Silversky"]=15451,["Nurse Stonefield"]=15452,["Keeper Moonshade"]=15453,["Anachronos Quest Trigger Invisible"]=15454,["Slicky Gastronome"]=15455,["Sarah Sadwhistle"]=15456,["Huntress Swiftriver"]=15457,["Commander Stronghammer"]=15458,["Miner Cromwell"]=15459,["Grunt Maug"]=15460,["Shrieker Scarab"]=15461,["Spitting Scarab"]=15462,["Grace of Air Totem III"]=15463,["Strength of Earth Totem V"]=15464,["Minion of Omen"]=15466,["Omen"]=15467,["Sunstrider Mana Tap Counter"]=15468,["Senior Sergeant T'kelah"]=15469,["Stoneskin Totem VII"]=15470,["Lieutenant General Andorov"]=15471,["Kaldorei Elite"]=15473,["Stoneskin Totem VIII"]=15474,["Beetle"]=15475,["Scorpion"]=15476,["Herbalist Proudfeather"]=15477,["Stoneclaw Totem VII"]=15478,["Strength of Earth Totem VI"]=15479,["Searing Totem VII"]=15480,["Spirit of Azuregos"]=15481,["Fire Nova Totem VI"]=15482,["Magma Totem V"]=15484,["Flametongue Totem V"]=15485,["Frost Resistance Totem IV"]=15486,["Fire Resistance Totem IV"]=15487,["Healing Stream Totem VI"]=15488,["Mana Spring Totem V"]=15489,["Nature Resistance Totem IV"]=15490,["Eranikus Tyrant of the Dream"]=15491,["Windwall Totem IV"]=15492,["Marsilla Dawnstar"]=15493,["Yasmine Teli'Larien"]=15494,["Nighthaven Defender"]=15495,["Windfury Totem IV"]=15496,["Windfury Totem V"]=15497,["Windcaller Yessendra"]=15498,["Warden Haro"]=15499,["Keyl Swiftclaw"]=15500,["Aleinia"]=15501,["Andorgos"]=15502,["Kandrostrasz"]=15503,["Vethsera"]=15504,["Canal Frenzy"]=15505,["Batrider Pele'keiki"]=15508,["Princess Huhuran"]=15509,["Fankriss the Unyielding"]=15510,["Lord Kri"]=15511,["Apothecary Jezel"]=15512,["Ranger Sallina"]=15513,["Buru Egg"]=15514,["Skinner Jamani"]=15515,["Battleguard Sartura"]=15516,["Ouro"]=15517,["O'Reily"]=15520,["Hive'Zara Hatchling"]=15521,["Sergeant Umala"]=15522,["Temporary Reindeer"]=15524,["Doctor Serratus"]=15525,["Meridith the Mermaiden"]=15526,["Mana Fiend"]=15527,["Healer Longrunner"]=15528,["Lady Callow"]=15529,["Stoneguard Clayhoof"]=15532,["Bloodguard Rawtar"]=15533,["Fisherman Lin'do"]=15534,["Chief Sharpclaw"]=15535,["Anubisath Warrior"]=15537,["Anubisath Swarmguard"]=15538,["General Zog"]=15539,["Windcaller Kaldon"]=15540,["Twilight Marauder Morna"]=15541,["Twilight Marauder"]=15542,["Princess Yauj"]=15543,["Vem"]=15544,["Cenarion Outrider"]=15545,["Hive'Zara Swarmer"]=15546,["Spectral Charger"]=15547,["Spectral Stallion"]=15548,["Elder Morndeep"]=15549,["Attumen the Huntsman"]=15550,["Spectral Stable Hand"]=15551,["Doctor Weavil"]=15552,["Doctor Weavil's Flying Machine"]=15553,["Number Two"]=15554,["Hive'Zara Larva"]=15555,["Elder Splitrock"]=15556,["Elder Rumblerock"]=15557,["Elder Silvervein"]=15558,["Elder Highpeak"]=15559,["Elder Stonefort"]=15560,["Elder Obsidian"]=15561,["Elder Hammershout"]=15562,["Elder Bellowrage"]=15563,["Elder Darkcore"]=15564,["Elder Stormbrow"]=15565,["Elder Snowcrown"]=15566,["Elder Ironband"]=15567,["Elder Graveborn"]=15568,["Elder Goldwell"]=15569,["Elder Primestone"]=15570,["Maws"]=15571,["Elder Runetotem"]=15572,["Elder Ragetotem"]=15573,["Elder Stonespire"]=15574,["Elder Bloodhoof"]=15575,["Elder Winterhoof"]=15576,["Elder Skychaser"]=15577,["Elder Wildmane"]=15578,["Elder Darkhorn"]=15579,["Elder Ezra Wheathoof"]=15580,["Elder Grimtotem"]=15581,["Elder Windtotem"]=15582,["Elder Thunderhorn"]=15583,["Elder Skyseer"]=15584,["Elder Dawnstrider"]=15585,["Elder Dreamseer"]=15586,["Elder Mistwalker"]=15587,["Elder High Mountain"]=15588,["Eye of C'Thun"]=15589,["Ossirian Crystal Trigger"]=15590,["Minion of Weavil"]=15591,["Elder Windrun"]=15592,["Elder Starsong"]=15593,["Elder Moonstrike"]=15594,["Elder Bladeleaf"]=15595,["Elder Starglade"]=15596,["Elder Moonwarden"]=15597,["Elder Bladeswift"]=15598,["Elder Bladesing"]=15599,["Elder Skygleam"]=15600,["Elder Starweave"]=15601,["Elder Meadowrun"]=15602,["Elder Nightwind"]=15603,["Elder Morningdew"]=15604,["Elder Riversong"]=15605,["Elder Brightspear"]=15606,["Elder Farwhisper"]=15607,["Medivh"]=15608,["Cenarion Scout Landion"]=15609,["Cenarion Scout Azenel"]=15610,["Cenarion Scout Jalia"]=15611,["Krug Skullsplit"]=15612,["Merok Longstride"]=15613,["J.D. Shadesong"]=15614,["Shadow Priestess Shai"]=15615,["Orgrimmar Legion Grunt"]=15616,["Orgrimmar Legion Axe Thrower"]=15617,["Hive'Regal Hunter-Killer"]=15620,["Yauj Brood"]=15621,["Vekniss Borer"]=15622,["Xandivious"]=15623,["Forest Wisp"]=15624,["Twilight Corrupter"]=15625,["Eranikus the Redeemed"]=15628,["Nightmare Phantasm"]=15629,["Spawn of Fankriss"]=15630,["Spotlight"]=15631,["Tyrande"]=15633,["Priestess of the Moon"]=15634,["Eversong Tender"]=15635,["Eversong Green Keeper"]=15636,["Withered Green Keeper"]=15637,["Arcane Patroller"]=15638,["Amani Axe Thrower"]=15641,["Amani Shadowpriest"]=15642,["Amani Berserker"]=15643,["Wretched Urchin"]=15644,["Wretched Thug"]=15645,["Mana Stalker"]=15647,["Manawraith"]=15648,["Feral Dragonhawk Hatchling"]=15649,["Crazed Dragonhawk"]=15650,["Springpaw Stalker"]=15651,["Elder Springpaw"]=15652,["Plaguebone Pillager"]=15654,["Rotlimb Cannibal"]=15655,["Angershade"]=15656,["Darkwraith"]=15657,["Rotlimb Marauder"]=15658,["Auctioneer Jaxon"]=15659,["Baby Shark"]=15661,["War Effort Volunteer"]=15663,["Metzen the Reindeer"]=15664,["Mounted Reindeer"]=15665,["Blue Qiraji Battle Tank"]=15666,["Glob of Viscidus"]=15667,["Grimscale Murloc"]=15668,["Grimscale Oracle"]=15669,["Grimscale Forager"]=15670,["Auctioneer Stockton"]=15675,["Auctioneer Yarly"]=15676,["Auctioneer Graves"]=15677,["Auctioneer Silva'las"]=15678,["Auctioneer Cazarez"]=15679,["Auctioneer O'reely"]=15681,["Auctioneer Cain"]=15682,["Auctioneer Naxxremis"]=15683,["Auctioneer Tricket"]=15684,["Southsea Kidnapper"]=15685,["Auctioneer Rhyker"]=15686,["Moroes"]=15687,["Terestian Illhoof"]=15688,["Netherspite"]=15689,["Prince Malchezaar"]=15690,["The Curator"]=15691,["Dark Iron Kidnapper"]=15692,["Jonathan the Revelator"]=15693,["Stormwind Reveler"]=15694,["Vek Twins Trigger"]=15695,["War Effort Recruit"]=15696,["Father Winter's Helper"]=15698,["Tranquil Mechanical Yeti"]=15699,["Warlord Gorchuk"]=15700,["Field Marshal Snowfall"]=15701,["Senior Sergeant Taiga"]=15702,["Senior Sergeant Grimsford"]=15703,["Senior Sergeant Kai'jin"]=15704,["Winter's Little Helper"]=15705,["Winter Reindeer"]=15706,["Master Sergeant Fizzlebolt"]=15707,["Master Sergeant Maclure"]=15708,["Master Sergeant Moonshadow"]=15709,["Tiny Snowman"]=15710,["Black Qiraji Battle Tank"]=15711,["Dirt Mound"]=15712,["Yellow Qiraji Battle Tank"]=15714,["Green Qiraji Battle Tank"]=15715,["Red Qiraji Battle Tank"]=15716,["Ouro Scarab"]=15718,["Thunder Bluff Reveler"]=15719,["Timbermaw Ancestor"]=15720,["Mechanical Greench"]=15721,["Squire Leoren Mal'derath"]=15722,["Booty Bay Reveler"]=15723,["Drunken Bruiser"]=15724,["Claw Tentacle"]=15725,["Eye Tentacle"]=15726,["C'Thun"]=15727,["Giant Claw Tentacle"]=15728,["Pat's Snowcloud Guy"]=15730,["Darnassus Commendation Officer"]=15731,["Wonderform Operator"]=15732,["Gnomeregan Commendation Officer"]=15733,["Ironforge Commendation Officer"]=15734,["Stormwind Commendation Officer"]=15735,["Orgrimmar Commendation Officer"]=15736,["Darkspear Commendation Officer"]=15737,["Undercity Commendation Officer"]=15738,["Thunder Bluff Commendation Officer"]=15739,["Colossus of Zora"]=15740,["Colossus of Regal"]=15741,["Colossus of Ashi"]=15742,["Colossal Anubisath Warbringer"]=15743,["Imperial Qiraji Destroyer"]=15744,["Greatfather Winter's Helper"]=15745,["Great-father Winter's Helper"]=15746,["Qiraji Captain"]=15747,["Lesser Anubisath Warbringer"]=15748,["Lesser Silithid Flayer"]=15749,["Qiraji Major"]=15750,["Anubisath Warbringer"]=15751,["Silithid Flayer"]=15752,["Qiraji Brigadier General"]=15753,["Greater Anubisath Warbringer"]=15754,["Greater Silithid Flayer"]=15756,["Qiraji Lieutenant General"]=15757,["Supreme Anubisath Warbringer"]=15758,["Supreme Silithid Flayer"]=15759,["Winter Reveler"]=15760,["Officer Vu'Shalay"]=15761,["Officer Lunalight"]=15762,["Officer Porterhouse"]=15763,["Officer Ironbeard"]=15764,["Officer Redblade"]=15765,["Officer Maloof"]=15766,["Officer Thunderstrider"]=15767,["Officer Gothena"]=15768,["Resonating Crystal"]=15769,["Greater Resonating Crystal"]=15770,["Major Resonating Crystal"]=15771,["Mouth Tentacle Mount Visual"]=15778,["Human Male Winter Reveler"]=15780,["Human Female Winter Reveler"]=15781,["Goblin Female Winter Reveler"]=15787,["Colossus Researcher Sophia"]=15797,["Colossus Researcher Nestor"]=15798,["Colossus Researcher Eazel"]=15799,["Exit Trigger"]=15800,["GONG BOY DND DNR"]=15801,["Flesh Tentacle"]=15802,["Tranquil Air Totem"]=15803,["Lesser Resonating Crystal"]=15804,["Minor Resonating Crystal"]=15805,["Qiraji Lieutenant"]=15806,["Minor Anubisath Warbringer"]=15807,["Minor Silithid Flayer"]=15808,["Eroded Anubisath Warbringer"]=15810,["Faltering Silithid Flayer"]=15811,["Qiraji Officer"]=15812,["Qiraji Officer Zod"]=15813,["Qiraji Lieutenant Jo-rel"]=15814,["Qiraji Captain Ka'ark"]=15815,["Qiraji Major He'al-ie"]=15816,["Qiraji Brigadier General Pax-lish"]=15817,["Lieutenant General Nokhor"]=15818,["Might of Kalimdor Grunt"]=15839,["Might of Kalimdor Sergeant"]=15840,["Might of Kalimdor Lieutenant"]=15841,["Might of Kalimdor Mage"]=15842,["Might of Kalimdor Priest"]=15843,["Might of Kalimdor Restorer"]=15844,["Might of Kalimdor Captain"]=15845,["Might of Kalimdor Archer"]=15846,["Might of Kalimdor Shaman"]=15847,["Might of Kalimdor Infantry"]=15848,["Might of Kalimdor Druid"]=15849,["Might of Kalimdor Skirmisher"]=15850,["Might of Kalimdor Marshal"]=15851,["Orgrimmar Elite Shieldguard"]=15852,["Orgrimmar Elite Infantryman"]=15853,["Orgrimmar Elite Cavalryman"]=15854,["Tauren Rifleman"]=15855,["Tauren Primalist"]=15856,["Stormwind Cavalryman"]=15857,["Stormwind Infantry"]=15858,["Stormwind Archmage"]=15859,["Kaldorei Marksman"]=15860,["Ironforge Infantryman"]=15861,["Ironforge Cavalryman"]=15862,["Darkspear Shaman"]=15863,["Valadar Starsong"]=15864,["Might of Kalimdor Major"]=15865,["Commander Lynore Windstryke"]=15866,["Might of Kalimdor Archmage"]=15867,["Highlord Leoric Von Zeldig"]=15868,["Malagav the Tactician"]=15869,["Duke August Foehammer"]=15870,["Elder Bronzebeard"]=15871,["Pat's Firework Cluster Guy (BLUE)"]=15872,["Pat's Firework Cluster Guy (RED)"]=15873,["Pat's Firework Cluster Guy (GREEN)"]=15874,["Warcaller Finster"]=15878,["Pat's Firework Guy - BLUE"]=15879,["Pat's Firework Guy - GREEN"]=15880,["Pat's Firework Guy - RED"]=15882,["Pat's Firework Guy - YELLOW"]=15883,["Pat's Firework Guy - WHITE"]=15884,["Pat's Firework Guy - BLUE BIG"]=15885,["Pat's Firework Guy - GREEN BIG"]=15886,["Pat's Firework Guy - PURPLE BIG"]=15887,["Pat's Firework Guy - RED BIG"]=15888,["Pat's Firework Guy - WHITE BIG"]=15889,["Pat's Firework Guy - YELLOW BIG"]=15890,["Lunar Festival Herald"]=15891,["Lunar Festival Emissary"]=15892,["Lunar Firework Credit Marker"]=15893,["Lunar Cluster Credit Marker"]=15894,["Lunar Festival Harbinger"]=15895,["C'Thun Portal"]=15896,["Large Spotlight"]=15897,["Lunar Festival Vendor"]=15898,["Vanquished Tentacle"]=15901,["Giant Spotlight"]=15902,["Sergeant Carnes"]=15903,["Tentacle Portal"]=15904,["Darnassus Reveler"]=15905,["Ironforge Reveler"]=15906,["Undercity Reveler"]=15907,["Orgrimmar Reveler"]=15908,["Fariel Starsong"]=15909,["Giant Tentacle Portal"]=15910,["Pat's Firework Cluster Guy (BLUE BIG)"]=15911,["Pat's Firework Cluster Guy (GREEN BIG)"]=15912,["Pat's Firework Cluster Guy (RED BIG)"]=15914,["Lunar Festival Reveler"]=15917,["Pat's Firework Cluster Guy (ELUNE)"]=15918,["Jade Owl"]=15919,["Hathvelion Sungaze"]=15920,["Captain Kelisendra"]=15921,["Golden Hare"]=15923,["Apprentice Loralthalis"]=15924,["Toxic Slime"]=15925,["Black Pearl Panther"]=15926,["Truesilver Crab"]=15927,["Thaddius"]=15928,["Stalagg"]=15929,["Feugen"]=15930,["Grobbulus"]=15931,["Gluth"]=15932,["Poison Cloud"]=15933,["Hive'Zara Hornet"]=15934,["Truesilver Boar"]=15935,["Heigan the Unclean"]=15936,["Mmmrrrggglll"]=15937,["Eversong Ranger"]=15938,["Ranger Degolien"]=15939,["Ranger Selron"]=15940,["Apprentice Ralen"]=15941,["Ranger Sareyn"]=15942,["Ruby Serpent"]=15944,["Apprentice Meledor"]=15945,["Apprentice Veya"]=15946,["Emerald Owl"]=15948,["Thaelis the Hungerer"]=15949,["Grimscale Seer"]=15950,["Magister Duskwither"]=15951,["Maexxna"]=15952,["Grand Widow Faerlina"]=15953,["Noth the Plaguebringer"]=15954,["Black Diamond Crab"]=15955,["Anub'Rekhan"]=15956,["Ouro Spawner"]=15957,["Gharsul the Remorseless"]=15958,["Dark Iron Scorpid"]=15959,["Lunar Festival Sentinel"]=15961,["Vekniss Hatchling"]=15962,["The Master's Eye"]=15963,["Buru Egg Trigger"]=15964,["Duskwither Apprentice"]=15965,["Mana Serpent"]=15966,["Ether Fiend"]=15967,["Darnassian Scout"]=15968,["Groundskeeper Wyllithen"]=15969,["Instructor Antheol"]=15970,["Silvermoon Apprentice"]=15971,["Alterac Valley Battlemaster"]=15972,["Dread Creeper"]=15974,["Carrion Spinner"]=15975,["Venom Stalker"]=15976,["Poisonous Skitterer"]=15977,["Crypt Reaver"]=15978,["Tomb Horror"]=15979,["Naxxramas Cultist"]=15980,["Naxxramas Acolyte"]=15981,["Sartura's Royal Guard"]=15984,["Sapphiron"]=15989,["Kel'Thuzad"]=15990,["Lady Dena Kennedy"]=15991,["Aldris Fourclouds"]=16001,["Colara Dean"]=16002,["Deathguard Tor"]=16003,["Elenia Haydon"]=16004,["Lieutenant Jocryn Heldric"]=16005,["InCombat Trigger"]=16006,["Orok Deathbane"]=16007,["Temma of the Wells"]=16008,["Tormek Stoneriver"]=16009,["Loatheb"]=16011,["Mokvar"]=16012,["Deliana"]=16013,["Mux Manascrambler"]=16014,["Vi'el"]=16015,["Anthion Harmon"]=16016,["Patchwork Golem"]=16017,["Bile Retcher"]=16018,["Boorana Thunderhoof"]=16019,["Mad Scientist"]=16020,["Living Monstrosity"]=16021,["Surgical Assistant"]=16022,["Embalming Slime"]=16024,["Stitched Giant"]=16025,["Living Poison"]=16027,["Patchwerk"]=16028,["Sludge Belcher"]=16029,["Maggot"]=16030,["Ysida Harmon"]=16031,["Falrin Treeshaper"]=16032,["Bodley"]=16033,["Plague Beast"]=16034,["Frenzied Bat"]=16036,["Plagued Bat"]=16037,["Lord Valthalak"]=16042,["Magma Lord Bokk"]=16043,["Mor Grayhoof Trigger"]=16044,["Isalien Trigger"]=16045,["Jarien and Sothos Trigger"]=16046,["Kormok Trigger"]=16047,["Lord Valthalak Trigger"]=16048,["Lefty"]=16049,["Rotfang"]=16050,["Snokh Blackspine"]=16051,["Malgen Longspear"]=16052,["Korv"]=16053,["Rezznik"]=16054,["Va'jashni"]=16055,["Diseased Maggot"]=16056,["Rotting Maggot"]=16057,["Volida"]=16058,["Theldren"]=16059,["Gothik the Harvester"]=16060,["Instructor Razuvious"]=16061,["Highlord Mograine"]=16062,["Sir Zeliek"]=16063,["Thane Korth'azz"]=16064,["Lady Blaumeux"]=16065,["Spectral Assassin"]=16066,["Deathcharger Steed"]=16067,["Larva"]=16068,["Gurky"]=16069,["Garel Redrock"]=16070,["Tidelord Rrurgaz"]=16072,["Spirit of Lord Valthalak"]=16073,["Kwee Q. Peddlefeet"]=16075,["Tharl Stonebleeder"]=16076,["Unkillable Fixed Damage Test Dummy"]=16078,["Theldren Trigger"]=16079,["Mor Grayhoof"]=16080,["Naxxramas Trigger"]=16082,["Peddlefeet"]=16085,["Omar the Test Dragon"]=16089,["Rousch"]=16090,["Dirk Thunderwood"]=16091,["Silithis Teleporter"]=16092,["Spectral Stalker"]=16093,["Durik"]=16094,["Gnashjaw"]=16095,["Steamwheedle Bruiser"]=16096,["Isalien"]=16097,["Empyrean"]=16098,["Ysida's Trigger"]=16100,["Jarien"]=16101,["Sothos"]=16102,["Spirit of Jarien"]=16103,["Spirit of Sothos"]=16104,["Aristan Mottar"]=16105,["Evert Sorisam"]=16106,["Apothecary Staffron Lerent"]=16107,["Fenstad Argyle"]=16108,["Mara Rennick"]=16109,["Annalise Lerent"]=16110,["Love Fool"]=16111,["Crusade Commander Korfax"]=16112,["Father Inigo Montoy"]=16113,["Scarlet Commander Marjhan"]=16114,["Crusade Commander Eligor Dawnbringer"]=16115,["Archmage Angela Dosantos"]=16116,["Plagued Swine"]=16117,["Kormok"]=16118,["Bone Minion"]=16119,["Bone Mage"]=16120,["Mortar"]=16121,["Gremnik Rizzlesprang"]=16123,["Unrelenting Trainee"]=16124,["Unrelenting Death Knight"]=16125,["Unrelenting Rider"]=16126,["Spectral Trainee"]=16127,["Rhonin"]=16128,["Shadow Fissure"]=16129,["Rohan the Assassin"]=16131,["Huntsman Leopold"]=16132,["Mataus the Wrathcaster"]=16133,["Rimblat Earthshatter"]=16134,["Rayne"]=16135,["Necrotic Shard"]=16136,["Naxxramas Military Sub-Boss Trigger"]=16137,["Cenarion Hold Reservist"]=16139,["Ghoul Berserker"]=16141,["Bile Sludge"]=16142,["Shadow of Doom"]=16143,["Lord Saltheril"]=16144,["Death Knight Captain"]=16145,["Death Knight"]=16146,["Elisara Sunstriker"]=16147,["Spectral Death Knight"]=16148,["Spectral Horse"]=16149,["Spectral Rider"]=16150,["Midnight"]=16151,["Attumen the Huntsman"]=16152,["Berthold"]=16153,["Risen Squire"]=16154,["Dark Touched Warrior"]=16156,["Doom Touched Warrior"]=16157,["Death Touched Warrior"]=16158,["Calliard"]=16159,["Magistrix Eredania"]=16160,["Arcanist Sheynathren"]=16161,["Wretched Hooligan"]=16162,["Death Knight Cavalier"]=16163,["Shade of Naxxramas"]=16164,["Necro Knight"]=16165,["Theldren Kill Credit"]=16166,["Bony Construct"]=16167,["Stoneskin Gargoyle"]=16168,["Hastings"]=16169,["Coldmist Stalker"]=16170,["Coldmist Widow"]=16171,["Damaged Necrotic Shard"]=16172,["Shadowbat"]=16173,["Greater Shadowbat"]=16174,["Vampiric Shadowbat"]=16175,["Shadowbeast"]=16176,["Dreadbeast"]=16177,["Phase Hound"]=16178,["Hyakiss the Lurker"]=16179,["Shadikith the Glider"]=16180,["Rokad the Ravager"]=16181,["Courier Dawnstrider"]=16183,["Nerubian Overseer"]=16184,["Anathos"]=16185,["Vara"]=16186,["Quartermaster Lymel"]=16187,["Skymaster Sunwing"]=16189,["Sathren Azuredawn"]=16191,["Skymistress Gloaming"]=16192,["Skeletal Smith"]=16193,["Unholy Axe"]=16194,["Apothecary Thedra"]=16196,["Arcanist Vandril"]=16197,["Apothecary Renzithen"]=16198,["Magister Darenis"]=16199,["Deathstalker Rathiel"]=16200,["Geranis Whitemorn"]=16201,["Farstrider Sedina"]=16202,["Ranger Vynna"]=16203,["Magister Idonis"]=16204,["Magistrix Aminel"]=16205,["Apprentice Varnis"]=16206,["Apothecary Enith"]=16208,["Ranger Vedoran"]=16209,["Magistrix Landra Dawnstrider"]=16210,["Naxxramas Combat Dummy"]=16211,["Dispatch Commander Metz"]=16212,["Ranger Lethvalin"]=16213,["Unholy Staff"]=16215,["Unholy Swords"]=16216,["Lieutenant Tomathren"]=16217,["Tesla Coil"]=16218,["Ranger Valanna"]=16219,["Captain Helios"]=16220,["Silvermoon Guardian"]=16221,["Silvermoon City Guardian"]=16222,["Rathis Tomber"]=16224,["Pack Mule"]=16225,["Guard Didier"]=16226,["Bragok"]=16227,["Argent Dawn Infantry"]=16228,["Injured Argent Dawn Infantry"]=16229,["Cultist Engineer"]=16230,["Dame Auriferous"]=16231,["Caravan Mule"]=16232,["Eye Stalk"]=16236,["Magister Sylastor"]=16237,["Night Elf Ambusher"]=16238,["Magister Kaendris"]=16239,["Arcanist Janeda"]=16240,["Argent Recruiter"]=16241,["Tranquillien Scout"]=16242,["Plague Slime"]=16243,["Infectious Ghoul"]=16244,["Luzran"]=16245,["Knucklerot"]=16246,["Borgoth the Bloodletter"]=16247,["Jurion the Deceiver"]=16248,["Masophet the Black"]=16249,["Mirdoran the Fallen"]=16250,["Deathstalker Maltendis"]=16251,["High Executor Mavren"]=16252,["Master Chef Mouldier"]=16253,["Field Marshal Chambers"]=16254,["Argent Scout"]=16255,["Jessica Chambers"]=16256,["Geron"]=16257,["Farsil"]=16258,["Sheri"]=16259,["Areyn"]=16260,["Sathiel"]=16261,["Landraelanis"]=16262,["Paelarin"]=16263,["Winaestra"]=16264,["Celoenus"]=16266,["Daestra"]=16267,["Eralan"]=16268,["Garridel"]=16269,["Hannovia"]=16270,["Telenus"]=16271,["Kanaria"]=16272,["Mathreyn"]=16273,["Narina"]=16274,["Noellene"]=16275,["Ponaris"]=16276,["Quarelestra"]=16277,["Sathein"]=16278,["Tannaria"]=16279,["Perascamin"]=16280,["Keeper of the Rolls"]=16281,["Packmaster Stonebruiser"]=16283,["Argent Medic"]=16284,["Argent Emissary"]=16285,["Spore"]=16286,["Ambassador Sunsorrow"]=16287,["Advisor Sorrelon"]=16288,["Advisor Valwyn"]=16289,["Irradiated Slime"]=16290,["Magister Quallestis"]=16291,["Aquantion"]=16292,["Apprentice Shatharia"]=16293,["Aldaron the Reckless"]=16294,["Ranger Lilatha"]=16295,["Mutated Grub"]=16297,["Spectral Soldier"]=16298,["Skeletal Shocktrooper"]=16299,["Risen Creeper"]=16300,["Risen Hungerer"]=16301,["Risen Stalker"]=16302,["Dreadbone Skeleton"]=16303,["Arcane Devourer"]=16304,["Dreadbone Sentinel"]=16305,["Scourge Invasion Minion spawner Ghost/Ghoul"]=16306,["Deathcage Scryer"]=16307,["Deathcage Sorcerer"]=16308,["Gangled Cannibal"]=16309,["Mana Shifter"]=16310,["Phantasmal Watcher"]=16311,["Nerubis Guard"]=16313,["Fallen Ranger"]=16314,["Deatholme Acolyte"]=16315,["Stonewing Tracker"]=16316,["Deatholme Necromancer"]=16317,["Deatholme Darkmage"]=16318,["Nerubis Centurion"]=16319,["Eye of Dar'Khan"]=16320,["Wailer"]=16321,["Gangled Flesheater"]=16322,["Phantasmal Seeker"]=16323,["Stonewing Slayer"]=16324,["Quel'dorei Ghost"]=16325,["Quel'dorei Wraith"]=16326,["Ravening Apparition"]=16327,["Vengeful Apparition"]=16328,["Dar'Khan Drathir"]=16329,["Sentinel Spy"]=16330} \ No newline at end of file +npc_to_id={["Flesh Eater"]=3,["Kobold Vermin"]=6,["Benny Questgiver"]=19,["Kanrethad"]=29,["Forest Spider"]=30,["Furbolg"]=31,["Harvest Golem"]=36,["Defias Thug"]=38,["Kobold Miner"]=40,["Mine Spider"]=43,["Murloc Forager"]=46,["Skeletal Warrior"]=48,["Lesser Succubus"]=49,["Corina Steele"]=54,["Mean Ed the Blacksmith"]=55,["Ruklar the Trapper"]=60,["Thuros Lightfingers"]=61,["Gug Fatcandle"]=62,["Peasant Woman"]=65,["Tharynn Bouden"]=66,["[UNUSED] Marlon Darnik"]=67,["Stormwind City Guard"]=68,["Diseased Timber Wolf"]=69,["[UNUSED] Lower Class Citizen"]=70,["Rankist"]=71,["[UNUSED] Antaris the Trader"]=72,["Veraina the Apothecary"]=73,["Kurran Steele"]=74,["[UNUSED] Vashaum Nightwither"]=75,["Janos Hammerknuckle"]=78,["Narg the Taskmaster"]=79,["Kobold Laborer"]=80,["[UNUSED] Luglar the Clogger"]=81,["Crazy Leonetti"]=82,["Infernal"]=89,["Sea Giant"]=90,["Rock Elemental"]=92,["Centaur"]=93,["Cutpurse"]=94,["Defias Smuggler"]=95,["Riverpaw Runt"]=97,["Riverpaw Taskmaster"]=98,["Morgaine the Sly"]=99,["Gruff Swiftbite"]=100,["Bronze Dragonspawn"]=102,["Garrick Padfoot"]=103,["Tall Strider"]=105,["Kodo Beast"]=106,["Raptor"]=107,["Green Dragonspawn"]=108,["White Dragonspawn"]=109,["Priest"]=111,["Priestess"]=112,["Stonetusk Boar"]=113,["Harvest Watcher"]=114,["Harvest Reaper"]=115,["Bandit"]=116,["Riverpaw Gnoll"]=117,["Prowler"]=118,["Longsnout"]=119,["Forest Stalker"]=120,["Defias Pathstalker"]=121,["Defias Highwayman"]=122,["Riverpaw Mongrel"]=123,["Riverpaw Brute"]=124,["Riverpaw Overseer"]=125,["Murloc Coastrunner"]=126,["Murloc Tidehunter"]=127,["Angry Programmer Tweedle Dee"]=128,["Angry Programmer Tweedle Dum"]=129,["Programmer Vendor"]=130,["[UNUSED] Small Black Dragon Whelp"]=149,["[UNUSED] Brother Milius"]=150,["Brog Hamfist"]=151,["Brother Danil"]=152,["Bethina"]=153,["Greater Fleshripper"]=154,["Goretusk"]=157,["[UNUSED] Ander the Monk"]=161,["[UNUSED] Small Child"]=165,["Morhan Coppertongue"]=167,["Murloc Warrior"]=171,["Dermot Johns"]=190,["Blue Dragonspawn"]=193,["Eagan Peltskinner"]=196,["Marshal McBride"]=197,["Khelden Bremen"]=198,["Young Fleshripper"]=199,["Rotting Horror"]=202,["Skeletal Mage"]=203,["[UNUSED] Cackle Flamebone"]=204,["Nightbane Dark Runner"]=205,["Nightbane Vile Fang"]=206,["Bone Chewer"]=210,["Splinter Fist Warrior"]=212,["Starving Dire Wolf"]=213,["Defias Night Runner"]=215,["Venom Web Spider"]=217,["Grave Robber"]=218,["Nillen Andemar"]=222,["Dan Golthas"]=223,["Gavin Gnarltree"]=225,["Morg Gnarltree"]=226,["Mabel Solaj"]=227,["Avette Fellwood"]=228,["Farmer Ray"]=232,["Farmer Saldean"]=233,["Marshal Gryan Stoutmantle"]=234,["Salma Saldean"]=235,["Farmer Furlbrow"]=237,["Verna Furlbrow"]=238,["Grimbooze Thunderbrew"]=239,["Marshal Dughan"]=240,["[UNUSED] Greeby Mudwhisker TEST"]=243,["Ma Stonefield"]=244,["Billy Maclure"]=247,["Gramma Stonefield"]=248,["Pa Maclure"]=250,["Maybell Maclure"]=251,["Tommy Joe Stonefield"]=252,["William Pestle"]=253,["Gerard Tiller"]=255,["Kobold Worker"]=257,["Joshua Maclure"]=258,["Guard Thomas"]=261,["Lord Ello Ebonlocke"]=263,["Commander Althea Ebonlocke"]=264,["Madame Eva"]=265,["Wiley the Black"]=266,["Clerk Daltry"]=267,["Sirra Von'Indi"]=268,["Role Dreuger"]=269,["Councilman Millstipe"]=270,["Ambassador Berrybuck"]=271,["Chef Grual"]=272,["Tavernkeep Smitts"]=273,["Barkeep Hann"]=274,["Whit Wantmal"]=275,["Viktori Prism'Antras"]=276,["Roberto Pupellyverbos"]=277,["Sara Timberlain"]=278,["Morgan Pestle"]=279,["Placeholder - Jasperlode Mine"]=280,["Brown Horse"]=284,["Murloc"]=285,["Placeholder - Darkhollow Mine"]=287,["Jitters"]=288,["Abercrombie"]=289,["Placeholder - Fargodeep Mine"]=290,["Placeholder Chest of Drawers"]=291,["Marshal Haggard"]=294,["Innkeeper Farley"]=295,["[UNUSED] Goodmother Jans"]=296,["Caretaker Folsom"]=297,["Young Wolf"]=299,["Zzarc' Vul"]=300,["Blind Mary"]=302,["Felsteed"]=304,["White Stallion"]=305,["Palomino"]=306,["Pinto"]=307,["Black Stallion"]=308,["Sven Yorgen"]=311,["Theocritus"]=313,["Eliza"]=314,["Stalvan Mistmantle"]=315,["[UNUSED] Brother Benthas"]=319,["Hogan Ference"]=325,["Goldtooth"]=327,["Zaldimar Wefhellt"]=328,["Earth Elemental"]=329,["Princess"]=330,["Maginor Dumas"]=331,["Master Mathias Shaw"]=332,["Gath'Ilzogg"]=334,["Singe"]=335,["Mazen Mac'Nadir"]=338,["[UNUSED] Helgor the Pugilist"]=339,["Kendor Kabonka"]=340,["Foreman Oslow"]=341,["Martie Jainrose"]=342,["Chef Breanna"]=343,["Magistrate Solomon"]=344,["Bellygrub"]=345,["Barkeep Daniels"]=346,["Grizzle Halfmane"]=347,["Zem Leeward"]=348,["Corporal Keeshan"]=349,["Peasant"]=351,["Dungar Longdrink"]=352,["Antonia Dart"]=353,["Black Wolf"]=356,["Timber Wolf"]=358,["Riding Wolf (Winter)"]=359,["Scott's Flying Mount"]=365,["Karm Ironquill"]=372,["Cog Glitzspinner"]=374,["Priestess Anetta"]=375,["High Priestess Laurena"]=376,["Priestess Josetta"]=377,["Darcy Parker"]=379,["Dockmaster Baren"]=381,["Marshal Marris"]=382,["Jason Mathers"]=383,["Katie Hunter"]=384,["Horse"]=385,["Porcine Entourage"]=390,["Old Murk-Eye"]=391,["Captain Grayson"]=392,["Markus"]=395,["Grand Magus Doane"]=397,["Boy - placeholder 05"]=399,["Stitches"]=412,["Verner Osgood"]=415,["Imp"]=416,["Felhunter"]=417,["Murloc Flesheater"]=422,["Redridge Mongrel"]=423,["Redridge Poacher"]=424,["Redridge Brute"]=426,["Dire Condor"]=428,["Shadowhide Darkweaver"]=429,["Redridge Mystic"]=430,["Shadowhide Slayer"]=431,["Shadowhide Brute"]=432,["Shadowhide Gnoll"]=433,["Rabid Shadowhide Gnoll"]=434,["Blackrock Champion"]=435,["Blackrock Shadowcaster"]=436,["Blackrock Renegade"]=437,["Blackrock Grunt"]=440,["Black Dragon Whelp"]=441,["Tarantula"]=442,["Redridge Alpha"]=445,["Redridge Basher"]=446,["Hogger"]=448,["Defias Knuckleduster"]=449,["Defias Renegade Mage"]=450,["Riverpaw Bandit"]=452,["Riverpaw Mystic"]=453,["Young Goretusk"]=454,["Murloc Minor Oracle"]=456,["Murloc Hunter"]=458,["Drusilla La Salle"]=459,["Alamar Grimm"]=460,["Demisette Cloyce"]=461,["Vultros"]=462,["Watch Captain Parker"]=464,["Barkeep Dobbins"]=465,["General Marcus Jonathan"]=466,["The Defias Traitor"]=467,["Town Crier"]=468,["Lieutenant Doren"]=469,["Mother Fang"]=471,["Fedfennel"]=472,["Morgan the Collector"]=473,["Rogue Wizard"]=474,["Kobold Tunneler"]=475,["Kobold Geomancer"]=476,["Riverpaw Outrunner"]=478,["Rusty Harvest Golem"]=480,["Defias Footpad"]=481,["Elling Trias"]=482,["Elaine Trias"]=483,["Blackrock Outrunner"]=485,["Tharil'zun"]=486,["Protector Bialon"]=487,["Protector Weaver"]=488,["Protector Dutfield"]=489,["Protector Gariel"]=490,["Quartermaster Lewis"]=491,["Watcher Bukouris"]=494,["Watcher Keefer"]=495,["Watcher Paige"]=499,["Riverpaw Scout"]=500,["Riverpaw Herbalist"]=501,["Benny Blaanco"]=502,["Lord Malathrom"]=503,["Defias Trapper"]=504,["Greater Tarantula"]=505,["Sergeant Brashclaw"]=506,["Fenros"]=507,["[UNUSED] Long Fang"]=509,["Water Elemental"]=510,["Insane Ghoul"]=511,["Murloc Netter"]=513,["Smith Argus"]=514,["Murloc Raider"]=515,["Murloc Oracle"]=517,["Yowler"]=518,["Slark"]=519,["Brack"]=520,["Lupos"]=521,["Mor'Ladim"]=522,["Thor"]=523,["Rockhide Boar"]=524,["Mangy Wolf"]=525,["Skeletal Fiend"]=531,["Nightbane Shadow Weaver"]=533,["Nefaru"]=534,["Pygmy Venom Web Spider"]=539,["Nalesette Wildbringer"]=543,["Murloc Nightcrawler"]=544,["Murloc Tidecaller"]=545,["Great Goretusk"]=547,["Murloc Minor Tidecaller"]=548,["Defias Messenger"]=550,["Rabid Dire Wolf"]=565,["Shadowhide Warrior"]=568,["Green Recluse"]=569,["Brain Eater"]=570,["Leprithus"]=572,["Foe Reaper 4000"]=573,["Naraxis"]=574,["Fire Elemental"]=575,["Watcher Ladimore"]=576,["Murloc Scout"]=578,["Shadowhide Assassin"]=579,["Redridge Drudger"]=580,["Old Blanchy"]=582,["Ambusher"]=583,["Kazon"]=584,["Bloodscalp Warrior"]=587,["Bloodscalp Scout"]=588,["Defias Pillager"]=589,["Defias Looter"]=590,["Defias Henchman"]=594,["Bloodscalp Hunter"]=595,["Brainwashed Noble"]=596,["Bloodscalp Berserker"]=597,["Defias Miner"]=598,["Marisa du'Paige"]=599,["Grimtooth"]=603,["Plague Spreader"]=604,["[UNUSED] Rabid Mrs. Whipple"]=612,["Blackrock Tracker"]=615,["Chatter"]=616,["Defias Conjurer"]=619,["Chicken"]=620,["Goblin Engineer"]=622,["Skeletal Miner"]=623,["Undead Excavator"]=624,["Undead Dynamiter"]=625,["Foreman Thistlenettle"]=626,["Black Ravager"]=628,["Elaine Carevin"]=633,["Defias Overseer"]=634,["Defias Blackguard"]=636,["Edwin VanCleef"]=639,["Goblin Woodcarver"]=641,["Sneed's Shredder"]=642,["Sneed"]=643,["Rhahk'Zor"]=644,["Cookie"]=645,["Mr. Smite"]=646,["Captain Greenskin"]=647,["Bridge Worker Trent"]=648,["Bridge Worker Dmitri"]=649,["Bridge Worker Jess"]=650,["Bridge Worker Daniel"]=651,["Bridge Worker Matthew"]=652,["Bridge Worker Alex"]=653,["Wilder Thistlenettle"]=656,["Defias Pirate"]=657,["Sten Stoutarm"]=658,["El Pollo Grande"]=659,["Bloodscalp Witch Doctor"]=660,["Jonathan Carevin"]=661,["Calor"]=663,["Benjamin Carevin"]=664,["Skullsplitter Warrior"]=667,["Skullsplitter Hunter"]=669,["Skullsplitter Witch Doctor"]=670,["Bloodscalp Headhunter"]=671,["Skullsplitter Spiritchaser"]=672,["Venture Co. Strip Miner"]=674,["Venture Co. Foreman"]=675,["Venture Co. Surveyor"]=676,["Venture Co. Tinkerer"]=677,["Mosh'Ogg Mauler"]=678,["Mosh'Ogg Shaman"]=679,["Mosh'Ogg Lord"]=680,["Young Stranglethorn Tiger"]=681,["Stranglethorn Tiger"]=682,["Young Panther"]=683,["Shadowmaw Panther"]=684,["Stranglethorn Raptor"]=685,["Lashtail Raptor"]=686,["Jungle Stalker"]=687,["Stone Maw Basilisk"]=688,["Crystal Spine Basilisk"]=689,["Cold Eye Basilisk"]=690,["Lesser Water Elemental"]=691,["Bloodscalp Axe Thrower"]=694,["Skullsplitter Axe Thrower"]=696,["Bloodscalp Shaman"]=697,["Bloodscalp Tiger"]=698,["Bloodscalp Beastmaster"]=699,["Bloodscalp Mystic"]=701,["Bloodscalp Scavenger"]=702,["General Fangore"]=703,["Ragged Timber Wolf"]=704,["Ragged Young Wolf"]=705,["Frostmane Troll Whelp"]=706,["Rockjaw Trogg"]=707,["Small Crag Boar"]=708,["Mosh'Ogg Warmonger"]=709,["Mosh'Ogg Spellcrafter"]=710,["Ardo Dirtpaw"]=711,["Redridge Thrasher"]=712,["Balir Frosthammer"]=713,["Talin Keeneye"]=714,["Hemet Nesingwary Jr."]=715,["Barnil Stonepot"]=716,["Ajeck Rouack"]=717,["Sir S. J. Erlgadin"]=718,["Rabbit"]=721,["Mosh'Ogg Butcher"]=723,["Burly Rockjaw Trogg"]=724,["Ironforge Mountaineer"]=727,["Bhag'thera"]=728,["Sin'Dall"]=729,["Tethis"]=730,["King Bangalash"]=731,["Murloc Lurker"]=732,["Sergeant Yohwa"]=733,["Corporal Bluth"]=734,["Murloc Streamrunner"]=735,["Panther"]=736,["Kebok"]=737,["Private Thorsen"]=738,["Brother Nimetz"]=739,["Adolescent Whelp"]=740,["Dreaming Whelp"]=741,["Green Wyrmkin"]=742,["Wyrmkin Dreamwalker"]=743,["Green Scalebane"]=744,["Scalebane Captain"]=745,["Elder Dragonkin"]=746,["Marsh Murloc"]=747,["Marsh Inkspewer"]=750,["Marsh Flesheater"]=751,["Marsh Oracle"]=752,["Rebel Watchman"]=754,["Lost One Mudlurker"]=755,["Skullsplitter Panther"]=756,["Lost One Fisherman"]=757,["Lost One Hunter"]=759,["Lost One Muckdweller"]=760,["Lost One Seer"]=761,["Lost One Riftseeker"]=762,["Lost One Chieftain"]=763,["Swampwalker"]=764,["Swampwalker Elder"]=765,["Tangled Horror"]=766,["Swamp Jaguar"]=767,["Shadow Panther"]=768,["Deathstrike Tarantula"]=769,["Corporal Kaleb"]=770,["Commander Felstrom"]=771,["Stranglethorn Tigress"]=772,["Krazek"]=773,["Kurzen's Agent"]=775,["Amy Davenport"]=777,["Skullsplitter Mystic"]=780,["Skullsplitter Headhunter"]=781,["Skullsplitter Scout"]=782,["Skullsplitter Berserker"]=783,["Skullsplitter Beastmaster"]=784,["Skeletal Warder"]=785,["Grelin Whitebeard"]=786,["Skeletal Healer"]=787,["Kimberly Hiett"]=789,["Karen Taylor"]=790,["Lindsay Ashlock"]=791,["Kara Adams"]=793,["Matt"]=794,["Mark"]=795,["Joshua"]=796,["Bo"]=797,["Solomon"]=798,["Kevin"]=799,["Kyle"]=800,["Eric"]=801,["Jay"]=802,["Dana"]=804,["Cameron"]=805,["John"]=806,["Lisa"]=807,["Grik'nir the Cold"]=808,["Aaron"]=810,["Jose"]=811,["Alma Jainrose"]=812,["Colonel Kurzen"]=813,["Sergeant Malthus"]=814,["Bookie Herod"]=815,["Mai'Zoth"]=818,["Servant of Ilgalar"]=819,["Scout Riell"]=820,["Captain Danuvin"]=821,["Young Forest Bear"]=822,["Sergeant Willem"]=823,["Defias Digger"]=824,["Watcher Jan"]=826,["Watcher Mocarski"]=827,["Watcher Petras"]=828,["Adlin Pridedrift"]=829,["Sand Crawler"]=830,["Sea Crawler"]=831,["Unbound Cyclone"]=832,["Coyote Packleader"]=833,["Coyote"]=834,["Durnan Furcutter"]=836,["Branstock Khalder"]=837,["Watcher Backus"]=840,["Lumberjack"]=842,["Gina MacGregor"]=843,["Antonio Perelli"]=844,["Rotten Ghoul"]=846,["Nathan"]=847,["Madison"]=848,["Rachel"]=849,["Erin"]=850,["Hannah"]=851,["Feral Spirit"]=852,["Coldridge Mountaineer"]=853,["Young Jungle Stalker"]=854,["Young Stranglethorn Raptor"]=855,["Young Lashtail Raptor"]=856,["Donal Osgood"]=857,["Sorrow Spinner"]=858,["Guard Berton"]=859,["Stonard Scout"]=861,["Stonard Explorer"]=862,["Stonard Hunter"]=863,["Stonard Orc"]=864,["Stonard Wayfinder"]=865,["Stonard Grunt"]=866,["Stonard Cartographer"]=867,["Stonard Shaman"]=868,["Protector Dorana"]=869,["Protector Deni"]=870,["Saltscale Warrior"]=871,["Saltscale Oracle"]=873,["Protector Korelor"]=874,["Saltscale Tide Lord"]=875,["Protector Leick"]=876,["Saltscale Forager"]=877,["Scout Galiaan"]=878,["Saltscale Hunter"]=879,["Erlan Drudgemoor"]=880,["Surena Caledon"]=881,["Deer"]=883,["Watcher Keller"]=885,["Watcher Hartin"]=886,["Watcher Jordan"]=887,["Watcher Dodds"]=888,["Splinter Fist Ogre"]=889,["Fawn"]=890,["Splinter Fist Fire Weaver"]=891,["Splinter Fist Taskmaster"]=892,["Lars"]=893,["Homer Stonefield"]=894,["Thorgas Grimson"]=895,["Veldan Lightfoot"]=896,["Nightbane Worgen"]=898,["Bailiff Conacher"]=900,["Guard Howe"]=903,["Sharptooth Frenzy"]=905,["Maximillian Crowe"]=906,["Keras Wolfheart"]=907,["Flora Silverwind"]=908,["Defias Night Blade"]=909,["Defias Enchanter"]=910,["Llane Beshere"]=911,["Thran Khorman"]=912,["Lyria Du Lac"]=913,["Ander Germaine"]=914,["Jorik Kerridan"]=915,["Solm Hargrin"]=916,["Keryn Sylvius"]=917,["Osborne the Night Man"]=918,["Nightbane Tainted One"]=920,["Venture Co. Lumberjack"]=921,["Silt Crawler"]=922,["Young Black Ravager"]=923,["Brother Sammuel"]=925,["Bromos Grummner"]=926,["Brother Wilhelm"]=927,["Lord Grayson Shadowbreaker"]=928,["Black Widow Hatchling"]=930,["Ariena Stormfeather"]=931,["Guard Ashlock"]=932,["Guard Hiett"]=933,["Guard Clarke"]=934,["Guard Pearce"]=935,["Guard Adams"]=936,["Kurzen Jungle Fighter"]=937,["Kurzen Commando"]=938,["Kurzen Elite"]=939,["Kurzen Medicine Man"]=940,["Kurzen Headshrinker"]=941,["Kurzen Witch Doctor"]=942,["Kurzen Wrangler"]=943,["Marryk Nurribit"]=944,["Rybrad Coldbank"]=945,["Frostmane Novice"]=946,["Rohh the Silent"]=947,["Rotted One"]=948,["Carrion Recluse"]=949,["Swamp Talker"]=950,["Brother Paxton"]=951,["Brother Neals"]=952,["Kat Sampson"]=954,["Sergeant De Vries"]=955,["Dorin Songblade"]=956,["Dane Lindgren"]=957,["Dawn Brightstar"]=958,["Morley Eberlein"]=959,["Gunder Thornbush"]=960,["Deputy Rainer"]=963,["Kurzen War Tiger"]=976,["Kurzen War Panther"]=977,["Kurzen Subchief"]=978,["Kurzen Shadow Hunter"]=979,["Grimnal"]=980,["Hartash"]=981,["Thultash"]=982,["Thultazor"]=983,["Thralosh"]=984,["Malosh"]=985,["Haromm"]=986,["Ogromm"]=987,["Kartosh"]=988,["Banalash"]=989,["Watcher Royce"]=999,["Watcher Blomberg"]=1000,["Watcher Hutchins"]=1001,["Mosshide Gnoll"]=1007,["Mosshide Mongrel"]=1008,["Mosshide Mistweaver"]=1009,["Mosshide Fenrunner"]=1010,["Mosshide Trapper"]=1011,["Mosshide Brute"]=1012,["Mosshide Mystic"]=1013,["Mosshide Alpha"]=1014,["Highland Raptor"]=1015,["Highland Lashtail"]=1016,["Highland Scytheclaw"]=1017,["Highland Razormaw"]=1018,["Elder Razormaw"]=1019,["Mottled Raptor"]=1020,["Mottled Screecher"]=1021,["Mottled Scytheclaw"]=1022,["Mottled Razormaw"]=1023,["Bluegill Murloc"]=1024,["Bluegill Puddlejumper"]=1025,["Bluegill Forager"]=1026,["Bluegill Warrior"]=1027,["Bluegill Muckdweller"]=1028,["Bluegill Oracle"]=1029,["Black Slime"]=1030,["Crimson Ooze"]=1031,["Black Ooze"]=1032,["Monstrous Ooze"]=1033,["Dragonmaw Raider"]=1034,["Dragonmaw Swamprunner"]=1035,["Dragonmaw Centurion"]=1036,["Dragonmaw Battlemaster"]=1037,["Dragonmaw Shadowwarder"]=1038,["Fen Dweller"]=1039,["Fen Creeper"]=1040,["Fen Lord"]=1041,["Red Whelp"]=1042,["Lost Whelp"]=1043,["Flamesnorting Whelp"]=1044,["Red Dragonspawn"]=1045,["Red Wyrmkin"]=1046,["Red Scalebane"]=1047,["Scalebane Lieutenant"]=1048,["Wyrmkin Firebrand"]=1049,["Scalebane Royal Guard"]=1050,["Dark Iron Dwarf"]=1051,["Dark Iron Saboteur"]=1052,["Dark Iron Tunneler"]=1053,["Dark Iron Demolitionist"]=1054,["Dragonmaw Bonewarder"]=1057,["Ana'thek the Cruel"]=1059,["Mogh the Undying"]=1060,["Gan'zulah"]=1061,["Nezzliok the Dire"]=1062,["Jade"]=1063,["Grom'gol Grunt"]=1064,["Riverpaw Shaman"]=1065,["Gorn"]=1068,["Crimson Whelp"]=1069,["Deputy Feldon"]=1070,["Longbraid the Grim"]=1071,["Roggo Harlbarrow"]=1072,["Ashlan Stonesmirk"]=1073,["Motley Garmason"]=1074,["Rhag Garmason"]=1075,["Merrin Rockweaver"]=1076,["Prospector Whelgar"]=1077,["Ormer Ironbraid"]=1078,["Mire Lord"]=1081,["Sawtooth Crocolisk"]=1082,["Murloc Shorestriker"]=1083,["Young Sawtooth Crocolisk"]=1084,["Elder Stranglethorn Tiger"]=1085,["Sawtooth Snapper"]=1087,["Monstrous Crawler"]=1088,["Mountaineer Cobbleflint"]=1089,["Mountaineer Wallbang"]=1090,["Mountaineer Gravelgaw"]=1091,["Captain Rugelfuss"]=1092,["Chief Engineer Hinderweir VII"]=1093,["Venture Co. Miner"]=1094,["Venture Co. Workboss"]=1095,["Venture Co. Geologist"]=1096,["Venture Co. Mechanic"]=1097,["Watcher Merant"]=1098,["Watcher Gelwin"]=1099,["Watcher Selkin"]=1100,["Watcher Thayer"]=1101,["Eldrin"]=1103,["Grundel Harkin"]=1104,["Jern Hornhelm"]=1105,["Lost One Cook"]=1106,["Mistvale Gorilla"]=1108,["Fleshripper"]=1109,["Skeletal Raider"]=1110,["Leech Stalker"]=1111,["Leech Widow"]=1112,["Jungle Thunderer"]=1114,["Rockjaw Skullthumper"]=1115,["Rockjaw Ambusher"]=1116,["Rockjaw Bonesnapper"]=1117,["Rockjaw Backbreaker"]=1118,["Hammerspine"]=1119,["Frostmane Troll"]=1120,["Frostmane Snowstrider"]=1121,["Frostmane Hideskinner"]=1122,["Frostmane Headhunter"]=1123,["Frostmane Shadowcaster"]=1124,["Crag Boar"]=1125,["Large Crag Boar"]=1126,["Elder Crag Boar"]=1127,["Young Black Bear"]=1128,["Black Bear"]=1129,["Bjarn"]=1130,["Winter Wolf"]=1131,["Timber"]=1132,["Starving Winter Wolf"]=1133,["Young Wendigo"]=1134,["Wendigo"]=1135,["Edan the Howler"]=1137,["Snow Tracker Wolf"]=1138,["Magistrate Bluntnose"]=1139,["Razormaw Matriarch"]=1140,["Angus Stern"]=1141,["Mosh'Ogg Brute"]=1142,["Mosh'Ogg Witch Doctor"]=1144,["Vharr"]=1146,["Hragran"]=1147,["Nerrist"]=1148,["Uthok"]=1149,["River Crocolisk"]=1150,["Saltwater Crocolisk"]=1151,["Snapjaw Crocolisk"]=1152,["Torren Squarejaw"]=1153,["Marek Ironheart"]=1154,["Kelt Thomasin"]=1155,["Vyrin Swiftwind"]=1156,["Cursed Sailor"]=1157,["Cursed Marine"]=1158,["First Mate Snellig"]=1159,["Captain Halyndor"]=1160,["Stonesplinter Trogg"]=1161,["Stonesplinter Scout"]=1162,["Stonesplinter Skullthumper"]=1163,["Stonesplinter Bonesnapper"]=1164,["Stonesplinter Geomancer"]=1165,["Stonesplinter Seer"]=1166,["Stonesplinter Digger"]=1167,["Dark Iron Insurgent"]=1169,["Tunnel Rat Vermin"]=1172,["Tunnel Rat Scout"]=1173,["Tunnel Rat Geomancer"]=1174,["Tunnel Rat Digger"]=1175,["Tunnel Rat Forager"]=1176,["Tunnel Rat Surveyor"]=1177,["Mo'grosh Ogre"]=1178,["Mo'grosh Enforcer"]=1179,["Mo'grosh Brute"]=1180,["Mo'grosh Shaman"]=1181,["Brother Anton"]=1182,["Mo'grosh Mystic"]=1183,["Cliff Lurker"]=1184,["Wood Lurker"]=1185,["Black Bear"]=1186,["Daryl the Youngling"]=1187,["Grizzled Black Bear"]=1188,["Black Bear Patriarch"]=1189,["Mountain Boar"]=1190,["Mangy Mountain Boar"]=1191,["Elder Mountain Boar"]=1192,["Loch Frenzy"]=1193,["Mountain Buzzard"]=1194,["Forest Lurker"]=1195,["Ice Claw Bear"]=1196,["Stonesplinter Shaman"]=1197,["Rallic Finn"]=1198,["Juvenile Snow Leopard"]=1199,["Morbent Fel"]=1200,["Snow Leopard"]=1201,["Tunnel Rat Kobold"]=1202,["Watcher Sarys"]=1203,["Watcher Corwin"]=1204,["Grawmug"]=1205,["Gnasher"]=1206,["Brawler"]=1207,["Chok'sul"]=1210,["Leper Gnome"]=1211,["Bishop Farthing"]=1212,["Godric Rothgar"]=1213,["Aldren Cordon"]=1214,["Alchemist Mallory"]=1215,["Shore Crawler"]=1216,["Glorin Steelbrow"]=1217,["Herbalist Pomeroy"]=1218,["Dark Iron Sapper"]=1222,["Young Threshadon"]=1224,["Ol' Sooty"]=1225,["Maxan Anvol"]=1226,["Rygal Rocknell"]=1227,["Magis Sparkmantle"]=1228,["Granis Swiftaxe"]=1229,["[UNUSED] Lexin Haze"]=1230,["Grif Wildheart"]=1231,["Azar Stronghammer"]=1232,["[UNUSED] Shaethis Darkoak"]=1233,["Hogral Bakkan"]=1234,["Kobold Digger"]=1236,["Kazan Mogosh"]=1237,["Gamili Frosthide"]=1238,["First Mate Fitzsimmons"]=1239,["Boran Ironclink"]=1240,["Tognus Flintfire"]=1241,["Karl Boran"]=1242,["Hegnar Rumbleshot"]=1243,["Rethiel the Greenwarden"]=1244,["Kogan Forgestone"]=1245,["Vosur Brakthel"]=1246,["Innkeeper Belm"]=1247,["Quartermaster Hudson"]=1249,["Drake Lindgren"]=1250,["Splinter Fist Firemonger"]=1251,["Senir Whitebeard"]=1252,["Father Gavin"]=1253,["Foreman Stonebrow"]=1254,["Prospector Gehn"]=1255,["Quarrymaster Thesten"]=1256,["Keldric Boucher"]=1257,["Black Ravager Mastiff"]=1258,["Gobbler"]=1259,["Great Father Arctikus"]=1260,["Veron Amberstill"]=1261,["Yarlyn Amberstill"]=1263,["Rudra Amberstill"]=1265,["Tundra MacGrann"]=1266,["Ragnar Thunderbrew"]=1267,["Ozzie Togglevolt"]=1268,["Razzle Sprysprocket"]=1269,["Fetid Corpse"]=1270,["Old Icebeard"]=1271,["Grawn Thromwyn"]=1273,["Senator Barin Redstone"]=1274,["Kyra Boucher"]=1275,["Mountaineer Brokk"]=1276,["Mountaineer Ganin"]=1277,["Mountaineer Stenn"]=1278,["Mountaineer Flint"]=1279,["Mountaineer Droken"]=1280,["Mountaineer Zaren"]=1281,["Mountaineer Veek"]=1282,["Mountaineer Kalmir"]=1283,["Archbishop Benedictus"]=1284,["Thurman Mullby"]=1285,["Edna Mullby"]=1286,["Marda Weller"]=1287,["Gunther Weller"]=1289,["Carla Granger"]=1291,["Maris Granger"]=1292,["Ambo Cash"]=1293,["Aldric Moore"]=1294,["Lara Moore"]=1295,["Felder Stover"]=1296,["Lina Stover"]=1297,["Frederick Stover"]=1298,["Lisbeth Schneider"]=1299,["Lawrence Schneider"]=1300,["Julia Gallina"]=1301,["Bernard Gump"]=1302,["Felicia Gump"]=1303,["Darian Singh"]=1304,["Jarel Moor"]=1305,["Charys Yserian"]=1307,["Owen Vaughn"]=1308,["Wynne Larson"]=1309,["Evan Larson"]=1310,["Joachim Brenlow"]=1311,["Ardwyn Cailen"]=1312,["Maria Lumere"]=1313,["Duncan Cullen"]=1314,["Allan Hafgan"]=1315,["Adair Gilroy"]=1316,["Lucan Cordell"]=1317,["Jessara Cordell"]=1318,["Bryan Cross"]=1319,["Seoman Griffith"]=1320,["Alyssa Griffith"]=1321,["Maxton Strang"]=1322,["Osric Strang"]=1323,["Heinrich Stone"]=1324,["Jasper Fel"]=1325,["Sloan McCoy"]=1326,["Reese Langston"]=1327,["Elly Langston"]=1328,["Mountaineer Naarh"]=1329,["Mountaineer Tyraw"]=1330,["Mountaineer Luxst"]=1331,["Mountaineer Morran"]=1332,["Gerik Koen"]=1333,["Mountaineer Hammerfall"]=1334,["Mountaineer Yuttha"]=1335,["Mountaineer Zwarn"]=1336,["Mountaineer Gwarth"]=1337,["Mountaineer Dalk"]=1338,["Mayda Thane"]=1339,["Mountaineer Kadrell"]=1340,["Wilhelm Strang"]=1341,["Mountaineer Rockgar"]=1342,["Mountaineer Stormpike"]=1343,["Prospector Ironband"]=1344,["Magmar Fellhew"]=1345,["Georgio Bolero"]=1346,["Alexandra Bolero"]=1347,["Gregory Ardus"]=1348,["Agustus Moulaine"]=1349,["Theresa Moulaine"]=1350,["Brother Cassius"]=1351,["Fluffy"]=1352,["Sarltooth"]=1353,["Apprentice Soren"]=1354,["Cook Ghilm"]=1355,["Prospector Stormpike"]=1356,["Miner Grothor"]=1358,["Miner Grumnal"]=1360,["Gothor Brumn"]=1362,["Balgaras the Foul"]=1364,["Goli Krumn"]=1365,["Adam"]=1366,["Billy"]=1367,["Justin"]=1368,["Brandon"]=1370,["Roman"]=1371,["Jarven Thunderbrew"]=1373,["Rejold Barleybrew"]=1374,["Marleth Barleybrew"]=1375,["Beldin Steelgrill"]=1376,["Pilot Stonegear"]=1377,["Pilot Bellowfiz"]=1378,["Miran"]=1379,["Saean"]=1380,["Krakk"]=1381,["Mudduk"]=1382,["Snarl"]=1383,["Brawn"]=1385,["Rogvar"]=1386,["Thysta"]=1387,["Vagash"]=1388,["Berserk Trogg"]=1393,["Ol' Beasley"]=1395,["Frostmane Seer"]=1397,["Boss Galgosh"]=1398,["Magosh"]=1399,["Wetlands Crocolisk"]=1400,["Topper McNabb"]=1402,["Kragg"]=1404,["Morris Lawry"]=1405,["Sranda"]=1407,["Firewing Bloodwarder"]=1410,["Ian Strom"]=1411,["Squirrel"]=1412,["Janey Anship"]=1413,["Lisan Pierce"]=1414,["Suzanne"]=1415,["Grimand Elmore"]=1416,["Young Wetlands Crocolisk"]=1417,["Bluegill Raider"]=1418,["Fizzles"]=1419,["Toad"]=1420,["Private Merle"]=1421,["Corporal Sethman"]=1422,["Stormwind Guard"]=1423,["Master Digger"]=1424,["Kubb"]=1425,["Riverpaw Miner"]=1426,["Harlan Bagley"]=1427,["Rema Schneider"]=1428,["Thurman Schneider"]=1429,["Tomas"]=1430,["Suzetta Gallina"]=1431,["Renato Gallina"]=1432,["Corbett Schneider"]=1433,["Menethil Sentry"]=1434,["Zardeth of the Black Claw"]=1435,["Watcher Cutford"]=1436,["Thomas Booker"]=1437,["Lord Baurles K. Wishock"]=1439,["Milton Sheaf"]=1440,["Brak Durnad"]=1441,["Helgrum the Swift"]=1442,["Fel'zerul"]=1443,["Brother Kristoff"]=1444,["Jesse Halloran"]=1445,["Regina Halloran"]=1446,["Gimlok Rumdnul"]=1447,["Neal Allen"]=1448,["Witch Doctor Unbagwa"]=1449,["Brahnmar"]=1450,["Camerick Jongleur"]=1451,["Gruham Rumdnul"]=1452,["Dewin Shimmerdawn"]=1453,["Jennabink Powerseam"]=1454,["Kersok Prond"]=1456,["Samor Festivus"]=1457,["Telurinon Moonshadow"]=1458,["Naela Trance"]=1459,["Unger Statforth"]=1460,["Murndan Derth"]=1461,["Edwina Monzor"]=1462,["Falkan Armonis"]=1463,["Innkeeper Helbrek"]=1464,["Drac Roughcut"]=1465,["Gretta Finespindle"]=1466,["Vrok Blunderblast"]=1469,["Ghak Healtouch"]=1470,["Jannos Ironwill"]=1471,["Morgg Stormshot"]=1472,["Kali Healtouch"]=1473,["Rann Flamespinner"]=1474,["Menethil Guard"]=1475,["Hargin Mundar"]=1476,["Christoph Faral"]=1477,["Aedis Brom"]=1478,["Timothy Clark"]=1479,["Caitlin Grassman"]=1480,["Bart Tidewater"]=1481,["Andrea Halloran"]=1482,["Murphy West"]=1483,["Derina Rumdnul"]=1484,["Splinter Fist Enslaver"]=1487,["Zanzil Zombie"]=1488,["Zanzil Hunter"]=1489,["Zanzil Witch Doctor"]=1490,["Zanzil Naga"]=1491,["Gorlash"]=1492,["Mok'rash the Cleaver"]=1493,["Negolash"]=1494,["Deathguard Linnea"]=1495,["Deathguard Dillinger"]=1496,["Gunther Arcanus"]=1497,["Bethor Iceshard"]=1498,["Magistrate Sevren"]=1499,["Coleman Farthing"]=1500,["Mindless Zombie"]=1501,["Wretched Ghoul"]=1502,["Young Night Web Spider"]=1504,["Night Web Spider"]=1505,["Scarlet Convert"]=1506,["Scarlet Initiate"]=1507,["Young Scavenger"]=1508,["Ragged Scavenger"]=1509,["Enraged Silverback Gorilla"]=1511,["Duskbat"]=1512,["Mangy Duskbat"]=1513,["Mokk the Savage"]=1514,["Executor Zygand"]=1515,["Konda"]=1516,["Apothecary Johaan"]=1518,["Deathguard Simmer"]=1519,["Rattlecage Soldier"]=1520,["Gretchen Dedmar"]=1521,["Darkeye Bonecaster"]=1522,["Cracked Skull Soldier"]=1523,["Rotting Dead"]=1525,["Ravaged Corpse"]=1526,["Hungering Dead"]=1527,["Shambling Horror"]=1528,["Bleeding Horror"]=1529,["Rotting Ancestor"]=1530,["Lost Soul"]=1531,["Wandering Spirit"]=1532,["Tormented Spirit"]=1533,["Wailing Ancestor"]=1534,["Scarlet Warrior"]=1535,["Scarlet Missionary"]=1536,["Scarlet Zealot"]=1537,["Scarlet Friar"]=1538,["Scarlet Neophyte"]=1539,["Scarlet Vanguard"]=1540,["Vile Fin Murloc"]=1541,["Vile Fin Puddlejumper"]=1543,["Vile Fin Minor Oracle"]=1544,["Vile Fin Muckdweller"]=1545,["[UNUSED] Kegnar Thraln"]=1546,["Decrepit Darkhound"]=1547,["Cursed Darkhound"]=1548,["Ravenous Darkhound"]=1549,["Thrashtail Basilisk"]=1550,["Ironjaw Basilisk"]=1551,["Scale Belly"]=1552,["Greater Duskbat"]=1553,["Vampiric Duskbat"]=1554,["Vicious Night Web Spider"]=1555,["Elder Mistvale Gorilla"]=1557,["Silverback Patriarch"]=1558,["King Mukla"]=1559,["Yvette Farthing"]=1560,["Bloodsail Raider"]=1561,["Bloodsail Mage"]=1562,["Bloodsail Swashbuckler"]=1563,["Bloodsail Warlock"]=1564,["Bloodsail Sea Dog"]=1565,["Undertaker Mordo"]=1568,["Shadow Priest Sarvis"]=1569,["Executor Arren"]=1570,["Shellei Brondir"]=1571,["Thorgrum Borrelson"]=1572,["Gryth Thurden"]=1573,["Mage 1"]=1574,["Mage 5"]=1575,["Priest 20"]=1629,["Adele Fielder"]=1632,["Northshire Guard"]=1642,["Quartermaster Hicks"]=1645,["Baros Alexston"]=1646,["Terry Palin"]=1650,["Lee Brown"]=1651,["Deathguard Burgess"]=1652,["Bloodsail Elder Magus"]=1653,["Gregor Agamand"]=1654,["Nissa Agamand"]=1655,["Thurman Agamand"]=1656,["Devlin Agamand"]=1657,["Captain Dargol"]=1658,["Scarlet Bodyguard"]=1660,["Novice Elreth"]=1661,["Captain Perrine"]=1662,["Dextren Ward"]=1663,["Captain Vachon"]=1664,["Captain Melrache"]=1665,["Kam Deepfury"]=1666,["Meven Korgal"]=1667,["William MacGregor"]=1668,["Defias Profiteer"]=1669,["Mike Miller"]=1670,["Lamar Veisilli"]=1671,["Lohgan Eva"]=1672,["Alyssa Eva"]=1673,["Rot Hide Gnoll"]=1674,["Rot Hide Mongrel"]=1675,["Finbus Geargrind"]=1676,["Vernon Hale"]=1678,["Avarus Kharag"]=1679,["Matthew Hooper"]=1680,["Brock Stoneseeker"]=1681,["Yanni Stoutheart"]=1682,["Warg Deepwater"]=1683,["Khara Deepwater"]=1684,["Xandar Goodbeard"]=1685,["Irene Sureshot"]=1686,["Cliff Hadin"]=1687,["Night Web Matriarch"]=1688,["Scarred Crag Boar"]=1689,["Thrawn Boltar"]=1690,["Kreg Bilmn"]=1691,["Golorn Frostbeard"]=1692,["Loch Crocolisk"]=1693,["Loslor Rudge"]=1694,["Rendow"]=1695,["Targorr the Dread"]=1696,["Keeg Gibn"]=1697,["Frast Dokner"]=1698,["Gremlock Pilsnor"]=1699,["Paxton Ganter"]=1700,["Dank Drizzlecut"]=1701,["Bronk Guzzlegear"]=1702,["Uthrar Threx"]=1703,["Prisoner"]=1706,["Defias Captive"]=1707,["Defias Inmate"]=1708,["Convict"]=1711,["Elder Shadowmaw Panther"]=1713,["Insurgent"]=1715,["Bazil Thredd"]=1716,["Hamhock"]=1717,["Rockjaw Raider"]=1718,["Warden Thelwater"]=1719,["Bruegal Ironknuckle"]=1720,["Nikova Raskol"]=1721,["Defias Watchman"]=1725,["Defias Magician"]=1726,["Defias Worker"]=1727,["Defias Evoker"]=1729,["Goblin Craftsman"]=1731,["Defias Squallshaper"]=1732,["Zggi"]=1733,["Deathguard Abraham"]=1735,["Deathguard Randolph"]=1736,["Deathguard Oliver"]=1737,["Deathguard Terrence"]=1738,["Deathguard Phillip"]=1739,["Deathguard Saltain"]=1740,["Deathguard Bartrand"]=1741,["Deathguard Bartholomew"]=1742,["Deathguard Lawrence"]=1743,["Deathguard Mort"]=1744,["Deathguard Morris"]=1745,["Deathguard Cyrus"]=1746,["Anduin Wrynn"]=1747,["Highlord Bolvar Fordragon"]=1748,["Lady Katrana Prestor"]=1749,["Grand Admiral Jes-Tereth"]=1750,["Mithras Ironhill"]=1751,["Caledra Dawnbreeze"]=1752,["Maggot Eye"]=1753,["Lord Gregor Lescovar"]=1754,["Marzon the Silent Blade"]=1755,["Stormwind Royal Guard"]=1756,["Mega Rabbit"]=1757,["Gilnid"]=1763,["Greater Feral Spirit"]=1764,["Worg"]=1765,["Rabid Worg"]=1766,["Vile Fin Shredder"]=1767,["Vile Fin Tidehunter"]=1768,["Moonrage Whitescalp"]=1769,["Moonrage Darkrunner"]=1770,["Rot Hide Gladerunner"]=1772,["Rot Hide Mystic"]=1773,["Zun'dartha"]=1775,["Magtoor"]=1776,["Dakk Blunderblast"]=1777,["Ferocious Grizzled Bear"]=1778,["Moonrage Glutton"]=1779,["Skitterweb Striker"]=1780,["Skitterweb Lurker"]=1781,["Moonrage Darksoul"]=1782,["Skeletal Flayer"]=1783,["Skeletal Sorcerer"]=1784,["Skeletal Terror"]=1785,["Skeletal Executioner"]=1787,["Skeletal Warlord"]=1788,["Skeletal Acolyte"]=1789,["Slavering Ghoul"]=1791,["Rotting Ghoul"]=1793,["Soulless Ghoul"]=1794,["Searing Ghoul"]=1795,["Freezing Ghoul"]=1796,["Giant Rabid Bear"]=1797,["Cold Wraith"]=1800,["Blood Wraith"]=1801,["Hungering Wraith"]=1802,["Wailing Death"]=1804,["Flesh Golem"]=1805,["Vile Slime"]=1806,["Devouring Ooze"]=1808,["Carrion Vulture"]=1809,["Rotting Behemoth"]=1812,["Decaying Horror"]=1813,["Diseased Black Bear"]=1815,["Diseased Grizzly"]=1816,["Diseased Wolf"]=1817,["Carrion Lurker"]=1821,["Venom Mist Lurker"]=1822,["Plague Lurker"]=1824,["Scarlet Mage"]=1826,["Scarlet Sentinel"]=1827,["Scarlet Hunter"]=1831,["Scarlet Magus"]=1832,["Scarlet Knight"]=1833,["Scarlet Paladin"]=1834,["Scarlet Invoker"]=1835,["Scarlet Cavalier"]=1836,["Scarlet Judge"]=1837,["Scarlet Interrogator"]=1838,["Scarlet High Clerist"]=1839,["Grand Inquisitor Isillien"]=1840,["Scarlet Executioner"]=1841,["Highlord Taelan Fordring"]=1842,["Foreman Jerris"]=1843,["Foreman Marcrid"]=1844,["High Protector Tarsen"]=1845,["High Protector Lorik"]=1846,["Foulmane"]=1847,["Lord Maldazzar"]=1848,["Dreadwhisper"]=1849,["Putridius"]=1850,["The Husk"]=1851,["Araj the Summoner"]=1852,["Darkmaster Gandling"]=1853,["High Priest Thel'danis"]=1854,["Tirion Fordring"]=1855,["Voidwalker"]=1860,["Succubus"]=1863,["Ravenclaw Raider"]=1865,["Ravenclaw Slave"]=1866,["Dalaran Apprentice"]=1867,["Ravenclaw Servant"]=1868,["Ravenclaw Champion"]=1869,["Hand of Ravenclaw"]=1870,["Eliza's Guard"]=1871,["Tharek Blackstone"]=1872,["Berte"]=1880,["Scarlet Worker"]=1883,["Scarlet Lumberjack"]=1884,["Scarlet Smith"]=1885,["Ambermill Watcher"]=1888,["Ambermill Witchalok"]=1889,["Rattlecage Skeleton"]=1890,["Pyrewood Watcher"]=1891,["Moonrage Watcher"]=1892,["Moonrage Sentry"]=1893,["Pyrewood Sentry"]=1894,["Pyrewood Elder"]=1895,["Moonrage Elder"]=1896,["Kelstrum Stonebreaker"]=1901,["Naga Explorer"]=1907,["Vile Fin Oracle"]=1908,["Vile Fin Lakestalker"]=1909,["Muad"]=1910,["Deeb"]=1911,["Ambermill Protector"]=1912,["Ambermill Warder"]=1913,["Ambermill Mage"]=1914,["Ambermill Conjuror"]=1915,["Stephen Bhartec"]=1916,["Daniel Ulfman"]=1917,["Karrel Grayves"]=1918,["Samuel Fipps"]=1919,["Dalaran Spellscribe"]=1920,["Combat Dummy"]=1921,["Gray Forest Wolf"]=1922,["Bloodsnout Worg"]=1923,["Moonrage Bloodhowler"]=1924,["Captured Scarlet Zealot"]=1931,["Sheep"]=1933,["Tirisfal Farmer"]=1934,["Tirisfal Farmhand"]=1935,["Farmer Solliden"]=1936,["Apothecary Renferrel"]=1937,["Dalar Dawnweaver"]=1938,["Rot Hide Brute"]=1939,["Rot Hide Plague Weaver"]=1940,["Rot Hide Graverobber"]=1941,["Rot Hide Savage"]=1942,["Raging Rot Hide"]=1943,["Rot Hide Bruiser"]=1944,["Lillith Nefara"]=1946,["Thule Ravenclaw"]=1947,["Snarlmane"]=1948,["Servant of Azora"]=1949,["Rane Yorick"]=1950,["Quinn Yorick"]=1951,["High Executor Hadrec"]=1952,["Lake Skulker"]=1953,["Elder Lake Skulker"]=1954,["Lake Creeper"]=1955,["Elder Lake Creeper"]=1956,["Vile Fin Shorecreeper"]=1957,["Vile Fin Tidecaller"]=1958,["Mountaineer Barleybrew"]=1959,["Pilot Hammerfoot"]=1960,["Mangeclaw"]=1961,["Vidra Hearthstove"]=1963,["Treant"]=1964,["Mountaineer Thalos"]=1965,["Ivar the Foul"]=1971,["Grimson the Pale"]=1972,["Ravenclaw Guardian"]=1973,["Ravenclaw Drudger"]=1974,["Eastvale Lumberjack"]=1975,["Stormwind City Patroller"]=1976,["Senator Mehr Stonehallow"]=1977,["Deathstalker Erland"]=1978,["Dark Iron Ambusher"]=1981,["Nightlash"]=1983,["Young Thistle Boar"]=1984,["Thistle Boar"]=1985,["Webwood Spider"]=1986,["Grell"]=1988,["Grellkin"]=1989,["Tarindrella"]=1992,["Greenpaw"]=1993,["Githyiss the Vile"]=1994,["Strigid Owl"]=1995,["Strigid Screecher"]=1996,["Strigid Hunter"]=1997,["Webwood Lurker"]=1998,["Webwood Venomfang"]=1999,["Webwood Silkspinner"]=2000,["Giant Webwood Spider"]=2001,["Rascal Sprite"]=2002,["Shadow Sprite"]=2003,["Dark Sprite"]=2004,["Vicious Grell"]=2005,["Gnarlpine Ursa"]=2006,["Gnarlpine Gardener"]=2007,["Gnarlpine Warrior"]=2008,["Gnarlpine Shaman"]=2009,["Gnarlpine Defender"]=2010,["Gnarlpine Augur"]=2011,["Gnarlpine Pathfinder"]=2012,["Gnarlpine Avenger"]=2013,["Gnarlpine Totemic"]=2014,["Bloodfeather Harpy"]=2015,["Bloodfeather Rogue"]=2017,["Bloodfeather Sorceress"]=2018,["Bloodfeather Fury"]=2019,["Bloodfeather Wind Witch"]=2020,["Bloodfeather Matriarch"]=2021,["Timberling"]=2022,["Timberling Bark Ripper"]=2025,["Timberling Trampler"]=2027,["Timberling Mire Beast"]=2029,["Elder Timberling"]=2030,["Young Nightsaber"]=2031,["Mangy Nightsaber"]=2032,["Elder Nightsaber"]=2033,["Feral Nightsaber"]=2034,["Lord Melenas"]=2038,["Ursal the Mauler"]=2039,["Ancient Protector"]=2041,["Nightsaber"]=2042,["Nightsaber Stalker"]=2043,["Forlorn Spirit"]=2044,["Andrew Krighton"]=2046,["Raleigh Andrean"]=2050,["Haggard Refugee"]=2053,["Sickly Refugee"]=2054,["Master Apothecary Faranell"]=2055,["Ravenclaw Apparition"]=2056,["Huldar"]=2057,["Deathstalker Faerleia"]=2058,["Councilman Smithers"]=2060,["Councilman Thatcher"]=2061,["Councilman Hendricks"]=2062,["Councilman Wilhelm"]=2063,["Councilman Hartin"]=2064,["Councilman Cooper"]=2065,["Councilman Higarth"]=2066,["Councilman Brunswick"]=2067,["Lord Mayor Morrison"]=2068,["Moonstalker"]=2069,["Moonstalker Runt"]=2070,["Moonstalker Matriarch"]=2071,["Melithar Staghelm"]=2077,["Athridas Bearmantle"]=2078,["Ilthalaine"]=2079,["Denalan"]=2080,["Sentinel Kyra Starsong"]=2081,["Gilshalan Windwalker"]=2082,["Syral Bladeleaf"]=2083,["Natheril Raincaller"]=2084,["Valstag Ironjaw"]=2086,["Giant Wetlands Crocolisk"]=2089,["Ma'ruk Wyrmscale"]=2090,["Chieftain Nek'rosh"]=2091,["Pilot Longbeard"]=2092,["Einar Stonegrip"]=2093,["James Halloran"]=2094,["Tarrel Rockweaver"]=2096,["Harlo Barnaby"]=2097,["Ram"]=2098,["Maiden's Virtue Crewman"]=2099,["Dragonmaw Grunt"]=2102,["Dragonmaw Scout"]=2103,["Captain Stoutfist"]=2104,["Mountaineer Dokkin"]=2105,["Apothecary Berard"]=2106,["Gaerolas Talvethren"]=2107,["Garneg Charskull"]=2108,["Black Rat"]=2110,["Sida"]=2111,["Farrin Daris"]=2112,["Archibald Kava"]=2113,["Faruza"]=2114,["Joshua Kien"]=2115,["Blacksmith Rand"]=2116,["Harold Raims"]=2117,["Abigail Shiel"]=2118,["Dannal Stern"]=2119,["Archmage Ataeric"]=2120,["Shadow Priest Allister"]=2121,["David Trias"]=2122,["Dark Cleric Duesten"]=2123,["Isabella"]=2124,["Maximillion"]=2126,["Rupert Boch"]=2127,["Cain Firesong"]=2128,["Dark Cleric Beryl"]=2129,["Marion Call"]=2130,["Austil de Mon"]=2131,["Carolai Anise"]=2132,["Mrs. Winters"]=2134,["Abe Winters"]=2135,["Oliver Dwor"]=2136,["Eliza Callen"]=2137,["Edwin Harly"]=2140,["Watcher Callahan"]=2142,["Dark Iron Raider"]=2149,["Zenn Foulhoof"]=2150,["Moon Priestess Amara"]=2151,["Gnarlpine Ambusher"]=2152,["Terl Arakor"]=2153,["Sentinel Shayla Nightbreeze"]=2155,["Cracked Golem"]=2156,["Stone Behemoth"]=2157,["Gravelflint Scout"]=2158,["Gravelflint Bonesnapper"]=2159,["Gravelflint Geomancer"]=2160,["Agal"]=2162,["Thistle Bear"]=2163,["Rabid Thistle Bear"]=2164,["Grizzled Thistle Bear"]=2165,["Oakenscowl"]=2166,["Blackwood Pathfinder"]=2167,["Blackwood Warrior"]=2168,["Blackwood Totemic"]=2169,["Blackwood Ursa"]=2170,["Blackwood Shaman"]=2171,["Strider Clutchmother"]=2172,["Reef Frenzy"]=2173,["Coastal Frenzy"]=2174,["Shadowclaw"]=2175,["Cursed Highborne"]=2176,["Writhing Highborne"]=2177,["Wailing Highborne"]=2178,["Stormscale Wave Rider"]=2179,["Stormscale Siren"]=2180,["Stormscale Myrmidon"]=2181,["Stormscale Sorceress"]=2182,["Stormscale Warrior"]=2183,["Lady Moongazer"]=2184,["Darkshore Thresher"]=2185,["Carnivous the Breaker"]=2186,["Elder Darkshore Thresher"]=2187,["Deep Sea Threshadon"]=2188,["Vile Sprite"]=2189,["Wild Grell"]=2190,["Licillin"]=2191,["Firecaller Radison"]=2192,["Crier Goodman"]=2198,["Greymist Raider"]=2201,["Greymist Coastrunner"]=2202,["Greymist Seer"]=2203,["Greymist Netter"]=2204,["Greymist Warrior"]=2205,["Greymist Hunter"]=2206,["Greymist Oracle"]=2207,["Greymist Tidehunter"]=2208,["Deathguard Gavin"]=2209,["Deathguard Royann"]=2210,["Captured Mountaineer"]=2211,["Deth'ryll Satyr"]=2212,["Deathstalker Lesh"]=2214,["High Executor Darthalia"]=2215,["Apothecary Lydon"]=2216,["Zora Guthrek"]=2225,["Karos Razok"]=2226,["Sharlindra"]=2227,["Lieutenant Farren Orinelle"]=2228,["Krusk"]=2229,["Umpi"]=2230,["Pygmy Tide Crawler"]=2231,["Tide Crawler"]=2232,["Encrusted Tide Crawler"]=2233,["Young Reef Crawler"]=2234,["Reef Crawler"]=2235,["Raging Reef Crawler"]=2236,["Moonstalker Sire"]=2237,["Tog'thar"]=2238,["Drull"]=2239,["Syndicate Footpad"]=2240,["Syndicate Thief"]=2241,["Syndicate Spy"]=2242,["Syndicate Sentry"]=2243,["Syndicate Shadow Mage"]=2244,["Syndicate Saboteur"]=2245,["Syndicate Assassin"]=2246,["Syndicate Enforcer"]=2247,["Cave Yeti"]=2248,["Ferocious Yeti"]=2249,["Mountain Yeti"]=2250,["Giant Yeti"]=2251,["Crushridge Ogre"]=2252,["Crushridge Brute"]=2253,["Crushridge Mauler"]=2254,["Crushridge Mage"]=2255,["Crushridge Enforcer"]=2256,["Mug'thol"]=2257,["Maggarrak"]=2258,["Syndicate Rogue"]=2260,["Syndicate Watchman"]=2261,["Marshal Redpath"]=2263,["Hillsbrad Tailor"]=2264,["Hillsbrad Apprentice Blacksmith"]=2265,["Hillsbrad Farmer"]=2266,["Hillsbrad Peasant"]=2267,["Hillsbrad Footman"]=2268,["Hillsbrad Miner"]=2269,["Hillsbrad Sentry"]=2270,["Dalaran Shield Guard"]=2271,["Dalaran Theurgist"]=2272,["Stanley"]=2274,["Enraged Stanley"]=2275,["Magistrate Henry Maleb"]=2276,["Loremaster Dibbs"]=2277,["Melisara"]=2278,["Ravenclaw Regent"]=2283,["Captured Farmer"]=2284,["Count Remington Ridgewell"]=2285,["Crushridge Warmonger"]=2287,["Borgus Stoutarm"]=2299,["Aethalas"]=2302,["Lyranne Feathersong"]=2303,["Captain Ironhill"]=2304,["Foreman Bonds"]=2305,["Baron Vardus"]=2306,["Caretaker Caice"]=2307,["Andrew Brownell"]=2308,["Thomas Arlento"]=2309,["Jamie Nore"]=2310,["Doreen Beltis"]=2311,["Sahvan Bloodshadow"]=2314,["Maquell Ebonwood"]=2315,["Gol'dir"]=2316,["Elysa"]=2317,["Argus Shadow Mage"]=2318,["Syndicate Wizard"]=2319,["Nagaz"]=2320,["Foreststrider Fledgling"]=2321,["Foreststrider"]=2322,["Giant Foreststrider"]=2323,["Blackwood Windtalker"]=2324,["Thamner Pol"]=2326,["Shaina Fuller"]=2327,["Michelle Belle"]=2329,["Karlee Chaddis"]=2330,["Paige Chaddis"]=2331,["Valdred Moray"]=2332,["Henchman Valik"]=2333,["Event Generator 001"]=2334,["Magistrate Burnside"]=2335,["Dark Strand Fanatic"]=2336,["Dark Strand Voidcaller"]=2337,["Twilight Disciple"]=2338,["Twilight Thug"]=2339,["Dun Garok Mountaineer"]=2344,["Dun Garok Rifleman"]=2345,["Dun Garok Priest"]=2346,["Wild Gryphon"]=2347,["Elder Moss Creeper"]=2348,["Domesticated Creeper"]=2349,["Forest Creeper"]=2350,["Gray Bear"]=2351,["Innkeeper Anderson"]=2352,["Vicious Gray Bear"]=2354,["Elder Gray Bear"]=2356,["Merideth Carlson"]=2357,["Dalaran Summoner"]=2358,["Elemental Slave"]=2359,["Hillsbrad Farmhand"]=2360,["Tamara Armstrong"]=2361,["Hemmit Armstrong"]=2362,["Apprentice Honeywell"]=2363,["Neema"]=2364,["Bront Coldcleave"]=2365,["Barkeep Kelly"]=2366,["Donald Rabonne"]=2367,["Daggerspine Shorestalker"]=2368,["Daggerspine Shorehunter"]=2369,["Daggerspine Screamer"]=2370,["Daggerspine Siren"]=2371,["Mudsnout Gnoll"]=2372,["Mudsnout Shaman"]=2373,["Torn Fin Muckdweller"]=2374,["Torn Fin Coastrunner"]=2375,["Torn Fin Oracle"]=2376,["Torn Fin Tidehunter"]=2377,["Kundric Zanden"]=2378,["Caretaker Smithers"]=2379,["Nandar Branson"]=2380,["Micha Yance"]=2381,["Darren Malvew"]=2382,["Lindea Rabonne"]=2383,["Starving Mountain Lion"]=2384,["Foothill Stalker"]=2385,["Alliance Guard"]=2386,["Hillsbrad Councilman"]=2387,["Innkeeper Shay"]=2388,["Zarise"]=2389,["Aranae Venomblood"]=2390,["Serge Hinott"]=2391,["Delia Verana"]=2392,["Christoph Jeffcoat"]=2393,["Mallen Swain"]=2394,["Vinna Wayne"]=2395,["Hans Zandin"]=2396,["Derak Nightfall"]=2397,["Tara Coldgaze"]=2398,["Daryl Stack"]=2399,["Craig Hewitt"]=2400,["Kayren Soothallow"]=2401,["Shara Blazen"]=2402,["Farmer Getz"]=2403,["Blacksmith Verringtan"]=2404,["Tarren Mill Deathguard"]=2405,["Mountain Lion"]=2406,["Hulking Mountain Lion"]=2407,["Snapjaw"]=2408,["Felicia Maline"]=2409,["Magus Wordeen Voidglare"]=2410,["Ricter"]=2411,["Alina"]=2412,["Dermot"]=2413,["Kegan Darkmar"]=2414,["Warden Belamoore"]=2415,["Crushridge Plunderer"]=2416,["Grel'borg the Miser"]=2417,["Deathguard Samsa"]=2418,["Deathguard Humbert"]=2419,["Targ"]=2420,["Muckrake"]=2421,["Glommus"]=2422,["Lord Aliden Perenolde"]=2423,["Guild Banker"]=2424,["Varimathras"]=2425,["Jailor Eston"]=2427,["Jailor Marlgen"]=2428,["Novice Thaivand"]=2429,["Chef Jessen"]=2430,["Jailor Borhuin"]=2431,["Darla Harris"]=2432,["Helcular's Remains"]=2433,["Shadowy Assassin"]=2434,["Southshore Crier"]=2435,["Farmer Kent"]=2436,["Keeper Bel'varil"]=2437,["Bartolo Ginsetti"]=2438,["Major Samuelson"]=2439,["Drunken Footpad"]=2440,["Cow"]=2442,["Narillasanz"]=2447,["Clerk Horrace Whitesteed"]=2448,["Citizen Wilkes"]=2449,["Miner Hackett"]=2450,["Farmer Kalaba"]=2451,["Skhowl"]=2452,["Lo'Grosh"]=2453,["Olivia Burnside"]=2455,["Newton Burnside"]=2456,["John Burnside"]=2457,["Randolph Montague"]=2458,["Mortimer Montague"]=2459,["Barnum Stonemantle"]=2460,["Bailey Stonemantle"]=2461,["Flesh Eating Worm"]=2462,["Commander Aggro'gosh"]=2464,["Far Seer Mok'thardin"]=2465,["Mountaineer Grugelm"]=2466,["Mountaineer Thar"]=2468,["Mountaineer Rharen"]=2469,["Watcher Fraizer"]=2470,["Granistad"]=2473,["Kurdros"]=2474,["Sloth"]=2475,["Gosh-Haldir"]=2476,["Gradok"]=2477,["Haren Swifthoof"]=2478,["Sludge"]=2479,["Bro'kin"]=2480,["Bliztik"]=2481,["Zarena Cromwind"]=2482,["Jaquilina Dramet"]=2483,["Larimaine Purdue"]=2485,["Fin Fizracket"]=2486,["Fleet Master Seahorn"]=2487,["Deeg"]=2488,["Milstaff Stormeye"]=2489,["First Mate Crazz"]=2490,["Whiskey Slim"]=2491,["Lexington Mortaim"]=2492,["Dizzy One-Eye"]=2493,["Privateer Bloads"]=2494,["Drizzlik"]=2495,["Baron Revilgaz"]=2496,["Nimboya"]=2497,["Crank Fizzlebub"]=2498,["Markel Smythe"]=2499,["Captain Hecklebury Smotts"]=2500,["Hillsbrad Foreman"]=2503,["Donyal Tovald"]=2504,["Saltwater Snapjaw"]=2505,["Mountaineer Harn"]=2506,["Mountaineer Uthan"]=2507,["Mountaineer Wuar"]=2508,["Mountaineer Cragg"]=2509,["Mountaineer Ozmok"]=2510,["Mountaineer Bludd"]=2511,["Mountaineer Roghan"]=2512,["Mountaineer Janha"]=2513,["Mountaineer Modax"]=2514,["Mountaineer Fazgard"]=2515,["Mountaineer Kamdar"]=2516,["Mountaineer Langarr"]=2517,["Mountaineer Swarth"]=2518,["Kin'weelay"]=2519,["Remote-Controlled Golem"]=2520,["Skymane Gorilla"]=2521,["Jaguero Stalker"]=2522,["Searing Totem"]=2523,["Mountaineer Haggis"]=2524,["Mountaineer Barn"]=2525,["Mountaineer Morlic"]=2526,["Mountaineer Angst"]=2527,["Mountaineer Haggil"]=2528,["Son of Arugal"]=2529,["Yenniku"]=2530,["Minion of Doane"]=2531,["Donna"]=2532,["William"]=2533,["Zanzil the Outcast"]=2534,["Jon-Jon the Crow"]=2536,["Ambermill Serpent"]=2540,["Lord Sakrasis"]=2541,["Catelyn the Blade"]=2542,["Archmage Ansirem Runeweaver"]=2543,["Southern Sand Crawler"]=2544,["Fleet Master Firallon"]=2546,["Ironpatch"]=2547,["Captain Keelhaul"]=2548,["Garr Salthoof"]=2549,["Captain Stillwater"]=2550,["Brutus"]=2551,["Witherbark Troll"]=2552,["Witherbark Shadowcaster"]=2553,["Witherbark Axe Thrower"]=2554,["Witherbark Witch Doctor"]=2555,["Witherbark Headhunter"]=2556,["Witherbark Shadow Hunter"]=2557,["Witherbark Berserker"]=2558,["Highland Strider"]=2559,["Highland Thrasher"]=2560,["Highland Fleshstalker"]=2561,["Boulderfist Ogre"]=2562,["Plains Creeper"]=2563,["Boulderfist Enforcer"]=2564,["Giant Plains Creeper"]=2565,["Boulderfist Brute"]=2566,["Boulderfist Magus"]=2567,["Boulderfist Mauler"]=2569,["Boulderfist Shaman"]=2570,["Boulderfist Lord"]=2571,["Drywhisker Kobold"]=2572,["Drywhisker Surveyor"]=2573,["Drywhisker Digger"]=2574,["Dark Iron Supplier"]=2575,["Dark Iron Shadowcaster"]=2577,["Young Mesa Buzzard"]=2578,["Mesa Buzzard"]=2579,["Elder Mesa Buzzard"]=2580,["Dabyrie Militia"]=2581,["Dabyrie Laborer"]=2582,["Stromgarde Troll Hunter"]=2583,["Stromgarde Defender"]=2584,["Stromgarde Soldier"]=2585,["Syndicate Highwayman"]=2586,["Syndicate Pathstalker"]=2587,["Syndicate Prowler"]=2588,["Syndicate Mercenary"]=2589,["Syndicate Conjuror"]=2590,["Syndicate Magus"]=2591,["Rumbling Exile"]=2592,["Sprogger"]=2594,["Daggerspine Raider"]=2595,["Daggerspine Sorceress"]=2596,["Lord Falconcrest"]=2597,["Darbel Montrose"]=2598,["Otto"]=2599,["Singer"]=2600,["Foulbelly"]=2601,["Ruul Onestone"]=2602,["Kovork"]=2603,["Molok the Crusher"]=2604,["Zalas Witherbark"]=2605,["Nimar the Slayer"]=2606,["Prince Galen Trollbane"]=2607,["Commander Amaren"]=2608,["Geomancer Flintdagger"]=2609,["Shakes O'Breen"]=2610,["Fozruk"]=2611,["Lieutenant Valorcall"]=2612,["Air Force Alarm Bot (Alliance)"]=2614,["Air Force Alarm Bot (Horde)"]=2615,["Privateer Groy"]=2616,["Hammerfall Peon"]=2618,["Hammerfall Grunt"]=2619,["Prairie Dog"]=2620,["Hammerfall Guardian"]=2621,["Sly Garrett"]=2622,["Spirit of Old"]=2623,["Gazban"]=2624,["Viznik Goldgrubber"]=2625,["Old Man Heming"]=2626,["Grarnik Goodstitch"]=2627,["Dalaran Worker"]=2628,["Earthbind Totem"]=2630,["Princess Poobah"]=2634,["Elder Snapjaw Crocolisk"]=2635,["Blackwater Deckhand"]=2636,["Syndicate Bomb"]=2637,["Syndicate Spectre"]=2638,["Vilebranch Axe Thrower"]=2639,["Vilebranch Witch Doctor"]=2640,["Vilebranch Headhunter"]=2641,["Vilebranch Shadowcaster"]=2642,["Vilebranch Berserker"]=2643,["Vilebranch Hideskinner"]=2644,["Vilebranch Shadow Hunter"]=2645,["Vilebranch Blood Drinker"]=2646,["Vilebranch Soul Eater"]=2647,["Vilebranch Aman'zasi Guard"]=2648,["Witherbark Scalper"]=2649,["Witherbark Zealot"]=2650,["Witherbark Hideskinner"]=2651,["Witherbark Venomblood"]=2652,["Witherbark Sadist"]=2653,["Witherbark Caller"]=2654,["Green Sludge"]=2655,["Jade Ooze"]=2656,["Trained Razorbeak"]=2657,["Razorbeak Gryphon"]=2658,["Razorbeak Skylord"]=2659,["Narkk"]=2663,["Kelsey Yance"]=2664,["Ward of Laze"]=2667,["Danielle Zipstitch"]=2668,["Sheri Zipstitch"]=2669,["Xizk Goodstitch"]=2670,["Mechanical Squirrel"]=2671,["Cowardly Crosby"]=2672,["Target Dummy"]=2673,["Advanced Target Dummy"]=2674,["Explosive Sheep"]=2675,["Compact Harvest Reaper"]=2676,["Mechanical Dragonling"]=2678,["Wenna Silkbeard"]=2679,["Vilebranch Wolf Pup"]=2680,["Vilebranch Raiding Wolf"]=2681,["Fradd Swiftgear"]=2682,["Namdo Bizzfizzle"]=2683,["Rizz Loosebolt"]=2684,["Mazk Snipeshot"]=2685,["Witherbark Broodguard"]=2686,["Gnaz Blunderflame"]=2687,["Ruppo Zipcoil"]=2688,["Highvale Outrunner"]=2691,["Highvale Scout"]=2692,["Highvale Marksman"]=2693,["Highvale Ranger"]=2694,["Sara Balloo"]=2695,["Foggy MacKreel"]=2696,["Clyde Ranthal"]=2697,["George Candarte"]=2698,["Rikqiz"]=2699,["Captain Nials"]=2700,["Dustbelcher Ogre"]=2701,["Zengu"]=2703,["Hanashi"]=2704,["Brewmeister Bilger"]=2705,["Tor'gan"]=2706,["Shadra"]=2707,["Archmage Malin"]=2708,["Phin Odelic"]=2711,["Quae"]=2712,["Kinelory"]=2713,["Forsaken Courier"]=2714,["Dustbelcher Brute"]=2715,["Dustbelcher Wyrmhunter"]=2716,["Dustbelcher Mauler"]=2717,["Dustbelcher Shaman"]=2718,["Dustbelcher Lord"]=2719,["Dustbelcher Ogre Mage"]=2720,["Forsaken Bodyguard"]=2721,["Stone Golem"]=2723,["Scalding Whelp"]=2725,["Scorched Guardian"]=2726,["Crag Coyote"]=2727,["Feral Crag Coyote"]=2728,["Elder Crag Coyote"]=2729,["Rabid Crag Coyote"]=2730,["Ridge Stalker"]=2731,["Ridge Huntress"]=2732,["Apothecary Jorell"]=2733,["Ridge Stalker Patriarch"]=2734,["Lesser Rock Elemental"]=2735,["Greater Rock Elemental"]=2736,["Durtham Greldon"]=2737,["Stromgarde Cavalryman"]=2738,["Shadowforge Tunneler"]=2739,["Shadowforge Darkweaver"]=2740,["Shadowforge Chanter"]=2742,["Shadowforge Warrior"]=2743,["Shadowforge Commander"]=2744,["Ambassador Infernus"]=2745,["Archaedas"]=2748,["Barricade"]=2749,["War Golem"]=2751,["Rumbler"]=2752,["Barnabus"]=2753,["Anathemus"]=2754,["Myzrael"]=2755,["Blacklash"]=2757,["Hematus"]=2759,["Burning Exile"]=2760,["Cresting Exile"]=2761,["Thundering Exile"]=2762,["Thenan"]=2763,["Sleeby"]=2764,["Znort"]=2765,["Lolo the Lookout"]=2766,["First Mate Nilzlix"]=2767,["Professor Phizzlethorpe"]=2768,["Captain Steelgut"]=2769,["Tallow"]=2770,["Drum Fel"]=2771,["Korin Fel"]=2772,["Or'Kalar"]=2773,["Doctor Draxlegauge"]=2774,["Daggerspine Marauder"]=2775,["Vengeful Surge"]=2776,["Deckhand Moishe"]=2778,["Prince Nazjak"]=2779,["Caretaker Nevlin"]=2780,["Caretaker Weston"]=2781,["Caretaker Alaric"]=2782,["Marez Cowl"]=2783,["King Magni Bronzebeard"]=2784,["Theldurin the Lost"]=2785,["Gerrig Bonegrip"]=2786,["Zaruk"]=2787,["Apprentice Kryten"]=2788,["Skuerto"]=2789,["Grand Mason Marblesten"]=2790,["Enraged Rock Elemental"]=2791,["Gor'mul"]=2792,["Kor'gresh Coldrage"]=2793,["Summoned Guardian"]=2794,["Faelyssa"]=2796,["Hovrak Gutrender"]=2797,["Pand Stonebinder"]=2798,["Lucian Fenner"]=2799,["Tresa MacGregor"]=2801,["Susan Tillinghast"]=2802,["Malygen"]=2803,["Kurden Bloodclaw"]=2804,["Deneb Walker"]=2805,["Bale"]=2806,["Vikki Lonsav"]=2808,["Hammon Karwn"]=2810,["Drovnar Strongbrew"]=2812,["Narj Deepslice"]=2814,["Androd Fadran"]=2816,["Rigglefuzz"]=2817,["Slagg"]=2818,["Tunkk"]=2819,["Graud"]=2820,["Keena"]=2821,["Starving Buzzard"]=2829,["Parched Buzzard"]=2830,["Giant Buzzard"]=2831,["Nixxrax Fillamug"]=2832,["Myizz Luckycatch"]=2834,["Cedrik Prose"]=2835,["Brikk Keencraft"]=2836,["Jaxin Chong"]=2837,["Crazk Sparks"]=2838,["Haren Kanmae"]=2839,["Kizz Bluntstrike"]=2840,["Wigcik"]=2842,["Jutak"]=2843,["Hurklor"]=2844,["Fargon Mortalak"]=2845,["Blixrez Goodstitch"]=2846,["Jansen Underwood"]=2847,["Glyx Brewright"]=2848,["Qixdi Goodstitch"]=2849,["Broken Tooth"]=2850,["Urda"]=2851,["Enslaved Druid of the Talon"]=2852,["Freed Druid of the Talon"]=2853,["Snang"]=2855,["Angrun"]=2856,["Thund"]=2857,["Gringer"]=2858,["Gyll"]=2859,["Sigrun Ironhew"]=2860,["Gorrik"]=2861,["[UNUSED] Henria Derth"]=2870,["Grunenstur Balindom"]=2876,["Peria Lamenur"]=2878,["Karrina Mekenda"]=2879,["[UNUSED] Hurom Juggendolf"]=2880,["Durdek Karrin"]=2881,["Prismatic Exile"]=2887,["Garek"]=2888,["Stonevault Seer"]=2892,["Stonevault Bonesnapper"]=2893,["Stonevault Shaman"]=2894,["Dustbelcher Warrior"]=2906,["Dustbelcher Mystic"]=2907,["Grawl"]=2908,["Hammertoe Grez"]=2909,["Prospector Ryedol"]=2910,["Archaeologist Flagongut"]=2911,["Chief Archaeologist Greywhisker"]=2912,["Archaeologist Hollee"]=2913,["Snake"]=2914,["Hammertoe's Spirit"]=2915,["Historian Karnik"]=2916,["Prospector Remtravel"]=2917,["Advisor Belgrum"]=2918,["Fam'retor Guardian"]=2919,["Lucien Tosselwrench"]=2920,["Lotwil Veriatus"]=2921,["Servo"]=2922,["Mangy Silvermane"]=2923,["Silvermane Wolf"]=2924,["Silvermane Howler"]=2925,["Silvermane Stalker"]=2926,["Vicious Owlbeast"]=2927,["Primitive Owlbeast"]=2928,["Savage Owlbeast"]=2929,["Sentinel Glynda Nal'Shea"]=2930,["Zaricotl"]=2931,["Magregan Deepshadow"]=2932,["Keeper Bel'dugur"]=2934,["Dagun the Ravenous"]=2937,["Lanie Reed"]=2941,["Ransin Donner"]=2943,["Boss Tho'grun"]=2944,["Murdaloc"]=2945,["Puppet of Helcular"]=2946,["Harken Windtotem"]=2947,["Mull Thunderhorn"]=2948,["Palemane Tanner"]=2949,["Palemane Skinner"]=2950,["Palemane Poacher"]=2951,["Bristleback Invaders"]=2952,["Bristleback Shaman"]=2953,["Bristleback Battleboar"]=2954,["Plainstrider"]=2955,["Adult Plainstrider"]=2956,["Elder Plainstrider"]=2957,["Prairie Wolf"]=2958,["Prairie Stalker"]=2959,["Prairie Wolf Alpha"]=2960,["Mountain Cougar"]=2961,["Windfury Harpy"]=2962,["Windfury Wind Witch"]=2963,["Windfury Sorceress"]=2964,["Windfury Matriarch"]=2965,["Young Battleboar"]=2966,["Galak Centaur"]=2967,["Galak Outrunner"]=2968,["Wiry Swoop"]=2969,["Swoop"]=2970,["Taloned Swoop"]=2971,["Kodo Calf"]=2972,["Kodo Bull"]=2973,["Kodo Matriarch"]=2974,["Venture Co. Hireling"]=2975,["Venture Co. Laborer"]=2976,["Venture Co. Taskmaster"]=2977,["Venture Co. Worker"]=2978,["Venture Co. Supervisor"]=2979,["Grull Hawkwind"]=2980,["Chief Hawkwind"]=2981,["Seer Graytongue"]=2982,["The Plains Vision"]=2983,["Seer Wiserunner"]=2984,["Ruul Eagletalon"]=2985,["Dorn Plainstalker"]=2986,["Eyahn Eagletalon"]=2987,["Morin Cloudstalker"]=2988,["Bael'dun Digger"]=2989,["Bael'dun Appraiser"]=2990,["Greatmother Hawkwind"]=2991,["Healing Ward V"]=2992,["Baine Bloodhoof"]=2993,["Ancestral Spirit"]=2994,["Tal"]=2995,["Torn"]=2996,["Jyn Stonehoof"]=2997,["Karn Stonehoof"]=2998,["Taur Stonehoof"]=2999,["Gibbert"]=3000,["Brek Stonehoof"]=3001,["Kurm Stonehoof"]=3002,["Fyr Mistrunner"]=3003,["Tepa"]=3004,["Mahu"]=3005,["Una"]=3007,["Mak"]=3008,["Bena Winterhoof"]=3009,["Mani Winterhoof"]=3010,["Teg Dawnstrider"]=3011,["Nata Dawnstrider"]=3012,["Komin Winterhoof"]=3013,["Nida Winterhoof"]=3014,["Kuna Thunderhorn"]=3015,["Tand"]=3016,["Nan Mistrunner"]=3017,["Hogor Thunderhoof"]=3018,["Delgo Ragetotem"]=3019,["Etu Ragetotem"]=3020,["Kard Ragetotem"]=3021,["Sunn Ragetotem"]=3022,["Sura Wildmane"]=3023,["Tah Winterhoof"]=3024,["Kaga Mistrunner"]=3025,["Aska Mistrunner"]=3026,["Naal Mistrunner"]=3027,["Kah Mistrunner"]=3028,["Sewa Mistrunner"]=3029,["Siln Skychaser"]=3030,["Tigor Skychaser"]=3031,["Beram Skychaser"]=3032,["Turak Runetotem"]=3033,["Sheal Runetotem"]=3034,["Flatland Cougar"]=3035,["Kym Wildmane"]=3036,["Sheza Wildmane"]=3037,["Kary Thunderhorn"]=3038,["Holt Thunderhorn"]=3039,["Urek Thunderhorn"]=3040,["Torm Ragetotem"]=3041,["Sark Ragetotem"]=3042,["Ker Ragetotem"]=3043,["Miles Welsh"]=3044,["Malakai Cross"]=3045,["Father Cobb"]=3046,["Archmage Shymm"]=3047,["Ursyn Ghull"]=3048,["Thurston Xane"]=3049,["Veren Tallstrider"]=3050,["Supervisor Fizsprocket"]=3051,["Skorn Whitecloud"]=3052,["Synge"]=3053,["Zarlman Two-Moons"]=3054,["Maur Raincaller"]=3055,["Ghost Howl"]=3056,["Cairne Bloodhoof"]=3057,["Arra'chea"]=3058,["Harutt Thunderhorn"]=3059,["Gart Mistrunner"]=3060,["Lanka Farshot"]=3061,["Meela Dawnstrider"]=3062,["Krang Stonehoof"]=3063,["Gennia Runetotem"]=3064,["Yaw Sharpmane"]=3065,["Narm Skychaser"]=3066,["Pyall Silentstride"]=3067,["Mazzranache"]=3068,["Chaw Stronghide"]=3069,["Kawnie Softbreeze"]=3072,["Marjak Keenblade"]=3073,["Varia Hardhide"]=3074,["Bronk Steelrage"]=3075,["Moorat Longstride"]=3076,["Mahnott Roughwound"]=3077,["Kennah Hawkseye"]=3078,["Varg Windwhisper"]=3079,["Harant Ironbrace"]=3080,["Wunna Darkmane"]=3081,["Honor Guard"]=3083,["Bluffwatcher"]=3084,["Gloria Femmel"]=3085,["Gretchen Vogel"]=3086,["Crystal Boughman"]=3087,["Henry Chapal"]=3088,["Sherman Femmel"]=3089,["Gerald Crawley"]=3090,["Franklin Hamar"]=3091,["Tagain"]=3092,["Grod"]=3093,["Unseen"]=3094,["Fela"]=3095,["Captured Servant of Azora"]=3096,["Bernard Brubaker"]=3097,["Mottled Boar"]=3098,["Dire Mottled Boar"]=3099,["Elder Mottled Boar"]=3100,["Vile Familiar"]=3101,["Felstalker"]=3102,["Makrura Clacker"]=3103,["Makrura Shellhide"]=3104,["Makrura Snapclaw"]=3105,["Surf Crawler"]=3106,["Mature Surf Crawler"]=3107,["Encrusted Surf Crawler"]=3108,["Dreadmaw Crocolisk"]=3110,["Razormane Quilboar"]=3111,["Razormane Scout"]=3112,["Razormane Dustrunner"]=3113,["Razormane Battleguard"]=3114,["Dustwind Harpy"]=3115,["Dustwind Pillager"]=3116,["Dustwind Savage"]=3117,["Dustwind Storm Witch"]=3118,["Kolkar Drudge"]=3119,["Kolkar Outrunner"]=3120,["Durotar Tiger"]=3121,["Bloodtalon Taillasher"]=3122,["Bloodtalon Scythemaw"]=3123,["Scorpid Worker"]=3124,["Clattering Scorpid"]=3125,["Armored Scorpid"]=3126,["Venomtail Scorpid"]=3127,["Kul Tiras Sailor"]=3128,["Kul Tiras Marine"]=3129,["Thunder Lizard"]=3130,["Lightning Hide"]=3131,["Herble Baubbletump"]=3133,["Kzixx"]=3134,["Malissa"]=3135,["Clarise Gnarltree"]=3136,["Matt Johnson"]=3137,["Scott Carevin"]=3138,["Gar'Thok"]=3139,["Lar Prowltusk"]=3140,["Makrura Elder"]=3141,["Orgnil Soulscar"]=3142,["Gornek"]=3143,["Eitrigg"]=3144,["Zureetha Fargaze"]=3145,["Furl Scornbrow"]=3147,["Nez'raz"]=3149,["Hin Denburg"]=3150,["Frang"]=3153,["Jen'shan"]=3154,["Rwag"]=3155,["Nartok"]=3156,["Shikrik"]=3157,["Duokna"]=3158,["Kzan Thornslash"]=3159,["Huklah"]=3160,["Rarc"]=3161,["Burdrak Harglhelm"]=3162,["Uhgar"]=3163,["Jark"]=3164,["Ghrawt"]=3165,["Cutac"]=3166,["Wuark"]=3167,["Flakk"]=3168,["Tarshaw Jaggedscar"]=3169,["Kaplak"]=3170,["Thotar"]=3171,["Dhugru Gorelust"]=3172,["Swart"]=3173,["Dwukk"]=3174,["Krunn"]=3175,["Turuk Amberstill"]=3177,["Stuart Fleming"]=3178,["Harold Riggs"]=3179,["Dark Iron Entrepreneur"]=3180,["Fremal Doohickey"]=3181,["Junder Brokk"]=3182,["Yarrog Baneshadow"]=3183,["Miao'zan"]=3184,["Mishiki"]=3185,["K'waii"]=3186,["Tai'tasi"]=3187,["Master Gadrin"]=3188,["Kor'ghan"]=3189,["Rhinag"]=3190,["Cook Torka"]=3191,["Lieutenant Benedict"]=3192,["Misha Tor'kren"]=3193,["Vel'rin Fang"]=3194,["Burning Blade Thug"]=3195,["Burning Blade Neophyte"]=3196,["Burning Blade Fanatic"]=3197,["Burning Blade Apprentice"]=3198,["Burning Blade Cultist"]=3199,["Fizzle Darkclaw"]=3203,["Gazz'uz"]=3204,["Zalazane"]=3205,["Voodoo Troll"]=3206,["Hexed Troll"]=3207,["Margoz"]=3208,["Brave Windfeather"]=3209,["Brave Proudsnout"]=3210,["Brave Lightninghorn"]=3211,["Brave Ironhorn"]=3212,["Brave Running Wolf"]=3213,["Brave Greathoof"]=3214,["Brave Strongbash"]=3215,["Neeru Fireblade"]=3216,["Brave Dawneagle"]=3217,["Brave Swiftwind"]=3218,["Brave Leaping Deer"]=3219,["Brave Darksky"]=3220,["Brave Rockhorn"]=3221,["Brave Wildrunner"]=3222,["Brave Rainchaser"]=3223,["Brave Cloudmane"]=3224,["Corrupted Mottled Boar"]=3225,["Corrupted Scorpid"]=3226,["Corrupted Bloodtalon Scythemaw"]=3227,["Corrupted Surf Crawler"]=3228,["Nazgrel"]=3230,["Corrupted Dreadmaw Crocolisk"]=3231,["Bristleback Interloper"]=3232,["Lorekeeper Raintotem"]=3233,["Lost Barrens Kodo"]=3234,["Greater Barrens Kodo"]=3235,["Barrens Kodo"]=3236,["Wooly Kodo"]=3237,["Stormhide"]=3238,["Thunderhead"]=3239,["Stormsnout"]=3240,["Savannah Patriarch"]=3241,["Zhevra Runner"]=3242,["Savannah Highmane"]=3243,["Greater Plainstrider"]=3244,["Ornery Plainstrider"]=3245,["Fleeting Plainstrider"]=3246,["Thunderhawk Hatchling"]=3247,["Barrens Giraffe"]=3248,["Greater Thunderhawk"]=3249,["Silithid Creeper"]=3250,["Silithid Grub"]=3251,["Silithid Swarmer"]=3252,["Silithid Harvester"]=3253,["Sunscale Lashtail"]=3254,["Sunscale Screecher"]=3255,["Sunscale Scytheclaw"]=3256,["Ishamuhale"]=3257,["Bristleback Hunter"]=3258,["Bristleback Water Seeker"]=3260,["Bristleback Thornweaver"]=3261,["Bristleback Geomancer"]=3263,["Razormane Hunter"]=3265,["Razormane Defender"]=3266,["Razormane Plunderer"]=3267,["Razormane Thornweaver"]=3268,["Razormane Geomancer"]=3269,["Elder Mystic Razorsnout"]=3270,["Razormane Mystic"]=3271,["Kolkar Wrangler"]=3272,["Kolkar Stormer"]=3273,["Kolkar Pack Runner"]=3274,["Kolkar Marauder"]=3275,["Witchwing Harpy"]=3276,["Witchwing Roguefeather"]=3277,["Witchwing Slayer"]=3278,["Witchwing Ambusher"]=3279,["Witchwing Windcaller"]=3280,["Sarkoth"]=3281,["Venture Co. Mercenary"]=3282,["Venture Co. Enforcer"]=3283,["Venture Co. Drudger"]=3284,["Venture Co. Peon"]=3285,["Venture Co. Overseer"]=3286,["Hana'zua"]=3287,["Spirit of Minshina"]=3289,["Deek Fizzlebizz"]=3290,["Greishan Ironstove"]=3291,["Brewmaster Drohn"]=3292,["Rezlak"]=3293,["Ophek"]=3294,["Sludge Anomaly"]=3295,["Orgrimmar Grunt"]=3296,["Sen'jin Watcher"]=3297,["Gabrielle Chase"]=3298,["Adder"]=3300,["Morgan Ladimore"]=3301,["Master Vornal"]=3304,["Grisha"]=3305,["Keldas"]=3306,["Karus"]=3309,["Doras"]=3310,["Olvia"]=3312,["Trak'gen"]=3313,["Urtharo"]=3314,["Tor'phan"]=3315,["Handor"]=3316,["Ollanus"]=3317,["Koma"]=3318,["Sana"]=3319,["Soran"]=3320,["Morgum"]=3321,["Kaja"]=3322,["Horthus"]=3323,["Grol'dar"]=3324,["Mirket"]=3325,["Zevrost"]=3326,["Gest"]=3327,["Ormok"]=3328,["Kor'jus"]=3329,["Muragus"]=3330,["Kareth"]=3331,["Lumak"]=3332,["Shankys"]=3333,["Rekkul"]=3334,["Hagrus"]=3335,["Takrin Pathseeker"]=3336,["Kargal Battlescar"]=3337,["Sergra Darkthorn"]=3338,["Captain Thalo'thas Brightsun"]=3339,["Gann Stonespire"]=3341,["Shan'ti"]=3342,["Grelkor"]=3343,["Kardris Dreamseeker"]=3344,["Godan"]=3345,["Kithas"]=3346,["Yelmak"]=3347,["Kor'geld"]=3348,["Ukra'nor"]=3349,["Asoran"]=3350,["Magenius"]=3351,["Ormak Grimshot"]=3352,["Grezz Ragefist"]=3353,["Sorek"]=3354,["Saru Steelfury"]=3355,["Sumi"]=3356,["Makaru"]=3357,["Gorina"]=3358,["Kiro"]=3359,["Koru"]=3360,["Shoma"]=3361,["Ogunaro Wolfrunner"]=3362,["Magar"]=3363,["Borya"]=3364,["Karolek"]=3365,["Tamar"]=3366,["Felika"]=3367,["Borstan"]=3368,["Gotri"]=3369,["Urtrun Clanbringer"]=3370,["Tamaro"]=3371,["Sarlek"]=3372,["Arnok"]=3373,["Bael'dun Excavator"]=3374,["Bael'dun Foreman"]=3375,["Bael'dun Soldier"]=3376,["Bael'dun Rifleman"]=3377,["Bael'dun Officer"]=3378,["Burning Blade Bruiser"]=3379,["Burning Blade Acolyte"]=3380,["Southsea Brigand"]=3381,["Southsea Cannoneer"]=3382,["Southsea Cutthroat"]=3383,["Southsea Privateer"]=3384,["Theramore Marine"]=3385,["Theramore Preserver"]=3386,["Jorn Skyseer"]=3387,["Mahren Skyseer"]=3388,["Regthar Deathgate"]=3389,["Apothecary Helbrim"]=3390,["Gazlowe"]=3391,["Prospector Khazgorm"]=3392,["Captain Fairmount"]=3393,["Barak Kodobane"]=3394,["Verog the Dervish"]=3395,["Hezrul Bloodmark"]=3396,["Kolkar Bloodcharger"]=3397,["Gesharahan"]=3398,["Zamja"]=3399,["Xen'to"]=3400,["Shenthul"]=3401,["Zando'zan"]=3402,["Sian'tsu"]=3403,["Jandi"]=3404,["Zeal'aya"]=3405,["Xor'juul"]=3406,["Sian'dur"]=3407,["Zel'mak"]=3408,["Zendo'jian"]=3409,["Jin'sora"]=3410,["Denni'ka"]=3411,["Nogg"]=3412,["Sovik"]=3413,["General Twinbraid"]=3414,["Savannah Huntress"]=3415,["Savannah Matriarch"]=3416,["Living Flame"]=3417,["Kirge Sternhorn"]=3418,["Apothecary Zamah"]=3419,["Feegly the Exiled"]=3421,["Thunderhawk Cloudscraper"]=3424,["Savannah Prowler"]=3425,["Zhevra Charger"]=3426,["Korran"]=3428,["Thork"]=3429,["Mangletooth"]=3430,["Grenthar"]=3431,["Mankrik"]=3432,["Tatternack Steelforge"]=3433,["Nak"]=3434,["Lok Orcbane"]=3435,["Kuz"]=3436,["Kreenig Snarlsnout"]=3438,["Wizzlecrank's Shredder"]=3439,["Melor Stonehoof"]=3441,["Sputtervalve"]=3442,["Grub"]=3443,["Dig Rat"]=3444,["Supervisor Lugwizzle"]=3445,["Mebok Mizzyrix"]=3446,["Pawe Mistrunner"]=3447,["Tonga Runetotem"]=3448,["Darsok Swiftdagger"]=3449,["Defias Companion"]=3450,["Pilot Wizzlecrank"]=3451,["Serena Bloodfeather"]=3452,["Wharfmaster Dizzywig"]=3453,["Cannoneer Smythe"]=3454,["Cannoneer Whessan"]=3455,["Razormane Pathfinder"]=3456,["Razormane Stalker"]=3457,["Razormane Seer"]=3458,["Razormane Warfrenzy"]=3459,["Oasis Snapjaw"]=3461,["Elder Barrens Giraffe"]=3462,["Wandering Barrens Giraffe"]=3463,["Gazrog"]=3464,["Gilthares Firebough"]=3465,["Zhevra Courser"]=3466,["Baron Longshore"]=3467,["Ancient of Lore"]=3468,["Ancient of War"]=3469,["Rathorian"]=3470,["Tinkerer Sniggles"]=3471,["Washte Pawne"]=3472,["Owatanka"]=3473,["Lakota'mani"]=3474,["Echeyakee"]=3475,["Isha Awak"]=3476,["Hraq"]=3477,["Traugh"]=3478,["Nargal Deatheye"]=3479,["Moorane Hearthgrain"]=3480,["Barg"]=3481,["Tari'qa"]=3482,["Jahan Hawkwing"]=3483,["Kil'hala"]=3484,["Wrahk"]=3485,["Halija Whitestrider"]=3486,["Kalyimah Stormcloud"]=3487,["Uthrok"]=3488,["Zargh"]=3489,["Hula'mahi"]=3490,["Ironzar"]=3491,["Vexspindle"]=3492,["Grazlix"]=3493,["Tinkerwiz"]=3494,["Gagsprocket"]=3495,["Fuzruckle"]=3496,["Kilxx"]=3497,["Jazzik"]=3498,["Ranik"]=3499,["Tarhus"]=3500,["Horde Guard"]=3501,["Ratchet Bruiser"]=3502,["Silithid Protector"]=3503,["Gil"]=3504,["Pat"]=3505,["Andi"]=3507,["Mikey"]=3508,["Geoff"]=3509,["Twain"]=3510,["Steven"]=3511,["Jimmy"]=3512,["Miss Danna"]=3513,["Tenaron Stormgrip"]=3514,["Corithras Moonrage"]=3515,["Arch Druid Fandral Staghelm"]=3516,["Rellian Greenspyre"]=3517,["Thomas Miller"]=3518,["Sentinel Arynia Cloudsbreak"]=3519,["Ol' Emma"]=3520,["Ak'Zeloth"]=3521,["Constance Brisboise"]=3522,["Bowen Brisboise"]=3523,["Spirit Wolf"]=3524,["Healing Stream Totem"]=3527,["Pyrewood Armorer"]=3528,["Moonrage Armorer"]=3529,["Pyrewood Tailor"]=3530,["Moonrage Tailor"]=3531,["Pyrewood Leatherworker"]=3532,["Moonrage Leatherworker"]=3533,["Wallace the Blind"]=3534,["Blackmoss the Fetid"]=3535,["Kris Legace"]=3536,["Zixil"]=3537,["Overwatch Mark I"]=3538,["Ott"]=3539,["Hal McAllister"]=3540,["Sarah Raycroft"]=3541,["Jaysin Lanyda"]=3542,["Robert Aebischer"]=3543,["Jason Lemieux"]=3544,["Claude Erksine"]=3545,["Bernie Heisten"]=3546,["Hamlin Atkins"]=3547,["Selina Weston"]=3548,["Shelene Rhobart"]=3549,["Martine Tramblay"]=3550,["Patrice Dwyer"]=3551,["Alexandre Lefevre"]=3552,["Sebastian Meloche"]=3553,["Andrea Boynton"]=3554,["Johan Focht"]=3555,["Andrew Hilbert"]=3556,["Guillaume Sorouy"]=3557,["Healing Ward"]=3560,["Kyrai"]=3561,["Alaindia"]=3562,["Flatland Prowler"]=3566,["Tallonkai Swiftroot"]=3567,["Mist"]=3568,["Bogling"]=3569,["Cleansed Timberling"]=3570,["Teldrassil Sentinel"]=3571,["Zizzek"]=3572,["Mana Spring Totem"]=3573,["Ambermill Brewmaster"]=3577,["Ambermill Miner"]=3578,["Stoneclaw Totem"]=3579,["Crafticus Rabbitus"]=3580,["Sewer Beast"]=3581,["Aman"]=3582,["Barithras Moonshade"]=3583,["Therylune"]=3584,["Therysil"]=3585,["Miner Johnson"]=3586,["Lyrai"]=3587,["Khardan Proudblade"]=3588,["Keina"]=3589,["Janna Brightmoon"]=3590,["Freja Nightwing"]=3591,["Andiss"]=3592,["Alyissia"]=3593,["Frahun Shadewhisper"]=3594,["Shanda"]=3595,["Ayanna Everstride"]=3596,["Mardant Strongoak"]=3597,["Kyra Windblade"]=3598,["Jannok Breezesong"]=3599,["Laurna Morninglight"]=3600,["Dazalar"]=3601,["Kal"]=3602,["Cyndra Kindwhisper"]=3603,["Malorne Bladeleaf"]=3604,["Nadyia Maneweaver"]=3605,["Alanna Raveneye"]=3606,["Androl Oakhand"]=3607,["Aldia"]=3608,["Shalomon"]=3609,["Jeena Featherbow"]=3610,["Brannol Eaglemoon"]=3611,["Sinda"]=3612,["Meri Ironweave"]=3613,["Narret Shadowgrove"]=3614,["Devrak"]=3615,["Onu"]=3616,["Lordaeron Citizen"]=3617,["Ghost Saber"]=3619,["Harruk"]=3620,["Kurll"]=3621,["Grokor"]=3622,["Zudd"]=3624,["Rarck"]=3625,["Jenn Langston"]=3626,["Erich Lohan"]=3627,["Steven Lohan"]=3628,["David Langston"]=3629,["Deviate Coiler"]=3630,["Deviate Stinglash"]=3631,["Deviate Creeper"]=3632,["Deviate Slayer"]=3633,["Deviate Stalker"]=3634,["Deviate Ravager"]=3636,["Deviate Guardian"]=3637,["Devouring Ectoplasm"]=3638,["Sentinel Tysha Moonblade"]=3639,["Evolving Ectoplasm"]=3640,["Deviate Lurker"]=3641,["Cerellean Whiteclaw"]=3644,["Thundris Windweaver"]=3649,["Asterion"]=3650,["Trigore the Lasher"]=3652,["Kresh"]=3653,["Mutanus the Devourer"]=3654,["Mad Magglish"]=3655,["Sentinel Elissa Starbreeze"]=3657,["Lizzarik"]=3658,["Jorb"]=3659,["Athrikus Narassin"]=3660,["Balthule Shadowstrike"]=3661,["Delmanis the Hated"]=3662,["Delgren the Purifier"]=3663,["Ilkrud Magthrull"]=3664,["Crane Operator Bigglefuzz"]=3665,["Wizbang Cranktoggle"]=3666,["Anaya Dawnrunner"]=3667,["Lord Cobrahn"]=3669,["Lord Pythas"]=3670,["Lady Anacondra"]=3671,["Boahn"]=3672,["Lord Serpentis"]=3673,["Skum"]=3674,["Muyoh"]=3678,["Naralex"]=3679,["Serpentbloom Snake"]=3680,["Wisp"]=3681,["Vrang Wildgore"]=3682,["Kiknikle"]=3683,["Pizznukle"]=3684,["Harb Clawhoof"]=3685,["Reban Freerunner"]=3688,["Laer Stepperunner"]=3689,["Kar Stormsinger"]=3690,["Raene Wolfrunner"]=3691,["Volcor"]=3692,["Terenthis"]=3693,["Sentinel Selarin"]=3694,["Grimclaw"]=3695,["Ran Bloodtooth"]=3696,["Bolyun"]=3698,["Jadenvis Seawatcher"]=3700,["Tharnariun Treetender"]=3701,["Alanndarian Nightsong"]=3702,["Krulmoo Fullmoon"]=3703,["Mahani"]=3704,["Gahroot"]=3705,["Tai'jin"]=3706,["Ken'jai"]=3707,["Gruna"]=3708,["Wrathtail Myrmidon"]=3711,["Wrathtail Razortail"]=3712,["Wrathtail Wave Rider"]=3713,["Wrathtail Sea Witch"]=3715,["Wrathtail Sorceress"]=3717,["Mystlash Hydra"]=3721,["Mystlash Flayer"]=3722,["Dark Strand Cultist"]=3725,["Dark Strand Enforcer"]=3727,["Dark Strand Adept"]=3728,["Dark Strand Excavator"]=3730,["Forsaken Seeker"]=3732,["Forsaken Herbalist"]=3733,["Orc Overseer"]=3734,["Apothecary Falthis"]=3735,["Darkslayer Mordenthal"]=3736,["Saltspittle Puddlejumper"]=3737,["Saltspittle Warrior"]=3739,["Saltspittle Muckdweller"]=3740,["Saltspittle Oracle"]=3742,["Foulweald Warrior"]=3743,["Foulweald Pathfinder"]=3745,["Foulweald Den Watcher"]=3746,["Foulweald Shaman"]=3748,["Foulweald Ursa"]=3749,["Foulweald Totemic"]=3750,["Xavian Rogue"]=3752,["Xavian Betrayer"]=3754,["Xavian Felsworn"]=3755,["Xavian Hellcaller"]=3757,["Felmusk Satyr"]=3758,["Felmusk Rogue"]=3759,["Felmusk Felsworn"]=3762,["Felmusk Shadowstalker"]=3763,["Bleakheart Satyr"]=3765,["Bleakheart Trickster"]=3767,["Bleakheart Shadowstalker"]=3770,["Bleakheart Hellcaller"]=3771,["Lesser Felguard"]=3772,["Akkrilus"]=3773,["Felslayer"]=3774,["Syurana"]=3779,["Singed Shambler"]=3780,["Shadethicket Wood Shaper"]=3781,["Shadethicket Stone Mover"]=3782,["Shadethicket Raincaller"]=3783,["Shadethicket Bark Ripper"]=3784,["Terrowulf Fleshripper"]=3789,["Terrowulf Shadow Weaver"]=3791,["Terrowulf Packlord"]=3792,["Druid of the Talon"]=3794,["Druid of the Claw"]=3795,["Cenarion Protector"]=3797,["Severed Druid"]=3799,["Severed Sleeper"]=3801,["Severed Dreamer"]=3802,["Severed Keeper"]=3803,["Forsaken Intruder"]=3804,["Forsaken Infiltrator"]=3806,["Forsaken Assassin"]=3807,["Forsaken Dark Stalker"]=3808,["Ashenvale Bear"]=3809,["Elder Ashenvale Bear"]=3810,["Giant Ashenvale Bear"]=3811,["Clattering Crawler"]=3812,["Spined Crawler"]=3814,["Blink Dragon"]=3815,["Wild Buck"]=3816,["Shadowhorn Stag"]=3817,["Elder Shadowhorn Stag"]=3818,["Wildthorn Stalker"]=3819,["Wildthorn Venomspitter"]=3820,["Wildthorn Lurker"]=3821,["Ghostpaw Runner"]=3823,["Ghostpaw Howler"]=3824,["Ghostpaw Alpha"]=3825,["[UNUSED] Ancient Guardian"]=3831,["Cenarion Vindicator"]=3833,["Crazed Ancient"]=3834,["Biletoad"]=3835,["Mountaineer Pebblebitty"]=3836,["Vesprystus"]=3838,["Druid of the Fang"]=3840,["Teldira Moonfeather"]=3841,["Brombar Higgleby"]=3842,["Anaya"]=3843,["Healing Ward IV"]=3844,["Shindrell Swiftfire"]=3845,["Talen"]=3846,["Orendil Broadleaf"]=3847,["Kayneth Stillwind"]=3848,["Deathstalker Adamant"]=3849,["Sorcerer Ashcrombe"]=3850,["Shadowfang Whitescalp"]=3851,["Shadowfang Moonwalker"]=3853,["Shadowfang Wolfguard"]=3854,["Shadowfang Darksoul"]=3855,["Shadowfang Glutton"]=3857,["Shadowfang Ragetooth"]=3859,["Bleak Worg"]=3861,["Slavering Worg"]=3862,["Lupine Horror"]=3863,["Fel Steed"]=3864,["Shadow Charger"]=3865,["Vile Bat"]=3866,["Blood Seeker"]=3868,["Lesser Gargoyle"]=3869,["Stone Sleeper"]=3870,["Deathsworn Captain"]=3872,["Tormented Officer"]=3873,["Haunted Servitor"]=3875,["Wailing Guardsman"]=3877,["Dark Strand Assassin"]=3879,["Sentinel Melyria Frostshadow"]=3880,["Grimtak"]=3881,["Zlagk"]=3882,["Moodan Sungrain"]=3883,["Jhawna Oatwind"]=3884,["Sentinel Velene Starstrike"]=3885,["Razorclaw the Butcher"]=3886,["Baron Silverlaine"]=3887,["Korra"]=3888,["Brakgul Deathbringer"]=3890,["Teronis' Corpse"]=3891,["Relara Whitemoon"]=3892,["Forsaken Scout"]=3893,["Pelturas Whitemoon"]=3894,["Krolg"]=3897,["Aligar the Tormentor"]=3898,["Balizar the Umbrage"]=3899,["Caedakar the Vicious"]=3900,["Illiyana"]=3901,["Searing Totem II"]=3902,["Searing Totem III"]=3903,["Searing Totem IV"]=3904,["Healing Stream Totem II"]=3906,["Healing Stream Totem III"]=3907,["Healing Stream Totem IV"]=3908,["Healing Stream Totem V"]=3909,["Stoneclaw Totem II"]=3911,["Stoneclaw Totem III"]=3912,["Stoneclaw Totem IV"]=3913,["Rethilgore"]=3914,["Dagri"]=3915,["Shael'dryn"]=3916,["Befouled Water Elemental"]=3917,["Withered Ancient"]=3919,["Anilia"]=3920,["Thistlefur Ursa"]=3921,["Thistlefur Totemic"]=3922,["Thistlefur Den Watcher"]=3923,["Thistlefur Shaman"]=3924,["Thistlefur Avenger"]=3925,["Thistlefur Pathfinder"]=3926,["Wolf Master Nandos"]=3927,["Rotting Slime"]=3928,["Shadethicket Oracle"]=3931,["Bloodtooth Guard"]=3932,["Hai'zan"]=3933,["Innkeeper Boorand Plainswind"]=3934,["Toddrick"]=3935,["Shandris Feathermoon"]=3936,["Kira Songshine"]=3937,["Razormane Wolf"]=3939,["Taneel Darkwood"]=3940,["Uthil Mooncall"]=3941,["Mavoris Cloudsbreak"]=3942,["Ruuzel"]=3943,["Wrathtail Priestess"]=3944,["Caravaneer Ruzzgot"]=3945,["Velinde Starsong"]=3946,["Goblin Shipbuilder"]=3947,["Honni Goldenoat"]=3948,["Minor Water Guardian"]=3950,["Bhaldaran Ravenshade"]=3951,["Aeolynn"]=3952,["Tandaan Lightmane"]=3953,["Dalria"]=3954,["Shandrina"]=3955,["Harklan Moongrove"]=3956,["Jainay Featherbreeze"]=3957,["Lardan"]=3958,["Nantar"]=3959,["Ulthaan"]=3960,["Maliynn"]=3961,["Haljan Oakheart"]=3962,["Danlaar Nightstride"]=3963,["Kylanna"]=3964,["Cylania Rootstalker"]=3965,["Aayndia Floralwind"]=3967,["Sentry Totem"]=3968,["Fahran Silentblade"]=3969,["Llana"]=3970,["Houndmaster Loksey"]=3974,["Herod"]=3975,["Scarlet Commander Mograine"]=3976,["High Inquisitor Whitemane"]=3977,["Sage Truthseeker"]=3978,["Librarian Mae Paledust"]=3979,["Raleigh the Devout"]=3980,["Vorrel Sengutz"]=3981,["Monika Sengutz"]=3982,["Interrogator Vishas"]=3983,["Nancy Vishas"]=3984,["Grandpa Vishas"]=3985,["Sarilus Foulborne"]=3986,["Dal Bloodclaw"]=3987,["Venture Co. Operator"]=3988,["Venture Co. Logger"]=3989,["Venture Co. Deforester"]=3991,["Venture Co. Holdout"]=3992,["Venture Co. Machine Smith"]=3993,["Keeper Albagorm"]=3994,["Witch Doctor Jin'Zil"]=3995,["Faldreas Goeth'Shael"]=3996,["Windshear Vermin"]=3998,["Windshear Digger"]=3999,["Windshear Tunnel Rat"]=4001,["Windshear Stonecutter"]=4002,["Windshear Geomancer"]=4003,["Windshear Overlord"]=4004,["Deepmoss Creeper"]=4005,["Deepmoss Webspinner"]=4006,["Deepmoss Venomspitter"]=4007,["Cliff Stormer"]=4008,["Raging Cliff Stormer"]=4009,["Young Pridewing"]=4011,["Pridewing Wyvern"]=4012,["Pridewing Skyhunter"]=4013,["Pridewing Consort"]=4014,["Pridewing Patriarch"]=4015,["Fey Dragon"]=4016,["Wily Fey Dragon"]=4017,["Antlered Courser"]=4018,["Great Courser"]=4019,["Sap Beast"]=4020,["Corrupted Sap Beast"]=4021,["Bloodfury Harpy"]=4022,["Bloodfury Roguefeather"]=4023,["Bloodfury Slayer"]=4024,["Bloodfury Ambusher"]=4025,["Bloodfury Windcaller"]=4026,["Bloodfury Storm Witch"]=4027,["Charred Ancient"]=4028,["Blackened Ancient"]=4029,["Vengeful Ancient"]=4030,["Fledgling Chimaera"]=4031,["Young Chimaera"]=4032,["Enraged Stone Spirit"]=4034,["Furious Stone Spirit"]=4035,["Rogue Flame Spirit"]=4036,["Burning Ravager"]=4037,["Burning Destroyer"]=4038,["Cave Stalker"]=4040,["Scorched Basilisk"]=4041,["Singed Basilisk"]=4042,["Galthuk"]=4043,["Blackened Basilisk"]=4044,["Magatha Grimtotem"]=4046,["Zor Lonetree"]=4047,["Falfindel Waywarder"]=4048,["Seereth Stonebreak"]=4049,["Cenarion Caretaker"]=4050,["Cenarion Botanist"]=4051,["Cenarion Druid"]=4052,["Daughter of Cenarius"]=4053,["Laughing Sister"]=4054,["Mirkfallon Keeper"]=4056,["Son of Cenarius"]=4057,["Forest Spirit"]=4059,["Mirkfallon Dryad"]=4061,["Dark Iron Bombardier"]=4062,["Feeboz"]=4063,["Blackrock Scout"]=4064,["Blackrock Sentry"]=4065,["Nal'taszar"]=4066,["Twilight Runner"]=4067,["Serpent Messenger"]=4068,["Venture Co. Builder"]=4070,["Prisoner of Jin'Zil"]=4072,["XT:4"]=4073,["XT:9"]=4074,["Rat"]=4075,["Roach"]=4076,["Gaxim Rustfizzle"]=4077,["Collin Mauren"]=4078,["Sentinel Thenysil"]=4079,["Kaela Shadowspear"]=4080,["Lomac Gearstrip"]=4081,["Grawnal"]=4082,["Jeeda"]=4083,["Chylina"]=4084,["Nizzik"]=4085,["Veenix"]=4086,["Arias'ta Bladesinger"]=4087,["Elanaria"]=4088,["Sildanair"]=4089,["Astarii Starseeker"]=4090,["Jandria"]=4091,["Lariia"]=4092,["[Deprecated for 4.x]Galak Wrangler"]=4093,["[Deprecated for 4.x]Galak Scout"]=4094,["Galak Mauler"]=4095,["[Deprecated for 4.x]Galak Windchaser"]=4096,["Galak Stormer"]=4097,["Galak Marauder"]=4099,["Screeching Harpy"]=4100,["Screeching Roguefeather"]=4101,["Screeching Windcaller"]=4104,["Highperch Wyvern"]=4107,["Highperch Consort"]=4109,["Highperch Patriarch"]=4110,["Gravelsnout Kobold"]=4111,["Gravelsnout Vermin"]=4112,["Gravelsnout Digger"]=4113,["Gravelsnout Forager"]=4114,["Gravelsnout Surveyor"]=4116,["Cloud Serpent"]=4117,["Venomous Cloud Serpent"]=4118,["Elder Cloud Serpent"]=4119,["Thundering Boulderkin"]=4120,["Needles Cougar"]=4124,["Crag Stalker"]=4126,["Hecklefang Hyena"]=4127,["Hecklefang Stalker"]=4128,["Hecklefang Snarler"]=4129,["[Deprecated for 4.x]Silithid Searcher"]=4130,["[Deprecated for 4.x]Silithid Invader"]=4131,["Krkk'kx"]=4132,["[Deprecated for 4.x]Silithid Hive Drone"]=4133,["Jeen'ra Nightrunner"]=4138,["Scorpid Terror"]=4139,["Scorpid Reaver"]=4140,["[Deprecated for 4.x]Sparkleshell Tortoise"]=4142,["Sparkleshell Snapper"]=4143,["Sparkleshell Borer"]=4144,["Jocaste"]=4146,["[Deprecated for 4.x]Saltstone Basilisk"]=4147,["[Deprecated for 4.x]Saltstone Gazer"]=4150,["[Deprecated for 4.x]Saltstone Crystalhide"]=4151,["Salt Flats Scavenger"]=4154,["Idriana"]=4155,["Astaia"]=4156,["Salt Flats Vulture"]=4158,["Me'lynn"]=4159,["Ainethil"]=4160,["Lysheana"]=4161,["Syurna"]=4163,["Cylania"]=4164,["Elissa Dumas"]=4165,["Gazelle"]=4166,["Dendrythis"]=4167,["Elynna"]=4168,["Jaeana"]=4169,["Ellandrieth"]=4170,["Merelyssa"]=4171,["Anadyia"]=4172,["Landria"]=4173,["Vinasia"]=4175,["Melea"]=4177,["Ealyshia Dewwhisper"]=4180,["Fyrenna"]=4181,["Dalmond"]=4182,["Naram Longclaw"]=4183,["Geenia Sunshadow"]=4184,["Shaldyn"]=4185,["Mavralyn"]=4186,["Harlon Thornguard"]=4187,["Illyanie"]=4188,["Valdaron"]=4189,["Kyndri"]=4190,["Allyndia"]=4191,["Taldan"]=4192,["Grondal Moonbreeze"]=4193,["Ullanna"]=4194,["Tiyani"]=4195,["Silithid Swarm"]=4196,["Ken'zigla"]=4197,["Braelyn Firehand"]=4198,["Laird"]=4200,["Ziz Fizziks"]=4201,["Gerenzo Wrenchwhistle"]=4202,["Ariyell Skyshadow"]=4203,["Firodren Mooncaller"]=4204,["Dorion"]=4205,["Lairn"]=4208,["Garryeth"]=4209,["Alegorn"]=4210,["Dannelor"]=4211,["Telonis"]=4212,["Taladan"]=4213,["Erion Shadewhisper"]=4214,["Anishar"]=4215,["Chardryn"]=4216,["Mathrengyl Bearwalker"]=4217,["Denatharion"]=4218,["Fylerian Nightwing"]=4219,["Cyroen"]=4220,["Talaelar"]=4221,["Voloren"]=4222,["Fyldan"]=4223,["Saenorion"]=4225,["Ulthir"]=4226,["Vaean"]=4228,["Mythrin'dir"]=4229,["Yldan"]=4230,["Kieran"]=4231,["Glorandiir"]=4232,["Mythidan"]=4233,["Andrus"]=4234,["Turian"]=4235,["Cyridan"]=4236,["Caynrus"]=4240,["Mydrannul"]=4241,["Frostsaber Companion"]=4242,["Nightshade"]=4243,["Shadow"]=4244,["Pesterhide Hyena"]=4248,["Pesterhide Snarler"]=4249,["Galak Packhound"]=4250,["Goblin Racer"]=4251,["Gnome Racer"]=4252,["Geofram Bouldertoe"]=4254,["Brogus Thunderbrew"]=4255,["Golnir Bouldertoe"]=4256,["Lana Thunderbrew"]=4257,["Bengus Deepforge"]=4258,["Thurgrum Deepforge"]=4259,["Venture Co. Shredder"]=4260,["Darnassus Sentinel"]=4262,["Deepmoss Hatchling"]=4263,["Deepmoss Matriarch"]=4264,["Nyoma"]=4265,["Danlyia"]=4266,["Daelyshia"]=4267,["Chestnut Mare"]=4269,["Riding Wolf (Red)"]=4270,["Dire Wolf"]=4271,["Brown Wolf"]=4272,["Keeper Ordanus"]=4273,["Fenrus the Devourer"]=4274,["Archmage Arugal"]=4275,["Piznik"]=4276,["Eye of Kilrogg"]=4277,["Commander Springvale"]=4278,["Odo the Blindwatcher"]=4279,["Scarlet Preserver"]=4280,["Scarlet Scout"]=4281,["Scarlet Magician"]=4282,["Scarlet Sentry"]=4283,["Scarlet Augur"]=4284,["Scarlet Disciple"]=4285,["Scarlet Soldier"]=4286,["Scarlet Gallant"]=4287,["Scarlet Beastmaster"]=4288,["Scarlet Evoker"]=4289,["Scarlet Guardsman"]=4290,["Scarlet Diviner"]=4291,["Scarlet Protector"]=4292,["Scarlet Scryer"]=4293,["Scarlet Sorcerer"]=4294,["Scarlet Myrmidon"]=4295,["Scarlet Adept"]=4296,["Scarlet Conjuror"]=4297,["Scarlet Defender"]=4298,["Scarlet Chaplain"]=4299,["Scarlet Wizard"]=4300,["Scarlet Centurion"]=4301,["Scarlet Champion"]=4302,["Scarlet Abbot"]=4303,["Scarlet Tracking Hound"]=4304,["Kriggon Talsone"]=4305,["Scarlet Torturer"]=4306,["Heldan Galesong"]=4307,["Unfettered Spirit"]=4308,["Gorm Grimtotem"]=4309,["Cor Grimtotem"]=4310,["Holgar Stormaxe"]=4311,["Tharm"]=4312,["Gorkas"]=4314,["Kolkar Packhound"]=4316,["Nyse"]=4317,["Thyssiana"]=4319,["Caelyb"]=4320,["Baldruc"]=4321,["Searing Hatchling"]=4323,["Searing Whelp"]=4324,["Firemane Scalebane"]=4328,["Firemane Scout"]=4329,["Firemane Ash Tail"]=4331,["Firemane Flamecaller"]=4334,["Brimgore"]=4339,["Drywallow Crocolisk"]=4341,["Drywallow Vicejaw"]=4342,["Drywallow Snapper"]=4343,["Mottled Drywallow Crocolisk"]=4344,["Drywallow Daggermaw"]=4345,["Noxious Flayer"]=4346,["Noxious Reaver"]=4347,["Noxious Shredder"]=4348,["Bloodfen Raptor"]=4351,["Bloodfen Screecher"]=4352,["Bloodfen Scytheclaw"]=4355,["Bloodfen Razormaw"]=4356,["Bloodfen Lashtail"]=4357,["Mirefin Puddlejumper"]=4358,["Mirefin Murloc"]=4359,["Mirefin Warrior"]=4360,["Mirefin Muckdweller"]=4361,["Mirefin Coastrunner"]=4362,["Mirefin Oracle"]=4363,["Strashaz Warrior"]=4364,["Strashaz Serpent Guard"]=4366,["Strashaz Myrmidon"]=4368,["Strashaz Sorceress"]=4370,["Strashaz Siren"]=4371,["Strashaz Hydra"]=4374,["Darkmist Spider"]=4376,["Darkmist Hatchling"]=4377,["Darkmist Recluse"]=4378,["Darkmist Silkspinner"]=4379,["Darkmist Widow"]=4380,["Withervine Creeper"]=4382,["Withervine Rager"]=4385,["Withervine Bark Ripper"]=4386,["Withervine Mire Beast"]=4387,["Young Murk Thresher"]=4388,["Murk Thresher"]=4389,["Elder Murk Thresher"]=4390,["Swamp Ooze"]=4391,["Corrosive Swamp Ooze"]=4392,["Acidic Swamp Ooze"]=4393,["Bubbling Swamp Ooze"]=4394,["Mudrock Tortoise"]=4396,["Mudrock Spikeshell"]=4397,["Mudrock Burrower"]=4398,["Mudrock Borer"]=4399,["Mudrock Snapjaw"]=4400,["Muckshell Clacker"]=4401,["Muckshell Snapclaw"]=4402,["Muckshell Pincer"]=4403,["Muckshell Scrabbler"]=4404,["Muckshell Razorclaw"]=4405,["Teloren"]=4407,["Gatekeeper Kordurus"]=4409,["Darkfang Lurker"]=4411,["Darkfang Creeper"]=4412,["Darkfang Spider"]=4413,["Darkfang Venomspitter"]=4414,["Giant Darkfang Spider"]=4415,["Defias Strip Miner"]=4416,["Defias Taskmaster"]=4417,["Defias Wizard"]=4418,["Race Master Kronkrider"]=4419,["Overlord Ramtusk"]=4420,["Charlga Razorflank"]=4421,["Agathelos the Raging"]=4422,["Darnassian Protector"]=4423,["Aggem Thorncurse"]=4424,["Blind Hunter"]=4425,["Ward Guardian"]=4427,["Death Speaker Jargba"]=4428,["Goblin Pit Crewman"]=4429,["Gnome Pit Crewman"]=4430,["Razorfen Warrior"]=4435,["Razorfen Quilguard"]=4436,["Razorfen Warden"]=4437,["Razorfen Spearhide"]=4438,["Razorfen Totemic"]=4440,["Razorfen Defender"]=4442,["Deathstalker Vincent"]=4444,["Crazzle Sprysprocket"]=4449,["Rugfizzle"]=4450,["Auld Stonespire"]=4451,["Kravel Koalbeard"]=4452,["Wizzle Brassbolts"]=4453,["Fizzle Brassbolts"]=4454,["Red Jack Flint"]=4455,["Fiora Longears"]=4456,["Murkgill Forager"]=4457,["Murkgill Hunter"]=4458,["Murkgill Oracle"]=4459,["Murkgill Coldbringer"]=4460,["Murkgill Warrior"]=4461,["Blackrock Hunter"]=4462,["Blackrock Summoner"]=4463,["Blackrock Gladiator"]=4464,["Vilebranch Warrior"]=4465,["Vilebranch Scalper"]=4466,["Vilebranch Soothsayer"]=4467,["Jade Sludge"]=4468,["Emerald Ooze"]=4469,["Haunting Vision"]=4472,["Rotting Cadaver"]=4474,["Blighted Zombie"]=4475,["Fardel Dabyrie"]=4479,["Kenata Dabyrie"]=4480,["Marcel Dabyrie"]=4481,["Moktar Krin"]=4483,["Feero Ironhand"]=4484,["Belgrom Rockmaul"]=4485,["Genavie Callow"]=4486,["Parqual Fintallas"]=4488,["Braug Dimspirit"]=4489,["Grenka Bloodscreech"]=4490,["Scarlet Avenger"]=4493,["Scarlet Spellbinder"]=4494,["Gnome Pit Boss"]=4495,["Goblin Pit Boss"]=4496,["Captain Quirk"]=4497,["Maurin Bonesplitter"]=4498,["Rok'Alim the Pounder"]=4499,["Overlord Mok'Morokk"]=4500,["Draz'Zilb"]=4501,["Tharg"]=4502,["Mudcrush Durtfeet"]=4503,["Frostmaw"]=4504,["Bloodsail Deckhand"]=4505,["Bloodsail Swabby"]=4506,["Daisy"]=4507,["Willix the Importer"]=4508,["Sargath"]=4509,["Heralath Fallowbrook"]=4510,["Agam'ar"]=4511,["Rotting Agam'ar"]=4512,["Raging Agam'ar"]=4514,["Death's Head Acolyte"]=4515,["Death's Head Adept"]=4516,["Death's Head Priest"]=4517,["Death's Head Sage"]=4518,["Death's Head Seer"]=4519,["Razorfen Geomancer"]=4520,["Treshala Fallowbrook"]=4521,["Razorfen Dustweaver"]=4522,["Razorfen Groundshaker"]=4523,["Razorfen Earthbreaker"]=4525,["Wind Howler"]=4526,["Stone Rumbler"]=4528,["Razorfen Handler"]=4530,["Razorfen Beast Trainer"]=4531,["Razorfen Beastmaster"]=4532,["Tamed Hyena"]=4534,["Tamed Battleboar"]=4535,["Kraul Bat"]=4538,["Greater Kraul Bat"]=4539,["Scarlet Monk"]=4540,["Blood of Agamaggan"]=4541,["High Inquisitor Fairbanks"]=4542,["Bloodmage Thalnos"]=4543,["Krueg Skullsplitter"]=4544,["Nag'zehn"]=4545,["Bor'zehn"]=4546,["Tarkreu Shadowstalker"]=4547,["Steelsnap"]=4548,["William Montague"]=4549,["Ophelia Montague"]=4550,["Michael Garrett"]=4551,["Eunice Burch"]=4552,["Ronald Burch"]=4553,["Tawny Grisette"]=4554,["Eleanor Rusk"]=4555,["Gordon Wendham"]=4556,["Louis Warren"]=4557,["Lauren Newcomb"]=4558,["Timothy Weldon"]=4559,["Walter Ellingson"]=4560,["Daniel Bartlett"]=4561,["Thomas Mordan"]=4562,["Kaal Soulreaper"]=4563,["Luther Pickman"]=4564,["Richard Kerwin"]=4565,["Kaelystia Hatebringer"]=4566,["Pierce Shackleton"]=4567,["Anastasia Hartwell"]=4568,["Charles Seaton"]=4569,["Sydney Upton"]=4570,["Morley Bates"]=4571,["Silas Zimmer"]=4572,["Armand Cromwell"]=4573,["Lizbeth Cromwell"]=4574,["Hannah Akeley"]=4575,["Josef Gregorian"]=4576,["Millie Gregorian"]=4577,["Josephine Lister"]=4578,["Lucille Castleton"]=4580,["Salazar Bloch"]=4581,["Carolyn Ward"]=4582,["Miles Dexter"]=4583,["Gregory Charles"]=4584,["Ezekiel Graves"]=4585,["Graham Van Talen"]=4586,["Elizabeth Van Talen"]=4587,["Arthur Moore"]=4588,["Joseph Moore"]=4589,["Jonathan Chambers"]=4590,["Mary Edras"]=4591,["Nathaniel Steenwick"]=4592,["Christoph Walker"]=4593,["Angela Curthas"]=4594,["Baltus Fowler"]=4595,["James Van Brunt"]=4596,["Samuel Van Brunt"]=4597,["Brom Killian"]=4598,["Sarah Killian"]=4599,["Geoffrey Hartwell"]=4600,["Francis Eliot"]=4601,["Benijah Fenner"]=4602,["Nicholas Atwood"]=4603,["Abigail Sawyer"]=4604,["Basil Frye"]=4605,["Aelthalyste"]=4606,["Father Lankester"]=4607,["Father Lazarus"]=4608,["Doctor Marsh"]=4609,["Algernon"]=4610,["Doctor Herbert Halsey"]=4611,["Boyle"]=4612,["Christopher Drakul"]=4613,["Martha Alliestar"]=4614,["Katrina Alliestar"]=4615,["Lavinia Crowe"]=4616,["Thaddeus Webb"]=4617,["Martek the Exiled"]=4618,["Geltharis"]=4619,["Fobeed"]=4620,["Quilguard Champion"]=4623,["Booty Bay Bruiser"]=4624,["Death's Head Ward Keeper"]=4625,["Arugal's Voidwalker"]=4627,["Trackmaster Zherin"]=4629,["Pozzik"]=4630,["Wharfmaster Lozgil"]=4631,["Kolkar Centaur"]=4632,["Kolkar Scout"]=4633,["Kolkar Mauler"]=4634,["Kolkar Windchaser"]=4635,["Kolkar Battle Lord"]=4636,["Kolkar Destroyer"]=4637,["Magram Scout"]=4638,["Magram Outrunner"]=4639,["Magram Wrangler"]=4640,["Magram Windchaser"]=4641,["Magram Stormer"]=4642,["Magram Pack Runner"]=4643,["Magram Marauder"]=4644,["Magram Mauler"]=4645,["Gelkis Outrunner"]=4646,["Gelkis Scout"]=4647,["Gelkis Stamper"]=4648,["Gelkis Windchaser"]=4649,["Gelkis Earthcaller"]=4651,["Gelkis Mauler"]=4652,["Gelkis Marauder"]=4653,["Maraudine Scout"]=4654,["Maraudine Wrangler"]=4655,["Maraudine Mauler"]=4656,["Maraudine Windchaser"]=4657,["Maraudine Stormer"]=4658,["Maraudine Marauder"]=4659,["Maraudine Bonepaw"]=4660,["Gelkis Rumbler"]=4661,["Magram Bonepaw"]=4662,["Burning Blade Augur"]=4663,["Burning Blade Reaver"]=4664,["Burning Blade Adept"]=4665,["Burning Blade Felsworn"]=4666,["Burning Blade Shadowmage"]=4667,["Burning Blade Summoner"]=4668,["Hatefury Rogue"]=4670,["Hatefury Trickster"]=4671,["Hatefury Felsworn"]=4672,["Hatefury Betrayer"]=4673,["Hatefury Shadowstalker"]=4674,["Hatefury Hellcaller"]=4675,["Lesser Infernal"]=4676,["Doomwarder"]=4677,["Mana Eater"]=4678,["Nether Maiden"]=4679,["Doomwarder Captain"]=4680,["Mage Hunter"]=4681,["Nether Sister"]=4682,["Nether Sorceress"]=4684,["Ley Hunter"]=4685,["Deepstrider Giant"]=4686,["Deepstrider Searcher"]=4687,["Bonepaw Hyena"]=4688,["Starving Bonepaw"]=4689,["Rabid Bonepaw"]=4690,["Dread Swoop"]=4692,["Dread Flyer"]=4693,["Dread Ripper"]=4694,["Carrion Horror"]=4695,["Scorpashi Snapper"]=4696,["Scorpashi Lasher"]=4697,["Scorpashi Venomlash"]=4699,["Aged Kodo"]=4700,["Dying Kodo"]=4701,["Ancient Kodo"]=4702,["Burning Blade Invoker"]=4705,["Razzeric"]=4706,["Zuzubee"]=4707,["Shreev"]=4708,["Zamek"]=4709,["Gray Ram"]=4710,["Slitherblade Naga"]=4711,["Slitherblade Sorceress"]=4712,["Slitherblade Warrior"]=4713,["Slitherblade Myrmidon"]=4714,["Slitherblade Razortail"]=4715,["Slitherblade Tidehunter"]=4716,["Slitherblade Oracle"]=4718,["Slitherblade Sea Witch"]=4719,["Rizzle Brassbolts"]=4720,["Zangen Stonehoof"]=4721,["Rau Cliffrunner"]=4722,["Foreman Cozzle"]=4723,["Raging Thunder Lizard"]=4726,["Elder Thunder Lizard"]=4727,["Gritjaw Basilisk"]=4728,["Hulking Gritjaw Basilisk"]=4729,["Lelanai"]=4730,["Zachariah Post"]=4731,["Randal Hunter"]=4732,["Kildar"]=4752,["Jartsam"]=4753,["Ultham Ironhorn"]=4772,["Velma Warnam"]=4773,["Felicia Doan"]=4775,["White Ram"]=4777,["Riding Ram (Blue)"]=4778,["Brown Ram"]=4779,["Riding Ram (Black)"]=4780,["Snufflenose Gopher"]=4781,["Truk Wildbeard"]=4782,["Dawnwatcher Selgorm"]=4783,["Argent Guard Manados"]=4784,["Illusionary Nightmare"]=4785,["Dawnwatcher Shaedlass"]=4786,["Scout Thaelrid"]=4787,["Fallenroot Satyr"]=4788,["Fallenroot Rogue"]=4789,["Nazeer Bloodpike"]=4791,["Morgan Stern"]=4794,["Force of Nature"]=4795,["Fallenroot Shadowstalker"]=4798,["Fallenroot Hellcaller"]=4799,["Blackfathom Tide Priestess"]=4802,["Blackfathom Oracle"]=4803,["Blackfathom Sea Witch"]=4805,["Blackfathom Myrmidon"]=4807,["Twilight Acolyte"]=4809,["Twilight Reaver"]=4810,["Twilight Aquamancer"]=4811,["Twilight Loreseeker"]=4812,["Twilight Shadowmage"]=4813,["Twilight Elementalist"]=4814,["Murkshallow Snapclaw"]=4815,["Blindlight Murloc"]=4818,["Blindlight Muckdweller"]=4819,["Blindlight Oracle"]=4820,["Skittering Crustacean"]=4821,["Snapping Crustacean"]=4822,["Barbed Crustacean"]=4823,["Aku'mai Fisher"]=4824,["Aku'mai Snapjaw"]=4825,["Deep Pool Threshfin"]=4827,["Aku'mai"]=4829,["Old Serra'kis"]=4830,["Lady Sarevess"]=4831,["Twilight Lord Kelris"]=4832,["Theramore Infiltrator"]=4834,["Deadmire"]=4841,["Earthcaller Halmgar"]=4842,["Shadowforge Surveyor"]=4844,["Shadowforge Ruffian"]=4845,["Shadowforge Digger"]=4846,["Shadowforge Relic Hunter"]=4847,["Shadowforge Darkcaster"]=4848,["Shadowforge Archaeologist"]=4849,["Stonevault Cave Lurker"]=4850,["Stonevault Rockchewer"]=4851,["Stonevault Oracle"]=4852,["Stonevault Geomancer"]=4853,["Grimlok"]=4854,["Stonevault Brawler"]=4855,["Stonevault Cave Hunter"]=4856,["Stone Keeper"]=4857,["Stone Steward"]=4860,["Shrike Bat"]=4861,["Jadespine Basilisk"]=4863,["Obsidian Golem"]=4872,["Turhaw"]=4875,["Jawn Highmesa"]=4876,["Jandia"]=4877,["Montarr"]=4878,["Ogg'marr"]=4879,["Krak"]=4883,["Zulrg"]=4884,["Gregor MacVince"]=4885,["Hans Weston"]=4886,["Ghamoo-Ra"]=4887,["Marie Holdston"]=4888,["Torq Ironblast"]=4889,["Piter Verance"]=4890,["Dwane Wertle"]=4891,["Jensen Farran"]=4892,["Bartender Lillian"]=4893,["Craig Nollward"]=4894,["Smiling Jim"]=4895,["Charity Mipsy"]=4896,["Helenia Olden"]=4897,["Brant Jasperbloom"]=4898,["Uma Bartulm"]=4899,["Alchemist Narett"]=4900,["Sara Pierce"]=4901,["Mikal Pierce"]=4902,["Guard Byron"]=4921,["Guard Edward"]=4922,["Guard Jarad"]=4923,["Combat Master Criton"]=4924,["Krog"]=4926,["Caz Twosprocket"]=4941,["Mosarn"]=4943,["Captain Garran Vimes"]=4944,["Goblin Drag Car"]=4945,["Gnome Drag Car"]=4946,["Theramore Lieutenant"]=4947,["Adjutant Tesoran"]=4948,["Thrall"]=4949,["Spot"]=4950,["Theramore Practicing Guard"]=4951,["Theramore Combat Dummy"]=4952,["Moccasin"]=4953,["Uttnar"]=4954,["Theramore Archery Target 1"]=4955,["Haunting Spirit"]=4958,["Jorgen"]=4959,["Bishop DeLavey"]=4960,["Dashel Stonefist"]=4961,["Mikhail"]=4963,["Commander Samaul"]=4964,["Pained"]=4965,["Private Hendel"]=4966,["Archmage Tervosh"]=4967,["Lady Jaina Proudmoore"]=4968,["Old Town Thug"]=4969,["Slim's Friend"]=4971,["Kagoro"]=4972,["Guard Lasiter"]=4973,["Aldwin Laughlin"]=4974,["Theramore Archery Target 2"]=4975,["Murkshallow Softshell"]=4977,["Aku'mai Servant"]=4978,["Theramore Guard"]=4979,["Paval Reethe"]=4980,["Ben Trias"]=4981,["Thomas"]=4982,["Ogron"]=4983,["Argos Nightwhisper"]=4984,["World Warrior Trainer"]=4992,["Stockade Guard"]=4995,["Injured Stockade Guard"]=4996,["Nurse Lillian"]=5042,["Defias Rioter"]=5043,["Theramore Skirmisher"]=5044,["Private Hallan"]=5045,["Lieutenant Caldwell"]=5046,["Ellaercia"]=5047,["Deviate Adder"]=5048,["Lyesa Steelbrow"]=5049,["Edward Remington"]=5052,["Deviate Crocolisk"]=5053,["Krumn"]=5054,["Deviate Lasher"]=5055,["Deviate Dreadfang"]=5056,["Theramore Deserter"]=5057,["Wolfguard Worg"]=5058,["World Banker"]=5060,["Connor Rivers"]=5081,["Vincent Hyal"]=5082,["Paymaster Lendry"]=5083,["Sentry Point Guard"]=5085,["Captain Wymor"]=5086,["Do'gol"]=5087,["Falgran Hastil"]=5088,["Balos Jacken"]=5089,["Combat Master Szigeti"]=5090,["Guard Kahil"]=5091,["Guard Lana"]=5092,["Guard Narrisha"]=5093,["Guard Tark"]=5094,["Captain Andrews"]=5095,["Captain Thomas"]=5096,["Lupine Delusion"]=5097,["Soleil Stonemantle"]=5099,["Fillius Fizzlespinner"]=5100,["Bryllia Ironbrand"]=5101,["Dolman Steelfury"]=5102,["Grenil Steelfury"]=5103,["Bromiir Ormsen"]=5106,["Mangorn Flinthammer"]=5107,["Raena Flinthammer"]=5108,["Myra Tyrngaarde"]=5109,["Barim Jurgenstaad"]=5110,["Innkeeper Firebrew"]=5111,["Gwenna Firebrew"]=5112,["Kelv Sternhammer"]=5113,["Bilban Tosslespanner"]=5114,["Daera Brightspear"]=5115,["Olmin Burningbeard"]=5116,["Regnus Thundergranite"]=5117,["Brogun Stoneshield"]=5118,["Hegnar Swiftaxe"]=5119,["Brenwyn Wintersteel"]=5120,["Kelomir Ironhand"]=5121,["Skolmin Goldfury"]=5122,["Bretta Goldfury"]=5123,["Sognar Cliffbeard"]=5124,["Dolkin Craghelm"]=5125,["Olthran Craghelm"]=5126,["Fimble Finespindle"]=5127,["Bombus Finespindle"]=5128,["Lissyphus Finespindle"]=5129,["Jondor Steelbrow"]=5130,["Pithwick"]=5132,["Harick Boulderdrum"]=5133,["Jonivera Farmountain"]=5134,["Svalbrad Farmountain"]=5135,["Reyna Stonebranch"]=5137,["Gwina Stonebranch"]=5138,["Kurdrum Barleybeard"]=5139,["Edris Barleybeard"]=5140,["Theodrus Frostbeard"]=5141,["Braenna Flintcrag"]=5142,["Toldren Deepiron"]=5143,["Bink"]=5144,["Juli Stormkettle"]=5145,["Nittlebur Sparkfizzle"]=5146,["Valgar Highforge"]=5147,["Beldruk Doombrow"]=5148,["Brandur Ironhammer"]=5149,["Nissa Firestone"]=5150,["Ginny Longberry"]=5151,["Bingus"]=5152,["Jormund Stonebrow"]=5153,["Poranna Snowbraid"]=5154,["Ingrys Stonebrow"]=5155,["Maeva Snowbraid"]=5156,["Gimble Thistlefuzz"]=5157,["Tilli Thistlefuzz"]=5158,["Daryl Riknussun"]=5159,["Emrul Riknussun"]=5160,["Grimnur Stonebrand"]=5161,["Tansy Puddlefizz"]=5162,["Burbik Gearspanner"]=5163,["Grumnus Steelshaper"]=5164,["Hulfdan Blackbeard"]=5165,["Ormyr Flinteye"]=5166,["Fenthwick"]=5167,["Tynnus Venomsprout"]=5169,["Hjoldir Stoneblade"]=5170,["Thistleheart"]=5171,["Briarthorn"]=5172,["Alexander Calder"]=5173,["Springspindle Fizzlegear"]=5174,["Gearcutter Cogspinner"]=5175,["Tally Berryfizz"]=5177,["Soolie Berryfizz"]=5178,["Theramore Sentry"]=5184,["Hammerhead Shark"]=5185,["Basking Shark"]=5186,["Garyl"]=5188,["Thrumn"]=5189,["Merill Pleasance"]=5190,["Shalumon"]=5191,["Rebecca Laughlin"]=5193,["Black Riding Wolf"]=5194,["Brown Riding Wolf"]=5195,["Gray Riding Wolf"]=5196,["Red Riding Wolf"]=5197,["Arctic Riding Wolf"]=5198,["Medic Tamberlyn"]=5199,["Medic Helaina"]=5200,["Archery Target"]=5202,["Apothecary Zinge"]=5204,["Murk Slitherer"]=5224,["Murk Spitter"]=5225,["Murk Worm"]=5226,["Saturated Ooze"]=5228,["Gordunni Ogre"]=5229,["Gordunni Brute"]=5232,["Gordunni Mauler"]=5234,["Fungal Ooze"]=5235,["Gordunni Shaman"]=5236,["Gordunni Ogre Mage"]=5237,["Gordunni Battlemaster"]=5238,["Gordunni Mage-Lord"]=5239,["Gordunni Warlock"]=5240,["Gordunni Warlord"]=5241,["Cursed Atal'ai"]=5243,["Zukk'ash Stinger"]=5244,["Zukk'ash Wasp"]=5245,["Zukk'ash Worker"]=5246,["Zukk'ash Tunneler"]=5247,["Woodpaw Mongrel"]=5249,["Woodpaw Trapper"]=5251,["Woodpaw Brute"]=5253,["Woodpaw Mystic"]=5254,["Woodpaw Reaver"]=5255,["Atal'ai Warrior"]=5256,["Woodpaw Alpha"]=5258,["Atal'ai Witch Doctor"]=5259,["Groddoc Ape"]=5260,["Enthralled Atal'ai"]=5261,["Groddoc Thunderer"]=5262,["Mummified Atal'ai"]=5263,["Unliving Atal'ai"]=5267,["Ironfur Bear"]=5268,["Atal'ai Priest"]=5269,["Atal'ai Corpse Eater"]=5270,["Atal'ai Deathwalker"]=5271,["Grizzled Ironfur Bear"]=5272,["Atal'ai High Priest"]=5273,["Ironfur Patriarch"]=5274,["Sprite Dragon"]=5276,["Nightmare Scalebane"]=5277,["Sprite Darter"]=5278,["Nightmare Wyrmkin"]=5280,["Nightmare Wanderer"]=5283,["Longtooth Runner"]=5286,["Longtooth Howler"]=5287,["Rabid Longtooth"]=5288,["Hakkari Frostwing"]=5291,["Feral Scar Yeti"]=5292,["Hulking Feral Scar"]=5293,["Enraged Feral Scar"]=5295,["Rage Scar Yeti"]=5296,["Elder Rage Scar"]=5297,["Ferocious Rage Scar"]=5299,["Frayfeather Hippogryph"]=5300,["Frayfeather Stagwing"]=5304,["Frayfeather Skystormer"]=5305,["Frayfeather Patriarch"]=5306,["Vale Screecher"]=5307,["Rogue Vale Screecher"]=5308,["Lethlas"]=5312,["Phantim"]=5314,["Jademir Oracle"]=5317,["Jademir Tree Warder"]=5319,["Jademir Boughguard"]=5320,["Coast Crawl Snapclaw"]=5327,["Coast Crawl Deepseer"]=5328,["Hatecrest Warrior"]=5331,["Hatecrest Wave Rider"]=5332,["Hatecrest Serpent Guard"]=5333,["Hatecrest Myrmidon"]=5334,["Hatecrest Screamer"]=5335,["Hatecrest Sorceress"]=5336,["Hatecrest Siren"]=5337,["Lady Szallah"]=5343,["Diamond Head"]=5345,["Bloodroar the Stalker"]=5346,["Antilus the Soarer"]=5347,["Dreamwatcher Forktongue"]=5348,["Arash-ethis"]=5349,["Qirot"]=5350,["Old Grizzlegut"]=5352,["Itharius"]=5353,["Gnarl Leafbrother"]=5354,["Firewing Defender"]=5355,["Snarler"]=5356,["Land Walker"]=5357,["Cliff Giant"]=5358,["Shore Strider"]=5359,["Deep Strider"]=5360,["Wave Strider"]=5361,["Northspring Harpy"]=5362,["Northspring Roguefeather"]=5363,["Northspring Slayer"]=5364,["Northspring Windcaller"]=5366,["Brohann Caskbelly"]=5384,["Watcher Mahar Ba"]=5385,["Acolyte Dellis"]=5386,["High Explorer Magellas"]=5387,["Ingo Woolybush"]=5388,["Prospector Gunstan"]=5389,["Sage Palerunner"]=5390,["Galen Goodward"]=5391,["Yarr Hammerstone"]=5392,["Quartermaster Lungertz"]=5393,["Neeka Bloodscar"]=5394,["Felgur Twocuts"]=5395,["Captain Pentigast"]=5396,["Uthek the Wise"]=5397,["Warug"]=5398,["Veyzhak the Cannibal"]=5399,["Zekkis"]=5400,["Kazkaz the Unholy"]=5401,["Khan Hratha"]=5402,["Riding White Stallion"]=5403,["Nightmare"]=5407,["Harvester Swarm"]=5409,["Krinkle Goodsteel"]=5411,["Gurda Wildmane"]=5412,["Furen Longbeard"]=5413,["Apothecary Faustin"]=5414,["Infiltrator Marksen"]=5416,["Deathstalker Zraedus"]=5418,["Glasshide Basilisk"]=5419,["Glasshide Gazer"]=5420,["Glasshide Petrifier"]=5421,["Scorpid Hunter"]=5422,["Scorpid Tail Lasher"]=5423,["Scorpid Dunestalker"]=5424,["Starving Blisterpaw"]=5425,["Blisterpaw Hyena"]=5426,["Rabid Blisterpaw"]=5427,["Roc"]=5428,["Fire Roc"]=5429,["Searing Roc"]=5430,["Surf Glider"]=5431,["Giant Surf Glider"]=5432,["Coral Shark"]=5434,["Sand Shark"]=5435,["Hazzali Wasp"]=5441,["Hazzali Stinger"]=5450,["Hazzali Swarmer"]=5451,["Hazzali Worker"]=5452,["Hazzali Tunneler"]=5453,["Hazzali Sandreaver"]=5454,["Centipaar Wasp"]=5455,["Centipaar Stinger"]=5456,["Centipaar Swarmer"]=5457,["Centipaar Worker"]=5458,["Centipaar Tunneler"]=5459,["Centipaar Sandreaver"]=5460,["Sea Elemental"]=5461,["Sea Spray"]=5462,["Watchmaster Sorigal"]=5464,["Land Rager"]=5465,["Coast Strider"]=5466,["Deep Dweller"]=5467,["Dune Smasher"]=5469,["Raging Dune Smasher"]=5470,["Dunemaul Ogre"]=5471,["Dunemaul Enforcer"]=5472,["Dunemaul Ogre Mage"]=5473,["Dunemaul Brute"]=5474,["Dunemaul Warlock"]=5475,["Watcher Biggs"]=5476,["Noboru the Cudgel"]=5477,["Wu Shen"]=5479,["Ilsa Corbin"]=5480,["Thistleshrub Dew Collector"]=5481,["Stephen Ryback"]=5482,["Erika Tate"]=5483,["Brother Benjamin"]=5484,["Thistleshrub Rootshaper"]=5485,["Brother Joshua"]=5489,["Gnarled Thistleshrub"]=5490,["Arthur the Faithful"]=5491,["Katherine the Pure"]=5492,["Arnold Leland"]=5493,["Catherine Leland"]=5494,["Ursula Deline"]=5495,["Sandahl"]=5496,["Jennea Cannon"]=5497,["Elsharin"]=5498,["Lilyssia Nightbreeze"]=5499,["Tel'Athir"]=5500,["Kaerbrus"]=5501,["Shylamiir"]=5502,["Eldraeith"]=5503,["Sheldras Moontree"]=5504,["Theridran"]=5505,["Maldryn"]=5506,["Strumner Flintheel"]=5508,["Kathrum Axehand"]=5509,["Thulman Flintcrag"]=5510,["Therum Deepforge"]=5511,["Kaita Deepforge"]=5512,["Gelman Stonehand"]=5513,["Brooke Stonebraid"]=5514,["Einris Brightspear"]=5515,["Ulfir Ironbeard"]=5516,["Thorfin Stoneshield"]=5517,["Lilliam Sparkspindle"]=5518,["Billibub Cogspinner"]=5519,["Spackle Thornberry"]=5520,["War Party Kodo"]=5523,["Caravan Watcher"]=5524,["Caravan Packhorse"]=5525,["Clarice Foster"]=5543,["Grunt Zuul"]=5546,["Grunt Tharlak"]=5547,["Simon Tanner"]=5564,["Jillian Tanner"]=5565,["Tannysa"]=5566,["Sellandus"]=5567,["Captured Leper Gnome"]=5568,["Fizzlebang Booms"]=5569,["Bruuk Barleybeard"]=5570,["Dar"]=5591,["Tok'Kar"]=5592,["Katar"]=5593,["Alchemist Pestlezugg"]=5594,["Ironforge Guard"]=5595,["Grunt Komak"]=5597,["Atal'ai Exile"]=5598,["Kon Yelloweyes"]=5599,["Khan Dez'hepah"]=5600,["Khan Jehn"]=5601,["Khan Shaka"]=5602,["Grunt Mojka"]=5603,["Tisa Martine"]=5605,["Goma"]=5606,["Roger"]=5607,["Jamin"]=5608,["Zazo"]=5609,["Kozish"]=5610,["Barkeep Morag"]=5611,["Gimrizz Shadowcog"]=5612,["Doyo'da"]=5613,["Sarok"]=5614,["Wastewander Rogue"]=5615,["Wastewander Thief"]=5616,["Wastewander Shadow Mage"]=5617,["Wastewander Bandit"]=5618,["Bartender Wental"]=5620,["Ongeku"]=5622,["Wastewander Assassin"]=5623,["Undercity Guardian"]=5624,["Theramore Commando"]=5629,["Rhapsody Shindigger"]=5634,["Falstad Wildhammer"]=5635,["Gryphon Master Talonaxe"]=5636,["Roetten Stonehammer"]=5637,["Kreldig Ungor"]=5638,["Craven Drok"]=5639,["Keldran"]=5640,["Takata Steelblade"]=5641,["Vahlarriel Demonslayer"]=5642,["Tyranis Malem"]=5643,["Dalinda Malem"]=5644,["Sandfury Hideskinner"]=5645,["Sandfury Axe Thrower"]=5646,["Sandfury Firecaller"]=5647,["Sandfury Shadowcaster"]=5648,["Sandfury Blood Drinker"]=5649,["Sandfury Witch Doctor"]=5650,["Patrick Garrett"]=5651,["Undercity Practice Dummy"]=5652,["Tyler"]=5653,["Edward"]=5654,["Robert Gossom"]=5655,["Richard Van Brunt"]=5656,["Marla Fowler"]=5657,["Chloe Curthas"]=5658,["Andrew Hartwell"]=5659,["Riley Walker"]=5660,["Brother Malach"]=5661,["Sergeant Houser"]=5662,["Travist Bosk"]=5663,["Eldin Partridge"]=5664,["Alyssa Blaye"]=5665,["Gunther's Visage"]=5666,["Venya Marthand"]=5667,["Mattie Alred"]=5668,["Helena Atwood"]=5669,["Edrick Killian"]=5670,["Practice Target"]=5674,["Carendin Halgar"]=5675,["Summoned Voidwalker"]=5676,["Summoned Succubus"]=5677,["Lysta Bancroft"]=5679,["Male Human Captive"]=5680,["Female Human Captive"]=5681,["Dalin Forgewright"]=5682,["Comar Villard"]=5683,["Captive Ghoul"]=5685,["Captive Zombie"]=5686,["Captive Abomination"]=5687,["Innkeeper Renee"]=5688,["Clyde Kellen"]=5690,["Dalin Forgewright Projection"]=5691,["Comar Villard Projection"]=5692,["Godrick Farsan"]=5693,["High Sorcerer Andromath"]=5694,["Vance Undergloom"]=5695,["Gerard Abernathy"]=5696,["Theresa"]=5697,["Joanna Whitehall"]=5698,["Leona Tharpe"]=5699,["Samantha Shackleton"]=5700,["Selina Pickman"]=5701,["Jezelle Pruitt"]=5702,["Winifred Kerwin"]=5703,["Adrian Bartlett"]=5704,["Victor Bartholomew"]=5705,["Davitt Hickson"]=5706,["Reginald Grimsford"]=5707,["Spawn of Hakkar"]=5708,["Shade of Eranikus"]=5709,["Jammal'an the Prophet"]=5710,["Ogom the Wretched"]=5711,["Zolo"]=5712,["Gasher"]=5713,["Loro"]=5714,["Hukku"]=5715,["Zul'Lor"]=5716,["Mijan"]=5717,["Rothos"]=5718,["Morphaz"]=5719,["Weaver"]=5720,["Dreamscythe"]=5721,["Hazzas"]=5722,["Warug's Target Dummy"]=5723,["Ageron Kargal"]=5724,["Deathguard Lundmark"]=5725,["Jezelle's Felhunter"]=5726,["Jezelle's Felsteed"]=5727,["Jezelle's Succubus"]=5728,["Jezelle's Voidwalker"]=5729,["Jezelle's Imp"]=5730,["Apothecary Vallia"]=5731,["Apothecary Katrina"]=5732,["Apothecary Lycanus"]=5733,["Apothecary Keever"]=5734,["Caged Human Female"]=5735,["Caged Human Male"]=5736,["Caged Dwarf Male"]=5738,["Caged Squirrel"]=5739,["Caged Rabbit"]=5741,["Caged Toad"]=5742,["Caged Sheep"]=5743,["Cedric Stumpel"]=5744,["Hepzibah Sedgewick"]=5747,["Killian Sanatha"]=5748,["Kayla Smithe"]=5749,["Gina Lang"]=5750,["Corporal Melkins"]=5752,["Martha Strain"]=5753,["Zane Bradford"]=5754,["Deviate Viper"]=5755,["Deviate Venomwing"]=5756,["Lilly"]=5757,["Leo Sarn"]=5758,["Nurse Neela"]=5759,["Lord Azrethoc"]=5760,["Deviate Shambler"]=5761,["Deviate Moccasin"]=5762,["Nightmare Ectoplasm"]=5763,["Ruzan"]=5765,["Savannah Cub"]=5766,["Nalpak"]=5767,["Ebru"]=5768,["Arch Druid Hamuul Runetotem"]=5769,["Nara Wildmane"]=5770,["Jugkar Grim'rod"]=5771,["Lord Azrethoc's Image"]=5772,["Jugkar Grim'rod's Image"]=5773,["Riding Wolf"]=5774,["Verdan the Everliving"]=5775,["Summoned Viper"]=5779,["Cloned Ectoplasm"]=5780,["Silithid Creeper Egg"]=5781,["Crildor"]=5782,["Kalldan Felmoon"]=5783,["Waldor"]=5784,["Sister Hatelash"]=5785,["Snagglespear"]=5786,["Enforcer Emilgund"]=5787,["Gelgann Direforge"]=5788,["Drag Master Miglen"]=5792,["Aean Swiftriver"]=5797,["Thora Feathermoon"]=5798,["Hannah Bladeleaf"]=5799,["Marcus Bel"]=5800,["Treant Ally"]=5806,["The Rake"]=5807,["Warlord Kolkanis"]=5808,["Sergeant Curtis"]=5809,["Uzzek"]=5810,["Kamari"]=5811,["Tumi"]=5812,["Innkeeper Thulbek"]=5814,["Kurgul"]=5815,["Katis"]=5816,["Shimra"]=5817,["Mirelle Tremayne"]=5819,["Gillian Moore"]=5820,["Sheldon Von Croy"]=5821,["Felweaver Scornn"]=5822,["Death Flayer"]=5823,["Captain Flat Tusk"]=5824,["Geolord Mottle"]=5826,["Brontus"]=5827,["Humar the Pridelord"]=5828,["Snort the Heckler"]=5829,["Sister Rathtalon"]=5830,["Swiftmane"]=5831,["Thunderstomp"]=5832,["Margol the Rager"]=5833,["Azzere the Skyblade"]=5834,["Foreman Grills"]=5835,["Engineer Whirleygig"]=5836,["Stonearm"]=5837,["Brokespear"]=5838,["Dark Iron Geologist"]=5839,["Dark Iron Steamsmith"]=5840,["Rocklance"]=5841,["Takk the Leaper"]=5842,["Slave Worker"]=5843,["Dark Iron Slaver"]=5844,["Dark Iron Taskmaster"]=5846,["Heggin Stonewhisker"]=5847,["Malgin Barleybrew"]=5848,["Digger Flameforge"]=5849,["Blazing Elemental"]=5850,["Captain Gerogg Hammertoe"]=5851,["Inferno Elemental"]=5852,["Tempered War Golem"]=5853,["Heavy War Golem"]=5854,["Magma Elemental"]=5855,["Glassweb Spider"]=5856,["Searing Lava Spider"]=5857,["Greater Lava Spider"]=5858,["Hagg Taurenbane"]=5859,["Twilight Dark Shaman"]=5860,["Twilight Fire Guard"]=5861,["Twilight Geomancer"]=5862,["Geopriest Gukk'rok"]=5863,["Swinegart Spearhide"]=5864,["Dishu"]=5865,["Evil Squirrel"]=5868,["Krond"]=5870,["Larhka"]=5871,["Stoneskin Totem"]=5873,["Strength of Earth Totem"]=5874,["Gan'rul Bloodeye"]=5875,["Thun'grim Firegaze"]=5878,["Fire Nova Totem"]=5879,["Un'Thuwa"]=5880,["Cursed Sycamore"]=5881,["Pephredo"]=5882,["Enyo"]=5883,["Mai'ah"]=5884,["Deino"]=5885,["Gwyn Farrow"]=5886,["Canaga Earthcaller"]=5887,["Seer Ravenfeather"]=5888,["Mesa Earth Spirit"]=5889,["Redrock Earth Spirit"]=5890,["Minor Manifestation of Earth"]=5891,["Searn Firewarder"]=5892,["Minor Manifestation of Fire"]=5893,["Corrupt Minor Manifestation of Water"]=5894,["Minor Manifestation of Water"]=5895,["Fire Spirit"]=5896,["Corrupt Water Spirit"]=5897,["Air Spirit"]=5898,["Brine"]=5899,["Telf Joolam"]=5900,["Islen Waterseer"]=5901,["Minor Manifestation of Air"]=5902,["Nyx Bloodrage"]=5903,["Prate Cloudseer"]=5905,["Xanis Flameweaver"]=5906,["Kranal Fiss"]=5907,["Grunt Dogran"]=5908,["Cazul"]=5909,["Zankaja"]=5910,["Grunt Logmar"]=5911,["Deviate Faerie Dragon"]=5912,["Tremor Totem"]=5913,["Deviate Nightmare"]=5914,["Brother Ravenoak"]=5915,["Sentinel Amarassan"]=5916,["Clara Charles"]=5917,["Stoneskin Totem II"]=5919,["Stoneskin Totem III"]=5920,["Strength of Earth Totem II"]=5921,["Strength of Earth Totem III"]=5922,["Poison Cleansing Totem"]=5923,["Cleansing Totem"]=5924,["Grounding Totem"]=5925,["Frost Resistance Totem"]=5926,["Elemental Resistance Totem"]=5927,["Sorrow Wing"]=5928,["Magma Totem"]=5929,["Sister Riven"]=5930,["Foreman Rigger"]=5931,["Taskmaster Whipfang"]=5932,["Achellios the Banished"]=5933,["Heartrazor"]=5934,["Ironeye the Invincible"]=5935,["Orca"]=5936,["Vile Sting"]=5937,["Uthan Stillwater"]=5938,["Vira Younghoof"]=5939,["Harn Longcast"]=5940,["Lau'Tiki"]=5941,["Zansoa"]=5942,["Rawrk"]=5943,["Yonada"]=5944,["Owl Companion"]=5945,["Flametongue Totem"]=5950,["Hare"]=5951,["Den Grunt"]=5952,["Razor Hill Grunt"]=5953,["Tooga"]=5955,["Birgitte Cranston"]=5957,["Thuul"]=5958,["World Tauren Male Druid Trainer"]=5963,["Dreadmaul Ogre"]=5974,["Dreadmaul Ogre Mage"]=5975,["Dreadmaul Brute"]=5976,["Dreadmaul Mauler"]=5977,["Dreadmaul Warlock"]=5978,["Wretched Lost One"]=5979,["Portal Seeker"]=5981,["Black Slayer"]=5982,["Bonepicker Felfeeder"]=5983,["Starving Snickerfang"]=5984,["Snickerfang Hyena"]=5985,["Scorpok Stinger"]=5988,["Redstone Basilisk"]=5990,["Redstone Crystalhide"]=5991,["Ashmane Boar"]=5992,["Helboar"]=5993,["Zayus"]=5994,["Nethergarde Miner"]=5996,["Nethergarde Engineer"]=5997,["Nethergarde Foreman"]=5998,["Nethergarde Soldier"]=5999,["Nethergarde Cleric"]=6000,["Nethergarde Analyst"]=6001,["Nethergarde Riftwatcher"]=6002,["Nethergarde Officer"]=6003,["Shadowsworn Ritualist"]=6004,["Shadowsworn Thug"]=6005,["Shadowsworn Adept"]=6006,["Shadowsworn Enforcer"]=6007,["Shadowsworn Warlock"]=6008,["Shadowsworn Dreadweaver"]=6009,["Felhound"]=6010,["Felguard Sentry"]=6011,["Flametongue Totem II"]=6012,["Wayward Buzzard"]=6013,["X'yera"]=6014,["Torta"]=6015,["Elemental Protection Totem"]=6016,["Lava Spout Totem"]=6017,["Ur'kyo"]=6018,["Hornizz Brimbuzzle"]=6019,["Slimeshell Makrura"]=6020,["Boar Spirit"]=6021,["Breyk"]=6026,["Kitha"]=6027,["Burkrum"]=6028,["Thorvald Deepforge"]=6030,["Tormus Deepforge"]=6031,["Lake Frenzy"]=6033,["Lotherias"]=6034,["Razorfen Stalker"]=6035,["Aqua Guardian"]=6047,["Earthgrab Totem"]=6066,["Warug's Bodyguard"]=6068,["Maraudine Khan Guard"]=6069,["Maraudine Khan Advisor"]=6070,["Legion Hound"]=6071,["Diathorus the Seeker"]=6072,["Searing Infernal"]=6073,["Striped Frostsaber"]=6074,["Emerald Raptor"]=6075,["Riding Tallstrider (Ivory)"]=6076,["Auberdine Sentinel"]=6086,["Astranaar Sentinel"]=6087,["Harry Burlguard"]=6089,["Bartleby"]=6090,["Dellylah"]=6091,["Dead-Tooth Jack"]=6093,["Byancie"]=6094,["Shade"]=6107,["Azuregos"]=6109,["Fire Nova Totem II"]=6110,["Fire Nova Totem III"]=6111,["Windfury Totem"]=6112,["Vejrek"]=6113,["Muren Stormpike"]=6114,["Roaming Felguard"]=6115,["Highborne Apparition"]=6116,["Highborne Lichling"]=6117,["Varo'then's Ghost"]=6118,["Tog Rustsprocket"]=6119,["Lago Blackwrench"]=6120,["Remen Marcot"]=6121,["Gakin the Darkbinder"]=6122,["Dark Iron Spy"]=6123,["Captain Beld"]=6124,["Haldarr Satyr"]=6125,["Haldarr Trickster"]=6126,["Haldarr Felsworn"]=6127,["Vorlus Vilehoof"]=6128,["Draconic Magelord"]=6129,["Blue Scalebane"]=6130,["Draconic Mageweaver"]=6131,["Razorfen Servitor"]=6132,["Shade of Elura"]=6133,["Lord Arkkoroc"]=6134,["Arkkoran Clacker"]=6135,["Arkkoran Muckdweller"]=6136,["Arkkoran Pincer"]=6137,["Arkkoran Oracle"]=6138,["Highperch Soarer"]=6139,["Hetaera"]=6140,["Pridewing Soarer"]=6141,["Mathiel"]=6142,["Servant of Arkkoroc"]=6143,["Son of Arkkoroc"]=6144,["School of Fish"]=6145,["Cliff Breaker"]=6146,["Cliff Thunderer"]=6147,["Cliff Walker"]=6148,["Yorus Barleybrew"]=6166,["Chimaera Matriarch"]=6167,["Roogug"]=6168,["Klockmort Spannerspan"]=6169,["Gutspill"]=6170,["Duthorian Rall"]=6171,["Henze Faulk"]=6172,["Gazin Tenorm"]=6173,["Stephanie Turner"]=6174,["John Turner"]=6175,["Bath'rah the Windwatcher"]=6176,["Narm Faulk"]=6177,["Muiredon Battleforge"]=6178,["Tiza Battleforge"]=6179,["Defias Raider"]=6180,["Jordan Stilwell"]=6181,["Daphne Stilwell"]=6182,["Timbermaw Pathfinder"]=6184,["Timbermaw Warrior"]=6185,["Timbermaw Totemic"]=6186,["Timbermaw Den Watcher"]=6187,["Timbermaw Shaman"]=6188,["Timbermaw Ursa"]=6189,["Spitelash Warrior"]=6190,["Spitelash Screamer"]=6193,["Spitelash Serpent Guard"]=6194,["Spitelash Siren"]=6195,["Spitelash Myrmidon"]=6196,["Blood Elf Surveyor"]=6198,["Blood Elf Reclaimer"]=6199,["Legashi Satyr"]=6200,["Legashi Rogue"]=6201,["Legashi Hellcaller"]=6202,["Caverndeep Burrower"]=6206,["Caverndeep Ambusher"]=6207,["Caverndeep Invader"]=6208,["Caverndeep Looter"]=6209,["Caverndeep Pillager"]=6210,["Caverndeep Reaver"]=6211,["Dark Iron Agent"]=6212,["Irradiated Invader"]=6213,["Chomper"]=6215,["Irradiated Slime"]=6218,["Corrosive Lurker"]=6219,["Irradiated Horror"]=6220,["Addled Leper"]=6221,["Leprous Technician"]=6222,["Leprous Defender"]=6223,["Leprous Machinesmith"]=6224,["Mechano-Tank"]=6225,["Mechano-Flamewalker"]=6226,["Mechano-Frostwalker"]=6227,["Dark Iron Ambassador"]=6228,["Crowd Pummeler 9-60"]=6229,["Peacekeeper Security Suit"]=6230,["Techbot"]=6231,["Arcane Nullifier X-21"]=6232,["Mechanized Sentry"]=6233,["Mechanized Guardian"]=6234,["Electrocutioner 6000"]=6235,["Klannoc Macleod"]=6236,["Stockade Archer"]=6237,["Big Will"]=6238,["Cyclonian"]=6239,["Affray Challenger"]=6240,["Bailor Stonehand"]=6241,["Gelihast"]=6243,["Takar the Seer"]=6244,["Anathera"]=6245,["Latherion"]=6246,["Doan Karhan"]=6247,["Twiggy Flathead"]=6248,["Affray Spectator"]=6249,["Crawler"]=6250,["Strahad Farsan"]=6251,["Acolyte Magaz"]=6252,["Acolyte Fenrick"]=6253,["Acolyte Wytula"]=6254,["Menara Voidrender"]=6266,["Acolyte Porena"]=6267,["Summoned Felhunter"]=6268,["Mouse"]=6271,["Innkeeper Janene"]=6272,["Zarrin"]=6286,["Radnaal Maneweaver"]=6287,["Jayla"]=6288,["Rand Rhobart"]=6289,["Yonn Deepcut"]=6290,["Balthus Stoneflayer"]=6291,["Eladriel"]=6292,["Jorah Annison"]=6293,["Krom Stoutarm"]=6294,["Wilma Ranthal"]=6295,["Kurdram Stonehammer"]=6297,["Thelgrum Stonehammer"]=6298,["Delfrum Flintbeard"]=6299,["Elisa Steelhand"]=6300,["Gorbold Steelhand"]=6301,["Helene Peltskinner"]=6306,["Dannie Fizzwizzle"]=6328,["Irradiated Pillager"]=6329,["Young Wavethrasher"]=6347,["Wavethrasher"]=6348,["Great Wavethrasher"]=6349,["Makrinni Razorclaw"]=6350,["Storm Bay Oracle"]=6351,["Coralshell Lurker"]=6352,["Kurzen Mindslave"]=6366,["Donni Anthania"]=6367,["Cat"]=6368,["Coralshell Tortoise"]=6369,["Makrinni Scrabbler"]=6370,["Storm Bay Warrior"]=6371,["Makrinni Snapclaw"]=6372,["Dane Winslow"]=6373,["Cylina Darkheart"]=6374,["Thunderhead Hippogryph"]=6375,["Wren Darkspring"]=6376,["Thunderhead Stagwing"]=6377,["Thunderhead Skystormer"]=6378,["Thunderhead Patriarch"]=6379,["Thunderhead Consort"]=6380,["Jubahl Corpseseeker"]=6382,["Ward of Zanzil"]=6386,["Dranh"]=6387,["Zanzil Skeleton"]=6388,["Deathguard Podrig"]=6389,["Ulag the Cleaver"]=6390,["Holdout Warrior"]=6391,["Holdout Medic"]=6392,["Henen Ragetotem"]=6393,["Ruga Ragetotem"]=6394,["Sergeant Rutger"]=6395,["Holdout Technician"]=6407,["Ula'elek"]=6408,["Orm Stonehoof"]=6410,["Velora Nitely"]=6411,["Skeleton"]=6412,["Anguished Dead"]=6426,["Haunting Phantasm"]=6427,["Therzok"]=6446,["Gamon"]=6466,["Mennet Carkad"]=6467,["Black Skeletal Horse"]=6486,["Arcanist Doan"]=6487,["Fallen Champion"]=6488,["Ironspine"]=6489,["Azshir the Sleepless"]=6490,["Spirit Healer"]=6491,["Rift Spawn"]=6492,["Illusionary Phantasm"]=6493,["Tazan"]=6494,["Riznek"]=6495,["Brivelthwerp"]=6496,["Astor Hadren"]=6497,["Devilsaur"]=6498,["Ironhide Devilsaur"]=6499,["Tyrant Devilsaur"]=6500,["Stegodon"]=6501,["Plated Stegodon"]=6502,["Spiked Stegodon"]=6503,["Thunderstomp Stegodon"]=6504,["Ravasaur"]=6505,["Ravasaur Runner"]=6506,["Ravasaur Hunter"]=6507,["Venomhide Ravasaur"]=6508,["Bloodpetal Lasher"]=6509,["Bloodpetal Flayer"]=6510,["Bloodpetal Thresher"]=6511,["Bloodpetal Trapper"]=6512,["Un'Goro Stomper"]=6513,["Un'Goro Gorilla"]=6514,["Un'Goro Thunderer"]=6516,["Tar Beast"]=6517,["Tar Lurker"]=6518,["Tar Lord"]=6519,["Scorching Elemental"]=6520,["Living Blaze"]=6521,["Andron Gant"]=6522,["Dark Iron Rifleman"]=6523,["Tar Creeper"]=6527,["Tabetha"]=6546,["Suffering Victim"]=6547,["Magus Tirth"]=6548,["Demon of the Orb"]=6549,["Mana Surge"]=6550,["Gorishi Wasp"]=6551,["Gorishi Worker"]=6552,["Gorishi Reaver"]=6553,["Gorishi Stinger"]=6554,["Gorishi Tunneler"]=6555,["Muculent Ooze"]=6556,["Primal Ooze"]=6557,["Glutinous Ooze"]=6559,["Stone Guardian"]=6560,["Estelle Gendry"]=6566,["Ghok'kah"]=6567,["Vizzklick"]=6568,["Gnoarn"]=6569,["Fenwick Thatros"]=6570,["Travel Form (Druid)"]=6573,["Jun'ha"]=6574,["Scarlet Trainee"]=6575,["Brienna Starglow"]=6576,["Bingles Blastenheimer"]=6577,["Shoni the Shilent"]=6579,["Ravasaur Matriarch"]=6581,["Clutchmother Zavas"]=6582,["Gruff"]=6583,["King Mosh"]=6584,["Uhk'loc"]=6585,["Rokar Bladeshadow"]=6586,["Overseer Glibby"]=6606,["Harroc"]=6607,["Monnos the Elder"]=6646,["Magister Hawkhelm"]=6647,["Antilos"]=6648,["Lady Sesspira"]=6649,["General Fangferror"]=6650,["Gatekeeper Rageroar"]=6651,["Master Feardred"]=6652,["Huge Toad"]=6653,["Gelkak Gyromast"]=6667,["Lord Cyrik Blackforge"]=6668,["The Threshwackonator 4100"]=6669,["Westfall Woodworker"]=6670,["Baritanas Skyriver"]=6706,["Fahrad"]=6707,["Thalon"]=6726,["Innkeeper Brianna"]=6727,["Narnie"]=6728,["Morridune"]=6729,["Jinky Twizzlefixxit"]=6730,["Harlown Darkweave"]=6731,["Amie Pierce"]=6732,["Stonevault Basher"]=6733,["Innkeeper Hearthstove"]=6734,["Innkeeper Saelienne"]=6735,["Innkeeper Keldamyr"]=6736,["Innkeeper Shaussiy"]=6737,["Innkeeper Kimlya"]=6738,["Innkeeper Bates"]=6739,["Innkeeper Allison"]=6740,["Innkeeper Norman"]=6741,["Innkeeper Pala"]=6746,["Innkeeper Kauth"]=6747,["Water Spirit"]=6748,["Erma"]=6749,["Ravenholdt Guard"]=6766,["Lord Jorach Ravenholdt"]=6768,["Ravenholdt Assassin"]=6771,["Falkhaan Isenstrider"]=6774,["Antur Fallow"]=6775,["Magrin Rivermane"]=6776,["Zan Shivsproket"]=6777,["Melika Isenstrider"]=6778,["Smudge Thunderwood"]=6779,["Porthannius"]=6780,["Melarith"]=6781,["Hands Springsprocket"]=6782,["Calvin Montague"]=6784,["Ratslin Maime"]=6785,["Ukor"]=6786,["Yelnagi Blackarm"]=6787,["Den Mother"]=6788,["Thistle Cub"]=6789,["Innkeeper Trelayne"]=6790,["Innkeeper Wiley"]=6791,["Tannok Frosthammer"]=6806,["Innkeeper Skindle"]=6807,["Talvash del Kissel"]=6826,["Shore Crab"]=6827,["Dockmaster"]=6846,["Bodyguard"]=6866,["Tracking Hound"]=6867,["Jarkal Mossmeld"]=6868,["Onin MacHammar"]=6886,["Yalda"]=6887,["Baelog"]=6906,["Olaf"]=6908,["Sethir the Ancient"]=6909,["Revelosh"]=6910,["Minion of Sethir"]=6911,["Remains of a Paladin"]=6912,["Lost One Rift Traveler"]=6913,["Dockworker"]=6927,["Innkeeper Grosk"]=6928,["Innkeeper Gryshka"]=6929,["Innkeeper Karakul"]=6930,["Swamp Spirit"]=6932,["Lucius"]=6966,["Dran Droffers"]=6986,["Malton Droffers"]=6987,["Tiev Mordune"]=7007,["Arantir"]=7009,["Zilzibin Drumlore"]=7010,["Earthen Rocksmasher"]=7011,["Earthen Sculptor"]=7012,["Blackrock Guard"]=7013,["Flagglemurk the Cruel"]=7015,["Lady Vespira"]=7016,["Lord Sinslayer"]=7017,["Venomlash Scorpid"]=7022,["Obsidian Sentinel"]=7023,["Agent Kearnen"]=7024,["Blackrock Soldier"]=7025,["Blackrock Sorcerer"]=7026,["Blackrock Slayer"]=7027,["Blackrock Warlock"]=7028,["Blackrock Battlemaster"]=7029,["Shadowforge Geologist"]=7030,["Obsidian Elemental"]=7031,["Greater Obsidian Elemental"]=7032,["Firegut Ogre"]=7033,["Firegut Ogre Mage"]=7034,["Firegut Brute"]=7035,["Thaurissan Spy"]=7036,["Thaurissan Firewalker"]=7037,["Thaurissan Agent"]=7038,["War Reaver"]=7039,["Black Dragonspawn"]=7040,["Black Wyrmkin"]=7041,["Flamescale Dragonspawn"]=7042,["Flamescale Wyrmkin"]=7043,["Black Drake"]=7044,["Scalding Drake"]=7045,["Searscale Drake"]=7046,["Black Broodling"]=7047,["Scalding Broodling"]=7048,["Flamescale Broodling"]=7049,["Defias Drone"]=7050,["Malformed Defias Drone"]=7051,["Defias Tower Patroller"]=7052,["Klaven Mortwake"]=7053,["Blackrock Worg"]=7055,["Defias Tower Sentry"]=7056,["Digmaster Shovelphlange"]=7057,["Venture Co. Drone"]=7067,["Condemned Acolyte"]=7068,["Condemned Monk"]=7069,["Condemned Cleric"]=7070,["Cursed Paladin"]=7071,["Cursed Justicar"]=7072,["Writhing Mage"]=7075,["Earthen Guardian"]=7076,["Earthen Hallshaper"]=7077,["Cleft Scorpid"]=7078,["Viscous Fallout"]=7079,["Cursed Ooze"]=7086,["Killian Hagey"]=7087,["Thuwd"]=7088,["Mooranta"]=7089,["Shadowforge Ambusher"]=7091,["Tainted Ooze"]=7092,["Vile Ooze"]=7093,["Ironbeak Owl"]=7097,["Ironbeak Screecher"]=7098,["Ironbeak Hunter"]=7099,["Warpwood Moss Flayer"]=7100,["Warpwood Shredder"]=7101,["Dessecus"]=7104,["Jadefire Satyr"]=7105,["Jadefire Rogue"]=7106,["Jadefire Trickster"]=7107,["Jadefire Betrayer"]=7108,["Jadefire Felsworn"]=7109,["Jadefire Shadowstalker"]=7110,["Jadefire Hellcaller"]=7111,["Jaedenar Cultist"]=7112,["Jaedenar Guardian"]=7113,["Jaedenar Enforcer"]=7114,["Jaedenar Adept"]=7115,["Jaedenar Darkweaver"]=7118,["Jaedenar Warlock"]=7120,["Jaedenar Hound"]=7125,["Jaedenar Hunter"]=7126,["Toxic Horror"]=7132,["Infernal Bodyguard"]=7135,["Infernal Sentry"]=7136,["Immolatus"]=7137,["Irontree Wanderer"]=7138,["Irontree Stomper"]=7139,["Withered Protector"]=7149,["Deadwood Warrior"]=7153,["Deadwood Gardener"]=7154,["Deadwood Pathfinder"]=7155,["Deadwood Den Watcher"]=7156,["Deadwood Avenger"]=7157,["Deadwood Shaman"]=7158,["Wrenix the Wretched"]=7161,["Wrenix's Gizmotronic Apparatus"]=7166,["Polly"]=7167,["Polly"]=7168,["Thragomm"]=7170,["Lore Keeper of Norgannon"]=7172,["Stonevault Ambusher"]=7175,["Ancient Stone Keeper"]=7206,["Doc Mixilpixil"]=7207,["Noarm"]=7208,["Obsidian Shard"]=7209,["Sand Storm"]=7226,["Ironaya"]=7228,["Shayis Steelfury"]=7230,["Kelgruk Bloodaxe"]=7231,["Borgus Steelhand"]=7232,["Taskmaster Fizzule"]=7233,["Ferocitas the Dream Eater"]=7234,["Gnarlpine Mystic"]=7235,["Sandfury Shadowhunter"]=7246,["Sandfury Soul Eater"]=7247,["Ember"]=7266,["Chief Ukorz Sandscalp"]=7267,["Sandfury Guardian"]=7268,["Scarab"]=7269,["Sandfury Zombie"]=7270,["Witch Doctor Zum'rah"]=7271,["Theka the Martyr"]=7272,["Gahz'rilla"]=7273,["Sandfury Executioner"]=7274,["Shadowpriest Sezz'ziz"]=7275,["Zul'Farrak Dead Hero"]=7276,["Zul'Farrak Zombie"]=7286,["Foreman Silixiz"]=7287,["Grand Foreman Puzik Gallywix"]=7288,["Shadowforge Sharpshooter"]=7290,["Galgann Firehammer"]=7291,["Dinita Stonemantle"]=7292,["[UNUSED] Drayl"]=7293,["Shim'la"]=7294,["Shailiea"]=7295,["Corand"]=7296,["Gothard Winslow"]=7297,["Demnul Farmountain"]=7298,["Venture Co. Lookout"]=7307,["Venture Co. Patroller"]=7308,["Earthen Custodian"]=7309,["Mutated Venture Co. Drone"]=7310,["Uthel'nay"]=7311,["Dink"]=7312,["Priestess A'moora"]=7313,["Darnath Bladesinger"]=7315,["Sister Aquinne"]=7316,["Oben Rageclaw"]=7317,["Rageclaw"]=7318,["Lady Sathrah"]=7319,["Stonevault Mauler"]=7320,["Stonevault Flameweaver"]=7321,["Riding Tiger (Black)"]=7322,["Winstone Wolfe"]=7323,["Simone Cantrell"]=7324,["Master Kang"]=7325,["Withered Warrior"]=7327,["Withered Reaver"]=7328,["Withered Quilguard"]=7329,["Withered Spearhide"]=7332,["Withered Battle Boar"]=7333,["Battle Boar Horror"]=7334,["Death's Head Geomancer"]=7335,["Death's Head Necromancer"]=7337,["Skeletal Shadowcaster"]=7340,["Skeletal Frostweaver"]=7341,["Skeletal Summoner"]=7342,["Splinterbone Skeleton"]=7343,["Splinterbone Warrior"]=7344,["Splinterbone Captain"]=7345,["Splinterbone Centurion"]=7346,["Boneflayer Ghoul"]=7347,["Thorn Eater Ghoul"]=7348,["Tomb Fiend"]=7349,["Tomb Reaver"]=7351,["Frozen Soul"]=7352,["Freezing Spirit"]=7353,["Ragglesnout"]=7354,["Tuten'kash"]=7355,["Plaguemaw the Rotting"]=7356,["Mordresh Fire Eye"]=7357,["Amnennar the Coldbringer"]=7358,["Dun Garok Soldier"]=7360,["Grubbis"]=7361,["Kum'isha the Collector"]=7363,["Flawless Draenethyst Sphere"]=7364,["Flawless Draenethyst Fragment"]=7365,["Stoneskin Totem IV"]=7366,["Stoneskin Totem V"]=7367,["Stoneskin Totem VI"]=7368,["Deadwind Brute"]=7369,["Restless Shade"]=7370,["Deadwind Mauler"]=7371,["Deadwind Warlock"]=7372,["Sky Shadow"]=7376,["Deadwind Ogre Mage"]=7379,["Siamese Cat"]=7380,["Silver Tabby Cat"]=7381,["Orange Tabby Cat"]=7382,["Black Tabby Cat"]=7383,["Cornish Rex Cat"]=7384,["Bombay Cat"]=7385,["White Kitten"]=7386,["Green Wing Macaw"]=7387,["Cockatoo"]=7388,["Senegal"]=7389,["Cockatiel"]=7390,["Hyacinth Macaw"]=7391,["Prairie Chicken"]=7392,["White Plymouth Rock"]=7393,["Ancona Chicken"]=7394,["Cockroach"]=7395,["Earthen Stonebreaker"]=7396,["Earthen Stonecarver"]=7397,["Stoneclaw Totem V"]=7398,["Stoneclaw Totem VI"]=7399,["Searing Totem V"]=7400,["Draenei Refugee"]=7401,["Searing Totem VI"]=7402,["Strength of Earth Totem IV"]=7403,["[UNUSED]Galak Flame Guard"]=7404,["Deadly Cleft Scorpid"]=7405,["Oglethorpe Obnoticus"]=7406,["Chief Engineer Bilgewhizzle"]=7407,["Spigot Operator Luglunket"]=7408,["Faltering Draenethyst Sphere"]=7409,["Thelman Slatefist"]=7410,["Spirit of Sathrah"]=7411,["Frost Resistance Totem II"]=7412,["Frost Resistance Totem III"]=7413,["Mana Spring Totem II"]=7414,["Mana Spring Totem III"]=7415,["Mana Spring Totem IV"]=7416,["Flametongue Totem III"]=7423,["Fire Resistance Totem II"]=7424,["Fire Resistance Totem III"]=7425,["Taim Ragetotem"]=7427,["Frostmaul Giant"]=7428,["Frostmaul Preserver"]=7429,["Young Frostsaber"]=7430,["Frostsaber"]=7431,["Frostsaber Stalker"]=7432,["Frostsaber Huntress"]=7433,["Frostsaber Pride Watcher"]=7434,["Cobalt Wyrmkin"]=7435,["Cobalt Scalebane"]=7436,["Cobalt Mageweaver"]=7437,["Winterfall Ursa"]=7438,["Winterfall Shaman"]=7439,["Winterfall Den Watcher"]=7440,["Winterfall Totemic"]=7441,["Winterfall Pathfinder"]=7442,["Shardtooth Mauler"]=7443,["Shardtooth Bear"]=7444,["Elder Shardtooth"]=7445,["Rabid Shardtooth"]=7446,["Fledgling Chillwind"]=7447,["Chillwind Chimaera"]=7448,["Chillwind Ravager"]=7449,["Ragged Owlbeast"]=7450,["Raging Owlbeast"]=7451,["Crazed Owlbeast"]=7452,["Moontouched Owlbeast"]=7453,["Berserk Owlbeast"]=7454,["Winterspring Owl"]=7455,["Winterspring Screecher"]=7456,["Rogue Ice Thistle"]=7457,["Ice Thistle Yeti"]=7458,["Ice Thistle Matriarch"]=7459,["Ice Thistle Patriarch"]=7460,["Hederine Initiate"]=7461,["Hederine Manastalker"]=7462,["Hederine Slayer"]=7463,["Magma Totem II"]=7464,["Magma Totem III"]=7465,["Magma Totem IV"]=7466,["Nature Resistance Totem"]=7467,["Nature Resistance Totem II"]=7468,["Nature Resistance Totem III"]=7469,["Windfury Totem II"]=7483,["Windfury Totem III"]=7484,["Nargatt"]=7485,["Grace of Air Totem"]=7486,["Grace of Air Totem II"]=7487,["Silverpine Deathguard"]=7489,["Bloodmage Drazial"]=7505,["Bloodmage Lynnore"]=7506,["Brown Snake"]=7507,["Black Kingsnake"]=7508,["Suffering Highborne"]=7523,["Anguished Highborne"]=7524,["Goblin Land Mine"]=7527,["Dark Whelpling"]=7543,["Crimson Whelpling"]=7544,["Emerald Whelpling"]=7545,["Bronze Whelpling"]=7546,["Azure Whelpling"]=7547,["Faeling"]=7548,["Tree Frog"]=7549,["Wood Frog"]=7550,["Dart Frog"]=7551,["Island Frog"]=7552,["Great Horned Owl"]=7553,["Snowy Owl"]=7554,["Hawk Owl"]=7555,["Eagle Owl"]=7556,["Cottontail Rabbit"]=7558,["Spotted Rabbit"]=7559,["Snowshoe Rabbit"]=7560,["Albino Snake"]=7561,["Blue Racer"]=7563,["Marin Noggenfogger"]=7564,["Scarlet Snake"]=7566,["Crimson Snake"]=7567,["Ribbon Snake"]=7568,["Green Water Snake"]=7569,["Elven Wisp"]=7570,["Fallen Hero of the Horde"]=7572,["Sprinkle"]=7583,["Wandering Forest Walker"]=7584,["Leprous Assistant"]=7603,["Sergeant Bly"]=7604,["Raven"]=7605,["Oro Eyegouge"]=7606,["Weegli Blastfuse"]=7607,["Murta Grimgut"]=7608,["Dispatch Commander Ruag"]=7623,["Bengor"]=7643,["Razelikh the Defiler"]=7664,["Grol the Destroyer"]=7665,["Archmage Allistarj"]=7666,["Lady Sevine"]=7667,["Servant of Razelikh"]=7668,["Servant of Grol"]=7669,["Servant of Allistarj"]=7670,["Servant of Sevine"]=7671,["Alessandro Luca"]=7683,["Riding Tiger (Yellow)"]=7684,["Riding Tiger (Red)"]=7686,["Spotted Frostsaber"]=7687,["Striped Nightsaber"]=7690,["Riding Raptor (Crimson)"]=7704,["Riding Raptor (Ivory)"]=7706,["Turquoise Raptor"]=7707,["Violet Raptor"]=7708,["Riding Tallstrider (Brown)"]=7709,["Riding Tallstrider (Gray)"]=7710,["Riding Tallstrider (Pink)"]=7711,["Riding Tallstrider (Purple)"]=7712,["Riding Tallstrider (Turquoise)"]=7713,["Byula"]=7714,["Senior Surveyor Fizzledowser"]=7724,["Grimtotem Raider"]=7725,["Grimtotem Naturalist"]=7726,["Grimtotem Shaman"]=7727,["Kirith the Damned"]=7728,["Spirit of Kirith"]=7729,["Stonetalon Grunt"]=7730,["Innkeeper Jayka"]=7731,["Dupe Bug"]=7732,["Innkeeper Fizzgrimble"]=7733,["Ilifar"]=7734,["Felcular"]=7735,["Innkeeper Shyria"]=7736,["Innkeeper Greul"]=7737,["Burning Servant"]=7738,["Red Mechanostrider"]=7739,["Gracina Spiritmight"]=7740,["Innkeeper Thulfram"]=7744,["Blue Mechanostrider"]=7749,["Corporal Thund Splithoof"]=7750,["Curgle Cranklehop"]=7763,["Troyas Moonbreeze"]=7764,["Rockbiter"]=7765,["Tyrion"]=7766,["Witherbark Felhunter"]=7767,["Witherbark Bloodling"]=7768,["Hazzali Parasite"]=7769,["Winkey"]=7770,["Marvon Rivetseeker"]=7771,["Kalin Windflight"]=7772,["Marli Wishrunner"]=7773,["Shay Leafrunner"]=7774,["Gregan Brewspewer"]=7775,["Talo Thornhoof"]=7776,["Rok Orhan"]=7777,["Doran Steelwing"]=7778,["Priestess Tyriona"]=7779,["Rin'ji"]=7780,["Loramus Thalipedes"]=7783,["Homing Robot OOX-17/TN"]=7784,["Ward of Zum'rah"]=7785,["Skeleton of Zum'rah"]=7786,["Sandfury Slave"]=7787,["Sandfury Drudge"]=7788,["Sandfury Cretin"]=7789,["Orokk Omosh"]=7790,["Aturk the Anvil"]=7792,["Ox"]=7793,["McGavan"]=7794,["Hydromancer Velratha"]=7795,["Nekrum Gutchewer"]=7796,["Ruuzlu"]=7797,["Hank the Hammer"]=7798,["Gimblethorn"]=7799,["Mekgineer Thermaplugg"]=7800,["Gilveradin Sunchaser"]=7801,["Galvan the Ancient"]=7802,["Scorpid Duneburrower"]=7803,["Trenton Lighthammer"]=7804,["Wastewander Scofflaw"]=7805,["Homing Robot OOX-09/HL"]=7806,["Homing Robot OOX-22/FE"]=7807,["Marauding Owlbeast"]=7808,["Vilebranch Ambusher"]=7809,["Bera Stonehammer"]=7823,["Bulkrek Ragefist"]=7824,["Oran Snakewrithe"]=7825,["Ambassador Ardalan"]=7826,["Gnomeregan Evacuee"]=7843,["Fire Nova Totem IV"]=7844,["Fire Nova Totem V"]=7845,["Teremus the Devourer"]=7846,["Caliph Scorpidsting"]=7847,["Lurking Feral Scar"]=7848,["Mobile Alert System"]=7849,["Kernobee"]=7850,["Nethergarde Elite"]=7851,["Pratt McGrubben"]=7852,["Scooty"]=7853,["Jangdor Swiftstrider"]=7854,["Southsea Pirate"]=7855,["Southsea Freebooter"]=7856,["Southsea Dock Worker"]=7857,["Southsea Swashbuckler"]=7858,["Dream Vision"]=7863,["Lingering Highborne"]=7864,["Wildhammer Sentry"]=7865,["Peter Galen"]=7866,["Thorkaf Dragoneye"]=7867,["Sarah Tanner"]=7868,["Brumn Winterhoof"]=7869,["Caryssia Moonhunter"]=7870,["Se'Jib"]=7871,["Death's Head Cultist"]=7872,["Razorfen Battleguard"]=7873,["Razorfen Thornweaver"]=7874,["Hadoken Swiftstrider"]=7875,["Tran'rek"]=7876,["Latronicus Moonspear"]=7877,["Vestia Moonspear"]=7878,["Quintis Jonespyre"]=7879,["Ginro Hearthkindle"]=7880,["Stoley"]=7881,["Security Chief Bilgewhizzle"]=7882,["Andre Firebeard"]=7883,["Fraggar Thundermantle"]=7884,["Spitelash Battlemaster"]=7885,["Spitelash Enchantress"]=7886,["Ambassador Bloodrage"]=7895,["Alarm-a-bomb 2600"]=7897,["Pirate treasure trigger mob"]=7898,["Treasure Hunting Pirate"]=7899,["Angelas Moonbreeze"]=7900,["Treasure Hunting Swashbuckler"]=7901,["Treasure Hunting Buccaneer"]=7902,["Jewel"]=7903,["Jacob"]=7904,["Daryn Lightwind"]=7907,["Walking Bomb"]=7915,["Erelas Ambersky"]=7916,["Brother Sarno"]=7917,["Stone Watcher of Norgannon"]=7918,["Lyon Mountainheart"]=7936,["High Tinker Mekkatorque"]=7937,["Feathermoon Sentinel"]=7939,["Darnall"]=7940,["Mardrack Greenwell"]=7941,["Faralorn"]=7942,["Harklane"]=7943,["Tinkmaster Overspark"]=7944,["Savanne"]=7945,["Brannock"]=7946,["Vivianna"]=7947,["Kylanna Windwhisper"]=7948,["Xylinnia Starshine"]=7949,["Master Mechanic Castpipe"]=7950,["Zas'Tysh"]=7951,["Zjolnir"]=7952,["Xar'Ti"]=7953,["Binjy Featherwhistle"]=7954,["Milli Featherwhistle"]=7955,["Kindal Moonweaver"]=7956,["Jer'kai Moonweaver"]=7957,["Camp Narache Brave"]=7975,["Thalgus Thunderfist"]=7976,["Gammerita"]=7977,["Bimble Longberry"]=7978,["Deathguard Elite"]=7980,["Vile Priestess Hexx"]=7995,["Qiaga the Keeper"]=7996,["Captured Sprite Darter"]=7997,["Blastmaster Emi Shortfuse"]=7998,["Tyrande Whisperwind"]=7999,["Ashenvale Sentinel"]=8015,["Barrens Guard"]=8016,["Sen'jin Guardian"]=8017,["Guthrum Thunderfist"]=8018,["Fyldren Moonfeather"]=8019,["Shyn"]=8020,["Orwin Gizzmick"]=8021,["Thadius Grimshade"]=8022,["Sharpbeak"]=8023,["Sharpbeak's Father"]=8024,["Sharpbeak's Mother"]=8025,["Thyn'tel Bladeweaver"]=8026,["Dark Iron Land Mine"]=8035,["Thelsamar Mountaineer"]=8055,["Edana Hatetalon"]=8075,["Sul'lithuz Sandcrawler"]=8095,["Westfall Brigade Guard"]=8096,["Witch Doctor Uzer'i"]=8115,["Ziggle Sparks"]=8116,["Wizbang Booms"]=8117,["Lillian Singh"]=8118,["Zikkel"]=8119,["Sul'lithuz Abomination"]=8120,["Jaxxil Sparks"]=8121,["Kizzak Sparks"]=8122,["Rickle Goldgrubber"]=8123,["Qizzik"]=8124,["Dirge Quikcleave"]=8125,["Nixx Sprocketspring"]=8126,["Antu'sul"]=8127,["Pikkle"]=8128,["Wrinkle Goodsteel"]=8129,["Sul'lithuz Hatchling"]=8130,["Blizrik Buckshot"]=8131,["Lord Shalzaru"]=8136,["Gikkix"]=8137,["Sul'lithuz Broodling"]=8138,["Jabbey"]=8139,["Brother Karman"]=8140,["Captain Evencane"]=8141,["Jannos Lighthoof"]=8142,["Loorana"]=8143,["Kulleg Stonehorn"]=8144,["Sheendra Tallgrass"]=8145,["Ruw"]=8146,["Camp Mojache Brave"]=8147,["Sul'lithuz Warder"]=8149,["Janet Hommers"]=8150,["Nijel's Point Guard"]=8151,["Harnor"]=8152,["Narv Hidecrafter"]=8153,["Ghost Walker Brave"]=8154,["Kargath Grunt"]=8155,["Servant of Antu'sul"]=8156,["Logannas"]=8157,["Bronk"]=8158,["Worb Strongstitch"]=8159,["Nioma"]=8160,["Harggan"]=8161,["Gharash"]=8176,["Rartar"]=8177,["Nina Lightbrew"]=8178,["Greater Healing Ward"]=8179,["Occulus"]=8196,["Chronalis"]=8197,["Tick"]=8198,["Warleader Krazzilak"]=8199,["Jin'Zallah the Sandbringer"]=8200,["Omgorn the Lost"]=8201,["Cyclok the Mad"]=8202,["Kregg Keelhaul"]=8203,["Soriid the Devourer"]=8204,["Haarka the Ravenous"]=8205,["Emberwing"]=8207,["Murderous Blisterpaw"]=8208,["Razortalon"]=8210,["Old Cliff Jumper"]=8211,["The Reak"]=8212,["Ironback"]=8213,["Jalinde Summerdrake"]=8214,["Grimungous"]=8215,["Retherokk the Berserker"]=8216,["Mith'rethis the Enchanter"]=8217,["Witherheart the Stalker"]=8218,["Zul'arek Hatefowler"]=8219,["Muck Frenzy"]=8236,["Curator Thorius"]=8256,["Oozeling"]=8257,["Soaring Razorbeak"]=8276,["Rekk'tilac"]=8277,["Smoldar"]=8278,["Faulty War Golem"]=8279,["Shleipnarr"]=8280,["Scald"]=8281,["Highlord Mastrogonde"]=8282,["Slave Master Blackheart"]=8283,["Dorius Stonetender"]=8284,["Mojo the Twisted"]=8296,["Magronos the Unyielding"]=8297,["Akubar the Seer"]=8298,["Spiteflayer"]=8299,["Ravage"]=8300,["Clack the Reaver"]=8301,["Deatheye"]=8302,["Grunter"]=8303,["Dreadscorn"]=8304,["Kixxle"]=8305,["Duhng"]=8306,["Tarban Hearthgrain"]=8307,["Alenndaar Lapidaar"]=8308,["Carlo Aurelius"]=8309,["Watcher Wollpert"]=8310,["Slime Maggot"]=8311,["Atal'ai Deathwalker's Spirit"]=8317,["Atal'ai Slave"]=8318,["Nightmare Whelp"]=8319,["Sprok"]=8320,["Atal'ai Skeleton"]=8324,["Hakkari Sapper"]=8336,["Dark Iron Steelshifter"]=8337,["Dark Iron Marksman"]=8338,["Chesmu"]=8356,["Atepa"]=8357,["Hewa"]=8358,["Ahanu"]=8359,["Elki"]=8360,["Chepi"]=8361,["Kuruk"]=8362,["Shadi Mistrunner"]=8363,["Pakwa"]=8364,["Mechanical Chicken"]=8376,["Alexandra Blazen"]=8378,["Archmage Xylem"]=8379,["Captain Vanessa Beltis"]=8380,["Lindros"]=8381,["Patrick Mills"]=8382,["Master Wood"]=8383,["Deep Lurker"]=8384,["Mura Runetotem"]=8385,["Horizon Scout Crewman"]=8386,["Horizon Scout First Mate"]=8387,["Horizon Scout Cook"]=8388,["Horizon Scout Engineer"]=8389,["Chemist Cuely"]=8390,["Lathoric the Black"]=8391,["Pilot Xiggs Fuselighter"]=8392,["Thersa Windsong"]=8393,["Roland Geardabbler"]=8394,["Sanath Lim-yo"]=8395,["Sentinel Dalia Sunblade"]=8396,["Sentinel Keldara Sunblade"]=8397,["Ohanko"]=8398,["Nyrill"]=8399,["Obsidion"]=8400,["Halpa"]=8401,["Enslaved Archaeologist"]=8402,["Jeremiah Payson"]=8403,["Xan'tish"]=8404,["Ogtinc"]=8405,["Warlord Krellian"]=8408,["Caravan Master Tset"]=8409,["Felix Whindlebolt"]=8416,["Dying Archaeologist"]=8417,["Falla Sagewind"]=8418,["Twilight Idolater"]=8419,["Kim'jael"]=8420,["Dorius"]=8421,["Zamael Lunthistle"]=8436,["Hakkari Minion"]=8437,["Hakkari Bloodkeeper"]=8438,["Nilith Lokrav"]=8439,["Shade of Hakkar"]=8440,["Raze"]=8441,["Shadowsilk Poacher"]=8442,["Avatar of Hakkar"]=8443,["Trade Master Kovic"]=8444,["Xiggs Fuselighter's Flyingmachine"]=8446,["Clunk"]=8447,["Skeletal Servant"]=8477,["Second Mate Shandril"]=8478,["Kalaran Windblade"]=8479,["Kalaran the Deceiver"]=8480,["Liv Rizzlefix"]=8496,["Nightmare Suppressor"]=8497,["Gibblewilt"]=8503,["Dark Iron Sentry"]=8504,["Eranikus the Chained"]=8506,["Tymor"]=8507,["Gretta Ganter"]=8508,["Squire Maltrake"]=8509,["Atal'ai Totem"]=8510,["Belnistrasz"]=8516,["Xiggs Fuselighter"]=8517,["Rynthariel the Keymaster"]=8518,["Blighted Surge"]=8519,["Plague Ravager"]=8520,["Blighted Horror"]=8521,["Plague Monstrosity"]=8522,["Scourge Soldier"]=8523,["Cursed Mage"]=8524,["Scourge Warder"]=8525,["Dark Caster"]=8526,["Scourge Guard"]=8527,["Dread Weaver"]=8528,["Scourge Champion"]=8529,["Cannibal Ghoul"]=8530,["Gibbering Ghoul"]=8531,["Diseased Flayer"]=8532,["Putrid Gargoyle"]=8534,["Putrid Shrieker"]=8535,["Interloper"]=8537,["Unseen Servant"]=8538,["Eyeless Watcher"]=8539,["Torn Screamer"]=8540,["Hate Shrieker"]=8541,["Death Singer"]=8542,["Stitched Horror"]=8543,["Gangled Golem"]=8544,["Stitched Golem"]=8545,["Dark Adept"]=8546,["Death Cultist"]=8547,["Vile Tutor"]=8548,["Shadowmage"]=8550,["Dark Summoner"]=8551,["Necromancer"]=8553,["Chief Sharptusk Thornmantle"]=8554,["Crypt Stalker"]=8555,["Crypt Walker"]=8556,["Crypt Horror"]=8557,["Crypt Slayer"]=8558,["Mossflayer Scout"]=8560,["Mossflayer Shadowhunter"]=8561,["Mossflayer Cannibal"]=8562,["Wretched Woodsman"]=8563,["Wretched Ranger"]=8564,["Wretched Pathstrider"]=8565,["Dark Iron Lookout"]=8566,["Glutton"]=8567,["Ag'tor Bloodfist"]=8576,["Magus Rimtori"]=8578,["Yeh'kinya"]=8579,["Atal'alarion"]=8580,["Blood Elf Defender"]=8581,["Kadrak"]=8582,["Dirania Silvershine"]=8583,["Iverron"]=8584,["Frost Spectre"]=8585,["Haggrum Bloodfist"]=8586,["Jediga"]=8587,["Umbranse the Spiritspeaker"]=8588,["Plaguehound Runt"]=8596,["Plaguehound"]=8597,["Frenzied Plaguehound"]=8598,["Plaguebat"]=8600,["Noxious Plaguebat"]=8601,["Monstrous Plaguebat"]=8602,["Carrion Grub"]=8603,["Carrion Devourer"]=8605,["Living Decay"]=8606,["Rotting Sludge"]=8607,["Angered Infernal"]=8608,["Alexandra Constantine"]=8609,["Kroum"]=8610,["Idol Room Spawner"]=8611,["Screecher Spirit"]=8612,["Mithril Dragonling"]=8615,["Infernal Servant"]=8616,["Zalashji"]=8617,["Morta'gya the Keeper"]=8636,["Dark Iron Watchman"]=8637,["Hukku's Voidwalker"]=8656,["Hukku's Succubus"]=8657,["Hukku's Imp"]=8658,["Jes'rimon"]=8659,["The Evalcharr"]=8660,["Auctioneer Beardo"]=8661,["Idol Oven Fire Target"]=8662,["Sunwalker Saern"]=8664,["Shylenai"]=8665,["Lil Timmy"]=8666,["Gusting Vortex"]=8667,["Felhound Tracker"]=8668,["Auctioneer Tolon"]=8669,["Auctioneer Chilton"]=8670,["Auctioneer Buckler"]=8671,["Auctioneer Leeka"]=8672,["Auctioneer Thathung"]=8673,["Auctioneer Stampi"]=8674,["Felbeast"]=8675,["World Goblin Engineering Trainer"]=8677,["Jubie Gadgetspring"]=8678,["Knaz Blunderflame"]=8679,["Outfitter Eric"]=8681,["Henry Stern"]=8696,["Dreadlord"]=8716,["Felguard Elite"]=8717,["Manahound"]=8718,["Auctioneer Fitch"]=8719,["Auctioneer Redmuse"]=8720,["Auctioneer Epitwee"]=8721,["Auctioneer Gullem"]=8722,["Auctioneer Golothas"]=8723,["Auctioneer Wabang"]=8724,["Buzzek Bracketswing"]=8736,["Linken"]=8737,["Vazario Linkgrease"]=8738,["Raytaf"]=8756,["Shahiar"]=8757,["Zaman"]=8758,["Mosshoof Runner"]=8759,["Mosshoof Stag"]=8760,["Mosshoof Courser"]=8761,["Timberweb Recluse"]=8762,["Mistwing Rogue"]=8763,["Mistwing Ravager"]=8764,["Forest Ooze"]=8766,["Sah'rhee"]=8767,["Emerald Dragon Whelp"]=8776,["Deathly Usher"]=8816,["Battle Chicken"]=8836,["Muck Splash"]=8837,["Tyrion's Spybot"]=8856,["Sandfury Acolyte"]=8876,["Sandfury Zealot"]=8877,["Muuran"]=8878,["Royal Historian Archesonus"]=8879,["Riding Ram"]=8881,["Riding Tiger"]=8882,["Riding Horse"]=8883,["Skeletal Mount"]=8884,["Riding Raptor"]=8885,["Deviate Python"]=8886,["A tormented voice"]=8887,["Franclorn Forgewright"]=8888,["Anvilrage Overseer"]=8889,["Anvilrage Warden"]=8890,["Anvilrage Guardsman"]=8891,["Anvilrage Footman"]=8892,["Anvilrage Soldier"]=8893,["Anvilrage Medic"]=8894,["Anvilrage Officer"]=8895,["Shadowforge Peasant"]=8896,["Doomforge Craftsman"]=8897,["Anvilrage Marshal"]=8898,["Doomforge Dragoon"]=8899,["Doomforge Arcanasmith"]=8900,["Anvilrage Reservist"]=8901,["Shadowforge Citizen"]=8902,["Anvilrage Captain"]=8903,["Shadowforge Senator"]=8904,["Warbringer Construct"]=8905,["Ragereaver Golem"]=8906,["Wrath Hammer Construct"]=8907,["Molten War Golem"]=8908,["Fireguard"]=8909,["Blazing Fireguard"]=8910,["Fireguard Destroyer"]=8911,["Twilight's Hammer Torturer"]=8912,["Twilight Emissary"]=8913,["Twilight Bodyguard"]=8914,["Twilight's Hammer Ambassador"]=8915,["Arena Spectator"]=8916,["Quarry Slave"]=8917,["Weapon Technician"]=8920,["Bloodhound"]=8921,["Bloodhound Mastiff"]=8922,["Panzor the Invincible"]=8923,["The Behemoth"]=8924,["Dredge Worm"]=8925,["Deep Stinger"]=8926,["Dark Screecher"]=8927,["Burrowing Thundersnout"]=8928,["Princess Moira Bronzebeard"]=8929,["Innkeeper Heather"]=8931,["Borer Beetle"]=8932,["Cave Creeper"]=8933,["Christopher Hewen"]=8934,["Pet Bomb"]=8937,["Angerclaw Bear"]=8956,["Angerclaw Grizzly"]=8957,["Angerclaw Mauler"]=8958,["Felpaw Wolf"]=8959,["Felpaw Scavenger"]=8960,["Felpaw Ravager"]=8961,["Nida"]=8962,["Effsee"]=8963,["Blackrock Drake"]=8964,["Shawn"]=8965,["Hematos"]=8976,["Krom'Grul"]=8977,["Thauris Balgarr"]=8978,["Gruklash"]=8979,["Firegut Captain"]=8980,["Malfunctioning Reaver"]=8981,["Ironhand Guardian"]=8982,["Golem Lord Argelmach"]=8983,["Voidwalker Minion"]=8996,["Gershala Nightwhisper"]=8997,["Bael'Gar"]=9016,["Lord Incendius"]=9017,["High Interrogator Gerstahn"]=9018,["Emperor Dagran Thaurissan"]=9019,["Commander Gor'shak"]=9020,["Kharan Mighthammer"]=9021,["Dughal Stormwing"]=9022,["Marshal Windsor"]=9023,["Pyromancer Loregrain"]=9024,["Lord Roccor"]=9025,["Overmaster Pyron"]=9026,["Gorosh the Dervish"]=9027,["Grizzle"]=9028,["Eviscerator"]=9029,["Ok'thor the Breaker"]=9030,["Anub'shiah"]=9031,["Hedrum the Creeper"]=9032,["General Angerforge"]=9033,["Hate'rel"]=9034,["Anger'rel"]=9035,["Vile'rel"]=9036,["Gloom'rel"]=9037,["Seeth'rel"]=9038,["Doom'rel"]=9039,["Dope'rel"]=9040,["Warder Stilgiss"]=9041,["Verek"]=9042,["Scarshield Grunt"]=9043,["Scarshield Sentry"]=9044,["Scarshield Acolyte"]=9045,["Scarshield Quartermaster"]=9046,["Jenal"]=9047,["Fineous Darkvire"]=9056,["Ghede"]=9076,["Warlord Goretooth"]=9077,["Shadowmage Vivian Lagrave"]=9078,["Hierophant Theodora Mulvadania"]=9079,["Lexlort"]=9080,["Galamav the Marksman"]=9081,["Thal'trak Proudtusk"]=9082,["Razal'blade"]=9083,["Thunderheart"]=9084,["Initiate Amakkar"]=9085,["Grunt Gargal"]=9086,["Bashana Runetotem"]=9087,["Rage Talon Dragonspawn"]=9096,["Scarshield Legionnaire"]=9097,["Scarshield Spellbinder"]=9098,["Sraaz"]=9099,["Eridan Bluewind"]=9116,["J.D. Collie"]=9117,["Larion"]=9118,["Muigin"]=9119,["Sha'ni Proudtusk"]=9136,["Ambassador Flamelash"]=9156,["Bloodpetal Pest"]=9157,["Warhorse"]=9158,["Young Diemetradon"]=9162,["Diemetradon"]=9163,["Elder Diemetradon"]=9164,["Fledgling Pterrordax"]=9165,["Pterrordax"]=9166,["Frenzied Pterrordax"]=9167,["Gorlop"]=9176,["Oralius"]=9177,["Burning Spirit"]=9178,["Jazzrik"]=9179,["Highlord Omokk"]=9196,["Spirestone Battle Mage"]=9197,["Spirestone Mystic"]=9198,["Spirestone Enforcer"]=9199,["Spirestone Reaver"]=9200,["Spirestone Ogre Magus"]=9201,["Spirestone Warlord"]=9216,["Spirestone Lord Magus"]=9217,["Spirestone Battle Lord"]=9218,["Spirestone Butcher"]=9219,["Shadow Hunter Vosh'gajin"]=9236,["War Master Voone"]=9237,["Quentin"]=9238,["Smolderthorn Mystic"]=9239,["Smolderthorn Shadow Priest"]=9240,["Smolderthorn Headhunter"]=9241,["Farm Chicken"]=9256,["Scarshield Warlock"]=9257,["Scarshield Raider"]=9258,["Firebrand Grunt"]=9259,["Firebrand Legionnaire"]=9260,["Firebrand Darkweaver"]=9261,["Firebrand Invoker"]=9262,["Firebrand Dreadweaver"]=9263,["Firebrand Pyromancer"]=9264,["Smolderthorn Shadow Hunter"]=9265,["Smolderthorn Witch Doctor"]=9266,["Smolderthorn Axe Thrower"]=9267,["Smolderthorn Berserker"]=9268,["Smolderthorn Seer"]=9269,["Williden Marshal"]=9270,["Hol'anyee Marshal"]=9271,["Spark Nilminer"]=9272,["Petra Grossen"]=9273,["Dadanga"]=9274,["Milly Osworth"]=9296,["Enraged Wyvern"]=9297,["Donova Snowden"]=9298,["Gaeriyan"]=9299,["Wenikee Boltbucket"]=9316,["Rilli Greasygob"]=9317,["Incendosaur"]=9318,["Houndmaster Grebmar"]=9319,["Boss Copperplug"]=9336,["Innkeeper Shul'kar"]=9356,["Blazerunner"]=9376,["Swirling Vortex"]=9377,["Ground Pounder"]=9396,["Unearthed Fossil"]=9397,["Twilight's Hammer Executioner"]=9398,["Scarshield Worg"]=9416,["Spawn of Bael'Gar"]=9436,["Dark Keeper Vorfalk"]=9437,["Dark Keeper Bethek"]=9438,["Dark Keeper Uggel"]=9439,["Dark Keeper Zimrel"]=9441,["Dark Keeper Ofgut"]=9442,["Dark Keeper Pelver"]=9443,["Dark Guard"]=9445,["Scarlet Warder"]=9447,["Scarlet Praetorian"]=9448,["Scarlet Cleric"]=9449,["Scarlet Curate"]=9450,["Scarlet Archmage"]=9451,["Scarlet Enchanter"]=9452,["Aquementas"]=9453,["Xavathras"]=9454,["Warlord Krom'zar"]=9456,["Horde Defender"]=9457,["Horde Axe Thrower"]=9458,["Cyrus Therepentous"]=9459,["Gadgetzan Bruiser"]=9460,["Frenzied Black Drake"]=9461,["Chieftain Bloodmaw"]=9462,["Overlord Ror"]=9464,["Golhine the Hooded"]=9465,["Miblon Snarltooth"]=9467,["Watchman Doomgrip"]=9476,["Cloned Ooze"]=9477,["Gorishi Egg"]=9496,["Gorishi Grub"]=9498,["Plugger Spazzring"]=9499,["Mistress Nagmara"]=9500,["Innkeeper Adegwa"]=9501,["Phalanx"]=9502,["Private Rocknot"]=9503,["Lord Banehollow"]=9516,["Shadow Lord Fel'dan"]=9517,["Rakaiah"]=9518,["Grark Lorkrub"]=9520,["Enraged Felbat"]=9521,["Blackrock Ambusher"]=9522,["Kolkar Stormseer"]=9523,["Kolkar Invader"]=9524,["Freewind Brave"]=9525,["Enraged Gryphon"]=9526,["Enraged Hippogryph"]=9527,["Arathandris Silversky"]=9528,["Maybess Riverbreeze"]=9529,["Maxwort Uberglint"]=9536,["Hurley Blackbreath"]=9537,["High Executioner Nuzrak"]=9538,["Shadow of Lexlort"]=9539,["Enohar Thunderbrew"]=9540,["Blackbreath Crony"]=9541,["Franclorn's Spirit"]=9542,["Ribbly Screwspigot"]=9543,["Yuka Screwspigot"]=9544,["Grim Patron"]=9545,["Raschal the Courier"]=9546,["Guzzling Patron"]=9547,["Cawind Trueaim"]=9548,["Borand"]=9549,["Furmund"]=9550,["Starn"]=9551,["Zanara"]=9552,["Nadia Vernon"]=9553,["Hammered Patron"]=9554,["Mu'uta"]=9555,["Felhound Minion"]=9556,["Grimble"]=9558,["Grizzlowe"]=9559,["Marshal Maxwell"]=9560,["Jalinda Sprig"]=9561,["Helendis Riverhorn"]=9562,["Ragged John"]=9563,["Frezza"]=9564,["Mayara Brightwing"]=9565,["Zapetta"]=9566,["Overlord Wyrmthalak"]=9568,["Orgrimmar Talent Master"]=9580,["Undercity Talent Master"]=9582,["Bloodaxe Veteran"]=9583,["Jalane Ayrole"]=9584,["Bannok Grimaxe"]=9596,["Arei"]=9598,["Parrot"]=9600,["Treant Spirit"]=9601,["Hahk'Zor"]=9602,["Gorgon'och"]=9604,["Blackrock Raider"]=9605,["Laris Geardawdle"]=9616,["Karna Remtravel"]=9618,["Torwa Pathfinder"]=9619,["Dreka'Sur"]=9620,["Gargantuan Ooze"]=9621,["U'cha"]=9622,["A-Me 01"]=9623,["Kireena"]=9636,["Scorching Totem"]=9637,["Pet Bombling"]=9656,["Lil' Smoky"]=9657,["Distract Test"]=9658,["Unkillable Test Dummy"]=9659,["Agnar Beastamer"]=9660,["Sprite Darter Hatchling"]=9662,["Tink Sprocketwhistle"]=9676,["Ograbisi"]=9677,["Shill Dinger"]=9678,["Tobias Seecher"]=9679,["Crest Killer"]=9680,["Jaz"]=9681,["Marshal Reginald Windsor"]=9682,["Lar'korwi Mate"]=9683,["Lar'korwi"]=9684,["Windwall Totem"]=9687,["Windwall Totem II"]=9688,["Windwall Totem III"]=9689,["Ember Worg"]=9690,["Venomtip Scorpid"]=9691,["Bloodaxe Raider"]=9692,["Bloodaxe Evoker"]=9693,["Slavering Ember Worg"]=9694,["Deathlash Scorpid"]=9695,["Bloodaxe Worg"]=9696,["Giant Ember Worg"]=9697,["Firetail Scorpid"]=9698,["Fire Beetle"]=9699,["Lava Crab"]=9700,["Spire Scorpid"]=9701,["Illusionary Dreamwatcher"]=9705,["Yorba Screwspigot"]=9706,["Scarshield Portal"]=9707,["Burning Imp"]=9708,["Bloodaxe Warmonger"]=9716,["Bloodaxe Summoner"]=9717,["Ghok Bashguud"]=9718,["Quartermaster Zigris"]=9736,["Flamekin Spitter"]=9776,["Flamekin Sprite"]=9777,["Flamekin Torcher"]=9778,["Flamekin Rager"]=9779,["Galgar"]=9796,["Pyroguard Emberseer"]=9816,["Blackhand Dreadweaver"]=9817,["Blackhand Summoner"]=9818,["Blackhand Veteran"]=9819,["Mathredis Firestar"]=9836,["Auctioneer Grimful"]=9856,["Auctioneer Grizzlin"]=9857,["Auctioneer Kresky"]=9858,["Auctioneer Lympkin"]=9859,["Salia"]=9860,["Moora"]=9861,["Jaedenar Legionnaire"]=9862,["Locheed"]=9876,["Prince Xavalis"]=9877,["Entropic Beast"]=9878,["Entropic Horror"]=9879,["Jarquia"]=9916,["Corrupted Kitten"]=9936,["Common Kitten"]=9937,["Magmus"]=9938,["Shadowforge Flame Keeper"]=9956,["Tharlidun"]=9976,["Sylista"]=9977,["Wesley"]=9978,["Sarah Goode"]=9979,["Shelby Stoneflint"]=9980,["Sikwa"]=9981,["Penny"]=9982,["Kelsuwa"]=9983,["Ulbrek Firehand"]=9984,["Laziphus"]=9985,["Shyrka Wolfrunner"]=9986,["Shoja'my"]=9987,["Xon'cha"]=9988,["Lina Hearthstove"]=9989,["Lanti'gah"]=9990,["Winna Hazzard"]=9996,["Spraggle Frock"]=9997,["Shizzle"]=9998,["Ringo"]=9999,["Arugal"]=10000,["Tainted Rat"]=10016,["Tainted Cockroach"]=10017,["Brackenwall Enforcer"]=10036,["Lakeshire Guard"]=10037,["Night Watch Guard"]=10038,["Gorishi Hive Guard"]=10040,["Gorishi Hive Queen"]=10041,["Corrupted Saber"]=10042,["Ribbly's Crony"]=10043,["Kirk Maxwell"]=10045,["Bethaine Flinthammer"]=10046,["Michael"]=10047,["Gereck"]=10048,["Hekkru"]=10049,["Seikwa"]=10050,["Seriadne"]=10051,["Maluressian"]=10052,["Anya Maulray"]=10053,["Bulrug"]=10054,["Morganus"]=10055,["Alassin"]=10056,["Theodore Mont Claire"]=10057,["Greth"]=10058,["Antarius"]=10059,["Grimestack"]=10060,["Killium Bouldertoe"]=10061,["Steven Black"]=10062,["Reggifuz"]=10063,["High Priestess of Thaurissan"]=10076,["Deathmaw"]=10077,["Terrorspark"]=10078,["Brave Moonhorn"]=10079,["Sandarr Dunereaver"]=10080,["Dustwraith"]=10081,["Zerillis"]=10082,["Rage Talon Flamescale"]=10083,["Jaelysia"]=10085,["Hesuwa Thunderhorn"]=10086,["Xao'tsu"]=10088,["Silvaria"]=10089,["Belia Thundergranite"]=10090,["High Justice Grimstone"]=10096,["Slave"]=10116,["Tortured Slave"]=10117,["Nessa Shadowsong"]=10118,["Volchan"]=10119,["Vault Warder"]=10120,["Chemist Fuely"]=10136,["Moonkin Oracle"]=10157,["Moonkin"]=10158,["Young Moonkin"]=10159,["Raging Moonkin"]=10160,["Rookery Whelp"]=10161,["Lord Victor Nefarius"]=10162,["Kaltunk"]=10176,["Spire Scarab"]=10177,["Riding MechaStrider (Black)"]=10179,["Unpainted Mechanostrider"]=10180,["Lady Sylvanas Windrunner"]=10181,["Rokaro"]=10182,["Moonflare Totem"]=10183,["Onyxia"]=10184,["General Colbatann"]=10196,["Mezzir the Howler"]=10197,["Kashoch the Reaver"]=10198,["Grizzle Snowpaw"]=10199,["Rak'shiri"]=10200,["Lady Hederine"]=10201,["Azurous"]=10202,["Misha"]=10204,["Gubber Blump"]=10216,["Flame Buffet Totem"]=10217,["Superior Healing Ward"]=10218,["Gwennyth Bly'Leggonde"]=10219,["Halycon"]=10220,["Bloodaxe Worg Pup"]=10221,["Bijou"]=10257,["Rookery Guardian"]=10258,["Worg Pup"]=10259,["Kibler"]=10260,["Burning Felhound"]=10261,["Opus"]=10262,["Burning Felguard"]=10263,["Solakar Flamewreath"]=10264,["Ug'thok"]=10266,["Tinkee Steamboil"]=10267,["Gizrul the Slavener"]=10268,["Rotgath Stonebeard"]=10276,["Groum Stonebeard"]=10277,["Thrag Stonehoof"]=10278,["Captured Felwood Ooze"]=10290,["Dulciea Frostmoon"]=10293,["Vaelan"]=10296,["Acride"]=10299,["Ranshalla"]=10300,["Jaron Stoneshaper"]=10301,["Krakle"]=10302,["Storm Shadowhoof"]=10303,["Aurora Skycaller"]=10304,["Umi Rumplesnicker"]=10305,["Trull Failbane"]=10306,["Witch Doctor Mau'ari"]=10307,["Blackhand Incarcerator"]=10316,["Blackhand Elite"]=10317,["Blackhand Assassin"]=10318,["Blackhand Iron Guard"]=10319,["Emberstrife"]=10321,["Riding Tiger (White)"]=10322,["Murkdeep"]=10323,["Gyth"]=10339,["Vaelastrasz the Red"]=10340,["Bayne"]=10356,["Ressan the Needler"]=10357,["Fellicent's Shade"]=10358,["Sri'skulk"]=10359,["Kergul Bloodaxe"]=10360,["Gruul Darkblade"]=10361,["General Drakkisath"]=10363,["Yaelika Farclaw"]=10364,["Rage Talon Dragon Guard"]=10366,["Shrye Ragefist"]=10367,["Trayexir"]=10369,["[UNUSED] Xur'gyl"]=10370,["Rage Talon Captain"]=10371,["Rage Talon Fire Tongue"]=10372,["Xabraxxis"]=10373,["Spire Spider"]=10374,["Spire Spiderling"]=10375,["Crystal Fang"]=10376,["Elu"]=10377,["Omusa Thunderhorn"]=10378,["Altsoba Ragetotem"]=10379,["Sanuye Runetotem"]=10380,["Ravaged Cadaver"]=10381,["Mangled Cadaver"]=10382,["Broken Cadaver"]=10383,["Spectral Citizen"]=10384,["Ghostly Citizen"]=10385,["Vengeful Phantom"]=10387,["Spiteful Phantom"]=10388,["Wrath Phantom"]=10389,["Skeletal Guardian"]=10390,["Skeletal Berserker"]=10391,["Skul"]=10393,["Black Guard Sentry"]=10394,["Thuzadin Shadowcaster"]=10398,["Thuzadin Acolyte"]=10399,["Thuzadin Necromancer"]=10400,["Pustulating Horror"]=10404,["Plague Ghoul"]=10405,["Ghoul Ravener"]=10406,["Fleshflayer Ghoul"]=10407,["Rockwing Gargoyle"]=10408,["Rockwing Screecher"]=10409,["Eye of Naxxramas"]=10411,["Crypt Crawler"]=10412,["Crypt Beast"]=10413,["Patchwork Horror"]=10414,["Ash'ari Crystal"]=10415,["Bile Spewer"]=10416,["Venom Belcher"]=10417,["Risen Guardsman"]=10418,["Risen Conjuror"]=10419,["Risen Initiate"]=10420,["Crimson Defender"]=10421,["Crimson Sorcerer"]=10422,["Crimson Priest"]=10423,["Risen Gallant"]=10424,["Crimson Battle Mage"]=10425,["Crimson Inquisitor"]=10426,["Pao'ka Swiftmountain"]=10427,["Motega Firemane"]=10428,["Warchief Rend Blackhand"]=10429,["The Beast"]=10430,["Gregor Greystone"]=10431,["Vectus"]=10432,["Marduk Blackpool"]=10433,["Magistrate Barthilas"]=10435,["Baroness Anastari"]=10436,["Nerub'enkan"]=10437,["Maleki the Pallid"]=10438,["Ramstein the Gorger"]=10439,["Baron Rivendare"]=10440,["Plagued Rat"]=10441,["Chromatic Whelp"]=10442,["Selina Dourman"]=10445,["Chromatic Dragonspawn"]=10447,["Binny Springblade"]=10455,["Prynne"]=10456,["Prospector Ironboot"]=10460,["Plagued Insect"]=10461,["Shrieking Banshee"]=10463,["Wailing Banshee"]=10464,["Mana Tide Totem"]=10467,["Felnok Steelspring"]=10468,["Scholomance Adept"]=10469,["Scholomance Neophyte"]=10470,["Scholomance Acolyte"]=10471,["Scholomance Occultist"]=10472,["Scholomance Student"]=10475,["Scholomance Necrolyte"]=10476,["Scholomance Necromancer"]=10477,["Splintered Skeleton"]=10478,["Skulking Corpse"]=10479,["Unstable Corpse"]=10480,["Reanimated Corpse"]=10481,["Risen Lackey"]=10482,["Risen Aberration"]=10485,["Risen Warrior"]=10486,["Risen Protector"]=10487,["Risen Construct"]=10488,["Risen Guard"]=10489,["Risen Bonewarder"]=10491,["Diseased Ghoul"]=10495,["Ragged Ghoul"]=10497,["Spectral Tutor"]=10498,["Spectral Researcher"]=10499,["Spectral Teacher"]=10500,["Lady Illucia Barov"]=10502,["Jandice Barov"]=10503,["Lord Alexei Barov"]=10504,["Instructor Malicia"]=10505,["Kirtonos the Herald"]=10506,["The Ravenian"]=10507,["Ras Frostwhisper"]=10508,["Jed Runewatcher"]=10509,["The Unforgiven"]=10516,["Plagued Maggot"]=10536,["Cliffwatcher Longhorn"]=10537,["Vaelastrasz"]=10538,["Hagar Lightninghoof"]=10539,["Vol'jin"]=10540,["Krakle's Thermometer"]=10541,["Lazy Peon"]=10556,["Flametongue Totem IV"]=10557,["Hearthsinger Forresten"]=10558,["Lady Vespia"]=10559,["Crypt Scarab"]=10577,["Bom'bay"]=10578,["Fetid Zombie"]=10580,["Young Arikara"]=10581,["Dog"]=10582,["Gryfe"]=10583,["Urok Doomhowl"]=10584,["Mother Smolderweb"]=10596,["Smolderweb Hatchling"]=10598,["Hulfnar Stonetotem"]=10599,["Thontek Rumblehoof"]=10600,["Urok Enforcer"]=10601,["Urok Ogre Magus"]=10602,["Hallucination"]=10603,["Huntress Nhemai"]=10604,["Scarlet Medic"]=10605,["Huntress Yaeliura"]=10606,["Scarlet Priest"]=10608,["Angus"]=10610,["Shorty"]=10611,["Guard Wachabe"]=10612,["Supervisor Raelen"]=10616,["Galak Messenger"]=10617,["Rivern Frostwind"]=10618,["Glacier"]=10619,["Pack Kodo"]=10636,["Malyfous Darkhammer"]=10637,["Kanati Greycloud"]=10638,["Rorgish Jowl"]=10639,["Oakpaw"]=10640,["Branch Snapper"]=10641,["Eck'alom"]=10642,["Mugglefin"]=10643,["Mist Howler"]=10644,["Thalia Amberhide"]=10645,["Lakota Windsong"]=10646,["Prince Raze"]=10647,["Xavaric"]=10648,["Guardian Felhunter"]=10656,["Corrupted Cat"]=10657,["Winna's Kitten"]=10658,["Cobalt Whelp"]=10659,["Cobalt Broodling"]=10660,["Spell Eater"]=10661,["Spellmaw"]=10662,["Manaclaw"]=10663,["Scryer"]=10664,["Junior Apothecary Holland"]=10665,["Gordo"]=10666,["Chromie"]=10667,["Beaten Corpse"]=10668,["Raider Jhash"]=10676,["Plagued Hatchling"]=10678,["Summoned Blackhand Dreadweaver"]=10680,["Summoned Blackhand Veteran"]=10681,["Raider Kerr"]=10682,["Rookery Hatcher"]=10683,["Remorseful Highborne"]=10684,["Swine"]=10685,["Refuge Pointe Defender"]=10696,["Bile Slime"]=10697,["Summoned Zombie"]=10698,["Carrion Scarab"]=10699,["Belfry Bat"]=10716,["Temporal Parasite"]=10717,["Shahram"]=10718,["Herald of Thrall"]=10719,["Galak Assassin"]=10720,["Novice Warrior"]=10721,["Shy-Rotam"]=10737,["High Chief Winterfall"]=10738,["Mulgris Deepriver"]=10739,["Awbee"]=10740,["Sian-Rotam"]=10741,["Blackhand Dragon Handler"]=10742,["Scalding Elemental"]=10756,["Boiling Elemental"]=10757,["Grimtotem Bandit"]=10758,["Grimtotem Stomper"]=10759,["Grimtotem Geomancer"]=10760,["Grimtotem Reaver"]=10761,["Blackhand Thug"]=10762,["Finkle Einhorn"]=10776,["Janice Felstone"]=10778,["Infected Squirrel"]=10779,["Infected Deer"]=10780,["Royal Overseer Bauhaus"]=10781,["Royal Factor Bathrilor"]=10782,["Orb of Deception (Tauren Male)"]=10785,["Warosh"]=10799,["Warosh the Redeemed"]=10800,["Jabbering Ghoul"]=10801,["Hitah'ya the Keeper"]=10802,["Rifleman Wheeler"]=10803,["Rifleman Middlecamp"]=10804,["Spotter Klemmy"]=10805,["Ursius"]=10806,["Brumeran"]=10807,["Timmy the Cruel"]=10808,["Stonespine"]=10809,["Instructor Galford"]=10811,["Grand Crusader Dathrohan"]=10812,["Balnazzar"]=10813,["Chromatic Elite Guard"]=10814,["Wandering Skeleton"]=10816,["Duggan Wildhammer"]=10817,["Death Knight Soulbearer"]=10818,["Baron Bloodbane"]=10819,["Duke Ragereaver"]=10820,["Hed'mush the Rotting"]=10821,["Warlord Thresh'jin"]=10822,["Zul'Brin Warpbranch"]=10823,["Ranger Lord Hawkspear"]=10824,["Gish the Unmoving"]=10825,["Lord Darkscythe"]=10826,["Deathspeaker Selendre"]=10827,["High General Abbendis"]=10828,["Farmer Dalson"]=10836,["High Executor Derrington"]=10837,["Commander Ashlam Valorfist"]=10838,["Argent Officer Garush"]=10839,["Argent Officer Pureheart"]=10840,["Argent Quartermaster Hasana"]=10856,["Argent Quartermaster Lightspark"]=10857,["Undead Scarab"]=10876,["Courier Hammerfall"]=10877,["Herald Moonstalker"]=10878,["Harbinger Balthazad"]=10879,["Warcaller Gorlach"]=10880,["Bluff Runner Windstrider"]=10881,["[Deprecated for 4.x]Arikara"]=10882,["Arnak Grimtotem"]=10896,["Sindrayl"]=10897,["Goraluk Anvilcrack"]=10899,["Lorekeeper Polkelt"]=10901,["Andorhal Tower One"]=10902,["Andorhal Tower Two"]=10903,["Andorhal Tower Three"]=10904,["Andorhal Tower Four"]=10905,["Winterfall Runner"]=10916,["Aurius"]=10917,["Lorax"]=10918,["Shatterspear Troll"]=10919,["Kelek Skykeeper"]=10920,["Taronn Redfeather"]=10921,["Greta Mosshoof"]=10922,["Tenell Leafrunner"]=10923,["Ivy Leafrunner"]=10924,["Rotting Worm"]=10925,["Pamela Redpath"]=10926,["Marlene Redpath"]=10927,["Succubus Minion"]=10928,["Haleh"]=10929,["Dargh Trueaim"]=10930,["Joseph Redpath"]=10936,["Captain Redpath"]=10937,["Redpath the Corrupted"]=10938,["Marduk the Black"]=10939,["Ghost of the Past"]=10940,["Wizlo Bearingshiner"]=10941,["Nessy"]=10942,["Decrepit Guardian"]=10943,["Davil Lightfire"]=10944,["Davil Crokford"]=10945,["Horgus the Ravager"]=10946,["Darrowshire Betrayer"]=10947,["Darrowshire Defender"]=10948,["Silver Hand Disciple"]=10949,["Redpath Militia"]=10950,["Marauding Corpse"]=10951,["Marauding Skeleton"]=10952,["Servant of Horgus"]=10953,["Bloodletter"]=10954,["Summoned Water Elemental"]=10955,["Naga Siren"]=10956,["Jeziba"]=10976,["Quixxil"]=10977,["Legacki"]=10978,["Scarlet Hound"]=10979,["Umi's Mechanical Yeti"]=10980,["Frostwolf"]=10981,["Whitewhisker Vermin"]=10982,["Snowblind Harpy"]=10986,["Irondeep Trogg"]=10987,["Kodo Spirit"]=10988,["Alterac Ram"]=10990,["Wildpaw Gnoll"]=10991,["Enraged Panther"]=10992,["Twizwick Sprocketgrind"]=10993,["Fallen Hero"]=10996,["Cannon Master Willey"]=10997,["Captured Arko'narin"]=11016,["Roxxik"]=11017,["Arko'narin"]=11018,["Jessir Moonbow"]=11019,["Remains of Trey Lightforge"]=11020,["Winterspring Frostsaber"]=11021,["Alexi Barov"]=11022,["Weldon Barov"]=11023,["Della"]=11024,["Mukdrak"]=11025,["Sprite Jumpsprocket"]=11026,["Illusory Wraith"]=11027,["Jemma Quikswitch"]=11028,["Trixie Quikswitch"]=11029,["Mindless Undead"]=11030,["Franklin Lloyd"]=11031,["Commander Malor"]=11032,["Smokey LaRue"]=11033,["Lord Maxwell Tyrosus"]=11034,["Betina Bigglezink"]=11035,["Leonid Barthalomew the Revered"]=11036,["Jenna Lemkenilli"]=11037,["Caretaker Alen"]=11038,["Duke Nicholas Zverenhoff"]=11039,["Watcher Brownell"]=11040,["Milla Fairancora"]=11041,["Sylvanna Forestmoon"]=11042,["Crimson Monk"]=11043,["Doctor Martin Felben"]=11044,["Whuut"]=11046,["Kray"]=11047,["Victor Ward"]=11048,["Rhiannon Davis"]=11049,["Trianna"]=11050,["Vhan"]=11051,["Timothy Worthington"]=11052,["High Priestess MacDonnell"]=11053,["Crimson Rifleman"]=11054,["Shadow Priestess Vandis"]=11055,["Alchemist Arbington"]=11056,["Apothecary Dithers"]=11057,["Fras Siabi"]=11058,["Carlin Redpath"]=11063,["Darrowshire Spirit"]=11064,["Thonys Pillarstone"]=11065,["Jhag"]=11066,["Malcomb Wynn"]=11067,["Betty Quin"]=11068,["Jenova Stoneshield"]=11069,["Lalina Summermoon"]=11070,["Mot Dawnstrider"]=11071,["Kitta Firewind"]=11072,["Annora"]=11073,["Hgarth"]=11074,["Cauldron Lord Bilemaw"]=11075,["Cauldron Lord Razarch"]=11076,["Cauldron Lord Malvinious"]=11077,["Cauldron Lord Soulwrath"]=11078,["Wynd Nightchaser"]=11079,["Faldron"]=11081,["Stratholme Courier"]=11082,["Darianna"]=11083,["Tarn"]=11084,["Randal Worth"]=11096,["Drakk Stonehand"]=11097,["Hahrana Ironhide"]=11098,["Argent Guard"]=11099,["Mana Tide Totem II"]=11100,["Mana Tide Totem III"]=11101,["Argent Rider"]=11102,["Innkeeper Lyshaerya"]=11103,["Shelgrayn"]=11104,["Aboda"]=11105,["Innkeeper Sikewa"]=11106,["Innkeeper Abeqwa"]=11116,["Awenasa"]=11117,["Innkeeper Vizzie"]=11118,["Azzleby"]=11119,["Risen Hammersmith"]=11120,["Black Guard Swordsmith"]=11121,["Restless Soul"]=11122,["Freed Soul"]=11136,["Xai'ander"]=11137,["Maethrya"]=11138,["Yugrek"]=11139,["Egan"]=11140,["Spirit of Trey Lightforge"]=11141,["Undead Postman"]=11142,["Postmaster Malown"]=11143,["Myolor Sunderfury"]=11145,["Ironus Coldsteel"]=11146,["Green Mechanostrider"]=11147,["The Scourge Cauldron"]=11152,["Red Skeletal Horse"]=11153,["Blue Skeletal Horse"]=11154,["Brown Skeletal Horse"]=11155,["Green Skeletal Warhorse"]=11156,["Krathok Moltenfist"]=11176,["Okothos Ironrager"]=11177,["Borgosh Corebender"]=11178,["Bloodvenom Post Brave"]=11180,["Shi'alune"]=11181,["Nixxrak"]=11182,["Blixxrak"]=11183,["Wixxrak"]=11184,["Xizzer Fizzbolt"]=11185,["Lunnix Sprocketslip"]=11186,["Himmik"]=11187,["Evie Whirlbrew"]=11188,["Qia"]=11189,["Everlook Bruiser"]=11190,["Lilith the Lithe"]=11191,["Kilram"]=11192,["Seril Scourgebane"]=11193,["Argent Defender"]=11194,["Shatterspear Drummer"]=11196,["Mindless Skeleton"]=11197,["Broken Exile"]=11198,["Crimson Cannon"]=11199,["Summoned Skeleton"]=11200,["Eva Sarkhoff"]=11216,["Lucien Sarkhoff"]=11217,["Kerlonian Evershade"]=11218,["Liladris Moonriver"]=11219,["Blood Parrot"]=11236,["Manifestation of Water"]=11256,["Scholomance Handler"]=11257,["Frail Skeleton"]=11258,["Nataka Longhorn"]=11259,["Northshire Peasant"]=11260,["Doctor Theolen Krastinov"]=11261,["Onyxian Whelp"]=11262,["Spectral Projection"]=11263,["Azshara Sentinel"]=11276,["Caer Darrow Citizen"]=11277,["Magnus Frostwake"]=11278,["Caer Darrow Guardsman"]=11279,["Caer Darrow Cannoneer"]=11280,["Caer Darrow Horseman"]=11281,["Melia"]=11282,["Sammy"]=11283,["Dark Shade"]=11284,["Rory"]=11285,["Magistrate Marduke"]=11286,["Baker Masterson"]=11287,["Spectral Betrayer"]=11288,["Spectral Defender"]=11289,["Mossflayer Zombie"]=11290,["Unliving Mossflayer"]=11291,["Darrowshire Poltergeist"]=11296,["Joseph Dirte"]=11316,["Jinar'Zillen"]=11317,["Ragefire Trogg"]=11318,["Ragefire Shaman"]=11319,["Earthborer"]=11320,["Molten Elemental"]=11321,["Searing Blade Cultist"]=11322,["Searing Blade Enforcer"]=11323,["Searing Blade Warlock"]=11324,["Panda Cub"]=11325,["Mini Diablo"]=11326,["Zergling"]=11327,["Eastvale Peasant"]=11328,["Hakkari Shadowcaster"]=11338,["Hakkari Shadow Hunter"]=11339,["Hakkari Blood Priest"]=11340,["Hakkari Oracle"]=11346,["Zealot Lor'Khan"]=11347,["Zealot Zath"]=11348,["Gurubashi Axe Thrower"]=11350,["Gurubashi Headhunter"]=11351,["Gurubashi Berserker"]=11352,["Gurubashi Blood Drinker"]=11353,["Gurubashi Warrior"]=11355,["Gurubashi Champion"]=11356,["Son of Hakkar"]=11357,["Soulflayer"]=11359,["Zulian Cub"]=11360,["Zulian Tiger"]=11361,["Zulian Panther"]=11365,["Bloodseeker Bat"]=11368,["Razzashi Broodwidow"]=11370,["Razzashi Serpent"]=11371,["Razzashi Adder"]=11372,["Razzashi Cobra"]=11373,["Hooktooth Frenzy"]=11374,["Foreman Thazz'ril"]=11378,["Jin'do the Hexxer"]=11380,["Bloodlord Mandokir"]=11382,["High Priestess Hai'watna"]=11383,["Sandfury Speaker"]=11387,["Witherbark Speaker"]=11388,["Bloodscalp Speaker"]=11389,["Skullsplitter Speaker"]=11390,["Vilebranch Speaker"]=11391,["Nara Meideros"]=11397,["Priestess Alathea"]=11401,["High Priest Rohan"]=11406,["Var'jun"]=11407,["Bibbly F'utzbuckle"]=11438,["Illusion of Jandice Barov"]=11439,["Gordok Enforcer"]=11440,["Gordok Brute"]=11441,["Gordok Mauler"]=11442,["Gordok Ogre-Mage"]=11443,["Gordok Mage-Lord"]=11444,["Gordok Captain"]=11445,["Gordok Spirit"]=11446,["Mushgog"]=11447,["Gordok Warlock"]=11448,["Gordok Reaver"]=11450,["Wildspawn Satyr"]=11451,["Wildspawn Rogue"]=11452,["Wildspawn Trickster"]=11453,["Wildspawn Betrayer"]=11454,["Wildspawn Felsworn"]=11455,["Wildspawn Shadowstalker"]=11456,["Wildspawn Hellcaller"]=11457,["Petrified Treant"]=11458,["Ironbark Protector"]=11459,["Alzzin's Minion"]=11460,["Warpwood Guardian"]=11461,["Warpwood Treant"]=11462,["Warpwood Tangler"]=11464,["Warpwood Stomper"]=11465,["Highborne Summoner"]=11466,["Tsu'zee"]=11467,["Eldreth Seether"]=11469,["Eldreth Sorcerer"]=11470,["Eldreth Apparition"]=11471,["Eldreth Spirit"]=11472,["Eldreth Spectre"]=11473,["Eldreth Phantasm"]=11475,["Skeletal Highborne"]=11476,["Rotting Highborne"]=11477,["Arcane Aberration"]=11480,["Mana Remnant"]=11483,["Residual Monstrosity"]=11484,["Prince Tortheldrin"]=11486,["Magister Kalendris"]=11487,["Illyanna Ravenoak"]=11488,["Tendris Warpwood"]=11489,["Zevrim Thornhoof"]=11490,["Old Ironbark"]=11491,["Alzzin the Wildshaper"]=11492,["Immol'thar"]=11496,["The Razza"]=11497,["Skarr the Broken"]=11498,["[UNUSED] Commander Gormaul"]=11499,["King Gordok"]=11501,["Ragnaros"]=11502,["Timbermaw Warder"]=11516,["Oggleflint"]=11517,["Jergosh the Invoker"]=11518,["Bazzalan"]=11519,["Taragaman the Hungerer"]=11520,["Kodo Apparition"]=11521,["Quartermaster Miranda Breechlock"]=11536,["TEST GEAR PALADIN"]=11537,["TEST GEAR WARRIOR"]=11538,["TEST GEAR HUNTER"]=11539,["TEST GEAR MAGE"]=11540,["TEST GEAR WARLOCK"]=11541,["TEST GEAR DRUID"]=11542,["TEST GEAR SHAMAN"]=11543,["TEST GEAR PRIEST"]=11544,["TEST GEAR ROGUE"]=11545,["Jack Sterling"]=11546,["Loh'atu"]=11548,["Necrofiend"]=11551,["Timbermaw Mystic"]=11552,["Timbermaw Woodbender"]=11553,["Grazle"]=11554,["Gorn One Eye"]=11555,["Salfa"]=11556,["Meilosh"]=11557,["Kernda"]=11558,["Outcast Necromancer"]=11559,["Magrami Spectre"]=11560,["Undead Ravager"]=11561,["Drysnap Crawler"]=11562,["Drysnap Pincer"]=11563,["Gizelton Caravan Kodo"]=11564,["Whirlwind Ripper"]=11576,["Whirlwind Stormwalker"]=11577,["Whirlwind Shredder"]=11578,["Scholomance Dark Summoner"]=11582,["Nefarian"]=11583,["Smeed Scrabblescrew"]=11596,["Risen Guardian"]=11598,["Irondeep Shaman"]=11600,["Irondeep Skullthumper"]=11602,["Whitewhisker Digger"]=11603,["Whitewhisker Geomancer"]=11604,["Whitewhisker Overseer"]=11605,["Bardu Sharpeye"]=11608,["Alexia Ironknife"]=11609,["Kirsta Deepshadow"]=11610,["Cavalier Durgen"]=11611,["Huntsman Radley"]=11613,["Bloodshot"]=11614,["Mickey Levine"]=11615,["Nathaniel Dumah"]=11616,["Spectral Marauder"]=11620,["Spectral Corpse"]=11621,["Rattlegore"]=11622,["Scourge Summoning Crystal"]=11623,["Taiga Wisemane"]=11624,["Cork Gizelton"]=11625,["Rigger Gizelton"]=11626,["Tamed Kodo"]=11627,["Jessica Redpath"]=11629,["Servant of Weldon Barov"]=11636,["Servant of Alexi Barov"]=11637,["Warsong Peon"]=11656,["Morloch"]=11657,["Molten Giant"]=11658,["Molten Destroyer"]=11659,["Flamewaker"]=11661,["Flamewaker Priest"]=11662,["Flamewaker Healer"]=11663,["Flamewaker Elite"]=11664,["Lava Annihilator"]=11665,["Firewalker"]=11666,["Flameguard"]=11667,["Firelord"]=11668,["Flame Imp"]=11669,["Core Hound"]=11671,["Core Rager"]=11672,["Core Hound"]=11673,["Snowblind Windcaller"]=11675,["Taskmaster Snivvle"]=11677,["Snowblind Ambusher"]=11678,["Horde Scout"]=11680,["Warsong Logger"]=11681,["Warsong Grunt"]=11682,["Warsong Shaman"]=11683,["Goblin Deforester"]=11684,["Maraudine Priest"]=11685,["Ghostly Raider"]=11686,["Ghostly Marauder"]=11687,["Cursed Centaur"]=11688,["Brown Kodo"]=11689,["Gnarlpine Instigator"]=11690,["Chal Fairwind"]=11696,["Mannoroc Lasher"]=11697,["Hive'Ashi Stinger"]=11698,["Varian Wrynn"]=11699,["Sarin Starlight"]=11700,["Mor'vek"]=11701,["Arin'sor"]=11702,["Graw Cornerstone"]=11703,["Kriss Goldenlight"]=11704,["Rayan Dawnrisen"]=11705,["Adon"]=11706,["Joy Ar'nareth"]=11707,["Coral Moongale"]=11708,["Jareth Wildwoods"]=11709,["Mirador"]=11710,["Sentinel Aynasha"]=11711,["Lilyn Darkriver"]=11712,["Blackwood Tracker"]=11713,["Marosh the Devious"]=11714,["Talendria"]=11715,["Celes Earthborne"]=11716,["Bethan Bluewater"]=11717,["Sar Browneye"]=11718,["Loruk Foreststrider"]=11720,["Hive'Ashi Worker"]=11721,["Hive'Ashi Defender"]=11722,["Hive'Ashi Sandstalker"]=11723,["Hive'Ashi Swarmer"]=11724,["Hive'Zora Waywatcher"]=11725,["Hive'Zora Tunneler"]=11726,["Hive'Zora Wasp"]=11727,["Hive'Zora Reaver"]=11728,["Hive'Zora Hive Sister"]=11729,["Hive'Regal Ambusher"]=11730,["Hive'Regal Burrower"]=11731,["Hive'Regal Spitfire"]=11732,["Hive'Regal Slavemaker"]=11733,["Hive'Regal Hive Lord"]=11734,["Stonelash Scorpid"]=11735,["Stonelash Pincer"]=11736,["Stonelash Flayer"]=11737,["Sand Skitterer"]=11738,["Rock Stalker"]=11739,["Dredge Striker"]=11740,["Dredge Crusher"]=11741,["Dust Stormer"]=11744,["Cyclone Warrior"]=11745,["Desert Rumbler"]=11746,["Desert Rager"]=11747,["Samantha Swifthoof"]=11748,["Feran Strongwind"]=11749,["Ganoosh"]=11750,["Rilan Howard"]=11751,["Blaise Montgomery"]=11752,["Gogo"]=11753,["Meggi Peppinrocker"]=11754,["Harlo Wigglesworth"]=11755,["Quinn"]=11756,["Umaron Stragarelm"]=11757,["Andi Lynn"]=11758,["Salome"]=11776,["Shadowshard Rumbler"]=11777,["Shadowshard Smasher"]=11778,["Ambershard Crusher"]=11781,["Ambershard Destroyer"]=11782,["Theradrim Shardling"]=11783,["Theradrim Guardian"]=11784,["Ambereye Basilisk"]=11785,["Ambereye Reaver"]=11786,["Rock Borer"]=11787,["Rock Worm"]=11788,["Deep Borer"]=11789,["Putridus Satyr"]=11790,["Putridus Trickster"]=11791,["Putridus Shadowstalker"]=11792,["Celebrian Dryad"]=11793,["Sister of Celebras"]=11794,["Mylentha Riverbend"]=11795,["Bessany Plainswind"]=11796,["Moren Riverbend"]=11797,["Bunthen Plainswind"]=11798,["Tajarri"]=11799,["Silva Fil'naveth"]=11800,["Rabine Saturna"]=11801,["Dendrite Starblaze"]=11802,["Twilight Keeper Exeter"]=11803,["Twilight Keeper Havunth"]=11804,["Jarund Stoutstrider"]=11805,["Sentinel Onaeya"]=11806,["Tristane Shadowstone"]=11807,["Grum Redbeard"]=11808,["Howin Kindfeather"]=11810,["Narain Soothfancy"]=11811,["Claira Kindfeather"]=11812,["Kerr Ironsight"]=11813,["Kali Remik"]=11814,["Voriya"]=11815,["Una Ji'ro"]=11816,["Krah'ranik"]=11817,["Orik'ando"]=11818,["Jory Zaga"]=11819,["Locke Okarr"]=11820,["Darn Talongrip"]=11821,["Moonglade Warden"]=11822,["Vark Battlescar"]=11823,["Erik Felixe"]=11824,["Paige Felixe"]=11825,["Kristy Grant"]=11826,["Kimberly Grant"]=11827,["Kelly Grant"]=11828,["Fahrak"]=11829,["Hakkari Priest"]=11830,["Hakkari Witch Doctor"]=11831,["Keeper Remulos"]=11832,["Rahauro"]=11833,["Maur Grimtotem"]=11834,["Theodore Griffs"]=11835,["Captured Rabid Thistle Bear"]=11836,["Wildpaw Shaman"]=11837,["Wildpaw Mystic"]=11838,["Wildpaw Brute"]=11839,["Wildpaw Alpha"]=11840,["Kaya Flathoof"]=11856,["Makaba Flathoof"]=11857,["Grundig Darkcloud"]=11858,["Doomguard"]=11859,["Maggran Earthbinder"]=11860,["Mor'rogal"]=11861,["Tsunaman"]=11862,["Azore Aldamort"]=11863,["Tammra Windfield"]=11864,["Buliwyf Stonehand"]=11865,["Ilyenia Moonfire"]=11866,["Woo Ping"]=11867,["Sayoc"]=11868,["Ansekhwa"]=11869,["Archibald"]=11870,["Grinning Dog"]=11871,["Myranda the Hag"]=11872,["Spectral Attendant"]=11873,["Masat T'andr"]=11874,["Mortar Team Target Dummy"]=11875,["Fel Spirit"]=11876,["Roon Wildmane"]=11877,["Nathanos Blightcaller"]=11878,["Twilight Avenger"]=11880,["Twilight Geolord"]=11881,["Twilight Stonecaller"]=11882,["Twilight Master"]=11883,["Obi"]=11884,["Blighthound"]=11885,["Mercutio Filthgorger"]=11886,["Crypt Robber"]=11887,["Borelgore"]=11896,["Duskwing"]=11897,["Crusader Lord Valdelmar"]=11898,["Shardi"]=11899,["Brakkar"]=11900,["Andruk"]=11901,["Grimtotem Ruffian"]=11910,["Grimtotem Mercenary"]=11911,["Grimtotem Brute"]=11912,["Grimtotem Sorcerer"]=11913,["Gorehoof the Black"]=11914,["Boulderslide Rock Keeper"]=11915,["Imelda"]=11916,["Boulderslide Geomancer"]=11917,["Boulderslide Stonepounder"]=11918,["Goggeroc"]=11920,["Besseleth"]=11921,["Artist Renfray"]=11936,["Demon Portal Guardian"]=11937,["Umber"]=11939,["Merissa Stilwell"]=11940,["Yori Crackhelm"]=11941,["Orenthil Whisperwind"]=11942,["Magga"]=11943,["Vorn Skyseer"]=11944,["Claire Willower"]=11945,["Drek'Thar"]=11946,["Captain Galvangar"]=11947,["Vanndar Stormpike"]=11948,["Captain Balinda Stonehearth"]=11949,["Great Bear Spirit"]=11956,["Great Cat Spirit"]=11957,["Kim Bridenbecker"]=11979,["Zuluhed the Whacked"]=11980,["Flamegor"]=11981,["Magmadar"]=11982,["Firemaw"]=11983,["Golemagg the Incinerator"]=11988,["Rob Bridenbecker"]=11994,["Ashley Bridenbecker"]=11996,["Stormpike Herald"]=11997,["Frostwolf Herald"]=11998,["Broodlord Lashlayer"]=12017,["Majordomo Executus"]=12018,["Dargon"]=12019,["Daeolyn Summerleaf"]=12021,["Lorelae Wintersong"]=12022,["Kharedon"]=12023,["Meliri"]=12024,["Malvor"]=12025,["My'lanna"]=12026,["Tukk"]=12027,["Lah'Mawhani"]=12028,["Narianna"]=12029,["Malux"]=12030,["Mai'Lahii"]=12031,["Lui'Mala"]=12032,["Wulan"]=12033,["Koiter"]=12034,["Grella Stonefist"]=12036,["Ursol'lok"]=12037,["Brannik Ironbelly"]=12040,["Loganaar"]=12042,["Kulwia"]=12043,["Hae'Wilani"]=12045,["Gor'marok the Ravager"]=12046,["Stormpike Mountaineer"]=12047,["Alliance Sentinel"]=12048,["Stormpike Defender"]=12050,["Frostwolf Legionnaire"]=12051,["Frostwolf Warrior"]=12052,["Frostwolf Guardian"]=12053,["Baron Geddon"]=12056,["Garr"]=12057,["Magma Elemental"]=12076,["Stormpike Quartermaster"]=12096,["Frostwolf Quartermaster"]=12097,["Sulfuron Harbinger"]=12098,["Firesworn"]=12099,["Lava Reaver"]=12100,["Lava Surger"]=12101,["Priestess of Elune"]=12116,["Lucifron"]=12118,["Flamewaker Protector"]=12119,["Plagueland Termite"]=12120,["Drakan"]=12121,["Duros"]=12122,["Reef Shark"]=12123,["Great Shark"]=12124,["Mammoth Shark"]=12125,["Lord Tirion Fordring"]=12126,["Stormpike Guardsman"]=12127,["Crimson Elite"]=12128,["Onyxian Warder"]=12129,["Snurk Bucksquick"]=12136,["Squibby Overspeck"]=12137,["Lunaclaw"]=12138,["Guardian of Elune"]=12140,["Ice Totem"]=12141,["Son of Flame"]=12143,["Lunaclaw Spirit"]=12144,["Riding Kodo (Teal)"]=12148,["Gray Kodo"]=12149,["Riding Kodo (Purple)"]=12150,["Riding Kodo (Green)"]=12151,["Voice of Elune"]=12152,["Korrak the Bloodrager"]=12159,["Shadowglen Sentinel"]=12160,["Tortured Druid"]=12178,["Tortured Sentinel"]=12179,["Innkeeper Kaylisk"]=12196,["Glordrum Steelbeard"]=12197,["Martin Lindsey"]=12198,["Shade of Ambermoon"]=12199,["Princess Theradras"]=12201,["Human Skull"]=12202,["Landslide"]=12203,["Spitelash Raider"]=12204,["Spitelash Witch"]=12205,["Primordial Behemoth"]=12206,["Thessala Hydra"]=12207,["Conquered Soul of the Blightcaller"]=12208,["Poison Sprite"]=12216,["Corruptor"]=12217,["Vile Larva"]=12218,["Barbed Lasher"]=12219,["Constrictor Vine"]=12220,["Noxious Slime"]=12221,["Creeping Sludge"]=12222,["Cavern Lurker"]=12223,["Cavern Shambler"]=12224,["Celebras the Cursed"]=12225,["Lord Vyletongue"]=12236,["Meshlok the Harvester"]=12237,["Zaetar's Spirit"]=12238,["Spirit of Gelk"]=12239,["Spirit of Kolk"]=12240,["Spirit of Magra"]=12241,["Spirit of Maraudos"]=12242,["Spirit of Veng"]=12243,["Mark of Detonation (NW)"]=12244,["Vendor-Tron 1000"]=12245,["Super-Seller 680"]=12246,["Scourge Structure"]=12247,["Infiltrator Hameya"]=12248,["Mark of Detonation (SW)"]=12249,["Zaeldarr the Outcast"]=12250,["Mark of Detonation (CLS)"]=12251,["Mark of Detonation (CRS)"]=12252,["Mark of Detonation (CSH)"]=12253,["Mark of Detonation (NESH)"]=12254,["Mark of Detonation (NE)"]=12255,["Mark of Detonation (SE)"]=12256,["Mechanical Yeti"]=12257,["Razorlash"]=12258,["Gehennas"]=12259,["Infected Mossflayer"]=12261,["Ziggurat Protector"]=12262,["Slaughterhouse Protector"]=12263,["Shazzrah"]=12264,["Lava Spawn"]=12265,["Melizza Brimbuzzle"]=12277,["Sickly Gazelle"]=12296,["Cured Gazelle"]=12297,["Sickly Deer"]=12298,["Cured Deer"]=12299,["Burning Blade Toxicologist"]=12319,["Burning Blade Crusher"]=12320,["Stormscale Toxicologist"]=12321,["Quel'Lithien Protector"]=12322,["Brother Crowley"]=12336,["Crimson Courier"]=12337,["Shadowprey Guardian"]=12338,["Demetria"]=12339,["Drulzegar Skraghook"]=12340,["Green Skeletal War Horse"]=12344,["Emerald Riding Raptor"]=12346,["Enraged Reef Crawler"]=12347,["Ivory Raptor"]=12348,["Turquoise Riding Raptor"]=12349,["Violet Riding Raptor"]=12350,["Dire Riding Wolf"]=12351,["Scarlet Cavalier"]=12352,["Timber Riding Wolf"]=12353,["Brown Riding Kodo"]=12354,["Gray Riding Kodo"]=12355,["Riding Striped Frostsaber"]=12358,["Riding Spotted Frostsaber"]=12359,["Riding Striped Nightsaber"]=12360,["Riding Nightsaber"]=12361,["Riding Frostsaber"]=12362,["Icy Blue Mechanostrider Mod A"]=12364,["Unpainted Mechanostrider X"]=12366,["White Mechanostrider Mod A"]=12368,["Lord Kragaru"]=12369,["Black Ram"]=12370,["Frost Ram"]=12371,["White Riding Ram Mount"]=12374,["Wailing Spectre"]=12377,["Damned Soul"]=12378,["Unliving Caretaker"]=12379,["Unliving Resident"]=12380,["Ley Sprite"]=12381,["Mana Sprite"]=12382,["Nibbles"]=12383,["Augustus the Touched"]=12384,["Mortar Team Advanced Target Dummy"]=12385,["Large Vile Slime"]=12387,["Doomguard Commander"]=12396,["Lord Kazzak"]=12397,["Blackwing Legionnaire"]=12416,["Gordok Hyena"]=12418,["Lifelike Toad"]=12419,["Blackwing Mage"]=12420,["Death Talon Dragonspawn"]=12422,["Guard Roberts"]=12423,["Flint Shadowmore"]=12425,["Masterwork Target Dummy"]=12426,["Mountaineer Dolf"]=12427,["Deathguard Kel"]=12428,["Sentinel Shaya"]=12429,["Grunt Kor'ja"]=12430,["Gorefang"]=12431,["Old Vicejaw"]=12432,["Krethis the Shadowspinner"]=12433,["Monster Generator (Blackwing)"]=12434,["Razorgore the Untamed"]=12435,["Blackwing Spellbinder"]=12457,["Blackwing Taskmaster"]=12458,["Blackwing Warlock"]=12459,["Death Talon Wyrmguard"]=12460,["Death Talon Overseer"]=12461,["Death Talon Flamescale"]=12463,["Death Talon Seether"]=12464,["Death Talon Wyrmkin"]=12465,["Death Talon Captain"]=12467,["Death Talon Hatcher"]=12468,["Arcanite Dragonling"]=12473,["Emeraldon Boughguard"]=12474,["Emeraldon Tree Warder"]=12475,["Emeraldon Oracle"]=12476,["Verdantine Boughguard"]=12477,["Verdantine Oracle"]=12478,["Verdantine Tree Warder"]=12479,["Melris Malagan"]=12480,["Justine Demalier"]=12481,["Dreamtracker"]=12496,["Dreamroarer"]=12497,["Dreamstalker"]=12498,["Grethok the Controller"]=12557,["Grish Longrunner"]=12576,["Jarrodenus"]=12577,["Mishellena"]=12578,["Bloodfury Ripper"]=12579,["Reginald Windsor"]=12580,["Mercutio"]=12581,["Bibilfaz Featherwhistle"]=12596,["Vhulgra"]=12616,["Khaelyn Steelwing"]=12617,["Georgia"]=12636,["Thamarian"]=12656,["Don Pompa"]=12657,["Adam Lind"]=12658,["Sharptalon"]=12676,["Shadumbra"]=12677,["Ursangous"]=12678,["Senani Thunderheart"]=12696,["Decedra Willham"]=12716,["Muglash"]=12717,["Gurda Ragescar"]=12718,["Marukai"]=12719,["Framnali"]=12720,["Mitsuwa"]=12721,["Vera Nightshade"]=12722,["Har'alen"]=12723,["Pixel"]=12724,["Je'neu Sancrea"]=12736,["Mastok Wrilehiss"]=12737,["Nori Pridedrift"]=12738,["Onyxia's Elite Guard"]=12739,["Faustron"]=12740,["Lady Onyxia"]=12756,["Karang Amakkar"]=12757,["Onyxia Trigger"]=12758,["Tideress"]=12759,["Hraug"]=12776,["Captain Dirgehammer"]=12777,["Lieutenant Rachel Vaccar"]=12778,["Archmage Gaiman"]=12779,["Sergeant Major Skyshadow"]=12780,["Master Sergeant Biggins"]=12781,["Captain O'Neal"]=12782,["Lieutenant Karter"]=12783,["Lieutenant Jackspring"]=12784,["Sergeant Major Clate"]=12785,["Guard Quine"]=12786,["Guard Hammon"]=12787,["Legionnaire Teena"]=12788,["Blood Guard Hini'wana"]=12789,["Advisor Willington"]=12790,["Chieftain Earthbind"]=12791,["Lady Palanseer"]=12792,["Brave Stonehide"]=12793,["Stone Guard Zarg"]=12794,["First Sergeant Hola'mahi"]=12795,["Raider Bork"]=12796,["Grunt Korf"]=12797,["Grunt Bek'rah"]=12798,["Sergeant Ba'sha"]=12799,["Chimaerok"]=12800,["Arcane Chimaerok"]=12801,["Chimaerok Devourer"]=12802,["Lord Lakmaeran"]=12803,["Officer Areyn"]=12805,["Magmakin"]=12806,["Greshka"]=12807,["Xen'Zilla"]=12816,["Ruul Snowhoof"]=12818,["Wandering Protector"]=12836,["Yama Snowhoof"]=12837,["Ashenvale Outrunner"]=12856,["Torek"]=12858,["Splintertree Raider"]=12859,["Duriel Moonfire"]=12860,["Warsong Scout"]=12862,["Warsong Runner"]=12863,["Warsong Outrider"]=12864,["Ambassador Malcin"]=12865,["Myriam Moonsinger"]=12866,["Kuray'bin"]=12867,["Baron Aquanis"]=12876,["Ertog Ragetusk"]=12877,["Silverwing Sentinel"]=12896,["Silverwing Warrior"]=12897,["Phantim Illusion"]=12898,["Axtroz"]=12899,["Somnus"]=12900,["Lorgus Jett"]=12902,["Splintertree Guard"]=12903,["Chief Murgut"]=12918,["Nat Pagle"]=12919,["Doctor Gregory Victor"]=12920,["Enraged Foulweald"]=12921,["Imp Minion"]=12922,["Wounded Soldier"]=12923,["Badly Injured Soldier"]=12924,["Critically Injured Soldier"]=12925,["Badly Injured Alliance Soldier"]=12936,["Critically Injured Alliance Soldier"]=12937,["Injured Alliance Soldier"]=12938,["Doctor Gustaf VanHowzen"]=12939,["Vorsha the Lasher"]=12940,["Jase Farlane"]=12941,["Leonard Porter"]=12942,["Werg Thickblade"]=12943,["Lokhtos Darkbargainer"]=12944,["Zannok Hidepiercer"]=12956,["Blimo Gadgetspring"]=12957,["Gigget Zipcoil"]=12958,["Nergal"]=12959,["Christi Galvanis"]=12960,["Kil'Hiwana"]=12961,["Wik'Tar"]=12962,["Kolkar Waylayer"]=12976,["Kolkar Ambusher"]=12977,["Mounted Ironforge Mountaineer"]=12996,["Monty"]=12997,["Dwarven Farmer"]=12998,["World Invisible Trigger"]=12999,["Gnome Engineer"]=13000,["Deeprun Rat"]=13016,["Enthralled Deeprun Rat"]=13017,["Nipsy"]=13018,["Burning Blade Seer"]=13019,["Vaelastrasz the Corrupt"]=13020,["Warpwood Crusher"]=13021,["Whip Lasher"]=13022,["Gordok Mastiff"]=13036,["Dun Morogh Mountaineer"]=13076,["Umi Thorson"]=13078,["Keetar"]=13079,["Irondeep Guard"]=13080,["Irondeep Raider"]=13081,["Milton Beats"]=13082,["Bixi Wobblebonk"]=13084,["Myrokos Silentform"]=13085,["Aggi Rumblestomp"]=13086,["Coldmine Invader"]=13087,["Masha Swiftcut"]=13088,["Coldmine Guard"]=13089,["Coldmine Explorer"]=13096,["Coldmine Surveyor"]=13097,["Irondeep Surveyor"]=13098,["Irondeep Explorer"]=13099,["Alliance Spirit Guide"]=13116,["Horde Spirit Guide"]=13117,["Crimson Bodyguard"]=13118,["Hive'Ashi Drone"]=13136,["Lieutenant Rugba"]=13137,["Lieutenant Spencer"]=13138,["Commander Randolph"]=13139,["Commander Dardosh"]=13140,["Deeprot Stomper"]=13141,["Deeprot Tangler"]=13142,["Lieutenant Stronghoof"]=13143,["Lieutenant Vol'talar"]=13144,["Lieutenant Grummus"]=13145,["Lieutenant Murp"]=13146,["Lieutenant Lewis"]=13147,["Flame of Ragnaros"]=13148,["Commander Malgor"]=13152,["Commander Mulfort"]=13153,["Commander Louis Philips"]=13154,["Makasgar"]=13157,["Lieutenant Sanders"]=13158,["James Clark"]=13159,["Carrion Swarmer"]=13160,["Aerie Gryphon"]=13161,["Smith Regzar"]=13176,["Vahgruk"]=13177,["War Rider"]=13178,["Wing Commander Guse"]=13179,["Wing Commander Jeztor"]=13180,["Wing Commander Mulverick"]=13181,["Phase Lasher"]=13196,["Fel Lash"]=13197,["Gaelden Hammersmith"]=13216,["Thanthaldis Snowgleam"]=13217,["Grunnda Wolfheart"]=13218,["Jorek Ironside"]=13219,["Layo Starstrike"]=13220,["Primalist Thurloga"]=13236,["Lokholar the Ice Lord"]=13256,["Murgot Deepforge"]=13257,["Wildspawn Imp"]=13276,["Dahne Pierce"]=13277,["Duke Hydraxis"]=13278,["Discordant Surge"]=13279,["Hydrospawn"]=13280,["Noxxion"]=13282,["Lord Tony Romano"]=13283,["Frostwolf Shaman"]=13284,["Death Lash"]=13285,["Lieutenant Largent"]=13296,["Lieutenant Stouthandle"]=13297,["Lieutenant Greywand"]=13298,["Lieutenant Lonadin"]=13299,["Lieutenant Mancuso"]=13300,["Hive'Ashi Ambusher"]=13301,["Coldmine Peon"]=13316,["Coldmine Miner"]=13317,["Commander Mortimer"]=13318,["Commander Duffy"]=13319,["Commander Karl Philips"]=13320,["Small Frog"]=13321,["Hydraxian Honor Guard"]=13322,["Subterranean Diemetradon"]=13323,["Seasoned Guardsman"]=13324,["Seasoned Mountaineer"]=13325,["Seasoned Defender"]=13326,["Seasoned Sentinel"]=13327,["Seasoned Guardian"]=13328,["Seasoned Legionnaire"]=13329,["Seasoned Warrior"]=13330,["Veteran Defender"]=13331,["Veteran Guardian"]=13332,["Veteran Guardsman"]=13333,["Veteran Legionnaire"]=13334,["Veteran Mountaineer"]=13335,["Veteran Sentinel"]=13336,["Veteran Warrior"]=13337,["Core Rat"]=13338,["Stormpike Bowman"]=13358,["Frostwolf Bowman"]=13359,["Frostwolf Shredder Unit"]=13378,["Irondeep Miner"]=13396,["Irondeep Peon"]=13397,["Stormpike Shredder Unit"]=13416,["Sagorne Creststrider"]=13417,["Kaymard Copperpinch"]=13418,["Ivus the Forest Lord"]=13419,["Penney Copperpinch"]=13420,["Champion Guardian"]=13421,["Champion Defender"]=13422,["Champion Guardsman"]=13424,["Champion Legionnaire"]=13425,["Champion Mountaineer"]=13426,["Champion Sentinel"]=13427,["Nardstrum Copperpinch"]=13429,["Jaycrue Copperpinch"]=13430,["Whulwert Copperpinch"]=13431,["Seersa Copperpinch"]=13432,["Wulmort Jinglepocket"]=13433,["Macey Jinglepocket"]=13434,["Khole Jinglepocket"]=13435,["Guchie Jinglepocket"]=13436,["Wing Commander Ichman"]=13437,["Wing Commander Slidore"]=13438,["Wing Commander Vipore"]=13439,["Frostwolf Wolf Rider"]=13440,["Frostwolf Wolf Rider Commander"]=13441,["Arch Druid Renferal"]=13442,["Druid of the Grove"]=13443,["Greatfather Winter"]=13444,["Great-father Winter"]=13445,["Field Marshal Teravaine"]=13446,["Corporal Noreg Stormpike"]=13447,["Sergeant Yazra Bloodsnarl"]=13448,["Warmaster Garrick"]=13449,["Noxxion's Spawn"]=13456,["Zen'Balai"]=13476,["Stormpike Commando"]=13524,["Seasoned Commando"]=13525,["Veteran Commando"]=13526,["Champion Commando"]=13527,["Seasoned Reaver"]=13529,["Veteran Reaver"]=13530,["Champion Reaver"]=13531,["Spewed Larva"]=13533,["Seasoned Coldmine Guard"]=13534,["Veteran Coldmine Guard"]=13535,["Champion Coldmine Guard"]=13536,["Seasoned Coldmine Surveyor"]=13537,["Veteran Coldmine Surveyor"]=13538,["Champion Coldmine Surveyor"]=13539,["Seasoned Irondeep Explorer"]=13540,["Veteran Irondeep Explorer"]=13541,["Champion Irondeep Explorer"]=13542,["Seasoned Irondeep Raider"]=13543,["Veteran Irondeep Raider"]=13544,["Champion Irondeep Raider"]=13545,["Seasoned Coldmine Explorer"]=13546,["Veteran Coldmine Explorer"]=13547,["Champion Coldmine Explorer"]=13548,["Seasoned Coldmine Invader"]=13549,["Veteran Coldmine Invader"]=13550,["Champion Coldmine Invader"]=13551,["Seasoned Irondeep Guard"]=13552,["Veteran Irondeep Guard"]=13553,["Champion Irondeep Guard"]=13554,["Seasoned Irondeep Surveyor"]=13555,["Veteran Irondeep Surveyor"]=13556,["Champion Irondeep Surveyor"]=13557,["Stormpike Ram Rider"]=13576,["Stormpike Ram Rider Commander"]=13577,["Rotgrip"]=13596,["Frostwolf Explosives Expert"]=13597,["Stormpike Explosives Expert"]=13598,["Stolid Snapjaw"]=13599,["Tinkerer Gizlock"]=13601,["The Abominable Greench"]=13602,["Frostwolf Stable Master"]=13616,["Stormpike Stable Master"]=13617,["Stabled Frostwolf"]=13618,["Strange Snowman"]=13636,["Willow"]=13656,["Noxxious Scion"]=13696,["Cavindra"]=13697,["Keeper Marandis"]=13698,["Selendra"]=13699,["Celebras the Redeemed"]=13716,["Centaur Pariah"]=13717,["The Nameless Prophet"]=13718,["Noxxious Essence"]=13736,["Marandis' Sister"]=13737,["Veng"]=13738,["Maraudos"]=13739,["Magra"]=13740,["Gelk"]=13741,["Kolk"]=13742,["Corrupt Force of Nature"]=13743,["PvP Graveyard Credit Marker"]=13756,["Corporal Teeka Bloodsnarl"]=13776,["Sergeant Durgen Stormpike"]=13777,["PvP Tower Credit Marker"]=13778,["PvP Mine Credit Marker"]=13796,["Mountaineer Boombellow"]=13797,["Jotek"]=13798,["Prospector Stonehewer"]=13816,["Voggah Deathgrip"]=13817,["Burning Blade Nightmare"]=13836,["Captured Stallion"]=13837,["Royal Dreadguard"]=13839,["Warmaster Laggrond"]=13840,["Lieutenant Haggerdin"]=13841,["Frostwolf Ambassador Rokhstrom"]=13842,["Lieutenant Rotimer"]=13843,["Mekgineer Trigger"]=13876,["Scalebeard"]=13896,["Dire Maul Crystal Totem"]=13916,["Izzy Coppergrab"]=13917,["Ravenholdt"]=13936,["Alterac Yeti"]=13959,["Tortured Drake"]=13976,["Blackwing Technician"]=13996,["Chromaggus"]=14020,["Corrupted Red Whelp"]=14022,["Corrupted Green Whelp"]=14023,["Corrupted Blue Whelp"]=14024,["Corrupted Bronze Whelp"]=14025,["Trigger Guse"]=14026,["Trigger Mulverick"]=14027,["Trigger Jeztor"]=14028,["Trigger Ichman"]=14029,["Trigger Slidore"]=14030,["Trigger Vipore"]=14031,["Haggle"]=14041,["Demon Portal"]=14081,["Enraged Felguard"]=14101,["Deeprun Diver"]=14121,["Massive Geyser"]=14122,["Steeljaw Snapper"]=14123,["Ar'lia"]=14143,["RaidMage"]=14162,["Bounty Hunter Kolark"]=14182,["Artilleryman Sheldonore"]=14183,["Najak Hexxen"]=14185,["Ravak Grimtotem"]=14186,["Athramanis"]=14187,["Dirk Swindle"]=14188,["Gravis Slipknot"]=14221,["Araga"]=14222,["Cranky Benj"]=14223,["7:XT"]=14224,["Prince Kellen"]=14225,["Kaskk"]=14226,["Hissperak"]=14227,["Giggler"]=14228,["Accursed Slitherblade"]=14229,["Burgle Eye"]=14230,["Drogoth the Roamer"]=14231,["Dart"]=14232,["Ripscale"]=14233,["Hayoc"]=14234,["The Rot"]=14235,["Lord Angler"]=14236,["Oozeworm"]=14237,["Ironbark the Redeemed"]=14241,["[UNUSED] Sulhasa"]=14242,["Blue Drakonid"]=14261,["Green Drakonid"]=14262,["Bronze Drakonid"]=14263,["Red Drakonid"]=14264,["Black Drakonid"]=14265,["Shanda the Spinner"]=14266,["Emogg the Crusher"]=14267,["Lord Condar"]=14268,["Seeker Aqualon"]=14269,["Squiddic"]=14270,["Ribchaser"]=14271,["Snarlflare"]=14272,["Boulderheart"]=14273,["Tamra Stormpike"]=14275,["Scargil"]=14276,["Lady Zephris"]=14277,["Ro'Bark"]=14278,["Creepthess"]=14279,["Big Samras"]=14280,["Jimmy the Bleeder"]=14281,["Frostwolf Bloodhound"]=14282,["Stormpike Owl"]=14283,["Stormpike Battleguard"]=14284,["Frostwolf Battleguard"]=14285,["Brinna Valanaar"]=14301,["Chromatic Drakonid"]=14302,["Petrified Guardian"]=14303,["Kor'kron Elite"]=14304,["Human Orphan"]=14305,["Eskhandar"]=14306,["Black Drakonid Spawner"]=14307,["Ferra"]=14308,["Red Drakonid Spawner"]=14309,["Green Drakonid Spawner"]=14310,["Bronze Drakonid Spawner"]=14311,["Blue Drakonid Spawner"]=14312,["Guard Fengus"]=14321,["Stomper Kreeg"]=14322,["Guard Slip'kik"]=14323,["Cho'Rush the Observer"]=14324,["Captain Kromcrush"]=14325,["Guard Mol'dar"]=14326,["Lethtendris"]=14327,["Black War Wolf"]=14329,["Black War Raptor"]=14330,["Red Skeletal Warhorse"]=14331,["Black War Steed"]=14332,["Black War Kodo"]=14333,["Black Battlestrider"]=14334,["Black War Ram"]=14335,["Black War Tiger"]=14336,["Field Repair Bot 74A"]=14337,["Knot Thimblejack"]=14338,["Death Howl"]=14339,["Alshirr Banebreath"]=14340,["Ragepaw"]=14342,["Olm the Wise"]=14343,["Mongress"]=14344,["The Ongar"]=14345,["Highlord Demitrian"]=14347,["Earthcaller Franzahl"]=14348,["Pimgib"]=14349,["Hydroling"]=14350,["Gordok Bushwacker"]=14351,["Mizzle the Crafty"]=14353,["Pusillin"]=14354,["Azj'Tordin"]=14355,["Sawfin Frenzy"]=14356,["Lake Thresher"]=14357,["Shen'dralar Ancient"]=14358,["Shen'dralar Wisp"]=14361,["Thornling"]=14362,["Thief Catcher Shadowdelve"]=14363,["Shen'dralar Spirit"]=14364,["Thief Catcher Farmountain"]=14365,["Warpwood Spores"]=14366,["Thief Catcher Thunderbrew"]=14367,["Lorekeeper Lydros"]=14368,["Shen'dralar Zealot"]=14369,["Cadaverous Worm"]=14370,["Shen'dralar Provisioner"]=14371,["Winterfall Ambusher"]=14372,["Sage Korolusk"]=14373,["Scholar Runethorn"]=14374,["Scout Stronghand"]=14375,["Scout Manslayer"]=14376,["Scout Tharr"]=14377,["Huntress Skymane"]=14378,["Huntress Ravenoak"]=14379,["Huntress Leafrunner"]=14380,["Lorekeeper Javon"]=14381,["Lorekeeper Mykos"]=14382,["Lorekeeper Kildrath"]=14383,["Doomguard Minion"]=14385,["Wandering Eye of Kilrogg"]=14386,["Lothos Riftwaker"]=14387,["Rogue Black Drake"]=14388,["Netherwalker"]=14389,["Expeditionary Mountaineer"]=14390,["Overlord Runthak"]=14392,["Expeditionary Priest"]=14393,["Major Mattingly"]=14394,["Griniblix the Spectator"]=14395,["Eye of Immol'thar"]=14396,["Mana Burst"]=14397,["Eldreth Darter"]=14398,["Arcane Torrent"]=14399,["Arcane Feedback"]=14400,["Master Elemental Shaper Krixix"]=14401,["Seeker Cromwell"]=14402,["Seeker Nahr"]=14403,["Seeker Thompson"]=14404,["Brown Prairie Dog"]=14421,["Officer Jaxon"]=14423,["Mirelow"]=14424,["Gnawbone"]=14425,["Harb Foulmountain"]=14426,["Gibblesnik"]=14427,["Uruson"]=14428,["Grimmaw"]=14429,["Duskstalker"]=14430,["Fury Shelda"]=14431,["Threggil"]=14432,["Sludginn"]=14433,["Alarm-o-Bot"]=14434,["Prince Thunderaan"]=14435,["Mor'zul Bloodbringer"]=14436,["Gorzeeki Wildeyes"]=14437,["Officer Pomeroy"]=14438,["Officer Brady"]=14439,["Hunter Sagewind"]=14440,["Hunter Ragetotem"]=14441,["Hunter Thunderhorn"]=14442,["Doomguard Tap Trigger"]=14443,["Orcish Orphan"]=14444,["Lord Captain Wyrmak"]=14445,["Fingat"]=14446,["Gilmorian"]=14447,["Molt Thorn"]=14448,["Blackwing Orb Trigger"]=14449,["Orphan Matron Nightingale"]=14450,["Orphan Matron Battlewail"]=14451,["Enslaved Doomguard Commander"]=14452,["Orb of Domination"]=14453,["The Windreaver"]=14454,["Whirling Invader"]=14455,["Blackwing Guardsman"]=14456,["Princess Tempestria"]=14457,["Watery Invader"]=14458,["Nefarian's Troops"]=14459,["Blazing Invader"]=14460,["Baron Charr"]=14461,["Thundering Invader"]=14462,["Daio the Decrepit"]=14463,["Avalanchion"]=14464,["Alliance Battle Standard"]=14465,["Horde Battle Standard"]=14466,["Kroshius"]=14467,["Niby the Almighty"]=14469,["Impsy"]=14470,["Setis"]=14471,["Gretheer"]=14472,["Lapress"]=14473,["Zora"]=14474,["Rex Ashil"]=14475,["Krellack"]=14476,["Grubthor"]=14477,["Huricanian"]=14478,["Twilight Lord Everun"]=14479,["Alowicious Czervik"]=14480,["Emmithue Smails"]=14481,["Xorothian Imp"]=14482,["Dread Guard"]=14483,["Injured Peasant"]=14484,["Plagued Peasant"]=14485,["Scourge Footsoldier"]=14486,["Gluggle"]=14487,["Roloch"]=14488,["Scourge Archer"]=14489,["Rippa"]=14490,["Kurmokk"]=14491,["Verifonix"]=14492,["Eris Havenfire"]=14494,["Invisible Trigger One"]=14495,["Stormwind Orphan"]=14496,["Shellene"]=14497,["Tosamina"]=14498,["Horde Orphan"]=14499,["J'eevee"]=14500,["Xorothian Dreadsteed"]=14502,["The Cleaner"]=14503,["Dreadsteed Spirit"]=14504,["Dreadsteed"]=14505,["Lord Hel'nurath"]=14506,["High Priest Venoxis"]=14507,["Short John Mithril"]=14508,["High Priest Thekal"]=14509,["High Priestess Mar'li"]=14510,["Shadowed Spirit"]=14511,["Corrupted Spirit"]=14512,["Malicious Spirit"]=14513,["Banal Spirit"]=14514,["High Priestess Arlokk"]=14515,["Death Knight Darkreaver"]=14516,["High Priestess Jeklik"]=14517,["Aspect of Banality"]=14518,["Aspect of Corruption"]=14519,["Aspect of Malice"]=14520,["Aspect of Shadow"]=14521,["Ur'dan"]=14522,["Ulathek"]=14523,["Vartrus the Ancient"]=14524,["Stoma the Ancient"]=14525,["Hastat the Ancient"]=14526,["Simone the Inconspicuous"]=14527,["Precious"]=14528,["Franklin the Friendly"]=14529,["Solenor the Slayer"]=14530,["Artorius the Amiable"]=14531,["Razzashi Venombrood"]=14532,["Simone the Seductress"]=14533,["Klinfran the Crazed"]=14534,["Artorius the Doombringer"]=14535,["Nelson the Nice"]=14536,["Precious the Devourer"]=14538,["Swift Timber Wolf"]=14539,["Swift Brown Wolf"]=14540,["Swift Gray Wolf"]=14541,["Great White Kodo"]=14542,["Swift Olive Raptor"]=14543,["Swift Orange Raptor"]=14544,["Swift Blue Raptor"]=14545,["Swift Brown Ram"]=14546,["Swift White Ram"]=14547,["Swift Gray Ram"]=14548,["Great Brown Kodo"]=14549,["Great Gray Kodo"]=14550,["Swift Yellow Mechanostrider"]=14551,["Swift White Mechanostrider"]=14552,["Swift Green Mechanostrider"]=14553,["Swift Mistsaber"]=14555,["Swift Frostsaber"]=14556,["Swift Dawnsaber"]=14557,["Purple Skeletal Warhorse"]=14558,["Swift Palomino"]=14559,["Swift White Steed"]=14560,["Swift Brown Steed"]=14561,["Swift Red Mechanostrider"]=14563,["Terrordale Spirit"]=14564,["Charger"]=14565,["Ancient Equine Spirit"]=14566,["Derotain Mudsipper"]=14567,["Darkreaver's Fallen Charger"]=14568,["Sergeant Thunderhorn"]=14581,["Ebonroc"]=14601,["Swift Stormsaber"]=14602,["Zapped Shore Strider"]=14603,["Zapped Land Walker"]=14604,["Bone Construct"]=14605,["Overseer Maltorius"]=14621,["Thorium Brotherhood Lookout"]=14622,["Warsong Gulch Battlemaster"]=14623,["Master Smith Burninate"]=14624,["Overseer Oilfist"]=14625,["Taskmaster Scrange"]=14626,["Hansel Heavyhands"]=14627,["Evonice Sootsmoker"]=14628,["Loggerhead Snapjaw"]=14629,["Leatherback Snapjaw"]=14630,["Olive Snapjaw"]=14631,["Hawksbill Snapjaw"]=14632,["Albino Snapjaw"]=14633,["Lookout Captain Lolo Longstriker"]=14634,["Sleepy Dark Iron Worker"]=14635,["Chambermaid Pillaclencher"]=14636,["Zorbin Fandazzle"]=14637,["Zapped Wave Strider"]=14638,["Zapped Deep Strider"]=14639,["Zapped Cliff Giant"]=14640,["Warsong Gulch Herald"]=14645,["Stratholme Trigger"]=14646,["Stinglasher"]=14661,["Corrupted Fire Nova Totem V"]=14662,["Corrupted Stoneskin Totem VI"]=14663,["Corrupted Healing Stream Totem V"]=14664,["Corrupted Windfury Totem III"]=14666,["Corrupted Totem"]=14667,["Corrupted Infernal"]=14668,["Sever"]=14682,["Balzaphon"]=14684,["Lady Falther'ess"]=14686,["Prince Sandoval"]=14688,["Revanchion"]=14690,["Scorn"]=14693,["Lord Blackwood"]=14695,["Lumbering Horror"]=14697,["Silverwing Elite"]=14715,["Horde Elite"]=14717,["Horde Laborer"]=14718,["High Overlord Saurfang"]=14720,["Field Marshal Afrasiabi"]=14721,["Clavicus Knavingham"]=14722,["Mistina Steelshield"]=14723,["Bubulo Acerbus"]=14724,["Raedon Duskstriker"]=14725,["Rashona Straglash"]=14726,["Vehena"]=14727,["Rumstag Proudstrider"]=14728,["Ralston Farnsley"]=14729,["Revantusk Watcher"]=14730,["Lard"]=14731,["PvP CTF Credit Marker"]=14732,["Sentinel Farsong"]=14733,["Revantusk Drummer"]=14734,["Primal Torntusk"]=14736,["Smith Slagtree"]=14737,["Otho Moji'ko"]=14738,["Mystic Yayo'jin"]=14739,["Katoom the Angler"]=14740,["Huntsman Markhor"]=14741,["Zap Farflinger"]=14742,["Jhordy Lapforge"]=14743,["Frostwolf Howler"]=14744,["Stormpike Battle Charger"]=14745,["Vilebranch Kidnapper"]=14748,["Gurubashi Bat Rider"]=14750,["Frostwolf Battle Standard"]=14751,["Stormpike Battle Standard"]=14752,["Illiyana Moonblaze"]=14753,["Kelm Hargunth"]=14754,["Tiny Green Dragon"]=14755,["Tiny Red Dragon"]=14756,["Elder Torntusk"]=14757,["Zul'Gurub Trigger"]=14758,["Creeping Doom"]=14761,["Dun Baldar North Marshal"]=14762,["Dun Baldar South Marshal"]=14763,["Icewing Marshal"]=14764,["Stonehearth Marshal"]=14765,["Iceblood Marshal"]=14766,["Tower Point Marshal"]=14767,["East Frostwolf Marshal"]=14768,["West Frostwolf Marshal"]=14769,["Dun Baldar North Warmaster"]=14770,["Dun Baldar South Warmaster"]=14771,["East Frostwolf Warmaster"]=14772,["Iceblood Warmaster"]=14773,["Icewing Warmaster"]=14774,["Stonehearth Warmaster"]=14775,["Tower Point Warmaster"]=14776,["West Frostwolf Warmaster"]=14777,["Captain Shatterskull"]=14781,["Razzashi Raptor"]=14821,["Sayge"]=14822,["Silas Darkmoon"]=14823,["Withered Mistress"]=14825,["Sacrificed Troll"]=14826,["Burth"]=14827,["Gelvas Grimegate"]=14828,["Yebb Neblegear"]=14829,["Unkillable Test Dummy 60 Warrior"]=14830,["Kerri Hicks"]=14832,["Chronos"]=14833,["Hakkar"]=14834,["Rinling"]=14841,["Melnan Darkstone"]=14842,["Kruban Darkblade"]=14843,["Sylannia"]=14844,["Stamp Thunderhorn"]=14845,["Lhara"]=14846,["Professor Thaddeus Paleo"]=14847,["Herald"]=14848,["Darkmoon Carnie"]=14849,["Gruk"]=14850,["Erk"]=14857,["Guard Taruc"]=14859,["Flik"]=14860,["Blood Steward of Kirtonos"]=14861,["Emissary Roman'khan"]=14862,["Khaz Modan Ram"]=14864,["Felinni"]=14865,["Flik's Frog"]=14866,["Jubjub"]=14867,["Hornsley"]=14868,["Pygmy Cockatrice"]=14869,["Morja"]=14871,["Trok"]=14872,["Okla"]=14873,["Karu"]=14874,["Molthor"]=14875,["Zandalar Headshrinker"]=14876,["Jubling"]=14878,["Arathi Basin Battlemaster"]=14879,["Razzashi Skitterer"]=14880,["Spider"]=14881,["Atal'ai Mistress"]=14882,["Voodoo Slave"]=14883,["Parasitic Serpent"]=14884,["Jonathan LeCraft"]=14885,["Ysondre"]=14887,["Lethon"]=14888,["Emeriss"]=14889,["Taerar"]=14890,["Fang"]=14892,["Guard Kurall"]=14893,["Swarm of bees"]=14894,["Peon"]=14901,["Jin'rokh the Breaker"]=14902,["Al'tabim the All-Seeing"]=14903,["Maywiki of Zuldazar"]=14904,["Falthir the Sightless"]=14905,["Mogg"]=14908,["Pooka"]=14909,["Exzhal"]=14910,["Zandalar Enforcer"]=14911,["Captured Hakkari Zealot"]=14912,["Rin'wosho the Trader"]=14921,["Kartra Bloodsnarl"]=14942,["Guse's War Rider"]=14943,["Jeztor's War Rider"]=14944,["Mulverick's War Rider"]=14945,["Slidore's Gryphon"]=14946,["Ichman's Gryphon"]=14947,["Vipore's Gryphon"]=14948,["Mirvyna Jinglepocket"]=14961,["Dillord Copperpinch"]=14962,["Gapp Jinglepocket"]=14963,["Hecht Copperpinch"]=14964,["Frenzied Bloodseeker Bat"]=14965,["Elfarran"]=14981,["Lylandris"]=14982,["Field Marshal Oslight"]=14983,["Sergeant Maclear"]=14984,["Shade of Jin'do"]=14986,["Powerful Healing Ward"]=14987,["Ohgan"]=14988,["Poisonous Cloud"]=14989,["Defilers Envoy"]=14990,["League of Arathor Emissary"]=14991,["Zandalarian Event Generator"]=14994,["Deze Snowbane"]=15006,["Sir Malory Wheeler"]=15007,["Lady Hoteshem"]=15008,["Voodoo Spirit"]=15009,["Jungle Toad"]=15010,["Wagner Hammerstrike"]=15011,["Javnir Nashak"]=15012,["Deathmaster Dwire"]=15021,["Deathstalker Mortis"]=15022,["Spawn of Mar'li"]=15041,["Zanza the Restless"]=15042,["Zulian Crocolisk"]=15043,["Arathi Farmer"]=15045,["Forsaken Farmer"]=15046,["Gurubashi"]=15047,["Spirit of Jin'do"]=15061,["Arathi Lumberjack"]=15062,["Arathi Blacksmith"]=15063,["Forsaken Blacksmith"]=15064,["Lady"]=15065,["Cleo"]=15066,["Zulian Stalker"]=15067,["Zulian Guardian"]=15068,["Heart of Hakkar"]=15069,["Vinchaxa"]=15070,["Underfoot"]=15071,["Spike"]=15072,["Pat's Hellfire Guy"]=15073,["Arathi Miner"]=15074,["Forsaken Miner"]=15075,["Zandalarian Emissary"]=15076,["Riggle Bassbait"]=15077,["Jang"]=15078,["Fishbot 5000"]=15079,["Servant of the Hand"]=15080,["Gri'lek"]=15082,["Hazza'rah"]=15083,["Renataki"]=15084,["Wushoolay"]=15085,["Arathi Stablehand"]=15086,["Forsaken Stablehand"]=15087,["Booty Bay Elite"]=15088,["Forsaken Lumberjack"]=15089,["Swift Razzashi Raptor"]=15090,["Zul'Gurub Panther Trigger"]=15091,["Zulian Prowler"]=15101,["Silverwing Emissary"]=15102,["Stormpike Emissary"]=15103,["Swift Zulian Tiger"]=15104,["Warsong Envoy"]=15105,["Frostwolf Envoy"]=15106,["Arathi Horse"]=15107,["Forsaken Horse"]=15108,["Mad Servant"]=15111,["Brain Wash Totem"]=15112,["Honored Hero"]=15113,["Gahz'ranka"]=15114,["Honored Ancestor"]=15115,["Grinkle"]=15116,["Chained Spirit"]=15117,["Barrus"]=15119,["Gahz'ranka Dead"]=15122,["Targot Jinglepocket"]=15124,["Kosco Copperpinch"]=15125,["Rutherford Twing"]=15126,["Samuel Hawke"]=15127,["Defiler Elite"]=15128,["League of Arathor Elite"]=15130,["Qeeju"]=15131,["Hammerfall Elite"]=15136,["Menethil Elite"]=15137,["Silverpine Elite"]=15138,["Pat's Splash Guy"]=15140,["Portal of Madness"]=15141,["Mad Voidwalker"]=15146,["Scarlet Inquisitor"]=15162,["Nightmare Illusion"]=15163,["Mulgore Trigger"]=15164,["Haughty Modiste"]=15165,["Vile Scarab"]=15168,["Ralo'shan the Eternal Watcher"]=15169,["Rutgar Glyphshaper"]=15170,["Frankal Stonebridge"]=15171,["Glibb"]=15172,["Calandrath"]=15174,["Khur Hornstriker"]=15175,["Vargus"]=15176,["Cloud Skydancer"]=15177,["Runk Windtamer"]=15178,["Mishta"]=15179,["Baristolth of the Shifting Sands"]=15180,["Commander Mar'alith"]=15181,["Vish Kozus"]=15182,["Geologist Larksbane"]=15183,["Cenarion Hold Infantry"]=15184,["Brood of Nozdormu"]=15185,["Murky"]=15186,["Cenarion Emissary Jademoon"]=15187,["Cenarion Emissary Blackhoof"]=15188,["Beetix Ficklespragg"]=15189,["Noggle Ficklespragg"]=15190,["Windcaller Proudhorn"]=15191,["Anachronos"]=15192,["The Banshee Queen"]=15193,["Hermit Ortell"]=15194,["Wickerman Guardian"]=15195,["Deathclasp"]=15196,["Darkcaller Yanka"]=15197,["Blackwing"]=15198,["Sergeant Hartman"]=15199,["Twilight Keeper Mayna"]=15200,["Twilight Flamereaver"]=15201,["Vyral the Vile"]=15202,["Prince Skaldrenox"]=15203,["High Marshal Whirlaxis"]=15204,["Baron Kazum"]=15205,["The Duke of Cynders"]=15206,["The Duke of Fathoms"]=15207,["The Duke of Shards"]=15208,["Crimson Templar"]=15209,["Azure Templar"]=15211,["Hoary Templar"]=15212,["Twilight Overlord"]=15213,["Invisible Stalker"]=15214,["Mistress Natalia Mar'alith"]=15215,["Darkmoon Faire Cannon"]=15218,["The Duke of Zephyrs"]=15220,["Frankal Invisible Trigger"]=15221,["Rutgar Invisible Trigger"]=15222,["Dream Fog"]=15224,["Vekniss Soldier"]=15229,["Vekniss Warrior"]=15230,["Vekniss Guardian"]=15233,["Vekniss Stinger"]=15235,["Vekniss Wasp"]=15236,["Vekniss Hive Crawler"]=15240,["Gryphon Rider Guard"]=15241,["Bat Rider Guard"]=15242,["Qiraji Mindslayer"]=15246,["Qiraji Brainwasher"]=15247,["Qiraji Lasher"]=15249,["Qiraji Slayer"]=15250,["Qiraji Champion"]=15252,["Demented Druid Spirit"]=15260,["Spirit Shade"]=15261,["Obsidian Eradicator"]=15262,["The Prophet Skeram"]=15263,["Anubisath Sentinel"]=15264,["Huum Wildmane"]=15270,["Tender"]=15271,["Arcane Wraith"]=15273,["Mana Wyrm"]=15274,["Emperor Vek'nilash"]=15275,["Emperor Vek'lor"]=15276,["Anubisath Defender"]=15277,["Magistrix Erona"]=15278,["Julia Sunstriker"]=15279,["Jesthenis Sunstriker"]=15280,["Lanthan Perilon"]=15281,["Aurel Goldleaf"]=15282,["Summoner Teli'Larien"]=15283,["Matron Arena"]=15284,["Pathstalker Kariel"]=15285,["Xil'xix"]=15286,["Shara Sunwing"]=15287,["Aluntir"]=15288,["Raelis Dawnstar"]=15289,["Arakis"]=15290,["Jainthess Thelryn"]=15291,["Faraden Thelryn"]=15292,["Aendel Windspear"]=15293,["Feral Tender"]=15294,["Well Watcher Solanian"]=15295,["Arcanist Ithanas"]=15296,["Arcanist Helion"]=15297,["Tainted Arcane Wraith"]=15298,["Viscidus"]=15299,["Vekniss Drone"]=15300,["Outrunner Alarion"]=15301,["Shade of Taerar"]=15302,["Maxima Blastenheimer"]=15303,["Ancient Mana Spring Totem"]=15304,["Lord Skwol"]=15305,["Bor Wildmane"]=15306,["Earthen Templar"]=15307,["Twilight Prophet"]=15308,["Spoops"]=15309,["Jesper"]=15310,["Anubisath Warder"]=15311,["Obsidian Nullifier"]=15312,["Moonkin (Druid - Tauren)"]=15314,["Mylini Frostmoon"]=15315,["Qiraji Scarab"]=15316,["Qiraji Scorpion"]=15317,["Hive'Zara Drone"]=15318,["Hive'Zara Collector"]=15319,["Hive'Zara Soldier"]=15320,["Hive'Zara Sandstalker"]=15323,["Qiraji Gladiator"]=15324,["Hive'Zara Wasp"]=15325,["Hive'Zara Stinger"]=15327,["Steam Tank"]=15328,["Silicate Feeder"]=15333,["Giant Eye Tentacle"]=15334,["Flesh Hunter"]=15335,["Hive'Zara Tail Lasher"]=15336,["Obsidian Destroyer"]=15338,["Ossirian the Unscarred"]=15339,["Moam"]=15340,["General Rajaxx"]=15341,["Qiraji Swarmguard"]=15343,["Swarmguard Needler"]=15344,["Kurinnaxx"]=15348,["Horde Warbringer"]=15350,["Alliance Brigadier General"]=15351,["Greater Earth Elemental"]=15352,["Katrina Shimmerstar"]=15353,["Rachelle Gothena"]=15354,["Anubisath Guardian"]=15355,["Blue Baby Murloc"]=15356,["Purple Baby Murloc"]=15357,["Lurky"]=15358,["Pink Baby Murloc"]=15359,["Green Baby Murloc"]=15360,["Murki"]=15361,["Malfurion Stormrage"]=15362,["Totem of Spirits"]=15363,["Springpaw Cub"]=15366,["Felendren the Banished"]=15367,["Tonk Mine"]=15368,["Ayamiss the Hunter"]=15369,["Buru the Gorger"]=15370,["Sunstrider Guardian"]=15371,["Springpaw Lynx"]=15372,["Merithra of the Dream"]=15378,["Caelestrasz"]=15379,["Arygos"]=15380,["Anachronos the Ancient"]=15381,["Fandral Staghelm"]=15382,["Sergeant Stonebrow"]=15383,["OLDWorld Trigger (DO NOT DELETE)"]=15384,["Colonel Zerran"]=15385,["Major Yeggeth"]=15386,["Qiraji Warrior"]=15387,["Major Pakkon"]=15388,["Captain Drenn"]=15389,["Captain Xurrem"]=15390,["Captain Qeez"]=15391,["Captain Tuubid"]=15392,["[UNUSED] Ruins Qiraji Gladiator Named 7"]=15393,["Nafien"]=15395,["Marniel Amberlight"]=15397,["Larianna Riverwind"]=15398,["Lieutenant Dawnrunner"]=15399,["Arathel Sunforge"]=15400,["Ley-Keeper Velania"]=15401,["Apprentice Mirveda"]=15402,["Aeldon Sunbrand"]=15403,["Velendris Whitemorn"]=15404,["Ley-Keeper Caidanis"]=15405,["Ven'jashi"]=15406,["Chieftain Zul'Marosh"]=15407,["Spearcrafter Otembe"]=15408,["Old Whitebark"]=15409,["Qiraji Wasp"]=15414,["Southshore Stink Bomb Counter"]=15415,["Ranger Jaela"]=15416,["Velan Brightoak"]=15417,["Magister Jaronis"]=15418,["Kania"]=15419,["Prospector Anvilward"]=15420,["Qiraji Drone"]=15421,["Qiraji Tank"]=15422,["Kaldorei Infantry"]=15423,["Anubisath Conqueror"]=15424,["Ahn'Qiraj Trigger"]=15426,["Sand Vortex"]=15428,["Disgusting Oozeling"]=15429,["Earth Elemental Totem"]=15430,["Corporal Carnes"]=15431,["Dame Twinbraid"]=15432,["Innkeeper Delaniel"]=15433,["Private Draxlegauge"]=15434,["Master Nightsong"]=15437,["Greater Fire Elemental"]=15438,["Fire Elemental Totem"]=15439,["Captain Blackanvil"]=15440,["Ironforge Brigade Rifleman"]=15441,["Ironforge Brigade Footman"]=15442,["Janela Stouthammer"]=15443,["Arcanist Nozzlespring"]=15444,["Sergeant Major Germaine"]=15445,["Bonnie Stoneflayer"]=15446,["Wrath of Air Totem"]=15447,["Private Porter"]=15448,["Hive'Zora Abomination"]=15449,["Marta Finespindle"]=15450,["Sentinel Silversky"]=15451,["Nurse Stonefield"]=15452,["Keeper Moonshade"]=15453,["Anachronos Quest Trigger Invisible"]=15454,["Slicky Gastronome"]=15455,["Sarah Sadwhistle"]=15456,["Huntress Swiftriver"]=15457,["Commander Stronghammer"]=15458,["Miner Cromwell"]=15459,["Grunt Maug"]=15460,["Shrieker Scarab"]=15461,["Spitting Scarab"]=15462,["Grace of Air Totem III"]=15463,["Strength of Earth Totem V"]=15464,["Minion of Omen"]=15466,["Omen"]=15467,["Sunstrider Mana Tap Counter"]=15468,["Senior Sergeant T'kelah"]=15469,["Stoneskin Totem VII"]=15470,["Lieutenant General Andorov"]=15471,["Kaldorei Elite"]=15473,["Stoneskin Totem VIII"]=15474,["Beetle"]=15475,["Scorpion"]=15476,["Herbalist Proudfeather"]=15477,["Stoneclaw Totem VII"]=15478,["Strength of Earth Totem VI"]=15479,["Searing Totem VII"]=15480,["Spirit of Azuregos"]=15481,["Fire Nova Totem VI"]=15482,["Magma Totem V"]=15484,["Flametongue Totem V"]=15485,["Frost Resistance Totem IV"]=15486,["Fire Resistance Totem IV"]=15487,["Healing Stream Totem VI"]=15488,["Mana Spring Totem V"]=15489,["Nature Resistance Totem IV"]=15490,["Eranikus Tyrant of the Dream"]=15491,["Windwall Totem IV"]=15492,["Marsilla Dawnstar"]=15493,["Yasmine Teli'Larien"]=15494,["Nighthaven Defender"]=15495,["Windfury Totem IV"]=15496,["Windfury Totem V"]=15497,["Windcaller Yessendra"]=15498,["Warden Haro"]=15499,["Keyl Swiftclaw"]=15500,["Aleinia"]=15501,["Andorgos"]=15502,["Kandrostrasz"]=15503,["Vethsera"]=15504,["Canal Frenzy"]=15505,["Batrider Pele'keiki"]=15508,["Princess Huhuran"]=15509,["Fankriss the Unyielding"]=15510,["Lord Kri"]=15511,["Apothecary Jezel"]=15512,["Ranger Sallina"]=15513,["Buru Egg"]=15514,["Skinner Jamani"]=15515,["Battleguard Sartura"]=15516,["Ouro"]=15517,["O'Reily"]=15520,["Hive'Zara Hatchling"]=15521,["Sergeant Umala"]=15522,["Temporary Reindeer"]=15524,["Doctor Serratus"]=15525,["Meridith the Mermaiden"]=15526,["Mana Fiend"]=15527,["Healer Longrunner"]=15528,["Lady Callow"]=15529,["Stoneguard Clayhoof"]=15532,["Bloodguard Rawtar"]=15533,["Fisherman Lin'do"]=15534,["Chief Sharpclaw"]=15535,["Anubisath Warrior"]=15537,["Anubisath Swarmguard"]=15538,["General Zog"]=15539,["Windcaller Kaldon"]=15540,["Twilight Marauder Morna"]=15541,["Twilight Marauder"]=15542,["Princess Yauj"]=15543,["Vem"]=15544,["Cenarion Outrider"]=15545,["Hive'Zara Swarmer"]=15546,["Spectral Charger"]=15547,["Spectral Stallion"]=15548,["Elder Morndeep"]=15549,["Attumen the Huntsman"]=15550,["Spectral Stable Hand"]=15551,["Doctor Weavil"]=15552,["Doctor Weavil's Flying Machine"]=15553,["Number Two"]=15554,["Hive'Zara Larva"]=15555,["Elder Splitrock"]=15556,["Elder Rumblerock"]=15557,["Elder Silvervein"]=15558,["Elder Highpeak"]=15559,["Elder Stonefort"]=15560,["Elder Obsidian"]=15561,["Elder Hammershout"]=15562,["Elder Bellowrage"]=15563,["Elder Darkcore"]=15564,["Elder Stormbrow"]=15565,["Elder Snowcrown"]=15566,["Elder Ironband"]=15567,["Elder Graveborn"]=15568,["Elder Goldwell"]=15569,["Elder Primestone"]=15570,["Maws"]=15571,["Elder Runetotem"]=15572,["Elder Ragetotem"]=15573,["Elder Stonespire"]=15574,["Elder Bloodhoof"]=15575,["Elder Winterhoof"]=15576,["Elder Skychaser"]=15577,["Elder Wildmane"]=15578,["Elder Darkhorn"]=15579,["Elder Ezra Wheathoof"]=15580,["Elder Grimtotem"]=15581,["Elder Windtotem"]=15582,["Elder Thunderhorn"]=15583,["Elder Skyseer"]=15584,["Elder Dawnstrider"]=15585,["Elder Dreamseer"]=15586,["Elder Mistwalker"]=15587,["Elder High Mountain"]=15588,["Eye of C'Thun"]=15589,["Ossirian Crystal Trigger"]=15590,["Minion of Weavil"]=15591,["Elder Windrun"]=15592,["Elder Starsong"]=15593,["Elder Moonstrike"]=15594,["Elder Bladeleaf"]=15595,["Elder Starglade"]=15596,["Elder Moonwarden"]=15597,["Elder Bladeswift"]=15598,["Elder Bladesing"]=15599,["Elder Skygleam"]=15600,["Elder Starweave"]=15601,["Elder Meadowrun"]=15602,["Elder Nightwind"]=15603,["Elder Morningdew"]=15604,["Elder Riversong"]=15605,["Elder Brightspear"]=15606,["Elder Farwhisper"]=15607,["Medivh"]=15608,["Cenarion Scout Landion"]=15609,["Cenarion Scout Azenel"]=15610,["Cenarion Scout Jalia"]=15611,["Krug Skullsplit"]=15612,["Merok Longstride"]=15613,["J.D. Shadesong"]=15614,["Shadow Priestess Shai"]=15615,["Orgrimmar Legion Grunt"]=15616,["Orgrimmar Legion Axe Thrower"]=15617,["Hive'Regal Hunter-Killer"]=15620,["Yauj Brood"]=15621,["Vekniss Borer"]=15622,["Xandivious"]=15623,["Forest Wisp"]=15624,["Twilight Corrupter"]=15625,["Eranikus the Redeemed"]=15628,["Nightmare Phantasm"]=15629,["Spawn of Fankriss"]=15630,["Spotlight"]=15631,["Tyrande"]=15633,["Priestess of the Moon"]=15634,["Eversong Tender"]=15635,["Eversong Green Keeper"]=15636,["Withered Green Keeper"]=15637,["Arcane Patroller"]=15638,["Amani Axe Thrower"]=15641,["Amani Shadowpriest"]=15642,["Amani Berserker"]=15643,["Wretched Urchin"]=15644,["Wretched Thug"]=15645,["Mana Stalker"]=15647,["Manawraith"]=15648,["Feral Dragonhawk Hatchling"]=15649,["Crazed Dragonhawk"]=15650,["Springpaw Stalker"]=15651,["Elder Springpaw"]=15652,["Plaguebone Pillager"]=15654,["Rotlimb Cannibal"]=15655,["Angershade"]=15656,["Darkwraith"]=15657,["Rotlimb Marauder"]=15658,["Auctioneer Jaxon"]=15659,["Baby Shark"]=15661,["War Effort Volunteer"]=15663,["Metzen the Reindeer"]=15664,["Mounted Reindeer"]=15665,["Blue Qiraji Battle Tank"]=15666,["Glob of Viscidus"]=15667,["Grimscale Murloc"]=15668,["Grimscale Oracle"]=15669,["Grimscale Forager"]=15670,["Auctioneer Stockton"]=15675,["Auctioneer Yarly"]=15676,["Auctioneer Graves"]=15677,["Auctioneer Silva'las"]=15678,["Auctioneer Cazarez"]=15679,["Auctioneer O'reely"]=15681,["Auctioneer Cain"]=15682,["Auctioneer Naxxremis"]=15683,["Auctioneer Tricket"]=15684,["Southsea Kidnapper"]=15685,["Auctioneer Rhyker"]=15686,["Moroes"]=15687,["Terestian Illhoof"]=15688,["Netherspite"]=15689,["Prince Malchezaar"]=15690,["The Curator"]=15691,["Dark Iron Kidnapper"]=15692,["Jonathan the Revelator"]=15693,["Stormwind Reveler"]=15694,["Vek Twins Trigger"]=15695,["War Effort Recruit"]=15696,["Father Winter's Helper"]=15698,["Tranquil Mechanical Yeti"]=15699,["Warlord Gorchuk"]=15700,["Field Marshal Snowfall"]=15701,["Senior Sergeant Taiga"]=15702,["Senior Sergeant Grimsford"]=15703,["Senior Sergeant Kai'jin"]=15704,["Winter's Little Helper"]=15705,["Winter Reindeer"]=15706,["Master Sergeant Fizzlebolt"]=15707,["Master Sergeant Maclure"]=15708,["Master Sergeant Moonshadow"]=15709,["Tiny Snowman"]=15710,["Black Qiraji Battle Tank"]=15711,["Dirt Mound"]=15712,["Yellow Qiraji Battle Tank"]=15714,["Green Qiraji Battle Tank"]=15715,["Red Qiraji Battle Tank"]=15716,["Ouro Scarab"]=15718,["Thunder Bluff Reveler"]=15719,["Timbermaw Ancestor"]=15720,["Mechanical Greench"]=15721,["Squire Leoren Mal'derath"]=15722,["Booty Bay Reveler"]=15723,["Drunken Bruiser"]=15724,["Claw Tentacle"]=15725,["Eye Tentacle"]=15726,["C'Thun"]=15727,["Giant Claw Tentacle"]=15728,["Pat's Snowcloud Guy"]=15730,["Darnassus Commendation Officer"]=15731,["Wonderform Operator"]=15732,["Gnomeregan Commendation Officer"]=15733,["Ironforge Commendation Officer"]=15734,["Stormwind Commendation Officer"]=15735,["Orgrimmar Commendation Officer"]=15736,["Darkspear Commendation Officer"]=15737,["Undercity Commendation Officer"]=15738,["Thunder Bluff Commendation Officer"]=15739,["Colossus of Zora"]=15740,["Colossus of Regal"]=15741,["Colossus of Ashi"]=15742,["Colossal Anubisath Warbringer"]=15743,["Imperial Qiraji Destroyer"]=15744,["Greatfather Winter's Helper"]=15745,["Great-father Winter's Helper"]=15746,["Qiraji Captain"]=15747,["Lesser Anubisath Warbringer"]=15748,["Lesser Silithid Flayer"]=15749,["Qiraji Major"]=15750,["Anubisath Warbringer"]=15751,["Silithid Flayer"]=15752,["Qiraji Brigadier General"]=15753,["Greater Anubisath Warbringer"]=15754,["Greater Silithid Flayer"]=15756,["Qiraji Lieutenant General"]=15757,["Supreme Anubisath Warbringer"]=15758,["Supreme Silithid Flayer"]=15759,["Winter Reveler"]=15760,["Officer Vu'Shalay"]=15761,["Officer Lunalight"]=15762,["Officer Porterhouse"]=15763,["Officer Ironbeard"]=15764,["Officer Redblade"]=15765,["Officer Maloof"]=15766,["Officer Thunderstrider"]=15767,["Officer Gothena"]=15768,["Resonating Crystal"]=15769,["Greater Resonating Crystal"]=15770,["Major Resonating Crystal"]=15771,["Mouth Tentacle Mount Visual"]=15778,["Human Male Winter Reveler"]=15780,["Human Female Winter Reveler"]=15781,["Goblin Female Winter Reveler"]=15787,["Colossus Researcher Sophia"]=15797,["Colossus Researcher Nestor"]=15798,["Colossus Researcher Eazel"]=15799,["Exit Trigger"]=15800,["GONG BOY DND DNR"]=15801,["Flesh Tentacle"]=15802,["Tranquil Air Totem"]=15803,["Lesser Resonating Crystal"]=15804,["Minor Resonating Crystal"]=15805,["Qiraji Lieutenant"]=15806,["Minor Anubisath Warbringer"]=15807,["Minor Silithid Flayer"]=15808,["Eroded Anubisath Warbringer"]=15810,["Faltering Silithid Flayer"]=15811,["Qiraji Officer"]=15812,["Qiraji Officer Zod"]=15813,["Qiraji Lieutenant Jo-rel"]=15814,["Qiraji Captain Ka'ark"]=15815,["Qiraji Major He'al-ie"]=15816,["Qiraji Brigadier General Pax-lish"]=15817,["Lieutenant General Nokhor"]=15818,["Might of Kalimdor Grunt"]=15839,["Might of Kalimdor Sergeant"]=15840,["Might of Kalimdor Lieutenant"]=15841,["Might of Kalimdor Mage"]=15842,["Might of Kalimdor Priest"]=15843,["Might of Kalimdor Restorer"]=15844,["Might of Kalimdor Captain"]=15845,["Might of Kalimdor Archer"]=15846,["Might of Kalimdor Shaman"]=15847,["Might of Kalimdor Infantry"]=15848,["Might of Kalimdor Druid"]=15849,["Might of Kalimdor Skirmisher"]=15850,["Might of Kalimdor Marshal"]=15851,["Orgrimmar Elite Shieldguard"]=15852,["Orgrimmar Elite Infantryman"]=15853,["Orgrimmar Elite Cavalryman"]=15854,["Tauren Rifleman"]=15855,["Tauren Primalist"]=15856,["Stormwind Cavalryman"]=15857,["Stormwind Infantry"]=15858,["Stormwind Archmage"]=15859,["Kaldorei Marksman"]=15860,["Ironforge Infantryman"]=15861,["Ironforge Cavalryman"]=15862,["Darkspear Shaman"]=15863,["Valadar Starsong"]=15864,["Might of Kalimdor Major"]=15865,["Commander Lynore Windstryke"]=15866,["Might of Kalimdor Archmage"]=15867,["Highlord Leoric Von Zeldig"]=15868,["Malagav the Tactician"]=15869,["Duke August Foehammer"]=15870,["Elder Bronzebeard"]=15871,["Pat's Firework Cluster Guy (BLUE)"]=15872,["Pat's Firework Cluster Guy (RED)"]=15873,["Pat's Firework Cluster Guy (GREEN)"]=15874,["Warcaller Finster"]=15878,["Pat's Firework Guy - BLUE"]=15879,["Pat's Firework Guy - GREEN"]=15880,["Pat's Firework Guy - RED"]=15882,["Pat's Firework Guy - YELLOW"]=15883,["Pat's Firework Guy - WHITE"]=15884,["Pat's Firework Guy - BLUE BIG"]=15885,["Pat's Firework Guy - GREEN BIG"]=15886,["Pat's Firework Guy - PURPLE BIG"]=15887,["Pat's Firework Guy - RED BIG"]=15888,["Pat's Firework Guy - WHITE BIG"]=15889,["Pat's Firework Guy - YELLOW BIG"]=15890,["Lunar Festival Herald"]=15891,["Lunar Festival Emissary"]=15892,["Lunar Firework Credit Marker"]=15893,["Lunar Cluster Credit Marker"]=15894,["Lunar Festival Harbinger"]=15895,["C'Thun Portal"]=15896,["Large Spotlight"]=15897,["Lunar Festival Vendor"]=15898,["Vanquished Tentacle"]=15901,["Giant Spotlight"]=15902,["Sergeant Carnes"]=15903,["Tentacle Portal"]=15904,["Darnassus Reveler"]=15905,["Ironforge Reveler"]=15906,["Undercity Reveler"]=15907,["Orgrimmar Reveler"]=15908,["Fariel Starsong"]=15909,["Giant Tentacle Portal"]=15910,["Pat's Firework Cluster Guy (BLUE BIG)"]=15911,["Pat's Firework Cluster Guy (GREEN BIG)"]=15912,["Pat's Firework Cluster Guy (RED BIG)"]=15914,["Lunar Festival Reveler"]=15917,["Pat's Firework Cluster Guy (ELUNE)"]=15918,["Jade Owl"]=15919,["Hathvelion Sungaze"]=15920,["Captain Kelisendra"]=15921,["Golden Hare"]=15923,["Apprentice Loralthalis"]=15924,["Toxic Slime"]=15925,["Black Pearl Panther"]=15926,["Truesilver Crab"]=15927,["Thaddius"]=15928,["Stalagg"]=15929,["Feugen"]=15930,["Grobbulus"]=15931,["Gluth"]=15932,["Poison Cloud"]=15933,["Hive'Zara Hornet"]=15934,["Truesilver Boar"]=15935,["Heigan the Unclean"]=15936,["Mmmrrrggglll"]=15937,["Eversong Ranger"]=15938,["Ranger Degolien"]=15939,["Ranger Selron"]=15940,["Apprentice Ralen"]=15941,["Ranger Sareyn"]=15942,["Ruby Serpent"]=15944,["Apprentice Meledor"]=15945,["Apprentice Veya"]=15946,["Emerald Owl"]=15948,["Thaelis the Hungerer"]=15949,["Grimscale Seer"]=15950,["Magister Duskwither"]=15951,["Maexxna"]=15952,["Grand Widow Faerlina"]=15953,["Noth the Plaguebringer"]=15954,["Black Diamond Crab"]=15955,["Anub'Rekhan"]=15956,["Ouro Spawner"]=15957,["Gharsul the Remorseless"]=15958,["Dark Iron Scorpid"]=15959,["Lunar Festival Sentinel"]=15961,["Vekniss Hatchling"]=15962,["The Master's Eye"]=15963,["Buru Egg Trigger"]=15964,["Duskwither Apprentice"]=15965,["Mana Serpent"]=15966,["Ether Fiend"]=15967,["Darnassian Scout"]=15968,["Groundskeeper Wyllithen"]=15969,["Instructor Antheol"]=15970,["Silvermoon Apprentice"]=15971,["Alterac Valley Battlemaster"]=15972,["Dread Creeper"]=15974,["Carrion Spinner"]=15975,["Venom Stalker"]=15976,["Poisonous Skitterer"]=15977,["Crypt Reaver"]=15978,["Tomb Horror"]=15979,["Naxxramas Cultist"]=15980,["Naxxramas Acolyte"]=15981,["Sartura's Royal Guard"]=15984,["Sapphiron"]=15989,["Kel'Thuzad"]=15990,["Lady Dena Kennedy"]=15991,["Aldris Fourclouds"]=16001,["Colara Dean"]=16002,["Deathguard Tor"]=16003,["Elenia Haydon"]=16004,["Lieutenant Jocryn Heldric"]=16005,["InCombat Trigger"]=16006,["Orok Deathbane"]=16007,["Temma of the Wells"]=16008,["Tormek Stoneriver"]=16009,["Loatheb"]=16011,["Mokvar"]=16012,["Deliana"]=16013,["Mux Manascrambler"]=16014,["Vi'el"]=16015,["Anthion Harmon"]=16016,["Patchwork Golem"]=16017,["Bile Retcher"]=16018,["Boorana Thunderhoof"]=16019,["Mad Scientist"]=16020,["Living Monstrosity"]=16021,["Surgical Assistant"]=16022,["Embalming Slime"]=16024,["Stitched Giant"]=16025,["Living Poison"]=16027,["Patchwerk"]=16028,["Sludge Belcher"]=16029,["Maggot"]=16030,["Ysida Harmon"]=16031,["Falrin Treeshaper"]=16032,["Bodley"]=16033,["Plague Beast"]=16034,["Frenzied Bat"]=16036,["Plagued Bat"]=16037,["Lord Valthalak"]=16042,["Magma Lord Bokk"]=16043,["Mor Grayhoof Trigger"]=16044,["Isalien Trigger"]=16045,["Jarien and Sothos Trigger"]=16046,["Kormok Trigger"]=16047,["Lord Valthalak Trigger"]=16048,["Lefty"]=16049,["Rotfang"]=16050,["Snokh Blackspine"]=16051,["Malgen Longspear"]=16052,["Korv"]=16053,["Rezznik"]=16054,["Va'jashni"]=16055,["Diseased Maggot"]=16056,["Rotting Maggot"]=16057,["Volida"]=16058,["Theldren"]=16059,["Gothik the Harvester"]=16060,["Instructor Razuvious"]=16061,["Highlord Mograine"]=16062,["Sir Zeliek"]=16063,["Thane Korth'azz"]=16064,["Lady Blaumeux"]=16065,["Spectral Assassin"]=16066,["Deathcharger Steed"]=16067,["Larva"]=16068,["Gurky"]=16069,["Garel Redrock"]=16070,["Tidelord Rrurgaz"]=16072,["Spirit of Lord Valthalak"]=16073,["Kwee Q. Peddlefeet"]=16075,["Tharl Stonebleeder"]=16076,["Unkillable Fixed Damage Test Dummy"]=16078,["Theldren Trigger"]=16079,["Mor Grayhoof"]=16080,["Naxxramas Trigger"]=16082,["Peddlefeet"]=16085,["Omar the Test Dragon"]=16089,["Rousch"]=16090,["Dirk Thunderwood"]=16091,["Silithis Teleporter"]=16092,["Spectral Stalker"]=16093,["Durik"]=16094,["Gnashjaw"]=16095,["Steamwheedle Bruiser"]=16096,["Isalien"]=16097,["Empyrean"]=16098,["Ysida's Trigger"]=16100,["Jarien"]=16101,["Sothos"]=16102,["Spirit of Jarien"]=16103,["Spirit of Sothos"]=16104,["Aristan Mottar"]=16105,["Evert Sorisam"]=16106,["Apothecary Staffron Lerent"]=16107,["Fenstad Argyle"]=16108,["Mara Rennick"]=16109,["Annalise Lerent"]=16110,["Love Fool"]=16111,["Crusade Commander Korfax"]=16112,["Father Inigo Montoy"]=16113,["Scarlet Commander Marjhan"]=16114,["Crusade Commander Eligor Dawnbringer"]=16115,["Archmage Angela Dosantos"]=16116,["Plagued Swine"]=16117,["Kormok"]=16118,["Bone Minion"]=16119,["Bone Mage"]=16120,["Mortar"]=16121,["Gremnik Rizzlesprang"]=16123,["Unrelenting Trainee"]=16124,["Unrelenting Death Knight"]=16125,["Unrelenting Rider"]=16126,["Spectral Trainee"]=16127,["Rhonin"]=16128,["Shadow Fissure"]=16129,["Rohan the Assassin"]=16131,["Huntsman Leopold"]=16132,["Mataus the Wrathcaster"]=16133,["Rimblat Earthshatter"]=16134,["Rayne"]=16135,["Necrotic Shard"]=16136,["Naxxramas Military Sub-Boss Trigger"]=16137,["Cenarion Hold Reservist"]=16139,["Ghoul Berserker"]=16141,["Bile Sludge"]=16142,["Shadow of Doom"]=16143,["Lord Saltheril"]=16144,["Death Knight Captain"]=16145,["Death Knight"]=16146,["Elisara Sunstriker"]=16147,["Spectral Death Knight"]=16148,["Spectral Horse"]=16149,["Spectral Rider"]=16150,["Midnight"]=16151,["Attumen the Huntsman"]=16152,["Berthold"]=16153,["Risen Squire"]=16154,["Dark Touched Warrior"]=16156,["Doom Touched Warrior"]=16157,["Death Touched Warrior"]=16158,["Calliard"]=16159,["Magistrix Eredania"]=16160,["Arcanist Sheynathren"]=16161,["Wretched Hooligan"]=16162,["Death Knight Cavalier"]=16163,["Shade of Naxxramas"]=16164,["Necro Knight"]=16165,["Theldren Kill Credit"]=16166,["Bony Construct"]=16167,["Stoneskin Gargoyle"]=16168,["Hastings"]=16169,["Coldmist Stalker"]=16170,["Coldmist Widow"]=16171,["Damaged Necrotic Shard"]=16172,["Shadowbat"]=16173,["Greater Shadowbat"]=16174,["Vampiric Shadowbat"]=16175,["Shadowbeast"]=16176,["Dreadbeast"]=16177,["Phase Hound"]=16178,["Hyakiss the Lurker"]=16179,["Shadikith the Glider"]=16180,["Rokad the Ravager"]=16181,["Courier Dawnstrider"]=16183,["Nerubian Overseer"]=16184,["Anathos"]=16185,["Vara"]=16186,["Quartermaster Lymel"]=16187,["Skymaster Sunwing"]=16189,["Sathren Azuredawn"]=16191,["Skymistress Gloaming"]=16192,["Skeletal Smith"]=16193,["Unholy Axe"]=16194,["Apothecary Thedra"]=16196,["Arcanist Vandril"]=16197,["Apothecary Renzithen"]=16198,["Magister Darenis"]=16199,["Deathstalker Rathiel"]=16200,["Geranis Whitemorn"]=16201,["Farstrider Sedina"]=16202,["Ranger Vynna"]=16203,["Magister Idonis"]=16204,["Magistrix Aminel"]=16205,["Apprentice Varnis"]=16206,["Apothecary Enith"]=16208,["Ranger Vedoran"]=16209,["Magistrix Landra Dawnstrider"]=16210,["Naxxramas Combat Dummy"]=16211,["Dispatch Commander Metz"]=16212,["Ranger Lethvalin"]=16213,["Unholy Staff"]=16215,["Unholy Swords"]=16216,["Lieutenant Tomathren"]=16217,["Tesla Coil"]=16218,["Ranger Valanna"]=16219,["Captain Helios"]=16220,["Silvermoon Guardian"]=16221,["Silvermoon City Guardian"]=16222,["Rathis Tomber"]=16224,["Pack Mule"]=16225,["Guard Didier"]=16226,["Bragok"]=16227,["Argent Dawn Infantry"]=16228,["Injured Argent Dawn Infantry"]=16229,["Cultist Engineer"]=16230,["Dame Auriferous"]=16231,["Caravan Mule"]=16232,["Eye Stalk"]=16236,["Magister Sylastor"]=16237,["Night Elf Ambusher"]=16238,["Magister Kaendris"]=16239,["Arcanist Janeda"]=16240,["Argent Recruiter"]=16241,["Tranquillien Scout"]=16242,["Plague Slime"]=16243,["Infectious Ghoul"]=16244,["Luzran"]=16245,["Knucklerot"]=16246,["Borgoth the Bloodletter"]=16247,["Jurion the Deceiver"]=16248,["Masophet the Black"]=16249,["Mirdoran the Fallen"]=16250,["Deathstalker Maltendis"]=16251,["High Executor Mavren"]=16252,["Master Chef Mouldier"]=16253,["Field Marshal Chambers"]=16254,["Argent Scout"]=16255,["Jessica Chambers"]=16256,["Geron"]=16257,["Farsil"]=16258,["Sheri"]=16259,["Areyn"]=16260,["Sathiel"]=16261,["Landraelanis"]=16262,["Paelarin"]=16263,["Winaestra"]=16264,["Celoenus"]=16266,["Daestra"]=16267,["Eralan"]=16268,["Garridel"]=16269,["Hannovia"]=16270,["Telenus"]=16271,["Kanaria"]=16272,["Mathreyn"]=16273,["Narina"]=16274,["Noellene"]=16275,["Ponaris"]=16276,["Quarelestra"]=16277,["Sathein"]=16278,["Tannaria"]=16279,["Perascamin"]=16280,["Keeper of the Rolls"]=16281,["Packmaster Stonebruiser"]=16283,["Argent Medic"]=16284,["Argent Emissary"]=16285,["Spore"]=16286,["Ambassador Sunsorrow"]=16287,["Advisor Sorrelon"]=16288,["Advisor Valwyn"]=16289,["Irradiated Slime"]=16290,["Magister Quallestis"]=16291,["Aquantion"]=16292,["Apprentice Shatharia"]=16293,["Aldaron the Reckless"]=16294,["Ranger Lilatha"]=16295,["Mutated Grub"]=16297,["Spectral Soldier"]=16298,["Skeletal Shocktrooper"]=16299,["Risen Creeper"]=16300,["Risen Hungerer"]=16301,["Risen Stalker"]=16302,["Dreadbone Skeleton"]=16303,["Arcane Devourer"]=16304,["Dreadbone Sentinel"]=16305,["Scourge Invasion Minion spawner Ghost/Ghoul"]=16306,["Deathcage Scryer"]=16307,["Deathcage Sorcerer"]=16308,["Gangled Cannibal"]=16309,["Mana Shifter"]=16310,["Phantasmal Watcher"]=16311,["Nerubis Guard"]=16313,["Fallen Ranger"]=16314,["Deatholme Acolyte"]=16315,["Stonewing Tracker"]=16316,["Deatholme Necromancer"]=16317,["Deatholme Darkmage"]=16318,["Nerubis Centurion"]=16319,["Eye of Dar'Khan"]=16320,["Wailer"]=16321,["Gangled Flesheater"]=16322,["Phantasmal Seeker"]=16323,["Stonewing Slayer"]=16324,["Quel'dorei Ghost"]=16325,["Quel'dorei Wraith"]=16326,["Ravening Apparition"]=16327,["Vengeful Apparition"]=16328,["Dar'Khan Drathir"]=16329,["Sentinel Spy"]=16330,["Stone Guard Zarg"]=12794,["G'eras"]=18525,["Gruul the Dragonkiller"]=19044,["Prince Malchezaar"]=15690,["First Sergeant Hola'mahi"]=12795,["Lieutenant Jackspring"]=12784,["High King Maulgar"]=18831,["Sergeant Major Clate"]=12785,["Nightbane"]=17225,["Illidan Stormrage"]=22917,["Magtheridon"]=17257,["Warlord Kalithresh"]=17798,["Lady Palanseer"]=12792,["Doomwalker"]=17711,["Almaador"]=21432,["Neal Allen"]=1448,["Warchief Kargath Bladefist"]=16808,["Quagmirran"]=17942,["Plagued Swine"]=16117,["Fedryen Swiftspear"]=17904,["Moroes"]=15687,["Donova Snowden"]=9298,["Captain Dirgehammer"]=12777,["Murmur"]=18708,["Pathaleon the Calculator"]=19220,["Doom Lord Kazzak"]=18728,["Quartermaster Enuril"]=19331,["Ravager Specimen"]=17199,["Alurmi"]=21643,["Netherspite"]=15689,["Nakodu"]=21655,["Enraged Ravager"]=17527,["Attumen the Huntsman"]=16152,["Mythrin'dir"]=4229,["Rip-Blade Ravager"]=22123,["Keli'dan the Breaker"]=17377,["Aeonus"]=17881,["Kael'thas Sunstrider"]=19622,["Nat Pagle"]=12919,["Epoch Hunter"]=18096,["Quartermaster Endarin"]=19321,["High Chief Winterfall"]=10738,["Talon King Ikiss"]=18473,["Omor the Unscarred"]=17308,["Warp Splinter"]=17977,["Kil'jaeden"]=25315,["Daniel Bartlett"]=4561,["The Curator"]=15691,["Watchkeeper Gargolmar"]=17306,["Tydormu"]=23381,["Jandia"]=4877,["Logistics Officer Ulrike"]=17657,["Shade of Aran"]=16524,["Rokad the Ravager"]=16181,["Terestian Illhoof"]=15688,["Old Man Heming"]=2626,["Lorelae Wintersong"]=12022,["Quartermaster Urgronn"]=17585,["Maiden of Virtue"]=16457,["Lady Vashj"]=21212,["Felguard"]=17252,["Drolig Blastpipe"]=27722,["Fel Reaver"]=18733,["The Maker"]=17381,["Drake Dealer Hurlunk"]=23489,["Angered Nether-wraith"]=17870,["Barnes"]=16812,["Mennu the Betrayer"]=17941,["Harbinger Skyriss"]=20912,["Broggok"]=17380,["Kam Deepfury"]=1666,["Rungor"]=18960,["The Black Stalker"]=17882,["Anzu"]=23035,["Exarch Maladaar"]=18373,["Karaaz"]=20242,["Brave Stonehide"]=12793,["Kelm Hargunth"]=14754,["Pandemonius"]=18341,["Archimonde"]=17968,["Vazruden"]=17537,["Illiyana Moonblaze"]=14753,["Master Sergeant Biggins"]=12781,["Grand Warlock Nethekurse"]=16807,["Rhahk'Zor"]=644,["Provisioner Nasela"]=20241,["Rethilgore"]=3914,["Farii"]=19778,["Mycah"]=18382,["Yor"]=22930,["Iorioa"]=20791,["Smith Gorlunk"]=22037,["Blackheart the Inciter"]=18667,["Shirrak the Dead Watcher"]=18371,["Mordenai"]=22113,["Sergeant Thunderhorn"]=14581,["Ghaz'an"]=18105,["Razorfang Hatchling"]=16932,["Baelog"]=6906,["Aggem Thorncurse"]=4424,["Gikkix"]=8137,["Terokk"]=21838,["Trader Narasu"]=20240,["Lebowski"]=18775,["Hama"]=18772,["Harbinger Mikolaas"]=17423,["Jekyll Flandring"]=13219,["Void Reaver"]=19516,["Ambassador Hellmaw"]=18731,["Nexus-Prince Shaffar"]=18344,["Haris Pilton"]=18756,["Al'ar"]=19514,["Lady Anacondra"]=3671,["Dalliah the Doomsayer"]=20885,["Simon Unit"]=23385,["Olrokk"]=20500,["Sapphiron"]=15989,["Gidge Spellweaver"]=22213,["Thanthaldis Snowgleam"]=13217,["Thorkaf Dragoneye"]=7867,["Ilsa Blusterbrew"]=20511,["Lauranna Thar'well"]=17909,["Captain O'Neal"]=12782,["Magistrate Barthilas"]=10435,["Gaelden Hammersmith"]=13216,["Kalinda"]=19775,["The Lurker Below"]=21217,["Lorokeem"]=19052,["Arcanist Doan"]=6487,["Zul'jin"]=23863,["Nasmara Moonsong"]=22208,["Burko"]=18990,["Juno Dufrain"]=18911,["Kelek Skykeeper"]=10920,["High Inquisitor Whitemane"]=3977,["Asuur"]=20616,["Quillfang Skitterer"]=19189,["Inscriber Saalyn"]=20807,["Hungarfen"]=17770,["Leotheras the Blind"]=21215,["The Big Bad Wolf"]=17521,["Avatar of the Martyred"]=18478,["Sal'salabim"]=18584,["Kael'thas Sunstrider"]=24664,["Dalria"]=3954,["Khadgar"]=18166,["Ontok Shatterhorn"]=27668,["Galgrom"]=20080,["Tavarok"]=18343,["Rutherford Twing"]=15126,["High Astromancer Solarian"]=18805,["Durn the Hungerer"]=18411,["Force Commander Danath Trollbane"]=16819,["Magmus"]=9938,["Temporus"]=17880,["Andrion Darkspinner"]=22212,["High Botanist Freywinn"]=17975,["Attumen the Huntsman"]=15550,["Dalinna"]=18749,["Nula the Butcher"]=20097,["High Enchanter Bardolan"]=19252,["Scarlet Commander Mograine"]=3976,["Vodesiin"]=19004,["Teron Gorefiend"]=22871,["Dreadfang Widow"]=18467,["Samuel Hawke"]=15127,["Hydross the Unstable"]=21216,["Kel'Thuzad"]=15990,["Edwin VanCleef"]=639,["Highlord Kruul"]=18338,["Interrogator Vishas"]=3983,["Aleinia"]=15501,["Knucklerot"]=16246,["Nathanos Blightcaller"]=11878,["Shattered Hand Executioner"]=17301,["Micha Yance"]=2381,["Kulwia"]=12043,["Isalien"]=16097,["Raider Bork"]=12796,["The Crone"]=18168,["Johan Barnes"]=18773,["Alchemist Gribble"]=18802,["David Wayne"]=21465,["Felannia"]=18753,["Incandescent Fel Spark"]=22323,["Agent Proudwell"]=19942,["Invading Felguard"]=19284,["Qia"]=11189,["Anetheron"]=17808,["M'uru"]=25741,["Quillfang Ravager"]=16934,["Darkweaver Syth"]=18472,["Hyakiss the Lurker"]=16179,["Eldara Dawnrunner"]=25032,["Peter Galen"]=7866,["Brutallus"]=24882,["Morogrim Tidewalker"]=21213,["Battle Chicken"]=8836,["Rokmar the Crackler"]=17991,["Lieutenant Karter"]=12783,["Hammon Karwn"]=2810,["Lord Serpentis"]=3673,["Swamplord Musel'ek"]=17826,["Uriku"]=20096,["Kradu Grimblade"]=20124,["Winterfall Totemic"]=7441,["Archmage Arugal"]=4275,["Derotain Mudsipper"]=14567,["Eiin"]=19213,["Sneed's Shredder"]=642,["Lord Pythas"]=3670,["Aaron Hollman"]=19662,["Herod"]=3975,["Scalewing Serpent"]=20749,["Mekgineer Steamrigger"]=17796,["Mother Shahraz"]=22947,["Princess Theradras"]=12201,["Bash'ir Spell-Thief"]=22242,["Grunnda Wolfheart"]=13218,["Magistrix Fyalenn"]=18531,["Fathom-Lord Karathress"]=21214,["Deneb Walker"]=2805,["Kalaen"]=18751,["Warbringer O'mrogg"]=16809,["Charlga Razorflank"]=4421,["Chief Engineer Lorthander"]=18697,["High Inquisitor Fairbanks"]=4542,["Vixton Pinchwhistle"]=20278,["Archaedas"]=2748,["Apothecary Antonivich"]=16588,["Arazzius the Cruel"]=19191,["Archmage Alturus"]=17613,["Tatiana"]=18774,["Julianne"]=17534,["Ashmane Boar"]=5992,["Zebig"]=18752,["Hemet Nesingwary"]=18180,["Sunfury Researcher"]=20136,["Twilight Serpent"]=23026,["Hamanar"]=19063,["Madame Ruby"]=19663,["Oronok Torn-heart"]=21183,["Ysuria"]=27703,["Bloodmaul Geomancer"]=19952,["Daga Ramba"]=19837,["Kildar"]=4752,["Tabetha"]=6546,["Kresh"]=3653,["Nazan"]=17536,["Caza'rez"]=17558,["Unliving Resident"]=12380,["Felmyst"]=25038,["Supremus"]=22898,["Brunn Flamebeard"]=20510,["Coren Direbrew"]=23872,["Warbringer Arix'Amal"]=19298,["Azgalor"]=17842,["Grandmaster Vorpil"]=18732,["Olaf"]=6908,["Enraged Fire Spirit"]=21061,["King Bangalash"]=731,["Sunfury Bloodwarder"]=18853,["Emperor Dagran Thaurissan"]=9019,["Mechano-Lord Capacitus"]=19219,["Onyxia"]=10184,["Bloodmage Thalnos"]=4543,["The Rokk"]=24393,["Nethermancer Sepethrea"]=19221,["Adyen the Lightwarden"]=18537,["Humar the Pridelord"]=5828,["Thornfang Ravager"]=19349,["Sarah Tanner"]=7868,["Storming Wind-Ripper"]=22310,["Baron Rivendare"]=10440,["Dirge Quikcleave"]=8125,["Mack Diver"]=17637,["Razorfang Ravager"]=16933,["Searing Elemental"]=20514,["Shadow Council Warlock"]=21302,["Gurtogg Bloodboil"]=22948,["Mekgineer Thermaplugg"]=7800,["Mutanus the Devourer"]=3654,["Wrath-Scryer Soccothrates"]=20886,["Kael'thas Sunstrider"]=23054,["Rohok"]=16583,["Hydromancer Thespia"]=17797,["Borgus Steelhand"]=7232,["Ythyar"]=17518,["Kalecgos"]=24850,["Quartermaster Zigris"]=9736,["Rage Winterchill"]=17767,["Shadikith the Glider"]=16180,["Blood Elf Bandit"]=17591,["Brumn Winterhoof"]=7869,["Image of Nexus-Prince Haramad"]=20084,["Lilith the Lithe"]=11191,["Mana Seeker"]=18867,["Nether Drake"]=18877,["Overlord Ramtusk"]=4420,["Scarlet Spellbinder"]=4494,["Thurman Mullby"]=1285,["Celebras the Cursed"]=12225,["Romulo"]=17533,["Azuregos"]=6109,["Borgosh Corebender"]=11178,["Enraged Air Spirit"]=21060,["Griftah"]=19227,["Gutripper"]=18257,["Lieutenant Drake"]=17848,["Midnight"]=16151,["Balai Lok'Wein"]=13476,["Skreah"]=19074,["Ambassador Jerrikar"]=18695,["Arrond"]=19521,["Handiir"]=16773,["Gezzarak the Huntress"]=23163,["Shandrina"]=3955,["Alzzin the Wildshaper"]=11492,["Innkeeper Biribi"]=19296,["Mor'zul Bloodbringer"]=14436,["Wind Trader Lathrai"]=18484,["Caryssia Moonhunter"]=7870,["Echo of Medivh"]=16816,["Eredar Deathbringer"]=20880,["Houndmaster Loksey"]=3974,["Raging Fire-Soul"]=22311,["Spirit Sage Gartok"]=19772,["Talonsworn Forest-Rager"]=23029,["Veynna Dawnstar"]=21905,["Chrono Lord Deja"]=17879,["Priestess Delrissa"]=24560,["Medivh"]=15608,["Mishta"]=15179,["Rorelien"]=18776,["Theremis"]=25976,["Chief Ukorz Sandscalp"]=7267,["Warder Stilgiss"]=9041,["Apprentice Darius"]=18255,["Arthorn Windsong"]=22924,["Hurnak Grimmord"]=18779,["Kireena"]=9636,["Paulsta'ats"]=23007,["Rin'wosho the Trader"]=14921,["Shade of Eranikus"]=5709,["Agathelos the Raging"]=4422,["Amnennar the Coldbringer"]=7358,["Bazzalan"]=11519,["Kelara"]=21906,["Nazgrel"]=3230,["Vivianna"]=7947,["Verdan the Everliving"]=5775,["War Master Voone"]=9237,["A'dal"]=18481,["Aalun"]=20914,["Jho'nass"]=23428,["Kylene"]=19186,["Lelanai"]=4730,["Roogug"]=6168,["Winterspring Screecher"]=7456,["Dama Wildmane"]=20494,["Haalrun"]=18005,["Krugosh"]=18747,["Mageslayer"]=18866,["Mildred Fletcher"]=19184,["Old Man Barlo"]=25580,["Scarlet Archmage"]=9451,["Trak'gen"]=3313,["Warchief Rend Blackhand"]=10429,["Gahz'rilla"]=7273,["General Angerforge"]=9033,["Lord Roccor"]=9025,["Lord Vyletongue"]=12236,["Ghamoo-ra"]=4887,["Helenia Olden"]=4897,["Innkeeper Haelthol"]=19232,["K. Lee Smallfry"]=17634,["Kania"]=15419,["Kelsey Yance"]=2664,["Murkblood Raider"]=18203,["Se'Jib"]=7871,["Sneed"]=643,["Unliving Caretaker"]=12379,["Ysiel Windsinger"]=17841,["Commander Springvale"]=4278,["Fenrus the Devourer"]=4274,["Laj"]=17980,["Odo the Blindwatcher"]=4279,["Razorlash"]=12258,["Theka the Martyr"]=7272,["Broken Tooth"]=2850,["Harbinger Skyriss"]=21466,["Keelen Sheets"]=16640,["Wailing Spectre"]=12377,["Baron Silverlaine"]=3887,["Dorothee"]=17535,["Entropius"]=25840,["Arthur the Faithful"]=5491,["Damned Soul"]=12378,["Edna Mullby"]=1286,["General Drakkisath"]=10363,["Grella"]=23367,["Master Pyreanor"]=23128,["Captain Skarloc"]=17862,["Hex Lord Malacrass"]=24239,["High Warlord Naj'entus"]=22887,["Kaz'rogal"]=17888,["Shadowpriest Sezz'ziz"]=7275,["Vexallus"]=24744,["Aku'mai"]=4829,["Gan'arg Analyzer"]=23386,["Imp"]=416,["Nether-Stalker Khay'ji"]=19880,["Overseer Nuaar"]=21981,["Pyroguard Emberseer"]=9816,["Randal Hunter"]=4732,["Sid Limbardi"]=16826,["Twilight Lord Kelris"]=4832,["Razorclaw the Butcher"]=3886,["Wolf Master Nandos"]=3927,["Zereketh the Unbound"]=20870,["Farseer Nobundo"]=17204,["Frostsaber Stalker"]=7432,["Lady Sarevess"]=4831,["Nixx Sprocketspring"]=8126,["High Interrogator Gerstahn"]=9018,["Nutral"]=18940,["Ruul the Darkener"]=21315,["Spirit Sage Zran"]=19773,["Archivist Galford"]=10811,["Golem Lord Argelmach"]=8983,["Houndmaster Grebmar"]=9319,["Betina Bigglezink"]=11035,["Bloodaxe Worg"]=9696,["Doba"]=20028,["Ethereum Jailor"]=23008,["Gilnid"]=1763,["Ironus Coldsteel"]=11146,["Lantresor of the Blade"]=18261,["Nethermine Ravager"]=23326,["Voren'thal the Seer"]=18530,["Anub'shiah"]=9031,["Avatar of Hakkar"]=8443,["Captain Greenskin"]=647,["Commander Ameer"]=20448,["Gul'dan"]=17008,["Jelena Nightsky"]=18777,["Kirtonos the Herald"]=10506,["Rema"]=21956,["Warp Stalker"]=18464,["Xerintha Ravenoak"]=20916,["Balnazzar"]=10813,["Ancient Shadowmoon Spirit"]=21797,["Cho'war the Pillager"]=18423,["Gambarinka"]=18015,["Lesser Nether Drake"]=21004,["Lorrin Foxfire"]=27705,["Netherock"]=20772,["The Beast"]=10430,["Andormu"]=20130,["Arred"]=17512,["Big Zokk Torquewrench"]=26352,["Demon Hunter Initiate"]=21180,["Drelik Blastpipe"]=27721,["Dugiru"]=20604,["Fahssn"]=17923,["Mari Stonehand"]=19373,["Restless Shade"]=7370,["Yrma"]=25977,["Zarevhi"]=22427,["Bael'Gar"]=9016,["C'Thun"]=15727,["Rotgrip"]=13596,["Ashtongue Warrior"]=21454,["Bernie Heisten"]=3546,["Devilsaur"]=6498,["Gurgthock"]=18471,["Vilebranch Raiding Wolf"]=2681,["Wild Elekk"]=18334,["Baroness Anastari"]=10436,["Lady Sacrolash"]=25165,["Noxxion"]=13282,["Brokentoe"]=18398,["Clefthoof Bull"]=17132,["Dreadfang Lurker"]=18466,["Felsworn Scalewing"]=21123,["Inscriber Veredis"]=20808,["Nether Dragon"]=20332,["Professor Thaddeus Paleo"]=14847,["Techbot"]=6231,["The Illidari Council"]=23426,["Zaxxis Raider"]=18875,["Commander Sarannis"]=17976,["Tinkerer Gizlock"]=13601,["Witch Doctor Zum'rah"]=7271,["Bellygrub"]=345,["Malygen"]=2803,["Mana Wraith"]=18864,["Narina"]=16274,["Old Serra'kis"]=4830,["Perascamin"]=16280,["Provisioner Vredigar"]=16528,["Refik"]=16729,["Yuula"]=23449,["Lord Kri"]=15511,["Nefarian"]=11583,["Altruis the Sufferer"]=18417,["Aresella"]=18991,["Auction House"]=91914,["Dimensius the All-Devouring"]=19554,["Doctor Gustaf VanHowzen"]=12939,["Dust Devil"]=832,["Ghostrider of Karabor"]=21784,["Jabbey"]=8139,["Kelgruk Bloodaxe"]=7231,["Mordresh Fire Eye"]=7357,["Nerrist"]=1148,["Teremus the Devourer"]=7846,["Fankriss the Unyielding"]=15510,["Grand Warlock Alythess"]=25166,["Landslide"]=12203,["Anachronos"]=15192,["Bach'lor"]=18258,["Champion Bachi"]=16681,["Enraged Earth Spirit"]=21050,["Grikkin Copperspring"]=25176,["Kiggler the Crazed"]=18835,["Land Rager"]=5465,["Shimmerscale Eel"]=18750,["Thornfang Venomspitter"]=19350,["Crowd Pummeler 9-60"]=6229,["High Nethermancer Zerevor"]=22950,["Ragnaros"]=11502,["Thorngrin the Tender"]=17978,["Arodis Sunblade"]=20613,["Cookie"]=645,["Death Speaker Jargba"]=4428,["Haggard War Veteran"]=19684,["Jonathan Garrett"]=25099,["Qiff"]=19575,["High Priest Thekal"]=14509,["Hydromancer Velratha"]=7795,["Lord Cobrahn"]=3669,["Moam"]=15340,["Overlord Wyrmthalak"]=9568,["Brogg"]=23579,["Coilskar Cobra"]=19784,["Ghost Saber"]=3619,["Goc"]=20555,["Helboar"]=5993,["Ileda"]=16621,["Jase Farlane"]=12941,["Krosh Firehand"]=18832,["Masophet the Black"]=16249,["Melaris"]=16641,["Mirren Longbeard"]=16851,["Mo'arg Weaponsmith"]=19755,["Mr. Smite"]=646,["Quartermaster Miranda Breechlock"]=11536,["Skettis Surger"]=21728,["Warden Moi'bff Jill"]=18408,["Watcher Jhang"]=17884,["Electrocutioner 6000"]=6235,["Gorosh the Dervish"]=9027,["Grizzle"]=9028,["Hedrum the Creeper"]=9032,["Roar"]=17546,["Arcanist Adyria"]=18596,["Auchenai Monk"]=18497,["Bloodtalon Scythemaw"]=3123,["Bog Lord"]=18127,["Boulderfist Warrior"]=17136,["Gelanthis"]=16624,["Gyth"]=10339,["Mok'rash"]=1493,["Sahaak"]=23363,["Stonelash Flayer"]=11737,["Taragaman the Hungerer"]=11520,["Thomas Yance"]=18672,["Warden Bullrok"]=18407,["Winterfall Runner"]=10916,["Timmy the Cruel"]=10808,["Alliance Field Scout"]=18581,["Anwehu"]=27667,["Cookie One-Eye"]=16585,["Denatharion"]=4218,["Gelihast"]=6243,["Keena"]=2821,["Krathok Moltenfist"]=11176,["Kuz"]=3436,["Lady Illucia Barov"]=10502,["Niobe Whizzlespark"]=24868,["Noellene"]=16275,["Swiftwing Shredder"]=20673,["Torallius the Pack Handler"]=17584,["Lord Incendius"]=9017,["Obsidian Sentinel"]=7023,["Ossirian the Unscarred"]=15339,["Revelosh"]=6910,["Skum"]=3674,["Alamma"]=16646,["Altaa"]=16705,["Leeli Longhaggle"]=19042,["Lucan Cordell"]=1317,["Officer Areyn"]=12805,["Speaker Mar'grom"]=18693,["Talbuk Thorngrazer"]=17131,["Vazruden the Herald"]=17307,["Vhel'kur"]=21801,["Zurai"]=18011,["Akil'zon"]=23574,["Antu'sul"]=8127,["Blood Guard Porung"]=20923,["Galgann Firehammer"]=7291,["Grimlok"]=4854,["Hurley Blackbreath"]=9537,["Apex"]=19940,["Arnold Leland"]=5493,["Brumman"]=18771,["Crazed Murkblood Miner"]=23324,["Darkmaster Gandling"]=1853,["Gaston"]=18987,["Hermit Ortell"]=15194,["Overlord Mor'ghor"]=23139,["Sian-Rotam"]=10741,["Supply Officer Mills"]=19038,["Wretched Skulker"]=24688,["Yatheon"]=16782,["Digmaster Shovelphlange"]=7057,["Grubbis"]=7361,["Plugger Spazzring"]=9499,["Ramstein the Gorger"]=10439,["Atal'alarion"]=8580,["Bonestripper Vulture"]=16973,["Dealer Najeeb"]=20981,["Dire Raven"]=21042,["Georgio Bolero"]=1346,["Glordrum Steelbeard"]=12197,["Highlord Taelan Fordring"]=1842,["Ironjaw"]=18670,["Koren"]=16388,["Lokhtos Darkbargainer"]=12944,["Magus Zabraxis"]=16829,["Master Chef Mouldier"]=16253,["Monstrous Kaliri"]=23051,["Mountain Gronn"]=19201,["Reth'hedron the Subduer"]=22357,["Rok'Alim the Pounder"]=4499,["Scorchshell Pincer"]=21864,["Taerar"]=14890,["Tharynn Bouden"]=66,["Training Dummy"]=17578,["Trigger Guse"]=14026,["Val'zareq the Conqueror"]=21979,["Windcaller Claw"]=17894,["Highlord Omokk"]=9196,["Nekrum Gutchewer"]=7796,["Urok Doomhowl"]=10584,["Viscous Fallout"]=7079,["Bor Wildmane"]=15306,["Dreadwing"]=21032,["Farseer Umbrua"]=20407,["Grand Crusader Dathrohan"]=10812,["Jergosh the Invoker"]=11518,["Leonid Barthalomew the Revered"]=11036,["Lord Kazzak"]=12397,["Taskmaster Varkule Dragonbreath"]=23140,["[PH] Bri's Test NPC"]=25139,["Ambassador Flamelash"]=9156,["Ancient Stone Keeper"]=7206,["Aether Ray"]=22181,["Aurius"]=10917,["Blindeye the Seer"]=18836,["Bloodscale Slavedriver"]=18089,["Dealer Tariq"]=20986,["Deino"]=5885,["Elder Shardtooth"]=7445,["Explodyne Fizzlespurt"]=18898,["Fallout Slime"]=16290,["Firemane Scout"]=4329,["Humphry"]=16823,["Martha Alliestar"]=4614,["Prophet Velen"]=17468,["Scorpid Bonecrawler"]=22100,["Scythetooth Raptor"]=20634,["Shartuul"]=23230,["Smith Hauthaa"]=25046,["Smokey LaRue"]=11033,["Tinkee Steamboil"]=10267,["Vile Fire-Soul"]=22298,["Wulan"]=12033,["Battleguard Sartura"]=15516,["Essence of Anger"]=23420,["Shade of Akama"]=22841,["Tinhead"]=17547,["Annora"]=11073,["Asarnan"]=19540,["Banalash"]=989,["Baxter"]=18988,["Bazil Thredd"]=1716,["Culuthas"]=20138,["Fantei"]=19678,["Field Repair Bot 110G"]=24780,["Fishbot 5000"]=15079,["Gezhe"]=18265,["Knight-Lord Bloodvalor"]=17717,["Lor'themar Theron"]=16802,["Lorgus Jett"]=12902,["Ranik"]=3499,["Trigger Vipore"]=14031,["Vekax"]=22429,["Venture Co. Lumberjack"]=921,["Withered Giant"]=18124,["Jan'alai"]=23578,["Maleki the Pallid"]=10438,["-"]=17582,["Arvoar the Rapacious"]=23267,["Bash'ir"]=23391,["Bleeding Hollow Darkcaster"]=17269,["Collapsing Voidwalker"]=17014,["Dreadmaw Crocolisk"]=3110,["Earthbinder Rayge"]=17885,["Fallen Hero of the Horde"]=7572,["Feera"]=16657,["Glutton"]=8567,["Gray Bear"]=2351,["Loganaar"]=12042,["Lord Valthalak"]=16042,["Lunaraa"]=16755,["Shattered Rumbler"]=17157,["Sunfury Archer"]=19707,["The Duke of Cynders"]=15206,["Toxic Horror"]=7132,["Volcor"]=3692,["Winterfall Pathfinder"]=7442,["Wrathbringer"]=18858,["Zelemar the Wrathful"]=17830,["Zjolnir"]=7952,["Fineous Darkvire"]=9056,["Ironaya"]=7228,["Malor the Zealous"]=11032,["Ribbly Screwspigot"]=9543,["Shadow Hunter Vosh'gajin"]=9236,["The Unforgiven"]=10516,["Akama"]=21700,["Bale"]=2806,["Baron Aquanis"]=12876,["Dealer Jadyan"]=19536,["Drazzit Dripvalve"]=23572,["Eclipsion Archmage"]=19796,["Erozion"]=18723,["Frostsaber Huntress"]=7433,["Ironbeak Owl"]=7097,["Jadefire Felsworn"]=7109,["Jartsam"]=4753,["Longtooth Runner"]=5286,["Lorekeeper Lydros"]=14368,["Ogunaro Wolfrunner"]=3362,["Okuno"]=23159,["Salt Flats Vulture"]=4158,["Sever"]=14682,["Shy-Rotam"]=10737,["Sundered Thunderer"]=18882,["Temper"]=17205,["Tirion Fordring"]=1855,["Unger Statforth"]=1460,["Zachariah Post"]=4731,["Cannon Master Willey"]=10997,["Jammal'an the Prophet"]=5710,["Nerub'enkan"]=10437,["Strawman"]=17543,["Battleboar"]=2966,["Belil"]=16663,["Bruegal Ironknuckle"]=1720,["Calandrath"]=15174,["Christoph Jeffcoat"]=2393,["Darmari"]=19187,["Earthen Templar"]=15307,["Fozruk"]=2611,["Furious Nether-wraith"]=22408,["Greater Fleshripper"]=154,["High Justice Grimstone"]=10096,["Itharius"]=5353,["Jandice Barov"]=10503,["Kayri"]=26089,["Luzran"]=16245,["Magister Aledis"]=20159,["Targorr the Dread"]=1696,["Tel'athion the Impure"]=17359,["Voidshrieker"]=18870,["Warmaul Shaman"]=18064,["Windy Cloud"]=24222,["Winterfall Den Watcher"]=7440,["Dreamscythe"]=5721,["King Gordok"]=11501,["Cyber-Rage Forgelord"]=16943,["Emeriss"]=14889,["Flawless Arcane Elemental"]=23100,["Gasher"]=5713,["Goreclaw the Ravenous"]=23873,["Great Goretusk"]=547,["Horde Warbringer"]=15350,["Kormok"]=16118,["Lhara"]=14846,["Living Cyclone"]=17160,["Lumak"]=3332,["Magisters' Terrace - Scryer Quest Bunny"]=25042,["Magnus Frostwake"]=11278,["Mudfin Frenzy"]=18212,["Narillasanz"]=2447,["Netherwalker"]=14389,["Oggleflint"]=11517,["Pentatharon"]=20215,["Rak'shiri"]=10200,["Sayge"]=14822,["Voidhunter Yar"]=18683,["Wing Commander Brack"]=19401,["Halycon"]=10220,["Ok'thor the Breaker"]=9030,["Ruuzlu"]=7797,["The Prophet Skeram"]=15263,["Beram Skychaser"]=3032,["Blackfang Tarantula"]=18983,["Chief Researcher Kartos"]=18817,["Chromie"]=10667,["Dampscale Basilisk"]=18461,["Dar'Khan Drathir"]=16329,["Eldrin"]=1103,["Frostwolf Quartermaster"]=12097,["Olm the Summoner"]=18834,["Qiaga the Keeper"]=7996,["Scorn"]=14693,["Sha'nir"]=18597,["Shen'dralar Ancient"]=14358,["Tinkerwiz"]=3494,["Unkor the Ruthless"]=18262,["Vir'aani Arcanist"]=17150,["Warp Hunter"]=18465,["Windcaller Yessendra"]=15498,["Wravien"]=16813,["Gahz'ranka"]=15114,["Pyromancer Loregrain"]=9024,["Tito"]=17548,["Alchemist Pestlezugg"]=5594,["Blind Hunter"]=4425,["Bonechewer Destroyer"]=17271,["Burbik Gearspanner"]=5163,["Catherine Leland"]=5494,["Clefthoof"]=18205,["Coilfang Enchantress"]=17961,["Crystal Ward"]=24980,["Daisy"]=4507,["Darkwater Crocolisk"]=17952,["Daryl Riknussun"]=5159,["Doctor Gregory Victor"]=12920,["Domesticated Felboar"]=21195,["Elder Mottled Boar"]=3100,["Enraged Crusher"]=18062,["Exarch Onaala"]=21860,["Gronn-Priest"]=21350,["Gurf"]=17441,["Hemet Nesingwary Jr."]=715,["Indormi"]=23437,["Insidion"]=23281,["Jubahl Corpseseeker"]=6382,["Karrog"]=23165,["Kum'isha the Collector"]=7363,["Lord Skwol"]=15305,["Morthis Whisperwing"]=22832,["Mosh'Ogg Lord"]=680,["Plaguemaw the Rotting"]=7356,["Scholomance Necromancer"]=10477,["Sin'Dall"]=729,["Soridormi"]=19935,["Trachela"]=21515,["Cho'Rush the Observer"]=14324,["Immol'thar"]=11496,["Princess Moira Bronzebeard"]=8929,["Alexander Calder"]=5173,["Axle"]=23995,["Ayren Cloudbreaker"]=25059,["Azshir the Sleepless"]=6490,["Baristolth of the Shifting Sands"]=15180,["Bath'rah the Windwatcher"]=6176,["Black Blood of Draenor"]=23286,["Botanist Nathera"]=16644,["Captured Gnome"]=19383,["Cenarion Hold Infantry"]=15184,["Collidus the Warp-Watcher"]=18694,["Dealer Senzik"]=19538,["Dredge Crusher"]=11741,["Ishanah"]=18538,["Kil'sorrow Deathsworn"]=17148,["Legashi Rogue"]=6201,["Magar"]=3363,["Old Murk-Eye"]=391,["Overseer Ripsaw"]=21499,["Pterrordax"]=9166,["Rartar"]=8177,["Rexxar"]=21984,["Sai'kkal the Elder"]=22932,["Servant of Grol"]=7669,["Skettis Kaliri"]=21804,["Sunfury Bowman"]=20207,["Tasaldan"]=21483,["The Rake"]=5807,["Tooga"]=5955,["Tuluun"]=17212,["Underbog Colossus"]=21251,["Gathios the Shatterer"]=22949,["Kurinnaxx"]=15348,["Loatheb"]=16011,["Mother Smolderweb"]=10596,["Noth the Plaguebringer"]=15954,["Ouro"]=15517,["Aldraan"]=21485,["Alliance Brigadier General"]=15351,["Anchorite Ceyla"]=21402,["Anger Guard"]=16952,["Barim Spilthoof"]=18754,["Binjy Featherwhistle"]=7954,["Bladespire Brute"]=19995,["Bonechewer Backbreaker"]=16810,["Cabal Tomb-Raider"]=21662,["Corrupted Mottled Boar"]=3225,["Dust Howler"]=17158,["Elder Springpaw"]=15652,["Enraged Water Spirit"]=21059,["Galak Messenger"]=10617,["Godan"]=3345,["Injured Argent Dawn Infantry"]=16229,["Jadefire Trickster"]=7107,["Jazdalaad"]=19539,["Jed Runewatcher"]=10509,["Kardris Dreamseeker"]=3344,["Kendor Kabonka"]=340,["King Magni Bronzebeard"]=2784,["Krixel Pinchwhistle"]=23396,["Magistrate Marduke"]=11286,["Murkgill Warrior"]=4461,["Sagorne Creststrider"]=13417,["Saltscale Warrior"]=871,["Shadrek"]=18333,["Steward of Time"]=20142,["Xyrol"]=19576,["Eviscerator"]=9029,["Hakkar"]=14834,["Jin'do the Hexxer"]=11380,["Maexxna"]=15952,["Mor Grayhoof"]=16080,["Razorgore the Untamed"]=12435,["Anastasia Hartwell"]=4568,["Archmage Leryda"]=18253,["Argent Guard Thaelrid"]=4787,["Blackmoss the Fetid"]=3535,["Bone Wastes - Event Trigger A"]=21451,["Clefthoof Calf"]=19183,["Coilskar Siren"]=19768,["Daranelle"]=21469,["Deynna"]=16638,["Ever-Core the Punisher"]=18698,["Ghost Howl"]=3056,["Harn Longcast"]=5940,["Jaedenar Legionnaire"]=9862,["Legashi Satyr"]=6200,["Magtheridon"]=21174,["Mana Invader"]=20618,["Marvon Rivetseeker"]=7771,["Nether Drake Egg Bunny"]=21814,["Oglethorpe Obnoticus"]=7406,["Prospector Ironboot"]=10460,["Ras Frostwhisper"]=10508,["Rattlegore"]=11622,["Rokgah Bloodgrip"]=21311,["Roloch"]=14488,["Shadowmoon Technician"]=17414,["Smolderwing"]=23789,["Storm Rager"]=17159,["Sundered Rumbler"]=18881,["Takar the Seer"]=6244,["Warlord Dar'toon"]=19254,["Wonderform Operator"]=15732,["Instructor Razuvious"]=16061,["Nalorakk"]=23576,["King Dond"]=18897,["Agnar Beastamer"]=9660,["Bloodmage Drazial"]=7505,["Congealed Void Horror"]=20779,["Demon Hunter Supplicant"]=21179,["Earthmender Torlok"]=21024,["Elder Rage Scar"]=5297,["Empoor"]=18482,["Falla Sagewind"]=8418,["Farseer Javad"]=23127,["Felcular"]=7735,["Ferocious Yeti"]=2249,["Fulgorge"]=18678,["Greater Windroc"]=17129,["Hamhock"]=1717,["Horde Field Scout"]=18564,["Ivy Leafrunner"]=10924} \ No newline at end of file From 845dd7661409dbf2e9a4d4cb034247da82da93d1 Mon Sep 17 00:00:00 2001 From: Holiest WoW Date: Thu, 15 Jan 2026 14:03:22 -0500 Subject: [PATCH 03/12] Fixed an issue with syntax (just a caps error that was throwing a lua error) --- Hardcore.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Hardcore.lua b/Hardcore.lua index a5e99b5b..494616d3 100644 --- a/Hardcore.lua +++ b/Hardcore.lua @@ -3557,7 +3557,7 @@ function Hardcore:InitiatePulse() local isInGuild, _, guild_rank_index = GetGuildInfo("player") if CTL and isInGuild then -- Send along the version we're using - local version = C_Addons.GetAddonMetadata("Hardcore", "Version") + local version = C_AddOns.GetAddOnMetadata("Hardcore", "Version") local commMessage = COMM_COMMANDS[1] .. COMM_COMMAND_DELIM .. version CTL:SendAddonMessage("BULK", COMM_NAME, commMessage, "GUILD") hc_guild_rank_index = guild_rank_index @@ -3677,7 +3677,7 @@ function Hardcore:ReceivePulse(data, sender) Hardcore:CheckVersionsAndUpdate(sender, data) -- Set my versions - local version = C_Addons.GetAddonMetadata("Hardcore", "Version") + local version = C_AddOns.GetAddOnMetadata("Hardcore", "Version") if version ~= guild_highest_version then guild_versions_status[FULL_PLAYER_NAME] = "outdated" end From 7fc138ce32a36026e3697552047a5e852b22b427 Mon Sep 17 00:00:00 2001 From: Holiest WoW Date: Thu, 15 Jan 2026 14:13:56 -0500 Subject: [PATCH 04/12] Added a logo to the AddOn selection screen --- Hardcore.lua | 4 ++-- Hardcore_TBC.toc | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Hardcore.lua b/Hardcore.lua index 494616d3..a0dde85b 100644 --- a/Hardcore.lua +++ b/Hardcore.lua @@ -3575,7 +3575,7 @@ end function Hardcore:SendCharacterData(dest) if CTL then local commMessage = COMM_COMMANDS[4] .. COMM_COMMAND_DELIM - commMessage = commMessage .. C_Addons.GetAddonMetadata("Hardcore", "Version") .. COMM_FIELD_DELIM -- Add Version + commMessage = commMessage .. C_Addons.GetAddOnMetadata("Hardcore", "Version") .. COMM_FIELD_DELIM -- Add Version if Hardcore_Character.first_recorded ~= nil and Hardcore_Character.first_recorded ~= -1 then commMessage = commMessage .. Hardcore_Character.first_recorded .. COMM_FIELD_DELIM -- Add creation time else @@ -3692,7 +3692,7 @@ end function Hardcore:CheckVersionsAndUpdate(playername, versionstring) if guild_highest_version == nil then - guild_highest_version = C_Addons.GetAddonMetadata("Hardcore", "Version") + guild_highest_version = C_Addons.GetAddOnMetadata("Hardcore", "Version") end -- Hardcore:Debug('Comparing: data: '..versionstring.. ' to guild_highest_version: '..guild_highest_version) diff --git a/Hardcore_TBC.toc b/Hardcore_TBC.toc index e6ac3517..3b802a8f 100644 --- a/Hardcore_TBC.toc +++ b/Hardcore_TBC.toc @@ -7,7 +7,7 @@ ## X-Category: Leveling,Guild ## Version: 0.11.58b - +## IconTexture: Interface\AddOns\Hardcore\Media\wowhc-emblem-white-red.blp ## DefaultState: enabled ## SavedVariables: Hardcore_Settings,Backup_Character_Data ## SavedVariablesPerCharacter: WARNING,Hardcore_Character From e6a57e112af62fbf920b1f32f2896f7466f81b51 Mon Sep 17 00:00:00 2001 From: Holiest WoW Date: Thu, 15 Jan 2026 14:57:23 -0500 Subject: [PATCH 05/12] Even more syntax errors... Fixed -- Just lower case instead of upper. --- Hardcore.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Hardcore.lua b/Hardcore.lua index a0dde85b..a80db0b7 100644 --- a/Hardcore.lua +++ b/Hardcore.lua @@ -3575,7 +3575,7 @@ end function Hardcore:SendCharacterData(dest) if CTL then local commMessage = COMM_COMMANDS[4] .. COMM_COMMAND_DELIM - commMessage = commMessage .. C_Addons.GetAddOnMetadata("Hardcore", "Version") .. COMM_FIELD_DELIM -- Add Version + commMessage = commMessage .. C_AddOns.GetAddOnMetadata("Hardcore", "Version") .. COMM_FIELD_DELIM -- Add Version if Hardcore_Character.first_recorded ~= nil and Hardcore_Character.first_recorded ~= -1 then commMessage = commMessage .. Hardcore_Character.first_recorded .. COMM_FIELD_DELIM -- Add creation time else @@ -3692,7 +3692,7 @@ end function Hardcore:CheckVersionsAndUpdate(playername, versionstring) if guild_highest_version == nil then - guild_highest_version = C_Addons.GetAddOnMetadata("Hardcore", "Version") + guild_highest_version = C_AddOns.GetAddOnMetadata("Hardcore", "Version") end -- Hardcore:Debug('Comparing: data: '..versionstring.. ' to guild_highest_version: '..guild_highest_version) From 8ec26598e029ae9f8f13bed9017d8f7549286130 Mon Sep 17 00:00:00 2001 From: HoliestWoW Date: Sat, 17 Jan 2026 09:17:08 -0500 Subject: [PATCH 06/12] Fixed dungeon levels for TBC --- Dungeons.lua | 22 +++++++++---- MainMenu.lua | 64 ++++++++++++++++++++++--------------- dungeon-db-tbc.lua | 80 +++++++++++++++++++++++----------------------- 3 files changed, 94 insertions(+), 72 deletions(-) diff --git a/Dungeons.lua b/Dungeons.lua index 9c15bd80..a7ed50c4 100644 --- a/Dungeons.lua +++ b/Dungeons.lua @@ -92,8 +92,11 @@ local function DungeonTrackerGetDungeonMaxLevel(name) if Hardcore_Character.game_version ~= nil then if Hardcore_Character.game_version == "Era" or Hardcore_Character.game_version == "SoM" then max_level = dt_db_max_levels[name][1] - elseif Hardcore_Character.game_version == "WotLK" or Hardcore_Character.game_version == "Cata" then + elseif Hardcore_Character.game_version == "TBC" then max_level = dt_db_max_levels[name][2] + elseif Hardcore_Character.game_version == "WotLK" or Hardcore_Character.game_version == "Cata" then + -- WotLK/Cata is now the 3rd column + max_level = dt_db_max_levels[name][3] end end end @@ -131,12 +134,17 @@ function DungeonTrackerGetAllDungeonMaxLevels() for i, v in pairs(dt_db) do if v[4] == "D" then - local max_era_level = v[7][1] - if max_era_level == 1000 then - table.insert(the_table, { v[3], "--", v[7][2] }) - else - table.insert(the_table, { v[3], max_era_level, v[7][2] }) - end + local max_era = v[7][1] + local max_tbc = v[7][2] + local max_wotlk = v[7][3] + + -- Handle "1000" (Unlimited) for display purposes + if max_era == 1000 then max_era = "--" end + if max_tbc == 1000 then max_tbc = "--" end + if max_wotlk == 1000 then max_wotlk = "--" end + + -- Return all three + table.insert(the_table, { v[3], max_era, max_tbc, max_wotlk }) end end diff --git a/MainMenu.lua b/MainMenu.lua index c07ba011..4d23c49a 100644 --- a/MainMenu.lua +++ b/MainMenu.lua @@ -637,75 +637,89 @@ local function DrawRulesTab(container) scroll_frame:AddChild(general_rules_description) local function DrawDungeonLevels(scroll_Frame) - local function addEntry(_scroll_frame, _name, _era, _wotlk) + -- Helper to add a row with 4 columns + local function addEntry(_scroll_frame, _name, _era, _tbc, _wotlk) local entry = AceGUI:Create("SimpleGroup") entry:SetLayout("Flow") entry:SetFullWidth(true) _scroll_frame:AddChild(entry) local filler_label = AceGUI:Create("Label") - filler_label:SetWidth(200) + filler_label:SetWidth(20) -- Reduced filler to fit more columns filler_label:SetText("") - filler_label:SetFont("Fonts\\FRIZQT__.TTF", 12, "") entry:AddChild(filler_label) local name_label = AceGUI:Create("Label") - name_label:SetWidth(175) + name_label:SetWidth(180) name_label:SetText(_name) name_label:SetFont("Fonts\\FRIZQT__.TTF", 12, "") entry:AddChild(name_label) - local level_label = AceGUI:Create("Label") - level_label:SetWidth(155) - level_label:SetText(_era) - level_label:SetFont("Fonts\\FRIZQT__.TTF", 12, "") - entry:AddChild(level_label) - - local wotlk_level = AceGUI:Create("Label") - wotlk_level:SetWidth(100) - wotlk_level:SetText(_wotlk) - wotlk_level:SetFont("Fonts\\FRIZQT__.TTF", 12, "") - entry:AddChild(wotlk_level) + local era_label = AceGUI:Create("Label") + era_label:SetWidth(80) + era_label:SetText(_era) + era_label:SetFont("Fonts\\FRIZQT__.TTF", 12, "") + entry:AddChild(era_label) + + local tbc_label = AceGUI:Create("Label") + tbc_label:SetWidth(80) + tbc_label:SetText(_tbc) + tbc_label:SetFont("Fonts\\FRIZQT__.TTF", 12, "") + entry:AddChild(tbc_label) + + local wotlk_label = AceGUI:Create("Label") + wotlk_label:SetWidth(80) + wotlk_label:SetText(_wotlk) + wotlk_label:SetFont("Fonts\\FRIZQT__.TTF", 12, "") + entry:AddChild(wotlk_label) end + + -- Create the Header Row local row_header = AceGUI:Create("SimpleGroup") row_header:SetLayout("Flow") row_header:SetFullWidth(true) scroll_frame:AddChild(row_header) local filler_label = AceGUI:Create("Label") - filler_label:SetWidth(200) + filler_label:SetWidth(20) filler_label:SetText("") - filler_label:SetFont("Fonts\\FRIZQT__.TTF", 12, "") row_header:AddChild(filler_label) local name_label = AceGUI:Create("Label") - name_label:SetWidth(150) + name_label:SetWidth(180) name_label:SetText("|c00FFFF00Dungeon Name|r") name_label:SetFont("Fonts\\FRIZQT__.TTF", 12, "") row_header:AddChild(name_label) local level_label = AceGUI:Create("Label") - level_label:SetWidth(150) - level_label:SetText("|c00FFFF00Max Lvl (Era)|r") + level_label:SetWidth(80) + level_label:SetText("|c00FFFF00Era|r") level_label:SetFont("Fonts\\FRIZQT__.TTF", 12, "") row_header:AddChild(level_label) + local tbc_level_label = AceGUI:Create("Label") + tbc_level_label:SetWidth(80) + tbc_level_label:SetText("|c00FFFF00TBC|r") + tbc_level_label:SetFont("Fonts\\FRIZQT__.TTF", 12, "") + row_header:AddChild(tbc_level_label) + local max_level_label = AceGUI:Create("Label") - max_level_label:SetWidth(200) + max_level_label:SetWidth(120) if _G["HardcoreBuildLabel"] == "Cata" then - max_level_label:SetText("|c00FFFF00Max Lvl (Cata)|r") + max_level_label:SetText("|c00FFFF00Cata|r") else - max_level_label:SetText("|c00FFFF00Max Lvl (WotLK)|r") + max_level_label:SetText("|c00FFFF00WotLK|r") end max_level_label:SetFont("Fonts\\FRIZQT__.TTF", 12, "") row_header:AddChild(max_level_label) + -- Populate the list local max_level_table = DungeonTrackerGetAllDungeonMaxLevels() for i, v in pairs(max_level_table) do - addEntry(scroll_frame, v[1], v[2], v[3]) + addEntry(scroll_frame, v[1], v[2], v[3], v[4]) end - addEntry(scroll_frame, "\n\n\n\n", "", "") + addEntry(scroll_frame, "\n\n\n\n", "", "", "") end DrawRulesLabel("Dungeon Groups", scroll_frame) local general_rules_description = AceGUI:Create("Label") diff --git a/dungeon-db-tbc.lua b/dungeon-db-tbc.lua index d463ba5b..80ce57df 100644 --- a/dungeon-db-tbc.lua +++ b/dungeon-db-tbc.lua @@ -6,7 +6,7 @@ -- dt_db ( = dungeon tracker database ) -- -- Contains all the info for the dungeons: --- { instanceMapID, zoneID, "English Name", type = { "D", "R", "B", "O" }, max_players, max_runs, { max_level_era, max_level_wotlk }, { quests }, { bosses } }, +-- { instanceMapID, zoneID, "English Name", type = { "D", "R", "B", "O" }, max_players, max_runs, { max_level_era, max_level_tbc, max_level_wotlk }, { quests }, { bosses } }, -- Types: D = dungeon (5-player), R = raid, B = battleground, O = other -- The following dungeon table was compiled with help from @Jordynna (thanks!) @@ -16,86 +16,86 @@ dt_db = { -- Era dungeons - { 389, 2437, "Ragefire Chasm", "D", 5, 1, { 18, 20 }, + { 389, 2437, "Ragefire Chasm", "D", 5, 1, { 18, 20, 20 }, { 5728, 5761, 5723, 5724, 5725 }, -- "Searching for the lost satchel" replaced by "Returning the Lost satchel" because the former can be finished inside {{"Bazzalan",11519}, {"Taramagan the Hungerer",11520}, {"Oggleflint",11517}, {"Jergosh the Invoker",11518}} }, - { 43, 718, "Wailing Caverns", "D", 5, 1, { 24, 24 }, + { 43, 718, "Wailing Caverns", "D", 5, 1, { 24, 24, 24 }, { 914, 1487, 3366 }, -- Leaders of the Fang, Deviate Eradication, The Glowing Shard {{"Mutanus",3654}, {"Kresh",3653}, {"Lady Anacondra",3671}, {"Lord Cobrahn",3669}, {"Lord Pythas",3670}, {"Skum",3674}, {"Lord Serpentis",3673}, {"Verdan the Everliving",5775}} }, - { 36, 1581, "The Deadmines", "D", 5, 1, { 26, 24 }, + { 36, 1581, "The Deadmines", "D", 5, 1, { 26, 26, 24 }, { 2040, 166, 373 }, -- Underground Assault, The Defias Brotherhood, The Unsent Letter {{"Edwin VanCleef",639}, {"Rhahk'Zor",644}, {"Sneed's Shredder",642}, {"Gilnid",1763}, {"Mr. Smite",646}, {"Captain Greenskin",647}, {"Cookie",645}} }, - { 33, 209, "Shadowfang Keep", "D", 5, 1, { 30, 25 }, + { 33, 209, "Shadowfang Keep", "D", 5, 1, { 30, 30, 25 }, { 1013, 1014 }, -- The Book of Ur, Arugal Must Die // Deathstalkers in Shadowfang removed (inside completion) {{"Archmage Arugal",4275}, {"Rethilgore",3914}, {"Razorclaw the Butcher",3886}, {"Baron Silverlaine",3887}, {"Commander Springvale",4278}, {"Odo the Blindwatcher",4279}, {"Fenrus the Devourer",4274}, {"Wolf Master Nandos",3927}} }, - { 48, 719, "Blackfathom Deeps", "D", 5, 1, { 32, 28 }, + { 48, 719, "Blackfathom Deeps", "D", 5, 1, { 32, 32, 28 }, { 971, 1199, 6565, 6921, 1200, 6561, 6922 }, -- 1198 removed (inside completion) {{"Aku'mai",4829}, {"Ghamoo-ra",4887}, {"Lady Sarevess",4831}, {"Gelihast",6243}, {"Lorgus Jett",12902}, {"Twilight Lord Kelris",4832}, {"Old Serra'kis",4830}} }, - { 34, 717, "The Stockade", "D", 5, 1, { 32, 29 }, + { 34, 717, "The Stockade", "D", 5, 1, { 32, 32, 29 }, { 387, 386, 378, 388, 377, 391 }, {{"Bazil Thredd",1716}, {"Targorr the Dread",1696}, {"Kam Deepfury",1666}, {"Hamhock",1717}, {"Dextren Ward",1663}} }, - { 47, 491, "Razorfen Kraul", "D", 5, 1, { 38, 31 }, + { 47, 491, "Razorfen Kraul", "D", 5, 1, { 38, 38, 31 }, { 1221, 1102, 1109, 1101, 1142, 6522 }, -- 1144 removed (inside completion) {{"Charlga Razorflank",4421}, {"Roogug",6168}, {"Aggem Thorncurse",4424}, {"Death Speaker Jargba",4428}, {"Overlord Ramtusk",4420}, {"Agathelos the Raging",4422}} }, - { 90, 721, "Gnomeregan", "D", 5, 1, { 38, 32 }, + { 90, 721, "Gnomeregan", "D", 5, 1, { 38, 38, 32 }, { 2904, 2924, 2930, 2929, 2841 }, -- 2945, 2951 removed (inside completion), 2929 removed (outside quest) {{"Mekgineer Thermaplugg",7800}, {"Grubbis ",7361}, {"Viscous Fallout",7079}, {"Electrocutioner 6000",6235}, {"Crowd Pummeler 9-60",6229}} }, - { 129, 722, "Razorfen Downs", "D", 5, 1, { 46, 41 }, + { 129, 722, "Razorfen Downs", "D", 5, 1, { 46, 46, 41 }, { 3636, 3341 }, -- 3525 removed (inside completion) {{"Amnennar the Coldbringer",7358}, {"Tuten'kash",7355}, {"Mordresh Fire Eye",7357}, {"Glutton",8567}} }, - { 189, 796, "Scarlet Monastery", "D", 5, 1, { 45, 44 }, + { 189, 796, "Scarlet Monastery", "D", 5, 1, { 45, 45, 44 }, {}, {} -- Empty boss list allows logging of bosses in the wings (do not touch!) }, - { 18901, 79601, "Scarlet Monastery (GY)", "D", 5, 1, { 45, 44 }, -- Bit of a hack here, the 4 wings don't have a separate ID, so we fake one for them + { 18901, 79601, "Scarlet Monastery (GY)", "D", 5, 1, { 45, 45, 44 }, -- Bit of a hack here, the 4 wings don't have a separate ID, so we fake one for them {}, -- No quests in GY { {"Bloodmage Thalnos", 4543}, {"Interrogator Vishas", 3983} } }, - { 18902, 79602, "Scarlet Monastery (Lib)", "D", 5, 1, { 45, 44 }, + { 18902, 79602, "Scarlet Monastery (Lib)", "D", 5, 1, { 45, 45, 44 }, { 1050, 1053, 1049, 1048, 1160, 1951 }, -- 1048+1053: kill 4 bosses needs Lib+Cath+Arm { {"Arcanist Doan", 6487}, {"Houndmaster Loksey", 3974} } }, - { 18903, 79603, "Scarlet Monastery (Cath)", "D", 5, 1, { 45, 44 }, + { 18903, 79603, "Scarlet Monastery (Cath)", "D", 5, 1, { 45, 45, 44 }, { 1053, 1048 }, -- 1048+1053: kill 4 bosses needs Lib+Cath+Arm { {"Scarlet Commander Mograine", 3976}, {"High Inquisitor Whitemane", 3977}, {"High Inquisitor Fairbanks", 4542 } } }, - { 18904, 79604, "Scarlet Monastery (Arm)", "D", 5, 1, { 45, 44 }, + { 18904, 79604, "Scarlet Monastery (Arm)", "D", 5, 1, { 45, 45, 44 }, { 1053, 1048 }, -- 1048+1053: kill 4 bosses needs Lib+Cath+Arm { {"Herod", 3975} } }, - { 70, 1137, "Uldaman", "D", 5, 1, { 51, 44 }, + { 70, 1137, "Uldaman", "D", 5, 1, { 51, 51, 44 }, { 2240, 1139, 2204 }, -- 2278 removed (inside completion) {{"Archaedas",2748}, {"Revelosh",6910}, {"Ironaya",7228}, {"Obsidian Sentinel",7023}, {"Ancient Stone Keeper",7206}, {"Galgann Firehammer",7291}, {"Grimlok",4854}} }, - { 209, 1176, "Zul'Farrak", "D", 5, 1, { 54, 50 }, + { 209, 1176, "Zul'Farrak", "D", 5, 1, { 54, 54, 50 }, { 3042, 2865, 2846, 2768, 2770, 3527, 2991, 2936 }, {{"Chief Ukorz Sandscalp",7267}, {"Ruuzlu",7797}, {"Antu'sul",8127}, {"Theka the Martyr",7272}, {"Witch Doctor Zum'rah",7271}, {"Nekrum Gutchewer",7796}, {"Shadowpriest Sezz'ziz",7275}, {"Sergeant Bly",7604}, {"Hydromancer Velratha",7795}} }, - { 349, 2100, "Maraudon", "D", 5, 1, { 55, 52 }, + { 349, 2100, "Maraudon", "D", 5, 1, { 55, 55, 52 }, { 7041, 7029, 7065, 7064, 7067 }, -- 7044+7046 removed (inside completion) {{"Princess Theradras",12201}, {"Noxxion",13282}, {"Razorlash",12258}, {"Lord Vyletongue",12236}, {"Celebras the Cursed",12225}, {"Landslide",12203}, {"Tinkerer Gizlock",13601}, {"Rotgrip",13596}} }, - { 109, 1477, "The Temple of Atal'Hakkar", "D", 5, 1, { 60, 54 }, + { 109, 1477, "The Temple of Atal'Hakkar", "D", 5, 1, { 60, 59, 54 }, { 3528 }, -- 1475, 4143, 4146, removed: tablets and haze drop outside; 3446+3373+3447 removed (inside completion) {{"Shade of Eranikus",5709}, {"Atal'alarion",8580}, {"Dreamscythe",5721}, {"Weaver",5720}, {"Jammal'an the Prophet",5710}, {"Ogom the Wretched",5711}, {"Morphaz",5719}, {"Hazzas",5722}, {"Avatar of Hakkar",8443}} }, - { 229, 1583, "Blackrock Spire", "D", 10, 1, { 60, 62 }, + { 229, 1583, "Blackrock Spire", "D", 10, 1, { 60, 62, 62 }, { 4701, 4724, 4903, 4862, 4729, 4788, 4768, 4974, 4764, 5102, 6821 }, -- 4982+5001+7761 removed (inside completion) {{"General Drakkisath",10363}, {"Highlord Omokk",9196}, {"Shadow Hunter Vosh'gajin",9236}, {"War Master Voone",9237}, {"Mor Grayhoof",16080}, {"Mother Smolderweb",10596}, {"Urok Doomhowl",10584}, {"Quartermaster Zigris",9736}, {"Halycon",10220}, {"Gizrul the Slavener",10268},{"Overlord Wyrmthalak",9537}, {"Pyroguard Emberseer",9816}, {"Solakar Flamewreath",10264}, {"Goraluk Anvilcrack",10899}, {"Warchief Rend Blackhand",10429}, {"Gyth",10339}, {"The Beast",10430} } }, -- UBRS and LBRS are one instance - { 230, 1584, "Blackrock Depths", "D", 5, 1, { 60, 60 }, + { 230, 1584, "Blackrock Depths", "D", 5, 1, { 60, 60, 60 }, { 4136, 4123, 4286, 4126, 4081, 4134 }, {{"Emperor Dagran Thaurissan",9019}, {"Lord Roccor",9025}, {"Bael'Gar",9016}, {"Houndmaster Grebmar",9319}, {"High Interrogator Gerstahn",9018}, {"High Justice Grimstone",10096}, {"Pyromancer Loregrain",9024}, {"General Angerforge",9033}, {"Golem Lord Argelmach",8983}, @@ -103,18 +103,18 @@ dt_db = { {"Lord Incendius",9017}, {"Fineous Darkvire",9056}, {"Warder Stilgiss",9041}, {"Ambassador Flamelash",9156}, {"Magmus",9938}, {"Princess Moira Bronzebeard",8929}} }, - { 289, 2057, "Scholomance", "D", 5, 1, { 60, 62 }, + { 289, 2057, "Scholomance", "D", 5, 1, { 60, 62, 62 }, { 5529, 5582, 5382, 5384, 5466, 5343, 5341 }, {{"Darkmaster Gandling",1853}, {"Kirtonos the Herald",10506}, {"Jandice Barov",10503}, {"Rattlegore",11622}, {"Marduk Blackpool",10433}, {"Vectus",10432}, {"Ras Frostwhisper",10508}, {"Instructor Malicia",10505}, {"Doctor Theolin Krastinov",11261}, {"Lorekeeper Polkelt",10901}, {"The Ravenian",10507}, {"Lord Alexei Barov",10504}, {"Lady Ilucia Barov",10502}} }, - { 429, 2557, "Dire Maul", "D", 5, 1, { 60, 62 }, + { 429, 2557, "Dire Maul", "D", 5, 1, { 60, 62, 62 }, { 7488, 7489, 7441, 5526 }, -- 7461+7462+7703 removed (inside completion) { {"King Gordok",11501},{"Pusillin",14354},{"Lethendris",14327}, {"Hydrospawn",13280}, {"Zevrim Thornhoof",11490},{"Alzzin the Wildshaper",11492}, {"Guard Mol'dar",14326},{"Stomper Kreeg",14322},{"Guard Fengus",14321},{"Guard Slip'kik",14323},{"Captain Kromcrush",14325},{"Cho'Rush the Observer",14324}, {"Tendris Warpwood",11489},{"Magister Kalendris",11487},{"Tsu'zee",11467},{"Illyanna Ravenoak",11488},{"Immol'thar",11496},{"Prince Tortheldrin",11486}, } }, - { 329, 2017, "Stratholme", "D", 5, 1, { 60, 62 }, + { 329, 2017, "Stratholme", "D", 5, 1, { 60, 62, 62 }, { 5282, 5214, 5251, 5262, 5848, 5212, 5263, 5243, 6163 }, -- 5122+5463+8945 removed (inside completion) { {"Baron Rivendare",10440}, {"Fras Siabi",11058}, {"The Unforgiven",10516}, {"Postmaster Malown",11143},{"Timmy the Cruel",10808}, @@ -137,22 +137,22 @@ dt_db = { { 529, 3358, "Arathi Basin", "B", 15, 1000, { 1000, 1000 }, {} }, -- TBC dungeons - { 543, 3562, "Hellfire Ramparts", "D", 5, 1, { 1000, 64 }, { 9575, 9572, 9587, 9588 } }, - { 542, 3713, "The Blood Furnace", "D", 5, 1, { 1000, 65 }, { 9607, 9608, 9589, 9590 } }, - { 547, 3717, "The Slave Pens", "D", 5, 1, { 1000, 66 }, { 9738 } }, - { 546, 3716, "The Underbog", "D", 5, 1, { 1000, 66 }, { 9738, 9717, 9719 } }, -- 9715 removed because also drops in Steamvault - { 557, 3792, "Mana-Tombs", "D", 5, 1, { 1000, 68 }, { 10216, 10218, 10165 } }, - { 558, 3790, "Auchenai Crypts", "D", 5, 1, { 1000, 70 }, { 10164, 10167 } }, -- "All remaining TBC dungeons have a MAX level of 70" - { 560, 2367, "Old Hillsbrad Foothills", "D", 5, 1, { 1000, 70 }, { 10283, 10284, 10285 } }, - { 556, 3791, "Sethekk Halls", "D", 5, 1, { 1000, 70 }, { 10097, 10098 } }, - { 553, 3847, "The Botanica", "D", 5, 1, { 1000, 70 }, { 10704, 10257, 10897 } }, - { 555, 3789, "Shadow Labyrinth", "D", 5, 1, { 1000, 70 }, { 10885, 10094, 10095, 10091, 10649, 10666, 9831 } }, - { 545, 3715, "The Steamvault", "D", 5, 1, { 1000, 70 }, { 9763, 9832, 10667, 10885 } }, - { 540, 3714, "The Shattered Halls", "D", 5, 1, { 1000, 70 }, { 9492, 9495, 9493, 9496, 10670 } }, - { 554, 3849, "The Mechanar", "D", 5, 1, { 1000, 70 }, { 10704, 10665 } }, - { 269, 2366, "The Black Morass", "D", 5, 1, { 1000, 70 }, { 10296, 10297, 10298, 9836, 9837, 10902 } }, - { 552, 3848, "The Arcatraz", "D", 5, 1, { 1000, 70 }, { 9832, 10886 } }, - { 585, 4131, "Magisters' Terrace", "D", 5, 1, { 1000, 70 }, { 11492, 11499 } }, + { 543, 3562, "Hellfire Ramparts", "D", 5, 1, { 1000, 66, 64 }, { 9575, 9572, 9587, 9588 } }, + { 542, 3713, "The Blood Furnace", "D", 5, 1, { 1000, 67, 65 }, { 9607, 9608, 9589, 9590 } }, + { 547, 3717, "The Slave Pens", "D", 5, 1, { 1000, 68, 66 }, { 9738 } }, + { 546, 3716, "The Underbog", "D", 5, 1, { 1000, 69, 66 }, { 9738, 9717, 9719 } }, -- 9715 removed because also drops in Steamvault + { 557, 3792, "Mana-Tombs", "D", 5, 1, { 1000, 70, 68 }, { 10216, 10218, 10165 } }, + { 558, 3790, "Auchenai Crypts", "D", 5, 1, { 1000, 70, 70 }, { 10164, 10167 } }, -- "All remaining TBC dungeons have a MAX level of 70" + { 560, 2367, "Old Hillsbrad Foothills", "D", 5, 1, { 1000, 70, 70 }, { 10283, 10284, 10285 } }, + { 556, 3791, "Sethekk Halls", "D", 5, 1, { 1000, 70, 70 }, { 10097, 10098 } }, + { 553, 3847, "The Botanica", "D", 5, 1, { 1000, 70, 70 }, { 10704, 10257, 10897 } }, + { 555, 3789, "Shadow Labyrinth", "D", 5, 1, { 1000, 70, 70 }, { 10885, 10094, 10095, 10091, 10649, 10666, 9831 } }, + { 545, 3715, "The Steamvault", "D", 5, 1, { 1000, 70, 70 }, { 9763, 9832, 10667, 10885 } }, + { 540, 3714, "The Shattered Halls", "D", 5, 1, { 1000, 70, 70 }, { 9492, 9495, 9493, 9496, 10670 } }, + { 554, 3849, "The Mechanar", "D", 5, 1, { 1000, 70, 70 }, { 10704, 10665 } }, + { 269, 2366, "The Black Morass", "D", 5, 1, { 1000, 70, 70 }, { 10296, 10297, 10298, 9836, 9837, 10902 } }, + { 552, 3848, "The Arcatraz", "D", 5, 1, { 1000, 70, 70 }, { 9832, 10886 } }, + { 585, 4131, "Magisters' Terrace", "D", 5, 1, { 1000, 70, 70 }, { 11492, 11499 } }, -- TBC Raids { 532, 3457, "Karazhan", "R", 10, 1000, { 1000, 1000 }, {} }, { 533, 3456, "Naxxramas", "R", 40, 1000, { 1000, 1000 }, {} }, From 025244ed32c1cb311dcde52e4fb872dd8388726a Mon Sep 17 00:00:00 2001 From: HoliestWoW Date: Sat, 17 Jan 2026 23:01:01 -0500 Subject: [PATCH 07/12] Fix for TBC dungeons levels, updated changelog, grandfathering in older runs before level change, more aggressive filtering out of automated played time reports --- Dungeons.lua | 23 ++++++++++++++---- Hardcore.lua | 55 +++++++++++++++++++++++++------------------- Hardcore_Cata.toc | 4 ++-- Hardcore_Classic.toc | 4 ++-- Hardcore_TBC.toc | 4 ++-- MainMenu.lua | 22 +++++++++++++++++- dungeon-db-tbc.lua | 32 +++++++++++++------------- 7 files changed, 93 insertions(+), 51 deletions(-) diff --git a/Dungeons.lua b/Dungeons.lua index a7ed50c4..aeebe6d9 100644 --- a/Dungeons.lua +++ b/Dungeons.lua @@ -110,16 +110,31 @@ end -- This is used to see if previous runs may have been under another version of the -- game where the max levels were different +-- [[ Dungeons.lua ]] + local function DungeonTrackerGetDungeonMaxLevelAtRunTime(run) - -- If we are in cata now, but the run started before pre-patch day, we use the WotLK max level (if it was differen than Cata) - if _G["HardcoreBuildLabel"] == "Cata" and run.start ~= nil and _dt_db_wotlk_max_levels[ run.name ] ~= nil then + -- 1. EXISTING CATA CHECK (Keep this) + -- If we are in cata now, but the run started before pre-patch day, we use the WotLK max level + if _G["HardcoreBuildLabel"] == "Cata" and run.start ~= nil and _dt_db_wotlk_max_levels ~= nil and _dt_db_wotlk_max_levels[ run.name ] ~= nil then if run.start < 1714482000 then -- Wed 30 April 2024, 15:00 PDT return _dt_db_wotlk_max_levels[ run.name ] end end - -- Default to the current version's max level if not Cata + -- 2. NEW GRANDFATHER CLAUSE + -- If we are on TBC (or MoP), and the run happened before the patch fix (Jan 17, 2026), + -- we return 1000 (Unlimited) to ensure they pass validation. + -- Timestamp: 1768694400 is roughly Jan 18, 2026 00:00 UTC + local grandfather_cutoff = 1768694400 + + if (Hardcore_Character.game_version == "TBC" or Hardcore_Character.game_version == "MoP") and run.start ~= nil then + if run.start < grandfather_cutoff then + return 1000 -- Treats the dungeon as having "No Max Level" for runs done before today + end + end + + -- Default to the current version's max level for all new runs return DungeonTrackerGetDungeonMaxLevel(run.name) end @@ -205,7 +220,7 @@ local function DungeonTrackerFindMissingRunsFromQuests() if Hardcore_Character.game_version == "Era" or Hardcore_Character.game_version == "SoM" then game_version_index = 1 game_version_max_level = 60 - elseif Hardcore_Character.game_version == "WotLK" or Hardcore_Character.game_version == "Cata" then + elseif Hardcore_Character.game_version == "WotLK" or Hardcore_Character.game_version == "Cata" or Hardcore_Character.game_version == "MoP" then game_version_index = 2 game_version_max_level = 80 else diff --git a/Hardcore.lua b/Hardcore.lua index a80db0b7..71d17bdb 100644 --- a/Hardcore.lua +++ b/Hardcore.lua @@ -814,6 +814,19 @@ end) function Hardcore:Startup() -- the entry point of our addon -- called inside loading screen before player sees world, some api functions are not available yet. + + Hardcore.UserRequestedPlayed = false + + -- If the user types /played, we allow the next message through + if SlashCmdList then + hooksecurefunc(SlashCmdList, "PLAYED", function() + Hardcore.UserRequestedPlayed = true + -- Reset the flag after 3 seconds in case the server never responds + C_Timer.After(3.0, function() + Hardcore.UserRequestedPlayed = false + end) + end) + end if not Hardcore.Original_ChatFrame1_AddMessage then Hardcore.Original_ChatFrame1_AddMessage = ChatFrame1.AddMessage @@ -997,31 +1010,25 @@ function Hardcore:PLAYER_LOGIN() --self:RegisterEvent("ADDON_ACTION_FORBIDDEN") ChatFrame_AddMessageEventFilter("CHAT_MSG_SYSTEM", function(frame, event, message, ...) - if HIDE_RTP_CHAT_MSG_BUFFER > 0 then - -- Get the localized global strings for time played and strip the "%s" variable - -- This ensures it works on all client languages - local totalPrefix = string.gsub(TIME_PLAYED_TOTAL, "%%s", "") -- "Total time played: " - local levelPrefix = string.gsub(TIME_PLAYED_LEVEL, "%%s", "") -- "Time played this level: " - - -- Check if the message starts with "Total time played" - if string.find(message, totalPrefix, 1, true) then - if debug then - Hardcore:Debug("ChatFilter: Hidden 'Total' message: " .. message) - end - -- We hide this line, but don't decrement yet because the 'Level' line comes next - return true - end + + -- 1. Check if this is a "Time Played" message + -- We clean the global strings to remove the %s variable so we can match the text + local totalPrefix = string.gsub(TIME_PLAYED_TOTAL or "Total time played", "%%s", "") + local levelPrefix = string.gsub(TIME_PLAYED_LEVEL or "Time played this level", "%%s", "") + + local isTimePlayedMsg = false + if string.find(message, totalPrefix, 1, true) or string.find(message, levelPrefix, 1, true) then + isTimePlayedMsg = true + end - -- Check if the message starts with "Time played this level" - if string.find(message, levelPrefix, 1, true) then - if debug then - Hardcore:Debug("ChatFilter: Hidden 'Level' message. Decrementing Buffer.") - end - - -- This is usually the last message in the block, so we decrement now - HIDE_RTP_CHAT_MSG_BUFFER = HIDE_RTP_CHAT_MSG_BUFFER - 1 - if HIDE_RTP_CHAT_MSG_BUFFER < 0 then HIDE_RTP_CHAT_MSG_BUFFER = 0 end - + -- 2. Logic: Hide it if it's automated, Show it if it's manual + if isTimePlayedMsg then + if Hardcore.UserRequestedPlayed then + -- The user explicitly asked for this. Let them see it. + -- (We don't reset the flag here immediately because the "Level" message comes right after the "Total" message) + return false, message, ... + else + -- The user did NOT type /played. This is spam from our addon loop. Hide it. return true end end diff --git a/Hardcore_Cata.toc b/Hardcore_Cata.toc index f1cf37e6..8a4cb0e8 100644 --- a/Hardcore_Cata.toc +++ b/Hardcore_Cata.toc @@ -1,10 +1,10 @@ ## Interface: 50500 -## Title: Hardcore 0.11.57b +## Title: Hardcore 0.11.59b ## Notes: Supports Classic Hardcore ## Author: The Classic Hardcore team, Molikar (Sean Kennedy) ## X-License: All Rights Reserved ## X-Category: Leveling,Guild -## Version: 0.11.57b +## Version: 0.11.59b ## DefaultState: enabled diff --git a/Hardcore_Classic.toc b/Hardcore_Classic.toc index d4aac735..af94a885 100644 --- a/Hardcore_Classic.toc +++ b/Hardcore_Classic.toc @@ -1,11 +1,11 @@ ## Interface: 11507 -## Title: Hardcore 0.11.57b +## Title: Hardcore 0.11.59b ## Notes: Supports Classic Hardcore ## Author: The Classic Hardcore team, Molikar (Sean Kennedy) ## X-License: All Rights Reserved ## X-Category: Leveling,Guild -## Version: 0.11.57b +## Version: 0.11.59b ## DefaultState: enabled diff --git a/Hardcore_TBC.toc b/Hardcore_TBC.toc index 3b802a8f..b4eae726 100644 --- a/Hardcore_TBC.toc +++ b/Hardcore_TBC.toc @@ -1,11 +1,11 @@ ## Interface: 20505 -## Title: Hardcore 0.11.58b +## Title: Hardcore 0.11.59b ## Notes: Supports TBC Hardcore ## Author: The Classic Hardcore team, Molikar (Sean Kennedy) ## X-License: All Rights Reserved ## X-Category: Leveling,Guild -## Version: 0.11.58b +## Version: 0.11.59b ## IconTexture: Interface\AddOns\Hardcore\Media\wowhc-emblem-white-red.blp ## DefaultState: enabled diff --git a/MainMenu.lua b/MainMenu.lua index 4d23c49a..67919b58 100644 --- a/MainMenu.lua +++ b/MainMenu.lua @@ -316,6 +316,18 @@ local function DrawGeneralTab(container) changelog_title:SetFont("Interface\\Addons\\Hardcore\\Media\\BreatheFire.ttf", 20, "") scroll_frame:AddChild(changelog_title) + CreateHeadingLabel("11.59b", scroll_frame) + CreateDescriptionLabel( + "- Updated TBC dungeon levels and implemented a grandfather status for dungeons that were run at max level when the required levels were higher.", + scroll_frame + ) + + CreateHeadingLabel("11.58b", scroll_frame) + CreateDescriptionLabel( + "- Added compatibility with TBC Anniversary realms, including Era to TBC transfer characters.", + scroll_frame + ) + CreateHeadingLabel("11.57b", scroll_frame) CreateDescriptionLabel( "- Fixed Lua error related to missing Monk class color.\n- Added checks to prevent errors when extra rules are not defined.\n- Enabled tracked time to update correctly on the character screen.", @@ -707,6 +719,8 @@ local function DrawRulesTab(container) max_level_label:SetWidth(120) if _G["HardcoreBuildLabel"] == "Cata" then max_level_label:SetText("|c00FFFF00Cata|r") + elseif _G["HardcoreBuildLabel"] == "MoP" then + max_level_label:SetText("|c00FFFF00MoP|r") else max_level_label:SetText("|c00FFFF00WotLK|r") end @@ -1301,7 +1315,13 @@ local function DrawDungeonsTab(container, _hardcore_character) -- Go through the complete, idle and active runs local num_lines = 0 for i, v in pairs(_dt_runs) do - name_str = name_str .. v.name .. GetEntryCountString(v) .. "\n" + local suffix = "" + -- Check if run happened before Jan 17, 2026 (Grandfathered) + if v.start and v.start < 1768669200 and (Hardcore_Character.game_version == "TBC" or Hardcore_Character.game_version == "MoP") then + suffix = " |cff00ff00(*)|r" -- Adds a green (*) + end + name_str = name_str .. v.name .. suffix .. GetEntryCountString(v) .. "\n" + id_str = id_str .. GetInstanceIDString(v) .. "\n" if v.level > 0 then level_str = level_str .. v.level .. "\n" diff --git a/dungeon-db-tbc.lua b/dungeon-db-tbc.lua index 80ce57df..e1b258f0 100644 --- a/dungeon-db-tbc.lua +++ b/dungeon-db-tbc.lua @@ -24,67 +24,67 @@ dt_db = { { 914, 1487, 3366 }, -- Leaders of the Fang, Deviate Eradication, The Glowing Shard {{"Mutanus",3654}, {"Kresh",3653}, {"Lady Anacondra",3671}, {"Lord Cobrahn",3669}, {"Lord Pythas",3670}, {"Skum",3674}, {"Lord Serpentis",3673}, {"Verdan the Everliving",5775}} }, - { 36, 1581, "The Deadmines", "D", 5, 1, { 26, 26, 24 }, + { 36, 1581, "The Deadmines", "D", 5, 1, { 26, 24, 24 }, { 2040, 166, 373 }, -- Underground Assault, The Defias Brotherhood, The Unsent Letter {{"Edwin VanCleef",639}, {"Rhahk'Zor",644}, {"Sneed's Shredder",642}, {"Gilnid",1763}, {"Mr. Smite",646}, {"Captain Greenskin",647}, {"Cookie",645}} }, - { 33, 209, "Shadowfang Keep", "D", 5, 1, { 30, 30, 25 }, + { 33, 209, "Shadowfang Keep", "D", 5, 1, { 30, 25, 25 }, { 1013, 1014 }, -- The Book of Ur, Arugal Must Die // Deathstalkers in Shadowfang removed (inside completion) {{"Archmage Arugal",4275}, {"Rethilgore",3914}, {"Razorclaw the Butcher",3886}, {"Baron Silverlaine",3887}, {"Commander Springvale",4278}, {"Odo the Blindwatcher",4279}, {"Fenrus the Devourer",4274}, {"Wolf Master Nandos",3927}} }, - { 48, 719, "Blackfathom Deeps", "D", 5, 1, { 32, 32, 28 }, + { 48, 719, "Blackfathom Deeps", "D", 5, 1, { 32, 28, 28 }, { 971, 1199, 6565, 6921, 1200, 6561, 6922 }, -- 1198 removed (inside completion) {{"Aku'mai",4829}, {"Ghamoo-ra",4887}, {"Lady Sarevess",4831}, {"Gelihast",6243}, {"Lorgus Jett",12902}, {"Twilight Lord Kelris",4832}, {"Old Serra'kis",4830}} }, - { 34, 717, "The Stockade", "D", 5, 1, { 32, 32, 29 }, + { 34, 717, "The Stockade", "D", 5, 1, { 32, 29, 29 }, { 387, 386, 378, 388, 377, 391 }, {{"Bazil Thredd",1716}, {"Targorr the Dread",1696}, {"Kam Deepfury",1666}, {"Hamhock",1717}, {"Dextren Ward",1663}} }, - { 47, 491, "Razorfen Kraul", "D", 5, 1, { 38, 38, 31 }, + { 47, 491, "Razorfen Kraul", "D", 5, 1, { 38, 31, 31 }, { 1221, 1102, 1109, 1101, 1142, 6522 }, -- 1144 removed (inside completion) {{"Charlga Razorflank",4421}, {"Roogug",6168}, {"Aggem Thorncurse",4424}, {"Death Speaker Jargba",4428}, {"Overlord Ramtusk",4420}, {"Agathelos the Raging",4422}} }, - { 90, 721, "Gnomeregan", "D", 5, 1, { 38, 38, 32 }, + { 90, 721, "Gnomeregan", "D", 5, 1, { 38, 32, 32 }, { 2904, 2924, 2930, 2929, 2841 }, -- 2945, 2951 removed (inside completion), 2929 removed (outside quest) {{"Mekgineer Thermaplugg",7800}, {"Grubbis ",7361}, {"Viscous Fallout",7079}, {"Electrocutioner 6000",6235}, {"Crowd Pummeler 9-60",6229}} }, - { 129, 722, "Razorfen Downs", "D", 5, 1, { 46, 46, 41 }, + { 129, 722, "Razorfen Downs", "D", 5, 1, { 46, 41, 41 }, { 3636, 3341 }, -- 3525 removed (inside completion) {{"Amnennar the Coldbringer",7358}, {"Tuten'kash",7355}, {"Mordresh Fire Eye",7357}, {"Glutton",8567}} }, - { 189, 796, "Scarlet Monastery", "D", 5, 1, { 45, 45, 44 }, + { 189, 796, "Scarlet Monastery", "D", 5, 1, { 45, 44, 44 }, {}, {} -- Empty boss list allows logging of bosses in the wings (do not touch!) }, - { 18901, 79601, "Scarlet Monastery (GY)", "D", 5, 1, { 45, 45, 44 }, -- Bit of a hack here, the 4 wings don't have a separate ID, so we fake one for them + { 18901, 79601, "Scarlet Monastery (GY)", "D", 5, 1, { 45, 44, 44 }, -- Bit of a hack here, the 4 wings don't have a separate ID, so we fake one for them {}, -- No quests in GY { {"Bloodmage Thalnos", 4543}, {"Interrogator Vishas", 3983} } }, - { 18902, 79602, "Scarlet Monastery (Lib)", "D", 5, 1, { 45, 45, 44 }, + { 18902, 79602, "Scarlet Monastery (Lib)", "D", 5, 1, { 45, 44, 44 }, { 1050, 1053, 1049, 1048, 1160, 1951 }, -- 1048+1053: kill 4 bosses needs Lib+Cath+Arm { {"Arcanist Doan", 6487}, {"Houndmaster Loksey", 3974} } }, - { 18903, 79603, "Scarlet Monastery (Cath)", "D", 5, 1, { 45, 45, 44 }, + { 18903, 79603, "Scarlet Monastery (Cath)", "D", 5, 1, { 45, 44, 44 }, { 1053, 1048 }, -- 1048+1053: kill 4 bosses needs Lib+Cath+Arm { {"Scarlet Commander Mograine", 3976}, {"High Inquisitor Whitemane", 3977}, {"High Inquisitor Fairbanks", 4542 } } }, - { 18904, 79604, "Scarlet Monastery (Arm)", "D", 5, 1, { 45, 45, 44 }, + { 18904, 79604, "Scarlet Monastery (Arm)", "D", 5, 1, { 45, 44, 44 }, { 1053, 1048 }, -- 1048+1053: kill 4 bosses needs Lib+Cath+Arm { {"Herod", 3975} } }, - { 70, 1137, "Uldaman", "D", 5, 1, { 51, 51, 44 }, + { 70, 1137, "Uldaman", "D", 5, 1, { 51, 44, 44 }, { 2240, 1139, 2204 }, -- 2278 removed (inside completion) {{"Archaedas",2748}, {"Revelosh",6910}, {"Ironaya",7228}, {"Obsidian Sentinel",7023}, {"Ancient Stone Keeper",7206}, {"Galgann Firehammer",7291}, {"Grimlok",4854}} }, - { 209, 1176, "Zul'Farrak", "D", 5, 1, { 54, 54, 50 }, + { 209, 1176, "Zul'Farrak", "D", 5, 1, { 54, 50, 50 }, { 3042, 2865, 2846, 2768, 2770, 3527, 2991, 2936 }, {{"Chief Ukorz Sandscalp",7267}, {"Ruuzlu",7797}, {"Antu'sul",8127}, {"Theka the Martyr",7272}, {"Witch Doctor Zum'rah",7271}, {"Nekrum Gutchewer",7796}, {"Shadowpriest Sezz'ziz",7275}, {"Sergeant Bly",7604}, {"Hydromancer Velratha",7795}} }, - { 349, 2100, "Maraudon", "D", 5, 1, { 55, 55, 52 }, + { 349, 2100, "Maraudon", "D", 5, 1, { 55, 52, 52 }, { 7041, 7029, 7065, 7064, 7067 }, -- 7044+7046 removed (inside completion) {{"Princess Theradras",12201}, {"Noxxion",13282}, {"Razorlash",12258}, {"Lord Vyletongue",12236}, {"Celebras the Cursed",12225}, {"Landslide",12203}, {"Tinkerer Gizlock",13601}, {"Rotgrip",13596}} }, - { 109, 1477, "The Temple of Atal'Hakkar", "D", 5, 1, { 60, 59, 54 }, + { 109, 1477, "The Temple of Atal'Hakkar", "D", 5, 1, { 60, 54, 54 }, { 3528 }, -- 1475, 4143, 4146, removed: tablets and haze drop outside; 3446+3373+3447 removed (inside completion) {{"Shade of Eranikus",5709}, {"Atal'alarion",8580}, {"Dreamscythe",5721}, {"Weaver",5720}, {"Jammal'an the Prophet",5710}, {"Ogom the Wretched",5711}, {"Morphaz",5719}, {"Hazzas",5722}, {"Avatar of Hakkar",8443}} }, From 9c1f55c353c3031d55c0621e400a54ccd13e392e Mon Sep 17 00:00:00 2001 From: Holiest WoW Date: Wed, 21 Jan 2026 13:50:28 -0500 Subject: [PATCH 08/12] Hotfix issues with played message spam on custom chat windows and dungeon party member verification lua errors --- Dungeons.lua | 4 +- Hardcore.lua | 117 +++++++++++++++++-------------------------- Hardcore_Cata.toc | 4 +- Hardcore_Classic.toc | 4 +- Hardcore_TBC.toc | 4 +- MainMenu.lua | 8 ++- 6 files changed, 62 insertions(+), 79 deletions(-) diff --git a/Dungeons.lua b/Dungeons.lua index aeebe6d9..59809062 100644 --- a/Dungeons.lua +++ b/Dungeons.lua @@ -732,7 +732,7 @@ local function DungeonTrackerSendPulse(now) end local data = name .. COMM_FIELD_DELIM - .. GetAddOnMetadata("Hardcore", "Version") + .. C_AddOns.GetAddOnMetadata("Hardcore", "Version") .. COMM_FIELD_DELIM .. now .. COMM_FIELD_DELIM @@ -1111,7 +1111,7 @@ local function DungeonTrackerCheckVersions() for i,v in ipairs( party ) do if v == UnitName("player") then local my_status = Hardcore:GetCleanVerificationStatus() - message = message .. v .. ":" .. GetAddOnMetadata("Hardcore", "Version") .. " [" .. my_status .. "]" + message = message .. v .. ":" .. C_AddOns.GetAddOnMetadata("Hardcore", "Version") .. " [" .. my_status .. "]" else message = message .. v .. ":" if dt_party_member_addon_version[ v ] ~= nil then diff --git a/Hardcore.lua b/Hardcore.lua index 71d17bdb..a80712da 100644 --- a/Hardcore.lua +++ b/Hardcore.lua @@ -828,37 +828,42 @@ function Hardcore:Startup() end) end - if not Hardcore.Original_ChatFrame1_AddMessage then - Hardcore.Original_ChatFrame1_AddMessage = ChatFrame1.AddMessage - end - - ChatFrame1.AddMessage = function(self, text, ...) - -- Safety check: ensure text exists and buffer is active - if text and HIDE_RTP_CHAT_MSG_BUFFER > 0 then - - -- Define the patterns to look for (strip the %s variable) - local totalPrefix = string.gsub(TIME_PLAYED_TOTAL, "%%s", "") - local levelPrefix = string.gsub(TIME_PLAYED_LEVEL, "%%s", "") - - -- Check for "Total time played" - if string.find(text, totalPrefix, 1, true) then - -- Return without calling original function -> Message Hidden - return - end - - -- Check for "Time played this level" - if string.find(text, levelPrefix, 1, true) then - -- Decrement buffer - HIDE_RTP_CHAT_MSG_BUFFER = HIDE_RTP_CHAT_MSG_BUFFER - 1 - if HIDE_RTP_CHAT_MSG_BUFFER < 0 then HIDE_RTP_CHAT_MSG_BUFFER = 0 end - - return -- Message Hidden - end - end + -- Hook ALL Chat Frames (1 through 10) to catch custom tabs + for i = 1, 10 do + local frameName = "ChatFrame" .. i + local frame = _G[frameName] + + if frame then + if not Hardcore.Original_AddMessage_Hooks then + Hardcore.Original_AddMessage_Hooks = {} + end + + -- Save the original function if we haven't already + if not Hardcore.Original_AddMessage_Hooks[frame] then + Hardcore.Original_AddMessage_Hooks[frame] = frame.AddMessage + end - -- If not hidden, pass it to the real chat frame - return Hardcore.Original_ChatFrame1_AddMessage(self, text, ...) - end + -- Apply the new hook + frame.AddMessage = function(self, text, ...) + -- Define patterns to check + local totalPrefix = string.gsub(TIME_PLAYED_TOTAL or "Total time played", "%%s", "") + local levelPrefix = string.gsub(TIME_PLAYED_LEVEL or "Time played this level", "%%s", "") + + -- Check if the text matches the "Time Played" format + if text and (string.find(text, totalPrefix, 1, true) or string.find(text, levelPrefix, 1, true)) then + -- If it matches, ONLY allow it if the user manually asked for it + if not Hardcore.UserRequestedPlayed then + return -- BLOCK IT + end + end + + -- Otherwise, pass it through to the original handler + if Hardcore.Original_AddMessage_Hooks[self] then + return Hardcore.Original_AddMessage_Hooks[self](self, text, ...) + end + end + end + end -- event handling helper self:SetScript("OnEvent", function(self, event, ...) @@ -1009,32 +1014,20 @@ function Hardcore:PLAYER_LOGIN() -- For dungeon tracking targetting of door npcs --self:RegisterEvent("ADDON_ACTION_FORBIDDEN") - ChatFrame_AddMessageEventFilter("CHAT_MSG_SYSTEM", function(frame, event, message, ...) - - -- 1. Check if this is a "Time Played" message - -- We clean the global strings to remove the %s variable so we can match the text + --[[ChatFrame_AddMessageEventFilter("CHAT_MSG_SYSTEM", function(frame, event, message, ...) local totalPrefix = string.gsub(TIME_PLAYED_TOTAL or "Total time played", "%%s", "") local levelPrefix = string.gsub(TIME_PLAYED_LEVEL or "Time played this level", "%%s", "") - local isTimePlayedMsg = false - if string.find(message, totalPrefix, 1, true) or string.find(message, levelPrefix, 1, true) then - isTimePlayedMsg = true - end - - -- 2. Logic: Hide it if it's automated, Show it if it's manual - if isTimePlayedMsg then - if Hardcore.UserRequestedPlayed then - -- The user explicitly asked for this. Let them see it. - -- (We don't reset the flag here immediately because the "Level" message comes right after the "Total" message) - return false, message, ... - else - -- The user did NOT type /played. This is spam from our addon loop. Hide it. + -- If this is a time played message... + if (string.find(message, totalPrefix, 1, true) or string.find(message, levelPrefix, 1, true)) then + -- ...and the user didn't ask for it -> BLOCK IT (return true) + if not Hardcore.UserRequestedPlayed then return true end end return false, message, ... - end) + end)]]-- Hardcore:InitializeSavedVariables() Hardcore:InitializeSettingsSavedVariables() @@ -2110,34 +2103,18 @@ end local Cached_ChatFrame_DisplayTimePlayed = ChatFrame_DisplayTimePlayed ChatFrame_DisplayTimePlayed = function(...) - -- Debug: Check what the buffer sees when the game tries to print the message - if debug then - Hardcore:Debug("Game attempted to display TimePlayed. Current Buffer: " .. tostring(HIDE_RTP_CHAT_MSG_BUFFER)) + -- If the user didn't type /played manually, hide the output. + if not Hardcore.UserRequestedPlayed then + return end - if HIDE_RTP_CHAT_MSG_BUFFER == 1 then - HIDE_RTP_CHAT_MSG_BUFFER = HIDE_RTP_CHAT_MSG_BUFFER - 1 - if debug then - Hardcore:Debug("Message Hidden. New Buffer: " .. tostring(HIDE_RTP_CHAT_MSG_BUFFER)) - end - return - elseif HIDE_RTP_CHAT_MSG_BUFFER == 2 then - HIDE_RTP_CHAT_MSG_BUFFER = HIDE_RTP_CHAT_MSG_BUFFER - 2 - if debug then - Hardcore:Debug("Messages Hidden. New Buffer: " .. tostring(HIDE_RTP_CHAT_MSG_BUFFER)) - end - return - end - - -- If buffer is 0, we let the message through + -- If the user asked for it, let it through. return Cached_ChatFrame_DisplayTimePlayed(...) end function Hardcore:RequestTimePlayed() - HIDE_RTP_CHAT_MSG_BUFFER = HIDE_RTP_CHAT_MSG_BUFFER + 1 - if HIDE_RTP_CHAT_MSG_BUFFER > HIDE_RTP_CHAT_MSG_BUFFER_MAX then - HIDE_RTP_CHAT_MSG_BUFFER = HIDE_RTP_CHAT_MSG_BUFFER_MAX - end + -- We simply request the time. The display hook will handle the blocking + -- because Hardcore.UserRequestedPlayed will be false. RequestTimePlayed() end diff --git a/Hardcore_Cata.toc b/Hardcore_Cata.toc index 8a4cb0e8..0fcb9cdc 100644 --- a/Hardcore_Cata.toc +++ b/Hardcore_Cata.toc @@ -1,10 +1,10 @@ ## Interface: 50500 -## Title: Hardcore 0.11.59b +## Title: Hardcore 0.11.59c ## Notes: Supports Classic Hardcore ## Author: The Classic Hardcore team, Molikar (Sean Kennedy) ## X-License: All Rights Reserved ## X-Category: Leveling,Guild -## Version: 0.11.59b +## Version: 0.11.59c ## DefaultState: enabled diff --git a/Hardcore_Classic.toc b/Hardcore_Classic.toc index af94a885..7b2b614b 100644 --- a/Hardcore_Classic.toc +++ b/Hardcore_Classic.toc @@ -1,11 +1,11 @@ ## Interface: 11507 -## Title: Hardcore 0.11.59b +## Title: Hardcore 0.11.59c ## Notes: Supports Classic Hardcore ## Author: The Classic Hardcore team, Molikar (Sean Kennedy) ## X-License: All Rights Reserved ## X-Category: Leveling,Guild -## Version: 0.11.59b +## Version: 0.11.59c ## DefaultState: enabled diff --git a/Hardcore_TBC.toc b/Hardcore_TBC.toc index b4eae726..ed6bb80d 100644 --- a/Hardcore_TBC.toc +++ b/Hardcore_TBC.toc @@ -1,11 +1,11 @@ ## Interface: 20505 -## Title: Hardcore 0.11.59b +## Title: Hardcore 0.11.59c ## Notes: Supports TBC Hardcore ## Author: The Classic Hardcore team, Molikar (Sean Kennedy) ## X-License: All Rights Reserved ## X-Category: Leveling,Guild -## Version: 0.11.59b +## Version: 0.11.59c ## IconTexture: Interface\AddOns\Hardcore\Media\wowhc-emblem-white-red.blp ## DefaultState: enabled diff --git a/MainMenu.lua b/MainMenu.lua index 67919b58..b2a7d00f 100644 --- a/MainMenu.lua +++ b/MainMenu.lua @@ -316,6 +316,12 @@ local function DrawGeneralTab(container) changelog_title:SetFont("Interface\\Addons\\Hardcore\\Media\\BreatheFire.ttf", 20, "") scroll_frame:AddChild(changelog_title) + CreateHeadingLabel("11.59c", scroll_frame) + CreateDescriptionLabel( + "- Hotfix for dungeon group lua errors.", + scroll_frame + ) + CreateHeadingLabel("11.59b", scroll_frame) CreateDescriptionLabel( "- Updated TBC dungeon levels and implemented a grandfather status for dungeons that were run at max level when the required levels were higher.", @@ -1317,7 +1323,7 @@ local function DrawDungeonsTab(container, _hardcore_character) for i, v in pairs(_dt_runs) do local suffix = "" -- Check if run happened before Jan 17, 2026 (Grandfathered) - if v.start and v.start < 1768669200 and (Hardcore_Character.game_version == "TBC" or Hardcore_Character.game_version == "MoP") then + if v.start and v.start < 1768694400 and (Hardcore_Character.game_version == "TBC" or Hardcore_Character.game_version == "MoP") then suffix = " |cff00ff00(*)|r" -- Adds a green (*) end name_str = name_str .. v.name .. suffix .. GetEntryCountString(v) .. "\n" From 3b3770939877f103178a4bb8c9db7ca0234b83e2 Mon Sep 17 00:00:00 2001 From: HoliestWoW Date: Fri, 6 Feb 2026 11:02:09 -0500 Subject: [PATCH 09/12] Hotfix for store mount monitoring --- Dungeons.lua | 4 +- Hardcore.lua | 180 ++++++++++++++++++++++++++----------------- Hardcore_Cata.toc | 4 +- Hardcore_Classic.toc | 4 +- Hardcore_TBC.toc | 4 +- MainMenu.lua | 14 +++- 6 files changed, 130 insertions(+), 80 deletions(-) diff --git a/Dungeons.lua b/Dungeons.lua index aeebe6d9..59809062 100644 --- a/Dungeons.lua +++ b/Dungeons.lua @@ -732,7 +732,7 @@ local function DungeonTrackerSendPulse(now) end local data = name .. COMM_FIELD_DELIM - .. GetAddOnMetadata("Hardcore", "Version") + .. C_AddOns.GetAddOnMetadata("Hardcore", "Version") .. COMM_FIELD_DELIM .. now .. COMM_FIELD_DELIM @@ -1111,7 +1111,7 @@ local function DungeonTrackerCheckVersions() for i,v in ipairs( party ) do if v == UnitName("player") then local my_status = Hardcore:GetCleanVerificationStatus() - message = message .. v .. ":" .. GetAddOnMetadata("Hardcore", "Version") .. " [" .. my_status .. "]" + message = message .. v .. ":" .. C_AddOns.GetAddOnMetadata("Hardcore", "Version") .. " [" .. my_status .. "]" else message = message .. v .. ":" if dt_party_member_addon_version[ v ] ~= nil then diff --git a/Hardcore.lua b/Hardcore.lua index 71d17bdb..d9a7c70b 100644 --- a/Hardcore.lua +++ b/Hardcore.lua @@ -149,6 +149,13 @@ local bubble_hearth_vars = { light_of_elune_name = "Light of Elune", } +local STORE_MOUNT_ITEMS = { + [260759] = true, + [260438] = true, + [184865] = true, +} +local STORE_MOUNT_SPELL_NAMES = {} + -- Ranks local hc_id2rank = { ["1"] = "officer", @@ -407,6 +414,7 @@ Hardcore_Alert_Frame:SetScale(0.7) -- the big frame object for our addon local Hardcore = CreateFrame("Frame", "Hardcore", nil, "BackdropTemplate") Hardcore.ALERT_STYLES = ALERT_STYLES +Hardcore.STORE_MOUNT_SPELL_NAMES = STORE_MOUNT_SPELL_NAMES Hardcore_Frame:ApplyBackdrop() @@ -828,37 +836,42 @@ function Hardcore:Startup() end) end - if not Hardcore.Original_ChatFrame1_AddMessage then - Hardcore.Original_ChatFrame1_AddMessage = ChatFrame1.AddMessage - end - - ChatFrame1.AddMessage = function(self, text, ...) - -- Safety check: ensure text exists and buffer is active - if text and HIDE_RTP_CHAT_MSG_BUFFER > 0 then - - -- Define the patterns to look for (strip the %s variable) - local totalPrefix = string.gsub(TIME_PLAYED_TOTAL, "%%s", "") - local levelPrefix = string.gsub(TIME_PLAYED_LEVEL, "%%s", "") - - -- Check for "Total time played" - if string.find(text, totalPrefix, 1, true) then - -- Return without calling original function -> Message Hidden - return - end - - -- Check for "Time played this level" - if string.find(text, levelPrefix, 1, true) then - -- Decrement buffer - HIDE_RTP_CHAT_MSG_BUFFER = HIDE_RTP_CHAT_MSG_BUFFER - 1 - if HIDE_RTP_CHAT_MSG_BUFFER < 0 then HIDE_RTP_CHAT_MSG_BUFFER = 0 end - - return -- Message Hidden - end - end + -- Hook ALL Chat Frames (1 through 10) to catch custom tabs + for i = 1, 10 do + local frameName = "ChatFrame" .. i + local frame = _G[frameName] + + if frame then + if not Hardcore.Original_AddMessage_Hooks then + Hardcore.Original_AddMessage_Hooks = {} + end + + -- Save the original function if we haven't already + if not Hardcore.Original_AddMessage_Hooks[frame] then + Hardcore.Original_AddMessage_Hooks[frame] = frame.AddMessage + end - -- If not hidden, pass it to the real chat frame - return Hardcore.Original_ChatFrame1_AddMessage(self, text, ...) - end + -- Apply the new hook + frame.AddMessage = function(self, text, ...) + -- Define patterns to check + local totalPrefix = string.gsub(TIME_PLAYED_TOTAL or "Total time played", "%%s", "") + local levelPrefix = string.gsub(TIME_PLAYED_LEVEL or "Time played this level", "%%s", "") + + -- Check if the text matches the "Time Played" format + if text and (string.find(text, totalPrefix, 1, true) or string.find(text, levelPrefix, 1, true)) then + -- If it matches, ONLY allow it if the user manually asked for it + if not Hardcore.UserRequestedPlayed then + return -- BLOCK IT + end + end + + -- Otherwise, pass it through to the original handler + if Hardcore.Original_AddMessage_Hooks[self] then + return Hardcore.Original_AddMessage_Hooks[self](self, text, ...) + end + end + end + end -- event handling helper self:SetScript("OnEvent", function(self, event, ...) @@ -997,6 +1010,12 @@ function Hardcore:PLAYER_LOGIN() self:RegisterEvent("UNIT_SPELLCAST_START") self:RegisterEvent("UNIT_SPELLCAST_STOP") self:RegisterEvent("UNIT_SPELLCAST_SUCCEEDED") + + self:RegisterEvent("CHAT_MSG_LOOT") + self:RegisterEvent("GET_ITEM_INFO_RECEIVED") + + -- Request info immediately so server sends it + for id, _ in pairs(STORE_MOUNT_ITEMS) do GetItemInfo(id) end -- For inspecting other player's status -- INSPECT READY DISABLED FOR CATA PRE-PATCH @@ -1009,32 +1028,20 @@ function Hardcore:PLAYER_LOGIN() -- For dungeon tracking targetting of door npcs --self:RegisterEvent("ADDON_ACTION_FORBIDDEN") - ChatFrame_AddMessageEventFilter("CHAT_MSG_SYSTEM", function(frame, event, message, ...) - - -- 1. Check if this is a "Time Played" message - -- We clean the global strings to remove the %s variable so we can match the text + --[[ChatFrame_AddMessageEventFilter("CHAT_MSG_SYSTEM", function(frame, event, message, ...) local totalPrefix = string.gsub(TIME_PLAYED_TOTAL or "Total time played", "%%s", "") local levelPrefix = string.gsub(TIME_PLAYED_LEVEL or "Time played this level", "%%s", "") - local isTimePlayedMsg = false - if string.find(message, totalPrefix, 1, true) or string.find(message, levelPrefix, 1, true) then - isTimePlayedMsg = true - end - - -- 2. Logic: Hide it if it's automated, Show it if it's manual - if isTimePlayedMsg then - if Hardcore.UserRequestedPlayed then - -- The user explicitly asked for this. Let them see it. - -- (We don't reset the flag here immediately because the "Level" message comes right after the "Total" message) - return false, message, ... - else - -- The user did NOT type /played. This is spam from our addon loop. Hide it. + -- If this is a time played message... + if (string.find(message, totalPrefix, 1, true) or string.find(message, levelPrefix, 1, true)) then + -- ...and the user didn't ask for it -> BLOCK IT (return true) + if not Hardcore.UserRequestedPlayed then return true end end return false, message, ... - end) + end)]]-- Hardcore:InitializeSavedVariables() Hardcore:InitializeSettingsSavedVariables() @@ -1225,6 +1232,21 @@ function Hardcore:PLAYER_LOGIN() Hardcore_StoreCharacterInfo() end +function Hardcore:GET_ITEM_INFO_RECEIVED(itemID) + if STORE_MOUNT_ITEMS[itemID] then + local spellName = GetItemSpell(itemID) + if spellName then STORE_MOUNT_SPELL_NAMES[spellName] = true end + end +end + +function Hardcore:CHAT_MSG_LOOT(message) + local itemID = tonumber(message:match("item:(%d+)")) + if itemID and STORE_MOUNT_ITEMS[itemID] then + Hardcore:Print("|cFFFF0000WARNING:|r Store Mount looted. DO NOT USE or you will FAIL.") + Hardcore:ShowAlertFrame(Hardcore.ALERT_STYLES.hc_red, "WARNING: Store Mount Detected.\nDO NOT USE or you will FAIL.") + end +end + function Hardcore:PLAYER_LOGOUT() -- Stop further updates to the played time and tracked time, don't want them -- changing after the checksum is stored @@ -1426,6 +1448,23 @@ end function Hardcore:UNIT_SPELLCAST_SUCCEEDED(...) local unit, _, spell_id, _, _ = ... + if unit == "player" then + local spellName = GetSpellInfo(spell_id) + if spellName and STORE_MOUNT_SPELL_NAMES[spellName] then + -- 1. Fail the run via Bubble Hearth bucket (secured by Security.lua checksum) + table.insert(Hardcore_Character.bubble_hearth_incidents, { + start_cast = date("%m/%d/%y %H:%M:%S"), + aura_type = "STORE MOUNT: " .. spellName, -- Clearly labeled for moderators + guid = PLAYER_GUID + }) + Hardcore_StoreChecksum() -- Immediately secure the failure + + -- 2. Visual/Chat Alerts + Hardcore:Print("|cFFFF0000FAILURE:|r Prohibited Store Mount used ("..spellName..").") + Hardcore:ShowAlertFrame(Hardcore.ALERT_STYLES.death, "Hardcore Challenge FAILED\nReason: Store Mount Used") + SendChatMessage(PLAYER_NAME .. " failed HC by using a Store Mount: " .. spellName, "GUILD") + end + end -- 8690 is hearth spellid if STARTED_BUBBLE_HEARTH_INFO ~= nil then if unit == "player" and spell_id == bubble_hearth_vars.spell_id then @@ -2110,34 +2149,18 @@ end local Cached_ChatFrame_DisplayTimePlayed = ChatFrame_DisplayTimePlayed ChatFrame_DisplayTimePlayed = function(...) - -- Debug: Check what the buffer sees when the game tries to print the message - if debug then - Hardcore:Debug("Game attempted to display TimePlayed. Current Buffer: " .. tostring(HIDE_RTP_CHAT_MSG_BUFFER)) + -- If the user didn't type /played manually, hide the output. + if not Hardcore.UserRequestedPlayed then + return end - if HIDE_RTP_CHAT_MSG_BUFFER == 1 then - HIDE_RTP_CHAT_MSG_BUFFER = HIDE_RTP_CHAT_MSG_BUFFER - 1 - if debug then - Hardcore:Debug("Message Hidden. New Buffer: " .. tostring(HIDE_RTP_CHAT_MSG_BUFFER)) - end - return - elseif HIDE_RTP_CHAT_MSG_BUFFER == 2 then - HIDE_RTP_CHAT_MSG_BUFFER = HIDE_RTP_CHAT_MSG_BUFFER - 2 - if debug then - Hardcore:Debug("Messages Hidden. New Buffer: " .. tostring(HIDE_RTP_CHAT_MSG_BUFFER)) - end - return - end - - -- If buffer is 0, we let the message through + -- If the user asked for it, let it through. return Cached_ChatFrame_DisplayTimePlayed(...) end function Hardcore:RequestTimePlayed() - HIDE_RTP_CHAT_MSG_BUFFER = HIDE_RTP_CHAT_MSG_BUFFER + 1 - if HIDE_RTP_CHAT_MSG_BUFFER > HIDE_RTP_CHAT_MSG_BUFFER_MAX then - HIDE_RTP_CHAT_MSG_BUFFER = HIDE_RTP_CHAT_MSG_BUFFER_MAX - end + -- We simply request the time. The display hook will handle the blocking + -- because Hardcore.UserRequestedPlayed will be false. RequestTimePlayed() end @@ -3414,7 +3437,22 @@ function Hardcore:GenerateVerificationStatusStrings() end if numBubs > 0 then - table.insert(reds, "bub-hrth=" .. numBubs) + -- Check if any bubble hearth incident is actually a store mount violation + local isStoreMount = false + if Hardcore_Character.bubble_hearth_incidents then + for _, v in ipairs(Hardcore_Character.bubble_hearth_incidents) do + if v.aura_type and string.find(v.aura_type, "STORE MOUNT") then + isStoreMount = true + break + end + end + end + + if isStoreMount then + table.insert(reds, "FAIL(StoreMount)") + else + table.insert(reds, "bub-hrth=" .. numBubs) + end end if numRepRuns > 0 then diff --git a/Hardcore_Cata.toc b/Hardcore_Cata.toc index 8a4cb0e8..cc9af336 100644 --- a/Hardcore_Cata.toc +++ b/Hardcore_Cata.toc @@ -1,10 +1,10 @@ ## Interface: 50500 -## Title: Hardcore 0.11.59b +## Title: Hardcore 0.11.60 ## Notes: Supports Classic Hardcore ## Author: The Classic Hardcore team, Molikar (Sean Kennedy) ## X-License: All Rights Reserved ## X-Category: Leveling,Guild -## Version: 0.11.59b +## Version: 0.11.60 ## DefaultState: enabled diff --git a/Hardcore_Classic.toc b/Hardcore_Classic.toc index af94a885..47454ef6 100644 --- a/Hardcore_Classic.toc +++ b/Hardcore_Classic.toc @@ -1,11 +1,11 @@ ## Interface: 11507 -## Title: Hardcore 0.11.59b +## Title: Hardcore 0.11.60 ## Notes: Supports Classic Hardcore ## Author: The Classic Hardcore team, Molikar (Sean Kennedy) ## X-License: All Rights Reserved ## X-Category: Leveling,Guild -## Version: 0.11.59b +## Version: 0.11.60 ## DefaultState: enabled diff --git a/Hardcore_TBC.toc b/Hardcore_TBC.toc index b4eae726..6b1a34bb 100644 --- a/Hardcore_TBC.toc +++ b/Hardcore_TBC.toc @@ -1,11 +1,11 @@ ## Interface: 20505 -## Title: Hardcore 0.11.59b +## Title: Hardcore 0.11.60 ## Notes: Supports TBC Hardcore ## Author: The Classic Hardcore team, Molikar (Sean Kennedy) ## X-License: All Rights Reserved ## X-Category: Leveling,Guild -## Version: 0.11.59b +## Version: 0.11.60 ## IconTexture: Interface\AddOns\Hardcore\Media\wowhc-emblem-white-red.blp ## DefaultState: enabled diff --git a/MainMenu.lua b/MainMenu.lua index 67919b58..df80f023 100644 --- a/MainMenu.lua +++ b/MainMenu.lua @@ -316,6 +316,18 @@ local function DrawGeneralTab(container) changelog_title:SetFont("Interface\\Addons\\Hardcore\\Media\\BreatheFire.ttf", 20, "") scroll_frame:AddChild(changelog_title) + CreateHeadingLabel("11.60", scroll_frame) + CreateDescriptionLabel( + "- Store mount prohibition update", + scroll_frame + ) + + CreateHeadingLabel("11.59c", scroll_frame) + CreateDescriptionLabel( + "- Hotfix for dungeon group lua errors.", + scroll_frame + ) + CreateHeadingLabel("11.59b", scroll_frame) CreateDescriptionLabel( "- Updated TBC dungeon levels and implemented a grandfather status for dungeons that were run at max level when the required levels were higher.", @@ -1317,7 +1329,7 @@ local function DrawDungeonsTab(container, _hardcore_character) for i, v in pairs(_dt_runs) do local suffix = "" -- Check if run happened before Jan 17, 2026 (Grandfathered) - if v.start and v.start < 1768669200 and (Hardcore_Character.game_version == "TBC" or Hardcore_Character.game_version == "MoP") then + if v.start and v.start < 1768694400 and (Hardcore_Character.game_version == "TBC" or Hardcore_Character.game_version == "MoP") then suffix = " |cff00ff00(*)|r" -- Adds a green (*) end name_str = name_str .. v.name .. suffix .. GetEntryCountString(v) .. "\n" From 05c03658c2ac8590d9b335d3d0637e6a44a58550 Mon Sep 17 00:00:00 2001 From: HoliestWoW Date: Fri, 6 Feb 2026 11:27:48 -0500 Subject: [PATCH 10/12] Added mount monitoring with spell ID tracking. --- Hardcore.lua | 20 ++++++++++++++------ 1 file changed, 14 insertions(+), 6 deletions(-) diff --git a/Hardcore.lua b/Hardcore.lua index d9a7c70b..88e02a97 100644 --- a/Hardcore.lua +++ b/Hardcore.lua @@ -156,6 +156,12 @@ local STORE_MOUNT_ITEMS = { } local STORE_MOUNT_SPELL_NAMES = {} +local STORE_MOUNT_SPELLS = { + [1266345] = "Cerulean Spell-Weaver", + [348459] = "Reawakened Phase-Hunter", + [1266866] = "Starshard Netherdrake", +} + -- Ranks local hc_id2rank = { ["1"] = "officer", @@ -1447,22 +1453,24 @@ function Hardcore:UNIT_SPELLCAST_STOP(...) end function Hardcore:UNIT_SPELLCAST_SUCCEEDED(...) - local unit, _, spell_id, _, _ = ... if unit == "player" then - local spellName = GetSpellInfo(spell_id) - if spellName and STORE_MOUNT_SPELL_NAMES[spellName] then + -- Use the Spell ID directly for 100% accuracy + if STORE_MOUNT_SPELLS[spell_id] then + local mountName = STORE_MOUNT_SPELLS[spell_id] + -- 1. Fail the run via Bubble Hearth bucket (secured by Security.lua checksum) table.insert(Hardcore_Character.bubble_hearth_incidents, { start_cast = date("%m/%d/%y %H:%M:%S"), - aura_type = "STORE MOUNT: " .. spellName, -- Clearly labeled for moderators + aura_type = "STORE MOUNT: " .. mountName, -- Clearly labeled for moderators guid = PLAYER_GUID }) Hardcore_StoreChecksum() -- Immediately secure the failure -- 2. Visual/Chat Alerts - Hardcore:Print("|cFFFF0000FAILURE:|r Prohibited Store Mount used ("..spellName..").") + Hardcore:Print("|cFFFF0000FAILURE:|r Prohibited Store Mount used ("..mountName..").") Hardcore:ShowAlertFrame(Hardcore.ALERT_STYLES.death, "Hardcore Challenge FAILED\nReason: Store Mount Used") - SendChatMessage(PLAYER_NAME .. " failed HC by using a Store Mount: " .. spellName, "GUILD") + SendChatMessage(PLAYER_NAME .. " failed HC by using a Store Mount: " .. mountName, "GUILD") + return -- Exit so we don't process standard bubble hearth logic end end -- 8690 is hearth spellid From d97ea73de66ecec088c3d0bf8fde60dfd3665c28 Mon Sep 17 00:00:00 2001 From: Holiest WoW Date: Mon, 23 Feb 2026 08:03:47 -0500 Subject: [PATCH 11/12] Updated dungeon warnings for max level characters. Imp Master achievement spelling errors corrected. --- Achievements/Duo.lua | 2 +- Achievements/ImpMaster.lua | 3 +- Dungeons.lua | 116 ++++++++++++++++++++++--------------- Hardcore.lua | 73 ++++++++++++++++++++++- Hardcore_Cata.toc | 4 +- Hardcore_Classic.toc | 4 +- Hardcore_TBC.toc | 4 +- MainMenu.lua | 12 ++++ 8 files changed, 162 insertions(+), 56 deletions(-) diff --git a/Achievements/Duo.lua b/Achievements/Duo.lua index 92b43d77..14273206 100644 --- a/Achievements/Duo.lua +++ b/Achievements/Duo.lua @@ -234,7 +234,7 @@ function duo_rules:Check() return end - local in_follow_range = CheckInteractDistance(member_str, 4) + local in_follow_range = UnitInRange(member_str) if in_follow_range then duo_rules:ResetWarn() return diff --git a/Achievements/ImpMaster.lua b/Achievements/ImpMaster.lua index fa7ca316..b3d077ef 100644 --- a/Achievements/ImpMaster.lua +++ b/Achievements/ImpMaster.lua @@ -3,7 +3,8 @@ local imp_master_achievement = CreateFrame("Frame") _G.achievements.ImpMaster = imp_master_achievement local blacklist_spells = { - "Summon Succcubus", + "Summon Succubus", + "Summon Incubus", "Summon Voidwalker", "Summon Felhunter", } diff --git a/Dungeons.lua b/Dungeons.lua index 59809062..59457bc1 100644 --- a/Dungeons.lua +++ b/Dungeons.lua @@ -310,6 +310,28 @@ local function DungeonTrackerAnyRunNamesRepeated() return false end +-- GetExpansionMaxLevel() +-- +-- Returns the maximum level for the current character's game version. + +local function GetExpansionMaxLevel() + local max_level = 60 -- Default fallback + if Hardcore_Character.game_version ~= nil then + if Hardcore_Character.game_version == "Era" or Hardcore_Character.game_version == "SoM" then + max_level = 60 + elseif Hardcore_Character.game_version == "TBC" then + max_level = 70 + elseif Hardcore_Character.game_version == "WotLK" then + max_level = 80 + elseif Hardcore_Character.game_version == "Cata" then + max_level = 85 + elseif Hardcore_Character.game_version == "MoP" then + max_level = 90 + end + end + return max_level +end + -- DungeonTrackerUpdateInfractions() -- -- Updates the dt.overleveled_runs and dt.repeated_runs variables @@ -319,17 +341,28 @@ end local function DungeonTrackerUpdateInfractions() local repeated = 0 local over_leveled = 0 + local expansion_max_level = GetExpansionMaxLevel() for i = 1, #Hardcore_Character.dt.runs do - -- Check overleveled run - if Hardcore_Character.dt.runs[i].level > DungeonTrackerGetDungeonMaxLevelAtRunTime(Hardcore_Character.dt.runs[i]) then - over_leveled = over_leveled + 1 - end - -- Check if the run is repeated further down in the array (this prevents counting runs twice when i ends up at j) - for j = i + 1, #Hardcore_Character.dt.runs do - if DungeonTrackerIsRepeatedRun(Hardcore_Character.dt.runs[i], Hardcore_Character.dt.runs[j]) then - repeated = repeated + 1 + -- Only count infractions if the run was completed BEFORE reaching max level + if Hardcore_Character.dt.runs[i].level < expansion_max_level then + + -- Check overleveled run + if Hardcore_Character.dt.runs[i].level > DungeonTrackerGetDungeonMaxLevelAtRunTime(Hardcore_Character.dt.runs[i]) then + over_leveled = over_leveled + 1 end + + -- Check if the run is repeated further down in the array + -- (prevents counting runs twice when i ends up at j) + for j = i + 1, #Hardcore_Character.dt.runs do + -- The repeat only counts if the subsequent run was ALSO done before max level + if Hardcore_Character.dt.runs[j].level < expansion_max_level then + if DungeonTrackerIsRepeatedRun(Hardcore_Character.dt.runs[i], Hardcore_Character.dt.runs[j]) then + repeated = repeated + 1 + end + end + end + end end @@ -366,24 +399,15 @@ local function DungeonTrackerWarnInfraction() end -- Get max level to know if we should even warn - if Hardcore_Character.game_version ~= nil then - local max_level - if Hardcore_Character.game_version == "Era" or Hardcore_Character.game_version == "SoM" then - max_level = 60 - elseif Hardcore_Character.game_version == "WotLK" then - max_level = 80 - else -- Cataclysm or anything else - max_level = 85 - end - if UnitLevel("player") >= max_level then - Hardcore_Character.dt.warn_infractions = false - return - end + local max_expansion_level = GetExpansionMaxLevel() + if UnitLevel("player") >= max_expansion_level then + Hardcore_Character.dt.warn_infractions = false + return end -- See if the player's level is allowed in this dungeon - local max_level = DungeonTrackerGetDungeonMaxLevel(Hardcore_Character.dt.current.name) - if Hardcore_Character.dt.current.level > max_level then + local max_dungeon_level = DungeonTrackerGetDungeonMaxLevel(Hardcore_Character.dt.current.name) + if Hardcore_Character.dt.current.level > max_dungeon_level then Hardcore_Character.dt.current.last_warn = Hardcore_Character.dt.current.time_inside message = "You are overleveled for " .. Hardcore_Character.dt.current.name .. ". Leave dungeon now!" Hardcore:Print(chat_color .. message) @@ -393,36 +417,36 @@ local function DungeonTrackerWarnInfraction() -- See if this dungeon was already in the list of completed runs, and warn every so many seconds if that is so for i, v in ipairs(Hardcore_Character.dt.runs) do if DungeonTrackerIsRepeatedRun(v, Hardcore_Character.dt.current) then - Hardcore_Character.dt.current.last_warn = Hardcore_Character.dt.current.time_inside - local instance_info1 = "" - local instance_info2 = "" - if v.iid ~= nil and Hardcore_Character.dt.current.iid ~= nil and v.iid ~= Hardcore_Character.dt.current.iid then - instance_info1 = " (ID:" .. Hardcore_Character.dt.current.iid .. ")" - instance_info2 = " (ID:" .. v.iid .. ")" + -- We only care if the previous run was ALSO done under max level + if v.level < max_expansion_level then + Hardcore_Character.dt.current.last_warn = Hardcore_Character.dt.current.time_inside + local instance_info1 = "" + local instance_info2 = "" + if v.iid ~= nil and Hardcore_Character.dt.current.iid ~= nil and v.iid ~= Hardcore_Character.dt.current.iid then + instance_info1 = " (ID:" .. Hardcore_Character.dt.current.iid .. ")" + instance_info2 = " (ID:" .. v.iid .. ")" + end + message = "You entered " .. v.name .. instance_info1 .. " already on " .. v.date .. instance_info2 + .. ". Leave dungeon now!" + Hardcore:Print( chat_color .. message) + Hardcore:ShowRedAlertFrame( message ) + break -- No need to warn about 3rd and higher entries end - message = "You entered " .. v.name .. instance_info1 .. " already on " .. v.date .. instance_info2 - .. ". Leave dungeon now!" - Hardcore:Print( chat_color .. message) - Hardcore:ShowRedAlertFrame( message ) - break -- No need to warn about 3rd and higher entries end end - -- The following code probably can't ever be called, since pending runs with different instance IDs are automatically - -- logged upon entry. But let's keep it here for now. Better warned twice, than never. - -- See if this dungeon was already in the list of pending runs (but with a different instanceID), and warn every so many seconds if that is so + -- See if this dungeon was already in the list of pending runs for i, v in ipairs(Hardcore_Character.dt.pending) do - -- We never warn about pending runs without an instanceID, they may or may not be the same as the current - -- (However, such pending runs should not exist, as they are deleted immediately when you exit the dungeon) - -- It is not possible for the IIDs to be the same at this point, as they would have been merged already if v.iid ~= nil and Hardcore_Character.dt.current.iid ~= nil then if DungeonTrackerIsRepeatedRun(v, Hardcore_Character.dt.current) then - Hardcore_Character.dt.current.last_warn = Hardcore_Character.dt.current.time_inside - message = "Your idle run of " .. v.name .. " of date ".. v.date .. " has another instance ID" - .. ". Leave dungeon now!" - Hardcore:Print( chat_color .. message ) - Hardcore:ShowRedAlertFrame( message ) - break -- No need to warn about 3rd and higher entries + if v.level < max_expansion_level then + Hardcore_Character.dt.current.last_warn = Hardcore_Character.dt.current.time_inside + message = "Your idle run of " .. v.name .. " of date ".. v.date .. " has another instance ID" + .. ". Leave dungeon now!" + Hardcore:Print( chat_color .. message ) + Hardcore:ShowRedAlertFrame( message ) + break -- No need to warn about 3rd and higher entries + end end end end diff --git a/Hardcore.lua b/Hardcore.lua index a80712da..88e02a97 100644 --- a/Hardcore.lua +++ b/Hardcore.lua @@ -149,6 +149,19 @@ local bubble_hearth_vars = { light_of_elune_name = "Light of Elune", } +local STORE_MOUNT_ITEMS = { + [260759] = true, + [260438] = true, + [184865] = true, +} +local STORE_MOUNT_SPELL_NAMES = {} + +local STORE_MOUNT_SPELLS = { + [1266345] = "Cerulean Spell-Weaver", + [348459] = "Reawakened Phase-Hunter", + [1266866] = "Starshard Netherdrake", +} + -- Ranks local hc_id2rank = { ["1"] = "officer", @@ -407,6 +420,7 @@ Hardcore_Alert_Frame:SetScale(0.7) -- the big frame object for our addon local Hardcore = CreateFrame("Frame", "Hardcore", nil, "BackdropTemplate") Hardcore.ALERT_STYLES = ALERT_STYLES +Hardcore.STORE_MOUNT_SPELL_NAMES = STORE_MOUNT_SPELL_NAMES Hardcore_Frame:ApplyBackdrop() @@ -1002,6 +1016,12 @@ function Hardcore:PLAYER_LOGIN() self:RegisterEvent("UNIT_SPELLCAST_START") self:RegisterEvent("UNIT_SPELLCAST_STOP") self:RegisterEvent("UNIT_SPELLCAST_SUCCEEDED") + + self:RegisterEvent("CHAT_MSG_LOOT") + self:RegisterEvent("GET_ITEM_INFO_RECEIVED") + + -- Request info immediately so server sends it + for id, _ in pairs(STORE_MOUNT_ITEMS) do GetItemInfo(id) end -- For inspecting other player's status -- INSPECT READY DISABLED FOR CATA PRE-PATCH @@ -1218,6 +1238,21 @@ function Hardcore:PLAYER_LOGIN() Hardcore_StoreCharacterInfo() end +function Hardcore:GET_ITEM_INFO_RECEIVED(itemID) + if STORE_MOUNT_ITEMS[itemID] then + local spellName = GetItemSpell(itemID) + if spellName then STORE_MOUNT_SPELL_NAMES[spellName] = true end + end +end + +function Hardcore:CHAT_MSG_LOOT(message) + local itemID = tonumber(message:match("item:(%d+)")) + if itemID and STORE_MOUNT_ITEMS[itemID] then + Hardcore:Print("|cFFFF0000WARNING:|r Store Mount looted. DO NOT USE or you will FAIL.") + Hardcore:ShowAlertFrame(Hardcore.ALERT_STYLES.hc_red, "WARNING: Store Mount Detected.\nDO NOT USE or you will FAIL.") + end +end + function Hardcore:PLAYER_LOGOUT() -- Stop further updates to the played time and tracked time, don't want them -- changing after the checksum is stored @@ -1418,7 +1453,26 @@ function Hardcore:UNIT_SPELLCAST_STOP(...) end function Hardcore:UNIT_SPELLCAST_SUCCEEDED(...) - local unit, _, spell_id, _, _ = ... + if unit == "player" then + -- Use the Spell ID directly for 100% accuracy + if STORE_MOUNT_SPELLS[spell_id] then + local mountName = STORE_MOUNT_SPELLS[spell_id] + + -- 1. Fail the run via Bubble Hearth bucket (secured by Security.lua checksum) + table.insert(Hardcore_Character.bubble_hearth_incidents, { + start_cast = date("%m/%d/%y %H:%M:%S"), + aura_type = "STORE MOUNT: " .. mountName, -- Clearly labeled for moderators + guid = PLAYER_GUID + }) + Hardcore_StoreChecksum() -- Immediately secure the failure + + -- 2. Visual/Chat Alerts + Hardcore:Print("|cFFFF0000FAILURE:|r Prohibited Store Mount used ("..mountName..").") + Hardcore:ShowAlertFrame(Hardcore.ALERT_STYLES.death, "Hardcore Challenge FAILED\nReason: Store Mount Used") + SendChatMessage(PLAYER_NAME .. " failed HC by using a Store Mount: " .. mountName, "GUILD") + return -- Exit so we don't process standard bubble hearth logic + end + end -- 8690 is hearth spellid if STARTED_BUBBLE_HEARTH_INFO ~= nil then if unit == "player" and spell_id == bubble_hearth_vars.spell_id then @@ -3391,7 +3445,22 @@ function Hardcore:GenerateVerificationStatusStrings() end if numBubs > 0 then - table.insert(reds, "bub-hrth=" .. numBubs) + -- Check if any bubble hearth incident is actually a store mount violation + local isStoreMount = false + if Hardcore_Character.bubble_hearth_incidents then + for _, v in ipairs(Hardcore_Character.bubble_hearth_incidents) do + if v.aura_type and string.find(v.aura_type, "STORE MOUNT") then + isStoreMount = true + break + end + end + end + + if isStoreMount then + table.insert(reds, "FAIL(StoreMount)") + else + table.insert(reds, "bub-hrth=" .. numBubs) + end end if numRepRuns > 0 then diff --git a/Hardcore_Cata.toc b/Hardcore_Cata.toc index 0fcb9cdc..90e74831 100644 --- a/Hardcore_Cata.toc +++ b/Hardcore_Cata.toc @@ -1,10 +1,10 @@ ## Interface: 50500 -## Title: Hardcore 0.11.59c +## Title: Hardcore 0.11.60a ## Notes: Supports Classic Hardcore ## Author: The Classic Hardcore team, Molikar (Sean Kennedy) ## X-License: All Rights Reserved ## X-Category: Leveling,Guild -## Version: 0.11.59c +## Version: 0.11.60a ## DefaultState: enabled diff --git a/Hardcore_Classic.toc b/Hardcore_Classic.toc index 7b2b614b..18ebaa3f 100644 --- a/Hardcore_Classic.toc +++ b/Hardcore_Classic.toc @@ -1,11 +1,11 @@ ## Interface: 11507 -## Title: Hardcore 0.11.59c +## Title: Hardcore 0.11.60a ## Notes: Supports Classic Hardcore ## Author: The Classic Hardcore team, Molikar (Sean Kennedy) ## X-License: All Rights Reserved ## X-Category: Leveling,Guild -## Version: 0.11.59c +## Version: 0.11.60a ## DefaultState: enabled diff --git a/Hardcore_TBC.toc b/Hardcore_TBC.toc index ed6bb80d..64115546 100644 --- a/Hardcore_TBC.toc +++ b/Hardcore_TBC.toc @@ -1,11 +1,11 @@ ## Interface: 20505 -## Title: Hardcore 0.11.59c +## Title: Hardcore 0.11.60a ## Notes: Supports TBC Hardcore ## Author: The Classic Hardcore team, Molikar (Sean Kennedy) ## X-License: All Rights Reserved ## X-Category: Leveling,Guild -## Version: 0.11.59c +## Version: 0.11.60a ## IconTexture: Interface\AddOns\Hardcore\Media\wowhc-emblem-white-red.blp ## DefaultState: enabled diff --git a/MainMenu.lua b/MainMenu.lua index b2a7d00f..78d95af7 100644 --- a/MainMenu.lua +++ b/MainMenu.lua @@ -316,6 +316,18 @@ local function DrawGeneralTab(container) changelog_title:SetFont("Interface\\Addons\\Hardcore\\Media\\BreatheFire.ttf", 20, "") scroll_frame:AddChild(changelog_title) + CreateHeadingLabel("11.60a", scroll_frame) + CreateDescriptionLabel( + "- Hotfix for duo achievement lua errors.", + scroll_frame + ) + + CreateHeadingLabel("11.60", scroll_frame) + CreateDescriptionLabel( + "- Store mount prohibition update", + scroll_frame + ) + CreateHeadingLabel("11.59c", scroll_frame) CreateDescriptionLabel( "- Hotfix for dungeon group lua errors.", From ec1e4abc8fb188447c8cfcc39276d9dda887e8bc Mon Sep 17 00:00:00 2001 From: Holiest WoW Date: Mon, 23 Feb 2026 08:08:31 -0500 Subject: [PATCH 12/12] Updated dungeon warnings for max-level characters, and Imp Master syntax issues. --- Hardcore_Cata.toc | 4 ++-- Hardcore_Classic.toc | 4 ++-- Hardcore_TBC.toc | 4 ++-- MainMenu.lua | 6 ++++++ 4 files changed, 12 insertions(+), 6 deletions(-) diff --git a/Hardcore_Cata.toc b/Hardcore_Cata.toc index 90e74831..c0a2a5e3 100644 --- a/Hardcore_Cata.toc +++ b/Hardcore_Cata.toc @@ -1,10 +1,10 @@ ## Interface: 50500 -## Title: Hardcore 0.11.60a +## Title: Hardcore 0.11.60b ## Notes: Supports Classic Hardcore ## Author: The Classic Hardcore team, Molikar (Sean Kennedy) ## X-License: All Rights Reserved ## X-Category: Leveling,Guild -## Version: 0.11.60a +## Version: 0.11.60b ## DefaultState: enabled diff --git a/Hardcore_Classic.toc b/Hardcore_Classic.toc index 18ebaa3f..97f22a72 100644 --- a/Hardcore_Classic.toc +++ b/Hardcore_Classic.toc @@ -1,11 +1,11 @@ ## Interface: 11507 -## Title: Hardcore 0.11.60a +## Title: Hardcore 0.11.60b ## Notes: Supports Classic Hardcore ## Author: The Classic Hardcore team, Molikar (Sean Kennedy) ## X-License: All Rights Reserved ## X-Category: Leveling,Guild -## Version: 0.11.60a +## Version: 0.11.60b ## DefaultState: enabled diff --git a/Hardcore_TBC.toc b/Hardcore_TBC.toc index 64115546..9f1b0374 100644 --- a/Hardcore_TBC.toc +++ b/Hardcore_TBC.toc @@ -1,11 +1,11 @@ ## Interface: 20505 -## Title: Hardcore 0.11.60a +## Title: Hardcore 0.11.60b ## Notes: Supports TBC Hardcore ## Author: The Classic Hardcore team, Molikar (Sean Kennedy) ## X-License: All Rights Reserved ## X-Category: Leveling,Guild -## Version: 0.11.60a +## Version: 0.11.60b ## IconTexture: Interface\AddOns\Hardcore\Media\wowhc-emblem-white-red.blp ## DefaultState: enabled diff --git a/MainMenu.lua b/MainMenu.lua index 78d95af7..349006eb 100644 --- a/MainMenu.lua +++ b/MainMenu.lua @@ -316,6 +316,12 @@ local function DrawGeneralTab(container) changelog_title:SetFont("Interface\\Addons\\Hardcore\\Media\\BreatheFire.ttf", 20, "") scroll_frame:AddChild(changelog_title) + CreateHeadingLabel("11.60b", scroll_frame) + CreateDescriptionLabel( + "- Updated dungeon warnings for max-level characters. Fixed some issues with achievements not working correctly.", + scroll_frame + ) + CreateHeadingLabel("11.60a", scroll_frame) CreateDescriptionLabel( "- Hotfix for duo achievement lua errors.",